/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Vars
# Colors
# Typography & Resets
# Utility Classes
# Lazy Load
# Header
# Navigation
# Button Styling
# General Styles
# General Sections
# Footer
# Media Queries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Vars
--------------------------------------------------------------*/
:root {
    --color-white: #fff;   
    --color-black: #000;    
    --color-orange: #D85518; 
    --color-blue: #3E416C; 
    --color-teal: #68B0B1; 
    --color-yellow: #E3A04A; 
    --color-purple: #3E416C; 
    --color-light-orange: rgba(227, 160, 74, 0.30);
    --font-size-primary-heading: min(calc(3rem + 2vw), 5rem); /* 80px */
    --font-size-secondary-heading: min(calc(1.4rem + 2vw), 3.4rem); /*50px*/
    --font-size-bigger-tertiary-heading:  min(calc(1em + 1vw), 2rem); /*40px*/
    --font-size-tertiary-heading: min(calc(1em + 1vw), 2rem); /* 32px*/
    --font-size-quartary-heading: min(calc(1.3rem + 1vw), 1.56rem);  /* 25px */
    --font-size-cta: min(calc(1.3rem + 1vw), 1.35rem);  /* 25px */
    --font-size-quinary-heading: 0.75rem; /* 15px */  
    --font-size-body: 1.13rem; /*18px*/ 
    --font-family-main: 'Montserrat', sans-serif;
  }
  
  
  /*--------------------------------------------------------------
  # Colors
  --------------------------------------------------------------*/
 .cl-white{
  color: var(--color-white) !important; 
 }

 .cl-black{
  color: var(--color-black); 
 }

 .cl-blue{
  color: var(--color-blue); 
 }

 .cl-orange{
  color: var(--color-orange); 
 }

 .cl-teal{
  color: var(--color-teal); 
 }

 .cl-yellow{
  color: var(--color-yellow); 
 }

 .cl-purple{
  color: var(--color-purple); 
 }

 .bg-white{
  background: var(--color-white); 
 }

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

 .bg-blue{
  background: var(--color-blue); 
 }

 .bg-orange{
  background: var(--color-orange); 
 }

 .bg-teal{
  background: var(--color-teal); 
 }

 .bg-yellow{
  background: var(--color-yellow); 
 }

 .bg-purple{
  background: var(--color-purple); 
 }

 .bg-light-orange{
  background: var(--color-light-orange); 
 }
 
  
  /*--------------------------------------------------------------
  # Typography & Resets
  --------------------------------------------------------------*/
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

  body,
  html {
    scroll-behavior: smooth;
    overflow-x: hidden; 
  }
  
  body {
    overflow-x: hidden;
    overflow-wrap: break-word;
    font-size: var(--font-size-body);
    font-family: var(--font-family-main); 
    background: linear-gradient(0deg, rgba(255, 244, 229, 0.70) 0%, rgba(255, 244, 229, 0.70) 100%), #FFF;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.1em;
    font-weight: 400; 
  }
  
  h1,
  .h1 {
    font-size: var(--font-size-primary-heading);
  }
  
  h2,
  .h2 {
    font-size: var(--font-size-secondary-heading);
  }
  
  h3,
  .h3 {
    font-size: var(--font-size-tertiary-heading);
  }
  
  h4,
  .h4 {
    font-size: var(--font-size-quartary-heading);
  }
  
  h5,
  .h5,
  h6,
  .h6 {
    font-size: var(--font-size-quinary-heading);
  }
  
  a,
  a:active,
  a:focus {
    outline: none;
    text-decoration: none;
    transition: 0.3s ease all;
  }
  
  a:visited {
    color: unset;
  }

  ul{
    padding: 0; 
    margin-left: 1.5em; 
  }

  p{
    margin: 0; 
  }
  
  section {
    margin: 0 auto 6em auto;
    padding: 3em 0;
    position: relative;
  }
  
  /*Stops Some Of Looms Issues on Certain Browsers*/
  section#shadow-host-companion {
    padding: 0;
    margin: 0;
  }
  
  /*Base Button Styling*/
  .button {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    border-radius: 60px;
    padding: 13px 30px;
    font-size: var(--font-size-body);
    text-shadow: none;
    box-shadow: none;
    transition: 0.5s ease all;
    text-transform: capitalize;
    position: relative;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
  }
