/*******************************/


/********* General CSS *********/


/*******************************/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@800&display=swap");

:root {
    --font-size: 0.8em;
    --bg1: #f5f8f7;
    --blue: #3498db;
    --green: #2ecc71;
    --purple: #9b59b6;
    --gold: #f1c40f;
    --red: #e74c3c;
    --orange: #e67e22;
    --shadow1: 0 2px 4px #000 26, 0 3px 6px #000 1f;
    --shadow2: 0 2px 6px #000 44, 0 4px 7px #000 22;
}

main {
    padding: 2vw;
}

ul.infoGraphic {
    font-size: var(--font-size);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

ul.infoGraphic li {
    position: relative;
    width: 100%;
    max-width: 25em;
    background: var(--bg1);
    border-radius: 0.5em;
    padding: 0.5em;
    z-index: 1;
    transition: all 0.2s;
    cursor: pointer;
}

ul.infoGraphic li .numberWrap {
    position: absolute;
}

ul.infoGraphic li .number {
    font-family: "maven pro", sans-serif;
    font-size: 10em;
    font-weight: 700;
    width: 0.9em;
    text-align: center;
}



.number.fontColor4 {
    color: #1E90FF;
    left: 20%;
    position: relative;
}


ul.infoGraphic li .coverWrap {
    transform: rotate(130deg);
    position: absolute;
    width: 18em;
    height: 15em;
    left: -3em;
    top: -1em;
}

ul.infoGraphic li .coverWrap .numberCover {
    position: absolute;
    background: var(--bg1);
    width: 18em;
    height: 6em;
    border-radius: 50% 50% 0 0;
    border-bottom: 3px solid #f5f8f7;
    transition: all 0.4s;
}

ul.infoGraphic li .coverWrap .numberCover::before {
    position: absolute;
    content: "";
    bottom: 5px;
    left: 4em;
    right: 4em;
    top: 5em;
    box-shadow: 0 0 30px 17px #486685 77;
    border-radius: 100px / 10px;
    z-index: -1;
}

ul.infoGraphic li .coverWrap .numberCover::after {
    position: absolute;
    bottom: 0;
    content: "";
    left: -10%;
    width: 120%;
    height: 150%;
    background: radial-gradient(at bottom, #486685 33, transparent, transparent);
    z-index: 1;
}

ul.infoGraphic li .content {
    margin: 8em 3em 1em 7em;
    position: relative;
}

ul.infoGraphic li .content h2 {
    font-size: 1.7em;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
}

ul.infoGraphic li .content p {
    line-height: 1.5em;
}

ul.infoGraphic li:hover .coverWrap .numberCover {
    border-radius: 100%;
}

.icon {
    position: absolute;
    font-size: 2rem;
    text-align: center;
    top: -1.3em;
    left: 50%;
    transform: translatex(-50%);
}

.icon:before {
    color: #666;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
}

.iconCodepen:before {
    content: "\f1cb";
}

.iconSocial:before {
    content: "\f08a";
}

.iconAirplane:before {
    content: "\f1d9";
}

.iconMap:before {
    content: "\f278";
}

.iconBulb:before {
    content: "\f0eb";
}

.iconPeace:before {
    content: "\f25b";
}

.controls {
    position: absolute;
    z-index: 2;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #d7d7d7;
    padding: 0.5rem 2em;
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
    border: 1px solid #000;
}

.sliderBox {
    text-align: center;
    color: #000;
}

.sliderBox .range-value {
    font-weight: 500;
    font-size: 22px;
}

input[type="range"] {
    width: 100%;
    margin: 1em 0;
    -webkit-appearance: none;
}

input[type="range"]:focus {
    outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: #000 66;
    border: 0;
    border-radius: 1.3px;
    width: 100%;
    height: 2px;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    margin-top: -10px;
    width: 20px;
    height: 20px;
    background: #eee;
    box-shadow: inset 0px 1px 1px #fff 66, 0px 1px 3px rgba(0, 0, 0, 1);
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 50px;
    cursor: pointer;
    -webkit-appearance: none;
}

input[type="range"]:focus::-webkit-slider-runnable-track {
    background: #eee;
}

input[type="range"]::-moz-range-track {
    background: #000;
    border: 0;
    border-radius: 1.3px;
    width: 100%;
    height: 1px;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #151728;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 50px;
    cursor: pointer;
}

input[type="range"]::-ms-track {
    background: transparent;
    border-color: transparent;
    border-width: 13px 0;
    color: transparent;
    width: 100%;
    height: 1px;
    cursor: pointer;
}

input[type="range"]::-ms-fill-lower {
    background: #151728;
    border: 0;
    border-radius: 2.6px;
}

input[type="range"]::-ms-fill-upper {
    background: #151728;
    border: 0;
    border-radius: 2.6px;
}

input[type="range"]::-ms-thumb {
    width: 25px;
    height: 25px;
    background: #151728;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 50px;
    cursor: pointer;
    margin-top: 0px;
    /*Needed to keep the Edge thumb centred*/
}

input[type="range"]:focus::-ms-fill-lower {
    background: #fff;
}

input[type="range"]:focus::-ms-fill-upper {
    background: #fff;
}

body {
    color: #444444;
    font-weight: 400;
    background: #ffffff;
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #202C45;
}

a {
    color: #202C45;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #E81C2E;
    outline: none;
    text-decoration: none;
}

.btn.btn-custom {
    padding: 10px 30px 12px 30px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background: #E81C2E;
    border: none;
    border-radius: 60px;
    box-shadow: inset 0 0 0 0 #202C45;
    transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    -moz-transition: ease-out 0.5s;
}

.btn.btn-custom:hover {
    color: #E81C2E;
    background: #202C45;
    box-shadow: inset 200px 0 0 0 #202C45;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
    font-size: inherit;
    margin-left: 0;
}


/**********************************/


/****** Loader & Back to Top ******/


/**********************************/

#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #E81C2E;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.back-to-top {
    position: fixed;
    display: none;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: .5s;
    background: #E81C2E;
    border-radius: 44px;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #202C45;
}


/**********************************/


/********** Top Bar CSS ***********/


/**********************************/

.top-bar {
    position: relative;
    height: 108px;
    display: flex;
    align-items: center;
    background: #ffffff;
    padding-top: 11px;
    font-size: 30px;
    padding-bottom: 10px;
}

.top-bar .logo {
    text-align: left;
    overflow: hidden;
}

.top-bar .logo h1 {
    margin: -4px 0 0 0;
    color: #E81C2E;
    font-size: 50px;
    line-height: 50px;
    font-weight: 800;
    letter-spacing: 1px;
    font-style: italic;
    position: absolute;
    top: -4px;
}

.top-bar .logo h1 span {
    color: #202C45;
}

.top-bar .logo img {
    max-width: 100%;
    max-height: 137px;
    position: relative;
    left: -80px;
    top: 17px;
}

.top-bar .top-bar-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .top-bar-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #202C45;
    border-radius: 40px;
    top: 10px;
}

