* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

.clear {
  clear: both;
  font-size: 1px;
  line-height: 1px;
  display: block;
  height: 0;
}

a {
  display: inline-block;
  margin: 0;
  color: #0067C0;
}

a:hover {
  text-decoration: none;
  color: #db1500 !important;
}

a:visited,
a:focus,
button:focus,
input:focus,
.form-control:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}

ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

html {
  font-size: 16px;
}

.wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 0 0 0;
  position: relative;
  overflow-x: hidden;
}

body {
  font-size: 1rem;
  line-height: 24px;
  font-weight: normal;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  background: #fff;
  color: #32333A;
  font-family: 'Source Sans Pro', sans-serif;
}

.desk-image{display:block;}
.mob-image{display:none;}
.tab-image{display:none;} /* EDITED */
.container {
  max-width: 1057px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.container-fluid {
  padding: 0;
  overflow-x: hidden;
}

/*Header style start*/
.header {
  padding: 11px 60px 12px 73px;
  position: fixed;
  width: 100%;
  top: 0px;
  height: 86px;
  z-index: 999;
  background: #fff;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}

.topbar {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  margin-bottom: 8px;
}

.topbar ul li {
  display: inline-block;
  vertical-align: middle;
}

.topbar ul li a {
  position: relative;
  padding: 0 15px;
  font-size: 12px;
  line-height: 15px;
  color: #32333A;
  font-style: italic;
  font-weight: 300;
}

.topbar ul li a.rgpd {
  padding-right: 35px;
}

.topbar ul li a.rgpd:before {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 19px;
  background: url('../images/check_icon.png') no-repeat;
}

.header .navbar ul.navbar-nav li {
  padding: 8px 21px;
}

.header .navbar ul.navbar-nav li a {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 300;
  color: #32333A;
  text-transform: capitalize;

  position: relative;
}

.header .navbar ul.navbar-nav li a:hover:before,
.header .navbar ul.navbar-nav li.active a:before {
  content: '';
  position: absolute;
  top: 3px;
  right: -4px;
  width: 3px;
  height: 3px;
  margin-left: 3px;
  background: #db1500;
}

.header .navbar ul.navbar-nav li.active a {
  color: #db1500 !important;
}

.social_media ul li a {
  padding: 0 9px;
  font-size: 14px;
}

.social_media {
  padding-left: 30px;
}

.connexion a {
  font-size: 16px;
  line-height: 21px;
  color: #FF573C;
  border: 1px solid #FF573C;
  border-radius: 3px;
  text-transform: capitalize;
  padding: 0 6px;
  margin-left: 22px;
  font-weight: 300;
}

.connexion a:hover {
  background: #FF573C;
  color: #fff !important;
}

.navbar_right {
  display: flex;
  width: 100%;
}


.header .navbar {
  padding: 0;
}

.navbar-dark .navbar-brand {
  padding: 0;
}

.header ul li a:hover {
  color: #000;
}

.navbar-dark .navbar-toggler {
  border: 0;
  color: #000;
}

.page_title {
  margin: 80px 0;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover:hover {
  color: #000;
}

.navbar-expand-md .navbar-nav .dropdown-menu {
  min-width: 138px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 0;
  border: 0;
  padding: 0;
  margin: 0;
}

.header .navbar .dropdown-menu ul {
  padding: 35px 0 10px;
}

.header .navbar .dropdown-menu ul li {
  padding: 0 15px;
}

.header .navbar .dropdown-menu ul li a {
  line-height: 26px;
  margin-bottom: 3px;
  font-weight: normal;
  font-family: 'Catamaran', sans-serif;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown:hover > .dropdown-menu {
  display: block;
  top: 100%;
  left: -18px;
}

.header_fixed .header {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.13);
}

/*.header_fixed .header {
  width: 100%;
  position: fixed;
  visibility: visible !important;
  top: 0;
  left: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.13);
  -webkit-animation: slide-down .5s;
  -moz-animation: slide-down .5s;
  -ms-animation: slide-down .5s;
  -o-animation: slide-down .5s;
  animation: slide-down .5s;
}*/

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    transition: all .3s;
  }

  100% {
    opacity: 0.9;
    transform: translateY(0);
    transition: all .3s;
  }
}

@-moz-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    transition: all .3s;
  }

  100% {
    opacity: 0.9;
    transform: translateY(0);
    transition: all .3s;
  }
}

@-ms-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    transition: all .3s;
  }

  100% {
    opacity: 0.9;
    transform: translateY(0);
    transition: all .3s;
  }
}

@-o-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    transition: all .3s;
  }

  100% {
    opacity: 0.9;
    transform: translateY(0);
    transition: all .3s;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    transition: all .3s;
  }

  100% {
    opacity: 0.9;
    transform: translateY(0);
    transition: all .3s;
  }
}

/* //header end */

/*main start*/

/*main {
  padding-top: 20px;
}*/
/* EDITED */
/*
.top_banner_section {
  padding: 80px 0 140px
}*/

h3 {
  color: #32333A;
  font-size: 26px;
  font-weight: 300;
  line-height: 33px;
  margin-bottom: 37px;
}

h4 {
  color: #32333A;
  font-size: 22px;
  line-height: 28px;
  font-weight: 300;
}

h5 {
  color: #32333A;
  font-size: 20px;
  line-height: 25px;
}

h6 {
  color: #32333A;
  font-size: 18px;
  line-height: 23px;
}

p {
  color: #32333A;
  font-size: 16px;
  font-weight: 200;
  line-height: 26px;
  font-family: 'Catamaran', sans-serif;
}

.top_banner_section ul li,
.email_description ul li {
  padding-left: 40px;
  position: relative;
  font-size: 16px;
  font-weight: 200;
  line-height: 26px;
  margin-bottom: 11px;
  font-family: 'Catamaran', sans-serif;
}

.top_banner_section ul li:before,
.email_description ul li:before {
  content: '';
  position: absolute;
  left: 18px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(219, 21, 0, 0.5);
}

.top_para p {
  width: 90%;
}

.btn {
  margin-bottom: 0 !important;
  padding: 0;
}

.btn button,
.btn a {
  color: #FF573C !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  line-height: 20px !important;
  text-align: center !important;
  background-image: none !important;
  background-color: transparent !important;
  padding: 0 38px 0 0 !important;
}

.vc_btn3.vc_btn3-size-md .vc_btn3-icon {
  height: 12px !important;
}

.full_image,
.full_image figure,
.full_image .vc_single_image-wrapper,
.full_image img {
  width: 100%;
}

.banner_top_img .full_image img {
  /* height: 436px; *//* EDITED */
  height: 500px;
  max-width: 100%;
  vertical-align: top;
  /*object-fit: cover;*/
  object-fit: none;
  object-position: left; /* EDITED */
  /* EDITED */
  z-index: -1;
  position: relative;
}

.top_banner_content {
  position: relative;
  /* EDITED */
  /* left: 22%;*/ 
  left: 23vw;
}

