section {
  padding: 60px 0px;
  background-color: #002347;
  width: 100%;
}

.tab_box {
  width: fit-content;
  align-items: center;
  border-bottom: 2px solid #aeaeae;
  font-size: 18px;
  position: relative;
}

.tab_box .tab_btn {
  font-size: 18px;
  font-weight: 600px;
  color: white;
  background: none;
  padding: 18px;
  cursor: pointer;
  width: max-content;
  border: none !important;
  font-family: "BebusNeue-Regular";
  justify-content: space-around;
}
.tab_box .tab_btn.active {
  color: #ee7e30;
  font-size: 22px;
}

.content_box .content {
  display: none;
  animation: moving 0.5s ease;
}
@keyframes moving {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}
.content_box .content.active {
  display: block;
  transition: all 0.3s ease;
}
.content_box .content h2 {
  margin-bottom: 10px;
}

.line {
  position: absolute;
  top: 55px;
  left: 0px;
  width: fit-content;
  height: 5px;
  background-color: #ee7e30;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.Tab p,
h5,
h6 {
  font-family: "Lato-Light" !important;
  color: #ffffff;
}
.benefits h6 {
  font-family: "Lato-Light" !important;
  margin-top: -25px !important;
  margin-left: 50px !important;
}

.Tab h5 {
  font-family: "Lato-Regular" !important;
}

.anim-btn button {
  margin-left: 0px;
  width: 200px;
  position: relative;
  border-radius: 5px;
  transition: 2s all ease;
  z-index: 1;
  font-size: 18px !important;
  cursor: pointer;
  font-family: "BebusNeue-Regular";
  background-color: #ffffff;
  color: #002347;
  height: 45px;
  margin-top: 50px;
}

.anim-btn button::before {
  content: "";
  position: absolute;
  z-index: -1;
  transform: translate(-50%, -50%);
  background-color: #ee7e30;
  border-radius: 5px;
  transition: all 0.3s;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 100%;
}
.anim-btn button:hover {
  color: white;
  transition: all 0.6s;
}
.anim-btn button:hover::before {
  height: 100%;
  width: 100%;
  border-radius: 5px;
}
@media screen and (max-width: 321px) {
  .Tab .tab_btn {
    font-size: 16px !important;
  }
}
@media screen and (min-width: 321px) and (max-width: 768px) {
  .Tab .tab_btn {
    font-size: 20px !important;
  }
}