.top-bar .top-bar-icon i {
    margin: 10;
    color: #ffffff;
    font-size: 16px;
}

.top-bar .top-bar-text {
    padding-left: 15px;
}

.top-bar .top-bar-text h3 {
    margin: 0 0 7px 0 !important;
    font-size: 18px;
    font-weight: 500;
}

.top-bar .top-bar-text p {
    margin: 0 !important;
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
    }
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1360px !important;
    }
}


/**********************************/


/*********** Nav Bar CSS **********/


/**********************************/

.nav-bar {
    position: relative;
    background: #202C45;
}

.nav-bar.nav-sticky {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
}

.nav-bar .navbar {
    padding: -6px 0;
    background: #202C45 !important;
    transition: .3s;
}

.nav-bar.nav-sticky .navbar {
    padding: 5px 0;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff;
    padding: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #E81C2E;
}

.dropdown-item {
    display: contents !important;
}

.langue {
    position: absolute;
    padding-top: 14 px !important;
    right: 2% !important;
    z-index: 10;
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

.nav-bar .btn.btn-custom {
    color: #202C45;
    background: #ffffff;
    box-shadow: inset 0 0 0 0 #E81C2E;
}

.nav-bar .btn:hover {
    color: #ffffff;
    background: #E81C2E;
    box-shadow: inset 200px 0 0 0 #E81C2E;
}

@media (min-width: 992px) {
    .nav-bar .navbar-brand {
        display: none;
    }
}

@media (max-width: 991.98px) {

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link:focus,
    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        padding: 5px 0;
    }

    .nav-bar .dropdown-menu {
        box-shadow: none;
    }


}


/*******************************/


/********** Hero CSS ***********/


/*******************************/