.top_banner_content .btn {
  margin-right: 12px;
}

.top_banner_section:before {
  content: '';
  position: absolute;
  left: -18%;
  top: 2%;
  width: 528px;
  height: 457px;
  background: url(../images/top_left_1.png) no-repeat;
  display: block !important;
}

.top_banner_section:after {
  content: '';
  position: absolute;
  left: -12%;
  top: 163px;
  width: 350px;
  height: 421px;
  background: url(../images/top_left_2.png) no-repeat;
  display: block !important;
}

.process_section:before {
  content: '';
  position: absolute;
  left: -68%;
  top: -180px;
  width: 601px;
  height: 523px;
  background: url(../images/process-1.png) no-repeat;
  display: block !important;
}

.process_section:after {
  content: '';
  position: absolute;
  left: -50%;
  top: 0px;
  width: 357px;
  height: 427px;
  background: url(../images/process-2.png) no-repeat;
  display: block !important;
}

.clients_section h4 {
  font-weight: normal;
  margin-bottom: 70px;
}

/* EDITED
.client_content_sec {
  padding-left: 105px;
}*/

.client_content_sec p {
  max-width: 465px;
  width: 100%;
  color: #000;
  font-size: 18px;
  font-weight: 200;
  line-height: 26px;
}

.client_content_sec .wpb_content_element {
  margin-bottom: 20px;
}

.img_left {
  float: left;
}

.right_txt {
  padding-top: 50px;
  /*padding-left: 140px;*/
}

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

.client_right_sec {
  text-align: center;
  padding-top: 85px;
  position: relative;
}

.client_right_sec:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  top: 0;
  width: 33px;
  height: 34px;
  background: url(../images/circle.png) no-repeat;
  display: block !important;
}

.client_slider .wpb_column.vc_column_container {
  padding: 55px 0 40px;
}

.clients_section {
  position: relative;

}

.clients_section:before {
  content: '';
  position: absolute;
  /*right: -45%;*/
  right: -65%;
  top: -50px;
  width: 535px;
  height: 465px;
  background: url(../images/right_1.png) no-repeat;
  display: block !important;
}

.clients_section:after {
  content: '';
  position: absolute;
  left: auto;
  right: -51%;
  top: 100px;
  width: 356px;
  height: 427px;
  background: url(../images/right_2.png) no-repeat;
  display: block !important;
  z-index: 99;
}

.heading_sec p {
  font-size: 20px;
  font-weight: 100;
  line-height: 30px;
}

.heading_sec .wpb_content_element {
  padding-bottom: 50px;
}

.information_section {
  max-width: 667px;
  width: 100%;
  margin: 0 auto !important;
  position: relative;
  display: flex;
  align-items: center;
}

.information_section .vc_col-sm-9 {
  padding-left: 50px;
}

/*.information_section:before {
  content: '';
  position: absolute;
  left: auto;
  left: 0;
  top: 50px;
  width: 165px;
  height: 426px;
  background: url(../images/left_2.png) no-repeat;
  display: block !important;
  z-index: 99;
}*/

.fourth_section {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.fourth_sec_cont {
  max-width: 500px;
  width: 100%;
}

.list_section .vc_column_container.vc_col-sm-12 {
  margin-top: 100px;
}

.list_section h4 {
  margin-bottom: 45px;
  font-weight: normal;
}

.single_list_section {
  margin-bottom: 80px;
}

.single_list_section h4 a {
  color: #32333A;
  font-size: 18px;
  font-weight: 300;
  line-height: 23px;
  text-align: center;
}

.single_list_section h4 {
  margin-bottom: 30px;
}

.single_list_section h4 a {
  position: relative;
}

.red_dot,
.heading_sec h3,
.heading6_red_dot h6,
.top_promicess_section .heading6_red_dot h4 {
  position: relative;
}

.red_dot:after,
.heading_sec h3:after,
.heading6_red_dot h6:after,
.top_promicess_section .heading6_red_dot h4:after {
  content: '';
  position: absolute;
  height: 5px;
  width: 5px;
  background-color: #DB1500;
  border-radius: 50%;
  margin-left: 5px;
  /*top: 6px;*/
  top: auto;
  bottom: 14px;
}

.single_list_section h4 a:after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 5px solid transparent;
  border-left: 8px solid #FF573C;
  border-bottom: 5px solid transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 10px;
}

.last_section h4 {
  margin-bottom: 40px;
  font-weight: normal;
}

.last_section img {
  margin-bottom: 15px !important;
  width: 100%;
}

.last_section .posts-lists-view h4 {
  margin-bottom: 8px;
}

.last_section .posts-lists-view .categories-list {
  overflow: hidden;
  height: 34px;
}

.last_section .posts-lists-view .categories-list > h4 {
  float: left;
  margin-right: 10px;
}

.last_section .posts-lists-view h4 a {
  color: #58B5AD;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
}

.last_section .posts-lists-view h3 a {
  color: #32333A;
  font-size: 20px;
  line-height: 25px;
  font-weight: normal;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.last_section .posts-lists-view {
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
}

.last_section .posts-lists-view > .row > div {
  margin-bottom: 40px;
}

.last_section .btn {
  width: 100%;
}

.rounded_box {
  height: 59px;
  width: 163.75px;
  margin: 0 auto;
  border: 1px solid #F4F8F8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rounded_box.red_dot:after {
  right: 0;
  top: 0;
}

.rounded_box:before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  border-top: 20px solid #fff;
  border-left: 20px solid #fff;
  width: 0;
  background: #fff;
  border-radius: 50%;

}

/* EDITED */
.left_side_hide .vc_figure {
  position: relative;
  /*left: -30%;*/
}

.right_side_hide .vc_figure {
  position: relative;
  right: -30%;
}

.wpb_content_element.banner {
  margin-bottom: 50px;
}

.email_head h6 {
  font-weight: 600;
  margin-bottom: 4px;
}

.email_head p {
  font-size: 18px;
  line-height: 23px;
}

.email_head .wpb_content_element {
  margin-bottom: 16px;
}

.email_page_section .email_description {
  padding-left: 100px;
  position: relative;
  padding-right: 25px;
}

.email_page_section .email_description:before {
  content: '';
  position: absolute;
  left: -100%;
  bottom: 50px;
  width: 197px;
  height: 197px;
  background: url(../images/circle_img.png) no-repeat;
}

.email_page_section .email_description p,
blockquote,
.promices_desc p {
  margin-bottom: 30px;
}

blockquote {
  border-left: 1px solid rgba(111, 110, 110, 0.5);
  border-color: rgba(111, 110, 110, 0.5) !important;
  padding-left: 15px;
}

blockquote p {
  color: #6F6E6E;
  font-size: 18px;
  font-weight: lighter;
  line-height: 23px;
}

.email_page_section .email_description h6 {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 16px;
  font-family: 'Catamaran', sans-serif;
}

.email_description ul li {
  padding-left: 20px;
  font-weight: 300;
}

.email_description ul li:before {
  left: 0;
}