.page-main-banner .button{
  font-size: var(--font-size-cta);
}
  .button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-yellow);
    z-index: 0;
    transition: 0.5s ease all;
    transform: scaleX(0);
    transform-origin: left;
}

.button:hover::before {
  transform: scaleX(1);
  transition: transform 0.5s ease;
}

.button:hover {
  color: var(--color-white); /* Text color on hover */
}

.button span {
  position: relative;
  z-index: 1; /* To keep text above the ::before element */
}

  
  /*--------------------------------------------------------------
  # Utility Classes
  --------------------------------------------------------------*/
  .relative{
    position: relative;
  }
  
  .h-100{
    height: 100%;
  }
  
  .w-100{
    width: 100%;
  }
  
  .mt-0 {
    margin-top: 0;
  }

  .mt-02{
    margin-top: 0.2em; 
  }

  .mt-05{
    margin-top: 0.5em; 
  }

  .mt-08{
    margin-top: 0.8em; 
  }

  .mt-1{
    margin-top: 1em !important; 
  }
  
  .mt-2{
    margin-top: 2em !important; 
  }

  .mt-3{
    margin-top: 3em !important; 
  }

  .mb-0 {
    margin-bottom: 0;
  }

  .mb-02{
    margin-bottom: 0.2em; 
  }

  .mb-05{
    margin-bottom: 0.5em; 
  }
  
  .mb-08{
    margin-bottom: 0.8em; 
  }

  .mb-1{
    margin-bottom: 1em; 
  }

  .mb-2{
    margin-bottom: 2em; 
  }

  .auto{
    margin: auto; 
  }

  .text-center{
    text-align: center; 
  }

  .text-left{
    text-align: left;
  }

  .relative{
    position: relative;
  }

  .gap-1{
    gap: 1em; 
  }

  .gap-2{
    gap: 2em; 
  }

  .gap-8{
    gap: 8em; 
  }
  
  /*--------------------------------------------------------------
  # Lazy Load
  --------------------------------------------------------------*/
  img[data-lazy-src] {
    opacity: 0;
  }
  
  img.lazyloaded {
    -webkit-transition: opacity .5s linear 0.2s;
    -moz-transition: opacity .5s linear 0.2s;
    transition: opacity .5s linear 0.2s;
    opacity: 1;
  }


  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/

  .menu-contact-btn{
    background-color: var(--color-white); 
  }

  #menu-item-161 a{
    color: var(--color-orange) !important; 
  }

  #menu-item-161 a:before{
    content: unset; 
  }

  #menu-item-161:hover a{
    color: var(--color-white) !important; 
  }


  ul#primary-menu{
    list-style: none; 
    display: inline-flex; 
    align-items: center; 
    gap: 2em; 
  }

  #primary-menu li a{
    color: var(--color-white); 
  }

  #site-header{
    padding: 2em 0; 
    background-color: var(--color-orange);
    margin-bottom: -1px;
  }

  .home #site-header{
    padding-bottom: 0 !important; 
  }

  #site-header .mobile{
    display: none; 
  }

  #menu-button{
    position: absolute;
    top: 2.5em; 
    right: 3em; 
    background-color: var(--color-purple); 
  }

  #mobile-logo a img{
    width: 50% !important; 
  }

  ul.responsive-menu-items li.menu-item-has-children::after{
    top: 27px !important; 
    right: 10px !important; 
  }

  #menu-button span{
    background-color: var(--color-white);
  }

  .responsive-menu-interior{
    background-color: var(--color-purple); 
  }

  #menu-button.open{
    background-color: var(--color-orange);
  }
  


  .menu a {
    display: block;
    position: relative;
    text-decoration: none;
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
  }

  
  /* Before pseudo-element for the underline effect */
  .menu a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    border-bottom: solid 2px;
    -webkit-transition: width .2s ease-in-out;
    transition: width .2s ease-in-out;
  }
  
  /* Hover effect for the before pseudo-element */
  .menu a:hover:before {
    width: 100%;
  }

  .menu-item-has-children{
    position: relative;
  }
  .menu-item-has-children .sub-menu {
    display: none;
    list-style: none;
    background-color: var(--color-white);
    padding: 2em;
    margin: 0;
    position: absolute;
    left: 0;
    top: 1.8em;
    z-index: 9999;
    min-width: 15em; 
}