.carousel {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: #ffffff;
    margin-bottom: 45px;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    max-width: 100%;
    height: auto;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.carousel .carousel-img img {
    max-width: 100%;
    height: auto;
    /* width: 100%; */
    /* height: 100%; */
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 992px;
    padding: 0 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h3 {
    color: #E81C2E;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.carousel .carousel-text h1 {
    color: #ffffff;
    font-size: 90px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.carousel .carousel-text p {
    max-width: 500px;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.carousel .carousel-text::after {
    content: '';
}

.carousel .btn.btn-custom {
    padding: 20px 45px 22px 45px;
    color: #ffffff;
}

.carousel .btn.btn-custom:hover {
    color: #E81C2E;
}

.carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 50px;
    top: calc(50% - 25px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 50px;
    background: rgba(256, 256, 256, .2);
    font-size: 22px;
    transition: .5s;
}

.carousel .owl-nav .owl-prev {
    margin-left: 30px;
}

.carousel .owl-nav .owl-next {
    margin-right: 30px;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #E81C2E;
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

@media (max-width: 991.98px) {
    .carousel .carousel-text h3 {
        margin-bottom: 5px;
    }

    .carousel .carousel-text h1 {
        font-size: 60px;
    }

    .carousel .carousel-text p {
        font-size: 16px;
    }

    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel .carousel-text h3 {
        font-size: 18px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .carousel .carousel-text h1 {
        font-size: 45px;
    }

    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h3 {
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .carousel .carousel-text h1 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .carousel .carousel-text p {
        margin-bottom: 25px;
    }

    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}


/*******************************/


/******* Page Header CSS *******/


/*******************************/


/* @media (min-width: 1200px){

.page-header{
    max-width: 1360px !important;
}
} */

.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 5px 0;
    text-align: center;
    background: #202C45;
    border-top: 1px dotted #ffffff;
}

.page-header-about {
    position: relative;
    margin-bottom: 45px;
    padding: 90px 0;
    text-align: center;
    overflow: visible;
    /* height: auto !important; */
    /* background: #202C45; */
    border-top: 1px dotted #ffffff;
}

.page-header h2 {
    position: relative;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #ffffff;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.page-header a:hover {
    color: #E81C2E;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #ffffff;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }

    .page-header h2 {
        font-size: 45px;
    }

    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }

    .page-header h2 {
        font-size: 35px;
    }

    .page-header a {
        font-size: 18px;
    }
}


/*******************************/


/******* Section Header ********/


/*******************************/

.section-header {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 45px auto;
}

.section-header p {
    display: inline-block;
    margin-bottom: 10px;
    padding-bottom: 5px;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #E81C2E;
}

.section-header p::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    left: 0%;
    bottom: 0;
    background: #E81C2E;
}

.section-header.text-left p::after {
    left: 0;
}

.section-header.text-right p::after {
    left: 50%;
}

.section-header h2 {
    margin: 0;
    font-size: 45px;
    font-weight: 700;
    text-transform: capitalize;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}


/*******************************/


/********** About CSS **********/


/*******************************/

.about {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img img {
    max-width: 100%;
    height: auto;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 30px;
}

.about .about-content {
    margin-bottom: 30px;
}

.about .about-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 25px;
}

.about .about-content ul li {
    margin-bottom: 5px;
}

.about .about-content ul li i {
    margin-right: 8px;
    color: #E81C2E;
}


/*******************************/


/********* Service CSS *********/


/*******************************/

.service {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 45px;
}

.service .service-item i {
    color: #202C45;
    font-size: 75px;
    line-height: 75px;
    margin-bottom: 20px;
}

.service .service-item [class^="flaticon-"]::before {
    margin: 0;
    font-size: 60px;
    line-height: 60px;
    background-image: linear-gradient(#E81C2E, #202C45);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: .5s;
}

.service .service-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service .service-item p {
    margin: 0;
}


/*******************************/


/********** Facts CSS **********/


/*******************************/

.facts {
    position: relative;
    width: 100%;
    min-height: 400px;
    margin: 45px 0;
    display: flex;
    align-items: center;
    background: #202C45;
}

.facts .facts-item {
    display: flex;
    flex-direction: row;
    margin: 25px 0;
}

.facts .facts-item i {
    margin-top: 15px;
    font-size: 45px;
    color: #E81C2E;
}

.facts .facts-text {
    padding-left: 20px;
}

.facts .facts-text h3 {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
}

.facts .facts-text h3::after {
    position: absolute;
    content: "\f067";
    top: 0px;
    right: -25px;
    color: #ffffff;
    font-size: 25px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.facts .facts-text p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.row {
    margin-right: 5px !important;
    margin-left: -5px !important;
}


/*******************************/


/********* Pricing CSS *********/


/*******************************/

.price {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.price .row {
    padding: 0 15px;
}

.price .col-md-4 {
    padding: 0;
}

.price .price-item {
    position: relative;
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 5px;
    text-align: center;
}

.price .featured-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .2);
    z-index: 1;
}

.price .price-header {
    padding: 45px 0 30px 0;
}

.price .price-header h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.price .price-header h2 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 5px;
}

.price .price-header h2 span {
    font-size: 25px;
    line-height: 55px;
}

.price .price-item.featured-item h2,
.price .price-item.featured-item h3 {
    color: #E81C2E;
}

.price .price-body {
    padding: 0 0 20px 0;
}

.price .price-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.price .price-body ul li {
    padding: 0 0 15px 0;
}

.price .price-body ul li i {
    margin-right: 10px;
}

.price .price-body ul li i.fa-check-circle {
    color: #39B972;
}

.price .price-body ul li i.fa-times-circle {
    color: #cccccc;
}

.price .price-item .price-footer {
    padding-bottom: 45px;
}

.price .price-item .price-footer .btn.btn-custom {
    color: #E81C2E;
    background: #202C45;
    box-shadow: inset 0 0 0 0 #E81C2E;
}

.price .price-item .price-footer .btn.btn-custom:hover {
    color: #ffffff;
    background: #E81C2E;
    box-shadow: inset 200px 0 0 0 #E81C2E;
}

.price .price-item.featured-item .price-footer .btn.btn-custom {
    color: #ffffff;
    background: #E81C2E;
    box-shadow: inset 0 0 0 0 #202C45;
}

.price .price-item.featured-item .price-footer .btn.btn-custom:hover {
    color: #E81C2E;
    background: #202C45;
    box-shadow: inset 200px 0 0 0 #202C45;
}


/*******************************/


/******** Location CSS *********/


/*******************************/

.location {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.location .location-item {
    display: flex;
    margin-bottom: 30px;
}

.location .location-item i {
    padding-top: 3px;
    font-size: 30px;
    color: #E81C2E;
}

.location .location-text {
    padding-left: 15px;
}

.location .location-text h3 {
    font-size: 18px;
    font-weight: 700;
}

.location .location-text p {
    margin-bottom: 5px;
}

.location .location-text p strong {
    margin-right: 5px;
    font-weight: 600;
}

.location .location-form {
    padding: 45px 30px;
    background: #E81C2E;
    border-radius: 5px;
}

.location .location-form h3 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 25px;
}

.location .location-form .control-group {
    margin-bottom: 15px;
}

.location .location-form .form-control {
    height: 45px;
    color: #ffffff;
    padding: 0 15px;
    border-radius: 5px;
    border: 1px solid #ffffff;
    background: transparent;
}

.location .location-form textarea.form-control {
    height: 120px;
    padding: 15px;
}

.location .location-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.location .location-form .form-control:-ms-input-placeholder,
.location .location-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.location .location-form .btn.btn-custom {
    width: 100%;
    color: #E81C2E;
    background: #ffffff;
    box-shadow: inset 0 0 0 0 #202C45;
}

.location .location-form .btn.btn-custom:hover {
    color: #ffffff;
    background: #E81C2E;
    box-shadow: inset 400px 0 0 0 #202C45;
}

@media(min-width: 576px) and (max-width: 991.89px) {
    .location .location-form .btn.btn-custom:hover {
        box-shadow: inset 650px 0 0 0 #202C45;
    }
}


/*******************************/


/*********** Team CSS **********/


/*******************************/

.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team-equipe {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
}

.team-equipe .team-item {
    position: relative;
    margin-bottom: 30px;
}

.team .team-img {
    max-width: 100%;
    height: auto;
    position: relative;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
}

.team-equipe .team-img {
    max-width: 100%;
    height: auto;
    position: relative;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    left: 20%;
}

.team .team-img img {
    max-width: 100%;
    height: auto;
    width: 100%;
    transition: .3s;
}

.team-equipe .team-img img {
    max-width: 100%;
    height: auto;
    width: 100%;
    transition: .3s;
}

.team .team-item:hover img {
    transform: scale(1.1);
}

.team-equipe .team-item:hover img {
    transform: scale(1.1);
}

.team .team-text {
    position: relative;
    width: 100%;
    padding: 35px 30px 30px 30px;
    text-align: center;
    background: #202C45;
    border-radius: 0 0 5px 5px;
    transition: .5s;
}

.team-equipe .team-text {
    position: relative;
    width: 100%;
    padding: 35px 30px 30px 50px;
    text-align: center;
    background: #202C45;
    border-radius: 0 0 5px 5px;
    transition: .5s;
}

.team .team-item:hover .team-text {
    background: #E81C2E;
}

.team-equipe .team-item:hover .team-text {
    background: #E81C2E;
}

.team .team-text h2 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.team-equipe .team-text h2 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.team .team-text p {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
}

.team-equipe .team-text p {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
}

.team .team-social {
    position: absolute;
    width: 100%;
    height: 40px;
    top: -20px;
    left: 0;
    text-align: center;
    font-size: 0;
}

.team-equipe .team-social {
    position: absolute;
    width: 100%;
    height: 40px;
    top: -20px;
    left: 0;
    text-align: center;
    font-size: 0;
}

.team .team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 3px;
    padding: 7px 0;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    background: #202C45;
    border-radius: 40px;
    transition: .5s;
}

.team .team-item:hover .team-social a {
    background: #E81C2E;
}

.team .team-social a:hover {
    color: #202C45;
}

.team-equipe .team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 3px;
    padding: 7px 0;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    background: #202C45;
    border-radius: 40px;
    transition: .5s;
}

.team-equipe .team-item:hover .team-social a {
    background: #E81C2E;
}

.team-equipe .team-social a:hover {
    color: #202C45;
}


/*******************************/


/******* Testimonial CSS *******/


/*******************************/

.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    padding: 0 15px;
    display: flex;
}

.testimonial .testimonial-item img {
    max-width: 100%;
    height: auto;
    width: 80px;
    height: 80px;
    border-radius: 80px;
    transform: scale(.8);
    transition: 2s;
}

.testimonial .owl-item.center .testimonial-item img {
    transform: scale(1);
}

.testimonial .testimonial-text {
    width: calc(100% - 100px);
    padding-left: 20px;
}

.testimonial .testimonial-text h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.testimonial .testimonial-text h4 {
    color: #777777;
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial .testimonial-text p {
    margin: 0;
}

.testimonial .testimonial-text p::before {
    content: "\f10d";
    font-size: 25px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #E81C2E;
    margin-right: 10px;
}

.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 10px;
    background: #dddddd;
}

.testimonial .owl-dot.active {
    background: #E81C2E;
}


/*******************************/


/*********** Blog CSS **********/


/*******************************/

.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
}

.blog .blog-item {
    margin-bottom: 45px;
}

