/* Fonts: Poppins */
@font-face {
  font-family: "Poppins";
  src: url("/wp-content/themes/twentytwentyone/assets/fonts/poppins/Poppins-Thin.ttf")
    format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/wp-content/themes/twentytwentyone/assets/fonts/poppins/Poppins-ExtraLight.ttf")
    format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/wp-content/themes/twentytwentyone/assets/fonts/poppins/Poppins-Light.ttf")
    format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/wp-content/themes/twentytwentyone/assets/fonts/poppins/Poppins-Regular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/wp-content/themes/twentytwentyone/assets/fonts/poppins/Poppins-Medium.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/wp-content/themes/twentytwentyone/assets/fonts/poppins/Poppins-SemiBold.ttf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/wp-content/themes/twentytwentyone/assets/fonts/poppins/Poppins-Bold.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/wp-content/themes/twentytwentyone/assets/fonts/poppins/Poppins-ExtraBold.ttf")
    format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/wp-content/themes/twentytwentyone/assets/fonts/poppins/Poppins-Black.ttf")
    format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "FontAwesome";
  src: url("/wp-content/themes/twentytwentyone/assets/webfonts/fa-brands-400.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "FontAwesome";
  src: url("/wp-content/themes/twentytwentyone/assets/webfonts/fa-regular-400.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "FontAwesome";
  src: url("/wp-content/themes/twentytwentyone/assets/webfonts/fa-solid-900.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Variables */
:root {
  --bef-green: #366d71;
  --bef-orange: #fb7c51;
  --bef-white: #f3f3f4;
  --bef-dark: #525252;
  --bed-light: #9a9a9a;
  --bef-background: #f8f8f8;
}

body,
div,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
a,
p,
button,
label,
input {
  font-family: "Poppins", sans-serif;
}
body {
  font-size: 16px;
  font-weight: 400;
}
a {
  color: var(--bef-green);
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  transition: .3s all ease-in-out;
}
a:hover {
  color: var(--bef-orange);
}
img {
  width: 100%;
  height: auto;
  border: none;
  outline: none;
}
p {
  color: var(--bef-dark);
}
p a {
  font-size: 16px;
}
h2 {
  color: var(--bef-green);
  font-weight: 600;
  font-size: 32px;
}
h3 {
  color: var(--bef-green);
  font-weight: 600;
  font-size: 24px;
}
ul {
  padding-left: 20px;
}
ul li {
  font-size: 13px;
  color: var(--bef-dark);
  padding: 10px 0;
}
button {
  border: none;
  outline: none;
}

/* Color Classes */
.bef-green {
  color: var(--bef-green) !important;
}
.bef-orange {
  color: var(--bef-orange) !important;
}
.bef-grey {
  color: var(--bef-dark) !important;
}

.justify-text {
  text-align: justify;
}

/* Header */
#masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  justify-content: center;
  z-index: 100;
  max-width: unset;
  transition: 0.3s all ease;
}
#masthead.sticky-scroll {
  background-color: var(--bef-background);
  opacity: 0.93;
}
#masthead .header-content {
  display: flex;
  max-width: 1100px;
  position: relative;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: center;
}
#masthead .header-content .site-branding,
#masthead .header-content .site-branding .site-logo {
  margin: 0;
}
.header-nav {
  display: flex;
  position: absolute;
  right: 0;
  align-items: center;
}
.header-nav > a.account {
  display: inline-flex;
  color: var(--bef-white);
  background: var(--bef-green);
  margin-right: 30px;
  column-gap: 6px;
  padding: 6px 10px 5px;
  transition: .3s all ease-in-out;
}
.header-nav > a.account svg path {
  fill: var(--bef-white);
}
.header-nav > a.account svg rect {
  stroke: var(--bef-white);
}
.header-nav > a.account svg path, 
.header-nav > a.account svg rect {
  transition: .3s all ease-in-out;
}
.header-nav > a.account:hover {
  background: var(--bef-orange);
}
.header-nav > a.account:hover svg path {
  fill: var(--bef-white);
}
.header-nav > a.account:hover svg rect {
  stroke: var(--bef-white);
}
@media (max-width: 767px) {
  .header-nav > a.account {
    font-size: 0;
    margin-right: 6px;
    padding: 4px 0px 5px 6px;
  }
}
@media (max-width: 482px) {
  #masthead .header-content .site-branding .site-logo .custom-logo-link img {
    max-width: 145px;
  }
}
@media (max-width: 375px) {
  #masthead {
    padding: 16px 10px;
  }
  #masthead .header-content .site-branding {
    margin-right: 10%;
  }
}

