header {
    position: relative;
}

header .text-wrapper h1 span:first-of-type {
    font-weight:800;
    background:var(--btn-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    font-size: 60px;
    clip-path: inset(1px);
}

header .text-wrapper h1 {
    /*fade-down animation*/
    transition: all .8s;
    transform: translateY(-10%);
    opacity: 0.0;
}

header .text-wrapper h1[data-scroll="in"] {
    transform: translateY(0);
    opacity: 1;
}

header p.header-subtitle {
    font-size: 21px;
    width: 75%;
}

header p.header-subtitle {
    /*fade-down animation*/
    transition: all .8s;
    transition-delay: .5s;
    transform: translateY(-10%);
    opacity: 0.0;
}

header p.header-subtitle[data-scroll="in"] {
    transform: translateY(0);
    opacity: 1;
}

section.first {
    text-align:center;
    padding-bottom:50px;
    max-width:var(--page-width);
    margin: 0 auto;
    position: relative;
}

section.first .first-section-div *[data-scroll] {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 1s;
}

section.first .first-section-div *[data-scroll="in"] {
    transform: translateY(0);
    opacity: 1;
}

section.first .title {
    font-size:65px;
    font-weight:800;
    line-height:75px;
    color: white;
}

section.first .first-img-container {
    position: relative;
    margin-bottom: 30px;
}

section.first .first-img {
    width: 124px;
    height: 140px;
    margin: 0 auto;
    position: relative;
}

section.first .first-img-icon {
    width: 80px;
    height: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

section.first .first-text {
    font-size: 16px;
    color: white;
    width: 60%;
    margin: 30px auto 0 auto;
}

section.first .grey-bg-text {
    background-color: #F5F5F5;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 1 / span 3;
    border-radius: 0 0 20px 20px;
    padding: 40px 0;
}

section.first .first-text.second {
    width: 70%;
    color: var(--main-color);
    margin: 0 auto;
}

section.first .gradient-text {
    font-weight:800;
    font-size: 30px;
    margin-top: 20px;
    background:var(--btn-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}


section.first .dashed-line {
    display: inline-block;
    margin: 130px auto;
    width: 182px;
    height: 0px;
    border-top: 4px dashed #FFA201;
    transform: rotate(90deg);
}

section.first .dashed-line-2 {
    display: block;
    margin: 30px auto 10px;
    width: 0;
    height: 130px;
    border: 2px dashed #FFA201;
}

section.first .info-card-container {
    display: grid;
    grid-template-columns: 4fr 1fr 4fr;
    gap: 5%;
    width: 970px;
    margin: 100px auto 50px auto;
    border-radius: 20px;
    background-color: white;
}

section.first .info-card-container .info-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px 50px;
    position: relative;
    margin: 100px auto 0 auto;
}

section.first .info-card-container .info-card .info-card-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0px;
    text-align: center;
    color: #677282;
}

section.first .card-img {
    position: absolute;
    top: -38%;
    left: 50%;
    transform: translateX(-50%);

    width: 100px;
    height: 112px;
}

section.first .info-card-icon-letter {
    font-size: 50px;
    font-weight: 800;
    text-align: center;
    color: white;

    position: absolute;
    top: -33%;
    left: 50%;
    transform: translateX(-50%);
}

section.first .card-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    width: 100%;
}

section.first .card-middle-circle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 3px solid #FFA201;
    background-color: white;

    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0px;
    text-transform: uppercase;
    text-align: center;
    color: var(--main-color);
}

section.first .card-middle-circle::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 71%;
    left: 50%;
    width: 100px;
    height: 3px;
    background-image: var(--btn-primary);
    transform: translateX(-50%) rotate(90deg);
}

section.first .card-middle-circle::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 28%;
    left: 50%;
    width: 100px;
    height: 3px;
    background-image: var(--btn-primary);
    transform: translateX(-50%) rotate(90deg);
}

