@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');


/* CSS Document */
::-moz-selection {
  background: #7b7d7f;
  color: #ffffff;
  text-shadow: none;
}
::selection {
  background: #7b7d7f;
  color: #ffffff;
  text-shadow: none;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
textarea,
input {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
  font-family: 'Manrope', sans-serif;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  color: #000;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow: hidden;
  font-family: 'Manrope', sans-serif;
  background: #ffffff;
}

:root {
  overflow-y: scroll;
}
a {
  text-decoration: none;
  transition: all 0.25s ease-out 0s;
}
p,
p span {
    font-family: 'Manrope', sans-serif;
}
img {
  border: 0px;
}
ol,
ul,
li {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

section{
    width: 100%;
    float: left;
}
img{
    max-width: 100%;
}

h1{
    font-size: 45px;
    line-height: 55px;
}
h2{
    font-size: 38px;
}
h3{
    font-size: 22px;
}
p, li{
    font-size: 15px;
    line-height: 27px;
    letter-spacing: .5px;
}

.ar{color:#c60079;
}
@media (max-width:1024px){
    h2{
        font-size: 32px;
    }
    h3{
        font-size: 18px;
    }
    
}


/* -------------header---------- */
header {
    width: 100%;
    position: fixed;
    z-index: 9;
}

.header-wrapp {
    padding: 15px 0;
    background: #ffffff;
    box-shadow: #aaa 0 2px 16px;
    width: 100%;
    position: relative;
}

header .header-main {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .header-main .brand-logo {
    width: 215px;
    display: inline-block;
    float: left;
}

header .header-main .head-right {
    width: auto;
    float: right;
    display: inline-block;
}

header .header-main .head-right ul.head-nav {
    display: flex;
    align-items: center;
}

header .header-main .head-right ul.head-nav li.nav-item {
    display: inline-block;
    margin-right: 10px;
    position: inherit;
    font-size: 15px;
}

header .header-main .head-right ul.head-nav li.nav-item a.nav-link {
    display: block;
    padding: 8px 10px;
    color: #000;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}



header .header-main .head-right ul.head-nav li.nav-item:last-child {
    margin: 0;
}

/* header .header-main .head-right ul.head-nav li.nav-item a.nav-link:hover {
    background: #B62674;
    color: #ffff;
    border-radius: 5px;
} */
/* header .header-main .head-right ul.head-nav li.nav-item a.nav-link.dropdown-toggle:hover {
    background: #B62674 url('../images/menu-arrow 1.svg') center no-repeat;
    background-size: 9px;
    background-position-x: 90%;
} */

header .header-main .head-right ul.head-nav li.nav-item a.nav-link.search-btn {
    background: none !important;
    padding: 0;
}

header .header-main .head-right ul.head-nav li.nav-item a.nav-link:after {
    content: "";
    position: absolute;
    border: none;
    width: 90%;
    height: 3px;
    background: #B62674;
    bottom: -23px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease-in-out;
}

header .header-main .head-right ul.head-nav li.nav-item:hover a.nav-link:after{
    opacity: 1;
    visibility: visible;
}


@media (min-width:1200px) {
    ul.dropdown-menu {
        width: 100%;
        display: block;
        left: 0;
        padding: 20px 25px;
        top: 85px;
        z-index: -1;
        box-shadow: #aaa 0 2px 16px;
        margin-top: -100%;
        transition: all .5s ease-in-out;
    }

    header .header-main .head-right ul.head-nav li.nav-item.dropdown:hover ul.dropdown-menu{
        margin-top: 0;
        transition: all .5s ease-in-out;
    }

    ul.drop-links {
        width: 18.4%;
        margin: 0 2% 0 0;
    }
    ul.drop-links:last-child {
        margin: 0;
    }

    ul.drop-links li span a {
        color: #000;
    }
    
    ul.dropdown-menu > li h3 {
        font-size: 22px;
        margin: 0 0 20px;
        width: 100%;
    }
    
    ul.dropdown-menu li {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    
    ul.drop-links > li {
        margin: 0 0 15px;
        font-size: 16px;
    }

    ul.sub-menu {
        padding-left: 20px;
        position: relative;
    }
    
    ul.sub-menu li a {
        color: #000;
    }
    ul.sub-menu li a:hover {
        color: #c50076;
        padding-left: 5px;
    }
    ul.sub-menu li {
        margin: 0 0 5px;
        font-size: 14px;
    }
    
    ul.sub-menu:before {
        content: "";
        position: absolute;
        width: 1px;
        height: 100%;
        background: #000;
        left: 0;
        top: 0;
    }

    .menu-overlay{
        display: none;
    }
    header .header-main .head-right ul.head-nav li.nav-item.dropdown{
        background: url('../images/menu-arrow.svg') center no-repeat;
        background-size: 10px;    
        background-position-x: 90%;
        padding-right: 30px;
    }
    header .header-main .head-right ul.head-nav li.nav-item a.nav-link.dropdown-toggle {
        padding-right: 0;
    }
}


/* ---------home-banner---------- */

.home-banner {
    padding: 89px 0 0 ;
    position: relative;
}
.home-banner .banner-bg {
    width: 100%;
}

.home-banner .bg-img {
    position: absolute;
    top: -342px;
    right: -419px;
    width: 1000px;
}

.home-banner .bg-img img {
    width: 100%;
    opacity: 20%;
}

.home-banner .banner-content {
    width: 100%;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    left: 0;
}

.home-banner .banner-content .banner-txt {
    width: 62%;
}

.home-banner .banner-content .banner-txt h1 {
    color: #fff;
    font-weight: 800;
    font-size: 52px;
    line-height: 65px;
    margin: 0 0 30px;
}

.home-banner .banner-content .banner-txt h1 span {
    display: inline-block;
}

.home-banner .banner-content .banner-txt p {
    color: #ffff;
    font-weight: 200;
}

.node-box-wrapp {
    width: 100%;
    position: absolute;
    top: -200px;
    left: 0;
}

.node-box-wrapp .node-box {
    width: 31%;
    margin: 0 3.5% 0 0;
    padding: 65px 30px 30px 30px;
    background: #fff;
    border-radius: 7px;
    position: relative;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.12);
}

.node-box-wrapp .node-box:after{
    content: "";
    position: absolute;
    background: url('../images/Group\ 14.png') no-repeat bottom;
    width: 100%;
    height: 100%;
    background-size: 100%;
    bottom: -15px;
    right: -15px;
    z-index: -1;
}

.node-box-wrapp .node-box:nth-child(3) {
    margin-right: 0;
}

.structure-wrapp {
    position: relative;
    padding: 0px 0 0px;
}

.structure-wrapp .bg-img {
    position: absolute;
    top: -170px;
    left: -150px;
    z-index: -1;
    max-width: 660px;
}


.nodes-wrapp-2 {
    position: relative;
}

.nodes-wrapp-2 .bg-img {
    left: inherit;
    right: -95px;
    top: 50%;
    transform: translateY(-50%);
    width: 470px;
}

.nodes-wrapp-2 .bg-img:after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 40%);
    position: absolute;
    top: 0;
    right: 0;
}

.node-box-wrapp .node-box .node-box-icon {
    width: 70px;
    position: absolute;
    top: -30px;
    left: 30px;
}

.node-box-wrapp .node-box .node-box-icon img {
    width: 100%;
}

.node-box-wrapp .node-box h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 20px;
/*    background: url('../images/arrow.svg') center no-repeat;*/
    background-size: 20px;
    background-position-x: 100%;
    width: fit-content;
/*    padding-right: 30px;*/
}

.node-box-wrapp .node-box h3 .right-arrow {
    display: inline;
    float: right;
    padding: 3px 0 0;
}

.node-box-wrapp .node-box ul li {
    position: relative;
    margin: 0 0 10px;
    padding-left: 15px;
    color: #565973;
}
.node-box-wrapp .node-box ul li:before{
    content: "";
    position: absolute;
    left: 0;
    top: 9.5px;
    width: 5px;
    height: 9px;
    background: url(../images/Vector.svg) center no-repeat;
    background-size: 100%;
    background-position-x: 0;
}

.nodes-wrapp-2 h2 {
    font-weight: 800;
    margin: 0 0 30px;
}

.nodes-wrapp-2 .nodes-col {
    width: 100%;
    background: #151D31;
    display: flex;
    flex-wrap: wrap;
    padding: 60px;
    margin: 0 0 30px;
    border-radius: 10px;
}

.nodes-wrapp-2 .nodes-col .nodes-col-left {
    width: 50%;
}

.nodes-wrapp-2 .nodes-col .nodes-col-left h3 {
    color: #fff;
    font-weight: 600;
    margin: 0 0 20px;
    font-size: 22px;
}

.nodes-wrapp-2 .nodes-col .nodes-col-left p {
    color: #ffff;
    margin: 0 0 20px;
    font-weight: 300;
}

.read-more-btn {
    background: #B62674 url('../images/button-arrow.svg') center no-repeat;
    background-size: 15px;
    background-position-x: 90%;
    color: #ffff;
    display: block;
    width: fit-content;
    padding: 10px 65px 12px 20px;
    border-radius: 5px;
    border: 1px solid #B62674;
    font-weight: 300;
    font-size: 14px;
}

.read-more-btn:hover {
    background: transparent url('../images/button-arrow\ 1.svg') center no-repeat;
    background-size: 15px;
    background-position-x: 90%;
    color: #B62674;
}

.nodes-wrapp-2 .nodes-col  .nodes-col-right {
    width: 50%;
    padding-left: 50px;
}

.nodes-wrapp-2 .nodes-col .nodes-col-right li {
    color: #ffff;
    margin: 0 0 10px;
    position: relative;
    padding-left: 25px;
    font-weight: 300;
}

.nodes-wrapp-2 .nodes-col .nodes-col-right li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    background: url(../images/arrow.svg) center no-repeat;
    background-size: 100%;
    background-position-x: 0;
}