.email_page_last_sec {
  /* padding-top: 25px;*/ /* EDITED */
  padding-top: 50px;
  padding-bottom: 75px;
}

.heading_2 {
  color: #6F6E6E;
  font-size: 12px;
  font-weight: 200;
  line-height: 20px;
  font-family: 'Catamaran', sans-serif;
  border-left: 1px solid;
  padding-left: 10px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  margin-bottom: 0;
}

.heading_2.mb-20 {
  margin-bottom: 20px;
}

.email_page_last_sec .btn {
  padding: 0;
  margin-top: -3px;
}

.email_page_last_sec p {
  color: #000;
  font-family: 'Catamaran', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  width: 92%;
  margin-top: 20px;
}

.email_page_last_sec .wpb_content_element {
  margin-bottom: 10px;
}

.tour_heading h4 {
  margin-bottom: 29px;
  font-weight: normal;
}

.tour_heading {
  max-width: 820px;
  width: 100%;
  margin: 0 auto 15px !important;
}

.tab-block-view {
  border-radius: 3px;
  border: 1px solid #F4F8F8;
  padding: 20px 35px !important;
  height: 230px;
  max-width: 295px;
  margin: 0 28px 30px;
}

.tab-block-view .vc_column-inner {
  padding: 0 !important;
}

.tab-desc p {
  font-size: 14px;
  font-weight: 300;
  line-height: 23px;
  font-family: 'Catamaran', sans-serif;
}