.blog .blog-img {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.blog .blog-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.blog .meta-date {
    position: absolute;
    width: 70px;
    height: 70px;
    bottom: 10%;
    left: calc(50% - 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 70px;
    background: #202C45;
    color: #ffffff;
    opacity: 0;
    transition: .5s;
}

.blog .meta-date span {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
}

.blog .meta-date strong {
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.blog .blog-item:hover .meta-date {
    bottom: calc(50% - 35px);
    opacity: 1;
}

.blog .blog-text {
    padding: 25px 0 20px 0;
}

.blog .blog-text h3 {
    font-size: 22px;
    font-weight: 700;
}

.blog .blog-text h3 a {
    color: #202C45;
}

.blog .blog-text h3 a:hover {
    color: #E81C2E;
}

.blog .blog-text p {
    margin: 0;
}

.blog .blog-meta {
    display: flex;
}

.blog .blog-meta p {
    margin: 0;
    font-size: 14px;
    line-height: 14px;
    padding: 0 10px;
    border-right: 1px solid rgba(0, 0, 0, .15);
}

.blog .blog-meta p:first-child {
    padding-left: 0;
}

.blog .blog-meta p:last-child {
    padding-right: 0;
    border: none;
}

.blog .blog-meta i {
    color: #999999;
    margin-right: 5px;
}

.blog .blog-meta a {
    color: #999999;
}

.blog .blog-meta a:hover {
    color: #E81C2E;
}

.blog .pagination {
    margin-bottom: 15px;
}

.blog .pagination .page-link {
    color: #202C45;
    border-radius: 0;
    border-color: #202C45;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #E81C2E;
    background: #202C45;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/


/********* Contact CSS *********/


/*******************************/

.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .contact-info {
    width: 100%;
    margin-bottom: 45px;
    padding: 35px 30px 10px 30px;
    border-radius: 5px;
    background: #202C45;
}

.contact .contact-info h2 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact .contact-info-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.contact .contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50px;
}

.contact .contact-info-icon i {
    margin: 0;
    color: #202C45;
    font-size: 16px;
}

.contact .contact-info-text {
    padding-left: 20px;
}

.contact .contact-info-text h3 {
    margin: 0 0 5px 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact .contact-info-text p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.contact .contact-form {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.contact .contact-form input {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #202C45;
}

.contact .contact-form textarea {
    height: 125px;
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid #202C45;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.contact iframe {
    width: 100%;
    height: 400px;
    border-radius: 5px;
}


/*******************************/


/******* Single Post CSS *******/


/*******************************/

.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
    border-radius: 5px;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #202C45;
    border: 1px solid #202C45;
    border-radius: 5px;
}

.single .single-tags a:hover {
    color: #ffffff;
    background: #E81C2E;
    border-color: #E81C2E;
}

.single .single-bio {
    padding: 30px;
    background: #202C45;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 5px;
}

.single .single-bio-img {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-width: 115px;
    padding: 15px;
    background: #ffffff;
    border-radius: 100px;
    margin-bottom: 20px;
}

.single .single-bio-img img {
    max-width: 100%;
    height: auto;
    width: 100%;
    border-radius: 100px;
}

.single .single-bio-text {
    text-align: center;
}

.single .single-bio-text h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.single .single-bio-text p {
    color: #ffffff;
    margin: 0;
}

.single .single-bio-social {
    margin-top: 20px;
    display: flex;
}

.single .single-bio-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #202C45;
    background: #ffffff;
    border-radius: 40px;
    margin-right: 5px;
    transition: .5s;
}

.single .single-bio-social a:last-child {
    margin: 0;
}

.single .single-bio-social a:hover {
    color: #ffffff;
    background: #E81C2E;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
    border-radius: 5px;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 17px;
    font-weight: 500;
}

.single .post-item .post-text a:hover {
    color: #E81C2E;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    color: #777777;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #202C45;
    border-radius: 5px;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #E81C2E;
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
    border-radius: 60px;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #202C45;
    background: #dddddd;
    border-radius: 5px;
}

.single .comment-text .btn:hover {
    color: #ffffff;
    background: #E81C2E;
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
    border-radius: 5px;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 5px;
    border-color: #eeeeee;
}

.single .comment-form input:focus,
.single .comment-form textarea:focus {
    border-color: #E81C2E;
}

.single .comment-form .btn {
    border-radius: 45px;
}


/**********************************/


/*********** Sidebar CSS **********/


/**********************************/

.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 25px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #E81C2E;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
    border-color: #E81C2E;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #202C45;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #E81C2E;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills {
    border-radius: 5px;
    overflow: hidden;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #ffffff;
    background: #202C45;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: #E81C2E;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px;
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0;
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
    font-weight: 500;
    letter-spacing: 1px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #E81C2E;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #202C45;
    border: 1px solid #202C45;
    border-radius: 5px;
}

.single .tag-widget a:hover {
    color: #ffffff;
    background: #E81C2E;
    border-color: #E81C2E;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    border-radius: 5px;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/


/********* Footer CSS **********/


/*******************************/

.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 15px;
    background: #202C45;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: -45px;
    color: #ffffff;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #E81C2E;
}

.footer .footer-link a {
    display: block;
    margin-bottom: -6px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #E81C2E;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
    display: flex;
}

.footer .footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #202C45;
    background: #ffffff;
    border-radius: 40px;
    margin-right: 5px;
    transition: .5s;
}

.footer .footer-social a:last-child {
    margin: 0;
}

.footer .footer-social a:hover {
    color: #ffffff;
    background: #E81C2E;
}

.footer .footer-newsletter form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    margin-bottom: 15px;
    height: 45px;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 5px;
}

.footer .footer-newsletter label {
    margin-top: 5px;
    color: #777777;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer .footer-newsletter .btn.btn-custom {
    width: 100%;
    color: #202C45;
    background: #ffffff;
    box-shadow: inset 0 0 0 0 #E81C2E;
}

.footer .footer-newsletter .btn:hover {
    color: #ffffff;
    background: #E81C2E;
    box-shadow: inset 200px 0 0 0 #E81C2E;
}