section.first div:nth-of-type(3) .first-img-icon {
    width: 84px;
    height: 98px;
}

section.first div:nth-of-type(3) figure {
    display:flex;
    justify-content: center;
    margin-top: 50px;
}

section.first .home-map-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 50%;
    margin: 30px auto;
}

section.first .home-map-container .map-legend {
    display:flex;
    align-items: center;
    gap: 10px;
}

section.first .home-map-container .map-legend img {
    width: 21px;
    height: 21px;
}

section.first .home-map-container .map-legend .map-legend-text {
    font-weight: 700;
    font-size: 18px;
    line-height: 35px;
    color: white;
}

section.first div:nth-of-type(4) .first-img-icon {
    width: 80px;
    height: 80px;
}

section.first .logos-container {
    width: 75%;
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
    margin: 0 auto;
    margin-top: 40px;
}

section.first .logos-container:nth-of-type(2) {
    gap: 100px;
    margin-top: 20px;
}

/*section.scnd {
    display:grid;
    place-items:center;
    min-height:34vw;
}
section.scnd > div{
    position:relative;
    display:flex;
    gap:75px 10px;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    max-width:var(--page-width);
    margin:auto;
}
section.scnd img {
    position: absolute;
    inset:0;
    width:100%;
    height:auto;
}
.steps_card {
    width:239px;
    height:317px;
    padding:29px;
    display:flex;
    align-items:center;
    background-color:white;
    border-radius:20px;
    text-align:center;
}
.steps_card:nth-child(2n-1) {
    transform:translateY(20px);
}
.steps_card:nth-child(2n) {
    transform:translateY(-20px);
}
.steps_card div > .sub-title {
    font-size:12px;
    font-weight:700;
    line-height:14px;
    text-transform:uppercase;
    background:var(--btn-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.steps_card div > .title {
    font-size:18px;
    font-weight:700;
    line-height:21px;
    margin-bottom:2em;
}
.steps_card div > .description {
    font-size:13px;
    font-weight:500;
    line-height:21px;
    color:#677282
}
.third {
    text-align:center;
    max-width:var(--page-width);
    font-size:30px;
    font-weight:700;
    color:white;
    line-height:44px;
    padding:100px 0;
}
.third .special-text{
    font-weight:800;
    text-transform:uppercase;
    background:var(--btn-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.fourth {
    text-align:center;
    max-width:var(--page-width);
    font-size:65px;
    font-weight:800;
    color:white;
    line-height:75px;
    padding-bottom:90px;
}
.fifth {
    padding-bottom:110px;
}
.fifth > div {
    max-width:var(--page-width);
    position:relative;
    margin: auto;
}
.fifth > div > .card {
    position:relative;
    padding:28px 50px 28px 110px;
    background-color:white;
    max-width:810px;
    margin:auto;
    border-radius:20px;
}
.fifth > div > .card:first-child {
    margin-bottom:2em;
}
.fifth > div > .card:nth-child(2) {
    margin-bottom:4em;
}
.fifth > div > .card:nth-child(3) {
    margin-bottom:6em;
}
.fifth > div > .card .icon-wrapper {
    position:absolute;
    left:0;
    top:50%;
    transform:translate(-50%, -50%);
}
.fifth > div > .card h3 {
    font-size: 22px;
    font-weight:700;
    line-height:27px;
    color:#233754;
    margin-bottom:.5em;
}
.fifth > div > .card p {
    font-size: 16px;
    font-weight:500;
    line-height:24px;
    color:#677282;
}
.sixth{
    text-align:center;
    max-width:var(--page-width);
    font-size:49px;
    font-weight:700;
    color:white;
    line-height:72px;
    padding-bottom:50px;
}
.seventh {
    padding-bottom:150px;
    display:flex;
    justify-content:center;
}
.seventh > div {
    max-width:var(--page-width);
    position:relative;
    display:grid;
    grid-template-columns:repeat(3,max-content);
    gap:20px;
}
.seventh > div > .card {
    width:278px;
    height:282px;
    border-radius:20px;
    background-color:white;
    padding:50px 20px 27px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-direction: column;
}
.seventh > div > .card p {
    font-size:18px;
    font-weight:700;
    line-height:24px;
    text-align:center;
    color:#233754;
}
.eighth {
    background-color:white;
    max-width:var(--page-width);
    border-radius:20px;
    padding:142px 64px 110px;
    margin:0 auto 160px;
}
.eighth .text-wrapper {
    max-width:500px;
}
.eighth .text-wrapper h2 {
    font-size:49px;
    font-weight:700;
    line-height:1.47;
    color:#233754;
    margin-bottom:10px;
}
.eighth .text-wrapper p {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.88;
    margin-bottom:50px;
} */

