.nav-tab {
  padding: 0 !important;
  display: flex;
  justify-content: center;
  max-width: 1060px;
  margin: 0 auto;
  width: 100%;
}
.nav-tab li {
  list-style: none;
  width: 33.33%;
}
.nav-tab__link {
  text-decoration: none;
  display: block;
  color: inherit;
}
.nav-tab__icon {
  max-width: 80px;
  height: 80px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin: 0 auto 25px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.nav-tab__icon img {
  max-width: 100%;
  height: auto;
}
.nav-tab li:hover .nav-tab__icon,
.nav-tab li a.nav-tab__link.active .nav-tab__icon {
  background-color: #F04C24;
}
.nav-tab li:hover .nav-tab__icon img,
.nav-tab li a.nav-tab__link.active .nav-tab__icon img {
  filter: brightness(0) invert(1);
}
.nav-tab__heading {
  padding: 0;
  text-align: center;
  font-size: 20px !important;
  font-weight: 800;
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #152837;
  line-height: 120%;
  width: 100%;
  max-width: 210px;
  margin: 0 auto;
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}
.tab-content {
  max-width: 1060px;
  margin: 0 auto;
  width: 100%;
}
.tab-pane__container {
  display: flex;
  align-items: center;
  gap: 30px;
}
.tab-pane__img {
  max-width: 544px;
  width: 100%;
}
.tab-pane__img img {
  max-width: 100%;
  height: auto;
}
.tab-pane__title {
  color: #152837;
  padding: 0;
  margin-bottom: 16px;
  font-size: 40px !important;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 120%;
  width: 100%;
  max-width: 410px;
}
.tab-pane__description {
  color: #63666A;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  line-height: 160%;
  margin-bottom: 16px;
  width: 100%;
  max-width: 980px;
}
.tab-pane__buttons {
  display: flex;
  gap: 24px;
}
.tab-pane__link {
  font-family: "Teko", sans-serif;
  display: block;
  text-align: center;
  padding: 18px 32px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  background-color: #c00000;
  color: #ffffff !important;
  border-radius: 100px !important;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  position: relative;
  text-decoration: none;
  width: fit-content;
}
.tab-pane__link:first-child {
    background-color: #F04C24;
}
.tab-pane__link:last-child {
  background-color: #2EB1D9;
}
.tab-pane__link:hover {
  background-color: #F6B333;
}

@media screen and (max-width: 480px) {
  .nav-tab {
    gap: 15px 10px;
    flex-wrap: wrap;
  }
  .nav-tab li {
    width: 30%;
  }
  .tab-pane__container {
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .nav-tab__heading {
    font-size: 12px !important;
  }
  .tab-pane__title {
    font-size: 26px !important;
    text-align: center;
  }
  .tab-pane__description {
    text-align: center;
  }
  .tab-pane__link {
    display: block;
    margin: 0 auto;
  }
  .nav-tab__icon {
    max-width: 65px;
    height: 65px;
  }
  .nav-tab li {
    width: 20%;
  }
  .tab-pane__img {
    max-width: 264px;
    margin: 0 auto;
  }
  .tab-pane__buttons {
    gap: 10px;
    flex-wrap: wrap;
  }
  .tab-pane__link {
    width: 100%;
  }
}

@media screen and (max-width: 414px) {
  .nav-tab li {
    width: 48%;
  }
}