html{
    scroll-behavior: smooth;
}
.container {
    max-width: 1570px;
}

.wraper {
    overflow: hidden;
    scroll-behavior: smooth;
}

.wraper__content,
.wraper__footer {
    transition: all 0.5s;
}

.wraper__header {
    font-size: 18px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
}

.wraper__header.white {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 40px 0px rgba(13, 64, 124, 0.14);
}

header.wraper__header.fix-head {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 40px 0px rgba(13, 64, 124, 0.14);
    transition: all 0.5s;
}

.wraper__header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 0;
    position: relative;
    gap: 0 25px;
    align-items: center;
}

.wraper__header-logo {
    flex: 0 0 140px;
}
@media (min-width: 1600px) {
    .wraper__header-logo {
       margin-right: -85px;
    } 
}

.wraper__header-logo img {
    height: 64px;
    display: inline-block;
    width: auto;
}

img.w-logo,
.fix-head img.b-logo,
.white img.b-logo {
    display: block;
}

img.b-logo,
.fix-head img.w-logo,
.white img.w-logo {
    display: none;
}

.wraper__header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex: 1;
}

.wraper__header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.wraper__header-menu li {
    display: flex;
    padding: 0 15px;
    position: relative;
    align-items: center;
    height: 100%;
}

.wraper__header-menu a {
    font-size: 16px;
    color: #fff;
    transition: all 0.3s;
    position: relative;
}

.wraper__header-menu a:hover {

}

.wraper__header-menu a:after {
    content: '';
    width: 0;
    height: 1px;
    background-color: #36a5fe;
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    transition: all 0.3s;
}

.wraper__header-menu a:hover:after,
.wraper__header-menu .current-menu-item > a:after {
    width: 100%;
}

.wraper__header-menu li.menu-item-has-children > span {
    width: 9px;
    height: 9px;
    display: inline-block;
    margin: 0 4px;
    vertical-align: middle;
    background-size: contain;
    font-size: 10px;
    color: #fff;
    margin-top: -2px;
}

ul.sub-menu {
    position: absolute;
    top: 100%;
    right: 0%;
    margin: 0;
    padding: 0;
    width: 155px;
    margin: 0;
    z-index: -99;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    padding-top: 26px;
    background: transparent;
    transform: translateX(0%);
}

li:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    z-index: 99;
    top: 100%;
}

ul.sub-menu li {
    background: #fff;
    padding: 10px 15px;
}

ul.sub-menu li a {
    color: #000;
}

ul.sub-menu li:hover {
    background-color: #36a5fe;
}

ul.sub-menu li:hover a {
    color: #000000;
    -webkit-text-stroke: 0 #000;
}

.wraper__header-phone {
    display: block;
    position: relative;
    color: #fff;
    flex: 0 0 180px;
    padding-right: 50px;
}

.wraper__header-phone a {
    font-weight: bold;
    color: #fff;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 19px;
    font-weight: bold;
    line-height: 1;
}


.wraper__header-phone span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    width: 38px;
    border: 1px solid rgb(255 255 255 / 55%);
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    margin-left: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.wraper__header-phone span svg {
    height: 16px;
    width: auto;
    animation-name: tadaPhone;
    animation-duration: 0.4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.wraper__header-phone i {
    font-style: normal;
    display: block;
    font-weight: normal;
    font-size: 13px;
    line-height: 1;
}

.wraper__header-investor {
    flex: 0 0 170px;
}

.wraper__header-investor a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    margin-right: 50px;
    position: relative;
    text-decoration: none;
    border-bottom: 1px solid #36a5fe;
}

.wraper__header-investor span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    width: 38px;
    background: #36a5fe;
    border-radius: 50%;
    position: absolute;
    left: 100%;
    top: 50%;
    margin-left: 10px;
    transform: translateY(-50%);
    transition: all ease-in-out 350ms;
}

.wraper__header-investor span svg {
    height: 16px;
    width: auto;
}

.wraper__header-investor a:hover {
    border-color: #0d3f7c;
}

.wraper__header-investor a:hover span {
    background: #0d3f7c;
}

.wraper__header-burger {
    display: none;
}

.white .wraper__header-menu a,
.white .wraper__header-phone,
.white .wraper__header-phone a,
.white .wraper__header-investor a,
.white .wraper__header-menu li.menu-item-has-children > span,
.fix-head .wraper__header-menu a,
.fix-head .wraper__header-phone,
.fix-head .wraper__header-phone a,
.fix-head .wraper__header-investor a,
.fix-head .wraper__header-menu li.menu-item-has-children > span {
    color: #0d407c;
}
 
.white .wraper__header-phone span,
.fix-head .wraper__header-phone span {
    border-color: #7592b5;
}

.white .wraper__header-phone span svg path,
.fix-head .wraper__header-phone span svg path {
    fill: #0d407c !important;
}

footer {
    background: #0d407c;
}

.wraper__footer {
    padding-top: 100px;
}

.wraper__footer-logo img {
    height: 75px;
    width: auto;
}

.widget-title {
    color: #fff;
    font-size: 20px;
    line-height: 26px;
    font-weight: normal;
    margin-bottom: 30px;
    position: relative;
}

.wraper__footer-top .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}

.footer-container__item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.wraper__footer-bottom {
    padding: 20px 0;
    margin-top: 50px;
    color: #fff;
    font-size: 13px;
}

.wraper__footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wraper__footer-bottom a {
    color: #fff;
}

.wraper__footer ul {
    margin: 0;
    padding: 0;
}

.wraper__footer ul li {
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 10px;
}

.wraper__footer ul li a {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    position: relative;
}

.wraper__footer-top ul li a:after {
    content: '';
    width: 0;
    height: 1px;
    background-color: #fff;
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    transition: all 0.3s;
}

.wraper__footer-top ul li a:hover:after {
    width: 100%;
}

.wraper__footer ul.sub-menu {
    display: none !important;
}

.wraper__footer-bottom img {
    height: 17px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}

.wraper__footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.wraper__footer-info {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px !important;
}

.wraper__footer-info li {
    border: 1px solid #345f91;
    height: 70px;
    display: flex;
    align-items: center;
    color: #fff;
    width: 250px;
    border-radius: 5px;
    padding: 0 15px;
}

.wraper__footer-info li svg {
    height: 24px;
    width: auto;
}

ul.wraper__footer-info li a {
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    trasition: all 0.3s
}

ul.wraper__footer-info li:hover {
    border-color: #b1c2d5;
}

ul.wraper__footer-social {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 15px;
    margin-top: 20px;
}

ul.wraper__footer-social li {
    margin-bottom: 0;
}

ul.wraper__footer-social li a {
    font-size: 21px;
    display: block;
    line-height: 1;
    transition: all 0.3s;
}

ul.wraper__footer-social li a:hover {
    transform: translateY(-3px);
}

.wraper__footer-description {
    font-size: 12px;
    color: #ffffff;
    opacity: 0.4;
    text-align: justify;
    border-top: 1px solid #345f91;
    margin-top: 30px;
    padding-top: 20px;
}

a.fixed-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    height: 48px;
    width: 48px;
    background: #ffffff;
    border-radius: 50%;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

a.fixed-top svg {
    height: 26px;
    width: auto;
}

.e-scroll a.fixed-top {
    opacity: 1;
    visibility: visible;
}

.main-head {
    position: relative;
}

.main-social {
    position: fixed;
    bottom: 50px;
    left: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    color: #fff;
    align-items: center;
    justify-content: center;
    align-content: center;
    font-size: 15px;
    transition: all 0.3s;
}

