@font-face {
  font-family: "book_antiquaregular";
  src: url("../fonts/bookantiqua-webfont.woff2") format("woff2"), url("../fonts/bookantiqua-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "book_antiquabold";
  src: url("../fonts/bookantiqua_bold-webfont.woff2") format("woff2"), url("../fonts/bookantiqua_bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'PlutoRegular';
    src: url('../fonts/PlutoRegular.woff2') format('woff2'),
        url('../fonts/PlutoRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PlutoBold';
    src: url('../fonts/PlutoBold.woff2') format('woff2'),
        url('../fonts/PlutoBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



:root {
  --primary-font-family: "Work Sans", sans-serif;
  --secondary-font-family: "PlutoRegular", sans-serif;
  --secondary-font-family-bold: "PlutoBold", sans-serif;
  --bleu-bea: #00ABE5;
  --vert-bea: #95C230;
  --deep-blue: #09266E;
  --gray: #475467;
  --bleu2-bea: #00376A;
  --vert-bea-n1: #95CB1C;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -10px; /* negative margin for consistent column spacing */
}

.row > [class*=col-] {
  padding: 10px;
}

/**************************************************
* 12-Column Grid (Desktop / Large screens)
**************************************************/
.col-1 {
  flex: 0 0 8.3333%;
  max-width: 8.3333%;
}

.col-2 {
  flex: 0 0 16.6667%;
  max-width: 16.6667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.col-5 {
  flex: 0 0 41.6667%;
  max-width: 41.6667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333%;
  max-width: 58.3333%;
}

.col-8 {
  flex: 0 0 66.6667%;
  max-width: 66.6667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333%;
  max-width: 83.3333%;
}

.col-11 {
  flex: 0 0 91.6667%;
  max-width: 91.6667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

/**************************************************
* Custom 5-Column Class (Desktop)
*  - 20% each
**************************************************/
.col-5x {
  flex: 0 0 20%;
  max-width: 20%;
}

/**************************************************
* Tablet Breakpoint (~992px and below)
* "col-md-x" overrides .col-x for screens <= 992px
**************************************************/
@media (max-width: 992px) {
  .col-md-1 {
    flex: 0 0 8.3333%;
    max-width: 8.3333%;
  }
  .col-md-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .col-md-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }
  .col-md-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }
  .col-md-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* For 5-Column Class on Tablet: 2 columns per row (50%) is typical */
  .col-md-5x {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
/**************************************************
* Mobile Breakpoint (~768px and below)
* "col-sm-x" overrides .col-md-x and .col-x for screens <= 768px
**************************************************/
@media (max-width: 768px) {
  .col-sm-1 {
    flex: 0 0 8.3333%;
    max-width: 8.3333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* For 5-Column Class on Mobile: full width each */
  .col-sm-5x {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  white-space: normal;
}

body {
  font-family: var(--primary-font-family);
  font-size: 16px;
  line-height: 1.5;
  font-weight: var(--font-weight-regular);
  color: rgb(10, 49, 86);
}

button {
  font-family: var(--primary-font-family);
}

img {
  max-width: 100%;
}

textarea {
  font-family: var(--primary-font-family);
}

.text_center {
  text-align: center;
}

.pills_16 {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--bleu2-bea);
  font-family: var(--primary-font-family);
}

.title_18 {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--bleu2-bea);
  font-family: var(--primary-font-family);
  margin-bottom: 20px;
}

.span_label {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--bleu2-bea);
  font-family: var(--primary-font-family);
  padding: 12px;
  border-radius: 10px;
  background-color: rgba(1, 57, 142, 0.1);
  display: block;
  width: fit-content;
  margin-bottom: 5px;
}

a {
  text-decoration: none;
  color: #000;
}

strong {
  font-weight: bold;
}

input[type=button], input[type=submit], input[type=reset] {
  -webkit-appearance: none;
}

.bea_button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  gap: 8px;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  padding: 13px 16px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: fit-content;
}

.primary_btn {
  background-color: #fff;
  border: 1px solid var(--bleu2-bea);
  color: var(--bleu2-bea);
}
.primary_btn:hover {
  background-color: var(--bleu2-bea);
  color: #fff;
}

.secondary_btn {
  background-color: var(--bleu2-bea);
  border: 1px solid var(--bleu2-bea);
  color: #fff;
}
.secondary_btn:hover {
  background-color: var(--deep-blue);
  border: 1px solid var(--deep-blue);
  color: #fff;
}

.more_permalink {
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  color: var(--bleu2-bea);
  text-decoration: underline;
}
.more_permalink:hover {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-family: var(--secondary-font-family), serif;
  font-size: 64px;
  font-weight: normal;
}

h2 {
  font-family: var(--secondary-font-family), serif;
  font-size: 44px;
}

h3 {
  font-family: var(--secondary-font-family), serif;
  font-size: 24px;
}

h4 {
  font-family: var(--secondary-font-family), serif;
  font-size: 20px;
}

h5 {
  font-family: var(--secondary-font-family), serif;
  font-size: 18px;
}

.footer-title {
  font-family: var(--secondary-font-family), serif;
  font-size: 18px;
	color: white;
}

h6 {
  font-family: var(--secondary-font-family), serif;
  font-size: 16px;
}

.link {
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-weight: 500;
  color: #09266E;
  text-decoration: none;
}

.pills {
  font-size: 12px;
  line-height: normal;
  font-weight: bold;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

.justify-content-space-between {
  justify-content: space-between;
}

.animate-link-top,
.animate-link-right {
  display: inline-block;
  transition: transform 0.3s ease;
}

.animate-link-top:hover {
  transform: translateY(-10px);
}

.animate-link-right:hover {
  transform: translateX(10px);
}

.animated-block {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animated-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.animated-block.right {
  transform: translateX(40px);
}

.animated-block.right.visible {
  transform: translateX(0);
}

.main_header_bea .top_header {
  padding: 15px 0;
  border-bottom: 1px solid #F0F0F0;
  height: 120px;
}
.main_header_bea .top_header .top_header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main_header_bea .top_header .top_header_wrapper .logo img {
  height: 83px;
}
.main_header_bea .top_header .top_header_wrapper .logo .logo-m {
  display: none;
}
@media (max-width: 520px) {
  .main_header_bea .top_header .top_header_wrapper .logo .logo-m {
    display: block;
  }
}
@media (max-width: 520px) {
  .main_header_bea .top_header .top_header_wrapper .logo .default-logo {
    display: none;
  }
}
.main_header_bea .top_header .top_header_wrapper .company_contact_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
@media (max-width: 992px) {
  .main_header_bea .top_header .top_header_wrapper .company_contact_wrapper {
    display: none;
  }
}
.main_header_bea .top_header .top_header_wrapper .company_contact_wrapper a {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: var(--font-weight-medium);
  color: var(--bleu2-bea);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.main_header_bea .top_header .top_header_wrapper .company_contact_wrapper span.separator {
  width: 1px;
  height: 20px;
  background-color: #E4E7EC;
}
.main_header_bea .top_header .user_nav_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 992px) {
  .main_header_bea .top_header .user_nav_wrapper {
    display: none;
  }
}
.main_header_bea .top_header .user_nav_wrapper a.login {
  border: 1px solid var(--bleu2-bea);
}
.main_header_bea .top_header .user_nav_wrapper a.login:hover svg ellipse {
  stroke: #fff;
}
.main_header_bea .top_header .user_nav_wrapper a.login:hover svg circle {
  stroke: #fff;
}
@media (max-width: 1200px) {
  .main_header_bea .top_header .user_nav_wrapper a.login {
    padding: 13px;
  }
  .main_header_bea .top_header .user_nav_wrapper a.login span {
    display: none;
  }
}
@media (max-width: 1200px) {
  .main_header_bea .top_header .user_nav_wrapper a.subscribe {
    padding: 13px;
  }
  .main_header_bea .top_header .user_nav_wrapper a.subscribe span {
    display: none;
  }
}
.main_header_bea .main_nav_icon {
  display: none;
}
@media (max-width: 992px) {
  .main_header_bea .main_nav_icon {
    display: flex;
    position: relative;
    width: 70px;
    height: 60px;
    background: var(--bleu2-bea);
    cursor: pointer;
    padding: 5px;
    border-radius: 16px;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }
  .main_header_bea .main_nav_icon span {
    height: 5px;
    width: 45px;
    display: block;
    background-color: #fff;
    border-radius: 4px;
    transition: width 0.3s ease;
  }
  .main_header_bea .main_nav_icon.active span:nth-child(1),
  .main_header_bea .main_nav_icon.active span:nth-child(3) {
    width: 20px;
  }
}
.main_header_bea .main_nav {
  border-bottom: 1px solid #F0F0F0;
}
@media (max-width: 992px) {
  .main_header_bea .main_nav {
    position: absolute;
    left: 0;
    top: 120px;
    width: 100%;
    background: #ffffff;
    z-index: 9;
    min-height: calc(100vh - 119px);
    transform: translateX(-100%);
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  .main_header_bea .main_nav.active {
    transform: translateX(0);
    pointer-events: auto;
    overflow-y: auto;
    max-height: calc(100vh - 119px);
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
  }
}
.main_header_bea .main_nav .main_nav_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .main_header_bea .main_nav .main_nav_wrapper {
    flex-direction: column;
  }
}
.main_header_bea .main_nav .main_nav_wrapper .navigation-main {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .main_header_bea .main_nav .main_nav_wrapper .navigation-main {
    flex-direction: column;
    width: 100%;
  }
}
.main_header_bea .main_nav .main_nav_wrapper .navigation-main li {
  display: block;
  position: relative;
}
@media (max-width: 992px) {
  .main_header_bea .main_nav .main_nav_wrapper .navigation-main li {
    width: 100%;
    border-bottom: 1px solid #E4E7EC;
  }
}
.main_header_bea .main_nav .main_nav_wrapper .navigation-main li a {
  font-size: 14px;
  color: var(--bleu2-bea);
  display: block;
  padding: 20px;
  font-weight: var(--font-weight-medium);
  display: flex;
  gap: 6px;
  align-items: center;
}
.main_header_bea .main_nav .main_nav_wrapper .navigation-main li a.has-sub-menu.open svg {
  transform: rotate(180deg);
}
.main_header_bea .main_nav .main_nav_wrapper .navigation-main .sub-menu {
  display: none;
  width: 306px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  z-index: 999;
  border-radius: 16px;
  background-color: #fff;
  border: 1px solid #F0F0F0;
}
@media (max-width: 992px) {
  .main_header_bea .main_nav .main_nav_wrapper .navigation-main .sub-menu {
    width: 100%;
    border: none;
    position: relative;
    padding-left: 40px;
  }
}
.main_header_bea .main_nav .main_nav_wrapper .navigation-main .sub-menu.open {
  display: block;
}
.main_header_bea .main_nav .main_nav_wrapper .navigation-main .sub-menu li {
  padding: 5px 0;
}
.main_header_bea .main_nav .main_nav_wrapper .navigation-main .sub-menu li a {
  padding: 5px 20px;
  display: block;
}
.main_header_bea .main_nav .main_nav_wrapper .navigation-main .sub-menu li a .main_link {
  color: var(--bleu2-bea);
  font-weight: var(--font-weight-bold);
  display: block;
}
.main_header_bea .main_nav .main_nav_wrapper .navigation-main .sub-menu li a .description_link {
  color: #0A3156;
  font-weight: var(--font-weight-regular);
  display: block;
  opacity: 0.5;
}
.main_header_bea .main_nav .main_nav_wrapper .navigation-main span.separator {
  display: block;
  width: 1px;
  height: 20px;
  background-color: #E4E7EC;
}
@media (max-width: 992px) {
  .main_header_bea .main_nav .main_nav_wrapper .navigation-main span.separator {
    display: none;
  }
}
.main_header_bea .main_nav .nav_ext_mobile {
  display: none;
}
.main_header_bea .main_nav .nav_ext_mobile .company_contact_wrapper_mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
}
@media (max-width: 460px) {
  .main_header_bea .main_nav .nav_ext_mobile .company_contact_wrapper_mobile {
    justify-content: start;
  }
}
.main_header_bea .main_nav .nav_ext_mobile .company_contact_wrapper_mobile a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--bleu2-bea);
  font-size: 14px;
}
@media (max-width: 460px) {
  .main_header_bea .main_nav .nav_ext_mobile .company_contact_wrapper_mobile a svg {
    width: 24px;
    height: 24px;
  }
  .main_header_bea .main_nav .nav_ext_mobile .company_contact_wrapper_mobile a span {
    display: none;
  }
}
@media (max-width: 992px) {
  .main_header_bea .main_nav .nav_ext_mobile {
    display: block;
    width: 100%;
  }
}
.main_header_bea .main_nav .login_wrapper__mobile {
  display: none;
  background: #f8f8f8;
  width: calc(100% + 30px);
  padding: 0 15px;
}
.main_header_bea .main_nav .login_wrapper__mobile .user_nav_wrapper {
  display: flex;
  flex-direction: column;
}
.main_header_bea .main_nav .login_wrapper__mobile .user_nav_wrapper a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-bottom: 1px solid #E4E7EC;
  color: var(--bleu2-bea);
  font-weight: var(--font-weight-bold);
  font-size: 14px;
}
.main_header_bea .main_nav .login_wrapper__mobile .user_nav_wrapper a svg path {
  stroke: var(--bleu2-bea);
}
.main_header_bea .main_nav .login_wrapper__mobile .user_nav_wrapper a:last-child {
  border: none;
}
@media (max-width: 992px) {
  .main_header_bea .main_nav .login_wrapper__mobile {
    display: block;
  }
}
.main_header_bea .search_btn {
  background-color: rgba(1, 57, 142, 0.0784313725);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .main_header_bea .search_btn {
    display: none;
  }
}
.main_header_bea .search_btn svg {
  width: 20px;
  height: 20px;
}

.hero_section_wrapper {
  height: 700px;
  position: relative;
  overflow: hidden;
}
.hero_section_wrapper .hero-slides-container {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
  will-change: transform;
}
.hero_section_wrapper .hero-slide {
  height: 100%;
  min-width: 100%;
}
.hero_section_wrapper .hero-slide .hero-overlay {
  position: relative;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
}
.hero_section_wrapper .hero-slide .hero-overlay::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 25%;
  height: 100%;
  background: url(../img/over_hero_img.svg);
  opacity: 0.5;
}
.hero_section_wrapper .hero-slide .hero-overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 25%;
  height: 100%;
  background: url(../img/over_hero_img.svg);
  opacity: 0.5;
  transform: scaleX(-1);
}
.hero_section_wrapper .hero-slide .hero-overlay .hero-content {
  padding-top: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  position: relative;
}
@media (max-width: 1540px) {
  .hero_section_wrapper .hero-slide .hero-overlay .hero-content {
    padding-left: 140px;
    padding-right: 140px;
  }
}
@media (max-width: 768px) {
  .hero_section_wrapper .hero-slide .hero-overlay .hero-content {
    padding-top: 120px;
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 480px) {
  .hero_section_wrapper .hero-slide .hero-overlay .hero-content {
    padding-top: 60px;
  }
}
.hero_section_wrapper .hero-slide .hero-overlay .hero-content .hero-title {
  font-size: 64px;
  color: #fff;
}
@media (max-width: 576px) {
  .hero_section_wrapper .hero-slide .hero-overlay .hero-content .hero-title {
    font-size: 34px;
    line-height: 1.2;
  }
}
.hero_section_wrapper .hero-slide .hero-overlay .hero-content .hero-subtitle {
  color: #fff;
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  max-width: 700px;
  margin-top: 20px;
}
.hero_section_wrapper .hero-slide .hero-overlay .hero-content .hero-buttons {
  margin-top: 40px;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 40px;
}
.hero_section_wrapper .hero-slide .hero-overlay .hero-content .hero-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  letter-spacing: 1px;
  gap: 10px;
  padding: 13px 16px;
}
.hero_section_wrapper .hero-slide .hero-overlay .hero-content .hero-buttons a.btn-primary {
  color: var(--bleu2-bea);
  background-color: #fff;
}
.hero_section_wrapper .hero-slide .hero-overlay .hero-content .hero-buttons a.btn-outline {
  color: #fff;
  border: 1px solid #fff;
}
.hero_section_wrapper .navigation-slider-wrapper .next {
  right: 60px;
  position: absolute;
  top: 50%;
  z-index: 3;
}
@media (max-width: 768px) {
  .hero_section_wrapper .navigation-slider-wrapper .next {
    right: 20px;
  }
}
.hero_section_wrapper .navigation-slider-wrapper .prev {
  left: 60px;
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: scaleX(-1);
}
@media (max-width: 768px) {
  .hero_section_wrapper .navigation-slider-wrapper .prev {
    left: 20px;
  }
}
.hero_section_wrapper .navigation-slider-wrapper .disabled {
  opacity: 0;
}

.bank_section {
  padding: 40px 0;
}
.bank_section .section-title {
  color: var(--bleu2-bea);
  text-align: center;
  margin-bottom: 40px;
}
.bank_section .bank-cards .bank-card {
  background-color: #f5f8fd;
  border-radius: 16px;
  padding: 20px;
}
.bank_section .bank-cards .bank-card .card-image {
  width: 100%;
  height: 100%;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
}
.bank_section .bank-cards .bank-card .card-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.bank_section .bank-cards .bank-card .card-content .card-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  background-color: rgba(1, 57, 142, 0.05);
  border-radius: 100px;
  padding: 10px 20px;
  margin-bottom: 20px;
}
.bank_section .bank-cards .bank-card .card-content .card-icon span {
  font-size: 12px;
  font-weight: var(--font-weight-extrabold);
  color: var(--bleu2-bea);
}
.bank_section .bank-cards .bank-card .card-content .card-title {
  color: var(--bleu2-bea);
  margin-bottom: 15px;
}
.bank_section .bank-cards .bank-card .card-content .card-text {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  color: var(--bleu2-bea);
  margin-bottom: 15px;
}

