body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}
body,li,li a,p,span{
    font-family: "Lato", sans-serif;
    color: #2B2B2B;
}
h1,h2,h3,h4,h5,h6{
    font-family: "Oswald", sans-serif;
    color: #000000;
}
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.project_open_block .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}
@media (min-width: 1200px) {
    .project_open_block .container {
        max-width: 1200px;
    }
}
/*@media (min-width: 1200px) {
    .container {
        max-width: 1050px;
    }
}*/
@media (max-width: 1200px) {
    .project_open_block .container {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.btn-wrapper {
    display: flex;
    justify-content: flex-start;
    margin: 40px 0;
}
.proj-btn{
    font-family: "Lato", sans-serif;
    background: #FDE159;
    border: 1px solid #FDE159;
    border-radius: 88px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 20px 40px;
    margin: 0;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    line-height: 128%;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color:#000000;
    box-sizing: border-box;
    transition-duration: 0.25s;
    position: relative;
    justify-content: center;
}
.proj-btn:hover{
    background: #ffffff;
    color: #333333;
    text-decoration: none;
    border: 1px solid #333333;
    animation: ripple 0.7s linear infinite;
}
.proj-btn:disabled {
    color: #FFFFFF!important;
    background: #ccc!important;
    border: 1px solid #ccc;
    cursor: not-allowed;
}
.s-yellow .proj-btn {
    background: #fff;
    color: #F1D02B;
}
.s-yellow .proj-btn:hover{
    background: #F1D02B;
    color: #000;
}
@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(163, 177, 198, 0.3), 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.01);
    }
    100% {
        box-shadow: 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.03), 0 0 0 8em rgba(163, 177, 198, 0.01);
    }
}
.project_open_block section {
    position: relative;
    margin: 0;
    padding: 90px 0;
}
.s-yellow {
    background: #F1D02B;
    padding: 70px 0;
}
section h2, .section-title {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    margin: 0 200px 50px 200px;
}
section h3 {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.2px;
    text-align: left;
    margin: 0 0 15px 0;
}
.project_open_block p,.project_open_block ul li,.project_open_block ol li{
    font-weight: 400;
    font-size: 27px;
    line-height: 111%;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
}
.project_open_block ul,.project_open_block ol{
    margin-top: 0;
}
.project_open_block ul li,.project_open_block ol li{
    line-height: 123%;
    margin-bottom: 5px;
}
.project_open_block section p:last-of-type{
    margin-bottom: 0;
}
.project_open_block input, .project_open_block select {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 276px;
    height: 49px;
    background: #FFFFFF;
    box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    border: none;
    color: #000000;
    position: relative;
    transition: 0.25s;
}
.project_open_block input.error, .project_open_block select.error {
    border: 1px solid #ff0000;
}
.project_open_block select {
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    cursor: pointer;
}
.project_open_block .select {
    position: relative;
    width: 276px;
}
.project_open_block .select:after {
    content: url(../../images/select-arrow.svg);
    color: #000;
    font-size: 18px;
    right: 20px;
    top: 12px;
    padding: 0;
    position: absolute;
    pointer-events: none;
    font-stretch: ultra-expanded;
    transition: 0.25s;
}
.project_open_block .select.active:after {
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.project_open_block .wrapper-just-2{
    width: calc(50% - 40px);
}
.project_open_block .wrapper-just-3{
    width: calc(33.33333% - 25px);
}
.project_open_block .wrapper-just-4{
    width: calc(25% - 25px);
}
.project_open_block .wrapper-just-5{
    width: calc(20% - 25px)!important;
}
.project_open_block .wrapper-just-4-2 {
    width: calc(50% - 25px)!important;
}
.project_open_block .wrapper-just-2-3{
    width: calc(66.66666% - 20px)!important;
}
.project_open_block .wrapper-100{
    width: 100%!important;
    ;
}
.project_open_block .wrapper-2{
    width: 50%!important;
    ;
}
.project_open_block .wrapper-3{
    width: 33.33333%!important;
    ;
}
.project_open_block .wrapper-4{
    width: 25%!important;
    ;
}
.project_open_block .wrapper-5{
    width: 20%!important;
    ;
}

.form-wrapper-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(51,51,51,0.9);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
    display: none;
}
.form-wrapper-overlay .form-wrapper {
    max-width: 390px;
    position: relative;
    background: #F2C94C;
    top: 20%;
    margin: auto;
    z-index: 99;
    padding: 70px 20px;
    text-align: center;
    border-radius: 30px;
}
.form-wrapper-overlay .form-wrapper .close-popup {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}
.form-wrapper-overlay .form-wrapper .close-popup:hover path {
    fill: #255A6C;
}
.form-wrapper-overlay .form-wrapper .close-popup svg {
    max-width: 100%;
    max-height: 100%;
    transition: .4s;
}
.form-wrapper-overlay .form-wrapper .close-popup path {
    fill: #fff;
    transition: .4s;
}
.form-wrapper-overlay .form-wrapper input {
    width: 100%;
    margin-bottom: 20px;
}
.form-wrapper-overlay .form-wrapper .proj-btn {
    background: #fff;
    border: 1px solid #fff;
    color: #333;
    width: 100%;
}
.form-wrapper-overlay .form-wrapper .proj-btn:hover {
    background: #333;
    border: 1px solid #333;
    color: #fff;
}
.form-check {
    position: relative;
    display: flex;
}
.form-check-input {
    position: absolute;
    margin: 0;
    top:0;
    width: 25px;
    height: 25px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-check-label{
    padding-left: 39px;
    font-style: italic;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    color: #909090;
    margin: 0 0 20px 0;
    height: auto;
}

.overlay-success {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(51,51,51,0.9);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
    display: none;
}
.overlay-success .cr-wrapper {
    max-width: 390px;
    position: relative;
    background: #F2C94C;
    top: 20%;
    margin: auto;
    z-index: 99;
    padding: 70px 20px;
    text-align: center;
    border-radius: 30px;
}
.overlay-success .cr-wrapper .close-popup {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}
.overlay-success .cr-wrapper .close-popup:hover path {
    fill: #255A6C;
}
.overlay-success .cr-wrapper .close-popup svg {
    max-width: 100%;
    max-height: 100%;
    transition: .4s;
}
.overlay-success .cr-wrapper .close-popup path {
    fill: #fff;
    transition: .4s;
}
#callbackform-res {
    font-size: 21px;
}

