/******************************************************************************
* Header
*******************************************************************************/
.sticked-menu.sticky-header {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
}

.sticked-menu {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 23;
    visibility: hidden;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    margin-top: 16px;
}

.sticked-menu .site-navigation__menu {
    border-radius: 50px;
    background: #1B1B1B;
    padding: 0 15px 0 30px;
    height: 82px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}

.sticked-menu .site-branding {
    width: 181px;
    height: 70px;
}

.sticked-menu .site-navigation .menu {
    border-radius: 0;
    background: none;
    padding: 0;
}

.main-header .sticked-menu .site-navigation .menu>ul>li>a {
    height: 82px;
    display: inline-flex;
    align-items: center;
    color: #fff;
}

.main-header .sticked-menu .site-navigation .menu>ul>li.active>a,
.main-header .sticked-menu .site-navigation .menu>ul>li:hover>a,
.main-header .sticked-menu .site-navigation .menu>ul>li.hover>a {
    color: #D99D62;
}

.sticked-menu .site-navigation__inner {
    padding: 0 30px;
}

.intern .site-branding .logo-img {
    display: none !important;
}

.intern .site-branding .logo-img-2 {
    display: flex !important;
}

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

/** Banner slider **/

.home .banner-inner {
    position: relative;
    padding: 106px 0 0;
}

.hero-banner {
    padding: 0 79px 86px;
}

.hero-banner__text {
    position: relative;
    text-align: center;
}

.banner-title,
.hero-banner__title {
    color: #FFF;
    font-size: 5.625rem;
    font-size: clamp(42px, 1rem + 5vw, 90px);
    font-style: normal;
    font-weight: 800;
    line-height: 1.1111111em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-banner__text.default .hero-banner__title {
    font-size: 3.75rem;
    font-size: clamp(36px, 1rem + 3.1vw, 60px);
    font-weight: 800;
    line-height: 1.166666em;
}

.banner-actions,
.hero-banner__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 30px;
}

.home .banner-inner .btn-contact-link {
    margin-bottom: -30px;
    margin-right: 30px;
}

.hero-banner__images {
    display: flex;
    justify-content: center;
    position: relative;
    height: 100%;
    height: 420px;
    gap: 50px;
    padding-top: 10px;
}

.hero-banner__thumb {
    width: 264px;
    height: 330px;
    aspect-ratio: 4/5;
    position: relative;
    transform: translateY(40px) scale(.8);
    filter: blur(8px);
    will-change: transform, opacity;
    cursor: pointer;
    transition: .3s;
}

.hero-banner__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner__thumb:nth-child(4),
.hero-banner__thumb:nth-child(1) {
    margin-top: 52px;
}

.hero-banner__thumb:nth-child(1) img {
    transform: rotate(-14deg);
}

.hero-banner__thumb:nth-child(2) img {
    transform: rotate(-4deg);
}

.hero-banner__thumb:nth-child(3) img {
    transform: rotate(4deg);
}

.hero-banner__thumb:nth-child(4) img {
    transform: rotate(14deg);
}

.hero-banner__thumb.active img {
    box-shadow: 0 0 30px 0 rgba(217, 157, 98, 0.70);
}

.hero-banner__thumb.disabled img {
    box-shadow: 0 0 30px 0 rgba(217, 157, 98, 0.70);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
    filter: blur(10px);
}

.hero-banner__content {
    position: relative;
    min-height: 160px;
    margin-top: -30px;
}

.hero-banner__text {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
}

