/**
 * WEBSITE: https://themefisher.com
 * TWITTER: https://twitter.com/themefisher
 * FACEBOOK: https://facebook.com/themefisher
 * GITHUB: https://github.com/themefisher/
 */

/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Bexer | Business HTML5 Template
VERSION:	1.0.0
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]

1. BASE

  1.1. colors and Typography
  1.2. Buttons
  1.3. Common Styles

    1.3.1. Preloader
    1.3.2. Section
    1.3.3. Background Image
    1.3.4. Overlay
    1.3.5. Common Class
    1.3.6. Icon Animation
    1.3.7. Breadcrumb
    1.3.8. Google Map
    1.3.9. Form Control
    1.3.10. Social Icon
    1.3.11. Slick Slider

2. NAVBAR

3. BANNER SLIDER

4. HOMEPAGE

  4.1. Banner Feature / Service Item
  4.2. About Section
  4.3. Funfacts Section
  4.4. Feature Section
  4.5. Service Section
  4.6. Team Section
  4.7. Project Section
  4.8. Testimonial Section

5. CLIENTS LOGO

6. TEAM

7. CALL TO ACTION

8. PRICING

9. BLOG

10. FOOTER STYLES

-------------------------------------------------------------------*/
/*  variable colors */
:root{
    --primary-color: #ae002b;
    --secondary-color: #d30025;
    --text-color: #818385;
    --text-color-dark: #172231;
    --text-dark: #172231;
    --body-color: #fff;
    --border-color: #e7e7e7;
    --black: #000;
    --white: #fff;
    --gray: #f3f5fa;
    --gold: #ab8039;
    --green:#8cb62c;
    --gray-2:#c6cbd3;
    --gray-3:#666668;
    --gray-footer:#262628;
    --blue-cseei:#4561a8;
    --blue-cseei-light:#5D77B2;
    --violet-orly: #cc66ff;
    --violet-villeneuve: #aa1e97;
    --red-roissy:#c60f14;
    --green-horslesmurs:#91b434;
    /*couleurs opacifiee*/
    --primary-color-op05:rgba(174, 0, 43, 0.05);
    --primary-color-op20:rgb(241, 209, 215);
    --primary-color-op30:rgba(174, 0, 43, 0.3);
    --primary-color-op50:rgba(174, 0, 43, 0.5);
    --primary-color-op90:rgba(174, 0, 43, 0.9);
    --spin-border-color: rgba(174, 0, 43, 0.75) rgba(174, 0, 43, 0.75) rgba(174, 0, 43, 0.25) rgba(174, 0, 43, 0.25);
    --dark-blue-color-op10: rgba(8, 18, 109, 0.1);
    --dark-blue2-color-op12 : rgba(51, 77, 128, 0.12);
    --white-op10:rgba(255, 255, 255, 0.1);
    --white-op20:rgba(255, 255, 255, 0.2);
    --white-op60 : rgba(255, 255, 255, 0.6);
    --black-op09: rgba(0, 0, 0, 0.09);
    --black-op12: rgba(0, 0, 0, 0.12);
    --top-bar-primary :rgb(228, 121, 130);
    --top-bar-primary-op30 : rgb(248, 221, 223);
}



/*  typography */
@import url("https://fonts.googleapis.com/css?family=Barlow+Condensed:300,400,500,600,700|Open+Sans:300,400,600,700");
body {
    line-height: 1.6;
    font-family: "Open Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    color: var(--text-color);
}

p, .paragraph {
    font-weight: 400;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    font-family: "Open Sans", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-color-dark);
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
    transition: 0.2s ease;
}

h1, .h1 {
    font-size: 70px;
}

h2, .h2 {
    font-size: 48px;
}

h3, .h3 {
    font-size: 44px;
}

h4, .h4, .subtitle {
    font-size: 22px;
}

h5, .h5 {
    font-size: 18px;
}

h6, .h6 {
    font-size: 16px;
}
.text-left{
	text-align:left;
}
.text-right{
	text-align:right;
}
.text-center{
	text-align:center;
}
/* /typography */
/* Button style */
.btn {
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    padding: 15.5px 28px;
    border-radius: 35px;
    font-weight: 700;
    border: 1px solid;
    position: relative;
    z-index: 1;
    transition: 0.3s ease-in;
    white-space: nowrap;
}
.btn:hover, .btn.btn-primary.hover-ripple:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}
.btn:focus {
    outline: 0;
    box-shadow: none !important;
}
.btn:active {
    box-shadow: none;
}

.btn-lg {
    font-size: 20px;
    padding: 19px 35px;
}

.btn-md {
    font-size: 18px;
    padding: 17px 30px;
}

.btn-sm {
    font-size: 12px;
    padding: 5px 20px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}
