.cta {
    padding: 16px 36px;
    cursor: pointer;
}

header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding-bottom: calc(var(--spacing) / 2);
}

.hero {
    padding: 0;
}

header {
    background: #FFF;
}

.hero {
    color: var(--color-light-blue);
    background: linear-gradient(128deg, var(--color-sky-blue) 0%, var(--color-very-dark-blue) 100%);
}

.hero .container {
    position: relative;
}

.main-content {
    position: relative;
    padding-top: 155px;
    padding-bottom: 65px;
    width: 720px;
    max-width: 100%;
}

/*h1 {*/
/*    font-size: 70px;*/
/*    line-height: 75px;*/
/*}*/

h1 {
    font-size: 75px;
    line-height: 80px;
}

h1 span {
    display: block;
}

h2 {
    line-height: 1.1;
    text-align: center;
}

.trustpilot {
    position: absolute;
    bottom: 15px;
}

.trustpilot a {
    justify-content: flex-start;
}

.form-container {
    position: absolute;
    top: 92px;
    right: 0;
    width: 370px;
    background-color: #FFF;
    padding: 25px;
    color: var(--black);
    text-align: center;
    min-height: 500px;
    box-shadow: 8px 8px 32px rgba(3, 14, 49, .16);
}

.form-container h2 {
    color: var(--color-very-dark-blue);
    font-size: 32.5px;
    line-height: 1;
    margin-bottom: 0;
}

.form-container p {
    color: var(--color-text-gray);
    margin: 12.5px 0px;
}

form {
    position: relative;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
}

form .row {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.iti.iti--allow-dropdown.iti--show-flags {
    width: 100%;
}

input, select, textarea {
    position: relative;
    width: 100%;
    background-color: var(--color-snow-gray);
    border: 0;
    padding: 15px 20px;
    outline: 0!important;
}

select {
    /* for Firefox */
    -moz-appearance: none;
    /* for Chrome */
    -webkit-appearance: none;
}
  
/* For IE10 */
select::-ms-expand {
    display: none;
}

.select-row:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 12px;
    width: 20px;
    height: 20px;
    background-size: cover;
    background-image: url(/img/chevron/chevron-down.svg);
    transition: transform .2s ease;
}

textarea {
    height: 80px;
}

.tymsg, .error {
    width: 100%;
    color: red;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.tymsg {
    color: green;
}

form button.cta {
    width: 100%;
    font-size: 16px;
}

/* TRUSTPILOT */
.trustp {
    padding: 0;
}

.trustp .testimonials {
    max-width: 650px;
    margin: 0;
}

.trustp .slick-prev {
    left: -40px;
}

.trustp .slick-next {
    right: -40px;
}

.ts {
    height: auto;
    padding: 24px 0;
    margin: 0;
}

.ts-name {
    margin-top: 0;
}

.ts-text {
    font-size: 15px;
}

.ts-comment {
    height: auto;
}

/* HOW IT WORKS */

.how-it-works {
    margin-top: 110px;
}

/* TESTIMONIALS */

.clients .slick-track {
    display: flex;
    align-items: center;
}

.clients .slick-slide {
    margin: 0 15px;
}

.review {
    position: relative;
    height: 180px;
    width: 100%;
}

.review.lazy-background {
    position: relative;
    background-color: rgba(0, 0, 0, 0.11);
    animation: skeleton 2s ease-in-out 0.5s infinite; 
    overflow: hidden;
}

.review.lazy-background::after {
    -webkit-animation: wave 2s linear 0.5s infinite;
    animation: wave 2s linear 0.5s infinite;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.04), transparent);
    content: '';
    position: absolute;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}

@keyframes skeleton {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

@keyframes wave {
    0% {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    50% {
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.review.loaded {
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    cursor: pointer;
}

.review.loaded:after {
    content: '';
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    background-image: url("/img/play.svg");
    background-size: 24px;
    background-position: 50%;
    background-repeat: no-repeat;
    background-color: var(--color-very-dark-blue);
    padding: 10px;
    transition: border-radius .25s ease-in-out;
}

.review:hover:after {
    border-radius: 50%;
}

/* VIDEO POPUP */

.video-popup {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 999;
    cursor: pointer;
}

.video-popup .close {
    position: absolute;
    top: 15px;
    right: 25px;
    padding: 0;
    color: inherit;
    background-color: transparent;
    border: 0;
    float: right;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    opacity: .5;
    cursor: pointer;
    transition: opacity .25s ease-in-out;
}

.video-popup .close:hover {
    opacity: 1;
}

.video-popup .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.video-popup video {
    width: auto;
    max-width: 100%;
    height: 500px;
}

/* FAQ */

.faq {
    background-color: #FFF;
}

/* READY TO */

.ready-to {
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.ready-to .container {
    background-color: var(--color-royal-blue);
    color: var(--color-light-blue);
}

.ready-to .section-title {
    margin-bottom: var(--spacing);
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: unset;
    color: var(--color-text-gray);
    font-size: 14px;
}

/* footer */

@media (min-width: 1200px) {
    .main-content p {
        margin-bottom: 0;
    }
    .ready-to {
        padding: 0;
    }
    .ready-to .container {
        padding: 50px;
    }
    footer {
        padding-top: 250px;
    }
    body > section:last-of-type {
        padding-bottom: 300px;
    }
}

@media (max-width: 1200px) {
    header .container {
        justify-content: center;
    }
    .hero {
        position: relative;
        background: none;
    }
    .hero:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 75%;
        min-height: 665px;
        background: linear-gradient(128deg, var(--color-sky-blue) 0%, var(--color-very-dark-blue) 100%);
    }
    .hero .container {
        flex-direction: column;
        gap: 0;
    }
    .main-content {
        margin-top: 90px;
        padding-top: 30px;
        padding-bottom: 15px;
        width: 500px;
        max-width: 100%;
        text-align: center;
    }
    h1 {
        text-align: center;
        font-size: 64px;
        line-height: 1;
    }
    .form-container {
        position: static;
        width: 700px;
        max-width: 100%;
    }
    .trustpilot {
        width: 100%;
        position: static;
    }
    .trustpilot a {
        justify-content: center;
    }
    .ready-to {
        width: 100%;
        position: static;
        top: 0;
        left: 0;
        margin-right: 0;
        transform: none;
        background-color: var(--color-royal-blue);
    }
    .ready-to .container {
        background: none;
    }
    #bottom-form .row {
        flex-direction: column;
    }
    .how-it-works {
        margin-top: 0;
    }
    .trustp .testimonials {
        max-width: 700px;
        margin: var(--spacing) auto 0 auto;
    }
    .ts {
        padding: 24px;
    }
}

@media screen and (max-width: 800px) {
    .trustp {
        margin-bottom: 50px;
    }
    .trustp .testimonials {
        max-width: 100%;
    }
}

@media screen and (max-width: 550px) {
    h1 {
        font-size: 55px;
        letter-spacing: .5px;
    }
    form .row {
        flex-direction: column;
    }
}

@media screen and (max-width: 400px) {
    h1 {
        font-size: 45px;
    }
}

@media screen and (max-width: 383px) {
    .trustpilot {
        font-size: 14px;
    }
}