@charset "UTF-8";

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Montserrat Regular'), local('Montserrat-Regular'), url(https://fonts.gstatic.com/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WdhyyTh89ZNpQ.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'PT Serif';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('PT Serif'), local('PTSerif-Regular'), url(https://fonts.gstatic.com/s/ptserif/v11/EJRVQgYoZZY2vCFuvAFYzr-_dSb_nco.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* body */

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #999999;
    -webkit-font-smoothing: antialiased;
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: normal;
    background-color: #FFFFFF;
}

/* Colors */
.color__white {
    color: #FFF;
}

.color__black {
    color: #000;
}

.background__black {
    background-color: #000;
}

.background__white {
    background-color: #FFF;
}


a {
    color: #f5f5dc;
    text-decoration: none;
}

a:focus,
a:hover {
    color: #FFFFFF;
    -webkit-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
}

.button-active {
    font-family: Montserrat, sans-serif;
    background-color: #5af0ff;
    border: none;
    color: #673AB7;
    padding: 0.8rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 1rem;
    margin: 1rem 0;
    letter-spacing: 4px;
}

/* Tipography */


h1 {
    font-family: 'PT Serif', serif;
    font-size: 1.4rem;
    line-height: 1.6rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    color: #3e3b67;
}

h2 {
    font-size: 1.2rem;
    line-height: 1.4rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

h3 {
    font-size: 0.8rem;
    line-height: 1.8rem;
    letter-spacing: 11px;
    margin: 0 0 10px;
    text-transform: uppercase;
    font-weight: bold;
}

h4 {
    font-size: 0.8rem;
    line-height: 1.2rem;
    letter-spacing: 2px;
    margin: 0 0 10px;
    font-weight: normal;
}

p {
    font-size: 1rem;
    line-height: 1.2rem;
    display: block;
    margin-top: 0rem;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
}

q {
    font-size: 1rem;
    line-height: 1.6rem;
    display: block;
    margin-top: 1rem;
    margin-bottom: 2rem;
    margin-left: 0;
    margin-right: 0;
}

q {
    quotes: '"''"'"'""'"
}

q:before {
    content: open-quote;
    font-size: 2rem;
    opacity: 0.8;
}

q:after {
    content: close-quote;
    font-size: 2rem;
    opacity: 0.8;
}

.txt__right {
    text-align: right;
}

.txt__left {
    text-align: left;
}

.txt__justify {
    text-align: justify;
}

.txt__center {
    text-align: center;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
    font-family: Montserrat, sans-serif;
    font-size: 0.8rem;
    line-height: 1rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
    margin-bottom: 1rem;
}




/* images */
.img__responsive {
    width: 100%;
    height: auto;
}


/*-- portal --*/



.menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu>li {
    margin: 0 1rem;
    font-size: 1rem;
    line-height: 1rem;
}

.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #fff;
    position: absolute;
    height: 3px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button::before {
    content: '';
    margin-top: -8px;
}

.menu-button::after {
    content: '';
    margin-top: 8px;
}

#menu-toggle:checked+.menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}

#menu-toggle:checked+.menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked+.menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}

.online {
    font-size: 0.8rem;
    line-height: 1rem;
    padding: 0.8rem;
    margin: 0;
}

.online img {
    vertical-align: bottom;
    margin-right: 0.8rem;
}

@media (max-width: 768px) {

    .header-item-content-menu {
        width: 100%;
        display: grid;
        justify-self: auto;
        align-self: start;
        grid-column-start: 4;
        grid-column-end: 9;
        color: #FFF;
    }


    .menu-button-container {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 50px;
        margin-top: 50px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    #menu-toggle~.menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-toggle:checked~.menu li {
        border: 1px solid #645cba;
        height: 1.5em;
        padding: 0.5em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .menu>li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: white;
        background-color: #544e90;
    }

    .menu>li:not(:last-child) {
        border-bottom: 1px solid #d31515;
    }
}






.header-item {
    width: 100%;
    display: grid;
    justify-self: auto;
    align-self: start;
    grid-column-start: 2;
    grid-column-end: 10;
}

.header-item-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    height: 50px;
    background-color: #3d3a67;
}