.main-social a {
    color: #fff;
    margin: 5px 0;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 1px solid rgb(255 255 255 / 55%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.e-scroll .main-social a {
    border-color: #0d407c;
    background: #0d407c;
    box-shadow: 0 0 0 1px rgb(255 255 255 / 50%);
}

.main-social a:hover {
    background: #36a5fe;
    border-color: #36a5fe;
}

.main-social svg {
    height: 24px;
    width: auto;
}

@media (max-width: 991.98px) {
    .main-social {
        display: flex;
        justify-content: space-between;
        margin: 0;
        padding: 0;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        flex-direction: row;
    }

    .main-social a {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        text-align: center;
        font-size: 16px;
        color: #fff;
        height: 48px;
        padding: 0;
        line-height: 1;
        background-color: #36a5fe !important;
        border-color: #69bafd !important;
        border-radius: 0;
        margin: 0;
    }

    .main-social a:hover {
        background: #fff;
    }

    .main-social a:hover svg path {
        fill: #fff !important;
    }
}

.main-content {
    position: absolute;
    z-index: 99;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.main-content h1 {
    font-size: 80px;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 40px;
    margin-top: 0;
}

.main-content h1 span:first-child {
    display: block;
}

.main-content h1 span:last-child {
    display: block;
    color: #36a5fe;
    font-weight: 300;
}

.main-content__price {
    margin-bottom: 25px;
}

.main-content__price b {
    font-size: 64px;
    line-height: 1;
}

.main-content__price span {
    font-size: 26px;
    line-height: 1;
}

.main-content__description {
    font-size: 19px;
    line-height: 26px;
}

.main-content__description p {
    margin-bottom: 0;
}

.main-content__form {
    display: flex;
    margin-top: 30px;
    position: relative;
    margin-bottom: 80px;
    padding-right: 35px;
}

.scroll-down {
    content: '';
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: #36a5fe;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0px 8px 27px 0px rgba(34, 36, 98, 0.49);
}

.main-content__form .wpcf7 {
    background: #fff;
    max-width: 50%;
    padding-right: 10px;
}

.main-content__form .cf7-item {
    flex: 1;
}
.main-content__form .cf7-item__select {
    flex: 0 0 170px;
    width: 170px;
}

.main-content__form .wpcf7-text,
.main-content__form .wpcf7-select,
.main-content__form .nice-select {
    height: 70px;
    border-radius: 0;
    margin-bottom: 0;
    border-color: transparent;
    border-left: 1px solid #dee4ea;
}

.main-content__form .cf7-item__button {
    flex: 0 0 100px;
}

.main-content__form button {
    width: 100%;
    display: flex;
    height: 100%;
    background: #0d407c;
    border: none;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    font-size: 17px;
    font-weight: bold;
}

.main-content__form .nice-select .current {
    height: 100%;
    display: flex;
    align-items: center;
}

.main-slider {
    position: relative;
    overflow: hidden;
}

.main-slider__man {
    position: absolute;
    z-index: 1;
    left: 150px;
    top: 80px;
    width: auto;
}

.main-slider__item {
}

.main-slider__item img {
    height: 100vh;
    min-height: 740px;
    object-fit: cover;
    width: 100%;
}

.main-slider .slick-dots {
    position: absolute;
    top: 50%;
    left: 60px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    color: #fff;
    align-items: center;
    justify-content: center;
    align-content: center;
    font-size: 15px;
    transform: translateY(-50%);
    margin: 0;
    padding: 0
}

.main-slider .slick-dots li {
    display: block;
    margin: 10px 0;
    background: #807d7d;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s
}

.main-slider .slick-dots li.slick-active {
    height: 8px;
    width: 8px;
    background: #fff
}

.main-slider .slick-dots li:hover {
    background: #ccff00
}

.main-slider .slick-dots li button {
    display: none;
}

.main-slider__nav {
    position: absolute;
    bottom: 70px;
    right: 0;
    padding-right: 0px;
    width: 100%;
}

.main-slider__nav .container {
    position: relative;
}

.main-slider__nav .slick-arrow {
    height: 48px;
    width: 48px;
    border: 1px solid #999b9f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}

.main-slider__nav .slick-arrow.slick-prev {
    right: 75px;
}

.main-slider__nav .slick-arrow svg {
    height: 12px;
    width: auto;
}

.main-slider__nav .slick-arrow:hover {
    border-color: #36A5FE;
}

.main-slider__mini {
    margin: 0;
    padding-right: 125px;
    color: #fff;
    font-size: 13px;
}

.main-slider__mini li span {
    font-size: 25px;
    color: #fff;
}

.main-slider__mini li i {
    color: #93989f;
    font-style: normal;
}

.icon-scroll,
.icon-scroll:before {
    position: absolute;
    left: 50%;
}

.icon-scroll {
    width: 40px;
    height: 70px;
    margin-left: -20px;
    bottom: 70px;
    box-shadow: inset 0 0 0 1px #fff;
    border-radius: 25px;
    z-index: 99;
}

.icon-scroll:before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    margin-left: -4px;
    top: 8px;
    border-radius: 4px;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: scroll;
    animation-name: scroll;
}

@-webkit-keyframes scroll {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(46px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(46px);
    }
}

.main-about {
    position: relative;
    padding-top: 110px;
}

.main-about__container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
} 

.main-about__gallery {
    position: relative;
    width: calc(50% - 15px);
}

.main-about__nav {
    position: absolute;
    top: 30px;
    right: 0px;
    padding-right: 30px;
    padding-left: 110px;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
}

.main-about__nav span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-about__nav button.slick-arrow {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: none;
    background: rgb(255 255 255 / 71%);
    color: #0d407c;
    cursor: pointer;
    transition: all 0.3s;
}

.main-about__nav button.slick-arrow:hover {
    background: #fff;
}

.main-about__nav .slick-dots {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.main-about__nav .slick-dots li {
    flex: 1;
    display: block;
    height: 1px;
    background: #fff;
    display: block;
}

.main-about__nav .slick-dots li.slick-active {
    background: #0d407c;
}

.main-about__nav .slick-dots li button {
    display: none;
}

.main-about__contant {
    padding-top: 60px;
    padding-left: 60px;
    position: relative;
    z-index: 99;
    width: calc(50% - 15px);
}

.main-about__citem {
    position: relative;
}

.main-about__citem .count-box {
    position: absolute;
    left: 30px;
    top: 42px;
    color: #fff;
    font-size: 18px;
}

.main-about__citem .count-box i{
    font-style: normal;
}

.main-about__btns {
    margin-top: 50px;
}

.main-about__btns .play-video {
    margin-right: 20px;
    font-weight: bold;
    color: #0d407c;
    font-size: 17px;
}

.main-about__benefits {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    margin-top: -160px;
    z-index: 5;
    position: relative;
    padding-left: 250px;
}

.about-benefits__item {
    position: relative;
    width: 300px;
    height: 300px;
    padding: 24px;
    box-shadow: 0px 0px 40px 0px rgb(13 64 124 / 14%);
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
}

.about-benefits__item:first-child {
    background: #d8ecfc;
    box-shadow: none;
    margin-top: 80px;
}

.about-benefits__item .count {
    font-size: 73px;
    color: #36a5fe;
    line-height: 1;
    font-weight: 100;
}

.about-benefits__item .title {
    font-size: 30px;
    color: #0d407c;
    margin-top: 30px;
    padding-bottom: 20px;
    line-height: 1;
}

.about-benefits__item .icon {
    position: absolute;
    left: 25px;
    top: 25px;
    display: flex;
    background: #f1f4fa;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.about-benefits__item:first-child .icon {
    background: #fff;
}

.about-benefits__item .icon img {
    height: 24px;
    width: auto;
}

.main-projects {
    padding-top: 90px;
    background-repeat: no-repeat;
    background-position: top center;
    padding-bottom: 90px;
    position: relative;
}

.main-projects:before {
    content: '';
    width: 100%;
    height: 30%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #f1f4fa;
    display: block;
}

.main-projects__title {
    margin-bottom: 280px;
}

.main-projects__carusel .slick-track {
    padding: 30px 0;
    gap: 0 20px;
}

.main-projects__item {
    height: 480px;
    background: #ffffff;
    position: relative;
    box-shadow: 0px 0px 40px 0px rgba(13, 64, 124, 0.19);
    display: block;
    background-size: cover;
    overflow: hidden;
}

.main-projects__flag {
    position: absolute;
    left: 15px;
    top: 15px;
    border-radius: 50%;
    overflow: hidden;
    height: 42px;
    width: 42px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.reverse .main-projects__flag {
    bottom: 15px;
    top: inherit;
}

.main-projects__item .content {
    position: absolute;
    width: 100%;
    background: #fff;
    transition: all 0.5s;
    padding: 25px;
    height: 120px;
    overflow: hidden;
    color: #2a2e37;
    font-size: 15px;
    line-height: 24px;
    bottom: 0;
}

.main-projects__item .content span {
    font-size: 30px;
    color: #0d407c;
    margin-bottom: 10px;
}

.main-projects__item .content a {
    font-weight: bold;
    color: #0d407c;
    display: inline-block;
    position: relative;
    border-bottom: 1px solid #36a5fe;
}

.main-projects__item.reverse .content {
    top: 0;
    bottom: inherit;
}

.main-projects__item:hover .content {
    height: 100%;
}

.main-projects__item:hover {
    box-shadow: 0px 23px 46px 0px rgba(13, 64, 124, 0.15);
}

.main-projects__list{
    position: relative;
}
    .main-projects .slick-arrow {
        height: 50px;
        width: 50px;
        border-radius: 50%;
        background: #d3def0;
        border: none;
        color: #0d407c;
        transition: all 0.3s;
        cursor: pointer;
        z-index: 99;
    }
 
    .main-projects .slick-arrow:hover {
        background: #0d407c;
        color: #fff;
    }
    .main-projects .slick-prev.slick-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 100%;
        margin-left: 20px;
    }
    .main-projects .slick-next.slick-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 100%;
        margin-right: 20px;
    }
    .main-projects .slick-list {
        overflow: visible !important;
    }
    .main-projects .slick-slide{
        opacity: 0;
        visibility: hidden;
    }
    .main-projects .slick-slide.slick-active{
        opacity: 1;
        visibility: visible;
    }

.main-steps {
    padding-bottom: 60px;
    background: #f1f4fa;
}

.main-steps__list {
    display: flex;
    gap: 30px;
}

.main-steps__item {
    background: #fff;
    position: relative;
    padding: 35px 40px;
    box-shadow: 0px 0px 40px 0px rgba(13, 64, 124, 0.14);
    padding-right: 180px;
    min-height: 240px;
    flex: 1;
}

.main-steps__item:hover {
    box-shadow: 0px 23px 46px 0px rgba(13, 64, 124, 0.15);
}

.main-steps__item .icon {
    display: flex;
    width: 146px;
    height: 146px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

.main-steps__item .icon img {
    height: 86px;
    width: auto;
}

.main-steps__item .section__subtitle {
    margin-bottom: 25px;
}

.main-steps__item em {
    color: #0d407c;
    font-size: 30px;
    font-style: normal;
    line-height: 1.2;
}

.main-steps__item ul {
    margin: 0;
    padding: 0;
}

.main-steps__item ul li {
    display: block;
    padding-right: 30px;
    position: relative;
    color: #2a2e37;
    font-size: 16px;
    margin-bottom: 15px;
}

.main-steps__item ul li:last-child {
    margin-bottom: 0;
}

.main-steps__item ul li:after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right: 0;
    color: #36a5fe;
    font-size: 11px;
    top: 5px;
    height: 16px;
    width: 16px;
    background: #f1f4fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-methods {
    background: #f1f4fa;
}


.main-methods__list {
    display: flex;
    gap: 30px;
    padding-bottom: 100px;
    margin: 0 -15px;
}

.main-methods__list .slick-track {
    gap: 15px;
    padding-top: 20px;
}

.main-methods__item {
    background: #fff;
    flex: 1;
    padding: 25px 16px;
    margin-top: 40px;
    position: relative;
    height: auto !important;
}

.main-methods__item:after {
    content: '';
    position: absolute;
    right: 50%;
    bottom: calc(100% + 40px);
    height: 1px;
    width: calc(100% + 15px);
    display: block;
    background: #d6dde3;
}

.main-methods__item:last-child:after {
    display: none;
}

.main-methods__item:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%;
    height: 40px;
    width: 1px;
    display: block;
    background: #d6dde3;
}

.main-methods__item .linner {
    position: absolute;
    right: calc(50% + 60px);
    bottom: calc(100% + 40px);
    height: 1px;
    width: 0;
    display: block;
    background: #4bacfa;
    z-index: 5;
    animation-name: linnerWidth;
    animation-duration: 1.4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.main-methods__item .linner:after {
    content: '';
    height: 27px;
    width: 13px;
    background: url("../img/arrow-left.svg") no-repeat 50%;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    margin-right: -13px;
    background-size: cover;
}

.main-methods__item:last-child .linner {
    display: none;
}

.main-methods__item i {
    font-style: normal;
    font-size: 20px;
}

.main-methods__item b {
    margin: 20px 0;
    color: #0d407c;
    font-size: 26px;
    line-height: 1;
    display: block;
}

.main-methods__item span {
    color: #2a2e37;
    font-size: 16px;
    line-height: 26px;
}

@keyframes linnerWidth {
    0% {
        width: 0;
    }
    100% {
        width: calc(100% - 80px);
    }
}

.main-blog {
    padding-top: 90px;
    padding-bottom: 90px;
}

.main-blog__list {
    display: flex;
    grid-gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.main-blog__item {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 40px 0px rgba(13, 64, 124, 0.14);
    display: flex;
    overflow: hidden;
    height: 335px;
    transition: all 0.3s;
    flex: 0 0 calc(25% - 30px)
}

.main-blog__item:hover {
    box-shadow: 0px 23px 46px 0px rgba(13, 64, 124, 0.15);
}

.main-blog__item:nth-child(1),
.main-blog__item:nth-child(2),
.main-blog__item:nth-child(4) {
    flex: 0 0 calc(50% - 30px)
}

.main-blog__item .content {
    width: 55%;
    padding: 35px 30px;
    padding-bottom: 70px;
    position: relative;
}

.main-blog__item .content.full {
    width: 100%;
}

.main-blog__item .image {
    flex: 0 0 45%;
}

.main-blog__item .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.main-blog__item:hover .image img {
    height: 120%;
    width: 120%;
}

.main-blog__item .title {
    color: #0d407c;
    font-size: 30px;
    display: block;
    line-height: 38px;
    margin-bottom: 15px;
}

.main-blog__item .meta {
    display: flex;
    align-items: center;
    color: #2a2e37;
    gap: 5px;
}

.main-blog__item .meta img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.main-blog__item .more {
    height: 1px;
    width: 100px;
    display: block;
    background: #4bacfa;
    z-index: 5;
    position: absolute;
    bottom: 45px;
    right: 30px;
}

.main-blog__item .more:after {
    content: '';
    height: 27px;
    width: 13px;
    background: url("../img/arrow-left.svg") no-repeat 50%;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    margin-right: -13px;
    background-size: cover;
}

.main-contact {
    padding-bottom: 90px;
}

.main-contact__container {
    display: flex;
    justify-content: space-between;
}

.main-contact__image {
    flex: 0 0 calc(50% - 15px);
    position: relative;
}

.main-contact__image .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.main-contact__image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.main-contact__cotent {
    background: #f1f4fa;
    padding: 70px;
    flex: 0 0 calc(50% - 15px)
}

.main-contact__title span {
    color: #36a5fe;
}

.main-contact .wpcf7-text,
.main-contact .wpcf7-select,
.main-contact .nice-select {
    height: 56px;
    border-radius: 0;
    margin-bottom: 0;
    border-color: transparent;
    background: #fff;
}

.main-contact .cf7-item {
    margin-bottom: 24px;
}

.main-contact .wraper__header-phone {
    position: absolute;
    left: 30px;
    top: 40px;
    padding-left: 100px;
    flex: 1;
    padding-right: 0;
}

.main-contact .wraper__header-phone a {
    font-size: 24px;
}

.main-contact .wraper__header-phone i {
    font-size: 16px;
}

.main-contact .wraper__header-phone span {
    height: 66px;
    width: 66px;
    background: #fff;
    left: 0;
    right: inherit;
}

.main-contact .wraper__header-phone svg {
    height: 34px;
    transform: rotate(0deg);
    animation-name: tadaPhone;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.main-contact .wraper__header-phone svg path {
    fill: #36a5fe !important;
}

.main-contact .wraper__header-phone span:after,
.wraper__header-phone span:before {
    content: '';
    border: 1px solid #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    transition: all 0.3s;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 50%;
    animation-name: pulsePhone;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.main-contact .wraper__header-phone span:before {
    animation-duration: 1.8s;
}

@keyframes pulsePhone {
    0% {
        width: 0;
        height: 0;
    }
    50% {
        width: 100%;
        height: 100%;
    }
    100% {
        width: calc(100% + 25px);
        height: calc(100% + 25px);
        opacity: 0.7;
    }
}

@keyframes tadaPhone {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

#call-back {
    max-width: 1100px;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.fancybox-content__image {
    flex: 0 0 50%;
}

.fancybox-content__image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.fancybox-content__content {
  	direction: rtl;
    flex: 0 0 50%;
    padding: 40px 70px;
    padding-top: 55px;
}

.fancybox-content__title {
    font-size: 32px;
    text-align: center;
    color: #0d407c;
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 24px;
}

.fancybox-content__title b {
    display: block;
    font-weight: normal;
}

.fancybox-content__content form {
    padding: 0 30px;
}

.fancybox__content .cf7-item__button {
    text-align: center;
    justify-content: center;
    margin-top: 24px;
}

.fancybox__content .cf7-item {
    margin-bottom: 12px;
}

.fancybox__content .wpcf7-text,
.fancybox__content .wpcf7-textarea,
.fancybox__content .wpcf7-select,
.fancybox__content .nice-select {
    background: #f1f4fa;
    height: 50px;
    margin: 0;
    border-radius: 0;
    border-color: transparent;
}

.fancybox__content button.carousel__button.is-close {
    color: #0c3d76 !important;
    top: 0 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    background: url('../img/icon-close.png') no-repeat 50%;
    top: 20px !important;
    right: 20px !important;
}
.fancybox__content button.carousel__button.is-close *{
    display: none !important;
}
.has-video .fancybox__content button.carousel__button.is-close {
    top: 5px !important;
    right: 5px !important;
    background: none !important;
}
.has-video  .fancybox__content button.carousel__button.is-close *{
    display: block !important;
}
.banner-head {
    padding-top: 230px;
    padding-bottom: 170px;
    margin: 0;
    color: #fff;
    position: relative;
    z-index: 5;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    text-align: center;
}

.banner-head h1 {
    text-align: center;
}

.banner-head:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.3;
    background: #000;
    z-index: -1;
}

.banner-head .breadcrumbs {
    position: absolute;
    width: 100%;
    left: 0;
    top: 120px;
    text-align: right;
}

.contact-info {
    margin-top: -120px;
    position: relative;
    z-index: 10;
}

.contact-info__container {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 40px 0px rgba(13, 64, 124, 0.14);
    padding: 70px;
    margin: 0 auto;
    max-width: 1300px;
}

.contact-info__container {
    display: flex;
    justify-content: space-between;
}

.contact-info__form {
    flex: 0 0 calc(50% - 100px)
}
.contact-info__contact{
    flex: 0 0 calc(50% - 50px)
}

.contact-info__contact ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.contact-info__contact ul li {
    display: flex;
    font-size: 16px;
    flex-direction: column;
    padding-left: 70px;
    position: relative;
}

.contact-info__contact ul li b {
    color: #727f8c;
    font-weight: normal;
}

.contact-info__contact ul li a {
    color: #0d407c;
    font-weight: bold;
    border-bottom: 1px solid #0d407c;
}

.contact-info__contact ul li.phone a {
    font-size: 24px;
    border: none;
}

.contact-info__contact ul li i {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background: #36a5fe;
    color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #fff;
    box-shadow: 0 0 0 1px #36a5fe;
}

.contact-info__contact ul li i svg {
    height: 18px;
    width: auto;
}

.contact-info .wpcf7-text,
.contact-infot .wpcf7-textarea,
.contact-info .wpcf7-select,
.contact-info .nice-select,
.contact-info .wpcf7-textarea {
    background: #f1f4fa;
    height: 50px;
    margin: 0;
    border-radius: 0;
    border-color: transparent;
}

.contact-info .wpcf7-textarea {
    height: 100px;
}

.contact-info .cf7-item {
    margin-bottom: 12px;
}

.contact-info__container:after {
    content: '';
    height: calc(100% - 140px);
    width: 1px;
    display: block;
    background: #0d407c;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
}
.page-template-about .main-about{
    padding-top: 0;
}
.page-template-about .main-about>.container {
    padding-top: 40px;
    position: relative;
}
.page-template-about .main-about .container::before {
    content: '';
    width: calc(100% - 30px);
    left: 50%;
    height: 1px;
    top: 0;
    position: absolute;
    background: #dddff1;
    transform: translateX(-50%);
}
.page-template-about .main-about__contant {
    margin-bottom: 160px;
}

.teams {
    margin-top: 15px;
    margin-bottom: 80px;
}

.teams .section__description {
    max-width: 900px;
    margin: 0 auto;
}

.teams-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    margin-top: 60px;
}

.teams-list__item {
    background: #fff;
    box-shadow: 0px 0px 40px 0px rgba(13, 64, 124, 0.14);
}

.teams-list__info {
    margin-left: 30px;
    margin-right: 30px;
    margin-top: -35px;
    background: #fff;
    z-index: 1;
    position: relative;
    padding: 20px 20px 30px 20px;
}

.teams-list__name,
.leadership-list__name {
    font-size: 34px;
    color: #0d407c;
    margin-bottom: 5px;
}

.teams-list__position,
.leadership-list__position {
    color: #36a5fe;
    font-size: 16px;
    margin-bottom: 20px;
}

.teams-list__description,
.leadership-list__teams-list__description {
    color: #2a2e37;
    font-size: 16px;
    line-height: 24px;
}

.teams-list__photo {
    position: relative;
}

.teams-list__photo img {
    height: 320px;
    width: 100%;
    object-fit: cover;
}

.teams-list__social {
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 20px;
}

.teams-list__social ul {
    margin: 0;
    padding: 0;
}

.teams-list__social ul li {
    display: block;
}

.teams-list__social ul li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d407c;
    border: 1px solid #fff;
    font-size: 14px;
    margin-bottom: 10px;
}

.teams-list__social ul li a:hover {
    background: #0d407c;
    border-color: #0d407c;
    color: #fff;
}

.leadership {
    background: #f3f9fe;
    padding-top: 80px;
    padding-bottom: 110px;
}

.leadership-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    margin-top: 60px;
}

.leadership-list__item {
    display: flex;
    box-shadow: 0px 0px 40px 0px rgba(13, 64, 124, 0.14);
}

.leadership-list__info {
    background: #fff;
    position: relative;
    flex: 1;
    padding: 40px;
}

.leadership-list__icon {
    position: absolute;
    left: 15px;
    top: 15px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: #f1f4fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leadership-list__icon img {
    height: 24px;
    width: auto;
}

.leadership-list__photo {
    flex: 0 0 320px;
}

.leadership-list__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projects {
    margin-bottom: 70px;
}

.projects-container {
    border-top: 1px solid #dddff1;
}

.projects-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 30px;
    margin-top: 60px;
}

.projects-list__item {
    position: relative;
    background: #fff;
    box-shadow: 0px 0px 40px 0px rgba(13, 64, 124, 0.19);
}

.projects-list__image {
    height: 260px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-list__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.projects-list__item:hover .projects-list__image > img {
    width: 150%;
    height: 150%;
}

.projects-list__image .main-projects__flag img {
    height: 100%;
}

.projects-list__item .content {
    padding: 30px;
    color: #2a2e37;
}

.projects-list__item .status {
    display: block;
    color: #36a5fe;
    font-size: 15px;
}

.projects-list__item .status.soon {
    color: #26ae0b;
}

.projects-list__item .title {
    display: block;
    color: #0d407c;
    font-size: 32px;
    line-height: 45px;
    position: relative;
    display: flex;
    align-items: center;
}

.projects-list__item .linner {
    height: 1px;
    width: 0;
    display: block;
    background: #4bacfa;
    z-index: 5;
    opacity: 0;
    position: relative;
    transition: all 0.5s;
    margin-right: 10px;
}

.projects-list__item .linner:after {
    content: '';
    height: 27px;
    width: 13px;
    background: url("../img/arrow-left.svg") no-repeat 50%;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    margin-right: -13px;
    background-size: cover;
}

.projects-list__item:hover .linner {
    width: 80px;
    opacity: 1;
}

.projects-list__item .content ul {
    display: block;
    padding: 0;
    margin: 0;
}

.projects-list__item .content ul li {
    display: block;
    position: relative;
    margin-bottom: 5px;
    padding-right: 25px;
}

.projects-list__item .content ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right: 0;
    color: #0d407c;
    font-size: 11px;
    top: 5px;
    height: 16px;
    width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-list__item .content ul li:last-child {
    margin-bottom: 0;
}

.articles {
    padding-top: 0;
}
.articles .container {
    padding-top: 40px;
    position: relative;
}
.articles .container::before{
    content: '';
    width: calc(100% - 30px);
    left: 50%;
    height: 1px;
    top: 0;
    position: absolute;
    background: #dddff1;
    transform: translateX(-50%);
}

.articles .main-blog__item {
    flex: 0 0 calc(50% - 15px);
}

.articles .main-blog__item:nth-child(3n),
.articles .main-blog__item:nth-child(4n) {
    flex-direction: row-reverse;
}

.load {
    text-align: center;
    width: 100%;
}

.load-more-post {
    border: 1px solid #0d407c;
    height: 50px;
    width: 170px;
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: #0d407c;
    margin-top: 40px;
    font-size: 17px;
    font-weight: bold;
}

.load-more-post:hover {
    background: #0d407c;
    color: #fff;
}

.single .wraper__content .container,
.page-template-services .wraper__content .container {
    max-width: 1360px;
}

.banner-head__main {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 13px 32px 0px rgba(13, 64, 124, 0.14);
    position: relative;
    transform: translateY(-50%);
    top: 0;
    text-align: center;
    padding: 50px;
    margin-bottom: -80px;
    z-index: 9;
    padding-top: 80px;
    color: #2a2e37;
    font-size: 20px;
}

.banner-head__main .icon {
    position: absolute;
    left: 0;
  	right: 0;
    top: -60px;
    transform: translateY(50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #0d407c;
    display: flex;
    align-items: center;
    justify-content: center;
  	margin: auto;
}

.banner-head__main .icon img {
    height: 76px;
    width: auto;
}

.banner-head__main + .page-container {
    margin-bottom: 100px;
}

.page-container {
    padding-top: 40px;
    padding-bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 60px;
}

.page-elementor {
    font-size: 17px;
    line-height: 1.5;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    color: #2a2e37;
    text-align: justify;
}
.page-elementor a {
    position: relative;
    z-index: 1;
    color: #0d407c;
    background: #f1f4fa;
    padding: 0 5px;
}
.page-elementor p {
    margin-top: 0;
    margin-bottom: 24px;
}

.page-elementor img {
    width: 100%;
}

.page-elementor h2 {
    font-size: 30px;
    color: #0d407c;
    margin-bottom: 30px;
}

.page-elementor h3 {
    color: #0d407c;
    font-size: 24px;
    margin-bottom: 30px;
}

.wp-caption {
    text-align: center;
    width: 100% !important;
}
.wp-caption img{
    display: inline-block;
    width: auto;
    height: auto;
}
.wp-caption .wp-caption-text {
    font-size: 14px;
    margin-top: 10px;
}

.page-elementor ul li {
    display: block;
    position: relative;
    padding-right: 30px;
    margin-bottom: 10px;
}

.page-elementor ul li:after {
    content: '';
    height: 6px;
    width: 6px;
    display: block;
    background-color: #0d407c;
    border-radius: 50%;
    position: absolute;
    right: 0%;
    top: 0;
    margin-top: 6px;
}

.page-elementor ul li:after {
    margin-top: 9px;
}

.page-elementor ol,
.page-elementor ul {
    padding: 0;
    counter-reset: my-awesome-counter;
    list-style: none;
    margin-bottom: 24px;
}

.page-elementor ol li {
    display: block;
    position: relative;
    line-height: 28px;
    padding-right: 40px;
    margin-bottom: 20px;
    counter-increment: my-awesome-counter;
}

.page-elementor ol li::before {
    content: counter(my-awesome-counter) ")";
    font-weight: bold;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 5px;
    color: #0d407c;
    width: 40px;
    text-align: center;
}

.page-elementor ol li:nth-child(n+10):before {
    content: counter(my-awesome-counter) ".";
}

.page-elementor ol + h2 {
    margin-top: 50px;
}

.page-elementor blockquote {
    margin: 0;
    margin-bottom: 32px;
    background: #ebf6ff;
    padding: 30px;
    position: relative;
}

.page-elementor blockquote h2,
.page-elementor blockquote h3 {
    position: relative;
}

.page-elementor blockquote h2:after,
.page-elementor blockquote h3:after {
    width: 94px;
    height: 1px;
    display: block;
    background: #36a5fe;
    content: '';
    position: absolute;
    top: 100%;
}

.page-elementor__benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.page-elementor__benefits .item {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 40px 0px rgba(13, 64, 124, 0.14);
    padding: 30px;
    position: relative;
    padding-right: 125px;
    min-height: 120px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.page-elementor__benefits .item p {
    margin-bottom: 0;
}

.page-elementor__benefits .icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #849ebc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-elementor__benefits .icon img {
    height: 36px;
    width: auto;
}

.page-elementor__advantages {
    display: block;
    margin: 30px 0;
}

.page-elementor__advantages .item {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 40px 0px rgba(13, 64, 124, 0.14);
    padding: 30px;
    position: relative;
    padding-right: 160px;
    min-height: 160px;
    margin-bottom: 30px;
}

.page-elementor__advantages h3 {
    font-size: 28px;
    border-bottom: 1px solid #36a5fe;
    display: inline-block;
}

.page-elementor__advantages ul li:after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right: 0;
    color: #0d407c;
    font-size: 11px;
    top: 5px;
    margin-top: 0;
    height: 16px;
    width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.page-elementor__advantages .icon {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #36a5fe;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-elementor__advantages .icon img {
    height: 60px;
    width: auto;
}

.page-sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 400px;
    flex: 0 0 400px;
}

.page-sidebar____title {
    text-align: center;
    color: #0d407c;
    font-weight: 500;
}

.page-sidebar____title span {
    color: #36a5fe;
    font-weight: normal;
}

.page-sidebar____title .linner {
    display: block;
    position: relative;
    margin: 40px 0;
    height: 1px;
    width: 100%;
    background: #d1dbe8;
}

.page-sidebar__box .scroll-down {
    transform: rotate(-90deg);
    margin-top: -25px;
    right: 50%;
    margin-right: -25px;
}

.page-sidebar____title .t1 {
    font-size: 28px;
    line-height: 1.2;
}

.page-sidebar____title .t2 {
    font-size: 17px;
    font-weight: normal;
    margin-bottom: 25px;
}

.page-sidebar__box {
    background: #f1f4fa;
    padding: 50px 36px;
    position: sticky;
    top: 30px;
}

.page-sidebar__box .wpcf7-text,
.page-sidebar__box.wpcf7-textarea,
.page-sidebar__box .wpcf7-select {
    background: #fff;
    border-color: #fff;
    height: 52px;
    border-radius: 0;
    margin-bottom: 0;
}

.page-sidebar__box .cf7-item {
    margin-bottom: 12px;
    width: 100%;
    max-width: 100%;
}

.page-sidebar__box .cf7-item__button {
    text-align: center;
    justify-content: center;
}

.page-sidebar__box .wpcf7-submit {
    max-width: 100%;
    width: 100%;
    height: 46px;
}

.page-author {
    position: relative;
}

.page-author__info {
    padding-right: 150px;
    position: relative;
}

.page-author__photo {
    position: absolute;
    right: 0;
    top: 0;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.page-author__photo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.page-author__title {
    margin-bottom: 30px;
    font-size: 22px;
    color: #2a2e37;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.page-author__title:after {
    content: '';
    flex: 1;
    height: 4px;
    display: block;
    background: #f1f4fa;
}

.page-author__name {
    font-size: 24px;
    color: #0d407c;
}

.page-author__position {
    color: #2a2e37;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.page-author__description {
    color: #24160a;
    font-size: 16px;
}
.articles-list__carusel{
    margin: 0 -15px;
}
.articles-list__carusel .slick-slide {
    padding: 30px 15px;
}

.articles-list__carusel .slick-list {
    overflow: visible !important;
}
.articles-list__carusel .slick-slide{
    opacity: 0;
    visibility: hidden;
}
.articles-list__carusel .slick-slide.slick-active{
    opacity: 1;
    visibility: visible;
}

.articles-list__carusel .main-blog__item {
    background-color: rgb(255, 255, 255);
}

.articles-list__carusel .main-blog__item .title {
    font-size: 23px;
    line-height: 1.2;
}

.more-articles__btns {
    text-align: center;
}

.more-articles__btns a {
    background: transparent;
}

.more-articles__btns a:before {
    color: #0d407c;
}

.more-articles__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #0d407c;
    padding-top: 30px;
}
.more-articles__head .section__title {
    margin: 0;
}

.more-articles__nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.more-articles__nav .slick-arrow {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: #d3def0;
    border: none;
    color: #0d407c;
    transition: all 0.3s;
    cursor: pointer;
}

.more-articles__nav .slick-arrow:hover {
    background: #0d407c;
    color: #fff;
}

#toc_container p.toc_title {
    display: flex;
    align-items: center;
    font-size: 16px;
}

#toc_container p.toc_title:before {
    content: '';
    width: 20px;
    height: 16px;
    display: inline-block;
    background: url("../img/content.svg") no-repeat 50%;
    background-size: contain;
    margin-left: 10px;
}