.services_section {
  background-color: rgb(245, 248, 252);
  border-radius: 100px 100px 0 0;
  padding: 40px;
  margin-top: 40px;
}
@media (max-width: 575px) {
  .services_section {
    padding: 20px;
    border-radius: 80px 80px 0 0;
  }
}
.services_section .services_section_wrapper {
  background-color: #fff;
  border-radius: 60px;
  padding: 40px;
}
@media (max-width: 575px) {
  .services_section .services_section_wrapper {
    padding: 20px 0;
  }
}
.services_section .services_section_wrapper .head_service_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.services_section .services_section_wrapper .head_service_section .title_wrapper .section-title {
  color: var(--bleu2-bea);
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .services_section .services_section_wrapper .head_service_section .title_wrapper .section-title {
    font-size: 28px;
  }
}
.services_section .services_section_wrapper .head_service_section .title_wrapper .description-section {
  font-size: 16px;
  color: gray;
  font-weight: var(--font-weight-regular);
  margin-bottom: 40px;
}
.services_section .services_section_wrapper .tab-content {
  display: none;
}
.services_section .services_section_wrapper .tab-content.active {
  display: block;
}
.services_section .services_section_wrapper .tabs_service_section {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid rgb(228, 231, 236);
  border-radius: 100px;
  padding: 2px;
  width: fit-content;
  margin-left: auto;
}
@media (max-width: 575px) {
  .services_section .services_section_wrapper .tabs_service_section {
    border: none;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.services_section .services_section_wrapper .tabs_service_section .tab {
  background-color: #fff;
  border: none;
  border-radius: 100px;
  padding: 20px;
  cursor: pointer;
}
@media (max-width: 575px) {
  .services_section .services_section_wrapper .tabs_service_section .tab {
    width: 100%;
    border: 1px solid var(--bleu2-bea);
  }
}
.services_section .services_section_wrapper .tabs_service_section .tab.active {
  background-color: var(--bleu2-bea);
  color: #fff;
}
.services_section .services_section_wrapper .content_service_wrapper .card_service {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.services_section .services_section_wrapper .content_service_wrapper .card_service .card_service_wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.services_section .services_section_wrapper .content_service_wrapper .card_service.card_service_510 {
  height: 485px;
}
.services_section .services_section_wrapper .content_service_wrapper .card_service.card_service_img:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  z-index: 5;
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
}
.services_section .services_section_wrapper .content_service_wrapper .card_service.card_service_232 {
  height: 232px;
}
.services_section .services_section_wrapper .content_service_wrapper .card_service img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.services_section .services_section_wrapper .content_service_wrapper .card_service a.service_link {
  position: absolute;
  z-index: 8;
  left: 25px;
  bottom: 25px;
  color: #fff;
  font-size: 22px;
  padding-right: 50px;
  text-align: left;
}
.services_section .services_section_wrapper .content_service_wrapper .card_service a.service_link:hover svg {
  transform: rotate(45deg);
}
.services_section .services_section_wrapper .content_service_wrapper .card_service a.service_link svg {
  transition: all 0.3s ease;
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-bottom: -3px;
}
.services_section .services_section_wrapper .content_service_wrapper .card_service.card_service_text {
  text-align: center;
}
.services_section .services_section_wrapper .content_service_wrapper .card_service.card_service_text.green_card {
  background-color: rgb(147, 213, 0);
  background-image: url(../img/pattern.svg);
  background-repeat: no-repeat;
  background-size: 735px;
  background-position: -15px -280px;
}
.services_section .services_section_wrapper .content_service_wrapper .card_service.card_service_text.blue_card {
  background-color: var(--bleu-bea);
  background-image: url(../img/pattern.svg);
  background-repeat: no-repeat;
  background-size: 680px;
  background-position: -210px -250px;
}
.services_section .services_section_wrapper .content_service_wrapper .card_service.card_service_text .number {
  font-family: var(--secondary-font-family-bold);
  color: #fff;
  display: block;
}
.services_section .services_section_wrapper .content_service_wrapper .card_service.card_service_text .number .counting-number {
  font-size: 60px;
}
.services_section .services_section_wrapper .content_service_wrapper .card_service.card_service_text .number span {
  font-size: 24px;
}
.services_section .services_section_wrapper .content_service_wrapper .card_service.card_service_text .value {
  color: #fff;
  font-size: 22px;
  font-weight: var(--font-weight-medium);
}
.services_section .services_section_wrapper .content_service_wrapper .card_service:hover img {
  transform: scale(1.05);
}
.services_section .services_section_wrapper .content_service_wrapper .row + .row {
  margin-top: 10px;
}

.agencies_section {
  padding: 40px 0;
  background-image: url(../img/over_hero_img_gray.svg);
}
@media (max-width: 1400px) {
  .agencies_section .agencies_left_col {
    padding-left: 100px;
  }
}
@media (max-width: 575px) {
  .agencies_section .agencies_left_col {
    padding-left: 10px;
  }
}
.agencies_section .title_section .title {
  color: var(--bleu2-bea);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.agencies_section .title_section .title span {
  background-color: var(--vert-bea);
  border-radius: 90px;
  padding: 10px;
  border: 1px solid #fff;
  color: #fff;
  display: block;
  width: fit-content;
}
.agencies_section .title_section .title span > span {
  padding: 0px 20px;
  border-radius: 100px;
}
.agencies_section .title_section .title span:after {
  content: "";
  background-color: var(--vert-bea);
}
.agencies_section .features_list_wrapper {
  margin-bottom: 20px;
}
.agencies_section .features_list_wrapper ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.agencies_section .features_list_wrapper ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border: 1px solid rgba(9, 38, 110, 0.2);
  padding: 8px 10px;
  font-size: 16px;
  color: var(--bleu2-bea);
  font-weight: var(--font-weight-semi-bold);
}
.agencies_section .agencies_list_carrousel {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: -52px;
}
@media (max-width: 575px) {
  .agencies_section .agencies_list_carrousel {
    margin-left: 0;
  }
}
.agencies_section .agencies_list_carrousel .card_agency {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.agencies_section .agencies_list_carrousel .card_agency:hover img {
  transform: scale(1.05);
}
.agencies_section .agencies_list_carrousel .card_agency:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.39), rgba(0, 0, 0, 0));
  z-index: 5;
}
.agencies_section .agencies_list_carrousel .card_agency img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.agencies_section .agencies_list_carrousel .card_agency a {
  font-size: 24px;
  position: absolute;
  z-index: 8;
  left: 25px;
  bottom: 25px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--secondary-font-family);
}
.agencies_section .agencies_list_carrousel .card_agency a:hover svg {
  transform: rotate(45deg);
}
.agencies_section .agencies_list_carrousel .card_agency a svg {
  transition: all 0.3s ease;
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-bottom: -3px;
}
.agencies_section .agencies_list_carrousel .carousel-window {
  overflow: hidden;
  flex: 1;
}
.agencies_section .agencies_list_carrousel .carousel-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease;
}
.agencies_section .agencies_list_carrousel .agencies_list_carrousel_btn.prev {
  transform: scaleX(-1);
}
.agencies_section .agencies_list_carrousel .agencies_list_carrousel_btn.disabled {
  opacity: 0;
}
.agencies_section .map_wrapper img {
  width: 410px;
  margin-left: auto;
  display: block;
}
@media (max-width: 992px) {
  .agencies_section .map_wrapper img {
    width: 80%;
    margin: auto;
  }
}