.menu-item-has-children .sub-menu li {
    margin-bottom: 1em;
}

.menu-item-has-children .sub-menu li:last-child {
    margin-bottom: 0;
}

.menu-item-has-children .sub-menu a {
    color: var(--color-purple) !important; 
    text-align: left;
    text-decoration: none;
    font-size: 16px !important; 
}

.menu-item-has-children:hover > .sub-menu::before {
    content: '';
    position: absolute;
    top: -1em;
    left: 20px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent var(--color-white) transparent;
}

/*Sticky Nav*/ 
#site-header {
	z-index: 10;
	transition: all ease-in-out 0.35s;
	transform: none;
}

#site-header.header-scrolled {
	transform: translateY(-100%);
	opacity: 0;
}

#site-header.header-scrolled-top {
	top: 0;
	position: fixed; 
	opacity: 1;
  left: 0; 
  right: 0; 
}


  /*--------------------------------------------------------------
  # Home Hero
  --------------------------------------------------------------*/

    .page-main-banner{
      height: 83vh; 
      padding-top: 0 !important; 
    }

    .main-headline h1 {
      margin: 0 !important; 
    }

    .main-slider .owl-nav{
      display: flex !important; 
      padding: 20px; 
    }

    .owl-theme .owl-nav [class*=owl-]:hover{
      background: transparent; 
    }

  .big-circle{
    width: 32em;
    height: 32em;
    border-radius: 50%;
    background-size: cover !important; 
    background-position: center !important;
    box-shadow: 2px 7px 12px 2px rgba(62, 65, 108, 0.30);
    position: relative;
    margin-left: 6em; 
  }

  .small-circle{
    position: absolute;
    left: -1.2em;  
    bottom: -1.2em; 
    width: 15em;
    height: 15em;
    border-radius: 50%;
    background-size: cover !important; 
    background-position: center !important;
    box-shadow: 2px 7px 12px 2px rgba(62, 65, 108, 0.30);
  }

  .delay{
    animation-delay: 0.5s;
  }

  @keyframes float {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  .floating {
    animation: float 6s ease-in-out infinite;
  }

  #top-svg{
    position: absolute;
    top: 0;
  }

  #right-top-svg{
    position: absolute;
    top: 14em; 
    right: 7em;
  }

  #overlap-svg{
    position: absolute;
    right: 0;
    bottom: -3em;
  }


  /*--------------------------------------------------------------
  # Back & Forth
  --------------------------------------------------------------*/

  .section-back-and-forth .description, .section-contact .description, .section-contact h2{
    max-width: 31em; 
    width: 100%; 
  }

  .section-back-and-forth.bg-light-orange{
    padding: 6em 0; 
  }

  #back-forth-svg {
    position: absolute;
    bottom: -5em;
    left: -5em;
}

#back-forth-svg-2{
  position: absolute;
  left: 0; 
  bottom: 2em;  
}

#colored-back-forth-svg{
  position: absolute;
  top: -6em; 
  right: 6em; 
}

.section-back-and-forth .media-item img{
  height: 20em;
  object-fit: cover;
  object-position: center center;
  border-radius: 40px;
}

#reverse-row.section-back-and-forth .row{
  flex-direction: row-reverse;
}

.page-id-252 .section-back-and-forth:nth-child(3) .media-item img{
  object-position: right;
}


  /*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/

  .service-card{
    padding: 5em 3em; 
    position: relative;
    height: 15em; 
  }

  .arrow-wrapper{
    position: absolute;
    bottom: 1.3em; 
    right: 3em; 
  }

  .service-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


  /*--------------------------------------------------------------
  # Icons Section
  --------------------------------------------------------------*/

  .icon-container{
    width: 107px;
    height: 107px;
    border-radius: 50%;
  }

  .icon-container:hover{
    background: var(--color-teal); 
  }

  .sub-title{
    text-transform: uppercase;
    font-size: 15px; 
    font-weight: 500; 
  }