.nodes-wrapp-2 .nodes-col:nth-child(2n) {
    flex-direction: row-reverse;
}

.nodes-wrapp-2 .nodes-col:nth-child(2n) .nodes-col-right{
    padding: 0 50px 0 0;
}


.home-nodes3 {
    padding: 100px 0 50px;
    position: relative;
}

.home-nodes3 .bg-img {
    position: absolute;
    top: 135px;
    right: 0;
    max-width: 750px;
    z-index: -1;
}

.home-nodes3 .bg-img:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 85%);
    position: absolute;
    top: 0;
    right: 0;
}

.home-nodes3-col {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 100px;
}

.home-nodes3-col .home-nodes3-col-left {
    width: 53%;
    padding: 0 30px 0 0;
}

.home-nodes3-col .home-nodes3-col-right {
    width: 45%;
}

.home-nodes3-col .home-nodes3-col-right .img {
    width: 100%;
}

.home-nodes3-col .home-nodes3-col-right .img img {
    width: 100%;
}

.home-nodes3-col .home-nodes3-col-left h2 {
    font-weight: 800;
    margin: 0 0 20px;
    padding-left: 70px;
    min-height: 55px;
    font-size: 32px;
}

.home-nodes3-col:nth-child(3n) {
    flex-direction: row-reverse;
    margin: 0 0 30px;
}

.home-nodes3-col:nth-child(3n)  .home-nodes3-col-left{
    padding: 30px 0 0 30px;
}

.home-nodes3-col:nth-child(3) .home-nodes3-col-left {
    width: 47%;
}

.home-nodes3-col .home-nodes3-col-left h2 span {
    display: inline-block;
}

.home-nodes3-col:nth-child(3) .home-nodes3-col-right {
    width: 50%;
}

.home-nodes3-col .home-nodes3-col-left h2.info {
    background: url('../images/red-info.svg') no-repeat center;
    background-size: 55px;
    background-position-x: 0; 
}

.home-nodes3-col .home-nodes3-col-left h2.exp {
    background: url('../images/red-bag.svg') no-repeat center;
    background-size: 55px;
    background-position-x: 0; 
}

.home-nodes3-col .home-nodes3-col-right h2.ser {
    background: url('../images/red-services.svg') no-repeat center;
    background-size: 55px;
    background-position-x: 0; 
}
.home-nodes3-col .home-nodes3-col-right h2 {
    font-weight: 800;
    margin: 0 0 20px;
    padding-left: 70px;
    min-height: 55px;
    font-size: 32px;
}
.home-nodes3-col .home-nodes3-col-right p {
    margin: 0 0 30px;
    font-size: 15px;
    color: #7b7e92;
    line-height: 24px;
}
.home-nodes3-col .home-nodes3-col-left p {
    margin: 0 0 30px;
    font-size: 15px;
    color: #7b7e92;
    line-height: 24px;
}

.home-nodes3-col .home-nodes3-col-left .logo {
    width: 210px;
    margin: 0 0 30px;
}

.talk-to-exp {
    width: 100%;
    padding: 70px;
    background: #151D31 url(../images/dots-arrow.svg) no-repeat;
    background-position-x: 90%;
    background-position-y: 80px;
    border-radius: 10px;
    background-size: 40%;
    margin: 30px 0 0;
}

.talk-to-exp h3 {
    color: #fff;
    font-weight: 600;
    margin: 0 0 30px;
}

.talk-to-exp p {
    color: #fff;
    width: 40%;
    margin: 0 0 30px;
    font-weight: 300;
}

.our-services {
    background: #eff2fc;
    padding: 70px 0;
    position: relative;
    z-index: 0;
}

.our-services h2 {
    font-size: 38px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 60px;
}

.our-services .our-services-col {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.our-services .our-services-col .our-services-col1 {
    width: 21%;
    margin: 0 6.5% 0 0;
}

.our-services .our-services-col .our-services-col1 .icon-360 {
    width: 100%;
    max-width: 250px;
}

.our-services .our-services-col .our-services-col2 {
    width: 72.5%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.our-services .our-services-col .our-services-col1 .service-box {
    background: #fff;
    padding: 65px 20px 60px 20px;
    position: relative;
    border-radius: 8px;
}

.our-services .our-services-col .our-services-col1 .service-box .service-box-icon {
    width: 60px;
    position: absolute;
    top: -26px;
}

.our-services .our-services-col .our-services-col1 .service-box .service-box-icon img {
    width: 100%;
}

.our-services .our-services-col .our-services-col1 .service-box p span {
    font-weight: 800;
}

.our-services .our-services-col .our-services-col2 .our-services-col3 {
    width: 27%;
    margin: 0 10.5% 0 0;
}

.our-services .our-services-col .our-services-col2 .our-services-col3:nth-child(3) {
    width: 25%;
    margin-right: 0;
}
.our-services .our-services-col .our-services-col2 .our-services-col3 span.step-count {
    background: #fff;
    font-size: 28px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50%;
    margin: 0 0 30px;
    position: relative;
    width: 50px;
    height: 50px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.12);
}

.our-services .our-services-col .our-services-col2 .our-services-col3 h3 {
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 20px;
}
.our-services .our-services-col .our-services-col2 .our-services-col3 p {
    font-size: 14px;
    color: #696C84;
    line-height: 24px;
}

.our-services .our-services-col .our-services-col2 .our-services-col3 p a {
    color: #b62674;
    font-weight: 700;
    display: block;
}

.our-services .our-services-col .our-services-col2 .our-services-col3 span.step-count:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -99;
    background: url('../images/purple-round.svg') no-repeat center;
    background-size: 100%;
}

.our-services .our-services-col .our-services-col2 .our-services-col3:nth-child(2) span.step-count:after{
    background: url('../images/blue-round.svg') no-repeat center;
    background-size: 100%;
}
.our-services .our-services-col .our-services-col2 .our-services-col3:nth-child(3) span.step-count:after{
    background: url('../images/green-round.svg') no-repeat center;
    background-size: 100%;
}

.our-services .our-services-col .our-services-col2:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #e1e4f0;
    top: 32px;
    left: 0;
}
.our-services .our-services-col .our-services-col1 .service-box:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/Group\ 14.png') bottom right no-repeat;
    bottom: -15px;
    right: -15px;
    z-index: -1;
}


.faq-wrapp {
    padding: 10px 0 50px;
}

.faq-wrapp h2 {
    font-weight: 800;
    text-align: center;
    margin: 0 0 30px;
}

.faq-wrapp .faq-row {
    background: #eff2fc;
    padding: 70px 100px;
    border-radius: 10px;
    position: relative;
    z-index: 0;
}

.faq-wrapp .faq-row .faq-col {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 0 0 20px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.12);
    position: relative;
}

.faq-wrapp .faq-row .faq-col:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/faqbg.png') no-repeat bottom right;
    background-size: 100%;
    bottom: -20px;
    right: -20px;
    z-index: -1;
    opacity: 0;
    transition: all .5s ease-in-out;
}

.faq-wrapp .faq-row .faq-col.active:after{
    opacity: 1;
}

.faq-wrapp .faq-row .faq-col h3 {
    font-weight: 700;
    background: url('../images/arrow-down.svg') no-repeat center;
    background-size: 23px;
    background-position-x: 100%;
    padding-right: 30px;
    cursor: pointer;
    font-size: 18px;
}

.faq-wrapp .faq-row .faq-col h3.active{
    background: url('../images/arrow-top.svg') no-repeat center;
    background-size: 23px;
    background-position-x: 100%;
}

.faq-wrapp .faq-row .faq-col .faq-content {
    width: 100% !important;
    margin: 20px 0 0;
}

.faq-wrapp .faq-row .faq-col .faq-content p {
    margin: 0 0 20px;
    color: #696C84;
}

.people-says-wrapp {
    padding: 50px 0;
}

.people-says-wrapp .people-says-left {
    width: 20%;
}

.people-says-wrapp .people-says-row {
    justify-content: space-between;
}

.people-says-wrapp .people-says-right {
    width: 75%;
}