.footer .copyright {
    text-align: center;
    padding-top: 56px;
    padding-bottom: 45px;
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright p a {
    color: #E81C2E;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

.ytp-cued-thumbnail-overlay-image {
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
}

.album {
    background: #eee;
    height: 100vh;
    padding: 20px;
    line-height: 0;
    width: 66vw;
    left: 50%;
}

.card {
    cursor: pointer;
    width: 300px;
    background: #fff;
    box-shadow: 1px 1px 10px -8px #333;
    padding: 10px;
    display: inline-block;
    margin: 10px;
}

.image img {
    width: 100%;
}

.caption {
    margin-top: 10px;
    text-align: right;
    color: #888;
    font-style: italic;
    font-size: 12px;
    line-height: 20px;
}

.aside .image {
    width: 100%;
}

.album .comments {
    display: none;
}

.comment {
    background: #333;
    padding: 20px;
    color: #fff;
    margin: 20px 10px 30px 0;
    width: calc(100% - 120px);
    position: relative;
}

.comment::after {
    content: '';
    position: absolute;
    right: -10px;
    border-left: 20px solid transparent;
    border-right: 20px solid #333;
    border-top: 20px solid transparent;
    transform: rotate(315deg);
    top: calc(50% - 5px);
}

.comment .user {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    border: 2px solid #fff;
    overflow: hidden;
    right: -90px;
    top: 50%;
    transform: translateY(-50%);
}

.comment .user img {
    width: 100%;
}



/****contact style*/

.vc_col-has-fill>.vc_column-inner,
.vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner,
.vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner,
.vc_row-has-fill>.vc_column_container>.vc_column-inner {
    padding-top: 35 px;
}

.vc_column_container>.vc_column-inner {
    box-sizing: border-box;
    padding-left: 15 px;
    padding-right: 15 px;
    width: 100%;
}

.vc_col-has-fill>.vc_column-inner,
.vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner,
.vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner,
.vc_row-has-fill>.vc_column_container>.vc_column-inner {
    padding-top: 35 px;
}

.vc_column_container>.vc_column-inner {
    box-sizing: border-box;
    padding-left: 15 px;
    padding-right: 15 px;
    width: 100%;
}

.wpb_single_image.vc_align_center {
    text-align: center;
}

.wpb_wrapper>div {
    margin-bottom: 35 px;
}

.wpb_single_image .vc_figure {
    display: inline-block;
    vertical-align: top;
    margin: 0;
    max-width: 100%;
    left: 283px;
    position: relative;
    top: -21px;
}

.wpb_single_image .vc_single_image-wrapper.vc_box_border_circle,
.wpb_single_image .vc_single_image-wrapper.vc_box_circle,
.wpb_single_image .vc_single_image-wrapper.vc_box_outline_circle,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle {
    border-radius: 40%;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: hidden;
}

.wpb_wrapper>div {
    margin-bottom: 35 px;
}

.wpb_single_image .vc_single_image-wrapper.vc_box_border_circle img,
.wpb_single_image .vc_single_image-wrapper.vc_box_circle img,
.wpb_single_image .vc_single_image-wrapper.vc_box_outline_circle img,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle img,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle img {
    border-radius: 40%;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: hidden;
}

.wpb_single_image img {
    height: auto;
    max-width: 100%;
    vertical-align: top;
}

.wpb_single_image.vc_align_center {
    text-align: center;
}


/****/

.carousel-text::after {
    clear: both;
}

.carousel-text {
    animation: pop 0.25s ease-in-out;
    -webkit-animation: pop 1s ease;
}

@keyframes pop {
    50% {
        transform: scale(1);
    }
}


/****/

:root {
    --circle-size: clamp(1.5rem, 5vw, 3rem);
    --spacing: clamp(0.25rem, 2vw, 0.5rem);
}

.c-stepper {
    display: flex;
}

.c-stepper__item {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.c-stepper__item:before {
    --size: 3rem;
    content: "";
    display: block;
    width: var(--circle-size);
    height: var(--circle-size);
    border-radius: 50%;
    background-color: lightgrey;
    background-color: red;
    opacity: 0.5;
    margin: 0 auto 1rem;
}

.c-stepper__item:not(:last-child):after {
    content: "";
    position: relative;
    top: calc(var(--circle-size) / 2);
    width: calc(100% - var(--circle-size) - calc(var(--spacing) * 2));
    left: calc(50% + calc(var(--circle-size) / 2 + var(--spacing)));
    height: 2px;
    background-color: #e0e0e0;
    order: -1;
}

.c-stepper__title {
    font-weight: bold;
    font-size: clamp(1rem, 4vw, 1.25rem);
    margin-bottom: 0.5rem;
}

.c-stepper__desc {
    color: grey;
    font-size: clamp(0.85rem, 2vw, 1rem);
    padding-left: var(--spacing);
    padding-right: var(--spacing);
}


/*** Non-demo CSS ***/

.wrapper {
    max-width: 1000px;
    margin: 2rem auto 0;
}


/****/

.step {
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    background-color: cream;
}

.v-stepper {
    position: relative;
    /*   visibility: visible; */
}


/* regular step */

.step .circle {
    background-color: white;
    border: 3px solid gray;
    border-radius: 100%;
    width: 20px;
    /* +6 for border */
    height: 20px;
    display: inline-block;
}

.step .line {
    top: 23px;
    left: 12px;
    /*   height: 120px; */
    height: 100%;
    position: absolute;
    border-left: 3px solid gray;
}

.step.completed .circle {
    visibility: visible;
    background-color: rgb(6, 150, 215);
    border-color: rgb(6, 150, 215);
}

.step.completed .line {
    border-left: 3px solid rgb(6, 150, 215);
}

.step.active .circle {
    visibility: visible;
    border-color: rgb(6, 150, 215);
}

.step.empty .circle {
    visibility: hidden;
}

.step.empty .line {
    /*     visibility: hidden; */
    /*   height: 150%; */
    top: 0;
    height: 150%;
}

.step:last-child .line {
    border-left: 3px solid white;
    z-index: -1;
    /* behind the circle to completely hide */
}

.content {
    margin-left: 20px;
    margin-top: 72px;
    display: inline-block;
}


/*ddd*/

header .item {
    height: 100vh;
    position: relative;
}

header .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header .item .cover {
    padding: 75px 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background: rgb(170 153 153 / 31%); */
    display: flex;
    align-items: center;
}

.owl-prev {
    width: 15px;
    height: 100px;
    position: absolute;
    top: 40%;
    /* margin-left: -6px; */
    display: block !important;
    border: 0px solid black;
    content: '';
}

.owl-next {
    width: 15px;
    height: 100px;
    position: absolute;
    top: 40%;
    right: -4px;
    display: block !important;
    border: 0px solid black;
    content: '';
    clear: both;
}

.owl-prev i,
.owl-next i {
    transform: scale(1, 6);
    color: black;
}

header .item .cover .header-content {
    position: relative;
    padding: 56px;
    overflow: hidden;
}

header .item .cover .header-content .line {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    border: 9px solid #fff;
    -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
    clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}

header .item .cover .header-content h2 {
    font-weight: 300;
    font-size: 35px;
    color: #fff;
}

header .item .cover .header-content h1 {
    font-size: 56px;
    font-weight: 600;
    margin: 5px 0 20px;
    word-spacing: 3px;
    color: #fff;
}

header .item .cover .header-content h4 {
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
    color: #fff;
}

header .owl-item.active h1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

header .owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

header .owl-item.active h4 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}

header .owl-item.active .line {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
}

header .owl-nav .owl-prev {
    width: 63px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    /* border-radius: 50px; */
    background: rgba(256, 256, 256, .2);
    font-size: 22px;
}

header .owl-nav .owl-prev span {
    font-size: 1.6875rem;
    color: #fff;
}

header .owl-nav .owl-prev:focus {
    outline: 0;
}


/* header .owl-nav .owl-prev:hover {
    background: #000 !important;
} */

header .owl-nav .owl-next {
    width: 63px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    /* border-radius: 50px; */
    background: rgba(256, 256, 256, .2);
    font-size: 22px;
}

header .owl-nav .owl-next span {
    font-size: 1.6875rem;
    color: #fff;
}

header .owl-nav .owl-next:focus {
    outline: 0;
}


header:hover .owl-prev {
    left: 0px;
    opacity: 1;
}

header:hover .owl-next {
    right: 0px;
    opacity: 1;
}


/* testimonial
*/

.home-testimonial {
    background-color: #231834;
    height: 380px
}

.home-testimonial-bottom {
    background-color: #f8f8f8;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: 20px;
    margin-bottom: 0px;
    position: relative;
    height: 130px;
    top: 190px
}

.home-testimonial h3 {
    color: var(--orange);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase
}

.home-testimonial h2 {
    color: white;
    font-size: 28px;
    font-weight: 700
}

.testimonial-inner {
    position: relative;
    top: -174px
}

.testimonial-pos {
    position: relative;
    top: 24px
}

.testimonial-inner .tour-desc {
    border-radius: 5px;
    padding: 39px
}

.color-grey-3 {
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    color: #6c83a2
}

.testimonial-inner img.tm-people {
    width: 60px;
    height: 60px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none
}

.link-name {
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    color: #6c83a2
}

.link-position {
    font-family: "Montserrat", Sans-serif;
    font-size: 12px;
    color: #6c83a2
}


/* caroussel next and prev*/

.owl-prev,
.owl-next {
    width: 15px;
    height: 50px;
    position: absolute;
    top: 50%;
    /* transform: translateY(-50%); */
    display: block !important;
    border: 0px solid black;
}

.owl-prev {
    left: -20px;
}

.owl-next {
    right: -20px;
}

.owl-prev i,
.owl-next i {
    transform: scale(2, 3);
    /* color : #ccc; */
    right: 29px;
    position: absolute;
    top: 16px;
}


/**/

.oui.negociation,
.oui.starter,
.oui.medium,
.oui.f-premium {
    left: 38px;
    position: relative;
}


/**/

.number {
    align-items: center;
    text-align: center;
    align-content: center;
    width: 60%;
    padding-bottom: 21px;
    padding-top: 20px;
    transform: translateZ(0);
    transition: transform 2s cubic-bezier(.85, 0, .12, 1);
    animation: fadein 4s;
    -moz-animation: fadein 4s;
    -webkit-animation: fadein 4s;
    -o-animation: fadein 4s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/**/
.about .content {
    position: relative;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    transform: translateX(-50%);
}

.about .content .li {
    display: flex;
    text-align: center;
    position: relative;
    left: 20%;
    width: 50%;
}

/**/
.p1 {
    font-size: 22px;
}

@media (min-width: 1200px) {
    #videoAbout {
        width: 80%;
        margin-left: 79px;
        /* left: -8px; */
        position: relative;
    }
}

@media (min-width: 1200px) {
    #sendMessageButton {

        left: 150px;
        position: relative;
    }
}
@media (min-width: 1920px) {
    .wpb_single_image.wpb_content_element.vc_align_center {
        right: 0% !important;
    }
}

@media (min-width: 1200px) {
    .wpb_column.vc_column_container.vc_col-sm-10 {
        left: 15% !important;
        position: relative !important;
    }
}

@media (min-width: 1600px) {
    #videoAbout {
        width: 80%;
        /* margin-left: 79px; */
        left: 182px;
        position: relative;
    }
}