.about_agency_section .about_agency_content {
  background-color: rgba(147, 204, 29, 0.1);
  background-image: url(../img/pattern-green.svg);
  background-repeat: no-repeat;
  padding: 60px 100px;
  background-size: 900px;
  background-position: 0 -220px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .about_agency_section .about_agency_content {
    padding: 60px;
  }
}
@media (max-width: 535px) {
  .about_agency_section .about_agency_content {
    padding: 20px;
  }
}
.about_agency_section .about_agency_content .about_section_wrapper {
  padding-right: 40px;
}
@media (max-width: 768px) {
  .about_agency_section .about_agency_content .about_section_wrapper {
    padding-right: 0;
  }
}
.about_agency_section .about_agency_content .title_wrapper .title {
  color: var(--vert-bea);
}
.about_agency_section .about_agency_content .about_content {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  color: rgb(71, 84, 103);
}
.about_agency_section .about_agency_content .about_content p {
  margin-bottom: 20px;
}
.about_agency_section .about_agency_content .img_about_section img {
  display: block;
  border-radius: 16px;
  border: 15px solid rgb(234, 242, 213);
}

.event_blog_section {
  margin-top: 80px;
}
.event_blog_section .head_section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.event_blog_section .head_section .title {
  color: var(--bleu2-bea);
}
.event_blog_section .head_section a.all_posts {
  display: flex;
  align-items: center;
  gap: 8px 16px;
  border-radius: 40px;
  border: 1px solid rgba(9, 38, 110, 0.2);
  padding: 8px 10px 8px 20px;
  font-size: 16px;
  font-weight: var(--font-weight-semi-bold);
  color: var(--bleu2-bea);
}
.event_blog_section .card_event {
  display: flex;
  margin-bottom: 20px;
  gap: 20px;
}
@media (max-width: 480px) {
  .event_blog_section .card_event {
    flex-direction: column;
  }
}
.event_blog_section .card_event.big_card_event {
  flex-direction: column;
}
.event_blog_section .card_event.big_card_event .thumb_wrapper {
  width: 100%;
  height: 340px;
}
.event_blog_section .card_event.big_card_event .title {
  font-size: 24px !important;
}
.event_blog_section .card_event.big_card_event .title a {
  color: var(--bleu2-bea);
}
.event_blog_section .card_event .thumb_wrapper {
  width: 170px;
  min-width: 170px;
  height: 170px;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .event_blog_section .card_event .thumb_wrapper {
    width: 140px;
    min-width: 140px;
  }
}
@media (max-width: 480px) {
  .event_blog_section .card_event .thumb_wrapper {
    width: 100%;
    min-width: 100%;
    height: 340px;
  }
}
.event_blog_section .card_event .thumb_wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
.event_blog_section .card_event .card_event_content .cat_wrapper {
  font-size: 12px;
  font-weight: var(--font-weight-semi-bold);
  color: #fff;
  background-color: var(--bleu2-bea);
  border-radius: 8px;
  padding: 5px 10px;
  width: fit-content;
  margin-bottom: 10px;
}
.event_blog_section .card_event .card_event_content .cat_wrapper.event_wrap {
  background-color: var(--vert-bea);
}
.event_blog_section .card_event .card_event_content .title_wrapper .title {
  font-family: var(--primary-font-family);
  font-weight: var(--font-weight-semi-bold);
  font-size: 20px;
}
.event_blog_section .card_event .card_event_content .title_wrapper .title a {
  display: flex;
  justify-content: space-between;
  color: var(--bleu2-bea);
  gap: 20px;
}
.event_blog_section .card_event .card_event_content .title_wrapper .title a:hover svg {
  transform: rotate(45deg);
}
.event_blog_section .card_event .card_event_content .title_wrapper .title a svg {
  width: 42px;
  height: 42px;
  min-width: 42px;
  transition: 0.3s;
}
.event_blog_section .card_event .card_event_content .date_post {
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  color: gray;
}

