/* CSS RESET */
*, *::before, *::after {
    box-sizing: border-box;
}
* :focus {
    outline: 1px solid var(--blue);
}
* {
    margin: 0;
    padding: 0;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}


html {
    height: 100%;
}


/* FONTS */

/* MYRIAD PRO */

@font-face {
    font-family: 'Myriad Pro';
    src: url('./fonts/myriad-pro/MyriadPro-Bold.eot');
    src: url('./fonts/myriad-pro/MyriadPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('./fonts/myriad-pro/MyriadPro-Bold.woff2') format('woff2'),
        url('./fonts/myriad-pro/MyriadPro-Bold.woff') format('woff'),
        url('./fonts/myriad-pro/MyriadPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('./fonts/myriad-pro/MyriadPro-Light.eot');
    src: url('./fonts/myriad-pro/MyriadPro-Light.eot?#iefix') format('embedded-opentype'),
        url('./fonts/myriad-pro/MyriadPro-Light.woff2') format('woff2'),
        url('./fonts/myriad-pro/MyriadPro-Light.woff') format('woff'),
        url('./fonts/myriad-pro/MyriadPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('./fonts/myriad-pro/MyriadPro-Regular.eot');
    src: url('./fonts/myriad-pro/MyriadPro-Regular.eot?#iefix') format('embedded-opentype'),
        url('./fonts/myriad-pro/MyriadPro-Regular.woff2') format('woff2'),
        url('./fonts/myriad-pro/MyriadPro-Regular.woff') format('woff'),
        url('./fonts/myriad-pro/MyriadPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('./fonts/myriad-pro/MyriadPro-Semibold.eot');
    src: url('./fonts/myriad-pro/MyriadPro-Semibold.eot?#iefix') format('embedded-opentype'),
        url('./fonts/myriad-pro/MyriadPro-Semibold.woff2') format('woff2'),
        url('./fonts/myriad-pro/MyriadPro-Semibold.woff') format('woff'),
        url('./fonts/myriad-pro/MyriadPro-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* SF PRO DISPLAY */

@font-face {
    font-family: 'SF Pro Display';
    src: url('./fonts/sf-pro-display/SFProDisplay-Regular.eot');
    src: url('./fonts/sf-pro-display/SFProDisplay-Regular.eot?#iefix') format('embedded-opentype'),
        url('./fonts/sf-pro-display/SFProDisplay-Regular.woff2') format('woff2'),
        url('./fonts/sf-pro-display/SFProDisplay-Regular.woff') format('woff'),
        url('./fonts/sf-pro-display/SFProDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('./fonts/sf-pro-display/SFProDisplay-Medium.eot');
    src: url('./fonts/sf-pro-display/SFProDisplay-Medium.eot?#iefix') format('embedded-opentype'),
        url('./fonts/sf-pro-display/SFProDisplay-Medium.woff2') format('woff2'),
        url('./fonts/sf-pro-display/SFProDisplay-Medium.woff') format('woff'),
        url('./fonts/sf-pro-display/SFProDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('./fonts/sf-pro-display/SFProDisplay-Bold.eot');
    src: url('./fonts/sf-pro-display/SFProDisplay-Bold.eot?#iefix') format('embedded-opentype'),
        url('./fonts/sf-pro-display/SFProDisplay-Bold.woff2') format('woff2'),
        url('./fonts/sf-pro-display/SFProDisplay-Bold.woff') format('woff'),
        url('./fonts/sf-pro-display/SFProDisplay-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* COLORS */

:root {
    --blue: #3D5A96;
    --blue-dark: #0a2d72;
    --white: #ffffff;
  }


/* REUSABLE CLASSES */

.block {
    display: block;
}
.font-weight-700 {
    font-weight: 700;
}
.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 0;
}

/*------------------------------------------------------------------------------------------*/

body {
    font-family: "Open Sans", sans-serif;
    color: black;
    font-size: 18px;
    min-height: 100vh;
}
main {
    width: 100%;
    min-height: 100vh;
}
.launching-soon-main {
    display: flex;
    align-items: center;
    background-image: linear-gradient(to right, #f0fafe, #7e898d);
    background-size: cover;
}
.launching-soon-content-col {
    flex: 0 1 45%;
}
.launching-soon-img-col {
    flex: 1;
}
.logo {
    max-width: 200px;
    position: absolute;
    top: 60px;
}
h1, h2, h3, h4 {
    font-family: 'Myriad Pro', sans-serif;
    font-weight: 400;
    line-height: 0.95;
    color: #3D5A96;
}
h1 {
    font-size: 70px;
}
.heading-main {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.subheading {
    font-size: 20px;
}
.image-mobile {
    display: none;
}

.content-title {
    font-size: 18px;
    margin-top: 20px;
}
.content-description {
    margin-top: 10px;
    margin-bottom: 20px;
    max-width: 80%;
}
.launching-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-top: 10%;
}

.form-launching-soon {
    max-width: 62%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
}
input::placeholder {
    opacity: .7;
}

.btn {
    width: 150px;
    background-color: var(--blue);
    color: white;
    margin-top: 10px;
    transition: all .3s ease;
    cursor: pointer;
}
.btn:hover {
    background-color: var(--blue-dark);
}



/* THANK YOU PAGE */

.thank-you-main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    background: linear-gradient(to right, white, #dbe4eb);
}
.logo-big {
    max-width: 200px;
}
.thank-you-main img {
    position: absolute;
    top: 60px;
    left: 60px;
}

.thank-you-main img.bg-image {
    bottom: 0;
    right: 0;
    top: unset;
    left: unset;
    width: 700px;
}
.checkmark {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 60px;
    height: 60px;
    background-color: var(--blue);
    border-radius: 100%;
}
.checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    display: block;
    width: 37px;
    height: 20px;
    border-bottom: 8px solid var(--white);
    border-left: 8px solid var(--white);
}
.thank-you-main h1 {
    margin: 20px 0;
    font-weight: 600;
    font-size: 58px;
}
.thank-you-main p {
    font-size: 28px;
    color: var(--blue);
}

@media only screen and (max-width: 1650px) {
    body {
        font-size: 16px;
    }
    .content-title {
        margin-top: 13px;
    }
    .thank-you-main p {
        font-size: 23px;
    }
    .checkmark {
        width: 50px;
        height: 50px;
    }
    .checkmark::after {
        width: 30px;
        height: 15px;
        border-bottom: 7px solid var(--white);
        border-left: 7px solid var(--white);
    }
}

@media only screen and (max-width: 1440px) {
    .wrapper {
        padding: 50px;
    }

}

@media only screen and (max-width: 1024px) {
    .content-description,
    .form-launching-soon {
        max-width: 80%;
    }
}

@media only screen and (max-width: 1024px) {
    h1 {
        font-size: 50px;
    }
    .wrapper {
        padding: 25px;
    }

    .thank-you-main img:not(.bg-image) {
        max-width: 150px;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo {
        max-width: 150px;
    }
}

@media only screen and (max-width: 768px) {

    .launching-soon-main {
        background-image: linear-gradient(to right, #dae5ea, #9da9ae);
    }
   
    h1 {
        font-size: 43px;
    }
    .logo {
       top: 25px;
    }
    .launching-soon {
        flex-direction: column;
    }
    .launching-soon-main {
        height: unset;
    }
    .subheading,
    .content-title {
        font-size: 16px;
    }
    .image-mobile {
        display: block;
        margin: 0 auto;
        margin-top: 30px;
    }
    .launching-soon-img-col {
        display: none;
    }
    .content-description, .form-launching-soon {
        max-width: 100%;
    }

    .thank-you-main {
        background: linear-gradient(to bottom, white, #dbe4eb);
    }
    .thank-you-main p {
        font-size: 18px;
    }
    .checkmark {
        width: 40px;
        height: 40px;
    }
    .checkmark::after {
        width: 25px;
        height: 12px;
        border-bottom: 5px solid var(--white);
        border-left: 5px solid var(--white);
    }
}

@media only screen and (max-width: 576px) {
    main {
        min-height: 100%;
        height: 100%;
    }

    .thank-you-main h1 {
        margin: 10px 0;
    }
    .content-description, input {
        font-size: 15px;
    }
    h1 {
        font-size: 35px;
    }
    .thank-you-main p {
        font-size: 14px;
    }
    .thank-you-main img {
        top: 25px;
        left: 25px;
    }
    .checkmark {
        width: 32px;
        height: 32px;
    }
    .checkmark::after {
        width: 18px;
        height: 9px;
        border-bottom: 4px solid var(--white);
        border-left: 4px solid var(--white);
    }
    .form-launching-soon {
        gap: 10px;
    }

    .launching-soon {
        margin-top: 80px;
    }
}

@media (min-width: 1240px) {
    .launching-soon-main .wrapper {
        margin-top: -25px;
    }
}