.btn-primary:active {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color);
}
.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    color: var(--white);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.btn-blue{
	background:var(--blue-cseei);
	color: var(--white);
	border-color: var(--blue-cseei);
}
.btn-blue:active {
    background: var(--blue-cseei-light) !important;
    border-color: var(--blue-cseei-light);
}
.btn-blue:hover {
    background: var(--blue-cseei-light);
    border-color: var(--blue-cseei-light);
}

.btn-blue:not(:disabled):not(.disabled).active,
.btn-blue:not(:disabled):not(.disabled):active,
.show > .btn-blue.dropdown-toggle {
    color: var(--white);
    background-color: var(--blue-cseei-light);
    border-color: var(--blue-cseei-light);
}
.btn-gray {
    background: var(--gray);
    color: var(--text-color-dark);
    border-color: var(--gray);
}
.btn-gray:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color);
    color: var(--white);
}
.btn-gray:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    color: var(--white);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color-dark);
    padding-left: 0;
    border: 0;
}
.btn-secondary:active {
    background: transparent !important;
    color: var(--primary-color);
}
.btn-secondary:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
    color: var(--primary-color);
    background-color: transparent;
    border: 0;
}

.btn-primary-outline {
    background: transparent;
    color: var(--text-color-dark);
    border: 2px solid var(--text-color-dark);
}
.btn-primary-outline:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color);
    color: var(--white);
}
.btn-primary-outline:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--text-color-dark);
    border-color: var(—border-color);
}
.btn-light:active {
    background: transparent !important;
    border-color: var(--white);
    color: var(--white);
}
.btn-light:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-light-alt:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color);
    color: var(--white);
}
.btn-light-alt:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-light-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-light-outline:active {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color);
    color: var(--white);
}
.btn-light-outline:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.btn-arrow {
    transition: 0.2s ease;
}
.btn-arrow::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: transparent;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    left: calc(85% + 5px);
    transition: 0.2s ease;
}
.btn-arrow::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--black);
    transition: 0.2s ease;
    left: 85%;
}
.btn-arrow:hover::before {
    left: calc(85% + 10px);
    border-color: var(--primary-color);
}
.btn-arrow:hover::after {
    width: 20px;
    background: var(--primary-color);
}

/* hover effect */
.hover-ripple {
    transition: 0.2s ease-in;
}
.hover-ripple:hover {
    transform: scale(0.97);
}
.hover-ripple:hover::after {
    animation: sonarEffect 1s ease-out 50ms;
}
.hover-ripple::after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    opacity: 0;
    transform: scale(0.9);
    border-radius: inherit;
}
.hover-ripple.ripple-white:hover::after {
    animation: sonarEffectWhite 1s ease-out 50ms;
}

@keyframes sonarEffect {
    0% {
        opacity: 0.1;
    }
    40% {
        opacity: 0.3;
        box-shadow: 0 0 0 2px var(--white-op10), 0 0 10px 10px var(--primary-color), 0 0 0 10px var(--white-op20);
    }
    100% {
        box-shadow: 0 0 0 2px var(--white-op10), 0 0 10px 10px var(--primary-color), 0 0 0 10px var(--white-op20);
        transform: scale(1.2);
        opacity: 0;
    }
}
@keyframes sonarEffectWhite {
    0% {
        opacity: 0.1;
    }
    40% {
        opacity: 0.3;
        box-shadow: 0 0 0 2px var(--white-op10), 0 0 10px 10px var(--white), 0 0 0 10px var(--white-op20);
    }
    100% {
        box-shadow: 0 0 0 2px var(--white-op10), 0 0 10px 10px var(--white), 0 0 0 10px var(--white-op20);
        transform: scale(1.2);
        opacity: 0;
    }
}
/* /button style */
body {
    background-color: var(--white);
    overflow-x: hidden;
}

::-moz-selection {
    background: var(--green);
    color: var(--white);
}

::selection {
    background: var(--green);
    color: var(--white);
}

/* preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spin {
    height: 50px;
    width: 50px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--spin-border-color);
    border-radius: 100%;
    animation: clockwise 1s linear infinite;
}

@keyframes clockwise {
    to {
        transform: rotate(360deg) translatez(0);
    }
}
/* /preloader */
ol,
ul {
    list-style-type: none;
    margin: 0px;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a,
button,
select {
    cursor: pointer;
    transition: 0.2s ease;
}
a:focus,
button:focus,
select:focus {
    outline: 0;
}

a:hover {
    color: var(--primary-color);
}

a.text-white:hover,
a.text-light:hover,
a.text-dark:hover {
    color: var(--primary-color) !important;
}
a.simple-a-link{
	color:var(--text-dark);
	text-decoration:underline;
}
a.simple-a-link:hover{
	color:var(--primary-color);
}

/* section */
.section {
    padding-top: 150px;
    padding-bottom: 150px;
}
@media (max-width: 767px) {
    .section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
@media (max-width: 575px) {
    .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
.section-sm {
    padding-top: 70px;
    padding-bottom: 70px;
}
.section-title {
    margin-bottom: 40px;
}
.section-title-border {
    position: relative;
    height: 5px;
    width: 30px;
    background: var(--primary-color);
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
}
.section-title-border::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 50%;
    background: var(--primary-color);
    border-radius: 10px;
    right: -60%;
    top: 0;
}
.section-title-border::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 25%;
    background: var(--primary-color);
    border-radius: 10px;
    right: -100%;
    top: 0;
}
.section-title-border.border-center {
    margin-left: calc(50% - 27px);
}
.section-title-border.border-white {
    background: var(--white);
}
.section-title-border.border-white::before {
    background: var(--white);
}
.section-title-border.border-white::after {
    background: var(--white);
}
.section-title-border.border-inline {
    display: inline-block;
    margin-bottom: 5px;
}
.section-title-border.border-right{
	text-align:right;
}

.subtitle {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    color: var(—-text-color);
}

.section-bottom-lg {
    padding-bottom: 240px;
}

/* /section */
/* background image */
.bg-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg-contain {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg-fixed {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

/* /background image */
/* overlay */
.overlay {
    position: relative;
}
.overlay::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--black);
    opacity: 0.6;
}

.overlay-secondary {
    position: relative;
}
.overlay-secondary::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--gray-footer);
    opacity: 0.85;
}

/* /overlay */
/* common class */
.outline-0 {
    outline: 0 !important;
}

.d-unset {
    display: unset !important;
}

.bg-primary {
    background: var(--primary-color) !important;
}
.bg-primary-op {
	background: var(--top-bar-primary) !important; 
}
.bg-primary-op20 {
	background:var(--primary-color-op20);
}

.bg-secondary {
    background: var(--gray-2) !important;
}

.bg-secondary-darken {
    background: var(--gray-footer) !important;
}

.bg-black {
    background: var(--black) !important;
}

.bg-gray {
    background: var(--gray) !important;
}
.bg-shlm{
	background: var(--green-horslesmurs)!important;
}
.bg-blue{
	background: var(--blue-cseei)!important;
}

.bg-gray-white {
    background-image: linear-gradient(to right, var(--gray) 45%, var(--white) 0%);
}
.bg-primary-white {
    background-image: linear-gradient(to right, var(--primary-color) 45%, var(--white) 0%);
}
.bg-primary-op20-white {
    background-image: linear-gradient(to right, var(--primary-color-op20) 45%, var(--white) 0%);
}
.bg-white-gray {
    background-image: linear-gradient(to right, var(--white) 45%, var(--gray) 0%);
}

.bg-white2-gray {
    background-image: linear-gradient(to right, var(--white) 70%, var(--gray) 0%);
}
.bg-white2-primary {
    background-image: linear-gradient(to right, var(--white) 70%, var(--primary-color) 0%);
}
.bg-white-primary-op20 {
    background-image: linear-gradient(to right, var(--white) 45%, var(--primary-color-op20) 0%);
}

.text-primary, .text-primary a, .text-rouge a {
    color: var(--primary-color) !important;
}

.text-color {
    color: var(--text-color);
}

.text-light, .text-light a {
    color: var(--gray) !important;
}

.text-dark, .text-dark a {
    color: var(--text-color-dark);
}
.text-black, .text-black a{
	color:var(--black);
}


.hilighted {
    background: var(--gray-footer);
    padding: 0 5px;
    border-radius: 2px;
    color: var(--white);
}
.uppercase{
	text-transform:uppercase;
}