.contact_section_wrapper {
  border-top-left-radius: 250px;
  border-top-right-radius: 250px;
  margin-bottom: 60px;
  background: linear-gradient(rgba(147, 193, 62, 0.1), rgba(255, 255, 255, 0));
  margin-top: 60px;
  padding-top: 120px;
}

@media (max-width: 768px) {
  .contact_section {
    padding-top: 60px;
    border-top-left-radius: 120px;
    border-top-right-radius: 120px;
  }
}
.contact_section .contact_section_container {
  width: 80%;
  margin: auto;
}
.contact_section .head_section .title {
  font-size: 24px;
  font-family: var(--secondary-font-family-bold);
  color: var(--vert-bea);
  margin-bottom: 20px;
}
.contact_section .head_section .title span {
  display: block;
  font-family: var(--secondary-font-family);
}
.contact_section .details_contact {
  color: rgb(25, 33, 45);
  font-size: 20px;
  width: 80%;
  margin-bottom: 20px;
}
.contact_section .details_contact strong {
  font-family: var(--secondary-font-family-bold);
  font-weight: normal;
}
.contact_section .details_contact .block {
  display: block;
}
.contact_section .agent_wrapper {
  display: flex;
  gap: 10px;
  align-items: end;
  margin-bottom: 20px;
}
.contact_section .agent_wrapper .thumbnail_wrapper {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 100%;
}
.contact_section .agent_wrapper .thumbnail_wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 100%;
}
.contact_section .agent_wrapper .thumbnail_wrapper .status_online {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 100%;
  background-color: var(--vert-bea);
}
.contact_section .agent_wrapper .details {
  font-size: 14px;
}
.contact_section .agent_wrapper .details .name {
  display: block;
  color: rgb(16, 24, 40);
  font-family: var(--secondary-font-family-bold);
}
.contact_section .agent_wrapper .details .function {
  font-family: var(--secondary-font-family);
  color: rgb(128, 128, 133);
  color: 12px;
}
.contact_section .contact_phone_wrapper .number {
  background-color: rgba(147, 193, 62, 0.17);
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  padding: 15px;
  display: flex;
  width: fit-content;
  border-radius: 9px;
  align-items: center;
  gap: 10px;
}
.contact_section .contact_phone_wrapper .txt {
  font-size: 12px;
  color: rgb(60, 60, 60);
  font-weight: var(--font-weight-regular);
}
.contact_section .contact_form_wrapper {
  padding-bottom: 120px;
}
.contact_section .contact_form_wrapper .form-group {
  position: relative;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 100px;
  border: 1px solid rgb(234, 234, 236);
  margin-bottom: 20px;
}
.contact_section .contact_form_wrapper .form-group.textarea-wrapper {
  border-radius: 20px;
}
.contact_section .contact_form_wrapper .form-group.textarea-wrapper textarea {
  width: 100%;
  height: 240px;
  border: none;
}
.contact_section .contact_form_wrapper .form-group label {
  font-weight: var(--font-weight-regular);
  font-size: 10px;
  display: block;
}
.contact_section .contact_form_wrapper .form-group input[type=text],
.contact_section .contact_form_wrapper .form-group input[type=email],
.contact_section .contact_form_wrapper .form-group input[type=tel] {
  border: none;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  color: rgb(25, 33, 45);
}
.contact_section .contact_form_wrapper .form-group .icon-check {
  position: absolute;
  right: 20px;
  top: 20px;
}
.contact_section .contact_form_wrapper .form-check {
  display: flex;
  gap: 10px;
  font-size: 16px;
  color: #777;
  margin-bottom: 20px;
}
.contact_section .contact_form_wrapper .form-check input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  background-color: #fff;
  position: relative;
}
.contact_section .contact_form_wrapper .form-check input[type=checkbox]:checked {
  background-color: #93c13e;
  border-color: #93c13e;
}
.contact_section .contact_form_wrapper .form-check input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  top: 3px;
  left: 5px;
  transform: rotate(45deg);
}
.contact_section .contact_form_wrapper .form-check label {
  cursor: pointer;
  color: #3C3C3C;
  font-size: 12px;
  font-weight: var(--font-weight-medium);
}
.contact_section .contact_form_wrapper .form-check label a {
  text-decoration: underline;
  color: #3C3C3C;
}
.contact_section .contact_form_wrapper .btn-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 20px;
  height: 50px;
  background-color: #93c13e;
  color: #1c1c1c;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  margin-left: auto;
  gap: 10px;
  margin-top: 40px;
  transition: background-color 0.3s ease;
}
.contact_section .contact_form_wrapper .btn-submit .icon-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  margin-left: 15px;
}
.contact_section .contact_form_wrapper .btn-submit .icon-arrow svg {
  stroke: #1c1c1c;
}
.contact_section .contact_form_wrapper .btn-submit:hover {
  background-color: rgb(132.3, 173.7, 55.8);
}
.contact_section .contact_form_wrapper .btn-submit.btn-blue {
  background-color: var(--bleu2-bea);
  color: #fff;
}

