* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
  font-family: 'Red Hat Display', sans-serif;
}
a,
button:active,
button:focus,
input:active,
input:focus {
  outline: 0 !important;
}
a:hover {
  text-decoration: none;
}

/* animations */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* formbox */
#formbox {
  border-radius: 8px;
  background: #f8f9fa;
  -webkit-box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
  padding: 51.5px 20px 20px 20px;
  margin-top: 20px;
}
.formTitle p {
  color: #003a5b;
  font-family: Arial;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
}
.filed_group {
  padding-top: 16.5px;
  position: relative;
}
.formFields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.formField {
  width: 100%;
}
.labelForForm {
  color: #003a5b;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  margin-bottom: 5px;
}
#fname,
#lname,
#email,
#phone {
  display: block;
  width: 100%;
  color: #000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #fff;
  padding: 10px;
}
#phone {
  padding-left: 60px;
}
.intl-tel-input.allow-dropdown {
  width: 100%;
}
.submit {
  display: inline-block;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-family: Arial;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  background: #f77e11;
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 0;
  margin: 0 auto;
  margin-top: 32px;
  padding: 24px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.submit:hover {
  -webkit-box-shadow: 0 0 10px #f77e11;
  box-shadow: 0 0 10px #f77e11;
}
select {
  width: 100%;
  color: #000;
  font-family: Arial;
  font-size: 13.3px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 112.782% */
  padding: 11px 27px 11px 15px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #fff;
}
#checklabel,
#check {
  display: none;
}
#error-msg {
  display: block;
  margin-top: 20px;
  color: red;
  font-size: 20px;
  width: 100%;
  text-align: center;
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}
.loadingView {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.loadingView img {
  max-width: 100%;
}
.successSub {
  display: none;
  color: green;
  text-align: center;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 20px;
}
.successSub.active {
  display: block;
}

/* container */
.container {
  max-width: 988px;
  padding: 0 20px;
  margin: 0 auto;
}

/* header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1),
    0px 2px 4px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1),
    0px 2px 4px -2px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 10;
}
.headerInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.logo {
  color: #f77e11;
  font-family: Arial;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 166.667% */
}
.logo span {
  color: #003a5b;
  font-family: Arial;
}
.headerSub {
  color: #003a5b;
  font-family: Arial;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
}

/* content */
.content {
  padding-top: 92px;
}
.contentTitle {
  color: #003a5b;
  font-family: Arial;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 111.111% */
}
.contentBox1 {
  margin-top: 32px;
}
.contentSub1 {
  color: #003a5b;
  font-family: Arial;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}
.contentImg {
  margin-top: 16px;
}
.contentImg img {
  display: block;
  max-width: 100%;
  width: 100%;
}
.contentSubs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24.5px;
  margin-top: 7.5px;
}
.contentSub2 {
  color: #003a5b;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.eligibilityBox {
  margin-top: 39.5px;
}
.eligibilityBoxTitle {
  color: #003a5b;
  text-align: center;
  font-family: Arial;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
}
.eligibilityLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16.5px;
}
.eligibilityLink {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 104px;
  width: 192px;
  color: #fff;
  text-align: center;
  font-family: Arial;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  text-transform: uppercase;
  padding: 24px;
  border-radius: 6px;
  background: #f77e11;
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.benefits {
  margin-top: 60px;
}
.benefitsTitle {
  color: #003a5b;
  font-family: Arial;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
}
.benefitsSubs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 27px;
  border-radius: 12px;
  background: #f1f5f9;
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 24px 40px 3px 40px;
  margin-top: 56.5px;
}
.benefitSub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  color: #003a5b;
  font-family: Arial;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
}
.benefitSub img {
  display: block;
}
.btnContainer {
  text-align: center;
}
.benefitsBtn {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-family: Arial;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  text-transform: uppercase;
  padding: 24px;
  border-radius: 6px;
  background: #f77e11;
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  margin-top: 32px;
}
.contentSubs1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  margin-top: 31.5px;
}
.contentTitle1 {
  color: #003a5b;
  font-family: Arial;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
}
.benefitsSubs1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 27px;
  margin-top: 32px;
}
.contentSubs2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  margin-top: 27px;
}
.benefitsBtn1 {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-family: Arial;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  text-transform: uppercase;
  padding: 24px 78px;
  border-radius: 6px;
  background: #f77e11;
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  margin-top: 32px;
}

/* footer */
.footer {
  margin-top: 20px;
}
.footerTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  background: #303139;
  padding: 40px 64px;
}
.footerTopSub {
  color: #fff;
  font-family: Arial;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
.footerBottom {
  padding: 16px;
  background: #020617;
}
.footerBottomSub,
.footerBottomSub a {
  color: #fff;
  text-align: center;
  font-family: Arial;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
}

/* popups */
.popup1,
.popup2,
.popup3,
.popup4,
.popup5 {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-animation: fadeIn 0.3s;
  animation: fadeIn 0.3s;
  z-index: 1000;
  overflow: auto;
}
.popup1.active,
.popup2.active,
.popup3.active,
.popup4.active,
.popup5.active {
  display: block;
}
.popup1 .container,
.popup2 .container,
.popup3 .container,
.popup4 .container,
.popup5 .container {
  min-height: 100vh;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.popup1Inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100vh;
  height: 100%;
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
}
.popupBox {
  position: relative;
  border-radius: 12px;
  background: #f6f6f6;
  padding: 80px 40px 60px 40px;
  overflow-y: auto;
  max-height: 80vh;
}
.closeBtn {
  position: absolute;
  right: 20px;
  top: 20px;
}
.closeBtn img {
  display: block;
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.popupsSubs20 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.popupTitle {
  color: #003a5b;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.popupSub {
  color: #003a5b;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.popupsSubs10 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.popupTitle1 {
  color: #003a5b;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.popupSubList {
  margin-left: 20px;
}