.letter-spacing {
    letter-spacing: 2px;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.zindex-1 {
    z-index: 1;
}

.zindex-0 {
    z-index: 0;
}

.overflow-hidden {
    overflow: hidden;
}

.min-height-400 {
    min-height: 400px;
}

.border-color {
    border-color: var(--border-color) !important;
}

.border-muted {
    border-color: var(--gray-footer) !important;
}
.border-primary{
	border-color: var(--primary-color) !important;
}
.border-one{
	border:1px solid;
}
.border-two{
	border:2px solid;
}
.rounded-all-10{
	border-radius:10px;
}
.rounded-all-20{
	border-radius:20px;
}
.rounded-all-50{
	border-radius:50%;
}

.rounded-top-0 {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.flex-basis-33 {
    flex-basis: 33.333333%;
}

.icon {
    font-size: 40px;
}

.icon-sm {
    font-size: 34px;
}

.icon-xs {
    font-size: 22px;
}

.icon-lg {
    font-size: 56px;
}

.box-shadow {
    box-shadow: 0px 15px 39px 0px var(--dark-blue-color-op10);
}

.translate-top {
    transform: translateY(-100px);
}

.transition {
    transition: 0.2s ease;
}
.font-size-sm-up {
    font-size: 24px;
    text-transform:uppercase;
}

.font-size-30 {
    font-size: 30px;
}

.fw-semebold {
    font-weight: 600 !important;
}

.font-secondary {
    font-family: "Barlow Condensed", sans-serif !important;
}
.font-small-list{
	font-size:12px;
}

.text-decoration-none {
    text-decoration: none !important;
}
.text-decoration-none:hover {
    text-decoration: none !important;
}

.border-md-end {
    border-right: 1px solid;
}
@media (max-width: 767px) {
    .border-md-end {
        border: 0;
    }
}

.media {
    display: flex;
    align-items: start;
}
.media > div:nth-child(1) {
    flex-shrink: 0;
}
.media > div:nth-child(2) {
    flex: 1;
}

.card-title {
    color: var(--text-color-dark);
}

/* /common class */
/* icon animation */
.icon-bg {
    position: relative;
    background-color: var(--primary-color-op20);
    display: inline-block;
    height: 100px;
    width: 100px;
    border-radius: 120px 135px 110px 90px;
}
.icon-bg::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 5px;
    background: var(--primary-color-op05);
    border: 2px solid var(--primary-color);
    border-radius: 130px 120px 160px 130px;
}
.icon-bg .icon {
    line-height: 100px;
}

.water-wave {
    position: relative;
    animation-name: water-wave;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
.water-wave::before {
    animation-name: water-wave;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes water-wave {
    0% {
        border-radius: 120px 135px 110px 90px;
    }
    25% {
        border-radius: 130px 140px 100px 110px;
    }
    50% {
        border-radius: 110px 97px 150px 100px;
    }
    75% {
        border-radius: 80px 107px 120px 90px;
    }
    100% {
        border-radius: 120px 135px 110px 90px;
    }
}
/* /icon animation */
/* breadcrumb */
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white);
}

/* google map */
#map_canvas {
    height: 500px;
}

/* form control */
.form-control {
    height: 40px;/*55px*/
    padding: 6px;/*0 30px*/
}
.form-control-sm {
    height: 34px;/*45px*/
}
.form-control:focus {
    box-shadow: 0px 15px 39px 0px var(--dark-blue-color-op10);
    border-color: var(--primary-color) !important;
}

.focus-shadow-none {
    box-shadow: none !important;
}

textarea.form-control {
    height: 150px;
}

textarea.form-control-sm {
    height: 100px;
}

/* /form control */
/* social icon */
.social-icon li a {
    display: inline-block;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    color: var(--white);
    border: 1px solid var(--white);
    background: transparent;
    line-height: 45px;
    text-align: center;
}
.social-icon li a:hover {
    color: var(--primary-color);
    background: var(--white);
}

.social-icon-alt li a {
    display: inline-block;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    color: var(--white);
    border: 1px solid var(--white);
    background: transparent;
    line-height: 45px;
    text-align: center;
}
.social-icon-alt li a:hover {
    color: var(--white);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* /social icon */
/* slick style */
.slick-slide {
    outline: 0;
}

/* slick arrows */
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background: var(--primary-color-op50);
    color: var(--white);
    border: 0;
    line-height: 70px;
    font-size: 35px;
}
.slick-arrow::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    background: transparent;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    transition: 0.2s ease;
}
.slick-arrow::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    transition: 0.2s ease;
}
@media (max-width: 575px) {
    .slick-arrow {
        display: none;
    }
}
.slick-arrow:focus {
    outline: 0;
}
.slick-arrow:hover {
    background: var(--primary-color);
}

.prevArrow {
    left: 0px;
}
.prevArrow::before {
    border-left: 2px solid var(--white);
    border-top: 2px solid var(--white);
    right: 35px;
}
.prevArrow::after {
    right: 20px;
}

.nextArrow {
    right: 0px;
}
.nextArrow::before {
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    left: 35px;
}
.nextArrow::after {
    left: 20px;
}

/* /slick arrows */
/* slick dots */
.slick-dots {
    padding-left: 0;
    text-align: center;
    position: absolute;
    bottom: -185px;
    left: 0;
    right: 0;
    z-index: 9;
}
.slick-dots li {
    display: inline-block;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 20px;
    transition: 0.2s ease;
    box-shadow: 0px 15px 39px 0px var(--dark-blue-color-op10);
}
.slick-dots li img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
}
.slick-dots li.slick-active {
    transform: scale(1.2);
}

