/******************************************************************************
* Header
*******************************************************************************/
.main-header.sticky-header {
    position: fixed !important;
    top: 0;
    display: block;
    z-index: 999;
    width: 100%;
    background-color: #162335;
    box-shadow: 0 1px 4px 0 rgba(12, 12, 13, 0.15);
    animation: stickyanimations 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes stickyanimations {
    0% {
        transform: translateY(-100px);
    }

    100% {
        transform: translateY(0px);
    }
}

.main-header.sticky-header .site-header-menu__inner {
    padding: 15px 0px;
}

.main-header.sticky-header .site-header-navigation__inner .site-branding {
    justify-content: start !important;
}

.main-header.sticky-header .site-header-navigation__inner .site-branding img {
    width: 220px;
    height: auto;
}

/******************************************************************************
* Content
*******************************************************************************/

/** Banner slider **/

.banner-inner {
    padding-top: 66px;
}

.banner-slide .banner-slide__item {
    position: relative;
    height: 545px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 108px;
}

.banner-slide__content {
    position: relative;
}

.banner-subtitle {
    margin-bottom: 10px;
}

.banner-slide .swiper-slide-active .banner-subtitle {
    visibility: visible;
    animation: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 500ms;
}

.banner-title {
    color: #FFF;
    font-size: clamp(32px, 1rem + 2.5vw, 48px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.375em;
    margin-bottom: 0;
}

.banner-slide .swiper-slide-active .banner-title {
    visibility: visible;
    animation: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 600ms;
}

.banner-slide__item .banner-title {
    margin-bottom: 30px;
}

.banner-slide__item .banner-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px 32px;
}

.banner-slide .swiper-slide-active .banner-actions {
    visibility: visible;
    animation: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 700ms;
}

.banner-slide__pagination.slide-control-dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    bottom: unset;
    left: unset;
    transform: translateY(-50%);
    right: 32px;
    z-index: 3;
    width: 26px;
    gap: 9px;
}

.banner-slide__pagination.slide-control-dots:before {
    content: '';
    opacity: 0.3;
    background: linear-gradient(0deg, #FFF 14%, rgba(255, 255, 255, 0.76) 35%, rgba(255, 255, 255, 0.58) 57%, rgba(255, 255, 255, 0.19) 95%);
    width: 4px;
    height: 85px;
    margin-bottom: 2px;
}

.banner-slide__pagination.slide-control-dots:after {
    content: '';
    opacity: 0.3;
    background: linear-gradient(180deg, #FFF 14%, rgba(255, 255, 255, 0.76) 35%, rgba(255, 255, 255, 0.58) 57%, rgba(255, 255, 255, 0.19) 95%);
    width: 4px;
    height: 85px;
    margin-top: 2px;
}

.banner-slide__pagination.slide-control-dots .swiper-pagination-bullet {
    width: 26px;
    height: 26px;
    border-radius: 13px;
    border: 1px solid transparent;
    background-color: transparent;
}

.banner-slide__pagination.slide-control-dots .swiper-pagination-bullet:before {
    content: '';
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.40);
    width: 10px;
    height: 10px;
    border-radius: 10px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.banner-slide__pagination.slide-control-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: #fff;
}

.banner-slide__pagination.slide-control-dots .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    background: #fff;
}


/** About us **/

.about-us-section {
    padding: 59px 0 102px;
}


/** Image section **/

.page .image-section {
    padding: 124px 0 92px;
    min-height: 443px;
    overflow: hidden;
}

.image-section.bg-cover.bg-on-repeat {
    background-position: center;
}

.image-section .layer-shape {
    height: 92%;
    top: unset;
    bottom: 0;
    transform: translateY(100%);
    opacity: 0;
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}

.image-section .layer-shape img {
    object-position: top;
}

.image-section:hover .layer-shape {
    transform: translateY(0);
    opacity: 1;
}

.bloc-content .sect-title .sub-title,
.bloc-content .sect-title .bloc-title {
    margin-bottom: 13px;
}


/** Intervention area **/

.intervention-area-section {
    padding: 153px 0 129px;
}

.bloc-image.bg-img {
    width: 50vw;
    height: 545px;
}


/** Company benefits **/

.page .company-benefits-section {
    padding: 59px 0;
}

.company-benefits__items {
    margin-top: 43px;
}

.benefit-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    border-radius: 13px;
    background: #FFF;
    padding: 30px 37px;
    height: 100%;
    width: 279px;
}

.benefit-item .benefit-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    -webkit-transition: all 900ms ease;
    transition: all 900ms ease;
}

.benefit-item:hover .benefit-ico {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.benefit-item .benefit-title {
    color: #162235;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.375em;
}

.benefit-item p {
    margin-bottom: 0;
    color: #5C5C5C;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.625em;
}


/** Services diag **/

.services-diag-section {
    padding: 165px 0;
}

.services-diag-section .sect-title .bloc-title {
    margin-bottom: 58px;
}

.services-slide .swiper-slide {
    height: auto;
}

.services-slide__navigation.slide-controls-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -51px;
    right: 0;
}

.service-item {
    position: relative;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.service-item .service-image {
    width: 100%;
    height: 402px;
    overflow: hidden;
    position: relative;
    border-radius: 25px;
}

.service-item .service-image a {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    border-radius: 25px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.41) 0%, rgba(0, 0, 0, 0.41) 100%);
    opacity: 0;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.service-item:hover .service-image a {
    opacity: 1;
}