.tab-block-view .wpb_single_image {
  min-height: 65px;
  /* line-height: 65px; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.tab-img figure {
  position: relative;
}

.tab-img figure:after {
  width: 10px;
  height: 10px;
  border-top: 5px solid transparent;
  border-left: 8px solid #FF573C;
  border-bottom: 5px solid transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
}

.vc_tta-tabs-list li.vc_active a {
  color: #DB1500;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  position: relative;
}



.vc_tta-tabs-list li.vc_active a:after {
  content: '';
  position: absolute;
  top: 3px;
  height: 3px;
  width: 3px;
  background-color: #DB1500;
  margin-left: 3px;
}

.tab-block-view:hover .tab-link a {
  padding: 0;
}

.tab-icon {
  margin: 0 15px;
}

.vc_icon_element.vc_icon_element-outer.tab-icon {
  margin-bottom: 0 !important;
}

.vc_icon_element.vc_icon_element-outer.tab-icon .vc_icon_element-inner {
  width: 20px !important;
  height: 20px !important;
}

.tab-icon .vc_icon_element.vc_icon_element-outer .vc_icon_element-inner span {
  font-size: 24px !important;
}

.tab_section {
  margin-bottom: 70px;
}

.profile_info p,
.profile_info h5 {
  color: #32333A;
  font-family: 'Catamaran', sans-serif;
  font-size: 12px;
  font-weight: 200;
  line-height: 16px;
  margin-bottom: 0;
}

.profile_info h5 {
  font-style: italic;
  opacity: 0.6;
  margin-bottom: 5px !important;
}

.email_page_last_sec .profile_info .wpb_content_element {
  margin-bottom: 0;
  line-height: 1;
}

/* EDITED
.profile_info {
  display: flex;
  align-items: flex-end;
}*/

.pt-60 {
  padding-top: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.client_content_sec .profile_info p {
  font-size: 18px;
  font-weight: 200;
  line-height: 26px;
}

.client_content_sec .profile_info .right_txt p {
  color: #32333A;
  font-family: 'Catamaran', sans-serif;
  font-size: 12px;
  font-weight: 200;
  line-height: 16px;
  margin-bottom: 0;
}

.client_content_sec .profile_info .right_txt {
  padding-top: 90px;
}

.client_page_sections .client_right_sec {
  padding-top: 0;
}

.client_page_sections .client_right_sec:before {
  display: none !important;
}

.client_page_sections .client_content_sec {
  padding-bottom: 55px;
}

.clients_section.client_page_sections:after {
  top: 50px;
  right: -51%;
}

.clients_section.client_page_sections:before {
  top: -130px;
  right: -65%;
}

.client_logos_tab ul.vc_tta-tabs-list {
  margin-bottom: 40px;
}

.client_logos_tab figure .vc_box_border_grey {
  height: 75px;
  width: 190px;
  border-radius: 3px;
  background-color: #FFF;
  border: 1px solid #F4F8F8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

.client_logos_tab .wpb_content_element {
  margin-bottom: 20px;
}

.client_logos_tab .vc_column_container > .vc_column-inner {
  padding-left: 10px;
  padding-right: 10px;
}

.product_last_sec .text_right {
  padding-top: 50px;
  margin: 0;
}

.product_last_sec .text_right p,
.product_last_sec .text_right h5 {
  color: #32333A;
  font-size: 12px;
  font-weight: 200;
  line-height: 16px;
  margin: 0;
  font-family: 'Catamaran', sans-serif;
}

.product_last_sec .text_right h5 {
  opacity: 0.65;
}

.email_page_last_sec.product_last_sec .img_left {
  margin-right: 10px;
}

.logo_full_img {
  padding-top: 16px;
}

.product_img_before:before {
  content: '';
  position: absolute;
  right: -190%;
  top: 0;
  width: 539px;
  height: 470px;
  background: url(../images/product_1.png) no-repeat;
  z-index: -1;
}

.product_img_before:after {
  content: '';
  position: absolute;
  right: -170%;
  top: 40%;
  width: 418px;
  height: 383px;
  background: url(../images/product_2.png) no-repeat;
  z-index: -1;
}

.single_list_section h4 img {
  margin-right: 15px;
}

.promicess_right_desc .single_list_section h4,
.promicess_right_desc .single_list_section {
  margin-bottom: 20px;
}

.promicess_right_desc .single_list_section p {
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  font-family: 'Catamaran', sans-serif;
}

.promicess_right_desc .profile_info .wpb_content_element {
  margin-bottom: 0;
}

.promicess_right_desc .profile_info .move_left {
  margin-left: -50px;
}

.promicess_right_desc .contact_btn {
  margin-top: 15px;
  padding: 0;
}

.promicess_right_desc .vc_column-inner {
  max-width: 300px;
  width: 100%;
  margin: 0 auto !important;
}

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

.process_section h4 {
  margin-bottom: 35px;
  font-weight: normal;
}

.process_desc .vc_col-sm-3 {
  text-align: center;
}

.process_desc .vc_col-sm-3 h3 {
  margin-bottom: 0;
  margin-left: -10px;
}

.process_desc {
  margin-bottom: 70px;
}

.last_profile_section h6,
.last_profile_section p {
  color: #6F6E6E;
  font-family: 'Catamaran', sans-serif;
  font-size: 12px;
  font-weight: 200;
  line-height: 18px;
  margin-bottom: 0;
}

.last_profile_section h4 {
  color: #000;
  font-family: 'Catamaran', sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 26px;
}

.last_profile_section .wpb_content_element {
  margin-bottom: 0;
}

.last_profile_section {
  max-width: 680px;
  width: 100%;
  margin: 0 auto 70px !important;
  display: flex;
  /*align-items: center;*/
  align-items: flex-start;
}

.solution_top_section h4 {
  margin-bottom: 35px;
  font-weight: normal;
}

.solution_top_section .sol_left_sec {
    padding-left: 70px; /* EDITED */
}

.solution_top_section .sol_left_sec blockquote p {
  color: #15822D;
}

.solution_top_section .sol_left_sec blockquote {
  border-color: #15822D !important;
}

.btn_2 {
  display: block !important;
}

.btn_2 a {
  background: transparent !important;
}

.solution_top_section .img_left {
  margin-right: 17px;
}

.solution_top_section .text_right {
  margin-bottom: 0;
  padding-top: 50px;
}

.sol_right_desc {
  padding-top: 100px;
}

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

.information_section .vc_separator.vc_sep_color_orange .vc_sep_line,
.fourth_section .vc_separator.vc_sep_color_vista_blue .vc_sep_line {
  border-width: 3px;
}

.information_section .vc_separator.vc_sep_color_orange,
.fourth_section .vc_separator.vc_sep_color_vista_blue {
  margin-bottom: 25px;
}

.fourth_sec_cont h4,
.information_section h4,
.fifth_section h4 {
  margin-bottom: 15px;
  font-weight: normal;
  font-family: 'Catamaran', sans-serif;
}

.client_first_sec h4 {
  margin-bottom: 0;
  font-weight: normal;
  font-family: 'Catamaran', sans-serif;
}


.para_txt {
  margin-bottom: 20px !important;
}

.para_txt p {
  color: #32333A;
  font-family: 'Catamaran', sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.information_section:before {
  content: '';
  position: absolute;
  left: -140%;
  top: 30px;
  width: 545px;
  height: 475px;
  background: url(../images/simplicity-1.png) no-repeat;
}

.information_section:after {
  content: '';
  position: absolute;
  left: -140%;
  top: 170px;
  width: 566px;
  height: 519px;
  background: url(../images/simplicity-2.png) no-repeat;
}

.fifth_section {
  position: relative;
}

.fifth_section:before {
  content: '';
  position: absolute;
  left: -70%;
  top: 100px;
  width: 545px;
  height: 475px;
  background: url(../images/simplicity-1.png) no-repeat;
}

.fifth_section:after {
  content: '';
  position: absolute;
  left: -74%;
  top: 200px;
  width: 566px;
  height: 519px;
  background: url(../images/simplicity-2.png) no-repeat;
}

.right_txt p {
  color: #32333A;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 200;
  line-height: 22px;
  opacity: 0.6;
}

.right_txt h6 {
  color: #32333A;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  margin-bottom: 0;

}

.top_promicess_section,
.process_section,
.solution_top_section {
  position: relative;
}

.top_promicess_section:before {
  content: '';
  position: absolute;
  right: -65%;
  top: -420px;
  width: 535px;
  height: 465px;
  background: url(../images/right_1.png) no-repeat;
  display: block !important;
}

.top_promicess_section:after {
  content: '';
  position: absolute;
  left: auto;
  right: -51%;
  top: -260px;
  width: 356px;
  height: 427px;
  background: url(../images/right_2.png) no-repeat;
  display: block !important;
  z-index: 99;
}

.solution_top_section:before {
  content: '';
  position: absolute;
  right: -70%;
  top: -300px;
  width: 535px;
  height: 465px;
  background: url(../images/right_1.png) no-repeat;
  display: block !important;
}

.solution_top_section:after {
  content: '';
  position: absolute;
  left: auto;
  right: -55%;
  top: -80px;
  width: 356px;
  height: 427px;
  background: url(../images/right_2.png) no-repeat;
  display: block !important;
  z-index: 99;
}

.last_section .posts-lists-view a {
  width: 100%;
}

.vc_tta-tabs-list li a {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
}

.vc_tta-tabs-list li.vc_active a,
.vc_tta-tabs-list li a:hover {
  color: #DB1500 !important;
}

.headwithimg h3 {
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  display: flex;
  align-items: center;
}

.headwithimg h3 img {
  margin-right: 15px;
}

.info_right_sec1 {
  position: relative;
  left: 23%;
}

.percent_more:after {
  background-image: linear-gradient(180deg, #7DBEFF, #7DBEFF) !important;
  margin-left: -1px;
}

.round_per {
  background-image: linear-gradient(170deg, rgb(125, 190, 255) 80%, rgba(125, 190, 255, 0.1)) !important;
}

.client_page_sections .profile_info h5 {
  opacity: 1;
}

.vc_tta-tabs-list li:not(:last-child) {
  margin-right: 65px !important;
}

.font-18 p {
  color: #000;
  font-size: 18px;
  font-weight: lighter;
  line-height: 26px;
}

.btn.gray_color a {
  color: #32333A !important;
}

.btn.gray_color a i {
  color: #FF573C !important;
}

.btn.gray_color a:hover {
  color: #db1500 !important;
}

.dis_inline {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 0px !important;
}

.dis_inline.dis_txt {
      margin-top: 40px;
}

.prf_logo_img {
  margin-bottom: 15px !important;
  margin-left: 142px;
  margin-top: -33px !important;
}

.dis_inline h6, .dis_inline p {
  font-size: 12px;
  line-height: 16px;
  color: #32333A;
  margin-bottom: 0;
}

/*main end */

article.post .featured-media-inner {
  text-align: center;
}

article.post .post-content {
  margin-left: 11%;
  width: 50%;
}

article.post .wp-post-image {
  max-width: 100%;
  height: auto;
}

article.post .heading6_red_dot h6::after {
  top: auto;
  bottom: 10px;
}

article.post .post-share {
  text-align: center;
}

article.post .post-share .item {
  padding: 0 7px;
}

article.post .comment-header {
  font-size: 12px;
}

article.post .comment-author {
  font-size: 12px;
  font-family: 'Catamaran', sans-serif;
  color: #32333A;
  font-weight: 100;
}

article.post .comment-content p {
  color: #000;
}

article.post #respond {
  display: none;
}

article.post .pagination-single {
  position: absolute;
  left: 70%;
  width: 26%;
}

article.post .pagination-single .recent-post {
  padding-left: 12px;
  background: url(../images/arrow.png) no-repeat;
  background-position: left center;
  color: #32333A;
  font-weight: 200;
  margin-bottom: 6%;
}

article.post .all-articles-link {
  margin-bottom: 20px;
}

.rgpd-list-container ol li,
.rgpd-list-container ul li {
    margin-bottom: 1rem;
}

.rgpd-list-container ul {
  list-style-image: url(../images/ellipse.png);
  list-style-type: disc;
}

.rgpd-list-container ol,
.rgpd-list-container ul {
    padding-left: 1em;
    color: #32333A;
    font-size: 16px;
    font-weight: 200;
    line-height: 26px;
    font-family: 'Catamaran', sans-serif;
}

.contact-page-nav ul {
  border-left: 1px solid #F4F8F8;
  margin-left: 4px;
}

.contact-page-nav ul li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #F4F8F8; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 0.8em; /* Also needed for space (tweak if needed) */
  margin-left: -0.15em; /* Also needed for space (tweak if needed) */
  font-size: 2.4em;
  position: relative;
  top: 5px;
}

.contact-page-nav ul li.current::before {
  color: #32333A;
}

/*Footer style*/
.footer {
  padding-bottom: 30px;
  background: linear-gradient(#FFF 0%, #F4F8F8 100%);
}

.footer_rect img {
  width: 100%;
}

.footer_top {

  padding: 68px 0 45px;
}

.footer_middle {
  display: flex;
}

.footer_left {
  max-width: 230px;
  width: 100%;
}

.footer_right {
  width: 100%;
}

.footer h6 {
  color: #32333A;
  font-size: 20px;
  font-weight: 300;
  line-height: 25px;
  margin-bottom: 1rem;
}
/* EDITED + .footer_top ul li */
.footer .footer_top ul li a, .footer_top ul li {
  color: #6F6E6E;
  font-size: 14px;
  line-height: 18px;
  font-weight: 200;
  white-space: nowrap;
  font-family: 'Catamaran', sans-serif;
}

.footer .footer_top ul {
  column-count: 2;
}

.footer .footer_top .row .col-md-4:last-child ul {
  column-count: 1;
}

.footer .footer_top ul li {
  margin-bottom: 5px;
}

.footer .footer_top .row .col-md-4:last-child {
  max-width: 220px;
  width: 100%;
}

.footer-menu {
  width: 75%;
}

.footer .footer_top .row .col-md-4:last-child .footer-menu {
  width: 100%;
  padding-left: 25px;
}

.copyright-text p,
.copyright-text p a {
  color: #6F6E6E;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 0;
  font-family: 'Catamaran', sans-serif;
}

.sol_right_desc .btn_2 a i {
  color: #ff573c;
}

.solution_top_section.mb-100 > .vc_col-sm-12 {
  margin-bottom: 100px;
}

.process_desc12 {
  padding-left: 60px !important;
  position: relative;
}

.process_desc12 .vc_column-inner {
  max-width: 506px;
  width: 100%;
}

.process_desc12:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: url(../images/circle.png) no-repeat;
  display: block !important;
}

.custom_list h4 {
  font-weight: normal;
  margin-bottom: 20px;
}

/*footer style end*/

@media screen and (max-width: 1599px) {
  .clients_section:before {
    right: -45%;
  }

  .clients_section:after {
    right: -31%;
    top: 130px;
  }

  .clients_section.client_page_sections:before {
    right: -55%;
  }

  .clients_section.client_page_sections:after {
    right: -41%;
  }

  .product_img_before:before {
    right: -90%;
    top: 150px;
  }

  .product_img_before:after {
    right: -80%;
    top: 80%;
  }

  .information_section:before,
  .information_section:after {
    left: -110%;
  }

  .fifth_section:before {
    left: -60%;
  }

  .fifth_section:after {
    left: -64%;
  }

  .email_page_section .email_description:before {
    left: -42%;
  }

  .top_promicess_section:before {
    right: -50%;
    top: -350px;
  }

  .top_promicess_section:after {
    right: -37%;
    top: -230px;
  }

  .solution_top_section:before {
    right: -50%;
  }

  .solution_top_section:after {
    right: -40%;
  }
}

@media screen and (max-width: 1439px) {
  .top_banner_section:before {
    left: -24%;
  }

  .top_banner_section:after {
    left: -16%;
  }

  .product_img_before:before {
    right: -100%;
    top: 130px;
  }

  .product_img_before:after {
    right: -70%;
    top: 60%;
  }

  .fifth_section:before {
    left: -50%;
  }

  .fifth_section:after {
    left: -54%;
  }

  .clients_section.client_page_sections:after {
    right: -36%;
  }

  .clients_section.client_page_sections:before {
    right: -50%;
  }

  .email_page_section .email_description:before {
    left: -30%;
  }

  .process_section:before {
    left: -56%;
    top: -220px;
  }

  .process_section:after {
    left: -35%;
  }

  .solution_top_section:after {
    right: -30%;
  }

  .solution_top_section:before {
    right: -43%;
    top: -250px;
  }

  .info_right_sec1 {
    left: 20%;
  }
}

@media screen and (max-width: 1279px) {
  .top_banner_content .vc_column-inner {
    /*width: 75% !important; */ /* EDITED */
  }

  .top_banner_content {
    left: 16%;
  }

  .top_banner_section:before {
    left: -40%;
  }

  .top_banner_section:after {
    left: -24%;
  }

  .client_right_sec {
    position: relative;
    left: -5%;
  }

  .information_section:before,
  .information_section:after {
    left: -90%;
  }

  .footer-menu {
    width: 90%;
  }

  .fourth_sec_cont.vc_column_container {
    padding-left: 35px;
  }

  .information_section:before {
    top: -20px;
  }

  .information_section:after {
    top: 100px;
  }

  .fifth_section:before {
    left: -47%;
  }

  .fifth_section:after {
    left: -50%;
  }

  .clients_section.client_page_sections:after {
    right: -28%;
    top: -100px;
  }

  .clients_section.client_page_sections:before {
    right: -43%;
    top: -200px;
  }

  .tab-block-view {
    margin: 0 17px 30px;
  }

  .email_page_section .email_description:before {
    left: -15%;
  }

  .process_section:after {
    left: -31%;
  }

  .process_section:before {
    left: -55%;
    top: -180px;
  }

  .top_promicess_section:after {
    right: -26%;
    top: -230px;
  }

  .top_promicess_section:before {
    right: -40%;
    top: -320px;
  }

  .solution_top_section:after {
    right: -25%;
    top: -140px;
  }

  .solution_top_section:before {
    right: -40%;
    top: -270px;
  }
}

@media screen and (max-width: 1024px) {
  .container {
    padding: 0 35px;
  }

  .information_section .vc_col-sm-3 .wpb_single_image.vc_align_left {
    text-align: center;
  }

  .information_section .vc_col-sm-9 {
    padding-left: 120px;
  }

  .info_right_sec1 {
    left: 0;
  }
}

@media screen and (max-width: 991px) {
  .header {
    padding: 11px 30px 17px 30px;
  }

  .header .navbar ul.navbar-nav li a {
    padding: 0 12px;
  }

  .topbar ul li a {
    padding: 0 10px;
  }

  .social_media {
    padding-left: 12px;
  }

  .footer-menu {
    width: 85%;
  }

  .footer_left {
    max-width: 80px;
    width: 100%;
  }

  .top_banner_section:before,
  .top_banner_section:after,
  .clients_section:before,
  .clients_section:after,
  .fifth_section:before,
  .fifth_section:after,
  .information_section:before,
  .information_section:after,
  .email_page_section .email_description:before,
  .product_img_before:before,
  .product_img_before:after,
  .process_section:before,
  .process_section:after,
  .top_promicess_section:before,
  .top_promicess_section:after,
  .solution_top_section:before,
  .solution_top_section:after,
  .process_desc12:after {
    display: none !important;
  }


  .top_banner_content .vc_column-inner {
    width: 100% !important;
  }

  .top_banner_content {
    left: 0;
    padding-left: 35px !important;
  }

  /* EDITED */
  /*.top_banner_section {
    padding: 40px 0 80px;
  }*/

  /*.client_content_sec {
    padding-left: 50px;
  }*/

  .client_right_sec {
    left: 0;
  }

  .client_slider .wpb_column.vc_column_container {
    padding: 35px 0 30px;
  }

  .heading_sec .wpb_content_element {
    padding-bottom: 20px;
  }

  .fourth_section {
    padding-top: 40px;
    margin-bottom: 50px;
  }

  .single_list_section {
    margin-bottom: 40px;
  }

  .vc_tta-tabs-list li:not(:last-child) {
    margin-right: 20px !important;
  }

  .tab-block-view {
    margin: 0 12px 30px;
    width: 30% !important;
    padding: 15px 20px !important;
  }

  .email_page_section .email_description {
    padding-left: 0;
    padding-right: 0;
  }
  
  .dis_inline {
   width: 43%; 
  }
}

@media screen and (max-width: 767px) {
.desk-image{display:none;}
.mob-image{display:block;}
.tab-image{display:none;} /* EDITED */
  .container {
    padding: 0 25px;
  }

  .topbar {
    display: none;
  }

  .header {
    padding: 11px 15px 17px 15px;
    height: 64px;
  }

  .navbar-toggler {
    float: right;
    padding-right: 110px;
  }

  .connexion {
    position: absolute;
    top: 5px;
    right: 0;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    background: #fff;
    z-index: 9;
  }

  .header .navbar ul.navbar-nav li {
    margin-bottom: 10px;
  }

  .header .navbar ul.navbar-nav {
    padding: 10px 0;
  }

  .footer_left {
    max-width: 100px;
    width: 100%;
  }

  .footer_right {
    width: 75%;
  }

  .footer_right .row {
    width: 100%;
    margin-left: 0;
  }

  .footer-menu {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer .footer_top ul {
    column-count: 1;
    display: flex;
    flex-wrap: wrap;
  }

  .footer .footer_top ul li {
    width: 50%;
  }

  .footer .footer_top ul li a {
    white-space: normal;
  }

  .footer .footer_top .row .col-md-4:last-child ul {
    display: block;
  }

  .footer .footer_top .row .col-md-4:last-child ul li {
    width: 100%;
  }

  .footer h6 {
    margin-bottom: 8px;
  }

  .footer_top {
    padding: 30px 0 10px;
  }

  .footer {
    padding-bottom: 20px;
  }

  .navbar-toggler {
    background-color: transparent !important;
  }

  .banner_top_img .full_image img {
    /*height: 300px;*/
    height: auto;
  }

  .top_banner_content .btn {
    margin-right: 40px;
  }

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

  .top_banner_content {
    order: 2;
  }

  .top_banner_img {
    order: 2;
  }

  .top_banner_section {
    padding: 0px 0 60px;
  }

  .banner_top_img .full_image {
    margin-bottom: 20px;
  }

  h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 22px !important;
  }

  .top_para p {
    width: 100%;
  }

  .top_banner_content {
    /* EDITED */
    /* padding-left: 25px !important;
    padding-right: 25px !important;*/
    padding-left: 40px !important;
    padding-right: 40px !important;
    text-align: center;
  }

  .top_banner_content h3,
  .top_banner_content .top_para {
    text-align: left;
  }

  .clients_section h4 {
    margin-bottom: 25px;
  }

  .client_content_sec {
    padding-left: 0;
  }

  .client_content_sec p {
    max-width: 100%;
  }

  .client_right_sec:before {
    display: none !important;
  }

  .client_right_sec .wpb_wrapper .wpb_single_image {
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px 40px !important;
  }

  .client_right_sec .vc_btn3-container.vc_btn3-inline {
    display: block;
  }

  .rounded_box img {
    padding-top: 20px;
  }

  .information_section {
    display: block;
  }

  .information_section .vc_col-sm-3 .wpb_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 10px;
  }

  .information_section .vc_col-sm-9 .wpb_wrapper,
  .fourth_sec_cont.vc_column_container,
  .fifth_section {
    text-align: center;
  }

  .fourth_section {
    flex-wrap: wrap;
    left: 0;
    /* padding: 40px 30px 0; */ /* EDITED */
  }

  .fourth_sec_cont {
    max-width: 100%;
    padding-left: 0;
  }

  .fourth_sec_cont.vc_column_container {
    padding-left: 0;
    order: 2;
  }

  .right_side_hide.vc_column_container {
    order: 1;
  }

  .list_section .single_list_section .wpb_wrapper {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
  }

  .list_section .single_list_section .wpb_wrapper img {
    width: 120px;
    border-radius: 5px;
    margin-right: 20px;
  }

  .posts-lists-view .col-sm-4 {
    margin-bottom: 30px;
  }

  .client_right_sec {
    padding-top: 40px;
  }

  .client_logos_tab .vc_tta-panels-container .vc_tta-panel .vc_tta-panel-body .vc_row.wpb_row.vc_inner.vc_row-fluid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }

  .client_logos_tab .vc_tta-panels-container .vc_tta-panel .vc_tta-panel-body .vc_row.wpb_row.vc_inner.vc_row-fluid .wpb_column.vc_column_container {
    width: 50% !important;
  }

  .pb-70 {
    padding-bottom: 30px;
  }

  .pt-60 {
    padding-top: 30px;
  }

  .tab-block-view {
    margin: 0 auto 30px;
    width: 100% !important;
    padding: 20px 35px !important;
  }

  .tab_section {
    margin-bottom: 0px;
  }

  .email_page_last_sec p {
    width: 100%;
    margin-top: 6px;
  }

  .email_page_last_sec .vc_col-sm-6:first-child {
    padding-bottom: 40px;
  }

  .btn button,
  .btn a {
    font-size: 14px !important;
    padding: 0 8px 0 0 !important;
  }

  .btn button .vc_btn3-icon,
  .btn a .vc_btn3-icon {
    right: -10px !important;
  }

  .promicess_right_desc .vc_column-inner {
    max-width: 100%;
    margin: 0 !important;
  }

  .process_desc .vc_column_container.vc_col-sm-3 .vc_column-inner > .wpb_wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .process_desc .vc_column_container.vc_col-sm-3 .vc_column-inner > .wpb_wrapper img {
    width: 80%;
    margin: 0 auto;
  }

  .process_desc {
    margin-bottom: 0;
  }

  .list_section .vc_column_container.vc_col-sm-12 {
    margin-top: 40px;
  }

  .profile_mb {
    display: block;
  }

  .profile_mb h6 {
    border-left: 1px solid;
    padding-left: 10px;
    margin-bottom: 22px;
  }

  .profile_mb .vc_col-sm-6 h4 {
    margin-bottom: 22px;
  }

  .profile_mb .vc_col-sm-3 .vc_col-sm-12 .wpb_single_image {
    float: left;
    margin-right: 10px;
  }

  .profile_mb .vc_col-sm-3 .vc_col-sm-12 h6 {
    margin-bottom: 0;
    border: 0;
    padding-top: 25px;
  }

  .solution_top_section .sol_left_sec {
    padding-left: 0;
  }

  .sol_right_desc {
    padding-top: 0px;
  }

  .sol_right_desc .btn_2 {
    display: inline-block !important;
  }

  .sol_right_desc .btn_2 a {
    padding: 0 40px 0 30px !important;
  }

  .solution_top_section .text_right {
    margin-bottom: 0;
    padding-top: 26px;
  }

  .sol_right_desc .btn.vc_btn3-inline {
    margin-right: 30px;
  }

  .mb-70 {
    margin-bottom: 40px;
  }

  .profile_mb .vc_col-sm-4 .vc_row.wpb_row.vc_inner.vc_row-fluid {
    display: flex;
    flex-wrap: nowrap;
  }

  .profile_mb .vc_col-sm-4 .vc_col-sm-6 h6 {
    margin-bottom: 0;
    border: 0;
    padding-left: 0;
    padding-top: 25px;
  }

  .innovation_sec .heading_sec h3:after,
  .red_dot:after,
  .heading_sec h3:after,
  .heading6_red_dot h6:after,
  .top_promicess_section .heading6_red_dot h4:after {
    top: auto;
    bottom: 18px;
  }

  .information_section .vc_col-sm-9 {
    padding-left: 0;
  }

  .last_section .posts-lists-view .col-sm-4:not(:first-child) {
    display: none;
  }

  .last_section .posts-lists-view .col-sm-4 {
    margin-bottom: 0;
  }

  .info_right_sec1 {
    left: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
  }

  .solution_top_section .img_left {
    margin-bottom: 0;
  }

  .solution_top_section.mb-100 > .vc_col-sm-12 {
    margin-bottom: 40px;
  }

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

  .sol_sec_2 .sol_right_desc {
    order: 2;
  }

  .sol_sec_2 .sol_left_sec {
    order: 1;
  }

  .mb-100 {
    margin-bottom: 40px;
  }

  .process_desc12 {
    padding-left: 0 !important;
  }

  .process_desc12 .vc_column-inner {
    max-width: 100%;
  }

  .footer .footer_top .row .col-md-4:last-child .footer-menu {
    padding-left: 0px;
  }

  .header .navbar .dropdown-menu ul {
    padding: 5px 0 5px;
  }

  .header .navbar ul.navbar-nav li {
    margin-bottom: 0;
  }
  .prf_logo_img {
    margin-left: 132px;
  }
  /* EDITED */
  .wpb_text_column.wpb_content_element.temoignage-text {
    margin: 0 0;
    min-height: 0;
    margin-top: 10px;
  }
  .wpb_text_column.wpb_content_element.right_txt.f_t_h {
    padding-top: 0px;
  }
  .vc_row.wpb_row.vc_inner.vc_row-fluid.profile_info {
    margin-top: 10px;
    margin-bottom: 30px;
  }
  
  .left_side_hide .vc_figure{
      left: 0;   
  }
  .right_side_hide .vc_figure{
      right: 0 !important;   
  }
  
  /*END - EDITED*/
}

@media screen and (max-width: 479px) {
  .right_txt {
    padding-top: 55px;
  }
}

@media screen and (max-width: 374px) {
  .right_txt {
    padding-top: 35px;
  }
}
.client_right_sec .vc_item {padding-bottom:20px;}
.single_list_section h4{
margin-bottom: 20px;
    font-weight: normal;
    margin-top: 20px;
    
}

#site-content .post .post-content .entry-title {
  margin-bottom: 50px;
}

