/* Typography */

*,
 ::after,
 ::before {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Raleway';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.16px;
    color: #333;
}

h1 {
    font-family: DM Serif Display;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: .5px;
}

@media only screen and (min-width: 600px) {
    h1 {
        font-size: 55px;
    }
}

h2 {
    text-align: center;
    /* H2 */
    font-family: DM Serif Display;
    font-size: 33px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 39.6px */
    letter-spacing: 0.33px;
    margin-top: 0;
    margin-bottom: 25px;
}

@media only screen and (min-width: 600px) {
    h2 {
        margin-bottom: 50px;
    }
}

h3 {
    /* H3 */
    font-family: DM Serif Display;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 31.2px */
    margin-top: 0;
    margin-bottom: 0;
    font-size: 26px;
    letter-spacing: 0.26px;
}

@media only screen and (min-width: 600px) {
    h3 {
        text-align: center;
        font-size: 26px;
        letter-spacing: 0.26px;
    }
}

h4 {
    /* H4 */
    font-family: DM Serif Display;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 24px */
    letter-spacing: 0.2px;
}

small {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    /* 171.429% */
    letter-spacing: -0.14px;
}

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

img {
    max-width: 100%;
    height: auto;
}

select {
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari and Chrome */
    appearance: none;
    background-image: url('../img/icons/arrow-down.png');
    background-repeat: no-repeat;
    background-position: right 25px top 25px;
}


/* Layout */

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}

@media only screen and (min-width: 600px) {
    .container {}
}


/* Header */

.site-header {
    margin-bottom: 79px;
}

.site-header .logo img {
    width: auto;
    height: 40px;
}

@media only screen and (min-width: 600px) {
    .site-header .logo img {
        height: auto;
    }
}

.site-header .wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.12);
    background-color: #fff;
}

.site-header .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.site-header .layout .logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .actions {}

.site-header .actions .btn {
    display: flex;
    height: 40px;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 46px;
    background: #6243CE;
    color: #FFF;
    text-align: center;
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.14px;
}


/* Footer */

.site-footer {
    border-top: 1px solid #333;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
}

@media only screen and (min-width: 600px) {
    .site-footer {
        padding-top: 70px;
        padding-bottom: 50px;
        text-align: inherit;
    }
}

.site-footer p {
    margin-top: 0;
    margin-bottom: 0;
}

.site-footer .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
}

@media only screen and (min-width: 600px) {
    .site-footer .row {
        flex-direction: row;
        gap: inherit;
    }
}

.site-footer .col-1 {}

@media only screen and (min-width: 600px) {
    .site-footer .col-1 {
        width: 20%;
    }
}

.site-footer .col-2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media only screen and (min-width: 600px) {
    .site-footer .col-2 {
        width: 60%;
    }
}

.site-footer .col-3 {}

@media only screen and (min-width: 600px) {
    .site-footer .col-3 {
        width: 20%;
    }
}

.site-footer .icons {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
}

@media only screen and (min-width: 600px) {}


/* Hero */

.hero {
    position: relative;
    margin: 0;
    display: flex;
    flex-direction: column-reverse;
    background-color: #E6E4F5;
    background-repeat: no-repeat;
    background-position: center center;
}

@media only screen and (min-width: 600px) {
    .hero {
        height: 502px;
        flex-direction: row;
        background-image: url('../img/hero.png');
    }
}

.hero .wrapper {
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 600px) {
    .hero .wrapper {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 88%;
        display: flex;
        align-items: center;
    }
}

.hero .layout {
    padding: 32px 0;
}

@media only screen and (min-width: 600px) {
    .hero .layout {
        padding: 32px 0;
    }
}

.hero .layout .row {}

.hero .layout .row .col {}

@media only screen and (min-width: 600px) {
    .hero .layout .row .col {
        width: 50%;
    }
}

.hero .content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

@media only screen and (min-width: 600px) {
    .hero .content {
        text-align: inherit;
    }
}

.hero .widget {}