#toc_container span.toc_toggle {
    color: transparent;
    font-size: 0 !important;
}

#toc_container span.toc_toggle a {
    font-weight: 900;
    width: 24px;
    height: 24px;
    margin-right: 20px;
    text-decoration: none !important;
}

#toc_container.contracted span.toc_toggle a:after,
#toc_container span.toc_toggle a:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    font-weight: 900;
    color: #0d407c;
}

#toc_container span.toc_toggle:after {
    content: "\f077";
}
ul.toc_list li {
    counter-increment: my-awesome-counter;
    padding-right: 20px !important;
}
ul.toc_list li:after {
    content: counter(my-awesome-counter) ".";
    font-weight: bold;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 0px;
    color: #0d407c;
    background: transparent;
    width: auto;
    height: auto;
    margin-top: 4px;
}

.rtl #toc_container ul ul {
    margin-right: 1.5em;
    margin-left: 0;
}

ul.toc_list li .toc_number {
    font-weight: bold;
    color: #0d407c;
    margin-left: 8px;
}

.head-single {
    margin-top: 120px;
}

.head-single__container {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 40px 0px rgba(13, 64, 124, 0.14);
    display: flex;
}

.head-single .image {
    flex: 0 0 60%;
    position: relative;
}

.head-single .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.head-single .content {
    flex: 0 0 40%;
    padding: 40px;
}