.hero-banner__text.default {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.banner-slide__item {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide__item-content {
    position: relative;
    z-index: 2;
    text-align: center;
}


/** About us **/

.bloc-image.float-image {
    width: 52vh;
    height: 453px;
    border-radius: 14px 0 0 14px;
    top: auto;
}

.bloc-image.float-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bloc-image.image-1 {
    width: 368px;
    height: 364px;
    position: relative;
}

.bloc-image.image-2 {
    width: 513px;
    height: 508px;
    position: relative;
}

.bloc-image.image-2:before,
.bloc-image.image-1:before {
    content: '';
    background: url('../images/layer-shape.svg') no-repeat top left;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
}

.bloc-content:not(:first-child) {
    margin-top: 38px;
}

.macaron {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 80px;
    background: #FFF;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    z-index: 2;
    align-items: center;
    justify-content: center;
    padding: 40px;
}


@keyframes textrotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.macaron .text-circle {
    width: 90%;
    position: absolute;
    text-align: left;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    animation: textrotate 25s infinite linear;
}

.macaron .img-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


/** Intervention area **/

.intervention-area-section .layer-shape {
    margin-right: 4px;
    opacity: 0.1;
}


/** Company benefits **/

.benefit-item {
    flex: 1;
    position: relative;
}

.benefit-item__inner {
    position: relative;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid rgba(176, 176, 176, 0.50);
}

.benefit-item:nth-child(odd) {
    margin-top: 84px;
}

.benefit-item .benefit-ico {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.benefit-item .benefit-ico img {
    -webkit-transition: all 900ms ease;
    transition: all 900ms ease;
}

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

.benefit-item .benefit-number {
    color: #D99D62;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5em;
    position: absolute;
    top: 30px;
    right: 30px;
}

.benefit-item .benefit-title {
    color: #1B1B1B;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4em;
    margin-bottom: 10px;
}

.benefit-item p {
    margin-bottom: 0;
}


/** Services diag **/

.services-diag-section {
    border-radius: 50px 50px 0 0;
}

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

.service-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    width: 360px;
    height: 100%;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

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

.service-item .service-image a {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.50);
    -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: absolute;
    z-index: 2;
    bottom: 40px;
    right: 40px;
    left: 40px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateY(15px);
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.service-item:hover .service-txt {
    opacity: 1;
    transform: translateY(0);
}

.service-item .service-cat {
    color: #FFF;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5em;
}

.service-item .service-title {
    color: #FFF;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.333333em;
}


/** A few figures **/

.counter-box {
    position: relative;
    border: 1px solid #B0B0B0;
    display: flex;
    min-height: 260px;
    width: 260px;
    padding: 30px;
    flex-direction: column;
    justify-content: space-between;
}

.odometer {
    display: inline-block;
}

.odometer .odometer-formatting-mark.odometer-radix-mark {
    display: inline-block;
    color: transparent !important;
}

.counter-number,
.counter-number * {
    font-family: "Poppins", sans-serif;
    color: #D99D62;
    font-size: 3.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2em;
}

.odometer .odometer-formatting-mark.odometer-radix-mark:before {
    content: ",";
    position: absolute;
    color: #D99D62 !important;
}

.counter-number .sup {
    color: #D99D62;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: inherit;
    position: relative;
    top: 2px;
}

.counter-title {
    color: #696969;
    text-align: right;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.444444em;
}


/** Online payment **/

.online-payment-section {
    padding: 204px 0;
    border-radius: 50px 50px 0 0;
    box-shadow: 0 -6px 30px 0 rgba(0, 0, 0, 0.25);
}

.blk-online-payment {
    display: inline-flex;
    padding: 60px 60px 30px 60px;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    max-width: 783px;
    width: 90%;
    border-radius: 14px 50px 0 0;
    background: #1B1B1B;
    box-shadow: 0 -4px 20px 0 rgba(0, 0, 0, 0.25);
}

.online-payment-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blk-online-payment .online-payment-ico {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #D99D62;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.42857em;
    width: 98px;
    min-width: 98px;
    gap: 10px;
}


/** Testimonials **/

.testimonials-section {
    border-radius: 50px 50px 0 0;
}

.testimonials__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reviews-rating {
    margin: 5px 0 8px 6px;
}

.testimonials__reviews {
    color: #696969;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5em;
}

.reviews-total {
    color: #1B1B1B;
    font-size: 3.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.166666em;
}

.reviews-text {
    color: #696969;
    font-size: 1rem;
    font-style: italic;
    font-weight: 275;
    line-height: 1.5em;
}

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

.testimonial-item .testimonial-author {
    color: #696969;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5em;
}

.testimonial-item p {
    color: #1B1B1B;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4166666em;
    margin-bottom: 20px;
}


/** Latest news **/

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

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

.actus-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}

.actus-item:hover .actus-image img {
    transform: scale(1.1);
}

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

.actus-cat,
.actus-date {
    color: #696969;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.571425em;
}

.actus-cat {
    display: flex;
    padding: 4px 14px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    border: 1px solid #B0B0B0;
}

.actus-item .separation {
    content: '';
    width: 40px;
    height: 1px;
    background: #696969;
    display: inline-block;
    margin: 0 20px;
}

.actus-title {
    color: #1B1B1B;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3em;
    margin-bottom: 20px;
}

.actus-item:hover .actus-title a {
    color: #D99D62;
}

.latest-news__action {
    margin-top: 30px;
    text-align: center;
}


/** Newsletter **/

.newsletter-section {
    padding: 50px 0;
}

.newsletter-section .newsletter__inner {
    display: flex;
    justify-content: space-between;
}

.blk-certification-insurance {
    padding-top: 45px;
}

.blk-certification-insurance ul,
.blk-certification-insurance ul li {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blk-certification-insurance ul li p,
.blk-certification-insurance ul li .sect-title .bloc-title {
    margin-bottom: 0;
}

.blk-newsletter {
    max-width: 582px;
    width: 100%;
    padding-top: 45px;
}

.blk-newsletter .sect-title .bloc-title {
    margin-bottom: 15px;
}

.blk-newsletter .newsletter__form {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 15px;
}

.blk-newsletter .newsletter__form form {
    position: relative;
    width: 100%;
}

.blk-newsletter .newsletter__form-note {
    font-weight: 300;
}

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

.blk-newsletter .newsletter__form .form-group .form-control {
    font-family: "Poppins", sans-serif;
    color: #696969;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5em;
    width: 100%;
    height: 56px;
    padding: 4px 56px 4px 22px;
    border-radius: 25px;
    background: #FFF;
    border: 0;
    box-shadow: none;
    text-transform: none;
}

.blk-newsletter .newsletter__form .form-group button {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    box-shadow: none;
    border-radius: 25px;
    background: #D99D62;
    margin: 0;
    padding: 0;
}

.blk-newsletter .newsletter__form .form-group button:hover {
    background: #1B1B1B;
}

.blk-newsletter .newsletter__form .newsletter__form-submit {
    position: absolute;
    width: auto;
    right: 4px;
    top: 4px;
    z-index: 1;
}

.blk-newsletter .newsletter__form input:focus {
    background: #FFF;
    border: 0;
    color: #696969;
    box-shadow: none;
}

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

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

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


/** Contact info **/

.contact-infos__content {
    position: relative;
}

.contact-infos__content .contact-infos__image {
    height: calc(100% - 200px);
    top: 50%;
    transform: translateY(-50%);
}

.contact-infos__content-inner {
    display: inline-flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
}

.blk-contact-info {
    display: inline-block;
    border-radius: 20px;
    background: #1B1B1B;
    padding: 50px;
    position: relative;
}

.blk-contact-info .contact-info__title {
    font-size: 1.625rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 30px;
    position: relative;
}

.blk-contact-info .contact-info__title:after {
    content: '';
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #D99D62 32.53%, #8A5820 67.53%);
}

.blk-contact-info ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blk-contact-info ul li {
    color: #FFF;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5em;
    display: flex;
    flex-direction: column;
}

.blk-contact-info ul li a {
    background-image: linear-gradient(90deg, #FFF 0%, #FFF 100%);
    background-repeat: no-repeat;
    background-size: 0 1px;
    background-position: 0px 95%;
}

.blk-contact-info ul li a:hover {
    background-size: 100% 1px;
}

.blk-contact-info ul li b {
    font-weight: 600;
}

.blk-contact-info.opening-times ul {
    gap: 0;
}

.blk-contact-info.opening-times ul li {
    align-items: center;
    flex-direction: row;
    gap: 50px;
}

.blk-contact-info.opening-times ul li span:first-child {
    width: 85px;
}


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

.let-talk-together {
    top: -50px;
    color: #fff;
    text-align: center;
    font-size: clamp(42px, 1rem + 6.3vw, 100px);
    font-style: normal;
    font-weight: 600;
    line-height: 1em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    position: relative;
    width: 100%;
    margin-bottom: -50px;
}

.let-talk-together .macaron {
    margin-bottom: -30px;
    position: relative;
}

/** Footer- column **/

.footer-column {
    padding: 80px 0 78px;
}

.footer-column__inner>.row {
    margin: 0 -20px;
}

.footer-column__inner>.row>div {
    padding-left: 20px;
    padding-right: 20px;
}

.footer-column__item {
    position: relative;
}

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

.footer-column__item ul.list-item li {
    color: #B0B0B0;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5em;
    display: flex;
    flex-direction: column;
}

.footer-column__item ul.list-item li .footer-title {
    margin-bottom: 0;
}

.footer-column__item ul.list-item li b {
    font-weight: 500;
}

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

.footer-slogan {
    color: #FFF;
    font-size: 1.625rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.307694em;
    max-width: 266px;
}


/** Footer services  **/

.footer-services ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid #B0B0B0;
    padding: 42px 50px;
    gap: 5px 30px;
}

.footer-services ul li {
    color: #B0B0B0;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5em;
}

.footer-services ul li a:hover {
    color: #D99D62;
}

/** Footer contacts **/

/** Footer bottom **/

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

.footer-copyright ul li {
    color: #FFF;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5em;
    position: relative;
}

.footer-copyright ul li b {
    font-weight: 600;
}

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

.footer-copyright ul li:not(:last-child) {
    margin-right: 11px;
    padding-right: 11px;
}

.footer-copyright ul li:not(:last-child):after {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 4px;
    background: #FFF;
    position: absolute;
    top: 10px;
    right: -2px;
}

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

.copyright-arobiz {
    font-weight: 700;
}

.copyright-arobiz:hover {
    text-decoration: underline;
}

/******************************************************************************
* 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 .layer-shape {
    opacity: 0.1;
    margin-left: 4px;
}
.pl--8{
    padding-left: 8px;
}