.people-says-wrapp .people-says-left h2 {
    font-weight: 800;
}

.people-says-wrapp .people-says-left h2 span {
    display: inline-block;
}

.people-says-wrapp .people-says-right .people-says-col {
    padding: 0 25px;
}

.people-says-wrapp .people-says-right .people-says-col .people-says-box {
    background: #ffff;
    width: 100%;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    margin: 0 0 25px;
}

.people-says-wrapp .people-says-right .people-says-col .people-says-box .quote-icon {
    width: 65px;
    margin: 0 0 20px;
}

.people-says-wrapp .people-says-right .people-says-col .people-says-box p {
    font-size: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    color: #696C84;
    margin: 0 0 20px;
}

.people-says-wrapp .people-says-right .people-says-col .people-says-box:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/Group\ 14.png') bottom right no-repeat;
    background-size: 100%;
    bottom: -15px;
    right: -15px;
    z-index: -1;
}

.people-says-wrapp .people-says-right .people-says-col .people-details {
    padding: 0 20px;
}

.people-says-wrapp .people-says-right .people-says-col .people-details h4 {
    font-weight: 700;
    margin: 0 0 5px;
}

.people-says-wrapp .people-says-right .people-says-col .people-details span.date {
    color: #696C84;
    font-size: 14px;
}

.people-says-wrapp .people-says-right button.slick-prev{
    background: #fff;
    background-size: 100%;
    width: 40px;
    height: 40px;
    left: -330px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    top: inherit;
    bottom: 50px;
} 

.people-says-wrapp .people-says-right button.slick-next{
    background: #fff;
    width: 40px;
    height: 40px;
    left: -280px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    top: inherit;
    bottom: 50px;
} 

.people-says-wrapp .people-says-right button.slick-prev::before{
    content: "";
    display: block;
    background: url('../images/test-left-arrow.svg') center no-repeat;
    width: 100%;
    height: 100%;
    background-position-y: -10px;
}

.people-says-wrapp .people-says-right button.slick-next::before{
    content: "";
    display: block;
    background: url('../images/test-right-arrow.svg') center no-repeat;
    width: 100%;
    height: 100%;
    background-position-y: -10px;
}

.people-says-wrapp .talk-to-exp {
    margin: 100px 0 0;
}

footer {
    padding: 70px 0;
    width: 100%;
    float: left;
    background: #151D31;
}

footer .ftr-row .col-md-2 {
    width: 14.58%;
}

footer .news-letter h4 {
    color: #ffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px;
}

footer .news-letter .text-field {
    width: 100%;
    position: relative;
    max-width: 450px;
}

footer .news-letter .text-field input {
    width: 100%;
    height: 50px;
    background: url(../images/newsletter.svg) center no-repeat;
    background-size: 20px;
    background-position-x: 15px;
    border: 1px solid #4b4f68;
    padding: 12px 80px 12px 50px;
    border-radius: 10px;
    color: #4b4f68;
}

footer .news-letter .text-field button.sub {
    background: #b62674;
    color: #fff;
    position: absolute;
    right: 0;
    height: 51px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #b62674;
    padding: 0 18px;
    border-radius: 0 10px 10px 0;
}

footer .footer-logo {
    margin: 0 0 30px;
}

.ftr-links h3 {
    font-weight: 600;
    color: #ffff;
    font-size: 18px;
    margin: 0 0 20px;
}

.ftr-links ul li {
    color: #ffff;
    margin: 0 0 10px;
    font-weight: 200;
}
.ftr-links ul li a {
    color: #ffff;
}

.ftr-links ul li a:hover {
    color: #b62674;
}
.ftr-row1 {
    margin-top: 30px;
    align-items: end;
}

.ftr-terms p {
    color: #ffff;
    opacity: 25%;
    margin: 0 0 10px;
}


.inner-banner {
    margin: 89px 0 0;
    background: url('../images/header.jpg') center no-repeat;
    background-size: cover;
    padding: 70px 0;
}

.inner-banner h1 {
    color: #fff;
}


.inner-content-wrapp {
    padding: 50px 0;
}

.bread-crums {
    width: 100%;
    margin: 0 0 50px;
}

.bread-crums ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.bread-crums ul li {
    margin-right: 10px;
    padding-right: 20px;
    position: relative;
}

.bread-crums ul li:after{
    content: "";
    width: 9px;
    height: 9px;
    background: url(../images/chevron-right-solid.svg) no-repeat center;
    background-size: 100%;
    position: absolute;
    right: 0;
    top: 10px;
}

.bread-crums ul li:last-child:after {
    display: none;
}

.bread-crums ul li a {
    color: #000;
}
.content-wrapp {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.content-wrapp .content-left {
    width: 70%;
    padding-right: 30px;
}

.content-wrapp .content-right {
    width: 30%;
}

.content-wrapp .content-left .video-wrapp {
    width: 100%;
    margin: 0 0 30px;
}

.content-wrapp .content-left .video-wrapp img {
    width: 100%;
}

.content-wrapp .content-left .video-wrapp {
    width: 50%;
    margin: 0 0 30px;
    position: relative;
}

.content-wrapp .content-left .video-wrapp .play-btn {
    background: no-repeat;
    border: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
}

.content-wrapp .content-left .video-wrapp video {
    width: 100%;
    height: auto;
}

.content-wrapp .content-left .video-wrapp img {
    width: 100%;
}

.content-wrapp .content-left h3 {
    font-size: 18px;
    font-weight: 600;
    color: #c50076;
    margin: 0 0 30px;
}

.content-wrapp .content-left h3 a {
    color: #c50076;
    text-decoration: underline;
}

.content-wrapp .content-left h3 a:hover {
    color: #000;
}

.content-wrapp .content-left h2 {
    font-size: 18px;
    font-weight: 600;
    color: #c50076;
    margin: 0 0 30px;
    line-height: 28px;
}

.content-wrapp .content-left h2 a {
    color: #c50076;
    text-decoration: underline;
}

.content-wrapp .content-left h2 a:hover {
    color: #000;
}

.content-wrapp .content-left p {
    margin: 0 0 30px;
}

.content-wrapp .content-left p img {
    width: 100% !important;
    height: auto !important;
}

.content-wrapp .content-left p a {
    color: #000;
    text-decoration: underline;
}

.content-wrapp .content-left p a:hover {
    color: #c50076;
}

.content-wrapp .content-left ul {
    margin: 0 0 30px;
}

.content-wrapp .content-left ul li {
    padding-left: 50px;
    margin: 0 0 20px;
    position: relative;
    display: block;
}

.content-wrapp .content-left ul li::before{
    content: "";
    position: absolute;
    background: url('../images/Vector.svg') center no-repeat;
    background-size: 100%;
    width: 15px;
    height: 15px;
    left: 0;
    top: 6px;
}

.content-wrapp .content-left ul li strong {
    font-weight: 600;
}

.content-wrapp .content-left ul li span {text-decoration: underline;}

.content-wrapp .content-left .mb_conteneurBillet h1.h4-intertitre-2 {
    margin: 0 0 30px;
}

.btnRetour {
    color: #000;
    margin: 0 0 20px;
    display: block;
}

.liens_sociaux a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 15px 0 0;
    background: #B62674;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    border: 1px solid #B62674;
}

.liens_sociaux {
    display: flex;
    flex-wrap: wrap;
}

.liens_sociaux .social-icon {
    width: 15px;
    display: inline-block;
    position: relative;
    margin: 2px 4px 0 0;
    padding: 0px 0 0;
}