/*--------------------------------------------------------------
  # Featured Insights Section
  --------------------------------------------------------------*/

  .featured-post-card{
    padding: 0 4em; 
    border-radius: 40px;
    position: relative;
  }

  h3.featured-post-title{
    font-size: var(--font-size-bigger-tertiary-heading); 
  }

  .section-featured-insights{
    height: 40em; 
    display: flex; 
    justify-content: center;
    align-items: center; 
  }

  .post-info{
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600; 
  }

  .post-arrow-link{
    position: absolute;
    bottom: 2em; 
    right: 4em; 
  }

  #insights-top-svg{
    position: absolute; 
    top: -4em; 
    left: 0;
  }

  #post-svg{
    position: absolute;
    z-index: 999; 
    top: 0; 
    right: -3em; 
  }




   /*--------------------------------------------------------------
  # Contact Section
  --------------------------------------------------------------*/
  .section-contact .media-item img{
    border-top-right-radius: 130px; 
    height: 45em; 
    object-fit: cover;
    margin-bottom: -7px;
  }
  .form-box{
    padding: 3em; 
    border-radius: 40px 40px 0px 0px;
  }

  .section-contact{
    margin-bottom: 0; 
    padding-bottom: 0;
  }


/*--------------------------------------------------------------
# Form Section
--------------------------------------------------------------*/
.gfield_required{
  display: none !important; 
}

.gform_wrapper{
  padding: 0 !important; 
}

.form-wrapper{ 
  padding: 30px; 
} 

.gform_wrapper.gravity-theme .gfield_label{
  font-size: 16px;
  font-weight: 400 !important; 
  display: flex !important; 
  margin-bottom: 8px;
  color: #fff;
  padding: 0;
  align-items: center !important; 
  flex-direction: column !important; 
  justify-content: center !important; 
  gap: 0.5em; 
}

/* Target the submit button */
.gform_button.button {
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  border-radius: 60px;
  padding: 13px 30px;
  font-size: 18px;
  text-shadow: none;
  box-shadow: none;
  transition: 0.5s ease all;
  text-transform: capitalize;
  position: relative;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  background-color: var(--color-orange); 
  color: var(--color-white);
  font-family: var(--font-family-main); 
  border: none; 
  z-index: 1; 
}

.gform_button.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-yellow);
  z-index: -1; 
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: left;
}

.gform_button.button:hover::before {
  transform: scaleX(1);
}

.gform_button.button:hover {
  color: var(--color-white); 
}

.gform_wrapper.gravity-theme .gform_footer{
  display: flex;
  justify-content: flex-end !important;
}


#field_3_6 {
  border: 1px solid #fff
}

#field_3_6 .gfield_label{
   padding-top: 2em !important; 
   padding-bottom: 2em !important; 
}

/* Style the label to look like the SVG */
 #field_3_6 label::before {
   content: '';
   display: inline-block;
   width: 20px;
   height: 20px;
   background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M9.28571 15.11V2.75286L5.95607 6.0825L4.945 5.055L10 0L15.055 5.055L14.0439 6.0825L10.7143 2.75286V15.11H9.28571ZM2.30786 20C1.65024 20 1.10119 19.7798 0.660714 19.3393C0.220238 18.8988 0 18.3498 0 17.6921V14.2307H1.42857V17.6921C1.42857 17.9121 1.52012 18.1137 1.70321 18.2968C1.88631 18.4799 2.08786 18.5714 2.30786 18.5714H17.6921C17.9121 18.5714 18.1137 18.4799 18.2968 18.2968C18.4799 18.1137 18.5714 17.9121 18.5714 17.6921V14.2307H20V17.6921C20 18.3498 19.7798 18.8988 19.3393 19.3393C18.8988 19.7798 18.3498 20 17.6921 20H2.30786Z" fill="white"/></svg>') no-repeat center center;
   background-size: contain;
   cursor: pointer;
   /* Optional: Add padding to make the clickable area larger */
   padding: 10px;
}

.gform_wrapper.gravity-theme .gform_drop_area{
   padding: 0 !important; 
   margin: 0 !important; 
   border: none !important; 
}
#gform_browse_button_3_6, .gfield_description.gform_fileupload_rules, .validation_message--hidden-on-empty, .gform_drop_instructions{
   display: none !important; 
}