.header-item-content-active {
    width: 100%;
    display: grid;
    justify-self: auto;
    align-self: center;
    grid-column-start: 1;
    grid-column-end: 4;
    color: #FFF;
    padding: 0 0 1rem 1rem;
}

.header-item-content-menu {
    display: grid;
    justify-self: center;
    align-self: start;
    grid-column-start: 8;
    grid-column-end: 9;
    color: #FFF;
}

.header-item-content-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.header-item-content-menu li {
    float: left;
    padding: 1rem 0;
}

.portal-revamp {
    width: 100%;
    display: grid;
    grid-template-columns: 2% 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 2%;
    grid-template-rows: auto;
    height: 100vh;
}

.welcome-item {
    width: 100%;
    display: grid;
    justify-self: auto;
    align-self: start;
    grid-column-start: 2;
    grid-column-end: 10;
}

.welcome-item-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    height: 50px;
    background-color: #FFFFFF;
    background-image: url(../img/welcome-image.jpg);
    background-size: cover;
    height: 160px;
}

.welcome-item-content-image {
    width: 100%;
    display: grid;
    justify-self: center;
    align-self: end;
    grid-column-start: 1;
    grid-column-end: 3;
    color: #FFF;
    padding: 0 0 1rem 1rem;
}

.welcome-item-content-image img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 4px solid #645dba;
    width: 100%;
    margin-top: 1rem;
    margin-left: 4rem;
}


.header-phone {
    width: 100%;
    display: grid;
    justify-self: auto;
    align-self: start;
    grid-column-start: 2;
    grid-column-end: 10;
    padding: 2rem 0;
    background-color: #c7c5de;
    background-image: url(../img/welcome-image.jpg);
    background-size: cover;
    background-position: top;
}

.header-phone-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    height: 50px;
    height: 120px;
}

.header-phone-content-text {
    width: 100%;
    display: grid;
    justify-self: center;
    align-self: start;
    grid-column-start: 2;
    grid-column-end: 9;
    color: #645dba;
    padding: 0;
    margin-right: 2rem;
}

.header-phone-content-text h2 {
    font-size: 1.4rem;
    line-height: 1.2rem;
    margin: 0;
    text-align: right;
    font-weight: bold;
}

.header-phone-content-text p {
    font-size: 0.8rem;
    line-height: 1.2rem;
    margin: 0;
    text-align: right;
    font-weight: bold;
}

.header-phone-content-flag {
    width: 100%;
    display: grid;
    justify-self: center;
    align-self: start;
    grid-column-start: 5;
    grid-column-end: 6;
    padding-top: 5px;
}

.header-phone-content-number {
    width: 100%;
    display: grid;
    justify-self: center;
    align-self: start;
    grid-column-start: 6;
    grid-column-end: 9;
    margin-right: 2rem;
}


.header-phone-content-number h1 {
    font-size: 0.9rem;
    line-height: 2.6rem;
    margin: 0;
    color: #FFF;
    background-color: #4f4992;
    border-radius: 8px;
    text-align: right;
    text-transform: initial;
    text-align: center;
}

.header-phone-content-number img {
    vertical-align: middle;
    padding: 0 0.6rem 0.4rem;
}

.claim {
    width: 100%;
    display: grid;
    justify-self: auto;
    align-self: start;
    grid-column-start: 2;
    grid-column-end: 10;
    box-sizing: border-box;
    padding: 1rem;
    margin: 0.2rem;
}

.claim-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    background-color: #E2E2E2;
    padding: 2rem 0;
    border-radius: 1rem;
}

.claim-content-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    background-color: #E2E2E2;
    padding: 2rem 0;
    border-radius: 1rem;
}

