#mainPopup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  display: none;
}

#mainPopup.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade { opacity: 0; }
.modal-backdrop.show { opacity: 0.5; transition: opacity 0.15s linear; }

#mainPopup .close {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  margin-left: auto;
  opacity: 1;
  padding: 1rem;
}

#mainPopup .close svg {
  width: 22px;
  display: block;
}

#mainPopup .modal-content {
  background-color: #fff;
  border: 6px solid #274076;
  border-radius: 0;
  overflow: visible;
}

#mainPopup .modal-dialog {
  max-width: 100%;
  width: 100%;
  margin: 1.75rem auto;
}
@media screen and (min-width: 992px) {
  #mainPopup .modal-dialog {
    max-width: 800px;
    width: 800px;
  }
}

#mainPopup .modal-header {
  display: flex;
  align-items: flex-start;
  border-bottom: 0;
  padding: 0.5rem;
}

#mainPopup .modal-body {
  padding-bottom: 50px;
}
@media screen and (max-width: 543px) {
  #mainPopup .modal-body {
    padding-bottom: 35px;
  }
}

#mainPopup .modal-body h2 {
  color: #104E8D;
  font-family: "Comfortaa", sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (max-width: 991px) {
  #mainPopup .modal-body h2 {
    font-size: 42px;
  }
}
@media screen and (max-width: 543px) {
  #mainPopup .modal-body h2 {
    font-size: 34px;
  }
}

#mainPopup .modal-body h3 {
  color: #104E8D;
  font-family: "Comfortaa", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 9px;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  #mainPopup .modal-body h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 543px) {
  #mainPopup .modal-body h3 {
    font-size: 24px;
    letter-spacing: 5px;
  }
}

#mainPopup .modal-body h4 {
  color: #104E8D;
  font-family: "Comfortaa", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 6px;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 1199px) {
  #mainPopup .modal-body h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 543px) {
  #mainPopup .modal-body h4 {
    font-size: 16px;
    letter-spacing: 3px;
  }
}

#mainPopup .modal-logo {
  margin: 0 auto 30px;
  margin-top: -50px;
  width: 140px;
}
@media screen and (max-width: 543px) {
  #mainPopup .modal-logo {
    width: 95px;
  }
}
#mainPopup .modal-logo img {
  width: 100%;
}

#mainPopup .modal-multicolumn {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 40px;
}
@media screen and (max-width: 543px) {
  #mainPopup .modal-multicolumn {
    padding-top: 25px;
  }
}

#mainPopup .modal-multicolumn .modal-item {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
@media screen and (max-width: 543px) {
  #mainPopup .modal-multicolumn .modal-item:first-child,
  #mainPopup .modal-multicolumn .modal-item:last-child {
    display: none;
  }
}
#mainPopup .modal-multicolumn .modal-item img {
  height: 120px;
  width: auto;
}

#mainPopup .round-cta {
  color: #000000;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  background-color: #E6DB04;
  border-radius: 40px;
  display: inline-block;
  padding: 16px 45px;
  text-decoration: none;
}
#mainPopup .round-cta:hover {
  color: #000000;
  text-decoration: none;
}
