/* css reset */
@font-face {
  font-family: "gothamhtf-bold";
  src: url(../fonts/gothamhtf-bold-webfont.woff2.html) format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "gothamhtf-book";
  src: url(../fonts/gothamhtf-book-webfont.woff2.html) format("woff2");
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "gothamhtf-book";
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
}

header {
  background-color: #3f2a51;
}

.nav-menu li {
  list-style: none;
  padding-bottom: 15px;
  padding-left: 25px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
}

.nav-bar {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.4em;
  max-width: 1300px;
  margin: 0px auto;
}

.nav-branding {
  font-size: 2rem;
  font-weight: 600;
  transition: color 500ms ease;
}

.nav-branding:hover,
.nav-branding:focus {
  color: dodgerblue;
}

.nav-menu {
  position: fixed;
  left: -100%;
  top: 4.375em;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: 750ms;
}

.nav-menu.active {
  left: 0;
}

.nav-item {
  margin: 1em 0;
}

.nav-link {
  transition: 400ms ease;
}

.nav-link:hover,
.nav-link:focus {
  color: dodgerblue;
}

.hamburger {
  cursor: pointer;
}

.bar {
  display: block;
  background-color: #fff;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  transition: all 300ms ease-in-out;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.advertiser-box {
  max-width: 1300px;
  margin: 0px auto;
}

.advertiser-section {
  background-color: #c1b3d5;
  position: relative;
}

.advertiser-title {
  padding: 30px 20px 16px 20px;
}

.advertiser-title h2 {
  font-size: 33px;
  font-family: "gothamhtf-bold";
  line-height: 130%;
  color: #3f2b52;
}

.advertiser-data {
  max-width: 82%;
  padding: 0px 0px 0px 20px;
}

.advertiser-data p {
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 25px;
  color: #3f2b52;
}

.advertiser-data a {
  font-size: 12px;
  display: inline-block;
  margin-bottom: 30px;
  color: #3f2b52;
  text-decoration: none;
}

.advertiser-data a:hover {
  text-decoration: underline;
}

.advertiser-disclosure-popup {
  font-size: 14px;
  line-height: 160%;
  color: #3f2b52;
  box-shadow: 0 3px 15px rgba(51, 51, 51, .43137254901960786);
  padding: 20px;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  /* display: block; */
  background-color: #ffffff;
  max-width: 550px;
  position: absolute;
  top: calc(100% - 20px);
  z-index: 111;
  margin-right: 15px;
  margin-left: -5px;
  display: none;
}

.advertiser-disclosure-popup-open .advertiser-disclosure-popup {
  display: block;
}

.company-section {
  max-width: 1300px;
  margin: 20px auto 0px auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}

.advertiser-popup.advertiser-disclosure-popup-open {
  display: inline;
}

.company-box {
  background-color: #fff;
  width: calc(33.33% - 20px);
  /* margin: 0px 20px; */
  border-radius: 5px;
  display: flex;
  flex-flow: column;
  padding: 20px 0px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.13);
  margin-bottom: 15px;
  justify-content: space-between;
}

.company-box-p1-s1 {
  display: flex;
  width: 100%;
  justify-content: space-between;
  height: 92px;
}

.company-box-p1-s1-left {
  position: relative;
}

.company-box-bestvalue {
  position: relative;
  left: -4px;
}

.company-box-number {
  width: 100%;
  display: flex;
  min-width: 100%;
  padding-left: 25px;
}

.company-box-number img {
  margin-top: 10px;
}

.company-box-number h2 {
  font-size: 36px;
  margin-right: 22px;
  color: #3f2b52;
  font-family: "gothamhtf-bold";
}

.company-box-p1-s1-right {
  margin-right: 24px;
}

.company-box-p2 {
  padding: 0px 30px 0px 27px;
  margin-top: 19px;
  margin-bottom: 8px;
}

.company-box-p2 h2 {
  color: #3f2b52;
  font-family: "gothamhtf-bold";
  font-size: 26px;
}

.company-box-p2 ul {
  list-style: none;
  margin-top: 15px;
}

.company-box-p2 li {
  font-size: 14px;
  line-height: 19px;
  padding-left: 24px;
  position: relative;
  margin-bottom: 11px;
}

.company-box-p2 li::before {
  content: "";
  background-image: url(../../assets/images/box-tick.webp);
  background-size: 15px;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  left: 0px;
  top: 2px;
}

.company-box-p2 img {
  margin-right: 10px;
  position: absolute;
  left: 0px;
}

.company-box-p3 .btn-style1 {
  background-color: #41b876;
  padding: 15px 20px 15px 20px;
  border-radius: 5px;
  width: calc(100% - 50px);
  display: block;
  margin: 0px auto;
  text-align: center;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  font-family: "gothamhtf-book";
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.13);
}

.insurance-section {
  max-width: 1300px;
  margin: 0px auto;
}

.insurance-box {
  padding: 0px 20px;
  display: inline-block;
}

.insurance-box h2 {
  font-size: 30px;
  color: #3f2b52;
  padding-bottom: 17px;
  font-family: "gothamhtf-bold";
  padding-top: 15px;
}

.insurance-box p {
  font-size: 16px;
  color: #3f2b52;
  line-height: 148%;
  font-family: "gothamhtf-book";
  padding-bottom: 15px;
}

.insurance-box ul {
  padding-left: 25px;
}

.insurance-box li {
  font-size: 16px;
  color: #3f2b52;
  line-height: 148%;
  font-family: "gothamhtf-book";
  padding-bottom: 25px;
}

.insurance-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 120%;
  color: #3f2b52;
  padding-top: 15px;
}