/*desktop breakpoints*/
@media screen and (max-width:1439px) {
    section.first {
        width: var(--page-width-breakpoint);
        max-width: var(--page-width-breakpoint);
    }
}

@media screen and (max-width: 1280px) {
    section.first .info-card-container {
        width: 85%;
    }
}

/*tablet/mobile breakpoints*/

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

    header .mouse-scroll-icon {
        display: none;
    }

    header .text-wrapper {
        width: 95%;
    }

    header .text-wrapper h1 span:first-of-type {
        font-size:48px;
    }
    header p.header-subtitle {
        font-size:18px;
        width: 100%;
    }

    section.first .info-card-container {
        max-width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 60%;
        grid-template-columns: none;
        gap: 0;
    }

    section.first .info-card-container .info-card {
        padding-top: 80px;
        margin-top: 120px;
    }

    section.first .info-card-container .info-card:first-of-type {
        margin-top: 140px;
    }

    section.first .card-middle {
        margin: 35px auto;
    }

    section.first .card-img {
        top: -30%;
    }

    section.first .info-card-icon-letter {
        top: -24%;
    }

    section.first .card-middle-circle::before {
        transform: translateY(-50%) rotate(0);
        top: 50%;
        left: 57%;
    }

    section.first .card-middle-circle::after {
        transform: translateY(-50%) rotate(0);
        top: 50%;
        left: auto;
        right: 57%;
    }

    section.first .grey-bg-text {
        margin-top: 20px;
    }

    section.first .logos-container img {
        width: 180px;
    }

    section.first .logos-container,
    section.first .logos-container:nth-of-type(2) {
        width: 90%;
        gap: 5%;
    }
}

@media screen and (max-width: 900px) {
    section.first .card-middle-circle::before {
        left: 58%;
    }

    section.first .card-middle-circle::after {
        right: 58%;
    }

    section.first .home-map-container {
        width: 90%;
    }
}

@media screen and (max-width: 800px) {
    header .text-wrapper h1 span:first-of-type {
        font-size:42px;
    }
    header p.header-subtitle {font-size:16px;}
    section.first .first-text {
        width: 80%;
    }

    section.first .card-middle-circle::before {
        left: 18%;
    }

    section.first .card-middle-circle::after {
        right: 18%;
    }

    section.first .logos-container img {
        width: 140px;
    }
}

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

    header .text-wrapper h1 span:first-of-type {
        font-size:38px;
    }
    header p.header-subtitle {font-size:16px;}

    section.first .first-img {
        width: 100px;
        height: auto;
    }

    section.first .first-img-icon {
        width: 70px;
        height: auto;
    }

    section.first .title {
        font-size: 50px;
    }

    section.first .gradient-text {
        font-size: 28px;
    }

    section.first .info-card-container {
        width: 90%;
    }

    section.first .info-card-icon-letter {
        top: -24%;
    }

    section.first .card-middle-circle::after {
        right: 22%;
    }

    section.first .card-middle-circle::before {
        left: 22%;
    }

    section.first div:nth-of-type(3) .first-img-icon {
        width: 65px;
        height: auto;
    }

    section.first div:nth-of-type(4) .first-img-icon {
        width: 70px;
        height: auto;
    }

    section.first .logos-container, section.first .logos-container:nth-of-type(2) {
        flex-wrap: wrap;
        width: 70%;
        gap: 10%;
        align-items: center;
    }

    section.first .logos-container img:nth-child(3),
    section.first .logos-container img:nth-child(4) {
        margin-top: 15px;
    }

    section.first .logos-container:nth-of-type(2) {
        margin-top: 30px;
    }
}