/* input:required {
    border: 1px dashed red;
  } */
.required:after {
    content: " *";
    color: red;
}



/* Responsive design */
/* For Desktop View */
@media screen and (width: 1920px) {
    .wpb_single_image.wpb_content_element.vc_align_center {
        right: 0% !important;
    }

}

@media screen and (min-width: 1024px) {

    .wpb_single_image .vc_figure {
        display: inline-block;
        vertical-align: top;
        margin: 0;
        max-width: 100%;
        left: 292px;
        position: relative;
        top: -21px;
    }
    .container-wrap,
.project-title {
    background-color: #f8f8f8;
    position: relative;
    z-index: 10;
    width: 85%;
    margin-left: 114px;
    position: relative;
    padding-top: 45px;
    padding-bottom: 40px;
}
    #since{
        font-size: 15px;
        color: red;
        position: relative;
        right: -293px;
        float: left;
        top: 32px;
        z-index: 120;
    }
    .nav-bar .footer-social {
        right: 136px;
        position: absolute;
        top: 17px;
    }

    .team-equipe .team-member {
        display: flex !important;
        position: relative !important;
        left: 20% !important;
        width: 56%;
    }
    .wpb_single_image.wpb_content_element.vc_align_center {
        /* right: 12% !important; */
        position: relative;
    }
    .wpb_text_column.wpb_content_element .wpb_wrapper h1 {
        font-size: xx-large;
    }
 
.team .container   .row{
    left: 5% !important;
    position: relative;
    width: 107%;
}
    .page-header-about,
    .page-header-deroulement {
        background-image: url("../img/header-about.jpg");
        height: 498px;
    }

    .page-header-import {
        background-image: url("../img/header-import.jpg");
        height: 498px;
    }

    .page-header-service {
        background-image: url("../img/header-service.jpg");
        height: 498px;
    }
    #instafeed {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        max-width: max-content;
        margin: auto;
    }

    #instafeed a {
        display: block;
    }

    #instafeed img {
        display: block;
        width: 100%;
        background-size: cover;
    }
    #text-team-desc{
        left: 20%;
           }
}

/* For Tablet View */