@media (max-width: 1200px) {
    .project_open_block section {
        padding: 40px 0;
    }
    section h2, .section-title {
        font-size: 28px;
        margin: 0 auto 30px auto;
    }
    section h3 {
        font-size: 20px;
    }
    .project_open_block p,.project_open_block ul li,.project_open_block ol li{
        font-size: 20px;
    }
    .project_open_block .wrapper-mob-50{
        width: 50%!important;
    }
    .project_open_block .wrapper-mob-100{
        width: 100%!important;
    }
    .project_open_block .wrapper-mob-just-50{
        width: calc(50% - 10px);
    }
}
@media (max-width: 768px) {
    .form-wrapper-overlay .form-wrapper {
        top: 5%;
    }
}
.button-text-wrapper {
    margin: 80px 100px 0 100px;
    border: 7px solid #FFFFFF;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    padding: 32px 70px;
}
.button-text-wrapper.yellow {
    border: 7px solid #FDE159;
}
.button-text-wrapper .text-wrapper{
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: 0;
    margin: 0;
    width: calc(68% - 10px);
}
.button-text-wrapper .btn-wrapper{
    width: calc(32% - 10px);
    justify-content: flex-end;
    margin: 0;
    align-items: center;
}
.button-text-wrapper .btn-wrapper .proj-btn{
    background: #FFFFFF;
    color: #000000;
}
.button-text-wrapper.yellow .btn-wrapper .proj-btn{
    background: #FDE159;
}
@media screen and (max-width: 1170px) {
    .button-text-wrapper {
        margin: 40px 0 0 0;
        padding: 20px 30px;
    }
    .button-text-wrapper .text-wrapper{
        font-size: 20px;
        width: calc(60% - 20px);
    }
    .button-text-wrapper .btn-wrapper{
        width: calc(40% - 20px);
    }
}
@media screen and (max-width: 768px) {
    .button-text-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .button-text-wrapper.yellow {
        border: 4px solid #FDE159;
    }
    .button-text-wrapper .text-wrapper{
        width: 100%;
        text-align: center;
    }
    .button-text-wrapper .btn-wrapper{
        width: 100%;
        justify-content: center;
    }
}
.header,.header.nav-down, .static-baner{
    display: none;
}