/* /slick dots */
.social-icon-dark li a {
    display: inline-block;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    color: var(--black);
    border: 1px solid var(--black);
    background: transparent;
    line-height: 45px;
    text-align: center;
}
.social-icon-dark li a:hover {
    color: var(--white);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.content ul,
.content ol {
    padding-left: 0;
}
.content ul li,
.content ol li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}
.content ul li svg,
.content ol li svg {
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 13px;
}

/* Navbar */
/* top header */
.top-header {
    font-size: 14px;
    z-index:3;
    position:relative;
}

/* /top header */
/* navigation */

.navigation {
    box-shadow: 0px 9px 20px 0px var(--black-op09);
    position: relative;
    z-index: 2;
}
@media (min-width: 992px) {
    .navigation {
        /* height: 110px; */
        display: flex;
        align-items: center;
    }
    .navbar-brand{
        width:auto;
        height:110px;
        display:flex;
    }
    .navbar-brand img{
        max-width:150% !important;
        height:100%;
        width:auto;
    }
}

.navbar {
    padding: 0;
    /*max-height:130px;
    overflow:hidden;
    align-items:center;
    flex-wrap:wrap;*/
}
.navbar-collapse {
    padding-bottom: 10px;
    transition: 0.2s ease;
}
.navbar .nav-item .nav-link {
    text-transform: uppercase;
    font-weight: 700;
}
.navbar .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: scaleX(1);
}
.navbar .dropdown-menu {
    box-shadow: 0px 3px 9px 0px var(--black-op12);
    padding: 15px;
    border: 0;
    top: 75px;/*100*/
    left: -25px;
    border-radius: 0;
    display: block;
    visibility: hidden;
    transition: 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    background: var(--white);
}
@media (max-width: 991px) {
    .navbar .dropdown-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        transform-origin: unset;
    }
}
.navbar .dropdown-menu.show {
    visibility: hidden;
}
@media (max-width: 991px) {
    .navbar .dropdown-menu.show {
        visibility: visible;
        display: block;
    }
}
.navbar .dropdown-item {
    position: relative;
    color: var(--text-color-dark);
    transition: 0.2s ease;
    font-family: "Open Sans", sans-serif;
}
@media (max-width: 991px) {
    .navbar .dropdown-item {
        text-align: center;
    }
}
.navbar .dropdown-item:not(:last-child) {
    margin-bottom: 10px;
}
.navbar .dropdown-item:hover {
    color: var(--primary-color);
    background: transparent;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-color-dark);
}
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 35px 30px 20px;/*40px 15px*/
}
@media (max-width: 1200px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 35px 30px 20px;/*40px 10px*/
    }
}
@media (max-width: 991px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 20px;
    }
}

/* search */
.search-btn {
    border: 0;
    background: transparent;
}

.search-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width:75%;
    z-index: 2;
    visibility: hidden;
    transition: 0.2s ease;
    opacity: 0;
}
.search-wrapper.open {
    visibility: visible;
    opacity: 1;
}

.search-box {
    height: 100px;
    width: 100%;
    border: 1px solid var(--gray-2);
    background: var(--white);
    font-size: 1.3em;
    padding: 0 30px;
    border-radius:60px;
}
@media (min-width: 992px) {
    .search-box {
        margin-top: 5px;/*-3px*/
    }
}
.search-box:focus {
    box-shadow: none !important;
}

.search-close {
    position: absolute;
    right: 3%;
    top: 35%;
    border: 0;
    background: transparent;
    page-break-after: 10px;
    font-size: 20px;
}

/* /navigation */
/* hero slider */
.hero-section {
    padding: 160px 0 270px;
}
@media (max-width: 767px) {
    .hero-section {
        padding: 160px 0 170px;
    }
}

.hero-slider {
    overflow-x: hidden;
}
.hero-slider .prevArrow {
    left: -100px;
}
.hero-slider .nextArrow {
    right: -100px;
}
.hero-slider:hover .prevArrow {
    left: 35px;
}
.hero-slider:hover .nextArrow {
    right: 35px;
}

/* /hero slider */
/* banner feature */
.banner-feature-wrapper {
    transform: translateY(-100px);
}

.hover-bg-dark:hover, .hover-bg-dark.active {
    background: var(--text-color-dark) !important;
}
.hover-bg-dark:hover *, .hover-bg-dark.active * {
    color: var(--white) !important;
}

/* /banner feature */
/* about */
.image-bg {
    position: absolute;
    top: 20%;
    right: 0;
    z-index: -1;
}

.about-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
}

.philosophy-bg-shape {
    position: absolute;
    left: 0;
    bottom: 0;
}