@media only screen and (min-width: 768px) and (max-width: 1024px) {
   
    #instafeed {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        max-width: max-content;
        margin: auto;
    }

    #instafeed a {
        display: block;
    }

    #instafeed img {
        display: block;
        width: 100%;
        background-size: cover;
    }
    .nav-bar .btn {
        display: none;
    }

    .nav-bar .footer-social {
        left: 84% !important;
        margin: 11px;
        top: 10px;
        position: absolute;
    }

    .page-header-about,
    .page-header-deroulement {
        background-image: url("../img/header-about.jpg");
        height: 498px;
    }

    .page-header-import {
        background-image: url("../img/header-import.jpg");
        height: 498px;
    }

    .page-header-service {
        background-image: url("../img/header-service.jpg");
        height: 498px;
    }

    #marwen {
        position: relative;
        margin-bottom: 30px;
        /* width: 40%; */
        display: block;
        /* left: 30%; */

    }

    .team-equipe .team-member {
        display: flex;
        position: relative;
        left: 15%;

    }

    .team .row {
        display: block;
        position: relative;
        left: 25%;
    }



    .about .row.align-items-center {
        right: 20% !important;
        position: relative !important;
    }

    body {
        width: 100%;
        padding: 0;
        overflow-x: hidden;
    }

    .footer .footer-contact {
        position: relative;
        margin-bottom: -2px !important;
        color: #ffffff;
    }

    #marwen {
        position: relative;
        margin-bottom: 30px;
        /* width: 40%; */
        display: block;
        /* left: 30%; */

    }

    .team-equipe .team-member {
        display: flex !important;
        position: relative !important;
        left: 20% !important;
    }

    .container {
        width: 100%;
        overflow-x: hidden;
    }

     
        #since{
            font-size: 15px;
            color: red;
            position: relative;
             float: left;
            top: 32px;
            z-index: 120;
            right: -299px !important;
        }
        
   

    .top-bar .logo img {
        text-align: center;

        height: 89px;
        max-width: 100%;
        height: auto;

    }

    .top-bar .top-bar-icon {
        display: none;

    }

    .col-lg-8.col-md-7.d-none.d-lg-block {
        top: -4px !important;
        left: 2% !important;
    }

    .top-bar .logo h1 {
        text-align: center;
        left: 28px;
        font-size: xx-large !important;
    }

    .footer {
        text-align: center;
        /* left: 48px; */
        margin-top: 753px;
        /* padding-top: 147px; */
        left: 0px;
    }

    .footer .footer-social {
        left: 139px;
        margin-bottom: 4px;
    }

  
    .home-testimonial-bottom {
        left: 0px;
    }

    .page-header-about h2 {
        font-size: 25px;
        top: -70px;
        left: -58px;
        position: relative;
        color: white;
    }

    .container_contact form {
        display: grid !important;
    }

    .container_contact form #sendMessageButton {
        position: relative;
        bottom: -1315px;
        left: 184px;
    }

    .container_contact form .float-child {
        position: relative;
        width: 100%;
        left: 8px;
    }

    .wpb_wrapper h1 {
        font-size: 24px !important;
        left: 20px;
        position: relative;
        top: 41px;
    }

    .wpb_single_image .vc_figure {
        display: inline-block;
        vertical-align: top;
        margin: 0;
        max-width: 182px;
        left: 1px;
        position: relative;
        top: -21px;
    }

    .garantie h5 {
        font-size: 18px !important;
        left: -2px;
        position: relative;
        top: 16px;
    }

    .container-wrap {
        font-size: x-small;
        width: 100%;
        left: 0%;

    }

    .team-item {
        left: 16px !important;
        width: 306px !important;
    }

    .team .row {
        display: block;
        position: relative;
        left: 35% !important;
    }

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 1152px;
    }

}

/* For Mobile  View */
@media screen and (min-width:750px) and (max-width:990px) {
    .top-bar .logo img {
        left: -40%;
    }
    img.aligncenter.wp-image-432.size-medium {
        max-width: 300px;
        right: 32px;
        /* width: 40%; */
        position: relative;
    }
    #instafeed {
        max-width: 90% !important;
        position: relative;
        /* left: -58px; */
        margin: 13px;
        padding: 0px;
        width: 80%;
     }

     #instafeed a {
         display: block;
     }

     #instafeed img {
         display: block;
 width: 140% !important;
 background-size: cover;
 margin: 11px;
 padding-left: 43px;
     }
    .top-bar .logo {
        left: 25% !important;
        position: relative;
    }
}

@media screen and (min-width:1025px) and (max-width:1200px) {
    .nav-bar .footer-social {
        right: -39px;
        position: absolute;
    }

    .nav-bar .btn {
        display: none;
    }
     
/* 
    .top-bar .logo span {
        
    } 
    */
    #since{
        font-size: 15px;
        color: red;
        position: relative;
        right: -206px !important;
        float: left;
        top: 32px;
        z-index: 120;
    }
    .top-bar .logo img {
        text-align: center;
        left: 0px;
        height: 89px;
        max-width: 100%;
        height: auto;

    }

    .top-bar .top-bar-icon {
        display: none;

    }

    .col-lg-8.col-md-7.d-none.d-lg-block {
        top: -4px !important;
        left: 2% !important;
    }

    .top-bar .logo h1 {
        text-align: center;
        left: 28px;
        font-size: xx-large !important;
    }
}

@media screen and (max-width:850px) {

    /* For tablets: */
    body {
        width: 100%;
        padding: 0;
        overflow-x: hidden;
    }
    img.aligncenter.wp-image-432.size-medium {
        max-width: 300px;
        right: 32px;
        /* width: 40%; */
        position: relative;
    }
    #marwen {
        position: relative;
        margin-bottom: 30px;
        /* width: 40%; */
        display: block;
        /* left: 30%; */

    }

    .nav-bar .btn {
        display: none;
    }

    .nav-bar .footer-social {
        left: 60% !important;
        margin: 2px;
        top: 43px;
        position: absolute;
    }

    .team-equipe .team-member {
        display: flex !important;
        position: relative !important;
        left: 2% !important;

    }

    .container {
        width: 100%;
        overflow-x: hidden;
    }

    .top-bar .logo img {
        text-align: center;
        left: -172px;
        height: 89px;

    }

    .top-bar .logo h1 {
        text-align: center;
        left: 48px;
        font-size: larger !important;
    }

    .nav-bar .btn {
        display: table-cell;
    }

    .footer {
        text-align: center;
        /* left: 48px; */
        margin-top: 753px;
        /* padding-top: 147px; */
        left: 0px;
    }

    .footer .row {
        /* left: 25% !important; */
        position: relative !important;
    }

    .about .row.align-items-center {
        right: 22% !important;
        position: relative !important;
    }

    .footer .footer-contact {
        position: relative;
        margin-bottom: -2px !important;
        color: #ffffff;
        left: 50%;
    }

    .footer .footer-link {
        visibility: hidden;
    }

    .footer .footer-social {
        left: 90px;
    }

    .home-testimonial-bottom {
        left: 0px;
    }

    img {
        width: fit-content !important;
        height: 248px;
    }

    .page-header-about h2 {
        font-size: 25px;
        top: -70px;
        left: -58px;
        position: relative;
        color: white;
    }

    .container_contact form {
        display: grid !important;
    }

    .container_contact form #sendMessageButton {
        position: relative;
        bottom: -1315px;
        left: 184px;
    }

    .container_contact form .float-child {
        position: relative;
        width: 100%;
        left: 8px;
    }

    .wpb_wrapper h1 {
        font-size: 24px !important;
        left: 20px;
        position: relative;
        top: 41px;
    }

    .wpb_single_image .vc_figure {
        display: inline-block;
        vertical-align: top;
        margin: 0;
        max-width: 182px;
        left: 1px;
        position: relative;
        top: -21px;
    }

    .garantie h5 {
        font-size: 18px !important;
        left: -2px;
        position: relative;
        top: 16px;
    }

    .container-wrap {
        font-size: x-small;
        width: 100%;
        left: 0%;

    }

    .team-item {
        left: 16px !important;
        width: 306px !important;
    }

    .team .row {
        display: block;
        position: relative;
        left: 10%;
    }

    .home-testimonial h2 {
        font-size: 26px !important;
    }

    .page-header-about {
        background-image: url("../img/header-about-small.jpg") !important;
        height: 6px !important;
        padding-bottom: 36px;
    }

    .page-header-import {
        background-image: url("../img/header-import-small.jpg") !important;
        height: 128px !important;
        padding-bottom: 36px;
    }

    .page-header-deroulement {
        background-image: url("../img/header-about-small.jpg") !important;
        height: 127px !important;
        padding-bottom: 36px;
    }

    .page-header-service {
        background-image: url("../img/header-service-small.jpg") !important;
        height: 127px !important;
        padding-bottom: 36px;
    }


    .page-header-about h2 {
        font-size: 25px;
        top: -70px;
        left: -58px;
        position: relative;
        color: white;
    }

    .page-header-deroulement h2 {
        font-size: 25px;
        top: 5px;
        left: 7px;
        position: relative;
        color: white;
    }

    .page-header-import h2 {
        font-size: 25px;
        top: 7px;
        left: 5px;
        position: relative;
        color: white;
    }

    .page-header-service h2 {
        font-size: 25px;
        top: 7px;
        left: 5px;
        position: relative;
        color: white;
    }


}