.liens_sociaux .social-icon span.hover-icon {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.liens_sociaux .social-icon img {
    height: 15px;
}

.liens_sociaux a span.share_text {
    margin: -4px 0 0;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

.liens_sociaux .social-icon > img {
    filter: invert(1);
}

.liens_sociaux a:hover {
    background: none;
}

.liens_sociaux a:hover .social-icon > img {
    opacity: 0;
}

.liens_sociaux a:hover .social-icon span.hover-icon {
    opacity: 1;
}

.content-wrapp .content-left .flow-chart {
    margin: 50px 0 0;
}

.content-wrapp .content-left .flow-chart .flow-chart-head {
    padding: 20px;
    border: 1px solid #c50076;
    margin: 0 0 20px;
}

.content-wrapp .content-left .flow-chart .flow-chart-head h3 {
    margin: 0;
    text-align: center;
    font-weight: 700;
}
.content-wrapp .content-left .flow-chart .flow-img {
    width: 100%;
}

.content-wrapp .content-left .flow-chart .flow-img img {
    width: 100%;
}

.content-wrapp .content-right .accord-wrapp {
    width: 100%;
}

.accord-wrapp .accord-col {
    width: 100%;
    margin: 0 0 20px;
    border: 2px solid #dddfea;
    padding: 20px;
    border-radius: 5px;
}

.accord-wrapp .accord-col h3 {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    background: url('../images/arrow-down.svg') center no-repeat;
    background-size: 25px;
    background-position-x: 100%;
    padding-right: 25px;
}

.accord-wrapp .accord-col h3.active{
    background: url('../images/arrow-top.svg') center no-repeat;
    background-size: 25px;
    background-position-x: 100%;
}

.accord-wrapp .accord-col a {
    color: #000;
    display: block;
}

.accord-wrapp .accord-col a:hover {
    color: #c50076;
}

.accord-wrapp .accord-col .accord-conten {
    width: 100% !important;
    margin: 20px 0 0;
}


.accord-col1 {
    margin: 30px 0 0;
}

.accord-col1 h3 {
    background-size: 20px !important;
}

.accord-col1 .accord-conten1 {
    width: 100% !important;
    margin: 20px 0 0;
}


.content-wrapp .content-right .talk-to-exp p {
    width: 100%;
}



.accord-wrapp .accord-col .accord-conten a {
    color: #000;
    display: block;
    margin: 0 0 8px;
}

.accord-wrapp .accord-col .accord-conten a:hover {
    color: #c50076;
}

.content-wrapp .content-right .talk-to-exp {
    background-position-y: bottom;
}

.req-link {
    background: #B62674 url(../images/button-arrow.svg) center no-repeat;
    background-size: 15px;
    background-position-x: 90%;
    color: #ffff;
    display: block;
    width: fit-content;
    padding: 10px 65px 12px 20px;
    border-radius: 5px;
    border: 1px solid #B62674;
    font-weight: 300;
    font-size: 14px;
    margin: 30px 0 0;
}

.req-link:hover{
    background: transparent url(../images/button-arrow\ 1.svg) center no-repeat;
    background-size: 15px;
    background-position-x: 90%;
    color: #B62674;
}

.boutonDocument-link {
    background: #B62674 url(../images/button-arrow.svg) center no-repeat;
    background-size: 15px;
    background-position-x: 90%;
    color: #ffff;
    display: block;
    width: fit-content;
    padding: 10px 65px 12px 20px;
    border-radius: 5px;
    border: 1px solid #B62674;
    font-weight: 300;
    font-size: 14px;
    margin: 30px 0 0;
}

.boutonDocument-link:hover{
    background: transparent url(../images/button-arrow\ 1.svg) center no-repeat;
    background-size: 15px;
    background-position-x: 90%;
    color: #B62674;
}

.latest-news {
    width: 100%;
    padding: 50px;
    background: #151D31 url(../images/sidebar-bg.svg) no-repeat;
    background-position-x: 90%;
    background-position-y: bottom;
    border-radius: 10px;
    background-size: 40%;
    margin: 0 0 30px;
}

.latest-news p {color: #fff;}

.latest-news p.p4-onglet {
    color: #fff;
    font-weight: 600;
    margin: 0 0 20px;
    font-size: 22px;
}

.latest-news a {
    display: block;
    color: #fff;
    margin: 0 0 15px;
}

.latest-news a:hover {
    color: #c50076;
}

.latest-news .p3-boutonLien a {
    background: #B62674 url(../images/button-arrow.svg) center no-repeat;
    background-size: 15px;
    background-position-x: 90%;
    color: #ffff !important;
    display: block;
    width: fit-content;
    padding: 10px 65px 12px 20px;
    border-radius: 5px;
    border: 1px solid #B62674;
    font-weight: 300;
    font-size: 14px;
    margin: 30px 0 0 ;
    text-decoration: none !important;
}

.latest-news .p3-boutonLien a:hover {
    background: transparent url(../images/button-arrow\ 1.svg) center no-repeat;
    background-size: 15px;
    background-position-x: 90%;
    color: #B62674 !important;
}


.contact-section {
    width: 100%;
    position: fixed;
    height: 100vh;
    background: rgb(21 29 49 / 80%);
    z-index: 9;
    display: none;
    top: 0;
}

.contact-section.show {
    display: block;
}

.contact-section h1 {
    color: #fff;
    margin: 0 0 20px;
}

.contact-section p {
    color: #ffff;
    width: 80%;
    margin: 0 0 35px;
}

.contact-section .contact-row {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 50px 0;
    overflow-y: auto;
}


.steps-wrapp .steps h3 {
    color: #fff;
    font-size: 24px;
    margin: 0 0 30px;
    font-weight: 500;
}

.steps-wrapp .steps .step-box {
    width: 40%;
    background: #ffff;
    padding: 30px;
    border-radius: 10px;
}

.steps-wrapp .steps .step-box h3 {
    color: #000;
    font-weight: 700;
    font-size: 28px;
}

.steps-wrapp .steps .step-box .text-fields {
    width: 100%;
}

.steps-wrapp .steps .step-box .text-fields input[type=checkbox] {
    display: none;
}

.steps-wrapp .steps .step-box .text-fields input[type=radio] {
    display: none;
}

.steps-wrapp .steps .step-box .text-fields label {
    width: 100%;
    border: 1px solid #e0e2ec;
    margin: 0 0 20px;
    padding: 10px;
    border-radius: 7px;
    font-size: 18px;
    font-weight: 600;
}

.steps-wrapp .steps .step-box .text-fields label:hover {
    background: #c50076;
    color: #fff;
}ss

.steps-wrapp .steps .step-box .text-fields input[type=checkbox]:checked+label {
    background: #c50076;
    color: #fff;
}

.steps-wrapp .steps .step-box .text-fields input[type=radio]:checked+label {
    background: #c50076;
    color: #fff;
}

.steps-wrapp .steps .step-box .next-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.steps-wrapp .steps .step-box .next-btn button.back-toggle {
    background: #B62674;
    padding: 10px 20px 12px 20px;
}

.steps-wrapp .steps .step-box .next-btn button {
    /* background: #c50076;
    border: 1px solid #c50076;
    padding: 5px 30px 5px 15px;
    color: #fff;
    border-radius: 5px; */

    background: #B62674 url(../images/button-arrow.svg) center no-repeat;
    background-size: 15px;
    background-position-x: 90%;
    color: #ffff;
    display: block;
    width: fit-content;
    padding: 10px 65px 12px 20px;
    border-radius: 5px;
    border: 1px solid #B62674;
    font-weight: 500;
    font-size: 16px;
}

.steps-wrapp .steps .step-box .next-btn button.send-btn{
    background: #c50076;
    border: 1px solid #c50076;
    padding: 10px 30px 10px 30px;
    color: #fff;
    border-radius: 5px;
}

.steps-wrapp .steps {
    margin: 0 0 20px;
    display: none;
}

.steps-wrapp .steps.active{
    display: block;
}

.steps.contact-form .step-box h3 {
    margin: 0 0 15px;
}

.steps.contact-form .step-box p {
    margin: 0 0 20px;
    color: #000;
}

.steps.contact-form .step-box .text-fields .text-field {
    width: 100%;
    margin: 0 0 20px;
}

.steps.contact-form .step-box .text-fields .text-field label {
    border: none;
    padding: 0;
    margin: 0 0 10px;
    background: none;
    color: #000;
}

.steps.contact-form .step-box .text-fields .text-field input {
    border: 1px solid #e0e2ec;
    width: 100%;
    height: 45px;
    border-radius: 6px;
    padding: 12px;
}

.steps.contact-form .step-box .text-fields .text-field select {
    width: 100%;
    height: 45px;
    padding: 12px;
    border: 1px solid #e0e2ec;
    border-radius: 6px;
    background: url();
}

.steps.contact-form .step-box .text-fields .text-field  textarea {
    width: 100%;
    height: 160px;
    padding: 12px;
    border: 1px solid #e0e2ec;
    border-radius: 6px;
    resize: none;
}

.steps-wrapp .steps .step-box .text-fields .privacy-terms {
    width: 100%;
    margin: 0 0 20px;
}

.steps-wrapp .steps .step-box .text-fields .privacy-terms input[type="checkbox"] {
    display: inline-block;
    margin-right: 10px;
}

.steps-wrapp .steps .step-box .text-fields .privacy-terms  label {
    width: auto;
    border: none;
    padding: 0;
    display: inline;
    background: none !important;
    color: #000 !important;
}

.steps-wrapp .steps .step-box .text-fields .privacy-terms input[type="checkbox"]:checked+label {
    background: none;
    color: #000;
}

.steps-wrapp .steps .step-box .text-fields span.note {
    display: block;
    margin: 0 0 20px;
    color: rgb(0 0 0 / 70%);
}

.steps-wrapp .steps .step-box .text-fields .bot-validation {
    margin: 0 0 30px;
}

.search-link {
    position: relative !important;
}

header .header-main .head-right ul.head-nav li.nav-item a.nav-link.search-btn:after {
    bottom: -27px;
    width: 100%;
}

header .header-main .head-right ul.head-nav li.nav-item.active a.nav-link.search-btn:after {
    opacity: 1;
    visibility: visible;
}

.search-menu {
    position: absolute;
    background: #fff;
    width: 380px;
    right: -17px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.12);
    padding: 30px;
    border-radius: 10px;
    top: 50px;
    z-index: -1;
    margin-top: -500%;
    transition: all .5s ease-in-out;
    opacity: 0;
}

.search-menu.show {
    margin-top: 0;
    opacity: 1;
}

.search-menu li {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.search-menu li form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.search-menu .search-button {
    background: #c50076;
    width: 50px;
    height: 50px;
    border: 1px solid #c50076;
    box-shadow: 0px 0px 50px 0px rgb(197 0 118 / 10%);
    border-radius: 5px;
    position: relative;
    padding: 13px;
    margin-left: 10px;
    transition: all .5s ease-in-out;
}

.search-menu .search-button .icon {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.search-menu .search-button .icon .hover-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: all .5s ease-in-out;
}

.search-menu .search-button:hover {
    background: none;
}

.search-menu .search-button:hover .hover-icon{
    opacity: 0;
}

.search-menu input[type="search"] {
    width: 100%;
    flex: 1 0 0;
    border: 1px solid #c50076;
    border-radius: 5px;
    padding: 12px;
    height: 50px;
    color: #c50076;
}


.close-button {
    position: fixed;
    right: 10%;
    top: 65px;
    z-index: 99;
}

.close-button .cross-line {
    width: 4px;
    display: inline-block;
    height: 38px;
    background: #fff;
    transform: rotate(40deg);
    position: relative;
}
.close-button a.close-btn {
    width: 45px;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.close-button a.close-btn img {
    filter: invert(1);
}
.close-button .cross-line:nth-child(2) {
    transform: rotate(140deg);
    margin: 0 0 0 -4px;
    right: -1px;
}


.content-wrapp .content-left .mb_conteneurBillet {
    margin: 0 0 20px;
    position: relative;
    width: 100%;
    padding: 0 0 20px;
}

.content-wrapp .content-left .mb_conteneurBillet .p2-commentaire {
    margin: 0;
}

.content-wrapp .content-left .mb_conteneurBillet .p2-commentaire a {
    font-size: 13px;
    color: #a1a0a0;
}

.content-wrapp .content-left .mb_conteneurBillet .h3-intertitre-1 {
    margin: 0 0 15px;
}

.content-wrapp .content-left .mb_conteneurBillet .h3-intertitre-1 a {
    color: #000;
    font-size: 20px;
}

.content-wrapp .content-left .mb_conteneurBillet .p1-texte p.texte {
    margin: 0 0 15px;
}

.content-wrapp .content-left .mb_conteneurBillet a:hover {
    color: #c50076 !important;
}

.content-wrapp .content-left .mb_conteneurBillet .blocLireLaSuite a.mb_lireLaSuite {
    display: block;
    color: #000;
    font-size: 14px;
}

.content-wrapp .content-left .mb_conteneurBillet .blocLireLaSuite {
    width: 100%;
    display: flex;
    justify-content: end;
}

.content-wrapp .content-left .mb_conteneurBillet:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgb(0 0 0 / 20%);
    left: 0;
    bottom: 0;
}

.pagination {
    margin: 30px 0 !important;
}

.pagination li.page-item {
    padding: 0 !important;
    margin: 0 8px 0 0 !important;
}

.pagination li.page-item:before {
    display: none;
}

.pagination li.page-item span.page-link {
    text-decoration: none;
    color: #000;
}

.pagination li.page-item.active span.page-link {
    background: #c50076;
    border-color: #c50076;
    color: #ffff;
}

.pagination li.page-item a.page-link {
    color: #000;
}

.pagination li.page-item.disabled {
    display: none;
}

.content-wrapp .content-left table.texte {
    width: 100%;
    margin: 0 0 20px;
}

.content-wrapp .content-left table.texte tbody tr td p a {
    text-decoration: none;
}

.content-wrapp .content-left table.texte tbody tr td p {
    margin: 0 0 8px 0;
    text-align: left;
}

.content-wrapp .content-left table.texte tbody tr td:first-child {
    width: 75px;
}

.content-wrapp .content-left p strong {
    font-size: 18px;
    font-weight: 600;
}

.content-wrapp .content-left .articles-group {
    width: 100%;
    float: left;
    margin: 0 0 8px;
}

.content-wrapp .content-left .articles-group img {
    width: 50px !important;
}

.content-wrapp .content-left .articles-group p {
    margin: 0 !important;
}

.content-wrapp .content-left .articles-group p.p1-texte {
    font-size: 14px;
    font-weight: 300;
}

.content-wrapp .content-left table tbody tr td {
    vertical-align: middle;
    padding: 0 10px;
}

.content-wrapp .content-left table tbody tr td p {width: 100%;}

.content-wrapp .content-left table tbody tr td p a {
    width: 100%;
    display: block;
}

.content-wrapp .content-left table tbody tr td img {
    width: 100% !important;
    margin: 0 !important;
}

.content-wrapp .content-left table tbody tr td p.p2-commentaire {
    margin: 0;
    font-size: 13px;
    line-height: 18px;
}

.content-wrapp .content-left table tbody tr td 
 p.p1-texte {
    margin: 0 0 4px;
}

.content-wrapp .content-left table tbody tr {
    margin: 0 0 20px;
    display: block;
}

.content-wrapp .content-left ul li a {
    color: #000;
}

.content-wrapp .content-left ul li a:hover {
    color: #c50076;
}

.content-wrapp .content-left .table-outer {
    width: 100%;
    margin: 0 0 30px;
    padding: 0 0 30px;
    position: relative;
}

.content-wrapp .content-left .table-outer:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgb(0 0 0 / 20%);
    bottom: 0;
    left: 0;
}

.content-wrapp .content-left .fondArticle_demiColonneFond p img {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

.latest-news p.h3-intertitre-1 {
    color: #fff;
    font-weight: 600;
    margin: 0 0 20px;
    font-size: 22px;
}

.latest-news p.p1-texte {
    display: block;
    color: #fff;
    margin: 0 0 15px;
}

.latest-news p a span {
    color: #fff !important;
}

.latest-news p a:hover span {
    color: #B62674 !important;
}

.content-wrapp .content-left #me_formulaire {
    width: 100%;
}

.content-wrapp .content-left #me_formulaire .form-group {
    width: 100%;
    margin: 0 0 35px;
    padding: 0 10px;
}
.content-wrapp .content-left #me_formulaire .form-inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.content-wrapp .content-left #me_formulaire .form-inner .form-group.contactName {
    width: 50%;
}