.main_footer_section {
  background-color: black;
  padding-top: 96px;
}
.main_footer_section .main_footer_container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.main_footer_section .main_footer_container .widget_footer {
  flex: 0 0 calc((100% - 240px - 120px) / 5);
}
.main_footer_section .main_footer_container .widget_footer:nth-child(1), .main_footer_section .main_footer_container .widget_footer:nth-child(2) {
  width: 120px;
  flex: 0 0 120px;
}
@media (max-width: 992px) {
  .main_footer_section .main_footer_container .widget_footer {
    flex: 0 0 calc(25% - 20px) !important;
  }
}
@media (max-width: 768px) {
  .main_footer_section .main_footer_container .widget_footer {
    flex: 0 0 calc(50% - 20px) !important;
  }
}
.main_footer_section .main_footer_container .widget_footer h5.title {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: #fff;
  margin-bottom: 24px;
  font-weight: normal;
}
.main_footer_section .main_footer_container .widget_footer .adress_wrapper {
  margin-bottom: 34px;
}
.main_footer_section .main_footer_container .widget_footer .adress_wrapper span {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
}
.main_footer_section .main_footer_container .widget_footer .social_media_wrapper {
  margin-bottom: 24px;
}
.main_footer_section .main_footer_container .widget_footer .links_wrapper {
  list-style: none;
}
.main_footer_section .main_footer_container .widget_footer .links_wrapper li {
  margin-bottom: 23px;
}
.main_footer_section .main_footer_container .widget_footer .links_wrapper li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.2;
  display: block;
  transition: color 0.4s ease;
}
.main_footer_section .main_footer_container .widget_footer .links_wrapper li a:hover {
  color: #ffffff;
}
.main_footer_section .bottom_footer_wrapper {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 40px;
  padding-bottom: 40px;
}
.main_footer_section .bottom_footer_wrapper .bottom_footer_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px 16px;
}
.main_footer_section .bottom_footer_wrapper .bottom_footer_content .footer_bottom_left {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.main_footer_section .bottom_footer_wrapper .bottom_footer_content .footer_bottom_left span, .main_footer_section .bottom_footer_wrapper .bottom_footer_content .footer_bottom_left a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.4s ease;
}
.main_footer_section .bottom_footer_wrapper .bottom_footer_content .footer_bottom_left span:hover, .main_footer_section .bottom_footer_wrapper .bottom_footer_content .footer_bottom_left a:hover {
  color: #ffffff;
}
.main_footer_section .bottom_footer_wrapper .bottom_footer_content .footer_bottom_right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.main_footer_section .bottom_footer_wrapper .bottom_footer_content .footer_bottom_right span, .main_footer_section .bottom_footer_wrapper .bottom_footer_content .footer_bottom_right a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.hero_page__wrapper {
  padding: 120px 0;
}
.hero_page__wrapper .container {
  position: relative;
  z-index: 2;
}
.hero_page__wrapper .title_hero__wrapper .title__hero {
  color: #fff;
  margin-bottom: 24px;
}
.hero_page__wrapper .description_hero p {
  color: #fff;
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  margin-bottom: 30px;
}
.hero_page__wrapper .description_hero .btn_hero {
  padding: 16px 24px;
  border: none;
}
.hero_page__wrapper.hero_page_product_1__wrapper {
  position: relative;
  background: linear-gradient(to bottom right, #2D76BB, #81B0DA);
}
.hero_page__wrapper.hero_page_product_1__wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/pattern.svg);
  background-repeat: no-repeat;
  z-index: 1;
  background-position: center -358px;
  background-size: 1200px;
}