/* /about */
/* funfacts */
.funfacts {
    overflow-x: hidden;
}
@media (max-width: 991px) {
    .funfacts {
        background: var(--gray-footer);
    }
}
.funfacts .container {
    transform: translateX(-50px);
    position: relative;
}
.funfacts .container::before {
    position: absolute;
    content: "";
    right: 100%;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--gray-footer);
}
@media (max-width: 991px) {
    .funfacts .container {
        transform: translate(0);
    }
    .funfacts .container::before {
        display: none;
    }
}
@media (max-width: 991px) {
    .funfacts h3 {
        font-size: 30px;
    }
}
@media (max-width: 767px) {
    .funfacts h3 {
        font-size: 35px;
    }
}
@media (max-width: 991px) {
    .funfacts .icon-lg {
        font-size: 40px;
    }
}
@media (max-width: 767px) {
    .funfacts .icon-lg {
        font-size: 50px;
    }
}

/* /funfacts */
/* feature */
.feature-img-bg {
    position: relative;
}
.feature-img-bg::before {
    position: absolute;
    content: "";
    background: url(../images/backgrounds/feature-bg.png);
    top: -100px;
    right: -120px;
    height: 150%;
    width: 120%;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
}
@media (max-width: 991px) {
    .feature-img-bg::before {
        display: none;
    }
}

.play-video {
    position: absolute;
    left: 0;
    bottom: 20%;
}

.play-icon {
    display: inline-block;
    min-width: 90px;
    height: 90px;
    text-align: center;
    line-height: 90px;
    border-radius: 50%;
    box-shadow: 0px 15px 39px 0px var(--dark-blue-color-op10);
    font-size: 30px;
}

/* /feature */
/* service */
.service-wrapper {
    transform: translateY(-200px);
}

.card-icon {
    position: absolute;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    text-align: center;
    line-height: 60px;
    color: var(--white);
    font-size: 32px;
    left: 15px;
    top: -90px;
}

.service-bg-dots {
    position: relative;
}
.service-bg-dots::before {
    position: absolute;
    content: "";
    background: url(../images/backgrounds/service-page-2.png);
    top: 0px;
    right: 0px;
    height: 100%;
    width: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

/* /service */
/* team */
.team-member-img img {
    position: relative;
    z-index: 2;
}
.team-member-img::before {
    position: absolute;
    content: "";
    background: url(../images/backgrounds/team-member-bg.png);
    top: 0px;
    right: 0px;
    height: 60%;
    width: 60%;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    transition: 0.2s ease;
}
.team-member-img::after {
    position: absolute;
    content: "";
    background: url(../images/backgrounds/team-member-bg.png);
    bottom: -40px;
    left: 0px;
    height: 60%;
    width: 60%;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    transition: 0.2s ease;
}
.team-member:hover .team-member-img::before {
    top: -20px;
    right: -20px;
}
.team-member:hover .team-member-img::after {
    bottom: -60px;
    left: -20px;
}
.team-member:hover .hover-icon {
    transform: scale(1);
    opacity: 1;
}
.team-member:hover .hover-icon .social-icon a {
    transform: scale(1);
}

.hover-icon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color-op90);
    transition: 0.2s ease;
    transform: scale(0.8);
    z-index: 3;
    opacity: 0;
}
.hover-icon .social-icon a {
    transform: scale(0);
}

/* /team */
/* project */
.project-item img {
    transition: 0.4s ease-in;
}
@media (max-width: 767px) {
    .project-item img {
        margin-bottom: -60px;
    }
}
.project-item:hover img {
    transform: scale(1.05);
}
.project-item:hover .hover-overlay {
    opacity: 1;
}
.project-item:hover .hover-overlay a {
    transform: translateY(-50%) scale(1);
}

.hover-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background: var(--primary-color-op90);
    transition: 0.4s ease;
    opacity: 0;
}
.hover-overlay a {
    position: relative;
    font-size: 24px;
    color: var(--white);
    top: 50%;
    transform: translateY(-50%) scale(0);
    transition: 0.4s ease;
    display: inline-block;
}

.uni-plus {
    position: relative;
    padding: 0 20px;
}
.uni-plus::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 40px;
    width: 2px;
    background: var(--white);
}
.uni-plus::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 2px;
    width: 40px;
    background: var(--white);
}
.uni-plus.uni-little::before{
	height:20px;
}
.uni-plus.uni-little::after{
	width:20px;
}

.filter-controls li {
    cursor: pointer;
}
.filter-controls li.active {
    color: var(--primary-color) !important;
}

/* /project */
/* testimonial */
.bg-dots {
    position: relative;
}
.bg-dots::before {
    position: absolute;
    content: "";
    background: url(../images/backgrounds/testimonial-bg-1.png);
    top: 0px;
    right: 0px;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}
.bg-dots .container {
    position: relative;
    z-index: 2;
}

.testimonial-slider .nextArrow,
.testimonial-slider .prevArrow {
    opacity: 0;
    transition-delay: 1s;
}
.testimonial-slider:hover .nextArrow {
    opacity: 1;
    right: -100px;
    transition-delay: 0s;
}
.testimonial-slider:hover .prevArrow {
    opacity: 1;
    left: -100px;
    transition-delay: 0s;
}