.content-wrapp .content-left #me_formulaire .form-inner .form-group.contactFName {
    width: 50%;
}

.content-wrapp .content-left #me_formulaire .form-inner  .form-group.contactEmail {
    width: 33.33%;
}

.content-wrapp .content-left #me_formulaire .form-inner  .form-group.contactCn {
    width: 33.33%;
}

.content-wrapp .content-left #me_formulaire .form-inner .form-group.contactTel {
    width: 33.33%;
}

.content-wrapp .content-left #me_formulaire .form-group input {
    border: 1px solid #e0e2ec;
    width: 100%;
    height: 45px;
    border-radius: 6px;
    padding: 12px;
}

.content-wrapp .content-left #me_formulaire .form-group select {
    border: 1px solid #e0e2ec;
    width: 100%;
    height: 45px;
    border-radius: 6px;
    padding: 12px;
}

.content-wrapp .content-left #me_formulaire .form-group label {
    font-size: 16px;
    margin: 0 0 10px;
}

.content-wrapp .content-left #me_formulaire .form-group textarea {
    border: 1px solid #e0e2ec;
    width: 100%;
    height: 150px;
    border-radius: 6px;
    padding: 12px;
}

.content-wrapp .content-left #me_formulaire .form-group input[type=checkbox] {
    width: 15px;
    float: left;
    display: inline-block;
    height: 15px;
    margin: 5px 7px 0 0;
}


.content-wrapp .content-left #me_formulaire .form-group.contactOffer label.options {
    margin: 0;
    display: inline-block;
}

.content-wrapp .content-left #me_formulaire .form-inner .captcha {
    padding: 0 10px;
    width: 100%;
}

.conatact-loc {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.conatact-loc iframe.googlemap {
    width: 100%;
    height: 30vw;
    margin: 0 0 30px;
}

.conatact-loc div#colonne_principale {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.conatact-loc div#colonne_principale .colonne_img {
    width: 38%;
}
.conatact-loc div#colonne_principale h2 {
    font-size: 16px;
    margin: 0;
}

.content-wrapp .content-left input[type=submit] {
    background: #B62674;
    background-size: 15px;
    background-position-x: 90%;
    color: #ffff;
    display: block;
    width: fit-content;
    padding: 10px 20px 12px 20px;
    border-radius: 5px;
    border: 1px solid #B62674;
    font-weight: 300;
    font-size: 14px;
    margin: 30px 0 ;
}

.content-wrapp .content-left input[type=submit]:hover {
    color: #B62674;
    background: none;
}