/* Burger Nav */
.burger-nav-container {
  position: absolute;
  left: 0;
}
.burger-menu-buttom {
  padding: 5px;
  background-color: transparent !important;
  outline: none;
  min-height: 35px;
}
.burger-menu-buttom:focus {
  outline: none !important;
}
.burger-menu-buttom .bar {
  border-bottom: 2px solid var(--bef-green);
  width: 32px;
  transform-origin: center;
  transition: 0.3s all ease;
}
.burger-menu-buttom .bar.middle-bar,
.burger-menu-buttom .bar.bottom-bar {
  margin-top: 6px;
}
.burger-menu-buttom .bar.bottom-bar {
  transform: rotateZ(180deg);
}
.burger-menu-buttom.active .bar.top-bar {
  transform: rotateZ(45deg);
  margin-top: -2px;
}
.burger-menu-buttom.active .bar.middle-bar {
  opacity: 0;
}
.burger-menu-buttom.active .bar.bottom-bar {
  transform: rotateZ(135deg);
  margin-top: -10px;
}

.burger-nav-content {
  position: fixed;
  inset: 0;
  background-color: rgb(255 255 255 / 85%);

  opacity: 0;
  z-index: -1;
  transition: 0.3s all ease;
}
.burger-nav-content.active {
  opacity: 1;
  z-index: 99;
}
.burger-nav-content .navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 120px 0 60px;
  overflow-y: scroll;
}
.burger-nav-content .navigation ul {
  margin: 0 auto;
  text-align: center;
  list-style: none;
  max-width: 600px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 0;
}
.burger-nav-content .navigation ul li ul.sub-menu li {
  padding: 9px 0;
}
.burger-nav-content .navigation ul li ul.sub-menu li:first-child {
  padding-top: 17px;
}
.burger-nav-content .navigation > ul > li {
  position: relative;
  padding: 0;
}
.burger-nav-content .navigation > ul > li.menu-item-has-children::before {
  content: "";
  font-family: "FontAwesome";
  position: absolute;
  right: -20px;
  margin-top: 3px;
  transition: 0.3s all ease;
}
.burger-nav-content
  .navigation
  > ul
  > li.menu-item-has-children.active::before {
  transform: rotate(180deg);
}
.burger-nav-content .navigation > ul > li button.sub-menu-toggle {
  display: none;
}
.burger-nav-content .navigation > ul > li:not(:first-child) {
  margin-top: 40px;
}
.burger-nav-content .navigation ul li a {
  font-size: 20px;
  line-height: 30px;
  color: var(--bef-dark);
  text-decoration: none;
  font-weight: 600;
  transition: .3s all ease-in-out;
}
.burger-nav-content .navigation ul li a:hover {
  color: var(--bef-orange);
}
.burger-nav-content .navigation > ul > li .sub-menu > li > a {
  font-size: 18px;
  font-weight: 600;
}
.language-selector {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.language-selector a {
  font-size: 15px;
  font-weight: 600;
  transition: .3s all ease-in-out;
}
.language-selector a:not(.active):hover {
  color: var(--bed-light);
}
.language-selector a.active {
  font-size: 16px;
  color: var(--bed-light);
  font-weight: 400;
}
.language-selector a:not(:first-child):before {
  content: '';
  display: inline-block;
  padding-left: 8px;
  border-left: 1px solid #000;
  height: 12px;
}
@media(max-width: 767px) {
  .language-selector a, 
  .language-selector a.active {
    font-size: 10.8px;
  }
}

/* Footer */
#colophon {
  background-color: var(--bef-white);
  max-width: unset;
  padding: 0;
}
#colophon .site-info {
  align-items: flex-start;
  column-gap: 100px;
  text-align: center;

  padding: 46px 20px 40px;
  margin: 0 auto;
  border: none;
  max-width: 1100px;
  border-bottom: 1px solid var(--bef-orange);
}
#colophon .site-info .site-name,
#colophon .site-info .site-name .site-logo {
  margin: 0;
}
.site-footer .site-info .footer-content {
  margin-top: auto;
  padding-right: 1.5rem;
  /* margin-bottom: auto; */
}
.footer-content p {
  font-size: 13px;
  color: var(--bed-light);
}
.footer-content p:first-child {
  text-align: justify;
  color: var(--bef-dark);
  padding-bottom: 20px;
}
.site-logo.footer .custom-logo-link .custom-logo {
  min-width: 170px;
  max-height: unset;
}
.site-logo.footer .custom-logo-link .social-icons {
  margin-top: -15px;
}
.site-logo.footer .custom-logo-link .social-icons ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
  padding: 0;
}
.site-logo.footer .custom-logo-link .social-icons ul li a img {
  width: 19px;
  height: auto;
}
.site-logo.footer .custom-logo-link .footer-contact, 
.site-logo.footer .custom-logo-link .footer-contact a {
  color: var(--bef-green);
  font-size: 13px;
  max-width: 170px;
  text-transform: initial;
}
.site-logo.footer .custom-logo-link .footer-contact p {
  padding-top: 10px;
  color: var(--bef-green);
}