.hero {
    height: 800px;
    position: relative;
    margin: 0!important;
    padding: 0!important;
    background: linear-gradient(270deg, rgba(6, 6, 6, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);

}
.hero .hero-bg {
    height: 800px;
    z-index: -1;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    /*    filter: brightness(70%);*/
}
.hero .container {
    height: 100%;
}
.hero .hero_info_wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}
.hero .hero_info{
    margin: 0;
    text-align: left;
    width: 50%;
}
.hero h1,
.hero .hero_subtitle{
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 58px;
    line-height: 112%;
    letter-spacing: 1.1px;
    color:#FFFFFF;
    margin:0;
}
.hero .hero_down_title{
    font-family: "Lato", sans-serif;
    color: #FFFFFF;
    margin: 21px 0 0 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0;
}
@media screen and (max-width: 1170px) {
    .hero .hero_info{
        width: 70%;
    }
}
@media screen and (max-width: 768px) {
    .hero {
        background-size: cover;
        background-position: center center;
        height:100svh;
    }
    .hero .hero-bg {
        height:100svh;
        object-position: right;
    }
    .hero .hero_info{
        width: 100%;
    }
    .hero h1,
    .hero .hero_subtitle{
        font-size: 38px;
    }
    .hero .hero_down_title{
        font-size: 20px;
    }
    .hero .proj-btn{
        padding: 20px 30px;
        font-size: 16px;
    }
}

.why-netherlands {
}
.why-netherlands .why-netherlands-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
}
.why-netherlands .why-netherlands-wrapper .why-netherlands-single {
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(103, 103, 103, 0.25);
    border-radius: 20px;
    padding: 32px 27px 32px 27px;
    margin: 0;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction:row;
    justify-content: flex-start;
    align-items: center;
}
.why-netherlands .why-netherlands-wrapper .why-netherlands-single .img-wrapper{
    width: 109px;
    height: 109px;
    min-width: 109px;
    background: #FDE159;
    border-radius: 50%;
    padding: 12px 18px;
    margin: 0 16px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.why-netherlands .why-netherlands-wrapper .why-netherlands-single .img-wrapper span{
    width: 54px;
    height: 73px;
    position: relative;
    font-size: 42px;
    line-height: 170%;
}
.why-netherlands .why-netherlands-wrapper .why-netherlands-single .content {
    text-align: left;
}
.why-netherlands .why-netherlands-wrapper .why-netherlands-single .content p {
    font-weight: 500;
    font-size: 27px;
    line-height: 110%;
    letter-spacing: 0.54px;
    margin-bottom: 0;
}
.why-netherlands .btn-wrapper {
    justify-content: center;
    margin: 40px 0 0 0;
}

@media screen and (max-width: 1170px) {
    .why-netherlands .why-netherlands-wrapper {
        gap: 10px 10px;
    }
}
@media screen and (max-width: 768px) {
    .why-netherlands .why-netherlands-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px 20px;
    }
    .why-netherlands .why-netherlands-wrapper .why-netherlands-single {
        padding: 15px 15px 15px 15px;
        width: 100%;
    }
    .why-netherlands .why-netherlands-wrapper .why-netherlands-single .content p {
        font-size: 20px;
        letter-spacing: 0.3px;
    }
}

.your-way{
    background: #FDE159;
}
.your-way .your-way-wrapper{
    display: flex;
    flex-direction: column;
    margin: 0 170px;
    position: relative;
    counter-reset: my-counter -1;
}
.your-way .your-way-wrapper:before{
    content: "";
    position: absolute;
    left: 31.5px;
    top: 0;
    height: 100%;
    width: 7px;
    background: #FFFFFF;
}
.your-way .your-way-wrapper .your-way-single {
    position: relative;
    padding: 0 0 0 130px;
    counter-increment: my-counter;
}
.your-way .your-way-wrapper .your-way-single .your-way-text{
    background: #fff;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    padding: 19px 60px;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0 0 80px 0;
    position: relative;
}
.your-way .your-way-wrapper .your-way-single:last-of-type .your-way-text{
    margin: 0;
}
.your-way .your-way-wrapper .your-way-single:before{
    content: counter(my-counter);
    width: 70px;
    height: 70px;
    border: 7px solid #FFFFFF;
    background: #FDE159;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.your-way .your-way-wrapper .your-way-single:last-of-type:before{
    background: #FFFFFF;
    top: unset;
    bottom: 0;
}