.simulator-row {
  margin-top: 2% !important;
}

.navbar-dark .navbar-brand > img {
  max-height: 36px;
}


.top_rgpd_section:before {
	  content: '';
	  position: absolute;
	  left: auto;
	  right: -51%;
	  top: -260px;
	  width: 356px;
	  height: 427px;
	  background: url(../images/right_2.png) no-repeat;
	  display: block !important;
	  z-index: 99;
}

.top_rgpd_section:after {
	  content: '';
	  position: absolute;
	  left: auto;
	  right: -51%;
	  top: -260px;
	  width: 356px;
	  height: 427px;
	  background: url(../images/right_2.png) no-repeat;
	  display: block !important;
	  z-index: 99;
}

.rgpd_section:before {
  content: '';
  position: absolute;
  left: -68%;
  top: -180px;
  width: 601px;
  height: 523px;
  background: url(../images/process-1.png) no-repeat;
  display: block !important;	
}

.rgpd_section:after {
  content: '';
  position: absolute;
  left: -68%;
  top: -180px;
  width: 601px;
  height: 523px;
  background: url(../images/process-1.png) no-repeat;
  display: block !important;	
}

@media screen and (max-width: 991px) {
	.top_rgpd_section:before{
		display: none !important;
	}
	
	.top_rgpd_section:after{
		display: none !important;
	}
	
	.rgpd_section:before{
		display: none !important;
	}
	
	.rgpd_section:after{
		display: none !important;
	}
}