.footer-bottom {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  column-gap: 100px;
  padding: 20px 20px 38px;
}
.footer-bottom .copyright {
  min-width: 170px;
}
.footer-bottom .copyright p {
  font-size: 16px;
}
.footer-bottom .bottom-links-bar ul {
  display: flex;
  list-style: none;
  padding-left: 0;
  column-gap: 75px;
}
.footer-bottom .bottom-links-bar ul li {
  padding-top: 2px;
}
@media (min-width: 822px) {
  #colophon .site-info {
    text-align: left;
  }
}
@media (max-width: 822px) {
  .site-logo.footer .custom-logo-link .social-icons ul {
    justify-content: center;
    column-gap: 26px;
  }
  .site-logo.footer .custom-logo-link .footer-contact {
    max-width: unset;
    padding-bottom: 42px;
  }
  .site-footer .site-info .footer-content {
    padding-right: 0px;
  }
}
@media (max-width: 480px) {
  .footer-bottom-navigation ul {
    flex-direction: column;
  }
}

/* Button Styles */
.primary-cta {
  font-size: 15px;
  font-weight: 600;
  padding: 14px 61px;
  border-radius: 77px;
  color: #fff;
  background-color: var(--bef-orange) !important;
  border: none;
  width: max-content;
  height: max-content;
  transition: .3s all ease-in-out;
}
.primary-cta:hover {
  color: var(--bef-white);
  background-color: var(--bed-light) !important;
}




/*
====================================
###    BLOCKS START FROM HERE    ###
====================================
*/

/* Hero Slider */
.section-hero-slider .slide-inner {
  position: relative;
}
.section-hero-slider .slide-inner .slide-content {
  display: flex;
  position: absolute;
  inset: 0;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.section-hero-slider .slide-inner .slide-content * {
  max-width: 852px;
  padding: 0 15px;
}
.section-hero-slider .slide-inner .slide-content h1 {
  font-size: 43px;
  color: var(--bef-green);
  margin-bottom: 40px;
  font-weight: 700;
}
.section-hero-slider .slide-inner .image .mobile {
  display: none;
}
@media (max-width:767px) {
  .section-hero-slider .slide-inner .image .mobile {
    display: block;
    height: 600px;
    object-fit: cover;
  }
  .section-hero-slider .slide-inner .image .desktop {
    display: none;
  }
}
@media (max-width:480px) {
  .section-hero-slider .slide-inner .image {
    height: 100%;
  }
  .section-hero-slider .slide-inner .image img {
    height: 100%;
    object-fit: cover;
  }
}


/* Hover Content */
.section-hover-content {
  display: flex;
}
.section-hover-content .h-content-item {
  position: relative;
  flex-grow: 1;
  overflow: hidden;
  max-height: 504px;
}
.h-content-item .h-content-item-inner {
  position: relative;
  display: flex;
  /* align-items: center;  */
  justify-content: center;
  z-index: 89;
  max-height: 504px;
}
.h-content-item div img {
  max-height: 504px;
  object-fit: cover;
}
.h-content-item .h-content-item-inner .h-content-item-title,
.h-content-item div img {
  transition: 0.6s all ease-in-out;
}
.h-content-item .h-content-item-inner .h-content-item-title {
  top: calc(50% - 62px);
}
.h-content-item .h-content-item-inner .h-content-item-title h2 {
  font-size: 24px;
}
.h-content-item:hover .h-content-item-inner .h-content-item-title,
.h-content-item:hover .h-content-item-inner .h-content-item-title.video {
  top: 0;
}
.h-content-item-inner-content .inner-content-background {
  position: absolute;
  inset: 0;
  transform: translateY(0);
  z-index: 79;
}
.h-content-item:hover .h-content-item-inner div img {
  transform: translateY(-100%);
}
.h-content-item-inner-content {
  display: flex;
  position: absolute;
  inset: 0;
  z-index: 80;
  padding: 130px 68px 0;
  align-items: center;
}
.h-content-item-inner-description {
  color: #fff;
  z-index: 89;
}
.h-content-item-inner-description p {
  color: #fff;
}
.h-content-item-inner-content .inner-content-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000000;
  opacity: 70%;
  z-index: 80;
}
.h-content-item-inner-content .inner-content-background img {
  position: absolute;
  inset: 0;
  transform: translateY(0);
  z-index: 79;
  filter: grayscale(1);
}

