
/* ACF Tabs */
/* ACF Tabs Content Wrapper */


@media (max-width:600px) {
.hr-tab-image {width: 100% !important;}
.hr-tab-content-wrapper {flex-direction: column !important;}
.hr-tab-text { width: 100% !important; }
}

.hr-tab-content-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Tab with image */
.hr-tab-pane.has-image .hr-tab-text {
  width: 65%;
}

.hr-tab-pane.has-image .hr-tab-image {
  width: 35%;
  padding: 30px;
  text-align: right;
}

.hr-tab-pane.has-image .hr-tab-image img{ 
width: 300px;
}

.hr-tab-pane.has-image .hr-tab-image img {
  max-width: 100%;
  height: auto;
}

/* Tab without image */
.hr-tab-pane.no-image .hr-tab-text {
  width: 100%;
}

.hr-tab-pane.no-image .hr-tab-image {
  display: none;
}

.acf-tabs ul {
    margin: 0px;
  }
  .hr-tab-titles {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }

  .hr-tab-titles li {
    margin-right: 0px;
    border: solid white;
    border-width: 1px 1px 0 1px;
    transition: all 0.2s ease-in;
    
  }
  
  .hr-tab-titles li:hover {
    background-color: var(--e-global-color-secondary);
    border-width: 1px 1px 0 1px;
  }

  .hr-tab-titles li.active {
  background: white;
  border: none;
}

  .hr-tab-titles li a.active{
background: white;
   border: none 0px ;


  }

  .hr-tab-titles a {
    display: block;
    padding:10px 30px;
    text-decoration: none;
    color:white !important;
    border-bottom: none;
  }
  .hr-tab-titles a.active {
    font-weight: 800;
    color: var(--e-global-color-secondary) !important;

  }
  .hr-tab-pane {
    display: none;
  }
  .hr-tab-pane.active {
    display: block;
    background-color: white;
    padding: 20px 30px 30px 30px;
    color:var(--e-global-color-text);
  }
  
 .hr-tab-image {
  width: 30%;
}

@media (max-width: 600px){
.hr-tab-titles  {
flex-direction: column;
max-width: 100%;}
}
  