@media screen and (min-width: 1440px) {
	.top_rgpd_section:before{
		right: -24%;
		top: 610px;
		width: 601px;
		height: 523px;
	}
	
	.top_rgpd_section:after{
		right: -26%;
		top: 660px;
		width: 601px;
		height: 523px;
	}
	
	.rgpd_section:before{
		left: -25%;
		top: 1450px;
		width: 601px;
		height: 523px;
	}
	
	.rgpd_section:after{
		left: -27%;
		top: 1600px;
		width: 601px;
		height: 523px;
	}

}

@media screen and (max-width: 1439px) {
	.top_rgpd_section:before{
		right: -27%;
		top: 580px;
		width: 601px;
		height: 523px;
	}
	
	.top_rgpd_section:after{
		right: -29%;
		top: 630px;
		width: 601px;
		height: 523px;
	}
	
	.rgpd_section:before{
		left: -28%;
		top: 1450px;
		width: 601px;
		height: 523px;
	}
	
	.rgpd_section:after{
		left: -26%;
		top: 1600px;
		width: 601px;
		height: 523px;
	}
}

@media screen and (max-width: 1279px) {
	.top_rgpd_section:before{
		right: -30%;
		top: 480px;
		width: 601px;
		height: 523px;
	}
	
	.top_rgpd_section:after{
		right: -33%;
		top: 530px;
		width: 601px;
		height: 523px;
	}
	
	.rgpd_section:before{
		left: -31%;
		top: 1450px;
		width: 601px;
		height: 523px;
	}
	
	.rgpd_section:after{
		left: -28%;
		top: 1500px;
		width: 601px;
		height: 523px;
	}
}
/* EDITED */
.slider {
    box-shadow: inset 10px 0px 10px -7px rgb(0,0,0,0.2), inset -10px 0px 10px -7px rgb(0,0,0,0.2);
}
.bg_gradient{
    /* background: rgb(255,255,255); */
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(250,248,248,1) 90%);  
    /* width:200% !important; */
    width: 800% !important;
    margin-top:-3%;
    height:100%;
    position:absolute !important;
}