.hero_page__default_blue {
  position: relative;
  background: linear-gradient(to bottom right, #2A6FD1, #174A99);
}
.hero_page__default_blue.hero_page__default_light_blue {
  background: linear-gradient(to bottom right, rgb(45, 118, 187), rgb(129, 176, 218));
}
.hero_page__default_blue:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  z-index: 1;
  z-index: 1;
  background-image: url(../img/pattern_2.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  opacity: 0.1;
}

.hero_page__contact {
  padding-bottom: 320px;
}

.hero_article__wrapper {
  padding: 80px 0;
}

.hero_page_bg_image {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero_page_bg_image:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  z-index: 1;
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.25));
}

.breadcrump_wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
  gap: 5px;
}
.breadcrump_wrapper span, .breadcrump_wrapper a {
  color: #fff;
  font-size: 13px;
  font-weight: var(--font-weight-regular);
}

.content_section {
  margin: 60px 0;
}

.thumbnail_vea_wrapper {
  border-radius: 16px;
  border: 15px solid rgb(245, 248, 253);
}
.thumbnail_vea_wrapper img {
  display: block;
  border-radius: 10px;
}

.title_section__wrapper .title_section {
  color: var(--bleu2-bea);
  margin-bottom: 20px;
}

.content_section__wrapper p {
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  color: gray;
  margin-bottom: 20px;
}

.featured_news__container {
  border-radius: 10px;
  background-color: rgba(147, 204, 29, 0.1);
  padding: 40px;
}
.featured_news__container .thumbnail_vea_wrapper {
  border: none;
}
.featured_news__container .featured_news_content .meta_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.featured_news__container .featured_news_content .meta_wrapper .cat_wrapper {
  font-size: 12px;
  font-weight: var(--font-weight-semi-bold);
  color: #fff;
  background-color: var(--bleu2-bea);
  border-radius: 8px;
  padding: 5px 12px;
  width: fit-content;
  margin-bottom: 10px;
}
.featured_news__container .featured_news_content .meta_wrapper .cat_wrapper.event_wrap {
  background-color: var(--vert-bea);
}
.featured_news__container .featured_news_content .meta_wrapper .publish_date_wrapper {
  font-size: 14px;
  font-weight: 700;
  color: var(--bleu2-bea);
}
.featured_news__container .featured_news_content h3.title {
  font-size: 36px;
  font-family: var(--primary-font-family);
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
}
.featured_news__container .featured_news_content p {
  font-size: 16px;
  color: gray;
  margin-bottom: 20px;
}
.featured_news__container .featured_news_content .more_permalink {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
}
.featured_news__container .featured_news_content .more_permalink svg {
  display: inline-block;
  transition: transform 0.3s ease;
}
.featured_news__container .featured_news_content .more_permalink:hover svg {
  transform: translateX(10px);
}

.load_more {
  border: 1px solid var(--bleu2-bea);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  gap: 8px;
  font-size: 14px;
  font-weight: var(--font-weight-semi-bold);
  padding: 13px 16px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: fit-content;
  color: var(--bleu2-bea);
  margin: 60px auto;
}
.load_more:hover {
  background: var(--bleu2-bea);
  color: #fff;
}

.filter_wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
}
.filter_wrapper ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.filter_wrapper ul li a {
  border-radius: 8px;
  padding: 5px 12px;
  border: 1px solid var(--bleu2-bea);
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  color: var(--bleu2-bea);
  transition: all 0.3s ease;
}
.filter_wrapper ul li.active a, .filter_wrapper ul li:hover a {
  background-color: var(--bleu2-bea);
  color: #fff;
}

.news_tab_content {
  display: none;
}
.news_tab_content.active {
  display: block;
}

.news_card__wrapper {
  border-radius: 10px;
  padding: 40px;
  background-color: rgb(245, 248, 253);
  margin-bottom: 40px;
}
.news_card__wrapper .thumbnail {
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.news_card__wrapper .thumbnail img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.news_card__wrapper .meta_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.news_card__wrapper .meta_wrapper .cat_wrapper {
  font-size: 12px;
  font-weight: var(--font-weight-semi-bold);
  color: #fff;
  background-color: var(--bleu2-bea);
  border-radius: 8px;
  padding: 5px 12px;
  width: fit-content;
  margin-bottom: 10px;
}
.news_card__wrapper .meta_wrapper .cat_wrapper.event_wrap {
  background-color: var(--vert-bea);
}
.news_card__wrapper .meta_wrapper .publish_date_wrapper {
  font-size: 14px;
  font-weight: 700;
  color: var(--bleu2-bea);
}
.news_card__wrapper h3.title {
  font-size: 20px;
  font-family: var(--primary-font-family);
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
}
.news_card__wrapper p {
  font-size: 16px;
  color: gray;
  margin-bottom: 20px;
}
.news_card__wrapper .more_permalink {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
}
.news_card__wrapper .more_permalink svg {
  display: inline-block;
  transition: transform 0.3s ease;
}
.news_card__wrapper .more_permalink:hover svg {
  transform: translateX(10px);
}

.features_card__wrapper {
  margin-bottom: 20px;
}
.features_card__wrapper .feature_card_item {
  border-radius: 24px;
  background-color: var(--vert-bea);
  background-image: url(../img/pattern.svg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  background-repeat: no-repeat;
  background-size: 735px;
  background-position: -15px -280px;
}
.features_card__wrapper .feature_card_item.odd {
  background-color: var(--bleu-bea);
}
.features_card__wrapper .feature_card_item .value {
  color: #fff;
  font-size: 48px;
  font-family: var(--secondary-font-family-bold);
}
.features_card__wrapper .feature_card_item .txt {
  font-size: 18px;
  color: #fff;
}
.features_card__wrapper .feature_card_item .title {
  font-size: 28px;
  color: #fff;
  font-family: var(--secondary-font-family-bold);
}

.features_card_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.features_card_list li {
  font-size: 16px;
  font-weight: var(--font-weight-semi-bold);
  color: var(--bleu2-bea);
  list-style: none;
  border: 1px solid var(--bleu2-bea);
  border-radius: 100px;
  padding: 12px 16px;
}

.cards_wrapper {
  margin-top: 60px;
}
.cards_wrapper .card_item__wrapper {
  background: #F5F8FD;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 0 10px;
}
.cards_wrapper .card_item__wrapper .thumbnail {
  height: 200px;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
}
.cards_wrapper .card_item__wrapper .thumbnail img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cards_wrapper .card_item__wrapper .title_card {
  font-family: var(--primary-font-family);
  font-size: 18px;
  color: var(--bleu2-bea);
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
}
.cards_wrapper .card_item__wrapper p {
  font-size: 14px;
  margin-bottom: 40px;
  font-weight: var(--font-weight-regular);
}
.cards_wrapper .card_item__wrapper a.more {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: var(--font-weight-semi-bold);
  letter-spacing: 1px;
  color: var(--bleu2-bea);
  border: 1px solid var(--bleu2-bea);
  border-radius: 100px;
  padding: 16px 24px;
  width: fit-content;
  margin: auto;
  font-size: 14px;
}

.how_subscribe__wrapper {
  margin: 40px 0;
}
.how_subscribe__wrapper .how_subscribe__content {
  background-color: rgba(71, 187, 242, 0.1);
  border-radius: 30px;
  padding: 40px;
}
.how_subscribe__wrapper .how_subscribe__content .title_wrapper .title {
  text-align: center;
  color: var(--bleu2-bea);
  margin-bottom: 40px;
}

.how_subscribe__steps_wrapper {
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 992px) {
  .how_subscribe__steps_wrapper {
    flex-wrap: wrap;
    padding: 60px 20px;
  }
}
.how_subscribe__steps_wrapper .step_item__wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.how_subscribe__steps_wrapper .step_item__wrapper:nth-child(even) .step_item_content {
  align-items: end;
}
@media (max-width: 992px) {
  .how_subscribe__steps_wrapper .step_item__wrapper:nth-child(even) {
    flex-direction: column-reverse;
  }
  .how_subscribe__steps_wrapper .step_item__wrapper:nth-child(even) .step_num_wrapper {
    align-items: end;
  }
}
.how_subscribe__steps_wrapper .step_item__wrapper:nth-child(odd) .step_num_wrapper {
  align-items: end;
}
.how_subscribe__steps_wrapper .step_item__wrapper .step_num_wrapper {
  min-height: 120px;
  display: flex;
}
.how_subscribe__steps_wrapper .step_item__wrapper .step_num_wrapper .step_num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  font-weight: var(--font-weight-extrabold);
  background-color: var(--bleu-bea);
  width: 64px;
  height: 64px;
}
.how_subscribe__steps_wrapper .step_item__wrapper .step_separator_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.how_subscribe__steps_wrapper .step_item__wrapper .step_separator_wrap .disc {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: var(--bleu-bea);
}
.how_subscribe__steps_wrapper .step_item__wrapper .step_separator_wrap .line {
  display: block;
  width: calc(100% - 20px);
  height: 3px;
  background-color: rgb(237, 235, 239);
}
.how_subscribe__steps_wrapper .step_item__wrapper .step_item_content {
  padding-right: 15px;
  min-height: 120px;
  display: flex;
}
@media (max-width: 992px) {
  .how_subscribe__steps_wrapper .step_item__wrapper .step_item_content {
    min-height: inherit;
  }
}
.how_subscribe__steps_wrapper .step_item__wrapper .step_item_content .step_title {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--bleu2-bea);
  display: block;
}
.how_subscribe__steps_wrapper .step_item__wrapper .step_item_content p {
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  color: rgb(95, 101, 104);
}