.h-content-item .h-content-item-inner .h-content-item-title.video {
  top: calc(100% - 63.5px);
}
.section-hover-content.with-video .h-content-item .h-content-item-inner {
  max-height: 320px;
}
.section-hover-content.with-video
  .h-content-item
  .h-content-item-inner-content {
  padding: 60px 18px 0;
  font-size: 13px;
}
@media (max-width: 480px) {
  .h-content-item div img, 
  .h-content-item {
    min-height: 400px;
  }
  .h-content-item .h-content-item-inner .h-content-item-title.video {
    top: calc(100% - -20px);
  }
}


/* Heading - with divider */
.section-title .heading {
  padding: 63px 15px 59px;
  max-width: 928px;
  margin-inline: auto;
}
.section-title .heading h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--bef-dark);
  text-align: center;
  width: max-content;
  margin: 0 auto;
  padding-bottom: 24px;
}
.section-title .heading.with-divider h2::after {
  content: "";
  display: block;
  padding-top: 34px;
  border-bottom: 1px solid var(--bef-orange);
  width: 100%;
}
.section-title .heading.with-divider.no-title {
  padding: 84px 0;
}
.section-title .heading.with-divider.no-title::after {
  content: "";
  display: block;
  border-bottom: 1px solid var(--bef-orange);
  width: 100%;
  margin: 0 auto;
  max-width: 377px;
}


/* Dual Image Container */
.section-dual-image-content .dic-container {
  display: flex;
  column-gap: 15px;
}
.section-dual-image-content .dic-container .dic-item {
  display: flex;
  position: relative;
  flex-grow: 1;
  flex-direction: column;
}
.section-dual-image-content .dic-container .dic-item .dic-content {
  /* transform: translateY(-150px); */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -150px;
  background: var(--bef-background);
  padding: 76px 85px;
  width: 100%;
  max-width: 509px;
  height: 100%;
}
.section-dual-image-content .dic-container .dic-item .dic-content.right {
  margin-left: auto;
}
.section-dual-image-content .dic-container .dic-item .dic-content.left {
  margin-right: auto;
}
.section-dual-image-content .dic-container .dic-item .dic-content h3 {
  color: var(--bef-green);
  font-size: 24px;
  margin-bottom: 28px;
}
.section-dual-image-content .dic-container .dic-item .dic-content p {
  flex-grow: 1;
  margin-bottom: 40px;
}
.section-dual-image-content .dic-container .dic-item .dic-content a {
  color: var(--bef-orange);
  text-decoration: underline;
  font-size: 16px;
  transition: .3s all ease-in-out;
}
.section-dual-image-content .dic-container .dic-item .dic-content a:hover {
  color: var(--bed-light);
}
@media (min-width: 480px) {
  .section-dual-image-content .dic-container .dic-item {
    background-image: none !important;
  }
}
@media (max-width: 480px) {
  .section-dual-image-content .dic-container .dic-item {
    padding: 15px;
  }
  .section-dual-image-content .dic-container .dic-item div img {
    display: none;
  }
  .section-dual-image-content .dic-container .dic-item .dic-content {
    margin-top: 0px;
    padding: 30px;
  }
}


/* Figures Container */
.section-figures .fig-container {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.section-figures .fig-container .fig-item {
  display: flex;
  column-gap: 20px;
  width: 33%;
  justify-content: center;
}
.section-figures .fig-container .fig-item .fig-item-inner {
  display: inline-flex;
  height: max-content;
}
.section-figures .fig-container .fig-item .fig-item-inner .fig-icon {
  background: var(--bef-white);
  border-radius: 50%;
  height: min-content;
}


/* Icons Padding */
.fig-ico-countries {
  padding: 29px 31px;
}
.fig-ico-projects {
  padding: 26px 25px;
}
.fig-ico-invest {
  padding: 28px;
}

.section-figures .fig-container .fig-item .fig-item-inner .fig-content {
  height: max-content;
}
.section-figures .fig-container .fig-item .fig-item-inner .fig-content p {
  font-size: 43px;
  font-weight: 600;
  line-height: 64.4px;
  color: var(--bef-green);
}
.section-figures .fig-container .fig-item .fig-item-inner .fig-content span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  margin-top: -12px;
}