@media only screen and (min-width: 600px) {
    .hero .widget {
        display: flex;
        justify-content: start;
        overflow: hidden;
    }
    .hero .widget .trustpilot-widget {
        margin-left: -32px;
    }
}

.hero h1 {
    margin-top: 0;
    margin-bottom: 0;
}

.hero p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 120% */
    letter-spacing: -0.2px;
}

.hero img {
    width: 100%;
}

.hero .image {
    display: none;
}

@media only screen and (min-width: 600px) {
    .hero .image {
        display: block;
    }
    .hero .image-m {
        display: none;
    }
}


/* Reviews */

.reviews {
    position: relative;
    z-index: 10;
    margin-top: -140px;
    padding-top: 80px;
    padding-bottom: 40px;
}

@media only screen and (min-width: 600px) {
    .reviews {
        margin-top: -160px;
    }
}

.reviews .container {
    gap: 20px;
}

.reviews .row {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-direction: column;
}

@media only screen and (min-width: 600px) {
    .reviews .row {
        flex-direction: row;
    }
}

.reviews .col {}

@media only screen and (min-width: 600px) {
    .reviews .col {
        width: 33%;
    }
}

.reviews .item {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reviews .item .box {
    display: flex;
    padding: 30px;
    flex-direction: column;
    gap: 20px;
    align-self: stretch;
    border-radius: 52px;
    background: #FAFAFC;
    /* cards shadow */
    box-shadow: 0px 24.51838px 32.0625px 0px rgba(0, 0, 0, 0.10);
}

.reviews .item h4 {
    margin-top: 0;
    margin-bottom: 0;
}

.reviews .item p {
    margin-top: 0;
    margin-bottom: 0;
}

.reviews .item .box a {
    font-weight: 700;
}

.reviews .item .bottom {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

@media only screen and (min-width: 600px) {
    .reviews .item .bottom {
        height: 80px;
        align-items: inherit;
    }
}

.reviews .item .rating {
    display: flex;
    gap: 5px;
    align-items: center;
}

.reviews .item .rating .grade {
    color: var(--secondary, #252D43);
    font-size: 14.189px;
    font-weight: 500;
    line-height: 21.284px;
    /* 150% */
    letter-spacing: -0.142px;
}

.reviews .item .date {
    color: #CED0D0;
}


/* Welcome */

.welcome {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media only screen and (min-width: 600px) {
    .welcome {
        padding-top: 10px;
        padding-bottom: 70px;
    }
}

.welcome h3 {
    font-family: DM Serif Display;
    font-style: normal;
    font-weight: 400;
    line-height: 104.5%;
    /* 52.25px */
    font-size: 33px;
    letter-spacing: 0.33px;
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    width: 75%;
}

@media only screen and (min-width: 600px) {
    .welcome h3 {
        width: 100%;
        margin-bottom: 65px;
        font-size: 50px;
        letter-spacing: 0.5px;
        text-align: inherit;
    }
}

.welcome .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 24px;
}

@media only screen and (min-width: 600px) {
    .welcome .row {
        flex-direction: row;
        gap: 0;
    }
}

.welcome .layout-1 .row {
    flex-direction: column-reverse;
}

@media only screen and (min-width: 600px) {
    .welcome .layout-1 .row {
        flex-direction: row;
    }
}

.welcome .layout-1 .col-1 {}

@media only screen and (min-width: 600px) {
    .welcome .layout-1 .col-1 {
        width: 28%;
    }
}

.welcome .layout-1 .col-2 {}

@media only screen and (min-width: 600px) {
    .welcome .layout-1 .col-2 {
        width: 57%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

.welcome .layout {
    max-width: 1054px;
}

.welcome .layout-1 {
    text-align: center;
}

@media only screen and (min-width: 600px) {
    .welcome .layout-1 {
        text-align: inherit;
        margin-top: -75px;
    }
}

@media only screen and (min-width: 600px) {
    .welcome .layout-1 img {
        margin-top: 25px;
        margin-left: -25px;
    }
}

.welcome p {
    font-family: Raleway;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    font-size: 17px;
    letter-spacing: -0.17px;
    /* 35.2px */
    margin-top: 0;
}

@media only screen and (min-width: 600px) {
    .welcome p {
        font-size: 22px;
        letter-spacing: -0.22px;
    }
}


/* Contact */

.contact {
    padding-top: 40px;
    padding-bottom: 40px;
    background: #F6F5FC;
}

@media only screen and (min-width: 600px) {
    .contact {
        padding-top: 105px;
        padding-bottom: 85px;
    }
}

.contact>header {
    margin-bottom: 12px;
}

.contact h3 {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}

.contact p {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}

.contact .container {
    max-width: 630px;
    margin: 0 auto;
    gap: 24px;
}

.contact .btn {
    display: flex;
    padding: 21px 46px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 46px;
    background: #F35C5C;
    border: 0;
}


/* Benefits */

.benefits {
    padding-top: 40px;
    padding-bottom: 20px;
}

@media only screen and (min-width: 600px) {
    .benefits {
        padding-top: 104px;
        padding-bottom: 22px;
    }
}

.benefits .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 30px;
}

.benefits .row {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0px;
}

@media only screen and (min-width: 600px) {
    .benefits .row {
        flex-direction: row;
        gap: 50px;
    }
}

.benefits h2 {
    width: 75%;
    margin: 0 auto;
    margin-bottom: 20px;
}

@media only screen and (min-width: 600px) {
    .benefits h2 {
        width: 100%;
    }
}

.benefits h4 {
    margin-top: 0;
    margin-bottom: 0;
}

.benefits p {
    margin-top: 0;
    margin-bottom: 0;
}


/* FAQ */

.faq {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media only screen and (min-width: 600px) {
    .faq {
        padding-top: 32px;
        padding-bottom: 84px;
    }
}

.faq ul {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.faq ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    background-image: url('../img/icons/check.png');
    background-position: 0 center;
    background-repeat: no-repeat;
    padding-left: 32px;
    margin-bottom: 20px;
}

.faq h3 {
    font-size: 20px;
    letter-spacing: 0.2px;
}

@media only screen and (min-width: 600px) {
    .faq h3 {
        font-size: 26px;
        letter-spacing: 0.26px;
    }
}

.faq h3,
.faq p {
    text-align: center;
}

@media only screen and (min-width: 600px) {
    .faq h3,
    .faq p {
        text-align: inherit;
    }
}

.faq img {}

.faq p {
    margin-bottom: 52px;
}

.faq .row {}

@media only screen and (min-width: 600px) {
    .faq .row {
        display: flex;
        gap: 50px;
        align-items: center;
    }
}

.faq .col-1 {}

@media only screen and (min-width: 600px) {
    .faq .col-1 {
        width: 52%;
    }
}

.faq .col-2 {
    text-align: center;
}

@media only screen and (min-width: 600px) {
    .faq .col-2 {
        text-align: inherit;
    }
}


/* Forms */

.form-row {}

.form-row .col-submit {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 8px 0 16px 0;
}

.form-row .col-consent {
    display: flex;
    justify-content: center;
    width: 100%;
}

.form-col {
    margin: 10px 5px;
}

@media only screen and (min-width: 600px) {
    .form-col {
        display: inline-block;
        width: 48%;
    }
}

.form-control-label {
    display: none;
}

.form-control {
    display: flex;
    width: 100%;
    padding: 15px 25px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 31px;
    background-color: #FFF;
    /* btn shadows */
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.12);
    border: 0;
    /* paragpaph */
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    letter-spacing: -0.16px;
}

.form .form-control::placeholder {
    color: #333;
}

.form .btn {
    display: flex;
    height: 48px;
    padding: 21px 46px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.16px;
    color: #fff;
    margin-top: 15px;
}


/* iti */

.iti {
    width: 100%;
    color: #333;
}

.input-country .iti__flag-container {
    right: 0 !important;
}

.iti__selected-flag {
    background: 0 !important;
}