.gfield_fileupload_filename, .dashicons-trash:before, .ginput_preview_list{
   color: var(--color-white); 
}

.ginput_preview{
   display: flex; 
   justify-content: center;
   align-items: center; 
   flex-direction: row;
}



body .gfield_select, .ginput_complex input, .ginput_container input {
  background-color: transparent !important;
  border: none;
  border-bottom: 1px solid #fff;
  color: var(--color-white) !important; 
text-wrap: wrap;
padding-top: 5px;
padding-bottom: 5px;
border-radius: 0px; 
  font-size: 20px;
  font-family: var(--font-family-main); 
font-weight: 400; 
}

.ginput_complex input::placeholder, .ginput_container input::placeholder, .ginput_container textarea::placeholder {
color: var(--color-white); 
font-family: var(--font-family-main); 
font-weight: 400; 
font-size: 18px;
}


.gform_wrapper select:focus, .gform_wrapper textarea:focus, .ginput_complex input:focus, .ginput_container input:focus{
  outline: none !important; 
}

.gform_wrapper textarea{
  border: none; 
  border-bottom: 1px solid #fff; 
  background: transparent; 
  color: #fff !important; 
  border-radius: 0px;
}


 /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/

  ul#footer-menu{
    margin: 0; 
    padding: 0; 
  }

.site-footer{
  padding: 2em 0; 
}

#footer-menu {
  list-style: none;
  display: inline-flex; 
  gap: 1em; 
  color: var(--color-white); 
}

#footer-menu a{
  color: var(--color-white); 
}

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

.col-footer .social-links{
  padding-bottom: 2em; 
}

.copyright-row p{
  font-size: 15px !important;
}

.footer-logo img{
  max-width: 16%; 
}


.copyright-row a{
	color: var(--color-white) !important; 
}

.section-contact .media-item img{
	margin-bottom: -8px !important; 
}

.site-footer{
	position: relative; 
	z-index: 999999; 
}

#logo img{
	max-width: 50% !important; 
}


 /*--------------------------------------------------------------
  # Inner Hero Section
  --------------------------------------------------------------*/
#inner-hero-svg{
  position: absolute;
  left: 6em; 
}

.section-inner-hero{
  padding-top: 6em; 
}


 /*--------------------------------------------------------------
  # Intro Section
--------------------------------------------------------------*/
  .intro-image img{
    height: 27em; 
    object-fit: cover;
    border-radius: 40px; 
  }

  #overlap-intro-svg{
    position: absolute;
    top: 6em;
    left: -3em;
  }

  #intro-svg-dots{
    position: absolute;
    bottom: 15em; 
    right: -8em; 
  }

  #intro-svg-ghost{
    position: absolute;
    bottom: 12em; 
    right: 1em; 
  }

  .section-intro{
    padding-top: 0; 
  }


   /*--------------------------------------------------------------
  # About Section
--------------------------------------------------------------*/
.section-about ul{
  margin-left: 2em; 
}

.section-about{
  padding: 4em 0; 
}

#about-svg{
  position: absolute;
  top: -6em;
  left: -2em;
}


  /*--------------------------------------------------------------
  # Team Section
--------------------------------------------------------------*/
.section-team .contact-icons{
  position: absolute;
  bottom: 1em; 
  right: 1em; 
}

.image-container .wp-post-image{
  border-radius: 40px;
  object-fit: cover;
  object-position: top;
	height: 100%;
}

.image-container{
  overflow: hidden; 
  height: 30em; 
  object-fit: cover;
  border-radius: 40px;
  margin: 1em; 
	width: 100%;
}

.featured-image img{
  border-radius: 40px;
  height: 30em; 
  object-fit: cover;
  object-position: top;
	width: 100%;
  transition: transform 0.3s ease-in-out;
}

.featured-image{
  border-radius: 40px;
  height: 30em; 
	width: 100%;
  object-fit: cover;
  object-position: top;
  overflow: hidden; 
}

.member-bio p{
	margin-bottom: 1em !important;
}
.featured-image:hover img {
  transform: scale(1.1);
}

