.nav-tab {
  padding: 0 !important;
  display: flex;
  justify-content: center;
  max-width: 1060px;
  margin: 0 auto;
  width: 100%;
  gap: 10px;
}
.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: #00529B;
}
.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;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}
.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: #01153D;
  padding: 0;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 600;
  line-height: 100%;
}
.tab-pane__description {
  color: #4A4A4A;
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 16px;
}
.tab-pane__link {
  font-family: "Teko", sans-serif;
  display: block;
  text-align: center;
  padding: 16px 24px 11px 24px;
  text-transform: uppercase;
  font-size: 18px;
  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:hover {
  background-color: #FFD55E;
  color: #062D7A !important;
}

@media screen and (max-width: 768px) {
	.nav-tab {
		flex-wrap: wrap;
		margin-bottom: 40px;
	}
	.nav-tab li {
		width: 30%;
	}
}
@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;
  }
  .nav-tab__heading {
    font-size: 18px;
  }
  .tab-pane__title {
    font-size: 30px;
    text-align: center;
  }
  .tab-pane__description {
    text-align: center;
  }
  .tab-pane__link {
    display: block;
    margin: 0 auto;
  }
}