.claim-content-logo {
    display: grid;
    justify-self: center;
    align-self: center;
    grid-column-start: 1;
    grid-column-end: 9;
    color: #645DBA;
}

.claim-content-logo img {
    width: 80%;
    text-align: center;
    margin: 0 auto;
}

.claim-content-text {
    width: 100%;
    display: grid;
    justify-self: center;
    align-self: start;
    grid-column-start: 2;
    grid-column-end: 8;
    color: #645dba;
}

.claim-content-text h1 {
    font-size: 1.4rem;
    line-height: 1.4rem;
    margin: 0.5rem 0 0.1rem 0;
    color: #645cba;
    letter-spacing: 2px;
}

.claim-content-text h2 {
    font-size: 0.8rem;
    line-height: 1rem;
    margin: 0;
    color: #645cba;
    font-weight: bold;
    font-variant-caps: normal;
}

.claim-content-text p {
    font-size: 0.9rem;
    line-height: 1rem;
    margin: 0.5rem 0 1rem 0;
    color: #333333;
    letter-spacing: 0;
}

.claim-line {
    background-color: #645cba;
    height: 1px;
    width: 40%;
    margin: 0.8rem 0;
}


.claim-content-form-col01 {
    width: 100%;
    display: grid;
    justify-self: center;
    align-self: start;
    grid-column-start: 2;
    grid-column-end: 8;
    color: #645dba;
    padding: 0.5rem;
}

.label {
    text-align: center;
    font-size: 0.9rem;
    padding: 0 0 0.5rem 0;
}

.claim-content-form-phone {
    width: 100%;
    display: grid;
    justify-self: center;
    align-self: start;
    grid-column-start: 2;
    grid-column-end: 8;
    padding: 0;
}

.claim-content-form-phone input[type=text] {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #a4a1c3;
    border-radius: 4px;
    font-size: 1rem;
    background-color: white;
    background-image: url(../img/phone.png);
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding: 1rem 1rem 1rem 4rem;
    margin: 0.5rem 0;
    transition: width 0.4s ease-in-out;
    border-radius: 0.4rem;
    color: #645cba;
}

.claim-content-form-mail {
    width: 100%;
    display: grid;
    justify-self: center;
    align-self: start;
    grid-column-start: 2;
    grid-column-end: 8;
    padding: 0;
}

.claim-content-form-mail input[type=email] {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #a4a1c3;
    border-radius: 4px;
    font-size: 1rem;
    background-color: white;
    background-image: url(../img/mail.png);
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding: 1rem 1rem 1rem 4rem;
    margin: 0.5rem 0;
    transition: width 0.4s ease-in-out;
    border-radius: 0.4rem;
    color: #645bba;
}

.claim-content-form-mail label {
    color: #645bba;
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}


.claim-content-form-comment {
    width: 100%;
    display: grid;
    justify-self: center;
    align-self: start;
    grid-column-start: 2;
    grid-column-end: 8;
    padding: 0 0 1rem 0;
}

.claim-content-form-comment textarea {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #a4a1c3;
    border-radius: 4px;
    font-size: 1rem;
    background-color: white;
    background-color: white;
    background-image: url(../img/comment.png);
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding: 1rem 1rem 1rem 4rem;
    margin: 0.5rem 0;
    transition: width 0.4s ease-in-out;
    border-radius: 0.4rem;
}