.bg-quote {
    position: relative;
}
.bg-quote::before {
    position: absolute;
    content: "\f10d";
    font-family: "FontAwesome";
    font-size: 150px;
    color: var(--primary-color-op30);
    top: -10px;
    line-height: 1;
    left: 50%;
    transform: translateX(-50%);
}

/* /testimonial */
/* clients logo */
.clients-logo {
    text-align: center;
    position: relative;
    height: 120px;
    width: 180px;
}
.clients-logo:hover .white {
    opacity: 0;
}
.clients-logo:hover .primary {
    opacity: 1;
}
.clients-logo .white {
    opacity: 1;
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    padding: 0 10px;
}
.clients-logo .primary {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    padding: 0 10px;
}

.customer-bg-shape {
    position: absolute;
    top: 0;
    right: 50%;
}

/* /clients logo */
/* team */
.team-skillbar .progress {
    height: 6px;
}
.team-skillbar .progress-bar {
    background-color: var(--primary-color);
    align-items: flex-end;
    border-radius: 0;
    padding-right: 15px;
}
.team-skillbar .progress-bar span {
    color: var(--primary-color);
    background-color: var(--white);
}

/* cta sm */
.cta-sm-bg {
    position: relative;
}
.cta-sm-bg::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 92%;
    top: 0;
    background: url(https://dev.cseei-airfrance.fr/system/files/medias/images/2026-02/cta-sm-right.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.cta-sm-bg::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-image: url(https://dev.cseei-airfrance.fr/system/files/medias/images/2026-02/cta-sm-left.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}

/* /cta sm */
/* pricing */
.pricing-table {
    transition: 0.2s ease;
    position: relative;
}
.pricing-table::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: url(../images/backgrounds/pricing-table-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.pricing-table.active {
    background: var(--primary-color);
    color: var(--white);
}
.pricing-table.active h2,
.pricing-table.active h3,
.pricing-table.active h4,
.pricing-table.active h5,
.pricing-table.active h6,
.pricing-table.active .subtitle {
    color: var(--white);
}

.pricing-duration {
    transition: 0.2s linear;
}
.pricing-duration.active {
    font-weight: 600;
    color: var(--text-color-dark);
}

.pricing-switcher {
    text-align: center;
}
.pricing-switcher .fieldset {
    display: inline-block;
    position: relative;
    padding: 2px;
    border-radius: 50em;
    background: var(--primary-color);
    height: 40px;
    width: 100px;
}
.pricing-switcher input[type=radio] {
    position: absolute;
    opacity: 0;
}
.pricing-switcher label {
    position: absolute;
    z-index: 1;
    cursor: pointer;
    color: var(--text-color);
    top: 50%;
    transform: translateY(-50%);
    text-transform: uppercase;
    font-size: 16px;
}
.pricing-switcher label.monthly {
    right: 130px;
}
.pricing-switcher label.monthly::before {
    position: absolute;
    content: "";
    height: 30px;
    width: 50px;
    border-radius: 50px;
    top: 50%;
    transform: translateY(-50%);
    right: -85px;
}
.pricing-switcher label.yearly {
    left: 130px;
}
.pricing-switcher label.yearly::before {
    position: absolute;
    content: "";
    height: 30px;
    width: 50px;
    border-radius: 50px;
    top: 50%;
    transform: translateY(-50%);
    left: -85px;
}
.pricing-switcher .switch {
    position: absolute;
    top: 5px;
    left: 5px;
    height: 30px;
    width: 30px;
    background-color: var(--white);
    border-radius: 50em;
    transition: transform 0.3s;
}
.pricing-switcher input[type=radio]:checked + label + .switch,
.pricing-switcher input[type=radio]:checked + label:nth-of-type(n) + .switch {
    transform: translateX(60px);
}

.pricing-list li {
    position: relative;
    padding: 0 !important;
}

@media only screen and (min-width: 768px) {
    .pricing-list {
        margin: 3em 0 0;
    }
    .pricing-list:after {
        content: "";
        display: table;
        clear: both;
    }
    .pricing-list > li {
        width: 33.3333333333%;
        float: left;
        padding-left: 5px;
        padding-right: 5px;
    }
}
.pricing-wrapper {
    position: relative;
}

.touch .pricing-wrapper {
    perspective: 2000px;
}

.pricing-wrapper.is-switched .is-visible {
    transform: rotateY(180deg);
    animation: rotate 0.5s;
}

.pricing-wrapper.is-switched .is-hidden {
    transform: rotateY(0);
    animation: rotate-inverse 0.5s;
    opacity: 0;
}

.pricing-wrapper.is-switched .is-selected {
    opacity: 1;
}

.pricing-wrapper.is-switched.reverse-animation .is-visible {
    transform: rotateY(-180deg);
    animation: rotate-back 0.5s;
}

.pricing-wrapper.is-switched.reverse-animation .is-hidden {
    transform: rotateY(0);
    animation: rotate-inverse-back 0.5s;
    opacity: 0;
}

.pricing-wrapper.is-switched.reverse-animation .is-selected {
    opacity: 1;
}

.pricing-wrapper > li {
    backface-visibility: hidden;
}

.pricing-wrapper .is-visible {
    position: relative;
    z-index: 5;
}

.pricing-wrapper .is-hidden {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    transform: rotateY(180deg);
}

.pricing-wrapper .is-selected {
    z-index: 3 !important;
}

@keyframes rotate {
    0% {
        transform: perspective(2000px) rotateY(0);
    }
    70% {
        transform: perspective(2000px) rotateY(200deg);
    }
    100% {
        transform: perspective(2000px) rotateY(180deg);
    }
}
@keyframes rotate-inverse {
    0% {
        transform: perspective(2000px) rotateY(-180deg);
    }
    70% {
        transform: perspective(2000px) rotateY(20deg);
    }
    100% {
        transform: perspective(2000px) rotateY(0);
    }
}
@keyframes rotate-back {
    0% {
        transform: perspective(2000px) rotateY(0);
    }
    70% {
        transform: perspective(2000px) rotateY(-200deg);
    }
    100% {
        transform: perspective(2000px) rotateY(-180deg);
    }
}
@keyframes rotate-inverse-back {
    0% {
        transform: perspective(2000px) rotateY(180deg);
    }
    70% {
        transform: perspective(2000px) rotateY(-20deg);
    }
    100% {
        transform: perspective(2000px) rotateY(0);
    }
}
/* /pricing */
/* blog */
.card-type {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 3px 10px;
    color: var(--white);
    background: var(--primary-color);
    z-index: 1;
}

.card-meta {
    font-size: 14px;
}

.blog-shape-left {
    position: absolute;
    left: 0;
    bottom: 0;
}

.blog-shape-right {
    position: absolute;
    right: 0;
    top: 50%;
}

.clip-half-cycle {
    clip-path: circle(157% at 50% -100%);
}

.title-border-left {
    position: relative;
    padding-left: 30px;
}
.title-border-left::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 5px;
    border-radius: 30px;
    background: var(--primary-color);
}

.post-search {
    border: 0;
    background: transparent;
    position: absolute;
    bottom: 15px;
    right: 0;
}

.tag-list a {
    display: inline-block;
    padding: 10px 22px;
    background: var(--white);
    box-shadow: 0px 5px 20px 0px var(--dark-blue2-color-op12);
    border-radius: 35px;
    margin-bottom: 15px;
    color: var(--text-color);
}
.tag-list a:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0;
}

