/******************************************************************************
* Header
*******************************************************************************/

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

.sticked-menu {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    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;
    background: #d4dad4;
}


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


/** Home slider **/

.banner-section {
    max-height: 800px;
    overflow: hidden;
}

.home-slide .item-slide {
    height: 800px;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.home-slide .item-slide .bg-slide {
    position: absolute;
    z-index: 0;
    height: 100%;
    width: 100%;
    top: 0%;
    z-index: -1;
    overflow: hidden;
    right: 0;
}

.home-slide .item-slide .bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-slide .owl-item.active .item-slide .bg-slide img {
    animation: zoomSlide 10s linear infinite;
}

@keyframes zoomSlide {
    from {
        transform: scale(1) rotate(0deg);
    }
    to {
        transform: scale(1.4) rotate(4deg);
    }
}

.home-slide .item-slide .desc {
    font-size: 18px;
    color: #fff;
    font-family: "Lato";
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
}

.home-slide .item-slide .desc::before {
    content: "//";
    margin-right: 5px;
}

.home-slide .item-slide .title {
    font-size: 55px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    font-family: "Lato";
    max-width: 893px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.home-slide .owl-item .item-slide .desc {
    transform: translateY(200px);
    opacity: 0;
    visibility: hidden;
    transition: 1s;
    transition-delay: 0.3s;
    position: relative;
    z-index: 2;
}

.home-slide .owl-item .item-slide .title {
    transform: translateY(200px);
    opacity: 0;
    visibility: hidden;
    transition: 1s;
    transition-delay: 0.5s;
    position: relative;
    z-index: 2;
}

.home-slide .owl-item .item-slide .btn-slide {
    transform: translateY(200px);
    opacity: 0;
    visibility: hidden;
    transition: 1s;
    transition-delay: 0.7s;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    z-index: 2;
    gap: 20px;
}

.home-slide .owl-item.active .item-slide .title,
.home-slide .owl-item.active .item-slide .desc,
.home-slide .owl-item.active .item-slide .btn-slide {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.home-slide.owl-carousel .owl-dots {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    left: 0;
    width: 100%;
    bottom: 50px;
    height: 0;
}

.home-slide.owl-carousel .owl-dots .owl-dot {
    display: flex;
    width: 10px;
    height: 10px;
    color: #fff;
    border-radius: 50%;
    background-color: #fff;
    align-items: center;
    opacity: 0.5;
    justify-content: center;
}

.home-slide.owl-carousel .owl-dots .owl-dot:hover,
.home-slide.owl-carousel .owl-dots .owl-dot.active {
    opacity: 1;
}

.home-slide.owl-carousel .owl-dots .owl-dot span {
    display: none;
}


/** About us **/

.home .about-us-section {
    background: url(../images/deco.png) calc(95% - 100px) calc(100% - 50px) / auto no-repeat;
}

.about-us-section {
    padding: 0;
}

.intern .about-us-section {
    padding: 90px 0 94px 0;
}

.bloc-other__txt-left .img-box .bloc-image {
    margin-right: -378px;
}

.bloc-other__txt-right .img-box .bloc-image {
    margin-left: -378px;
}

.about-us-content .service-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/pattern-layer-shape02.png') no-repeat top left;
    width: 141px;
    height: 164px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -50px;
}

.about-us-content .service-ico img {
    width: 100%;
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
}

.intern .about-us-content .layer-logo {
    margin-left: -180px;
    margin-bottom: -17px;
}


/** Company benefits **/

.company-benefits-section {
    padding: 77px 0 67px 0;
}

.company-benefits-section .sub-title {
    margin-bottom: 15px;
}

.company-benefits-list li {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2em;
    color: #f9f9f9;
    margin: 0 42px 15px 42px;
}

.company-benefits-list li img {
    margin-right: 6px;
}


/** Our services **/

.our-services-section {
    padding: 104px 0 102px 0;
}

.intern .our-services-section {
    padding: 98px 0 105px 0;
}

.our-services-section .bloc-title {
    margin-bottom: 52px;
    font-size: 36px;
}

.our-services-slide.owl-carousel .owl-stage {
    display: flex;
}

.our-services-slide.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.our-services-slide.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 500ms ease, visibility 500ms ease;
    transition: opacity 500ms ease, visibility 500ms ease;
    display: flex;
    flex: 1 0 auto;
}

.our-services-slide.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.our-services-item {
    background-color: #fff;
    -webkit-box-shadow: 0 0 31px rgba(40, 40, 40, 0.20);
    box-shadow: 0 0 31px rgba(40, 40, 40, 0.20);
    text-align: center;
    position: relative;
    margin-top: 55px;
    display: flex;
    flex-direction: column;
}

.our-services-item__txt {
    padding: 82px 20px 15px 20px;
}

.our-services-item__title {
    font-weight: 900;
    font-size: 24px;
    line-height: 1.2em;
    color: #645f50;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
}

.our-services-item__title a:hover {
    color: #645f50;
}

.our-services-item__ico {
    background: url('../images/pattern-layer-shape.png') no-repeat top left;
    width: 94px;
    height: 109px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
}

.our-services-slide.owl-carousel .our-services-item__ico img {
    width: auto;
}


/** Testimonials **/

.testimonials-section {
    padding: 92px 0 95px 0;
    background: url('../images/bg-01.jpg') no-repeat top center;
    background-size: cover;
}

.testimonials-section .bloc-title {
    margin-bottom: 23px;
}


/** Latest news **/

.latest-news-section {
    padding: 96px 0 76px 0;
}

.latest-news__inner .layer-logo {
    margin-left: -152px;
    margin-bottom: -80px;
}

.actus-item__image {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.actus-item__image img {
    width: 100%;
    height: 100%;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    object-fit: cover;
}

.actus-item:hover .actus-item__image img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.actus-item {
    background-color: #fff;
    -webkit-box-shadow: 0 0 31px rgba(40, 40, 40, 0.20);
    box-shadow: 0 0 31px rgba(40, 40, 40, 0.20);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.actus-item__txt {
    padding: 20px 20px 20px 20px;
}

.actus-item__title {
    font-weight: 900;
    font-size: 24px;
    line-height: 1.2em;
    color: #645f50;
    margin-bottom: 8px;
}

.actus-item__title a:hover {
    color: #645f50;
}

.actus-item__more-link {
    background-color: #656051;
    color: #f9f9f9;
}

.actus-item__more-link:hover {
    background-color: #4c5d31;
    color: #f9f9f9;
}

.latest-news__action {
    margin-top: 15px;
}


/** Partners **/

.partners-section {
    padding: 25px 0 100px 0;
}

.partners-section .bloc-title {
    margin-bottom: 45px;
}

.partners__inner ul li:first-child {
    margin-right: 97px;
}


/** Contact infos **/

.blk-contact-infos {
    position: relative;
    z-index: 2;
    margin-top: -60px;
}

.blk-contact-infos .contact-infos-item__content {
    font-size: 25px;
    font-weight: 400;
    color: #232323;
    line-height: 1.2em;
    margin-bottom: 3px;
    text-align: center;
}

.blk-contact-infos .contact-infos-item__content b {
    color: #645f50;
    font-weight: 900;
}

.blk-contact-infos .contact-infos-item__content a:hover b {
    color: #4c5d31;
}

.blk-contact-infos .contact-infos-item__ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 106px;
    height: 123px;
    background: url('../images/pattern-layer-shape02.png') no-repeat center center;
    background-size: cover;
    margin: 0 auto 11px auto;
}


/** Bloctel **/

.bloctel-section {
    padding-top: 0;
    padding-bottom: 82px;
}

.blk-bloctel {
    font-size: 14px;
    color: #3d3d3d;
    font-weight: 400;
    line-height: 1.2em;
}


/** Map **/

.map__content {
    position: relative;
    height: 401px;
    width: 100%;
    overflow: hidden;
}

.map__content img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: center;
}


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


/** Footer column **/

.footer-column {
    padding: 100px 0 72px 0;
}

.footer-column .layer-logo {
    margin-right: -210px;
}


/** Newsletter **/

.footer-newsletter .footer-title {
    margin-bottom: 14px;
}

.footer-newsletter p {
    font-size: 14px;
    color: #1a1b1e;
    font-weight: 400;
    line-height: 1.2em;
}

.newsletter-form {
    max-width: 377px;
}

.newsletter-form form {
    margin-bottom: 16px;
}

.newsletter-form .form-group {
    position: relative;
    display: block;
    z-index: 1;
    margin-bottom: 0px;
}

.newsletter-form .form-group input[type="email"] {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    color: #6d6d6d;
    background-color: #fff;
    font-weight: 400;
    line-height: 1.2em;
    position: relative;
    width: 100%;
    padding: 10px 66px 10px 23px;
    height: 48px;
    display: inline-block;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    overflow: hidden;
}

.newsletter-form .form-group button {
    position: absolute;
    width: 43px;
    height: 48px;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
    padding: 2px 0 0;
    background: #656051;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form .form-group button:hover {
    background-color: #4c5d31;
    color: #f9f9f9;
}

.newsletter-form .form-group button:before {
    display: none;
}

.newsletter-form input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #6d6d6d !important;
}

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