/* Partners block */
.section-partners {
  padding: 50px 0;
  background-position: center;
}
.section-partners .section-title .heading {
  padding: 0;
}
.section-partners .section-title .heading p {
  text-align: center;
  margin-top: 24px;
}
.section-partners .partners-slider {
  margin-top: 75px;
}
.section-partners .partners-slider .slick-list {
  padding: 0 4% 0 4%;
}
.section-partners .partners-slider .partner-logo-item {
  display: flex !important;
  align-items: center;
  height: 125px;
  background: #fff;
  border-radius: 9px;
  /* max-width: 174px;  
    height: 135px; 
    padding: 0 7.5px; */
}
.section-partners .partners-slider .partner-logo-item img {
  max-height: 75px;
  padding: 0 15px;
  object-fit: contain;
}
/* .section-partners .partners-slider .slick-track .slick-slide {
    width: auto !important;
} */
.section-partners .partners-slider .slick-track .slick-slide > div {
  text-align: center;
  /* max-width: 174px; */
  padding: 0 7.5px;
}
.section-partners .partners-slider .slick-track .slick-slide > div:first-child {
  margin-bottom: 20px;
}
.partners-slider.grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat( auto-fit, minmax(125px, 1fr) );
  padding: 0 133px;
  column-gap: 30px;
  row-gap: 20px;
  max-width: 1440px;
  margin-inline: auto;
}
/* .partners-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background-image: url(/wp-content/uploads/2023/04/partners-arrow.svg);
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: contain;
  top: -45px;
  max-width: 592px;
  margin: 0 auto;
} */