.content-wrapp .content-left button[type=submit] {
    background: #B62674;
    background-size: 15px;
    background-position-x: 90%;
    color: #ffff;
    display: block;
    width: fit-content;
    padding: 10px 20px 12px 20px;
    border-radius: 5px;
    border: 1px solid #B62674;
    font-weight: 300;
    font-size: 14px;
    margin: 30px 0 ;
}

.content-wrapp .content-left button[type=submit]:hover {
    color: #B62674;
    background: none;
}

.content-wrapp .content-left p.commentaire {
    font-size: 13px;
    color: #696C84;
}

.content-wrapp .content-left .table-outer.useful-links table {
    border-collapse: collapse;
    display: block !important;
}

.content-wrapp .content-left .table-outer.useful-links table tbody tr td {display: inline-block;}

.content-wrapp .content-left .table-outer.useful-links table tbody tr td:first-child {
    width: 200px;
    float: left;
}

.content-wrapp .content-left .table-outer.useful-links table tbody tr td:nth-child(2) {
    box-sizing: border-box;
    width: 100%;
    float: right;
    flex: 1 0 0;
}

.content-wrapp .content-left .table-outer.useful-links table tbody tr td a {
    display: inline;
}

.content-wrapp .content-left .table-outer.useful-links table tbody tr td 
 span {
    display: inline-block;
    word-break: break-all;
}

.content-wrapp .content-left .table-outer.useful-links table tbody tr td p strong {
    font-size: 14px;
}

.content-wrapp .content-left .table-outer.useful-links table tbody {
    display: inherit;
}

.content-wrapp .content-left .useful-links table tbody tr {
    display: flex;
    flex-wrap: wrap;
}

.steps-wrapp .steps .thankyou {
    background: #fff;
    width: 85%;
    padding: 30px;
    border-radius: 10px;
}

.steps-wrapp .steps .thankyou h2 {
    font-weight: 600;
    font-size: 32px;
    margin: 0 0 25px;
}

.steps-wrapp .steps .thankyou p.p1-texte {
    margin: 0 0 10px;
    color: #000;
}

.steps-wrapp .steps .thankyou ul li p {
    color: #000;
    margin: 0 0;
}

.steps-wrapp .steps .thankyou .request.details {
    margin: 20px 0;
}

.steps-wrapp .steps .thankyou .request.details h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px;
}

.steps-wrapp .steps .thankyou .request.details .details-wrapper {
    width: 100%;
}

.steps-wrapp .steps .thankyou  ul li {
    margin: 0 0 15px;
}

.steps-wrapp .steps .thankyou  ul li p:first-child {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 5px;
}

.content-wrapp .content-left .contact-thankyou  h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px;
}

.content-wrapp .content-left .contact-thankyou ul li p {
    margin: 0 0 5px;
}

.content-wrapp .content-left .contact-thankyou ul li p:first-child {
    font-weight: 600;
}


.footer-btns-wrapp {
    display: none;
}

.content-wrapp .content-left video {
    height: auto;
    width: 100%;
}

div#titre_nav_secondaire {
    display: none;
}

/* ------------media------------- */

@media (max-width:1399px){
    .home-banner .banner-content .banner-txt {
        width: 68%;
    }
    .node-box-wrapp {
        top: -170px;
    }
    .structure-wrapp {
        padding: 5px 0 70px;
    }
    header .header-main .head-right ul.head-nav li.nav-item a.nav-link {
        padding: 8px 5px;
    }
    .people-says-wrapp .people-says-right button.slick-prev {
        left: -280px;
    }
    
    .people-says-wrapp .people-says-right button.slick-next {
        left: -230px;
    }
}


/* ---------menu--------- */
.menu-burger {
    background: none;
    position: fixed;
    width: 50px;
    height: 50px;
    right: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    display: none;
    z-index:9;
}

.menu-toggle {
    cursor: pointer;
}

.menu-burger span.line {
    width: 25px;
    display: block;
    height: 4px;
    background: #c50076;
    margin: 0 0 5px;
    transition: all .35s ease;
}

.menu-burger span.line:last-child {
    margin: 0;
}

.menu-burger .active span.line:last-child {
    -webkit-transform: translateY(-12px) translateX(0) rotate(-45deg);
    position: relative;
    top: 0;
}

.menu-burger .active span.line:nth-child(2) {
    opacity: 0;
}

.menu-burger .active span.line:first-child {
    -webkit-transform: translateY(6px) translateX(0) rotate(45deg);
    position: relative;
    top: 0;
}

.menu-overlay {
    position: fixed;
    right: 0;
    background: #000;
    width: 100%;
    height: 100vh;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transition: ease all 0.6s;
    padding: 71px 50px 0;
    margin-top: -100%;
    /* transition: all 0.5s ease-in-out 0.5s;
    animation: moveToRight 1s ease-in-out;
    animation-delay: .25s; */

/* @keyframes moveToRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-300px);
    } */
}

.menu-overlay.show{
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    /* animation: moveToLeft 1s ease-in-out;
    animation-delay: .25s; */
}
/* @keyframes moveToLeft {
    0% {
        transform: translateX(-300px);
    }
    100% {
        transform: translateX(0);
    } */


.menu-overlay ul li.nav-item a.nav-link {
    color: #fff !important;
}
.menu-overlay ul.head-nav {
    flex-direction: column;
    width: 100%;
}

.menu-overlay .overlay-link {
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.menu-overlay .overlay-link::-webkit-scrollbar{
    display: none;
}

.menu-overlay ul.head-nav li.nav-item.dropdown {
    width: 100%;
    margin: 0 !important;
}

header .header-main .head-right ul.head-nav.mob {
    display: none;
}

small.error.text-danger {
    font-size: 13px;
    margin: 0 0 15px;
    display: block;
}
.error.warningMsg {
    font-size: 13px;
    color: #dc3545!important;
    margin: 2px 0 0;
    display: block;
}
.warningMsg {
    font-size: 13px;
    color: #dc3545!important;
    margin: 2px 0 0;
    display: block;
}
.error{
    font-size: 13px !important;
    color: #dc3545!important;
    margin: 2px 0 0 !important;
    display: block;
}

.content-wrapp .content-left #me_formulaire .form-inner .captcha .g_captcha {
    margin: 0 0 20px;
}
.home-nodes3-col:nth-child(1) .home-nodes3-col-right {
    padding: 30px 0 0 5%;
}
.home-nodes3-col:nth-child(2) .home-nodes3-col-right {
    padding-left: 5%;
}
.home-nodes3-col:nth-child(3) .home-nodes3-col-right {
    padding-left: 8%;
}

.home-nodes3-col:nth-child(2) .home-nodes3-col-left {
    padding: 30px 0 0 8%;
}
.home-nodes3-col:nth-child(1) .home-nodes3-col-right .logo {
    width: 220px;
    margin-bottom: 20px;
}





.sepLogo.logo-wrapper {
    float: left;
    width: 100%;
    background: #f1f1f1;
    padding: 15px 0;
    border-bottom: 4px solid #bd0077;
    margin: 20px 0;
}

.sepLogo.logo-wrapper ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
}

.sepLogo.logo-wrapper ul li {
    padding: 0 7px;
    width: 12%;
    margin: 0;
}

.sepLogo.logo-wrapper ul li:before {display: none;}

.bnr-form {
    width: 100%;
    background: #151d31;
    padding: 20px;
    margin: 0 0 20px;
    border-radius: 10px;
}