.newsletter-form input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #6d6d6d !important;
}


/** Footer certification insurance **/

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

.footer-certification-insurance ul li:not(:last-child) {
    margin-right: 58px;
}


/** Footer services **/

.footer-services ul li a {
    font-size: 16px;
    color: #1a1b1e;
    font-weight: 400;
    line-height: 1.2em;
    position: relative;
}

.footer-services ul li:not(:last-child) {
    margin-bottom: 4px;
}

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


/** Footer SEO **/

.footer-seo {
    padding-top: 30px;
}

.footer-seo .footer-title {
    margin-bottom: 12px;
}

.seo-links,
.seo-links a {
    font-size: 16px;
    color: #232323;
    font-weight: 400;
    line-height: 1.2em;
}

.seo-links span {
    position: relative;
    width: 20px;
    display: inline-block;
    height: 11px;
}

.seo-links span:before {
    content: '.';
    font-size: 35px;
    font-weight: 800;
    position: absolute;
    top: -10px;
    right: 4px;
    line-height: 11px;
    color: #4c5d31;
}

.seo-links a:hover {
    color: #4c5d31;
}


/** Footer bottom **/

.footer-bottom {
    background-color: #4c5d31;
    padding: 30px 0 32px 0;
}

.img-arobiz {
    margin-top: -10px;
    margin-left: 20px;
}

.copyright,
.copyright a {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.24em;
}

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

.copyright ul li:not(:last-child):after {
    content: '-';
    display: inline-block;
    margin: 0 4px;
    color: #fff;
}

.copyright b {
    font-weight: 900;
}

.copyright a:hover,
.copyright a:focus {
    text-decoration: underline
}


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


/** Banner **/

.intern .banner-section {
    height: 400px;
    width: 100%;
    display: flex;
    z-index: 1;
    position: relative;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner-title {
    color: #f9f9f9;
    font-weight: 900;
    font-size: 55px;
    line-height: 1.2em;
    text-align: center;
    text-transform: uppercase;
}


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


/** Contact us **/

.contact-us-section {
    padding: 77px 0 61px 0;
}

.contact-us-section .sec-title h1 {
    margin-bottom: 46px;
}