.content_txt {
  width: 80%;
  margin: auto;
  color: var(--bleu2-bea);
}
@media (max-width: 992px) {
  .content_txt {
    width: 100%;
  }
}
.content_txt .title_h5 {
  font-size: 18px;
  font-family: var(--primary-font-family);
  font-weight: var(--font-weight-bold);
  margin-bottom: 30px;
}
.content_txt .title {
  font-size: 14px;
  font-family: var(--primary-font-family);
  font-weight: var(--font-weight-bold);
}
.content_txt p {
  font-size: 14px;
  margin-bottom: 20px;
}

.tabs_wrapper .tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tabs_wrapper .tabs .tab {
  padding: 16px 24px;
  color: var(--bleu2-bea);
  border: 1px solid var(--bleu2-bea);
  background: #fff;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  font-size: 16px;
  font-weight: var(--font-weight-regular);
}
.tabs_wrapper .tabs .tab:hover, .tabs_wrapper .tabs .tab.active {
  background: var(--bleu2-bea);
  color: #fff;
}
.tabs_wrapper .tab_content {
  display: none;
}
.tabs_wrapper .tab_content.active {
  display: block;
}
.tabs_wrapper .tab_content .accordion .accordion-item {
  border-radius: 6px;
  margin-bottom: 40px;
  background: rgb(245, 248, 253);
  overflow: hidden;
  color: var(--bleu2-bea);
  padding: 20px 60px;
}
@media (max-width: 992px) {
  .tabs_wrapper .tab_content .accordion .accordion-item {
    padding: 20px;
  }
}
.tabs_wrapper .tab_content .accordion .accordion-item.active {
  background: rgb(228, 236, 249);
}
.tabs_wrapper .tab_content .accordion .accordion-item.active .accordion-body {
  display: block;
}
.tabs_wrapper .tab_content .accordion .accordion-item.active .accordion-header:before {
  transform: rotate(0deg);
}
.tabs_wrapper .tab_content .accordion .accordion-item .accordion-header {
  font-size: 16px;
  color: var(--bleu2-bea);
  font-weight: var(--font-weight-bold);
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
  position: relative;
  padding-right: 20px;
}
.tabs_wrapper .tab_content .accordion .accordion-item .accordion-header:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 16px;
  height: 8px;
  transform: rotate(180deg);
  background: url(../img/chevron.svg);
}
.tabs_wrapper .tab_content .accordion .accordion-item .accordion-body {
  display: none;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  margin-top: 15px;
}

.publications_section {
  background-color: rgb(237, 248, 254);
  padding: 60px 0;
}
.publications_section .pub__thumb img {
  height: 420px;
  display: block;
  margin: auto;
  border-radius: 10px;
}
.publications_section .publication_card .caption {
  color: rgb(0, 174, 255);
  font-size: 20px;
  font-weight: var(--font-weight-semi-bold);
  padding: 10px 15px;
  border-radius: 8px;
  background: #d2efff;
  display: block;
  width: fit-content;
  margin-bottom: 10px;
}
.publications_section .publication_card p {
  font-size: 16px;
  color: gray;
  margin-bottom: 20px;
}
.publications_section .publication_card a.permalink {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  gap: 8px;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  padding: 13px 16px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: fit-content;
  background-color: var(--deep-blue);
  border: 1px solid var(--deep-blue);
  color: #fff;
}