.head-single .breadcrumbs .container {
    padding: 0;
}

.head-single .author {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
}

.head-single .author .photo {
    border-radius: 50%;
    overflow: hidden;
}
.head-single .author .photo img{
    height: 54px;
    width: 54px;
}

.head-single .author .name {
    color: #2a2e37;
}

.head-single .author .date {
    position: relative;
    color: #2a2e37;
}

.head-single .author .date:before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    display: block;
    background: #0d407c;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 5px;
}

.head-single h1 {
    color: #0d407c;
    font-size: 42px;
    line-height: 1.2;
    margin: 60px 0;
}

.head-single .share {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 60px;
}

.head-single .share span {
    color: #2a2e37;
}

.head-single .share a {
    height: 44px;
    width: 44px;
    display: inline-flex;
    justify-content: center;
    border: 1px solid #78c3fe;
    align-items: center;
    border-radius: 50%;
    color: #0d407c;
    font-size: 16px;
}

.head-single .share a:hover {
    transform: translateY(-5px);
}

.video-clips {
    background: #f3f9fe;
    padding: 80px 0;
    margin-bottom: 0;
}

.video-clips__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}

.video-clips__item {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 40px 0px rgb(13 64 124 / 14%);
    position: relative;
}

.video-clips__image {
    height: 295px;
    overflow: hidden;
    position: relative;
    display: block;
}