.bnr-form .bnr-form-txt {
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.bnr-form .bnr-form-txt .progress-bar {
    display: flex !important;
    height: 30px;
    font-size: .75rem;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #982168;
    width: 100%;
    margin: 0 0 20px;
}

.bnr-form .bnr-form-txt .progress-bar .bar {
    animation: progress-bar-stripes 2s linear infinite;
    padding-top: 3px;
    font-weight: 600;
    font-size: 14px;
    background-color: #982168;
    background-image: linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-size: 40px 40px;
    border-radius: 8px;
    height: 100%;
}

.bnr-form .bnr-form-txt .form-group {
    width: 100%;
}

.bnr-form .bnr-form-txt .form-group .firstFrm {
    width: 100%;
    margin: 0 0 20px;
}

.bnr-form .bnr-form-txt .form-group .firstFrm label {
    font-size: 15px;
    line-height: 27px;
    letter-spacing: .5px;
    margin: 0 0 10px;
}

.bnr-form .bnr-form-txt .form-group .firstFrm select {
    border: 1px solid #e0e2ec;
    width: 100%;
    height: 45px;
    border-radius: 6px;
    padding: 8px 12px;
    -webkit-appearance: none;
    cursor: pointer;
    background: url('../images/chevron-down-1.svg') no-repeat center;
    background-size: 16px;
    background-position-x: 97%;
}

.bnr-form .bnr-form-txt .form-group .cunsult-btn {
    background: #B62674;
    color: #ffff;
    display: block;
    width: fit-content;
    padding: 10px 20px 12px 20px;
    border-radius: 5px;
    border: 1px solid #B62674;
    font-weight: 300;
    font-size: 14px;
    margin: 20px auto 0;
    transition: all 0.25s ease-out 0s;
}


.bnr-form .bnr-form-txt .form-group .cunsult-btn:hover {
    color: #B62674;
    background: none;
}

.bnr-form .bnr-form-txt .form-group .secondFrm {
    width: 100%;
}

.bnr-form .bnr-form-txt .form-group .secondFrm span.subhead {
    font-size: 15px;
    line-height: 27px;
    letter-spacing: .5px;
    margin: 0 0 15px;
    display: block;
}

.bnr-form .bnr-form-txt .form-group .secondFrm .fm-full {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.bnr-form .bnr-form-txt .form-group .secondFrm .fm-full .form-group.half-width {
    width: 48%;
    margin: 0 4% 4% 0;
}

.bnr-form .bnr-form-txt .form-group .secondFrm .fm-full .form-group.half-width:nth-child(2n) {
    margin-right: 0;
}

.bnr-form .bnr-form-txt .form-group .secondFrm .fm-full .form-group.half-width label {font-size: 15px;line-height: 27px;letter-spacing: .5px;margin: 0 0 10px;}

.bnr-form .bnr-form-txt .form-group .secondFrm .fm-full .form-group.half-width input {
    border: 1px solid #e0e2ec;
    width: 100%;
    height: 45px;
    border-radius: 6px;
    padding: 8px 12px;
    -webkit-appearance: none;
}

.bnr-form .bnr-form-txt .form-group .secondFrm .fm-full .form-group.half-width select {
    border: 1px solid #e0e2ec;
    width: 100%;
    height: 45px;
    border-radius: 6px;
    padding: 8px 12px;
    -webkit-appearance: none;
    background: url('../images/chevron-down-1.svg') no-repeat center;
    background-size: 16px;
    background-position-x: 95%;
}

.bnr-box-cover {
    width: 100%;
}

.bnr-box-cover ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.bnr-box-cover ul li {
    padding-left: 20px !important;
    margin: 0 10px 20px !important;
}

/* WEBSTARS CUSTOM CSS // APR 2025 ----------------------------------------------- */

dialog#cp-popup::backdrop {
  background-color: #000;
  opacity: 0.75;
}

.cp-popup {
    font-size: 14px; 
    color: rgb(81, 81, 81);
    align-items: center; 
    width: 100%;
    margin: 3rem auto 0;
    background: transparent;
    border: none;
    overflow: hidden;
} 

.cp-popup .popup-container {
    position: relative;
    margin-block: auto;
    margin-inline: auto;
    width: 500px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 60px;
}

.cp-popup .popup-close-btn {
    align-self: end;
    background-color: transparent;
    border: none;
    padding: 1rem;
    color: gray;
}

.cp-popup .popup-content {
    padding: 1rem 4rem;
}

.popup-content .img-block {
    max-width: 200px;
    margin-inline: auto;
    margin-bottom: 3rem;
}

.popup-content .content-block {
    color: #1e2850;
    font-weight: bold;
    font-size: 16px;
}

.popup-content .content-block > p {
    font-size: 17px;
}

.popup-content .popup-button {
    color: white;
    background-color: #1e2850;
    font-weight: 900;
    text-align: center;
    padding: 1rem 3rem;
    font-size: 18px;
    display: block;
    margin-block: 2rem;
    margin-bottom: 1rem;
}

.popup-content .default-btn {
    text-align: center;
    display: block;
    background: none;
    border: none;
    padding: 1rem 3rem;
    margin-inline: auto;
}

.about-wrap {
    margin-top: 0;
}

.about-wrap > div + div {
    padding-left: 3%;
}

.about-wrap h2 {
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-wrap p {
    margin-bottom: 1rem;
}

/* ------------------------------------------------------------------------------- */

@media (max-width:1199px){
    header .header-main .head-right ul.head-nav.desk {
        display: none;
    }
    .menu-burger{
        display: flex;
    }
    header .header-main .head-right ul.head-nav.mob {
        display: block;
    }
    header .header-main .head-right ul.head-nav li.nav-item a.nav-link {
        padding: 8px 10px;
    }
    header .header-main .head-right ul.head-nav li.nav-item a.nav-link.dropdown-toggle {
        background-position-x: 95%;
    }
    header .header-main .menu-overlay ul.head-nav li.nav-item {
        /* border-bottom: 1px solid #424242; */
        width: 100%;
        margin: 0 !important;
    }
    
    header .header-main .head-right ul.head-nav li.nav-item a.nav-link.dropdown-toggle:hover {
        background-position-x: 95%;
    }
    ul.dropdown-menu {
        position: relative;
        padding: 0;
        width: 100% !important;
        border-radius: 8px;
        overflow: hidden;
    }
    
    ul.dropdown-menu li a {
        color: #fff;
        padding: 8px 10px;
        display: block;
        cursor: pointer;
    }
    
    ul.dropdown-menu li {
        background: #676767;
    }
    
    ul.dropdown-menu1 li {
        background: #777777;
    }
    ul.dropdown-menu1{
        width: 100% !important;
    }
    a.dropdown-toggle1{
        background: url('../images/menu-arrow.svg') center no-repeat;
        background-size: 12px;
        background-position-x: 95%;
        padding-right: 30px;
    }

    a.dropdown-toggle1.active{
        background: url('../images/menu-arrow-up.svg') center no-repeat;
        background-size: 12px;    
        background-position-x: 95%;
    }

    header .header-main .head-right ul.head-nav li.nav-item.dropdown a.dropdown-toggle{
        background: url('../images/menu-arrow.svg') center no-repeat;
        background-size: 12px;    
        background-position-x: 95%;
        padding-right: 30px;
    }
    header .header-main .head-right ul.head-nav li.nav-item.dropdown a.dropdown-toggle.active{
        background: url('../images/menu-arrow-up.svg') center no-repeat;
        background-size: 12px;    
        background-position-x: 95%;
    }
header .header-main .head-right ul.head-nav.mob {
        display: none;
    }
header .header-main .head-right ul.head-nav li.nav-item a.nav-link:after{
    display: none !important;
}
.search-field {padding: 8px  14px 8px 10px; border: none !important;}

.search-field button {
    background: #c50076;
    width: 50px;
    height: 50px;
    border: 1px solid #c50076;
    box-shadow: 0px 0px 50px 0px rgb(197 0 118 / 10%);
    border-radius: 5px;
    position: relative;
    padding: 13px;
    margin-left: 10px;
    transition: all .5s ease-in-out;
}

.search-field button .icon {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.search-field button .icon .hover-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: all .5s ease-in-out;
}

.search-field button:hover {
    background: none;
}

.search-field button:hover span.hover-icon {
    opacity: 0;
}

.search-field input {
    width: 100%;
    flex: 1 0 0;
    border: 1px solid #c50076;
    border-radius: 5px;
    padding: 12px;
    height: 50px;
    color: #ffff;
    background: none;
}

.search-field form {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.search-field input::placeholder {
    color: #fff;
}
}

/* ----------------------------------------------------------- */

@media (max-width:1199px){
    .home-banner .banner-content .banner-txt {
        width: 71%;
    }
    .home-banner .banner-content .banner-txt h1 {
        font-size: 45px;
        line-height: 53px;
    }
    .node-box-wrapp {
        top: -120px;
    }
    
    .structure-wrapp {
        padding: 30px 0 70px;
    }
    footer .news-letter .text-field {
        width: 95%;
    }
    header .container {
        max-width: 100%;
        padding: 0 55px;
    }
    
    
    .people-says-wrapp .people-says-right button.slick-prev {
        left: -230px;
    }
    
    .people-says-wrapp .people-says-right button.slick-next {
        left: -180px;
    }


    
}

@media (max-width:1024px) {
    .our-services .our-services-col .our-services-col1 {
        width: 23%;
    }
    
    .our-services .our-services-col .our-services-col2 {
        width: 70%;
    }
    
    .our-services .our-services-col .our-services-col2 .our-services-col3 {
        width: 29%;
        margin: 0 8.5% 0 0;
    }
    
    .our-services .our-services-col .our-services-col2 .our-services-col3 h3 {
        font-size: 24px;
    }
    .our-services h2 {
        font-size: 32px;
    }
    .home-nodes3-col .home-nodes3-col-left h2 span{
        display: inline;
    }
    .people-says-wrapp .people-says-left h2 span {
        display: inline;
    }

    .home-banner .banner-content {
        top: 47%;
    }
    
    .home-banner .banner-content .banner-txt h1 {
        font-size: 40px;
        line-height: 45px;
    }
}

@media (max-width:991px) {
    
    .home-banner .banner-content .banner-txt {
        width: 100%;
    }
    
    .node-box-wrapp {
        top: -50px;
    }
    
    .structure-wrapp {
        padding: 0px 0 70px;
    }
    .home-banner .banner-content .banner-txt h1 span {
        display: inline;
    }
    .home-banner {
        margin: 89px 0 0 ;
        padding: 0;
    }
    .content-wrapp .content-left {
        width: 60%;
    }
    
    .content-wrapp .content-right {
        width: 40%;
    }
    .steps-wrapp .steps .step-box {
        width: 60%;
    }
    .people-says-wrapp .people-says-right button.slick-prev {
        left: -180px;
    }
    
    .people-says-wrapp .people-says-right button.slick-next {
        left: -130px;
    }
    .our-services .our-services-col .our-services-col1 {
        width: 25%;
        margin: 0 4.5% 0 0;
    }
    
    .our-services .our-services-col .our-services-col2 .our-services-col3 {
        width: 33%;
        margin: 0 4.5% 0 0;
    }
    .content-wrapp .content-left #me_formulaire .form-inner .form-group.contactEmail {
        width: 100%;
    }
    
    .content-wrapp .content-left #me_formulaire .form-inner .form-group.contactCn {
        width: 100%;
    }
    
    .content-wrapp .content-left #me_formulaire .form-inner .form-group.contactTel {
        width: 100%;
    }
    .content-wrapp .content-left .table-outer.useful-links table tbody tr td:first-child {
        width: 150px;
    }
    .home-banner .banner-content .banner-txt h1 {
        font-size: 36px;
        margin: 0 0 19px;
    }
    .content-wrapp .content-left .video-wrapp .play-btn {
        width: 60px;
    }
    .content-wrapp .content-left .video-wrapp {
    width: 100%;
}
}