/* Form Block */
.section-form-block {
  display: flex;
  max-width: 1140px;
  margin: 66px auto;
  padding: 0 15px;
  gap: 15px
}
.section-form-block .form-content {
  flex-basis: 75%;
  padding: 60px 0px;
}
.section-form-block .form-content h2 {
  margin-bottom: 22px;
}
.section-form-block .section-form {
  background: var(--bef-white);
  padding: 60px 48px;
}
.section-form .section-title .heading {
  padding-top: 0;
  padding-bottom: 42px;
}
.section-form .section-title .heading p {
  text-align: center;
  margin-top: 24px;
}
.section-form .form-block form div.field-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.section-form .form-block form div.field-group div.field-item {
  flex-grow: 1;
  width: 50%;
}
.section-form .form-block textarea {
  padding: 10px 8px 13px;
  max-height: 115px;
}
.section-form .form-block form div.field-group div.field-item:nth-child(odd) {
  padding: 0px 8px 13px 0px;
}
.section-form .form-block form div.field-group div.field-item:nth-child(even) {
  padding: 0px 0px 13px 8px;
}
.section-form .form-block input[type="text"],
.section-form .form-block input[type="number"],
.section-form .form-block input[type="email"],
.section-form .form-block input[type="tel"],
.section-form .form-block textarea, 
.section-form .form-block select {
  border: 1px solid var(--bed-light);
  width: 100%;
}
.section-form .form-block input[type="checkbox"] {
  min-width: 25px;
  border: 0.75px solid var(--bed-light);
}
.section-form .form-block input[type="checkbox"] + span {
  font-size: 16px;
  font-weight: 400;
}
.section-form .form-block input[type="checkbox"]:focus {
  outline: none;
}
.section-form .form-block input[type="checkbox"]:checked:after {
  left: 8px !important;
  top: 3px !important;
}
.section-form .form-block form div.field-acceptance {
  margin: 35px 0;
}
/* .section-form .form-block form div.field-acceptance label {
  display: flex;
  column-gap: 8px;
} */
.section-form .form-block form div.field-acceptance label span a {
  font-size: 16px;
  color: var(--bef-orange);
  font-size: 400;
  transition: .3s all ease-in-out;
}
.section-form .form-block form div.field-acceptance label span a:hover {
  color: var(--bed-light);
}
.section-form .form-block input[type="submit"] {
  font-size: 15px;
  font-weight: 600;
  padding: 14px 61px;
  border-radius: 77px;
  background-color: var(--bef-orange) !important;
  border: none;
  width: max-content;
}
.section-form .form-block form div.field-submit > p {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wpcf7-list-item {
  margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  flex-direction: row;
  column-gap: 10px;
}
.wpcf7-acceptance .wpcf7-list-item input {
  margin-top: 2px;
}
@media (max-width: 767px) {
  .section-form-block {
    flex-direction: column;
    align-items: center;
  }
  .section-form-block .form-content {
    padding: 20px 0px 60px;
    text-align: center;
  }
}


/* Text Content block */
.section-text-content {
  max-width: 1116px;
  margin-inline: auto;
}


/* Icon with Content block */
.section-icon-content {
  display: flex;
  text-align: center;
  justify-content: center;
  column-gap: 20px;
  grid-template-columns: repeat( auto-fit, minmax(300px, 1fr) );
  max-width: 1116px;
  margin-inline: auto;
  row-gap: 20px;
  flex-direction: row;
  flex-wrap: wrap;
}
.section-icon-content .icon-item {
  padding: 30px;
  /* max-width: 352px; */
  width: 25%;
  background-color: var(--bef-white);
}
.section-icon-content .icon-item .icon img {
  width: 81px;
  height: 79px;
  margin-bottom: 22px;
}
.section-icon-content .icon-item > div > h2 {
  margin-bottom: 23px;
  font-size: 24px;
  vertical-align: middle;
  /* min-height: 62.375px;
  display: inline-flex;
  align-items: center; */
}
.section-icon-content .icon-item div p {
  font-size: 13px;
}


/* Model Portfolios */
.section-model-portfolios {
  background-color: var(--bef-background);
  padding: 75px 0;
}
.section-model-portfolios h2 {
  text-align: center;
  padding-top: 75px;
}
.section-model-portfolios .model-charts {
  display: flex;
  padding: 55px 0px;
  column-gap: 30px;
  max-width: 1116px;
  margin-inline: auto;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.section-model-portfolios .model-charts img {
  width: calc(33% - 17px);
}
.section-model-portfolios .model-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1116px;
  margin-inline: auto;
  padding: 0 15px;
}
.section-model-portfolios .model-content .model-stats table tbody tr td {
  border: none;
  padding: 0;
  line-height: 30px;
}
.section-model-portfolios .model-content .download-cta {
  align-self: flex-end;
  margin-left: auto;
}
@media (max-width: 767px) {
  .section-model-portfolios .model-charts img {
    width: calc(50% - 17px);
  }
}
@media (max-width: 480px) {
  .section-model-portfolios .model-charts img {
    width: 100%;
  }
}


/* Hover Content with Icon */
.section-hover-content-with-icon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1140px;
  margin-inline: auto;
  gap: 17px;
}
.section-hover-content-with-icon .hover-content-item:hover .content-front h3 {
  transform: translateY(-200px);
}
.section-hover-content-with-icon .hover-content-item:hover .icon-container {
  transform: translateY(-60px);
  background-color: transparent;
}
.section-hover-content-with-icon .hover-content-item:hover .icon-container svg {
  fill: white;
}
.section-hover-content-with-icon
  .hover-content-item:hover
  .content-front
  .description-text {
  opacity: 1;
}
.section-hover-content-with-icon .hover-content-item {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 412px;
  background-color: var(--bef-white);
}
.section-hover-content-with-icon .hover-content-item .icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  width: 141px;
  height: 141px;
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: 51px;
  transition: 0.3s all ease-in-out;
}
.section-hover-content-with-icon .hover-content-item .content-front {
  width: 100%;
}
.section-hover-content-with-icon .hover-content-item .icon-container svg {
  transition: 0.3s all ease-in-out;
}
.section-hover-content-with-icon .hover-content-item .content-front h3 {
  text-align: center;
  transition: 0.3s all ease-in-out;
}
.section-hover-content-with-icon
  .hover-content-item
  .content-front
  .description-text {
  position: absolute;
  top: 160px;
  opacity: 0;
  padding: 0 30px;
  transition: 0.3s all ease-in-out;
}
.section-hover-content-with-icon .hover-content-item .content-front p {
  text-align: center;
  font-size: 13px;
}
@media(max-width: 767px) {
  .section-hover-content-with-icon {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Insight Block */
.section-insights .featured-post-container {
  background-color: var(--bef-background);
}
.section-insights .featured-post-container .featured-insight {
  display: flex;
  padding: 63px 15px;
  column-gap: 44px;
  max-width: 1140px;
  margin-inline: auto;
}
.section-insights .featured-post-container .featured-insight .featured-image,
.section-insights .featured-post-container .featured-insight .featured-content {
  flex-grow: 1;
}
.section-insights .featured-post-container .featured-insight .featured-image img {
  min-width: 611px;
  max-height: 343px;
  object-fit: cover;
}
.section-insights .featured-post-container .featured-insight .featured-content h3 {
  color: var(--bef-dark);
}
.section-insights .featured-post-container .featured-insight .featured-content h3:after {
  content: '';
  display: block;
  border-bottom: 1px solid var(--bef-green);
  padding-top: 2px;
  margin-bottom: 12px;
}
.section-insights .insight-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 54px;
  padding: 63px 15px 48px;

  max-width: 1140px;
  margin-inline: auto;
}
.section-insights .insight-posts-grid .insight-post .post-image img {
  height: 207px;
  object-fit: cover;
}
.section-insights .insight-posts-grid .insight-post .post-content span {
  display: block;
  color: var(--bed-light);
  font-size: 14px;
  width: 100%;
  border-bottom: 1px solid var(--bed-light);
}
.section-insights .insight-posts-grid .insight-post .post-content h3 {
  color: var(--bef-dark);
  padding-top: 4px;
}
.section-insights .insight-pagination {
  display: flex;
  column-gap: 22px;
  max-width: 1140px;
  margin-inline: auto;
  text-align: center;
  justify-content: center;
}
.section-insights .insight-pagination span, 
.section-insights .insight-pagination a {
  font-size: 15px;
}
@media (max-width: 1000px) {
  .section-insights .featured-post-container .featured-insight {
    flex-direction: column;
    row-gap: 20px;
  }
}
@media (max-width: 767px) {
  .section-insights .insight-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-insights .featured-post-container .featured-insight .featured-image img {
    min-width: 100%;
  }
}
@media (max-width: 480px) {
  .section-insights .insight-posts-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}


/* Single Insight Page */
.section-hero-slider.insight {
  margin-bottom: 50px;
  margin-top: 0;
}
.insight-content {
  margin-top: 0;
  max-width: 746px;
  margin-inline: auto;
  padding: 0 15px;
}
.insight-content .insight-info-block h2 {
  color: var(--bef-dark);
  padding-bottom: 10px;
}
.insight-content .insight-info-block .insight-info {
  display: flex;
  align-items: flex-end;
}
.insight-content .insight-info-block .insight-info p {
  color: var(--bef-green);
  padding: 0 5px;
}
.insight-content .insight-info-block .insight-info span {
  font-size: 13px;
  color: var(--bed-light);
}
.insight-content .insight-content-block {
  padding: 20px 0 40px;
}
.insight-content .author-block {
  display: flex;
    column-gap: 20px;
    padding: 25px;
  background-color: var(--bef-white);
  margin-bottom: 50px;
}
.insight-content .author-block .author-image {
  flex-basis: 30%;
}
.insight-content .author-block .author-image img {
  border-radius: 50%;
}
.insight-content .author-block .author-content {
  flex-basis: 70%;
}
.insight-content .author-block .author-content .about-info {
  padding-bottom: 10px;
}
.insight-content .author-block .author-content .about-info p {
  font-size: 10px;
  line-height: 16px;
}
.insight-content .author-block .author-content .about-info .author-name {
  font-size: inherit;
  font-weight: 500;
}
.insight-content .author-block .author-content .author-details p {
  font-size: 11px;
}

.recent-posts-section {
  max-width: 1140px;
    margin-inline: auto;
}
.recent-posts-section .section-title {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--bef-green);
}
.recent-posts-section .section-title h3 {
  text-align: center;
}
.recent-posts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 40px;
  row-gap: 54px;
  padding: 36px 15px 100px;
}
.recent-posts-grid .recent-post .recent-post-img img {
  width: 100%;
  min-height: 125px;
  object-fit: cover;
}
.recent-posts-grid .recent-post .recent-post-content {
  padding-top: 8px;
}
.recent-posts-grid .recent-post .recent-post-content h4 {
  font-weight: 400;
  font-size: 13px;
  color: var(--bef-dark);
}
@media (max-width: 1000px) {
  .recent-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .recent-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .recent-posts-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}