.video-clips__image .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 80px;
    width: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(13 64 124 / 70%);
    transition: all 0.5s;
    padding-left: 7px;
}

.video-clips__image .play:before,
.video-clips__image .play:after {
    content: '';
    width: calc(100% + 15px);
    height: calc(100% + 15px);
    display: block;
    border: 1px solid rgb(13 64 124 / 50%);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.video-clips__image .play:after {
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 1px solid rgb(13 64 124 / 30%);
    display: none;
}

.video-clips__image .play:hover {
    height: 90px;
    width: 90px;
}

.video-clips__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-clips__content {
    padding: 20px 30px 60px 30px;
}

.video-clips__title {
    color: #0d407c;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 40px;
}

.video-clips__data {
    position: absolute;
    bottom: 20px;
    right: 30px;
}

.page-template-about .main-contact{
    padding-top: 90px;
}
body:not(.home) .main-social{
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-200px);
}
.e-scroll .main-social{
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}
.contact-info__container .section__title {
    margin-bottom: 30px;
    font-size: 26px;
    line-height: 32px;
}

.message-sent{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 20%);
    display: block;
    z-index: 9999;
    display: none;
}
    .message-sent__content {
        background: #fff;
        border-width: 1px;
        border-color: rgb(228, 227, 227);
        border-style: solid;
        border-radius: 4px;
        background-color: rgb(255, 255, 255);
        box-shadow: 0px 17px 40px 0px rgb(183 209 189 / 38%);
        position: absolute;
        left: 50%;
        top: 50px;
        transform: translateX(-50%);
        width: 100%;
        max-width: 400px;
        height: 46px;
        display: flex;
        align-items: center;
        padding: 0 15px;
    }
    .message-sent__content i.fas.fa-check {
        height: 24px;
        width: 24px;
        color: #fff;
        background: #66c500;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        margin-left: 10px;
    }
    .message-sent__content i.fas.fa-times {
        color: #2a2e37;
        font-size: 12px;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
    }
    .message-sent__content i.fas.fa-times:hover{
        color: red;
    }

    .carousel__button svg{
        filter: none !important
    }