.claim-content-form-comment label {
    color: #645bba;
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.g-recaptcha {
    grid-column-start: 1;
    grid-column-end: 9;
    text-align: center;
    margin: 0 auto;
    padding: 0 0 2rem 0;
}

.claim-content-form-button {
    width: 100%;
    display: grid;
    justify-self: center;
    align-self: center;
    grid-column-start: 2;
    grid-column-end: 8;
    background-color: #4aa24e;
    border: 2px solid #4AA24E;
    padding: 1.4rem 0;
    margin: 0 0 2rem;
    color: #fff;
    font-size: 1.4rem;
    line-height: 2rem;
    text-align: center;
    font-weight: bold;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.claim-content-form-button:disabled {
    background-color: #999999;
    color: #e7e7e7;
    border: 2px solid #999999;
}

.stadistics {
    display: grid;
    justify-self: auto;
    align-self: start;
    grid-column-start: 2;
    grid-column-end: 10;
    background-image: url(../img/stats-background.jpg);
    background-size: cover;
    padding: 6rem 0;
}

.stadistics-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
}

.stadistics-content-text-01 {
    width: 100%;
    display: grid;
    justify-self: center;
    align-self: start;
    grid-column-start: 3;
    grid-column-end: 4;
    color: #FFFFFF;
    padding: 1rem 0;
}

.stadistics-content-text-01 h2 {
    font-size: 2.2rem;
    line-height: 1.4rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

.stadistics-content-text-02 {
    width: 100%;
    display: grid;
    justify-self: center;
    align-self: start;
    grid-column-start: 4;
    grid-column-end: 5;
    color: #FFFFFF;
    padding: 1rem 0;
}

.stadistics-content-text-02 h2 {
    font-size: 1.2rem;
    line-height: 1.4rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

.stadistics-content-text-03 {
    width: 100%;
    display: grid;
    justify-self: center;
    align-self: start;
    grid-column-start: 5;
    grid-column-end: 6;
    color: #FFFFFF;
    padding: 1rem 0;
}

.stadistics-content-text-03 h2 {
    font-size: 2.2rem;
    line-height: 1.4rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

.stadistics-content-text-04 {
    width: 100%;
    display: grid;
    justify-self: center;
    align-self: start;
    grid-column-start: 6;
    grid-column-end: 7;
    color: #FFFFFF;
    padding: 1rem 0;
}

.stadistics-content-text-04 h2 {
    font-size: 1.2rem;
    line-height: 1.4rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

.us {
    display: grid;
    justify-self: auto;
    align-self: start;
    grid-column-start: 2;
    grid-column-end: 10;
    margin: 5rem 0;
}

.us-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    background-color: #FFFFFF;
}

.us-content-text {
    width: 100%;
    display: grid;
    justify-self: center;
    align-self: start;
    grid-column-start: 2;
    grid-column-end: 8;
    color: #818190;
    padding: 1rem 0;
}

.testimonial {
    display: grid;
    justify-self: auto;
    align-self: start;
    grid-column-start: 2;
    grid-column-end: 10;
    margin: 5rem 0;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    background-color: #FFFFFF;
}

.testimonial-content-text {
    width: 100%;
    display: grid;
    justify-self: center;
    align-self: start;
    grid-column-start: 2;
    grid-column-end: 8;
    padding: 1rem 0;
}

.slider {
    height: 480px;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #e2e2e2;
    padding: 20px;
    border-radius: 1rem;
}

.slider-btn {
    width: 12px;
    height: 12px;
    margin: 32px 12px;
    z-index: 10;
    background-color: #645cba;
    border-radius: 4px;
    outline-offset: -6px;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.slider-btn:checked {
    -webkit-animation: check 0.5s linear forwards;
    animation: check 0.5s linear forwards;
}

.slider-btn:checked:nth-of-type(1)~.slider-inner {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.slider-btn:checked:nth-of-type(2)~.slider-inner {
    -webkit-transform: translateX(-25%);
    transform: translateX(-33%);
}

.slider-btn:checked:nth-of-type(3)~.slider-inner {
    -webkit-transform: translateX(-50%);
    transform: translateX(-67%);
}

.slider-btn:checked:nth-of-type(4)~.slider-inner {
    -webkit-transform: translateX(-75%);
    transform: translateX(-75%);
}

.slider-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    -webkit-transition: all 1s ease-out;
    transition: all 1s ease-out;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
}

.slider-contents {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    padding: 0 20px;
}




.slider-contents img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 0 auto;
    margin-top: 2rem;
    border: 2px solid #645cba;
}



.slider-caption {
    font-size: 2rem;
    line-height: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
    color: #3d3a67;
}

.slider-txt {
    color: #999;
    margin-bottom: 48px;
    max-width: 300px;
}

ul {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

@-webkit-keyframes check {
    50% {
        background-color: #E87E04;
        box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
    }

    100% {
        background-color: #E87E04;
        box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
    }
}

@keyframes check {
    50% {
        background-color: #E87E04;
        box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
    }

    100% {
        background-color: #E87E04;
        box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
    }
}



.footer {
    display: grid;
    justify-self: auto;
    align-self: center;
    grid-column-start: 1;
    grid-column-end: 10;
    background-color: #3e3b67;
    color: #FFF;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
}

.footer-content-text {
    display: grid;
    justify-self: center;
    align-self: start;
    grid-column-start: 2;
    grid-column-end: 8;
    padding: 1rem 0;
}

.footer ul {
    margin: 1rem 0;
}

.footer li {
    display: inline;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
}




/* TOGGLES */
.toggle {}

.toggle input[type=checkbox] {
    visibility: hidden;
    pointer-events: none;
}

.toggle span {
    padding-left: 60px;
}

.toggle label span::before,
.toggle label span::after {
    position: absolute;
}

.toggle label span::before {
    /* off label text */
    content: '';
}

.toggle input[type=checkbox]:checked+label span::before {
    /* on label text */
    content: '';
}


.style1 label {
    color: #645bba;
    display: block;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    transition: all .2s ease;
    position: relative;
    line-height: 0;
}

.style1 label::before {
    content: '';
    position: absolute;
    left: 60px;
    transform: translateX(-3.8rem);
    width: 3rem;
    height: 1.4rem;
    border-radius: 0.8rem;
    background-color: #a4a1c3;
    transition: all .2s ease;
    box-shadow: inset -1px -1px 2px 1px rgba(0, 0, 0, .2);
    border: 1px solid #645bba;
}

.style1 label::after {
    content: '';
    position: absolute;
    left: 60px;
    transform: translate(-3.6rem, .15rem);
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 1rem;
    background-color: #FFFFFF;
    transition: all .2s ease;
    -webkit-transform: translate(-3.6rem, .15rem);
    -moz-transform: translate(-3.6rem, .15rem);
    -ms-transform: translate(-3.6rem, .15rem);
    -o-transform: translate(-3.6rem, .15rem);
}

.style1 input[type=checkbox]:checked+label {
    color: #62938f;
}

.style1 input[type=checkbox]:checked+label::before {
    background-color: #398e3d;
    border: 1px solid #516552;
}

.style1 input[type=checkbox]:checked+label::after {
    transform: translate(-2.1rem, .15rem);
    -webkit-transform: translate(-2.1rem, .15rem);
    -moz-transform: translate(-2.1rem, .15rem);
    -ms-transform: translate(-2.1rem, .15rem);
    -o-transform: translate(-2.1rem, .15rem);
}

.style1 input[type=checkbox]:active::after {
    visibility: visible;
    display: block;
    content: '';
    position: relative;
    left: -4.2rem;
    top: 0.7rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: #e2c479;
    filter: blur(1px);
    opacity: .4;
}



/* animation- */

.fadeIn {
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.fadeIn-3s {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* MODAL */

#ConfirmModal {
    background-color: black;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: block;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: rgba(74, 74, 74, 0.9);
}

.modal-dialog {
    display: grid;
    height: 100vh;
    grid-template-columns: 25% 50% 25%;
    grid-template-rows: 1fr;
    justify-items: center;
    align-items: center;
}

.modal-content {
    display: grid;
    grid-column-start: 2;
    grid-column-end: auto;
    justify-self: center;
    align-self: center;
    padding: 4rem;
    border-radius: .8rem;
    background-color: #FF9800;
    color: #FFF;
    opacity: 1;
    border-radius: 1rem;
    background: linear-gradient(145deg, #645bba, #a4a1c3);
    box-shadow: 20px 20px 60px #565656, -20px -20px 60px #747474;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

.modal-body p:first-child {
    color: #FFFFFF;
    font-size: 2rem;
    line-height: 2rem;
    padding-bottom: 1rem;
    font-weight: bold;
}

.modal-body {
    margin-top: 2rem;
    text-align: center;
}

.modal-body p {
    color: #FFF;
    font-size: 1.2rem;
    line-height: 1.4rem;
}

.modal-footer {
    margin-top: 2rem;
    text-align: center;
}

.modal-btn {
    background-color: #595392;
    border: 1px solid #403b6f;
    border-radius: 1rem;
    padding: 1rem;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

/* SELECT */

/* Reset Select */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    background: #FFFFFF;
    background-image: none;
}

/* Remove IE arrow */
select::-ms-expand {
    display: none;
}

/* Custom Select */
.select {
    width: 100%;
    position: relative;
    display: flex;
    height: 3rem;
    line-height: 3;
    background: #FFFFFF;
    overflow: hidden;
    border-radius: .25em;
    border: 2px solid #a4a1c3;
    border-radius: 0.4rem;
    -webkit-border-radius: 0.4rem;
    -moz-border-radius: 0.4rem;
    -ms-border-radius: 0.4rem;
    -o-border-radius: 0.4rem;
}

select {
    flex: 1;
    padding: 0 .5em;
    color: #645cba;
    cursor: pointer;
    padding-left: 1rem;
    font-size: 1rem;
}

/* Arrow */
.select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1em;
    background: #645cba;
    cursor: pointer;
    pointer-events: none;
    -webkit-transition: .25s all ease;
    -o-transition: .25s all ease;
    transition: .25s all ease;
    color: #fff;
}

/* Transition */
.select:hover::after {
    color: #f39c12;
}



/* queries */
/*
Desktops = 1281px to higher resolution desktops
*/
@media (min-width: 820px) {
    .hidden__lg {
        display: none;
    }

    .portal-revamp {
        width: 1440px;
        display: grid;
        grid-template-columns: 1% 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1%;
        grid-template-rows: auto;
        height: 100vh;
    }

    h1 {
        font-family: 'PT Serif', serif;
        font-size: 2.4rem;
        line-height: 2.6rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin: 0;
        padding: 0;
    }

    p {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }

    .welcome-item-content {
        height: 250px;
    }

    .welcome-item-content-image {
        grid-column-start: 2;
        grid-column-end: 4;
    }

    .welcome-item-content-image img {
        border: 12px solid #b1aedd;
        width: 70%;
        margin-top: 4rem;
        margin-left: 4rem;
    }


    .header-phone-content {
        margin-top: 0.2rem;
    }


    .header-phone-content-text {
        grid-column-start: 6;
        grid-column-end: 7;
    }

    .header-phone-content-flag {
        width: auto;
        justify-self: right;
        grid-column-start: 5;
        grid-column-end: 6;
        padding: 9px 1rem;
    }

    .header-phone-content-number {
        grid-column-start: 6;
        grid-column-end: 7;
        margin-right: 0;
    }


    .header-item-content-menu {
        grid-column-start: 1;
        grid-column-end: 9;
    }

    .claim {
        padding: 2rem 0;
        margin: 0 0 2rem 0;
        width: 50%;
        margin: 0 auto;
    }

    .claim-line {
        background-color: #645cba;
        height: 2px;
        width: 30%;
        margin: 2rem 0;
    }

    .claim-content-text h1 {
        font-size: 2.4rem;
        line-height: 2.4rem;
        margin: 0.5rem 0 0.1rem 0;
        color: #3e3b67;
        letter-spacing: 2px;
    }

    .claim-content-text h2 {
        font-size: 1.2rem;
        line-height: 1.2rem;
        margin: 0;
        color: #645cba;
        font-weight: bold;
        font-variant-caps: normal;
    }

    .claim-content-text p {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }

    .claim-content-text {
        grid-column-start: 2;
        grid-column-end: 8;
    }

    .stadistics-content-text-01 h2 {
        font-size: 3.2rem;
        line-height: 1.4rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        margin-left: 0;
        margin-right: 0;
        font-weight: bold;
    }

    .stadistics-content-text-02 h2 {
        font-size: 3.2rem;
        line-height: 1.4rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        margin-left: 0;
        margin-right: 0;
        font-weight: bold;
    }

    .stadistics-content-text-03 h2 {
        font-size: 3.2rem;
        line-height: 1.4rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        margin-left: 0;
        margin-right: 0;
        font-weight: bold;
    }

    .stadistics-content-text-04 h2 {
        font-size: 3.2rem;
        line-height: 1.4rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        margin-left: 0;
        margin-right: 0;
        font-weight: bold;
    }

    .claim-content {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        border-radius: .4rem;
    }

    .claim-content-form-col01 {
        grid-column-start: 3;
        grid-column-end: 7;
    }


    .claim-content-form-phone {
        grid-column-start: 3;
        grid-column-end: 7;
    }

    .claim-content-form-button {
        grid-column-start: 3;
        grid-column-end: 7;
    }

    .claim-content-form-mail {
        grid-column-start: 3;
        grid-column-end: 7;
    }

    .claim-content-form-comment {
        grid-column-start: 3;
        grid-column-end: 7;
    }

    .stadistics-content-text {
        grid-column-start: 3;
        grid-column-end: 7;
    }

    .us-content-text {
        grid-column-start: 3;
        grid-column-end: 7;
    }

    .testimonial-content-text {
        grid-column-start: 3;
        grid-column-end: 7;
    }

    .slider {
        height: 400px;
    }

}

/*
Laptops, Desktops = B/w 1025px to 1280px
*/
@media (min-width: 1025px) and (max-width: 1280px) {
    .hidden__lg {
        display: none;
    }

}

/*
Tablets, Ipads (portrait) = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) {
    .hidden__md {
        display: none;
    }

}

/*
Tablets, Ipads (landscape) = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hidden__md {
        display: none;
    }

    .header-phone-content-number {
        width: 100%;
        display: grid;
        justify-self: center;
        align-self: start;
        grid-column-start: 6;
        grid-column-end: 9;
        margin-right: 2rem;
    }
}

/*
Low Resolution Tablets, Mobiles (Landscape) = B/w 481px to 767px
*/
@media (min-width: 481px) and (max-width: 767px) {
    .hidden__sm {
        display: none;
    }

    .header-phone-content-number {
        width: 100%;
        display: grid;
        justify-self: center;
        align-self: start;
        grid-column-start: 6;
        grid-column-end: 9;
        margin-right: 2rem;
    }
}

/*
Most of the Smartphones Mobiles (Portrait) = B/w 320px to 479px
*/
@media (min-width: 320px) and (max-width: 480px) {
    .hidden__xs {
        display: none;
    }

    .header-phone-content-number {
        width: 100%;
        display: grid;
        justify-self: center;
        align-self: start;
        grid-column-start: 4;
        grid-column-end: 9;
        margin-right: 2rem;
    }
}

.flash-error {
    grid-column-start: 3;
    grid-column-end: 7;
    background-color: #FFF;
    border-radius: 0.2rem;
    padding: 0.5rem;
    border: 1px solid red;
    margin: 0 0 1rem 0;
    color: red;
    text-align: center;
}

span.copy_received_sms {
    font-weight: bold;
    color: #333333;
}

div.login-button.txt__center > a > button {
    padding: 1em;
    margin: 0 1em 1em 1em;
    width: 80%;
    border-radius: 12px;
    background-color: #645CBA;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    font-size: 1.4em;
    line-height: 1em;
    cursor: pointer;
}
.login-button a {
    padding: 0;
}

.vod_login_button_info {
    text-align: center;
    padding: 1rem;
    color: #3E3B67;
}