body {
    font-family: 'Lato', sans-serif !important;
    background: #F8F9FB !important;
    color: #566b78 !important;
    overflow-x: hidden;
}
.left {
    float: left;
}
.right {
    float: right;
}
.t_right {
    text-align: right;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    height: 570px;
    background-image: linear-gradient(0deg, #FFC825 0%, #FD630F 100%);
    overflow: hidden;
    position: relative;
    will-change: transform; /* Add for better performance */

    /* Add overlay for darkening effect */
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, var(--overlay-opacity, 0));
        pointer-events: none;
        transition: none; /* Let JS handle this */
        z-index: 1;
    }
}

.header-menu .row {
    display: flex;
    position: relative;
    z-index: 2; /* Above overlay */
}

.header-img {
    position: absolute;
    right: -12%;
    bottom: -150px;
    will-change: transform; /* Add for better performance */

    img {
        will-change: transform; /* Add for better performance */
        transition: none; /* Let JS handle animations */
    }
}

.slogan {
    color: #fff;
    font-size: 70px;
    margin-top: 150px;
    font-family: 'Lato', sans-serif;
    line-height: 1.3;
    will-change: transform, opacity, filter; /* Add for better performance */
    position: relative;
    z-index: 2; /* Above overlay */

    span.slogan-underline {
        position: relative;
        &:before {
            content: '';
            border-top: 4px solid #fff;
            bottom: 0;
            width: 100%;
            position: absolute;
        }
    }
}



.header-buttons {
    display: flex;
    gap: 20px;
    margin-left: auto;
    align-items: center;
    justify-content: flex-end;
    /*height: 100%;*/
    /*outline: 1px solid red;*/
    /*flex-grow: 1*/
}

.header-button {
    background: transparent;
    border: 1px solid #737373;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 43px;
    font-weight: bold;
    font-size: 16px;
    color: #5C5D5C;
    text-transform: uppercase;
    transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out; /* Remove height from transition */
    will-change: height; /* Add for better performance */

    &:hover {
        text-decoration: none;
        background: #fff;
        border-color: #fff !important;
    }
}

.header-menu {
    position: sticky;
    z-index: 99;
    top: 0;
    width: 100%;
    background: #F1F3F4;
    height: 80px;
    display: flex;
    align-items: center;
    /* Remove all animation properties, JS will handle this */
    transition: none; /* Disable any transitions */
}

.logo {
    display: flex
}

.logo-mobile {
    display: none;
}

.logo img {
    /* Remove animation properties, JS will handle scaling */
    transition: none; /* Disable any transitions */
    max-height: initial; /* Let JS set the initial height */
}

/* Optional: Add will-change for better performance */
.menu {
    will-change: height;
}

.logo img {
    will-change: max-height;
}



.top-form {}
.form-inline {
    display: flex;
    gap: 25px;
    margin-top: 25px
}

.form-group {
    flex-grow: 1;
}

.form-item {
    /*width: 100%;*/
    /*height: 34px;*/
    /*padding: 6px 12px;*/
    background-color: #fff;
    border: 1px solid #c6cbcd;
    /*border-radius: 4px;*/
    /*-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);*/
    /*box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);*/
    /*-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;*/
    /*-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;*/
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    height: 51px;
    padding: 5px 11px;
    font-size: 18px;
    /*width: 240px !important;*/
    color: #2d2d2d;
    font-weight: 300;
    border-radius: 7px;
    /*margin: 0 3px;*/
    box-sizing: border-box;
    box-shadow: none;
    width: 100%;
    /*&:hover,*/
    &:focus,
    &:active {
        border-color: transparent;
        outline: 2px solid #00BA21;
        outline-offset: 2px;
    }


}

.form-group.has-error {
    .form-item {
        border-color:  #f53b57;
    }
}

.form_warning {
    position: absolute;
    top: 85%;
    left: 18px;
    /* right: 0; */
    max-width: 200px;
    z-index: 10;
    margin-top: 5px;
    padding: 4px 6px;
    background: #e74c3c;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
    text-align: left;
    overflow-wrap: break-word;
}

.form_warning::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 15px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #e74c3c;
}