.bg_section {
    position: relative !important;
    clear: left;
}

.flex_start {
    justify-content: flex-start; 
}

.satisfaction_box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.satisfaction_box_items{
    margin: 0 3%;
}

.satisfaction_box_items.vc_column_container > .vc_column-inner {
    padding-left: 0;
    padding-right: 0;
}

.satisfaction_box_items_row.vc_row {
    margin-left: 0;
    margin-right: 0;
}

.satisfaction_box_items_row > .vc_column_container > .vc_column-inner {
    padding-left: 0;
    padding-right: 0;
    padding-top: 21px !important;
}

.satisfaction_box_items_row .wpb_text_column {
    text-align: center;
    margin-bottom: 21px;
}

.satisfaction_box_items_row .wpb_text_column p {
    font-size: 14px;
}

#satisfaction_label {
     margin: auto !important;   
}

.satisfaction_text p {
    font-size: 32px !important;
    font-family: 'Source Sans Pro' !important;
    color: #7dbeff !important;     
    text-align: left;
}

@media screen and (max-width: 767px) {
    .satisfaction_box {
        flex-direction: column;
    }
    
    .satisfaction_box_items,
    .satisfaction_box .heading_2 {
        margin-bottom: 3%;
    }
    
    .satisfaction_box_items.vc_column_container > .vc_column-inner {
        padding-left: 15px;
        padding-right: 15px;
    }
    /* START - EDITED */
    .bg_simplicite {
        background: -webkit-gradient(linear, 0 100%, 0 0, from(#fff), color-stop(2, #fad67b));
        background: -webkit-linear-gradient(90deg, #fff 0%, #fad67b 200%);
        background: -moz-linear-gradient(90deg, #fff 0%, #fad67b 200%);
        background: -o-linear-gradient(90deg, #fff 0%, #fad67b 200%);
        background: linear-gradient(90deg, #fff 0%, #fad67b 200%);
        margin-top: 5%;
        padding-top: 0;
        padding-bottom: 5%;
        margin-bottom:0;
    }
    .bg_agilite {
        background: -webkit-gradient(linear, 0 100%, 0 0, from(#fff), color-stop(2, #aeffc0));
        background: -webkit-linear-gradient(90deg, #fff 0%, #aeffc0 200%);
        background: -moz-linear-gradient(90deg, #fff 0%, #aeffc0 200%);
        background: -o-linear-gradient(90deg, #fff 0%, #aeffc0 200%);
        background: linear-gradient(90deg, #fff 0%, #aeffc0 200%);
        margin-top: 5%;
        padding-top: 0;
        padding-bottom: 5%;
        margin-bottom:0;
    }
    .bg_resultats {
        background: -webkit-gradient(linear, 0 100%, 0 0, from(#fff), color-stop(2, #bdd6ef));
        background: -webkit-linear-gradient(90deg, #fff 0%, #bdd6ef 200%);
        background: -moz-linear-gradient(90deg, #fff 0%, #bdd6ef 200%);
        background: -o-linear-gradient(90deg, #fff 0%, #bdd6ef 200%);
        background: linear-gradient(90deg, #fff 0%, #bdd6ef 200%);
        margin-top: 5%;
        padding-top: 0;
        padding-bottom: 5%;
        margin-bottom:0;
    }
    .simulateur {
        margin-right: 14% !important;
    }
    .mobile_top_cannes{display:block;}
    .desktop_top_cannes{display:none;}
    .img_cannes {
        width:70%;
    }
    /* END - EDITED */
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .satisfaction_box_items {
        margin: 0 2%;
    }
    .desk-image{display:none;}
    .mob-image{display:none;}
    .tab-image{display:block;} /* EDITED */
}

.testimonial_img {
    width:68px;
    margin-right:15px;
}

.profile_info .vc_column-inner > .wpb_wrapper{
    display: flex;
    align-items: center;
}

.img_left {
    margin-bottom: 0 !important;   
}



@media screen and (min-width: 768px){
    .text_row_home {
        margin-top: -30px !important;
    }
    .top_banner_content .vc_column-inner {
      padding-top: 100px;
    }
    .mobile_top_cannes{display:none;}
    .desktop_top_cannes{display:block;}
    
}

.temoignage-text {
    min-height:115px;
}


@media screen and (min-width: 768px) and (max-width: 1200px) {

.banner_top_img .full_image img {
    height: 330px;
    object-fit: cover;
}

}

@media screen and (min-width:1200px){
    .left_side_hide .vc_figure {
        position: relative;
        left: -10%;
    }
    .desk-image{display:block;}
    .mob-image{display:none;}
    .tab-image{display:none;}

/* EDITED */
.top_banner_content .wpb_wrapper {
    position: relative;
    z-index: 1;
    width: 120%;
}
.temoignage-text.farah_mail {
    min-height: auto;
    padding-top: 20px;
}
.txt_light h6 {
    font-weight: 100;    
}
.top_banner_content .vc_column-inner {
  padding-top: 100px;
}
}
figure.wpb_wrapper.vc_figure, .vc_single_image-wrapper.vc_box_border_grey, img.vc_single_image-img.attachment-full {
    width:100%
}
.client_logos_tab img.vc_single_image-img.attachment-full, .vc_tta img.vc_single_image-img.attachment-full {
    width:auto;
}

.img_cannes {
    margin:0 auto;
}
.text_cannes h6, .text_cannes p {
	line-height:24px;
}
.text_cannes {
    min-height: 145px;
}
.img_cannes img.vc_single_image-img.attachment-full {
    cursor: pointer;
}
.img_cannes {
    /*width:90%;*/
    width:70%;
    margin-bottom: 2em !important;
}
.vc_row.vc_column-gap-30>.vc_column_container {
    padding-bottom: 0;
}
.pitch_heading .red_dot {
    padding-right:15px;   
}
.pitch_heading strong.red_dot {
    font-size: 34px;
}
.red_dot:after, .heading_sec h3:after, 
.heading6_red_dot h6:after, 
.top_promicess_section .heading6_red_dot h4:after{
    bottom:25px;
}
h4.pitch_heading strong.red_dot {
    font-size: 28px;
}
.sales-info h6 {
    font-weight: 700 !important;
    padding-bottom: 16px;
}
.sales-info h5 strong {
    color: #DB1500;
    font-weight: 700 !important;
}
.sales-info h5 {
    margin-bottom: 6px;
}
.sales-info a {
    color: #000;
    /*text-decoration: underline;*/
}