@media (max-width:991px) and (min-width:768px){
    footer .ftr-row .col-md-5 {
        width: 100%;
        margin: 0 0 25px;
    }
    
    footer .ftr-row .col-md-2 {width: 25%;}

    .conatact-loc iframe.googlemap {
        width: 100%;
        height: 330px;
        margin: 0 0 20px;
    }
    
    .conatact-loc div#colonne_principale {
        width: 100%;
    }

    .about-wrap {
        margin-top: 5rem;
    }
}

@media (max-width:820px){
.node-box-wrapp {
    top: -30px;
}
}
@media (max-width:767px){
    .node-box-wrapp {
        position: relative;
        top: 0;
    }
    .node-box-wrapp .node-box {
        width: 100%;
        margin: 0 0 70px;
    }

    .structure-wrapp {
        padding: 0px 0;
    }
    
    .nodes-wrapp-2 .nodes-col .nodes-col-left {
        width: 100%;
        margin: 0 0 30px;
    }
    
    .nodes-wrapp-2 .nodes-col .nodes-col-right {
        width: 100%;
        padding: 0;
    }
    .home-nodes3-col .home-nodes3-col-left {
        width: 100%;
        padding: 0;
    }
    
    .home-nodes3-col .home-nodes3-col-right {
        width: 100%;
        margin: 0 0 30px;
    }
    
    .home-nodes3-col {
        flex-direction: column-reverse;
    }
    
    .home-nodes3-col:nth-child(2n) {
        flex-direction: column-reverse;
    }
    
    .home-nodes3-col:nth-child(2n) .home-nodes3-col-left {
        padding: 0;
    }
    
    .talk-to-exp p {
        width: 100%;
    }
    
    .our-services .our-services-col .our-services-col1 {
        width: 100%;
        padding: 0;
        margin: 0 0 50px;
    }
    
    .our-services .our-services-col .our-services-col2 {
        width: 100%;
    }
    
    .our-services .our-services-col .our-services-col2 .our-services-col3 {
        width: 100%;
        margin: 0 0 30px;
    }
    
    .our-services .our-services-col .our-services-col2:before {
        display: none;
    }
    
    .faq-wrapp .faq-row {
        padding: 50px;
    }
    
    .people-says-wrapp .people-says-left {
        width: 100%;
        margin: 0 0  20px;
    }
    
    .people-says-wrapp .people-says-right {
        width: 100%;
    }
    
    .ftr-row1 {
        flex-direction: column-reverse;
    }
    
    footer .news-letter {
        margin: 0 0 20px;
    }
    
    footer .col-md-2 {
        padding: 0;
    }
    
    footer .col-md-6 {
        padding: 0;
    }
    
    footer .col-md-3 {
        padding: 0;
    }
    footer .ftr-row .ftr-links {
        width: 48%;
        margin: 0 2% 20px 0;
    }
    
    footer .ftr-row .ftr-links:last-child {
        margin-right: 0;
    }

    .content-wrapp .content-left {
        width: 100%;
        padding: 0;
        margin: 0 0 30px;
    }
    
    .content-wrapp .content-right {
        width: 100%;
    }

    .steps-wrapp .steps .step-box {
        width: 80%;
    }
    .home-nodes3-col:nth-child(3) .home-nodes3-col-left {width: 100%;}

.home-nodes3-col:nth-child(3) .home-nodes3-col-right {
    width: 100%;
}
.our-services .our-services-col .our-services-col2 .our-services-col3:nth-child(3) {
    width: 100%;
}

.people-says-wrapp .people-says-right button.slick-prev {
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.people-says-wrapp .people-says-right button.slick-next {
    left: inherit;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.home-banner .banner-content {
    top: inherit;
    position: inherit;
    transform: none;
}
.home-banner .banner-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

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

.home-banner {
    padding: 50px 0;
}

.home-banner .banner-content .banner-txt h1 {
    font-size: 40px;
    line-height: 45px;
}
.content-wrapp .content-left .video-wrapp .play-btn {
    width: 80px;
}
.menu-overlay {
    padding: 70px 20px;
}
.home-nodes3-col:nth-child(1) {
    flex-direction: column;
}

.home-nodes3-col:nth-child(1) .home-nodes3-col-right {
    margin-top: 20px;
    padding: 0;
}
.home-nodes3-col:nth-child(3) {
    flex-direction: column-reverse;
}
.home-nodes3-col:nth-child(3) .home-nodes3-col-left {
    padding: 0;
}
.home-nodes3-col:nth-child(2) .home-nodes3-col-right {
    padding-left: 0;
}
.home-nodes3-col:nth-child(3) .home-nodes3-col-right {
    padding-left: 0;
}
.home-nodes3 .home-nodes3-col {
    margin: 0 0 60px;
}
.home-nodes3-col:nth-child(1) .home-nodes3-col-right {
    margin-bottom: 0;
}
.content-wrapp .content-left .latest-news.talk_to_exp {
    display: none;
}
}

@media (max-width:600px) {
    .home-banner{
        background: url('../images/header.jpg') center no-repeat;
        background-size: cover;
        padding: 50px 0;
    }
    .home-banner .banner-bg {
        display: none;
    }
    
    .home-banner .banner-content {
        position: relative;
        transform: none;
        top: inherit;
    }
    .row {
        margin: 0;
    }

    .inner-banner h1 {
        font-size: 35px;
    }

    footer .ftr-row .ftr-links {
        width: 49%;
    }
    
    footer .ftr-row .ftr-links:nth-child(2) {
        margin-right: 0;
    }
    header .container {
        padding: 0 10px 0 15px;
    }
    .steps-wrapp .steps .step-box {
        width: 100%;
    }

    .content-wrapp .content-left #me_formulaire .form-inner .form-group.contactName {
        width: 100%;
    }
    
    .content-wrapp .content-left #me_formulaire .form-inner .form-group.contactFName {
        width: 100%;
    }

    .steps-wrapp .steps .thankyou {
        width: 100%;
        margin: 70px 0 0;
    }
    .close-button {
        position: absolute;
    }

    .home-banner .banner-content .banner-txt h1 {
        font-size: 36px;
    }
    .content-wrapp .content-left .video-wrapp .play-btn {
        width: 70px;
    }

    .conatact-loc iframe.googlemap {
        width: 100%;
        height: 65vw;
        margin: 0 0 20px;
    }
    
    .conatact-loc div#colonne_principale {
        width: 100%;
    }
}

@media (max-width:480px) {
    
    .cp-popup .popup-container {
        width: 100%;
    }
    
    .nodes-wrapp-2 .nodes-col {
        padding: 30px;
    }
    
    .talk-to-exp {
        padding: 30px;
    }
    
    .faq-wrapp .faq-row {
        padding: 30px;
    }
    .inner-banner h1 {
        font-size: 32px;
    }
    
    .inner-banner {
        padding: 50px 0;
    }
    .steps-wrapp .steps .step-box {
        width: 100%;
    }
    .home-nodes3-col .home-nodes3-col-left h2 {
        font-size: 28px;
    }

    .content-wrapp .content-left .table-outer.useful-links table tbody tr td:first-child {
        width: 120px;
    }
    .contact-section h1 {
        font-size: 34px;
    }
    .home-banner .banner-content .banner-txt h1 {
        font-size: 26px;
        line-height: 38px;
    }

    .content-wrapp .content-left .video-wrapp .play-btn {
        width: 60px;
    }
    .conatact-loc div#colonne_principale .colonne_img {
        width: 100%;
    }
    .menu-overlay {
        padding: 70px 0;
    }
}

@media (min-width:1400px) {
    .container{
        max-width: 1250px;
    }
}