.btn-green {
    background: #00BA21;
    color: #fff;
    border-radius: 7px !important;
    border: 0;
    padding: 7px 62px !important;
    font-size: 18px !important;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn-green:hover {
    color: #fff !important;
    opacity: 0.8;
}

.block_5pm{
    text-align: center;
    position: relative;
    margin-top: 70px;
    /* border: 1px solid red; */
}

/*.block_5pm .block_info_desc {*/
/*  text-align: center;*/
/*  color: #292e31;*/
/*  font-size: 24px;*/
/*  margin-top: 20px;*/
/*}*/


.block_5pm .block_5pm_title {
    font-size: 36px;
    color: #00BA21;
    text-align: center;
}


/*.block_5pm_bg {*/
/*  -webkit-clip-path: polygon(0 18%, 100% 0%, 100% 100%, 0 79%);*/
/*          clip-path: polygon(0 18%, 100% 0%, 100% 100%, 0 79%);*/
/*  width: 100%;*/
/*  background: #e7edf2;*/
/*  height: 470px;*/
/*  position: absolute;*/
/*  !*top: 107px;*!*/
/*  left: 0;*/
/*  !*margin-top: 100px;*!*/
/*  z-index: -1;*/
/*}*/


.slide-title {
    font-size: 30px;
    color: #1481AD;
    margin-top: 80px;
    text-align: center;
}

.block_5pm_area{
    /*outline: 1px solid red;*/
    margin-top: 110px;
    padding-bottom: 50px;
    /*min-height: 470px;*/
    /*-webkit-clip-path: polygon(0 18%, 100% 0%, 100% 100%, 0 79%);*/
    clip-path: polygon(0 0%, 100% 10%, 100% 80%, 0 100%);

    background: #e7edf2;
    /* display: flex */
}


.block_5pm_bg {
    /*background: #ACBFD1;*/
    background: #C8D3E0;
    height: 100px;
    width: 100%;
    bottom: 0;
    position: absolute;
    z-index: 3;
    clip-path: polygon(0 60px, 100% 3px, 100% 100%, 0px 100%);
    /*backdrop-filter: blur(10px);*/
}
.block_5pm_text {
    text-align: right;
}

.block_5pm_text_title {
    color: #344048;
    font-size: 32px;
    text-align: left;
}

.block_5pm_text_desc {
    color: #566b78;
    font-size: 16px;
    line-height: 26px;
    margin-top: 25px;
    text-align: left;

}

.block_5pm_text_desc p{
    margin-bottom: 20px
}

.block_5pm_text_desc p:last-child{
    margin-bottom: 0px
}

.block_5pm_area .button{
    margin-top: 30px;
}











.button {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: none;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 18px;
    line-height: 1.42857;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 13px 66px;
    font-size: 16px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    background: #537fa0;
    color: #fff;
    text-transform: uppercase;
}

.button:hover,
.button:focus {
    background: #41647f;
    color: #fff;
    text-decoration: none;
}

.button.orange {
    background: #ffc801 !important;
    color: #344048 !important;
}

.button.orange:hover,
.button.orange:focus {
    background: #dfaf02 !important;
    color: #344048 !important;
}

.button.green {
    background: #009561;
}
.button.green:hover,
.button.green:focus {
    background: #02744c  !important;
    color: #fff !important;
}

.button.move {
    background: #a065b8;
}

.button.move:hover,
.button.move:focus {
    background: #8c54a2 !important;
    color: #fff !important;
}

.page ul li {
    margin-bottom: 15px;
    list-style: disc;
    margin-left: 20px;
}


.partners {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partners_area {
    margin-top: 90px;
    text-align: center;
    /*overflow: hidden;*/
    max-width: 100%
}
.partners_area .partners_title {
    color: #a5a6a7;
    font-size: 28px;
}
.partners_area .partners {
    margin-top: 20px;
}
.partners_area .partners .partners_item {
    display: inline-block;
    margin: 0 50px;
    position: relative;
    padding-top: 20px;
}
.partners_area .partners .partners_item:nth-child(1) span.hov {
    left: 75px;
}
.partners_area .partners .partners_item:nth-child(2) span.hov {
    left: 108px;
}
.partners_area .partners .partners_item:nth-child(3) span.hov {
    left: 124px;
}
.partners_area .partners .partners_item:hover .hov {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 1;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    visibility: visible;
}
.partners_area .partners .partners_item a {
    display: block;
}
.partners_area .partners .partners_item span.hov {
    position: absolute;
    background: #fff;


    padding: 15px 20px 15px 30px;
    bottom: 100%;
    left: 81px;
    margin-left: -150px;
    /*border: 1px solid #c6c6c6;*/
    z-index: 4;
    box-shadow:
            0px 1.6px 0.8px rgba(0, 0, 0, 0.01),
            0px 2.8px 1.9px rgba(0, 0, 0, 0.014),
            0px 3.6px 3.3px rgba(0, 0, 0, 0.017),
            0px 4px 5.3px rgba(0, 0, 0, 0.02),
            0px 4.1px 8.1px rgba(0, 0, 0, 0.023),
            0px 4px 12.7px rgba(0, 0, 0, 0.026),
            0px 4.2px 21px rgba(0, 0, 0, 0.03),
            0px 6px 42px rgba(0, 0, 0, 0.04)
;


    line-height: 26px;
    width: 340px;
    text-align: left;
    color: #566b78;
    font-size: 16px;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    visibility: hidden;
}
.partners_area .partners .partners_item span.hov:after {

    border-style: solid;
    border-width: 10px 8px 0 8px;
    border-color: #fff transparent transparent transparent;
    content: "";
    width: 16px;
    height: 12px;
    position: absolute;
    bottom: -8px;
    left: 50%;
    margin-left: -8px;
    z-index: 3;
}
.partners_area .partners .partners_item span.hov:before {
    content: "";
    width: 10px;
    height: 5px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -5px;
    border-radius: 100%;
    /*-webkit-box-shadow: 0px 3px 7px rgba(0,0,0,0.45);*/
    /*        box-shadow: 0px 3px 7px rgba(0,0,0,0.45);*/
    /*background: rgba(0,0,0,0.1);*/
    z-index: 2;
}
.partners_area .partners .partners_item span.hov .title {
    font-weight: bold;
    white-space: nowrap;

}
.partners_area .partners .partners_item  .desc strong {
    display: block
}
.partners_area .partners .partners_item:nth-child(2)  .desc strong {
    white-space: nowrap;
}
.partners_area .partners .partners_item:nth-child(2) .hov{
    width: 370px
}
.partners_area .partners .partners_item span.hov .t_right {
    margin-top: 30px;
}





footer {
    margin-top: 70px;
    border-top: 1px solid #d1d2d4;
    padding: 11px 0 70px;
}
footer .menu {
    padding: 0;
    margin-top: 10px;
}
footer .menu li {
    display: inline-block;
    list-style-image: none;
    margin-left: 15px;
    margin-right: 15px;
}
footer .menu li a {
    color: #a4a5a6;
    font-size: 16px;
    text-transform: uppercase;
}

footer .cop {
    display: inline-block;
    color: #a4a5a6;
    font-size: 16px;
    margin-top: 10px;
}

@media (max-width: 1200px) {
    .client_area .client_img {
        width: 120px
    }
}


@media (max-width: 992px) {
    .contact_us .contact_form_area {
        height: auto;
    }
    header .logo a {
        width: 120px;
        display: block;
    }
    header .logo a img {
        max-width: 100%;
        height: auto;
    }
    header ul.menu {
        margin-top: 20px;
    }
    header ul.menu li {
        /* margin-left: 30px; */
    }
    header ul.menu li a {
        font-size: 16px;
    }
    .partners_area .partners .partners_item {
        margin: 0 25px;
    }
    .partners_area .partners .partners_item img {
        max-width: 200px;
        max-height: 70px;
    }
    .client_area {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }




}
@media screen and (max-width: 767px) {
    header .logo a {
        width: auto !important;
        display: block;
        text-align: center;
    }
    header .logo a img {
        max-width: 120px !important;
        height: auto;
    }
    header ul.menu {
        text-align: center;
        padding: 0;
        margin: 0;
        margin-top: 20px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    /*header ul.menu li {*/
    /*  !* width: 33.33333333333%; *!*/
    /*  text-align: center;*/
    /*  margin: 0 10px!important;*/
    /*  padding: 0;*/
    /*  !* float: left; *!*/
    /*  !* font-weight: bold; *!*/
    /*}*/
    /*header ul.menu li a {*/
    /*  font-size: 18px;*/
    /*}*/
    /*header h1.slogan {*/
    /*  font-size: 18px;*/
    /*  margin-top: 33px;*/
    /*}*/
    /*header h1.slogan strong {*/
    /*  font-size: 24px;*/
    /*}*/
    /*.block_info .block_area .block {*/
    /*  float: none;*/
    /*  width: auto;*/
    /*  margin-top: -1px;*/
    /*}*/





    footer {
        margin-top: 20px;
        padding-bottom: 30px
    }


}
/*@media (max-width: 500px) {*/
/*  .devices_area img {*/
/*    margin-top: 55px;*/
/*  }*/

/*	.block_5pm_img{*/
/*		margin-top: -30px*/
/*	}*/

/*	header h1.slogan strong {*/
/*		margin-bottom: 15px;*/
/*	}*/

/*}*/
/*@media (max-width: 705px) {*/
/*  .partners_area .partners .partners_item {*/
/*    display: block;*/
/*    margin: 30px 0;*/
/*  }*/
/*  .partners_area .partners .partners_item img {*/
/*    max-width: 200px;*/
/*    max-height: 70px;*/
/*  }*/
/*}*/





/*screens*/
.screens {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 50px
}
.screen-item {
    flex-grow: 1;
    aspect-ratio: 4/3.5;
    overflow: hidden;
    transition: all 0.1s ease;
    transform-origin: top center;
    &:hover {
        scale: 1.1
    }
    [data-fancybox] {
        display: flex;
        flex-direction: column;
        .screen-item-title {
            order: -1;
            color: #576B78;
            font-weight: bold;
            font-size:18px;
            margin-bottom: 10px;
        }
    }
}


.description {
    margin: 50px 0;
    .description-title {
        font-size: 26px;
        color: #FBB729;
        margin-top: 80px;
        text-align: center;
    }
    .description-text {
        margin-top: 20px;
        font-size: 18px;
    }
}

.form-error {
    margin-top: 20px;
    font-weight: 600;
    padding: 8px 16px;
    background-color: rgba(245, 59, 87, 0.05);
    color: #f53b57;
    transition: all ease-in-out 260ms;
    border-radius: 3px;
    border: 2px solid #f53b57;
    text-align: left;
    font-size: 16px
}


@media screen and (max-width: 1800px) {
    header {
        height: 450px
    }
    .header-img {
        max-width: 50vw;
        right: 0;
        bottom: -20%
    }
    header > .container,
    header > .container > .row,
    header > .container > .row > div {
        height: inherit;
    }
    .slogan {
        margin-top: 0;
        height: inherit;
        display: flex;
        justify-content: center;
        flex-direction: column;
        font-size: clamp(60px, 3.75vw, 70vw);
    }
}


@media screen and (max-width: 1550px) {
    header {
        height: 350px
    }

    .header-img {

        bottom: -25%
    }
}

@media screen and (max-width: 1300px) {
    header {
        height: 350px
    }

    .header-img {
        max-width: 55vw;
        bottom: -20%
    }

    .slogan {
        font-size: clamp(40px, 3.75vw, 70vw);
    }
}


@media screen and (max-width: 1100px) {
    header {
        height: 300px
    }


}


@media screen and (max-width: 950px) {
    header {
        height: 250px
    }

}



@media screen and (max-width: 768px) {
    header {
        height: 350px
    }



    .header-img {
        max-width: 72vw;
        right: unset;
        left: 50%;
        transform: translateX(-50%);
        width: 72vw;
    }

    .slogan {
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        padding: 15px 10vw 0;
        br {
            display: none
        }
    }

    header > .container,
    header > .container > .row,
    header > .container > .row > div {
        height: auto;
    }

    .header-menu {
        max-height: 60px;
    }

    .logo img {
        max-height: 40px
    }


    .form-inline {
        flex-direction: column;
        gap: 10px
    }
    .btn-green {
        padding-block: 12px !important;
    }


    .screens {
        flex-direction: column;
        max-width: 50vw;
        align-items: center;
        justify-content: center;
        margin: 0 auto
    }
    .block_5pm {
        margin-top: 20px
    }

    .block_5pm_area {
        clip-path: polygon(0 0%, 100% 20px, 100% 95%, 0 100%)
    }

    .block_5pm_bg {
        clip-path: polygon(0 60px, 100% 30px, 100% 100%, 0px 100%)
    }

    /*body {*/
    /*  overflow: hidden;*/
    /*}*/

    .logo-desktop {
        display:  none;
    }
    .logo-mobile {
        display: flex;
    }

    footer * {
        text-align: center !important;
    }
}





