@media screen and (max-width:420px) {

    /* For tablets: */
    body {
        width: 100%;
        padding: 0;
        overflow-x: hidden;
    }

    img.aligncenter.wp-image-432.size-medium {
        max-width: 300px;
        right: 32px;
        /* width: 40%; */
        position: relative;
    }
    #marwen {
        position: relative;
        margin-bottom: 30px;
        /* width: 40%; */
        display: block;
        /* left: 30%; */

    }

    .nav-bar .btn {
        display: none;
    }

    .nav-bar .footer-social {
        left: 60% !important;
        margin: 2px;
        top: 43px;
        position: absolute;
    }

    .team-equipe .team-member {
        display: block !important;
    position: relative !important;
    left: 15% !important;
    width: 70%;

    }


    .container {
        width: 100%;
        overflow-x: hidden;
    }

    .top-bar .logo img {
        text-align: center;
        left: -106px;
        height: 70px;
    }

    /* .top-bar .logo span {
        right: -206px !important;
    } */
    #since{
        font-size: 15px;
        color: red;
        position: relative;
        right: -206px !important;
        float: left;
        top: 32px;
        z-index: 120;
    }
    .top-bar .logo h1 {
        text-align: center;
        left: 48px;
        font-size: 95% !important;
    }

    .nav-bar .btn {
        display: table-cell;
    }

    .footer {
        text-align: center;
        /* left: 48px; */
        margin-top: 753px;
        /* padding-top: 147px; */
        left: 0px;
    }

    .footer .row {
        /* left: 25% !important; */
        position: relative !important;
    }

    .about .row.align-items-center {
        right: 2% !important;
        position: relative !important;
    }

    .footer .footer-contact {
        position: relative;
        margin-bottom: -2px !important;
        color: #ffffff;
        left: 0% !important;
    }

    .footer .footer-link {
        visibility: hidden;
    }

    .footer .footer-social {
        left: 90px;
    }

    .home-testimonial-bottom {
        left: 0px;
    }

    img {
        width: fit-content !important;
        height: 248px;
    }

    .page-header-about h2 {
        font-size: 25px;
        top: -70px;
        left: -58px;
        position: relative;
        color: white;
    }

    .container_contact form {
        display: grid !important;
    }

    .container_contact form #sendMessageButton {
        position: relative;
        bottom: -1315px;
        left: 184px;
    }

    .container_contact form .float-child {
        position: relative;
        width: 70%;
        left: 8px;
    }

    .wpb_wrapper h1 {
        font-size: 14px !important;
        left: 2px;
        position: relative;
        top: 13px;
    }

    .wpb_single_image .vc_figure {
        display: inline-block;
        vertical-align: top;
        margin: 0;
        max-width: 130px;
        left: 1px;
        position: relative;
        top: -21px;
    }

    .garantie h5 {
        font-size: 10px !important;
        left: -2px;
        position: relative;
        top: 24px;
    }

    .container-wrap {
        font-size: x-small;
        width: 100%;
        left: 0%;

    }
#siege  {
        
        /* font-size: x-small; */
width: 70%;
   
}
    .team-item {
        left: 16px !important;
        width: 306px !important;
    }
h1,h2,h3,h4,h5,p{
    font-size: 66% !important;
}
    .team .row {
        display: block;
        position: relative;
        left: 0%;
    }
    #instafeed {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        max-width: max-content;
        margin: auto;
        width: 80%;
    }
    input, input[type="radio"]+label, input[type="checkbox"]+label:before, select option, select , textarea {
        width: 70% !important;
    }
    .container_contact {
        left: -16%;
    position: relative;
    }
    .home-testimonial h2 {
        font-size: 26px !important;
    }

    .page-header-about {
        background-image: url("../img/header-about-small.jpg") !important;
        height: 6px !important;
        padding-bottom: 36px;
    }

    .page-header-import {
        background-image: url("../img/header-import-small.jpg") !important;
        height: 128px !important;
        padding-bottom: 36px;
    }

    .page-header-deroulement {
        background-image: url("../img/header-about-small.jpg") !important;
        height: 127px !important;
        padding-bottom: 36px;
    }

    .page-header-service {
        background-image: url("../img/header-service-small.jpg") !important;
        height: 127px !important;
        padding-bottom: 36px;
    }


    .page-header-about h2 {
        font-size: 25px;
        top: -70px;
        left: -58px;
        position: relative;
        color: white;
    }

    .page-header-deroulement h2 {
        font-size: 25px;
        top: 5px;
        left: 7px;
        position: relative;
        color: white;
    }

    .page-header-import h2 {
        font-size: 25px;
        top: 7px;
        left: 5px;
        position: relative;
        color: white;
    }

    .page-header-service h2 {
        font-size: 25px;
        top: 7px;
        left: 5px;
        position: relative;
        color: white;
    }


}

.page-header-service .container .row .col-12 h2,.page-header .container .row .col-12 h2,.page-header-about .container .row .col-lg-6 h2,.page-header-import .container .row .col-12 h2,.page-header-deroulement .container .row .col-lg-6 h2 {
    color: #f3f4f7;
    position: relative;
    top: 30vh;
}


@media (min-device-height: 667px) and (min-device-width: 375px) and (-webkit-min-device-pixel-ratio: 3) {}
/* .top-bar .logo span {
    right: -298px !important;
} */
 
#tarifs th, #tarifs td {
    color: black;
}
#mail-contact{
    color: white;
}
/* Service table  */
tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
  tbody td {
    position: relative;
  }
  tbody td:hover:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top:-450px;
    bottom: -450px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
  }
  th,
td {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
th {
  text-align: left;
}
thead th {
  background-color: #55608f;
}
table {
    width: 800px;
    border-collapse: collapse;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  .col-lg-3.col-md-1 + .col-lg-3.col-md-1 {
    margin-left: 10px;
}  
.wpb_single_image .vc_figure + .wpb_column.vc_column_container.vc_col-sm-10  {
    margin-left: 10px;
}