.team-member-content a:hover{
  color: var(--color-orange); 
}

.single-team-page .contact-icons{
  padding: 1em 0; 
}

.team-member-content .image-container a img {
  transition: transform 0.3s ease-in-out;
	    width: 100%;
}

.team-member-content .image-container a:hover img {
  transform: scale(1.1);
}


.accordion-item{
  border-radius: 20px; 
  border: 4px solid var(--color-orange); 
  padding: 2em 2em 1em 2em;
  margin-bottom: 1em; 
  cursor: pointer; 
}

.accordion .accordion-description {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}


.section-banner-text{
  margin-bottom: 0; 
}

.banner-text{
  font-size: min(calc(2.8rem + 1vw), 3.8rem); 
}

.careers-form-box, .contact-form-box{
  border-radius: 40px;
  padding: 3em 3em 1em 3em; 
}

#careers-form-svg{
  position: absolute; 
  left: 0; 
  top: -4em; 
}

#accordion-careers-svg{
  position: absolute;
  top: -6em; 
  right: -6em; 
}

.section-contact-page-form .contact-info{
  margin-left: 0.5em; 
}

.section-contact-page-form .contact-item{
  margin-bottom: 0.5em; 
}

.section-contact-page-form{
  padding: 8em 0; 
  margin-bottom: 0; 
}

.post-item{
  padding: 2em 2em 5em 2em; 
  border: 4px solid var(--color-orange); 
  border-radius: 20px;
}

.owl-item h1.small-h1 {
  font-size: min(calc(1rem + 2vw), 2.8rem) !important;
  color: var(--color-white); 
}


.admin-content { 
  color: var(--color-purple); 
}

.admin-content h1, .admin-content h2, .admin-content h3, .admin-content h4{
  color: var(--color-orange); 
}

.admin-content ul{
  padding: 0; 
  margin-left: 1em; 
}

.admin-content a{
  color: var(--color-purple); 
  text-decoration: underline;
}


/*--------------------------------------------------------------
# Custom Filter Dropdown
--------------------------------------------------------------*/

.select-dropdown {
  position: relative;
  display: inline-block; 
  width: 100%;
  height: 2.5em;
  max-width: 100%;
  line-height: 2;
  margin-bottom: 2em; 
}
.select-dropdown__button { 
  background-color: #fff;
  border: 0;
  border-radius: 0;
  width: 100%;
  text-align: left;
  padding: 0.5em 17px;
  cursor: pointer;
  color: var(--color-purple);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  letter-spacing: 0.2px;
  text-transform: uppercase;
  height: 100%;
  border-radius: 20px;
  border: 2px solid var(--color-purple);
  font-family: var(--font-family-main); 
}
.select-dropdown__button:focus {
  outline: none;
}

.select-dropdown__button:hover{
  border: 2px solid var(--color-purple);
}

.select-dropdown__button .chevron-down {
  position: absolute;
  right: 12px;
  top: 3px;
  width: 40px;
  height: 100%;
}
.select-dropdown__button .chevron-down::before{
  content: '';
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12' viewBox='0 0 20 12' fill='none'%3e%3cpath d='M10 11.1171L0 2.10324L2.33333 0L10 6.91064L17.6667 0L20 2.10324L10 11.1171Z' fill='%231C1B1F'/%3e%3c/svg%3e");
  cursor: pointer;
  pointer-events: none;
  transition: .25s all ease;
  width: 40px;
  height: 100%;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center right 10px;
  color: var(--color-black) !important;
  display: block;
}
.select-dropdown__button .chevron-down.open::before{
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180eg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.select-category {
  position: absolute;
  display: block;
  left: 10px;
  right: 0;
  top: 100%;
  overflow: auto;
  margin: 0;
  list-style-type: none;
  opacity: 0;
  transform-origin: top left;
  transform: scale(1, 0);
  transition: all ease-in-out 0.3s;
  z-index: 3;
  background-color: #fff;
  padding: 0 17px;
  border-top: 0;
  width: 95%;
}
.select-category.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1, 1);
}
.filter-category a{
  color: var(--color-purple); 
  text-transform: uppercase;
}

.post-item:hover{
  background-color: var(--color-light-orange); 
}