@media screen and (max-width: 414px) {
    header .text-wrapper br {
        display: none;
    }

    header .text-wrapper h1 span:first-of-type {
        font-size:32px;
    }
    header p.header-subtitle {font-size:14px;}

    section.first .title {
        font-size: 45px;
        line-height: 55px;
    }

    section.first .first-text {
        width: 90%;
    }

    section.first .title {
        font-size: 45px;
        line-height: 65px;
    }

    section.first .info-card-container {
        width: 90%;
    }

    section.first .info-card-container .info-card {
        padding-top: 70px;
    }

    section.first .card-middle {
        margin: 35px auto 60px auto;
    }

    section.first .card-middle-circle::before {
        left: 15%;
        width: 80px;
    }

    section.first .card-middle-circle::after {
        right: 15%;
        width: 80px;
    }

    section.first .info-card-container .info-card:nth-of-type(2) {
        margin-top: 120px;
    }

    section.first .info-card-icon-letter {
       top: -25%;
    }

    section.first .first-text.second {
        width: 85%;
    }

    section.first .home-map-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    section.first .logos-container img:not(:first-of-type) {
        margin-top: 40px;
    }
}

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

    header .text-wrapper {
        gap: 40px;
    }
    header .text-wrapper h1 span:first-of-type {
        font-size:35px;
    }
    header .text-wrapper h1 {
        font-size: 22px;
    }

    main {
        padding-top: 80px;
    }

    section.first .info-card-container .info-card {
        margin-top: 100px;
        padding-top: 70px;
        padding-left: 10px;
        padding-right: 10px;
    }

    section.first .info-card-container .info-card:first-of-type {
        padding-top: 80px;
        margin-top: 120px;
        padding-left: 10px;
        padding-right: 10px;
    }
    section.first .info-card-container .info-card .info-card-text {
        font-size:16px;
        line-height:1.5;
    }

    section.first .info-card-icon-letter {
        top: -26%
    }
    section.first .card-middle {
        margin: 35px auto 30px auto;
    }
    section.first .card-middle-circle::after {
        right: 11%;
        width: 52px;
    }

    section.first .card-middle-circle::before {
        left: 11%;
        width: 52px;
    }

    section.first .title {
        font-size: 40px;
        line-height: 50px;
    }

    section.first .logos-container img:not(:first-of-type) {
        margin-top: 50px;
    }
}
@media screen and (max-width: 320px) {
    header .text-wrapper h1 span:first-of-type {
        font-size: 22px;
    }

    header p.header-subtitle {
        font-size: 12px;
    }
}
.checkList-wrapper {
    max-width:550px;
    margin:60px auto 100px;
    font-size:18px;
    color:white;
    font-weight:600;
    text-align:left;
}
.field-wrapper.field_checkbox {
    display:flex;
    align-items: center;
}

.field-wrapper.field_checkbox label:first-child {
    flex:0 0 40px;
    font-size:17px;
    color:transparent;
    display:grid;
    place-items:center;
    cursor:pointer;
}

.field-wrapper.field_checkbox label.check:first-child {
    background:var(--btn-primary);
    color:white;
    border-color:transparent;
}
.field-wrapper.field_checkbox label:last-child {
    padding-left:20px;
    cursor:pointer;
}

.field-wrapper.field_checkbox .checkbox {
    width:40px;
    height:40px;
    border:1px solid white;
    background:transparent;
    border-radius:50%;
}
.field-wrapper .checkbox  input {display:none;}