.insurance-box h4 {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 120%;
  color: #3f2b52;
}

.explore-box {
  background-color: #c1b3d6;
  border-radius: 5px;
  padding: 6px 0px 26px 0px;
  margin-bottom: 15px;
}

.explore-box h3 {
  color: #3f2b52;
  padding-bottom: 17px;
  font-family: "gothamhtf-bold";
  padding-top: 25px;
  text-align: center;
  max-width: 70%;
  margin: 0px auto;
}

.explore-box a {
  background-color: #41b876;
  padding: 15px 20px 15px 20px;
  border-radius: 5px;
  width: 160px;
  display: block;
  margin: 0px auto;
  text-align: center;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  font-family: "gothamhtf-book";
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.13);
}

.Footer-logo-section {
  padding: 0px 20px;
  margin-bottom: 50px;
  margin-top: 20px;
  max-width: 1300px;
  margin: 20px auto 50px auto;
}

.Footer-logo-box {
  background-color: #41b878;
  padding: 40px 0px 30px 0px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border-radius: 10px;
  flex-flow: row;
  justify-content: space-around;
}

.Footer-logo-box h2 {
  font-family: "gothamhtf-bold";
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  max-width: 240px;
  line-height: 160%;
}

.footer-out {
  background-color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px 0px;
}

.footer-box {
  display: flex;
  flex-flow: column;
  gap: 25px;
}

.footer-p2 p {
  font-size: 16px;
  color: #fff;
  line-height: 148%;
  font-family: "gothamhtf-book";
  padding-bottom: 0px;
}

.footer-p3 {
  display: flex;
}

.footer-p3 ul {
  list-style: none;
  width: 100%;
  display: flex;
  max-width: 360px;
  text-align: center;
  margin: auto;
  flex-flow: wrap;
  justify-content: center;
  word-wrap: break-word;
}

.footer-p3 li {
  padding-right: 10px;
  border-right: 1px solid #fff;
  width: max-content;
  float: left;
  padding-left: 10px;
  word-wrap: break-word;
  margin-bottom: 10px;
}

.footer-p3 li:nth-last-child(1) {
  border-right: none;
}

.footer-p3 a {
  font-size: 16px;
  color: #fff;
  line-height: 148%;
  font-family: "gothamhtf-book";
  padding-bottom: 0px;
  text-decoration: none;
  word-wrap: break-word;
}

@media (max-width: 1199px) {
  .company-box-number {
    padding-left: 15px;
  }

  .company-box-p1-s1-right {
    margin-right: 15px;
  }


  .company-box-p2 {
    padding: 0px 15px 0px 15px;
  }

  .company-box-p3 .btn-style1 {
    width: calc(100% - 30px);
  }

  .company-box-number h2 {
    margin-right: 15px;
  }
}

@media (max-width: 991px) {
  .company-box {
    width: 100%;
  }

  .nav-menu {
    background-color: rgba(38, 38, 38, 0.85);
  }

  .nav-menu li {
    border-bottom: 1px solid #6e6e6e;
  }

  .company-section {
    display: block;
  }

  .Footer-logo-box {
    flex-flow: column;
  }

  .Footer-logo-box {
    gap: 38px;
  }
}

@media (max-width: 767px) {
  .advertiser-disclosure-popup {
    top: -50px;
    max-height: 320px;
    overflow: auto;
  }
}

@media (min-width: 768px) {
  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    width: auto;
  }

  .hamburger {
    display: none;
  }
}

@media (max-width: 375px) {
  .explore-box a {
    width: 200px;
  }
}

/* @media (max-width: 767px) {
  .company-section  {
    margin: 20px auto 0px auto;
  }
  .company-box,.explore-box{
    margin-bottom: 15px;
  }
  .insurance-box h2{
    padding-top: 15px;
  }
  .insurance-box p{
    padding-bottom: 15px;
  }
} */
img.assurance {
  width: 180px;
  height: auto;
  margin-top: 5px;
  object-fit: contain;
}

img.e-coverage {
  width: 150px;
  height: auto;
  margin: 0;
  margin-left: -10px;
}

.Footer-logo-box {
  background-color: #f8f8f8;
  padding: 40px 30px 30px;
}

.Footer-logo-box img {
  filter: invert(0.5);
}

.Footer-logo-box-img {
  width: 70%;
  display: flex;
  justify-content: space-between;
}

.Footer-logo-box h2 {
  color: grey;
  width: 30%;
}

@media (max-width: 1200px) {
  img.assurance {
    width: 150px;
  }
}


@media (max-width: 1024px) {

  img.assurance,
  img.e-coverage {
    width: 130px !important;
  }
}

@media (max-width: 1199px) {
  .Footer-logo-box img {
    width: 80px;
    height: auto;
  }
}

@media (max-width: 991px) {

  .Footer-logo-box h2,
  .Footer-logo-box-img {
    width: 100%;
  }

  .company-box-p1-s1 {
    height: auto;
  }
}

@media (max-width: 767px) {

  img.assurance,
  img.e-coverage {
    width: 130px;
  }

  .Footer-logo-box img {
    width: 70px;
  }

  .Footer-logo-section {
    background-color: #f8f8f8;
  }

  .Footer-logo-box {
    background-color: #f8f8f8;
    padding: 30px 15px;
  }

  .Footer-logo-box-img {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
  }

  .Footer-logo-box h2 {
    font-size: 14px;
  }
}

@media (max-width: 359px) {

  img.assurance,
  img.e-coverage {
    width: 100px !important;
  }

  .company-box-p1-s1-right img {
    width: 90px;
  }

  .company-box-p1-s1-right {
    margin-right: 5px;
  }
}