.col-post-item{
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.single-team-page{
  padding-top: 6em; 
  padding-bottom: 6em; 
}

.blog-post-date{
  color: var(--color-purple); 
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}

.blog-post-content h2{
  margin-top: 0.5em; 
  margin-bottom: 0.5em; 
  color: var(--color-orange); 
}

.blog-post-content h3, h4{
  color: var(--color-orange); 
  margin-top: 0.5em; 
  margin-bottom: 0.5em; 
}

.blog-post-content a, .blog-post-content p, .blog-post-content ul li{
  color: var(--color-purple); 
}

.table-contents ul{
  list-style: none; 
  margin: 0; 
}

.table-contents ul li{
  margin-bottom: 1em; 
}

.table-heading{
font-size: 20px;
font-weight: 600;
letter-spacing: 0.2px;
text-transform: uppercase;
}

.blog-archive, .portfolio-filters{
  padding-top: 0; 
}



  
  /*--------------------------------------------------------------
  # Responsive
  --------------------------------------------------------------*/
  /*XS Devices 0 - 767px*/
  @media only screen and (max-width: 47.9375em) {

    .main-slider .owl-nav{
      padding-top: 0 !important; 
    }

    ul.responsive-menu-items{
      margin: 0; 
      padding: 0; 
    }

    ul.responsive-menu-items li{
      width: 100% !important; 
    }

    ul.responsive-menu-items li.menu-item-has-children.open::after {
      right: 89px !important;
      top: 23px !important;
  }

    #responsive-menu-items .menu-item-has-children .sub-menu a{
      color: var(--color-white) !important; 
    }

    .menu-item-has-children:hover > .sub-menu::before{
      display: none !important; 
    }

    ul.responsive-menu-items li ul.sub-menu a{
      text-align: center;
      font-size: 19px !important; 
    }

    ul.responsive-menu-items a.active, ul.responsive-menu-items a:hover{
      background-color: transparent !important; 
    }

    .team-image-section{
      position: unset !important;
    }

    #overlap-svg, #right-top-svg, #back-forth-svg, .section-contact .media-item img, #overlap-intro-svg, #about-svg, #insights-top-svg, #accordion-careers-svg{
      display: none; 
    }

    .header-scrolled-top #menu-button{
      top: 2.5em; 
    }

    .responsive-menu-open #site-header.header-scrolled {
      transform: unset  !important;
      opacity: unset !important;
  }

    .section-back-and-forth .row{
      gap: 1em; 
    }

    .section-contact .text-area{
      text-align: center;
    }

    .featured-post-card{
      padding-top: 2em; 
      padding-bottom: 4em; 
      padding-right: 2em; 
      padding-left: 2em; 
    }

    .section-featured-insights{
      height: 57em; 
    }
    .section-featured-insights .row{
      gap: 2em; 
      flex-direction: column-reverse;
    }

    .post-arrow-link{
      right: 2em; 
      bottom: 1em; 
    }

    #post-svg{
      top: -4em !important; 
      right: -3em !important; 
    }

    #site-header.header-scrolled-top{
      padding-bottom: 2em !important; 
    }


    .big-circle{
      margin-left: 0 !important; 
      width: 19em !important; 
      height: 19em !important; 
    }

    .small-circle{
      width: 12em !important; 
      height: 12em !important; 
    }

    .page-main-banner .row{
      flex-direction: column-reverse; 
      gap: 3em; 
    }

    .button{
      padding: 10px 25px; 
      font-size: 18px !important;
    }

    .page-main-banner{
      padding-bottom: 2em; 
    }

    #top-svg{
      top: -2em; 
    }

    .main-slider.owl-carousel{
      overflow: hidden; 
    }

    section{
      margin-bottom: 0; 
    }

    .icon-content{
      margin-bottom: 3em; 
    }

    .section-contact{
      padding-left: 1em; 
      padding-right: 1em; 
    }

    .mobile img{ 
      width: 50% !important; 
    }

    .footer-column img{
      width: 75% !important; 
    }

    .contact-info .contact-item{
      font-size: 17px !important; 
    }

    #footer-menu{
    display: flex; 
    align-items: center;
    justify-content: center;
    flex-direction: column;
    }

    .col-footer .social-links{
      padding-bottom: 0; 
    }

    #inner-hero-svg{
      left: 0; 
      top: 4em; 
    }

    #colored-back-forth-svg {
      position: absolute;
      top: -2em;
      right: -8em;
  }

    h1{
      font-size: min(calc(2rem + 1vw), 2.8rem); 
    }

    #intro-svg-dots{
      bottom: unset;
      right: -6em;
      top: 7em;
      z-index: -1;
    }

    #intro-svg-ghost{
      bottom: unset;
      top: 33em;
      right: -2em;
    }
    .section-intro .description{
      margin-top: 1em; 
    }

    #back-forth-svg-2{
      left: -6em;
      bottom: 19em;
      z-index: -1;
    }
    .service-card{
      height: 13em; 
    }

    .image-container{
      height: 20em; 
    }

    .entry-title{
      margin-top: 1em !important; 
    }
    .banner-text{
      font-size: min(calc(1.4em + 1vw), 2.4rem); 
    }
    .accordion-heading-text {
      max-width: 8em !important; 
      width: 100%;
    }
    #careers-form-svg {
      position: absolute;
      left: -2em;
      top: 6em;
      z-index: -1;
  }
  .image-container .wp-post-image{
    height: 20em; 
  }
  .section-intro .description{
    padding-left: 0 !important; 
  }

  .section-contact-page-form .row:nth-child(1){
    flex-direction: column-reverse;
    gap: 1em; 
  }

  .container-fluid{
    padding-left: 1em; 
    padding-right: 1em; 
  }
  }
  /*Devices 768px in width*/
  @media only screen and (min-width: 48em) {
    
  }

  @media only screen and (min-width: 1024px) { 
    .menu-item-has-children:hover > .sub-menu {
        display: block !important; 
    }
}

  @media only screen and (max-width: 1024px){
    #site-header .desktop{
      display: none; 
    }

    #site-header .mobile{
      display: block; 
    }
    .table-contents{
      display: none; 
    }

    .blog-post-content .row{
      gap: unset !important; 
    }
  }
  
  /*Devices 1024px in width*/
  @media only screen and (min-width: 64em) {
    
  }

  @media only screen and (max-width: 1200px){
    .service-card{
      padding: 1.5em !important;
    }
  }

  @media only screen and (max-width: 1440px){
    .page-main-banner{
      padding-top: 3em !important; 
      height: auto; 
    }

    #right-top-svg{
      right: 0; 
      top: 5em; 
    }

    .service-card{
      padding: 2em; 
    }

    .section-intro .description{
      padding-left: 2em; 
    }
    .accordion-heading-text {
      max-width: 10em; 
      width: 100%;
    }

    #post-svg{
      top: -3em;
      right: -2em;
    }

    .main-slider .owl-item .slide{
      padding: 10px !important; 
    }
  }
  /*Devices 1200px+ in width*/
  @media only screen and (min-width: 75em) {

    .featured-post-card{
      height: 30em; 
      position: relative;
    }

    .main-slider .owl-item .slide{
      padding: 20px; 
    }
    

    .image-container .wp-post-image{
      height: 30em; 
    }

    .bio-section{
      padding-left: 2em; 
    }

    .main-slider .owl-stage{
      display: flex; 
      align-items: flex-end !important; 
    }

    .page-main-banner{
      padding-bottom: 5em; 
    }

    .section-back-and-forth .text-area, .section-contact .text-area{
      padding-left: 4em; 
    }

    .form-box{
      position: absolute;
      bottom: 0;
      right: 25%;
    }

    .home .section-back-and-forth .media-item img{
      border-radius: 130px;
      height: 40em;
      object-fit: cover;
      object-position: center center; 
    }

    .page-id-416 .section-back-and-forth .media-item img{
      height: 40em; 
      object-fit: cover;
    }

    .section-back-and-forth .media-item img{
      height: 30em; 
      border-radius: 130px;
    }

    .service-card{
      height: 20em; 
    }

    .about-right-description{
      padding-right: 3em; 
    }
    
    .section-contact-page-form .text-area{
      padding-left: 2em; 
    }

  
  }