@charset "UTF-8";




.contenttab {

  width: 100%;
  min-width: 420px;

  margin-top: 40px;
  transition: 0.3s ease;
}

/* Tabs menu */
.tabs {
max-width: 930px;
  margin: 0 auto;;
  background-color: #d4e6d3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  border-radius: 2px 2px 0px 0px;
	
}

/* Tab Links */
.tablinks {
  background: transparent;
  background-image: linear-gradient(90deg, transparent 80%, rgba(255, 255, 255, 0.4) 100%);
  border: none;
  outline: none;
  cursor: pointer;
  width: 50%;
  /*change depending on the number of tabs*/
  height: 80px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  overflow: hidden;
  transition: 0.3s ease;
}


.tablinks:before {
  background-color:  #0d6c29;;
  content: "";
  width: 100%;
  height: 0px;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease-in-out;
  z-index: 2;
}

/*tab buttons hover*/
.tablinks:hover::before {
  height: 100%;
  z-index: 2;
  bottom: 0;
}


/* Tab active */
.tablinks.active {
  background-color: white;
  z-index: 0;
  border-right: 0px;
  border-left: 0px;
  height: 110px;
  bottom: 0px;
  overflow: hidden;
animation: tabFadeIn 0.35s ease both;	
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tablinks.active:before {
  content: "";
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;

}

/* Tabs text */
.tablinks.active p,
.tablinks.active:hover p {
  opacity: 1;
  color:#0d6c29;

 
}

.tablinks p {
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: 0.5s ease;
  padding: 0;
  margin: 0;
  color: #000;
  backface-visibility: hidden;

}

.tablinks:hover p {
  color: white;
  opacity: 1;
}

.tablinks .tab-icon {
  width: 6rem;
  transform: translateX(40%);
  object-fit: contain;

  transform-origin: bottom center;
  transition: transform 0.3s ease-in-out;
}


.tablinks.active .tab-icon {
  transform: scale(1.1) translateX(30%);
}



/* Tabs text bigger */
.tablinks p:before {
  content: attr(data-title);
  position: absolute;
  height: auto;
  width: auto;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
  font-size: 40px;
  transition: 1s ease-out;
  z-index: -1;
  font-weight: 600;
  top: 110%;
}


.tablinks:hover p:before {
  opacity: 0.1;
  font-size: 40px;
  top: -80%;
}

/* tab content */
.wrapper_tabcontent {
  background-color: white;
  margin-top: 0px;

  position: relative;
  opacity: 1;
  padding: 30px 30px;
  overflow: hidden;
  transition: all 1s ease;
  top: 0;
}

.tabcontent {
  display: none;
  min-height: 180px;
}

@keyframes tabEffect {
  from {
    top: -40px;
  }
  to {
    top: 0px;
  }
}
.tabcontent.active {
  transition: all 1s ease;
  display: block;
}

.line {border-bottom: 4px solid #0d6c29;}

/* Title */

@keyframes city {
  from {
    left: -150px;
  }
  to {
    left: -90px;
  }
}
/* Text*/

.tabcontent .offer-area {transition: all 1s ease; animation: fadeEffect 0.6s ease;}



@keyframes fadeEffect {
  from {
    opacity: 0;
    margin-top: 30px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}


@media (max-width: 680px){
.tablinks.active p,
.tablinks.active:hover p {
  opacity: 1;
  color:#0f4b41;
  font-size:24px;
 
}
	
  }		