.service-item .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item .service-txt {
    position: relative;
    padding: 28px 24px 0;
}

.service-item .service-title {
    color: #FFF;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.34375em;
}

.service-item .service-more {
    background-color: #5DD95D;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/** Testimonials **/

.testimonials__content {
    position: relative;
    padding: 72px 147px 58px;
    border-radius: 25px;
    overflow: hidden;
}

.testimonials__content .sect-title .sub-title {
    margin-bottom: 25px;
}

.testimonials__content .sect-title .bloc-title {
    margin-bottom: 19px;
}


/** Latest news **/

.latest-news-section {
    padding: 124px 0 105px;
}

.latest-news__content {
    margin-top: 68px;
}

.latest-news__content>.row {
    margin: 0 -8.5px;
}

.latest-news__content>.row>div {
    padding-left: 8.5px;
    padding-right: 8.5px;
}

.actus-item {
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.actus-image {
    position: relative;
    width: 100%;
    height: 267px;
    border-radius: 20px;
    overflow: hidden;
}

.actus-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.actus-image img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.actus-item:hover .actus-image img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.actus-item:hover .actus-image img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.actus-text {
    padding: 20px 0;
    position: relative;
}

.actus-cat,
.actus-date {
    color: #5DD95D;
    font-family: "Inria Serif", serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5em;
}

.actus-date {
    text-transform: uppercase;
    padding-right: 60px;
}

.actus-title {
    color: #FFF;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.15em;
    margin-top: 19px;
}

.actus-title a:hover {
    color: #5DD95D;
}


/** Newsletter **/

.newsletter-section {
    padding: 63px 0 36px;
}

.blk-newsletter {
    position: relative;
}

.blk-newsletter .sect-title .sub-title {
    margin-bottom: 7px;
}

.blk-newsletter .sect-title .bloc-title {
    font-size: clamp(30px, 1rem + 1.3vw, 36px);
    font-weight: 700;
    line-height: 1.277777em;
    margin-bottom: 12px;
}

.blk-newsletter .newsletter__form form {
    display: inline-flex;
    align-items: center;
    gap: 15px 32px;
}

.blk-newsletter .newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.blk-newsletter .newsletter__form-note {
    color: #FFF;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.46154em;
    max-width: 308px;
}

.blk-newsletter .newsletter__form .form-group {
    margin-bottom: 0;
}

.blk-newsletter .newsletter__form .form-group .form-control {
    font-family: "segoe-ui", sans-serif;
    color: #FFF;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.733333em;
    padding: 7px 60px 7px 18px;
    border-radius: 26px;
    border: 1px solid #FFF;
    background-color: transparent;
    box-shadow: none;
    text-transform: none;
    width: 262px;
    height: 39px;
}

.blk-newsletter .newsletter__form .newsletter__form-submit button {}

.blk-newsletter .newsletter__form input:focus {
    border: 1px solid #FFF;
    background-color: transparent;
    color: #FFF;
    box-shadow: none;
}

.blk-newsletter .newsletter__form input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #FFF !important;
}

.blk-newsletter .newsletter__form input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #FFF !important;
    opacity: 1;
    /* Firefox */
}

.blk-newsletter .newsletter__form input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #FFF !important;
}


/******************************************************************************
* Footer
*******************************************************************************/

/** Footer- column **/

.footer-column {
    padding: 50px 0 48px;
}

.footer-column__item {
    position: relative;
    padding-top: 7px;
}

.footer-column__item ul.list-item {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-column__item ul.list-item li {
    color: #FFF;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25em;
}

.footer-column__item ul.list-item li a:hover {
    color: #5DD95D;
}


/** Footer services  **/

/** Footer contacts **/

/** Footer certification and insurance **/

.footer-certification-insurance .footer-title {
    margin-bottom: 18px;
}

.footer-certification-insurance ul {
    display: flex;
    align-items: center;
    gap: 23px;
    flex-wrap: wrap;
}

.footer-certification-insurance ul li {
    width: 155px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #FFF;
}


/** Footer bottom **/

.footer-bottom {
    padding: 14px 0;
}

.footer-copyright {
    color: #000;
    font-family: "Archivo", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.85714em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px 25px;
}

.footer-copyright ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-copyright ul li:not(:last-child):after {
    content: '|';
    display: inline-block;
    margin: 0 3px;
}

.footer-copyright ul li a:hover {
    color: #fff;
}

.img-arobiz {
    margin-top: -5px;
    margin-left: 15px;
}

/******************************************************************************
* Intern Page
*******************************************************************************/

/** Banner **/

.intern .banner-content {
    position: relative;
    min-height: 462px;
    display: flex;
    align-items: center;
    padding-top: 108px;
}

.intern .banner-text {
    position: relative;
    z-index: 2;
}

/******************************************************************************
* Contact Page
*******************************************************************************/

.contact-us-section {
    padding: 106px 0 132px;
}

.contact-us__content {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 77px;
    padding-top: 70px;
}

.contact-us__image {
    position: relative;
    max-width: 420px;
    height: 544px;
}

.contact-us__image .bloc-logo {
    margin-top: -122px;
    margin-left: -88px;
}
.intervention-area__inner{
    min-height: 554px;
}