.press_section .press_card__wrapper {
  border-radius: 10px;
  padding: 40px;
  background-color: rgb(245, 248, 253);
  margin-bottom: 40px;
}
.press_section .press_card__wrapper .thumbnail {
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.press_section .press_card__wrapper .thumbnail img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.press_section .press_card__wrapper h3.title {
  font-size: 20px;
  font-family: var(--primary-font-family);
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
}
.press_section .press_card__wrapper p {
  font-size: 16px;
  color: gray;
  margin-bottom: 20px;
}
.press_section .press_card__wrapper .more_permalink {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  gap: 8px;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  padding: 13px 16px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: fit-content;
  background-color: var(--deep-blue);
  color: #fff;
  text-decoration: none;
}

.title_hero__article {
  max-width: 860px;
  margin: 20px auto;
}
.title_hero__article .title__hero {
  font-size: 36px;
  font-family: var(--primary-font-family);
  font-weight: var(--font-weight-bold);
}
.title_hero__article .meta_wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 15px;
}
.title_hero__article .meta_wrapper .cat_wrapper {
  font-size: 12px;
  font-weight: var(--font-weight-semi-bold);
  color: #fff;
  background-color: var(--bleu2-bea);
  border-radius: 8px;
  padding: 5px 12px;
  width: fit-content;
}
.title_hero__article .meta_wrapper .cat_wrapper.event_wrap {
  background-color: var(--vert-bea);
}
.title_hero__article .meta_wrapper .publish_date_wrapper {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.article_content_wrapper {
  max-width: 860px;
  margin: 20px auto;
  padding: 0 15px;
}
.article_content_wrapper .thumbnail_article,
.article_content_wrapper .video_wrapper {
  position: relative;
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.article_content_wrapper .thumbnail_article img,
.article_content_wrapper .video_wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.article_content_wrapper .thumbnail_article a,
.article_content_wrapper .video_wrapper a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.article_content_wrapper .thumbnail_article a svg,
.article_content_wrapper .video_wrapper a svg {
  background-color: rgb(219, 235, 255);
  padding: 20px;
  border-radius: 100%;
  width: 56px;
  height: 56px;
  transition: all 0.3s ease;
}
.article_content_wrapper .thumbnail_article:hover a svg,
.article_content_wrapper .video_wrapper:hover a svg {
  padding: 18px;
}
.article_content_wrapper .article_content h2,
.article_content_wrapper .article_content h3,
.article_content_wrapper .article_content h4,
.article_content_wrapper .article_content h5,
.article_content_wrapper .article_content h6 {
  font-family: var(--primary-font-family);
  font-weight: var(--font-weight-bold);
}
.article_content_wrapper .article_content p {
  margin-bottom: 20px;
  color: gray;
}
.article_content_wrapper .article_content ul {
  padding-left: 40px;
  color: gray;
  margin-bottom: 20px;
}

.share_article_wrapper ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}
.share_article_wrapper ul a.copy_link {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #ededed;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 16px;
  color: var(--bleu2-bea);
}

.content_page_wrapper {
  margin: 60px 0;
}
.content_page_wrapper ol, .content_page_wrapper ul, .content_page_wrapper p {
  font-size: 18px;
  font-weight: var(--font-weight-regular);
  color: gray;
  margin-top: 20px;
}
.content_page_wrapper ol a, .content_page_wrapper ul a, .content_page_wrapper p a {
  color: var(--bleu2-bea);
}
.content_page_wrapper ol, .content_page_wrapper ul {
  padding-left: 40px;
}
.content_page_wrapper p + ul {
  margin-top: 0;
}
.content_page_wrapper h2,
.content_page_wrapper h3,
.content_page_wrapper h4,
.content_page_wrapper h5,
.content_page_wrapper h6 {
  margin-top: 20px;
}
.content_page_wrapper .title_txt {
  font-size: 18px;
  display: block;
  margin-top: 20px;
  font-weight: var(--font-weight-bold);
  color: var(--bleu2-bea);
}

.our_agencies_section .our_agencies_wrapper {
  background-color: rgba(71, 187, 242, 0.1);
  border-radius: 20px;
  padding: 40px 60px 0;
  overflow: hidden;
}
.our_agencies_section .our_agencies_wrapper .title_section__wrapper {
  margin-bottom: 20px;
}
.our_agencies_section .our_agencies_wrapper p {
  color: gray;
  margin-bottom: 20px;
}
.our_agencies_section .our_agencies_wrapper .caption_wrapper {
  display: flex;
  gap: 15px;
}
.our_agencies_section .our_agencies_wrapper .caption_wrapper p {
  font-size: 18px;
  color: var(--bleu2-bea);
  font-weight: var(--font-weight-bold);
}
.our_agencies_section .our_agencies_wrapper .caption_wrapper svg {
  min-width: 31px;
}
.our_agencies_section .our_agencies_wrapper .map_wrapper {
  height: 520px;
  background-repeat: no-repeat;
  background-size: 85%;
  margin-top: -50px;
  margin-bottom: -10px;
}

.agencies_list_wrapper .agence_card .thumb_agence_card {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  margin: auto;
  padding: 3px;
  border: 1px solid var(--bleu2-bea);
  position: relative;
}
.agencies_list_wrapper .agence_card .thumb_agence_card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 100%;
}
.agencies_list_wrapper .agence_card .content_agence {
  background-color: rgb(245, 248, 253);
  border-radius: 10px;
  padding: 80px 40px 40px;
  text-align: center;
  margin-top: -60px;
}
.agencies_list_wrapper .agence_card .content_agence .title {
  margin-bottom: 15px;
}
.agencies_list_wrapper .agence_card .contact_info__wrapper {
  margin-bottom: 15px;
}
.agencies_list_wrapper .agence_card .contact_info__wrapper ul {
  list-style: none;
}
.agencies_list_wrapper .agence_card .contact_info__wrapper ul li {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.agencies_list_wrapper .agence_card .contact_info__wrapper ul li a {
  color: var(--bleu2-bea);
}
.agencies_list_wrapper .agence_card .adress_wrapper {
  margin-bottom: 15px;
}
.agencies_list_wrapper .agence_card .adress_wrapper .caption {
  display: block;
  font-weight: var(--font-weight-bold);
  font-size: 18px;
  color: var(--bleu2-bea);
}
.agencies_list_wrapper .agence_card .adress_wrapper .value_adress {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.agencies_list_wrapper .agence_card a.permalink {
  background: var(--bleu2-bea);
  color: #fff;
  border-radius: 40px;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  width: fit-content;
  margin: auto;
}

.contact_section {
  position: relative;
  z-index: 99;
}

.contact_page_wrapper {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-top: -220px;
}
.contact_page_wrapper .head_section .title {
  color: var(--bleu2-bea);
  font-size: 40px;
}
.contact_page_wrapper .head_section p {
  color: gray;
}
.contact_page_wrapper .contact_agent_wrapper {
  background-color: rgb(245, 249, 237);
  padding: 40px;
  border-radius: 10px;
  margin-top: 30px;
}
.contact_page_wrapper .contact_agent_wrapper .details_contact .block {
  color: rgb(94, 145, 0);
  font-size: 20px;
}
.contact_page_wrapper .contact_agent_wrapper .details_contact p {
  font-size: 14px;
}
.contact_page_wrapper .p_r_80 {
  padding-right: 80px;
}

select.select_dc {
  display: none;
}

.custom-select_dc {
  position: relative;
  cursor: pointer;
}
.custom-select_dc .selected-option {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  font-size: 14px;
  border-radius: 15px;
}
.custom-select_dc .selected-option:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  top: 0;
  right: 0;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
}
.custom-select_dc .options {
  position: absolute;
  top: 100%;
  width: calc(100% + 40px);
  /*max-height: 180px;
  overflow-y: auto;
  border-top: none;*/
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 5;
  border-radius: 20px;
  background-color: #ffffff;
  margin-top: 10px;
  margin-left: -19px;
  border: 1px solid rgb(234, 234, 236);
  display: none;
}
.custom-select_dc .options.show {
  display: block;
}
.custom-select_dc .options::-webkit-scrollbar {
  width: 3px;
  margin-right: 5px;
}
.custom-select_dc .options::-webkit-scrollbar-thumb {
  background: #8D989F;
  border-radius: 5px;
}
.custom-select_dc .options::-webkit-scrollbar-track {
  background: none;
}
.custom-select_dc .options li {
  padding: 5px 10px;
  cursor: pointer;
}
.custom-select_dc .options li:hover {
  background-color: #ededed;
}
.custom-select_dc .options li.selected {
  background-color: #ededed;
}/*# sourceMappingURL=style.css.map */