/* Floating Button */
.floation-button {
  display: flex;
  position: fixed;
  right: 43px;
  bottom: 55px;
  z-index: 98;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.default-floating-button {
  background-color: var(--bef-orange);
}
.floation-button span {
  position: absolute;
  width: max-content;
  margin-top: -106px;
  color: #6a6a6a;
}


/* Offcanvas Container */
.off-canvas-container .popups-container {
  display: flex;
  position: fixed;
  inset: 0;
  padding: 0 15px;
  align-items: center;
}


/* Popup Form */
.popups-container.form-popup {
  opacity: 0;
  z-index: -1;
  transition: 0.3s all ease-in-out;
}
.popups-container.form-popup::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--bef-white);
  opacity: 0.4;
  transition: 0.3s all ease-in-out;
}
.popups-container.form-popup.active {
  opacity: 1;
  z-index: 98;
}
.popups-container.form-popup .section-form {
  position: relative;
  z-index: 98;
  max-height: 712px;
  padding: 60px 48px;
  margin: 150px auto 66px;
  background-color: var(--bef-white);
  height: -webkit-fill-available;
  overflow-y: scroll;
}
.popups-container.form-popup .section-form .popup-close {
  position: absolute;
  background: transparent;
  padding: 0px;
  line-height: 0.8;
  top: 40px;
  right: 48px;
}
@media (max-width: 767px) {
  .popups-container.form-popup .section-form {
    padding: 65px 30px 20px;
    margin: 110px auto 66px;
  }
  .popups-container.form-popup .section-form .popup-close {
    top: 20px;
    right: 28px;
  }
}
@media (max-width: 480px) {
  .popups-container.form-popup .section-form {
    margin: 66px auto 66px;
  }
}