@media screen and (max-width: 1170px) {
    .your-way .your-way-wrapper{
        margin: 0;
    }
}
@media screen and (max-width: 768px) {
    .your-way .your-way-wrapper:before {
        left: 16.5px;
        width: 4px;
    }
    .your-way .your-way-wrapper .your-way-single {
        padding: 0 0 0 50px;
    }
    .your-way .your-way-wrapper .your-way-single .your-way-text{
        padding: 15px 20px;
        font-weight: 600;
        font-size: 22px;
        margin: 0 0 40px 0;
    }
    .your-way .your-way-wrapper .your-way-single:before{
        width: 40px;
        height: 40px;
        border: 4px solid #FFFFFF;
        font-size: 28px;
    }

}

.organization {
    background: #ECFAFF;
}
.organization .organization-description{
    font-size: 27px;
    font-weight: 400;
    line-height: 111%;
    text-align: center;
    margin: 0 136px 0 136px;
    padding: 0 0 20px 0;
}
.organization .organization-description a {
    color:#272727;
    font-weight: 900;
}
.organization-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.organization-features .organization-feature {
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(103, 103, 103, 0.25);
    border-radius: 29px;
    padding: 27px 27px 27px 27px;
    margin: 30px 0 0 0;
    text-align: center;
    width: calc(33.333% - 15px);
    display: flex;
    flex-direction:row;
    justify-content: flex-start;
    align-items: center;
}
.organization-features .organization-feature .img-wrapper{
    width: 88px;
    height: 88px;
    background: #FDE159;
    border-radius: 50%;
    padding: 12px 18px;
    margin: 0 16px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.organization-features .organization-feature .img-wrapper span{
    width: 48px;
    height: 63px;
    position: relative;
    font-size: 36px;
    line-height: 170%;
}
.organization-features .organization-feature .content {
    text-align: left;
}
.organization-features .organization-feature .content .organization-value {
    font-family: "Oswald", sans-serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.02em;
    text-align: left;
    margin: 0 0 8px 0;
}
.organization-features .organization-feature .content .organization-label {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.02em;
    text-align: left;
}

.tarchenks-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 80px 70px 0 70px;
}
.tarchenks-wrapper .text-wrapper{
    width: calc(41% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.tarchenks-wrapper .text-wrapper p{
    font-weight: 400;
    font-size: 23px;
    line-height: 130%;
    letter-spacing: 0;

}
.tarchenks-wrapper .img-wrapper{
    width: calc(59% - 20px);
}
.tarchenks-wrapper .img-wrapper img{
    border-radius: 25px;
    width: 100%;
}

@media screen and (max-width: 1170px) {
    .organization .organization-description{
        margin: 0;
    }
    .organization-features .organization-feature {
        width: calc(50% - 20px);
    }
    .tarchenks-wrapper {
        display: flex;
        justify-content: space-between;
        margin: 40px 0 0 0;
        flex-direction: column;
    }
    .tarchenks-wrapper .text-wrapper{
        width: 100%;
    }
    .tarchenks-wrapper .text-wrapper p{
        font-size: 20px;
        margin: 0 0 20px 0;
    }
    .tarchenks-wrapper .img-wrapper{
        width: 100%;
        margin: 20px 0 0 0;
    }
}
@media screen and (max-width: 768px) {
    .organization-features .organization-feature {
        width: 100%;
        padding: 15px;
        margin: 20px 0 0;
    }
    .organization .organization-description {
        font-size: 18px;
    }
    .organization-features .organization-feature .content .organization-value {
        font-size: 30px;
    }
    .organization-features .organization-feature .content .organization-label {
        font-size: 18px;
    }
}


.edu-prepares{
    background: #FDE159;
}
.edu-prepares .edu-prepares-wrapper{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.edu-prepares .edu-prepares-wrapper .edu-prepares-single{
    width: calc(25% - 15px);
    align-items: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 10px hsla(0, 0%, 40%, .25);
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 20px 23px;
    text-align: center;
}
.edu-prepares .edu-prepares-wrapper .edu-prepares-single .img-wrapper{
    margin: 0 0 22px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 160px;
    width: 100%;
}
.edu-prepares .edu-prepares-wrapper .edu-prepares-single .img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
}
.edu-prepares .edu-prepares-wrapper .edu-prepares-single .content{
}
.edu-prepares .edu-prepares-wrapper .edu-prepares-single .content p{
    font-weight: 500;
    font-size: 23px;
    line-height: 110%;
    letter-spacing: -0.46px;
    text-align: center;
    margin: 0;
}
@media screen and (max-width: 1170px) {
    .edu-prepares .title-wrapper {
        margin: 0 0 20px 0;
    }
    .edu-prepares .title-wrapper h2{
        width: 100%;
        margin: 0 0 20px 0;
    }
    .edu-prepares .title-wrapper p{
        width: 100%;
        font-size: 20px;
    }
    .edu-prepares .edu-prepares-wrapper .edu-prepares-single{
        width: calc(50% - 10px);
        margin: 20px 0 0 0;
        padding: 15px 15px 15px 15px;
    }
}
@media screen and (max-width: 768px) {
    .edu-prepares .edu-prepares-wrapper .edu-prepares-single{
        width: 100%;
    }
}

.benefits-section {
}
.benefits-section .benefits-wrapper {
    display: flex;
    flex-direction: column;
    gap:80px;
}
.benefits-section .benefits-wrapper .single-benefit{
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.benefits-section .benefits-wrapper .single-benefit .benefit-text {
    width: 60%;
}
.benefits-section .benefits-wrapper .single-benefit .benefit-text h2 {
    margin: 0 0 30px 0;
    text-align: left;
}
.benefits-section .benefits-wrapper .single-benefit:nth-child(2) .benefit-text h2 {
    text-align: right;
}
.benefits-section .benefits-wrapper .single-benefit .benefit-text ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.benefits-section .benefits-wrapper .single-benefit .benefit-text li {
    position: relative;
    padding-left: 56px;
    margin-bottom: 12px;
}
.benefits-section .benefits-wrapper .single-benefit:nth-child(2) .benefit-text li {
    text-align: right;
    padding-left: 0;
    padding-right: 56px;
}
.benefits-section .benefits-wrapper .single-benefit .benefit-text li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 30px;
    height: 30px;
    background: #FDE159;
    border-radius: 50%;
}
.benefits-section .benefits-wrapper .single-benefit:nth-child(2) li::before {
    left: unset;
    right: 0;
}
.benefits-section .benefits-wrapper .single-benefit .image-wrapper {
    width: 40%;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: flex-start;
}
.benefits-section .benefits-wrapper .single-benefit:nth-child(2) .image-wrapper {
    flex-direction: column;
}
.benefits-section .benefits-wrapper .single-benefit:nth-child(2) .image-wrapper img:first-of-type {
    margin: 0 0 0 30px;
}
.benefits-section .benefits-wrapper .single-benefit .image-wrapper .benefit-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

@media screen and (max-width: 1170px) {
    .benefits-section .benefits-wrapper .single-benefit .image-wrapper {
        flex-direction: column;
    }
    .benefits-section .benefits-wrapper .single-benefit:nth-child(2) .image-wrapper img:first-of-type {
        margin: 0;
    }
}
@media screen and (max-width: 768px) {
    .benefits-section .benefits-wrapper .single-benefit {
        flex-direction: column;
    }
    .benefits-section .benefits-wrapper .single-benefit .benefit-text {
        width: 100%;
    }
    .benefits-section .benefits-wrapper .single-benefit .image-wrapper {
        width: 100%;
    }
    .benefits-section .benefits-wrapper .single-benefit:nth-child(2) .text-wrapper {
        order:1;
    }
    .benefits-section .benefits-wrapper .single-benefit:nth-child(2) .image-wrapper {
        order:2;
    }
}

.video {
    background: #ECFAFF;
}
.video .video-wrapper{
    margin: 0 100px;
}
.video .video-wrapper .myvideo{
    max-height: max-content;
}
.video .video-wrapper .myvideo img{
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
}
@media screen and (max-width: 1170px) {
    .video .video-wrapper{
        margin: 0;
    }
}
@media screen and (max-width: 768px) {

}