@media (min-width: 768px) {
    .page-sidebar .cf7-item:nth-child(1){
        order: 1;
    }
    .page-sidebar .cf7-item:nth-child(2){
        order: 4;
    }
    .page-sidebar .cf7-item:nth-child(3){
        order:  2;
    }
    .page-sidebar .cf7-item:nth-child(4){
        order: 3;
    }
    .page-sidebar .cf7-item:nth-child(5){
        order: 5;
    }


    .contact-info__f .cf7-item:nth-child(1){
        order: 1;
    }
    .contact-info__f .cf7-item:nth-child(2){
        order: 3;
    }
    .contact-info__f .cf7-item:nth-child(3){
        order:  2;
    }
    .contact-info__f .cf7-item:nth-child(4){
        order: 4;
    }
    .contact-info__f .cf7-item:nth-child(5){
        order: 5;
    }    


    .main-contact__cotent .cf7-item:nth-child(1){
        order: 1;
    }
    .main-contact__cotent .cf7-item:nth-child(2){
        order: 4;
        max-width: calc(50% - 10px);
    }
    .main-contact__cotent .cf7-item:nth-child(3){
        order:  2;
        max-width: 100%;
    }
    .main-contact__cotent .cf7-item:nth-child(4){
        order: 3;
    }
    .main-contact__cotent .cf7-item:nth-child(5){
        order: 5;
    }    
   

    .main-content__form .cf7-item:nth-child(1){
        order: 1;
    }
    .main-content__form .cf7-item:nth-child(2){
        order: 3;
    }
    .main-content__form .cf7-item:nth-child(3){
        order: 2;
    }
    .main-content__form .cf7-item:nth-child(4){
        order: 4;
    }
    .main-content__form .cf7-item:nth-child(5){
        order: 5;
    }       
}

@media (max-width: 1199.98px) {
    .wraper__header-phone {
        display: none;
    }

    .wraper__header-investor {
        flex: inherit;
    }

    .wraper__header-investor a {
        font-size: 0;
        display: block;
    }
}

@media (max-width: 1023.98px) {
    .wraper__header-menu li {
        padding: 0 5px;
    }
}