blockquote {
    padding: 30px 40px;
    font-style: italic;
    color: var(--text-color-dark);
    border-left: 2px solid var(--primary-color);
    box-shadow: 0px 15px 39px 0px var(--dark-blue-color-op10);
    position: relative;
    margin-bottom: 40px;
}
blockquote::before {
    position: absolute;
    content: "\f10d";
    font-family: "FontAwesome";
    font-size: 100px;
    color: var(--primary-color-op30);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-style: normal;
}
blockquote p {
    font-style: normal;
    margin-top: 10px;
}

/* /blog */
/* footer */

.logo-footer{
    max-height:110px;
}
.logo-footer img{
    height:110px;
}
.list-styled {
    padding-left: 0;
}
.list-styled li {
    position: relative;
    padding-left: 20px;
}
.list-styled li::before {
    position: absolute;
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 14px;
    left: 0;
    top: 1px;
    color: var(--primary-color);
    transition: 0.3s ease;
}
.list-styled li:hover::before {
    color: var(--secondary-color);
}
.list-styled li:hover a, .list-styled li a:hover, .list-styled li a.text-light:hover,
.list-styled li:focus a, .list-styled li a:focus, .list-styled li a.text-light:focus {
    text-decoration: underline;
    color:var(--text-color);
    font-weight:400;
}
.list-styled li.text-light::before {
    color: var(--gray);
}
.list-styled.style-circle li::before {
    content: "\f10c";
}

.newsletter-form {
    background: var(--white-op10);
    border-radius: 35px;
}
.newsletter-form:focus {
    background: var(--white-op10);
}
.newsletter-form::-moz-placeholder {
    color: var(--white);
}
.newsletter-form::placeholder {
    color: var(--white);
}

.btn-subscribe {
    position: absolute;
    top: 0;
    right: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* /footer */
/*# sourceMappingURL=style.css.map */