/* Our People grid */
.section-our-people {
  max-width: 1140px;
  margin-inline: auto;
}
.our-people-container {
  display: flex;
  column-gap: 100px;
  align-items: center;
  padding: 0 15px;
}
.our-people-container .hightlight,
.our-people-container .people-grid {
  text-align: center;
  position: relative;
  flex-grow: 1;
}
.our-people-container .hightlight::after {
  content: '';
  position: absolute;
  inset: 0;
  right: -50px;
  top: -30px;
  border-right: 1px solid var(--bef-orange);
}
.our-people-container .people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 80px;
  row-gap: 37px;
}
.our-people-container .people-grid .member {
  text-align: center;
}
.our-people-container .hightlight .member .image-container,
.our-people-container .people-grid .member .image-container {
  position: relative;
  margin: 0 auto;
  border-radius: 50%;
  margin-bottom: 12px;
  overflow: hidden;
  filter: grayscale(1);
  transition: .3s all ease-in-out;
}
.our-people-container .hightlight .member .image-container img {
  transform: scale(1.0);
  filter: grayscale(1);
  transition: .3s all ease-in-out;
}
.our-people-container .hightlight .member .image-container {
  max-width: 222px;
}
.our-people-container .people-grid .member .image-container {
  max-width: 173px;
}

.our-people-container .hightlight .member p,
.our-people-container .people-grid .member p {
  font-size: 16px;
}
.our-people-container .hightlight .member span,
.our-people-container .people-grid .member span {
  display: block;
  font-size: 13px;
  color: var(--bef-orange);
  margin-top: -5px;
}
.our-people-container .hightlight:hover .member .image-container img {
  transform: scale(1.1);
  filter: grayscale(0);
}
.our-people-container .hightlight:hover .member .image-container {
  filter: grayscale(0);
}
.our-people-container .hightlight .member .image-container:before, 
.our-people-container .people-grid .member .image-container:before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  margin: 0px;
  border-radius: 50%;
  z-index: 99;
  transition: .3s all ease-in-out;
}
.our-people-container .hightlight:hover .member .image-container:before {
  border-color: #FFF;
  margin: 15px;
}
.our-people-container .people-grid .member:hover .image-container:before {
  border-color: #FFF;
  margin: 6px;
}
.our-people-container .people-grid .member:hover .image-container {
  border-radius: 0%;
  filter: grayscale(0);
}

.modal-container {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 50%);
  opacity: 0;
  z-index: -1;
  transition: .4s all ease-in-out;
}
.modal-container.active {
  opacity: 1;
  z-index: 100;
}
.member-modal {
  display: flex;
  position: fixed;
  height: 100%;
  width: 100%;
  max-height: 400px;
  inset: 0;
  max-width: 600px;
  background: var(--bef-white);
  margin: auto;
}
.member-modal .image-container {
  display: flex;
  flex-basis: 30%;
}
.member-modal .image-container img {
  margin-block: auto;
}
.member-modal .content-container {
  flex-basis: 70%;
  padding: 30px;
  padding: 0 30px;
  margin: 30px 0;
  overflow: hidden;
}
.member-modal .content-container .modal-header {
  padding-bottom: 15px;
}
.member-modal .content-container .modal-header .popup-close {
  position: absolute;
  right: 0;
  background: transparent;
  top: 0px;
  padding: 15px;
  border: none;
  outline: none;
}
.member-modal .content-container .modal-header .popup-close svg {
  width: 16px;
  height: 16px;
}
.member-modal .content-container .modal-header span {
  color: var(--bef-orange);
  font-size: 13px;
}
.member-modal .content-container .modal-body {
  overflow-y: scroll;
  height: 250px;
}
.member-modal .content-container .modal-body p {
  font-size: 13px;
}
@media (max-width: 767px) {
  .our-people-container .hightlight::after {
    content: none;
  }
}


/* Popup Content */
.section-popup-content {
  max-width: 1116px;
  margin-inline: auto;
}
.section-popup-content .popup-item-grid {
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 20px;
  flex-direction: row;
  flex-wrap: wrap;
}
.section-popup-content .popup-item-grid .popup-item {
  position: relative;
  width: calc(33% - 30px);
  min-height: 150px;
  background-color: var(--bef-white);
  padding: 30px;
}
.section-popup-content .popup-item-grid .popup-item h3 {
  text-align: left;
  font-size: 18px;
}
.section-popup-content .popup-item-grid .popup-item svg {
  position: absolute;
  right: 30px;
  bottom: 30px;
}
@media(max-width: 768px) {
  .section-popup-content .popup-item-grid .popup-item {
      width: calc(50% - 30px);
  }
}
@media(max-width: 480px) {
  .section-popup-content .popup-item-grid .popup-item {
      max-width: inherit;
      width: 100%;
  }
}
.member-modal.popup-content {
  align-items: center;
}
.member-modal .content-container .modal-header.popup-content h2 {
  font-size: 18px;
}
.member-modal .image-container.popup-content img {
  object-fit: cover;
  height: 100%;
}
.member-modal .content-container .modal-body.popup-content {
  max-height: 250px; /* auto; */
  height: auto;
}


/* Text Content Block */
.section-text-content .text-cotent-inner {
  padding: 0 15px;
}