@media (max-width: 991.98px) {
    .wraper__header-nav {
        display: none;
    }

    .projects-list {
        grid-template-columns: 1fr 1fr;
    }

    .wraper__footer-top .container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .main-blog__list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .main-methods__list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .main-steps__list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .wraper__header-burger {
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .wraper__header-container {
        flex-direction: row-reverse;
        padding: 10px 32px 10px 0;
    }

    .wraper__header-logo {
        text-align: left;
        flex: 0 0 102px;
    }

    .wraper__header-logo img {
        height: 46px;
    }

    .main-contact__cotent {
        padding: 30px;
    }

    .wraper__header-nav .wraper__header-investor{
        display: block !important;
        width: 100%;
        padding: 20px;
        position: absolute;
        margin-top: 30px;
    }
    .wraper__header-nav .wraper__header-investor a{
        font-size: 16px;
        font-weight: 500;
        color: #2a2e37;
        display: inline-block;
    }
    
    .main-content__form {
        position: absolute;
        top: 100%;
        background: #0e141c;
        left: 0;
        width: 100%;
        padding: 100px 15px 60px 15px;
        margin: 0;
        margin-top: -1px;
    }

    .scroll-down {
        transform: rotate(-90deg);
        top: 0;
        margin-top: 30px;
        right: 50%;
        margin-right: -25px;
    }

    .main-content__form .wpcf7 {
        padding: 0;
        background: transparent;
    }

    .main-content__form .cf7-item {
        margin-bottom: 12px;
        width: 100%;
        flex: initial;
    }

    .main-content__form .cf7-item__button {
        text-align: center;
        margin-top: 8px;
    }

    .main-content__form .cf7-item:nth-child(4),
    .main-content__form .cf7-item:nth-child(3) {
        width: calc(50% - 6px);
        display: inline-block;
    }

    .main-content__form button {
        height: 50px;
        width: auto;
        display: inline-flex;
    }

    .main-content__form .wpcf7-text,
    .main-content__form .wpcf7-select,
    .main-content__form .nice-select {
        border-color: transparent;
        background: #fff;
        height: 50px;
    }

    .main-head .icon-scroll {
        display: none;
    }

    .main-content {
        top: 0;
        transform: none;
        padding-top: 90px;
        height: 100%;
    }

    .main-content__description {
        text-align: center;
        margin-top: 290px;
        font-size: 15px;
    }

    .main-content h1 {
        font-size: 44px;
        text-align: center;
        margin-bottom: 30px;
    }

    .main-content__price {
        text-align: center;
    }

    .main-content__price b {
        font-size: 33px;
    }

    .main-content__price span {
        font-size: 18px;
    }

    .main-slider__item img {
        height: 620px;
        min-height: auto;
    }

    .wraper__footer-top .container {
        grid-template-columns: 1fr 1fr;
    }

    .main-slider__man {
        top: inherit;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
    }

    .main-slider__nav {
        width: 100%;
        z-index: 105;
        bottom: 100px;
    }
    .main-slider__nav .container {
        position: relative;
    }
    .main-slider__nav .slick-arrow.slick-prev {
        right: inherit;
        left: 15px;
        border-color: #2e70a9;
    }
    .main-slider__nav .slick-arrow.slick-next {
        border-color: #2e70a9;
    }
    .main-slider__mini{
        padding: 0 50px;
        text-align: center;
    }

    .main-methods__list {
        grid-template-columns: 1fr 1fr;
    }

    .body-show-mobile .wraper__header,
    .body-show-mobile .wraper__content,
    .body-show-mobile .wraper__footer,
    .body-show-mobile .main-social {
        transform: translateX(-230px);
    }

    .body-show-mobile .wraper__header-nav {
        display: block;
        position: fixed;
        top: 0;
        width: 230px;
        transform: translateX(230px);
        height: 100vh;
        background-color: rgb(255, 255, 255);
        right: 0;
    }

    .body-show-mobile .wraper__header-menu {
        display: block;
        padding: 0 20px;
    }

    .body-show-mobile .wraper__header-menu > li {
        border-bottom: 1px solid #cfe6f8;
        padding: 20px 0;
        display: block;
    }

    .body-show-mobile .wraper__header-menu > li > a {
        font-size: 16px;
        color: #000;
        font-weight: 500;
    }

    .body-show-mobile .wraper__header-menu li.menu-item-has-children > span {
        color: #33a1f6;
        left: 0;
        position: absolute;
        top: 30px;
    }

    .body-show-mobile .wraper__header-menu li.menu-item-has-children > span.active i:before {
        content: "\f106";
    }

    .body-show-mobile ul.sub-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        z-index: 99;
        top: 100%;
        position: relative;
        width: 100%;
        margin: 0;
    }

    .body-show-mobile ul.sub-menu li {
        padding: 10px 0;
    }

    .body-show-mobile ul.sub-menu li a {
        font-size: 15px;
        color: #2a2e37;
        font-weight: normal;
    }

    #call-back.fancybox__content {
        display: block !important;
    }

    .fancybox-content__image img {
        height: 200px;
    }

    .fancybox-content__content {
        padding: 30px 24px
    }

    .fancybox-content__title {
        font-size: 21px;
    }

    .fancybox-content__content form {
        padding: 0;
    }

    .main-about {
        padding-top: 415px;
    }

    .main-about__contant {
        padding-top: 50px;
        padding-left: 0;
        width: 100%;
    }
    .main-about__gallery{
        width: 100%;
    }

    .section__subtitle {
        margin-bottom: 25px;
        font-size: 15px;
    }

    .section__title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .section__title br {
        display: none;
    }

    .section__description {
        font-size: 16px;
    }

    .main-about__gallery {
        margin-top: 30px;
    }

    .main-about__nav button.slick-arrow {
        height: 40px;
        width: 40px;
    }

    .main-about__nav {
        padding-right: 15px;
        top: 15px;
        padding-left: 90px;
    }

    .main-about__citem .count-box {
        left: 15px;
        top: 25px;
    }

    .about-benefits__item {
        width: 160px;
        height: 160px;
        padding: 15px;
    }

    .about-benefits__item .count {
        font-size: 35px;
    }

    .about-benefits__item .title {
        font-size: 15px;
        margin-top: 5px;
        padding-bottom: 0px;
    }

    .main-about__benefits {
        margin-top: -50px;
        padding: 0;
    }

    .about-benefits__item:first-child {
        margin-top: 65px;
    }
    .main-projects__title{
        margin-bottom: 200px;
    }
    .main-projects {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .main-projects__carusel .slick-track {
        gap: 0 10px;
    }
    .main-projects__item{
        width: 290px !important;
        height: 390px;
    }
    .main-projects__item .content span {
        font-size: 26px;
        margin-bottom: 5px;
        display: block;
    }
    .main-projects__item .content {
        font-size: 14px;
        line-height: 20px;
        bottom: 0;
        height: 102px;
    }

    .main-projects .slick-slide{
        opacity: 1;
        visibility: visible;
    }

    .main-steps__item {
        margin-top: 50px;
        padding: 70px 25px 25px 25px;
    }

    .main-steps__item .icon {
        width: 96px;
        height: 96px;
        top: 0;
        transform: translate(-50%, -50%);
        left: 50%;
        right: inherit;
    }

    .main-steps__item .icon img {
        height: 54px;
    }

    .main-steps__item .section__subtitle {
        text-align: center;
        margin-bottom: 20px;
    }

    .main-steps__item em {
        text-align: center;
        display: block;
    }

    .main-steps__item ul li {
        margin-bottom: 5px;
    }

    .main-methods__item:after {
        width: calc(100% + 15px);
    }
    .main-methods__item b{
        font-weight: normal;
    }
    .main-methods__item .linner{
        right: 50%;
    }
    .main-blog__item {
        height: 150px;
    }

    .main-blog__item .title {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .main-blog__item .content {
        padding: 15px;
    }

    .main-blog__item .more {
        display: none;
    }

    .main-blog__item .meta {
        position: absolute;
        right: 20px;
        bottom: 15px;
        flex-direction: row-reverse;
        font-size: 12px;
        color: #2a2e37;
    }
    
    .main-blog__item .image{
        position: relative;
    } 

    .main-blog__item .image img.mata-icon {
        display: block !important;
        width: 46px;
        height: 46px;
        position: absolute;
        bottom: 15px;
        left: 15px;
        border-radius: 50%;
    }

    .articles .main-blog__item:nth-child(even)  .image img.mata-icon{
        left: inherit;
        right: 15px;
    }

    .main-methods__list {
        padding-bottom: 50px;
    }

    .main-blog {
        padding: 60px 0;
    }

    .main-blog__list {
        gap: 20px;
    }

    .main-blog__item.m-hide {
        display: none;
    }

    .main-blog__item:nth-child(2) {
        flex-direction: row-reverse;
    }

    .main-contact__container {
        flex-direction: column-reverse;
    }

    .main-contact .cf7-item {
        justify-content: center;
        margin-bottom: 12px;
    }

    .main-contact__cotent {
        padding: 0px;
        text-align: center;
    }

    .main-contact {
        padding: 60px 0;
        background: #f1f4fa;
    }

    .main-contact__image img {
        height: 340px;
    }

    .main-contact .wraper__header-phone {
        display: block;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        top: inherit;
        bottom: 50px;
        padding-left: 80px;
    }

    .wraper__footer {
        padding-top: 15px;
    }

    .wraper__footer-top .container {
        display: block;
    }

    .widget-title {
        padding: 15px 0;
        border-bottom: 1px solid #3b6495;
        margin-bottom: 0;
        font-size: 15px;
        font-weight: normal;
    }

    .wraper__footer-logo {
        margin-top: 45px;
    }

    ul.wraper__footer-info li {
        flex-direction: column;
        flex: 1;
        width: 160px;
        height: 74px;
        align-content: center;
        justify-content: center;
    }

    ul.wraper__footer-info li svg {
        order: 1;
        height: 20px;
        margin-bottom: 5px;
    }

    ul.wraper__footer-info li a {
        order: 2;
        font-size: 12px;
        font-weight: normal;
    }

    a.fixed-top {
        display: none !important;
    }

    .main-slider {
        position: relative;
    }

    .main-slider:after {
        content: '';
        width: 100%;
        background: url("../img/main-slider-bg-mobile.png") repeat-x top center;
        left: 0;
        bottom: 0;
        display: block;
        height: 300px;
        position: absolute;
        z-index: 2;
        background-size: cover;
    }

    .banner-head {
        padding-top: 135px;
        padding-bottom: 130px;
    }
    .banner-head p {
        margin: 0;
    }

    .main-social{
        display: none;
    }
    .e-scroll  .main-social{
        display: flex;
    }

    .icon-scroll {
        width: 26px;
        height: 46px;
        margin-left: -13px;
        bottom: 40px;
        border-radius: 15px;
    }

    .error-404__content h1, .thank-content h1, .banner-head h1 {
        font-size: 44px;
        line-height: 1;
        margin-bottom: 20px;
    }

    .page-template-about .main-about__contant {
        padding-top: 0;
        margin-bottom: 0;
    }

    .teams .section__description {
        display: none;
    }

    .teams {
        margin-top: 50px;
    }

    .teams-list,
    .leadership-list {
        margin-top: 0;
        display: block;
    }

    .teams-list__item {
        margin-bottom: 20px;
    }

    .teams-list__photo img {
        height: 225px;
    }

    .teams-list__info {
        margin-left: 15px;
        margin-right: 15px;
    }

    .teams-list__position,
    .leadership-list__position {
        margin-bottom: 10px;
    }

    .leadership {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .leadership-list__item {
        display: block;
        position: relative;
        padding: 24px;
        background: #fff;
        margin-bottom: 24px;
    }

    .leadership-list__photo {
        position: absolute;
        right: 24px;
        top: 24px;
        z-index: 5;
    }

    .leadership-list__photo img {
        width: 95px;
        height: 95px;
    }

    .leadership-list__info {
        padding: 0;
    }

    .leadership-list__icon {
        position: relative;
        margin-right: 110px;
        top: 0;
        left: 0;
        height: 38px;
        width: 38px;
    }

    .leadership-list__icon img {
        height: 20px;
    }

    .leadership-list__name {
        font-size: 26px;
        padding-right: 110px
    }

    .leadership-list__position {
        padding-right: 110px
    }

    .main-contact .wraper__header-phone span {
        height: 54px;
        width: 54px;
    }

    .main-contact .wraper__header-phone svg {
        height: 24px;
    }

    .main-contact .wraper__header-phone a {
        font-size: 20px;
    }

    .main-contact .wraper__header-phone i {
        font-size: 13px;
    }

    .wraper__footer-bottom {
        margin-top: 15px;
        margin-bottom: 45px;
        color: rgb(255 255 255 / 66%);
        font-size: 11px;
        border-top: 1px solid #376090;
    }

    .banner-head__main {
        transform: none;
        margin-top: -50px;
        margin-bottom: 0;
        padding: 60px 20px 20px 20px;
        font-size: 16px;
        line-height: 25px;
        font-weight: 500;
    }

    .banner-head__main .icon {
        height: 74px;
        width: 74px;
     	top: -74px;
    }

    .banner-head__main .icon img {
        height: 44px;
    }

    .page-container {
        display: block;
    }

    .page-elementor {
        font-size: 16px;
    }

    .page-elementor{
        text-align: right;
    }

    .page-elementor h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .page-elementor h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .page-elementor__advantages h3 {
        right: 50%;
        transform: translateX(50%);
        position: relative;
    }

    .page-elementor__benefits {
        display: block;
    }

    .page-elementor__benefits .item {
        margin-bottom: 12px;
        padding: 20px;
        padding-right: 100px;
    }

    .page-elementor__benefits .icon {
        right: 20px;
        width: 60px;
        height: 60px;
    }

    .page-elementor__advantages .item {
        padding: 60px 20px 20px 20px;
        margin-top: 60px;
        margin-bottom: 0px;
    }

    .page-elementor__advantages .icon {
        width: 80px;
        height: 80px;
        top: 0;
        transform: translate(-50%, -50%);
        left: 50%;
        right: inherit;
    }
    .page-elementor__advantages.right .item{
        padding-top: 20px;
        padding-right: 100px;
        margin-top: 0;
        margin-bottom: 20px;
    }
    .page-elementor__advantages.right .icon{
        transform: none;
        top: 20px;
        right: 20px;
        height: 64px;
        width: 64px;
    }

    .page-elementor__advantages .icon img {
        height: 50px;
    }

    .page-elementor__advantages.right .icon img {
        height: 36px;;
    }

    .page-sidebar__box {
        padding: 40px 20px;
    }

    .head-single__container {
        display: flex;
        flex-direction: column-reverse;
    }

    .head-single {
        margin-top: 66px;
    }

    .head-single .container {
        padding: 0;
    }

    .head-single .image img {
        min-height: auto;
        height: 250px;
        position: relative;
        transform: none;
    }

    .head-single .content {
        display: block;
        padding: 20px;
    }

    .head-single h1 {
        font-size: 33px;
        margin: 20px 0;
    }

    .head-single .share {
        margin-top: 15px;
    }

    .head-single .share a {
        height: 34px;
        width: 34px;
    }

    .page-author__info {
        margin-bottom: 40px;
        padding-right: 96px;
    }

    .page-author__photo {
        height: 80px;
        width: 80px;
    }

    .more-articles {
        margin: 50px 0;
    }

    .more-articles .section__title {
        margin-bottom: 0;
        font-size: 20px;
        font-weight: 500;
    }

    .more-articles__nav .slick-arrow {
        height: 36px;
        width: 36px;
    }

    .articles-list__carusel {
        margin: 0 -15px;
    }

    .articles-list__carusel .main-blog__item .title {
        font-size: 18px;
    }

    .main-blog {
        padding: 32px 0;
        padding-top: 0;
    }
    .articles .container{
        padding-top: 32px;
    }

    .main-blog__item .meta img {
        display: none;
    }

    .articles .main-blog__item:nth-child(odd) {
        flex-direction: row !important;
    }

    .articles .main-blog__item:nth-child(even) {
        flex-direction: row-reverse !important;
    }

    .video-clips {
        margin-top: 50px;
        margin-bottom: 0;
        padding: 50px 0;
    }

    .video-clips__list {
        display: block;
    }

    .video-clips__item {
        margin-bottom: 20px;
    }

    .video-clips__image {
        height: 200px;
    }

    .video-clips__title {
        margin-bottom: 0;
        font-size: 18px;
        line-height: 22px;
    }
    .video-clips__data{
        font-size: 12px;
    }
    .video-clips__content{
        padding-bottom: 52px;
    }
    .video-clips__image .play{
        height: 60px;
        width: 60px;
    }
    .video-clips__image .play svg{
        height: 18px;
        width: auto;
    }

    .contact-info {
        margin-top: -50px;
        margin-bottom: 50px;
    }

    .contact-info__container {
        display: block;
        padding: 25px 0;
    }
    .contact-info__form{
        padding: 0 25px 25px 25px;
    }
    .contact-info__container:after {
        display: none;
    }

    .contact-info__head {
        text-align: center;
        font-size: 20px;
        font-weight: normal;
        line-height: 1.2;
    }

    .banner-head .breadcrumbs {
        top: 60px;
    }

    .error-404 .section__description,
    .thank .section__description,
    .banner-head .section__description{
        font-size: 17px;
    }

    .contact-info__contact{
        display: flex;
        flex-direction: column-reverse;
    }
    .contact-info__contact ul{
        display: block;
        margin: 0;
        padding: 0 40px;
        text-align: center;
    }
    .contact-info__contact ul li{
        margin-top: 25px;
        width: 240px;
        display: inline-flex;
        padding-left: 50px;
        text-align: right;
    }
    .contact-info__contact ul li i {
        height: 45px;
        width: 45px;
    }
    .contact-info__contact ul li a{
        border:none;
    }

    .error-404 .breadcrumbs,
    .thank .breadcrumbs{
        top: 60px;
    }

    .error-404{
        background-image: url("../img/error-bg-mobile.jpg") !important;
    }
    .thank{
        background-image: url("../img/thankyou-bg-mobile.jpg") !important;
    }
    .projects-list{
        margin-top: 20px;
    }
    .projects-list__image {
        height: 240px;
    }
    .projects-list__item .content {
        padding: 20px 25px;
    }
    .projects-list__item .title {
        font-size: 28px;
        line-height: 1;
        margin: 15px 0;
    }
    .projects-list__item p{
        margin-top: 0 ;
    }
    .projects-list__item .content ul li:before{
        top: 3px;
    }
    .nice-select{
        font-size: 16px !important;
        padding-right: 12px !important;
    }
    .cf7-label{
        right: 12px;
        font-size: 16px;
    }
    .wpcf7-text, 
    .wpcf7-textarea, 
    .wpcf7-select, 
    .nice-select{
        font-size: 16px;
        padding-right: 12px;
    }
    .cf7-item__button{
        margin-bottom: 0;
        margin-top: 18px;
        justify-content: center;
    }
    .page-template-about .main-about {
        padding-top: 0px;
    }
    .page-template-about .main-about>.container{
        padding-top: 30px;
    }
    .page-template-about  .main-about__title {
        font-size: 25px;
        line-height: 36px;
    }
    .about-benefits__item .icon{
        height: 26px;
        width: 26px;
        top: 12px;
        left: 12px;
    }
    .about-benefits__item .icon img {
        height: 16px;
    }
    .icon-scroll{
        overflow: hidden;
    }
    .icon-scroll:before{
        top: -5px;
    }
    .single  .page-sidebar{
        display: none;
    }
    .cf7-item__textarea{
        display: block;
        overflow: hidden;
        max-width: 100%;
    }
    .main-projects .container{
        padding: 0;
    }
}

@media (max-width: 575.98px) {
    .projects-list {
        grid-template-columns: 1fr;
    }

    .wraper__footer-top .container {
        grid-template-columns: 1fr;
    }

    .widget-title:after {
        font-family: "Font Awesome 5 Free";
        content: "\f107";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .widget-title.active:after {
        content: "\f106";
    }

    .widget-title + * {
        display: none;
        margin-top: 15px !important;
        border-bottom: 1px solid #3b6495;
    }

    .main-blog__list {
        grid-template-columns: 1fr;
    }

    .main-methods__list {
        grid-template-columns: 1fr;
    }

    .main-steps__list {
        grid-template-columns: 1fr;
    }

    .main-about__container {
        display: block;
    }


    .main-content__form .wpcf7 {
        display: block;
        max-width: 100%;
    }

    .main-content__form .wpcf7 .cf7-row {
        flex-wrap: wrap;
    }
}