:root {
  --c-black: #000000;
  --c-white: #ffffff;
  --c-primary: #048EBE;
  --c-primary-dark: #162d61;
  --c-secondary: #858585;
  --c-body: #4f4f4f;
  --c-gray: #787E7F;
}

/*-------==========  Base  ==========------ */
html {
  font-size: 16px;
  font-family: "Inter", serif;
	
}

/*-------==========  Typography  ==========------ */
body {
  padding: 0;
  margin: 0;
  font-family: "Inter", serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

h1,
.h1 {
  font-size: 2rem;
  font-family: "Inter", serif;
  font-weight: 300 !important;
}

h6.aqua {color: #048EBE;}
.hero-sec h2{ 
  font-weight: 300 !important;
  color: #048EBE !important;
  font-size: 48 px;
}
.hero-sec h6 {font-size: 20px !important; font-weight: 200 !important;}
.textbox { padding: 20px; text-align: center; color: #172c61;}

@media screen and (min-width: 768px) {
  h1,
  .h1 {
    font-size: 2.875rem;
  }
}

h2,
.h2 {
  font-size: 2rem;
  font-family: "Inter", serif;
  font-weight: 200;
}

@media screen and (min-width: 768px) {
  h2,
  .h2 {
    font-size: 2.5rem;
  }
}

h3,
.h3 {
  font-size: 2rem;
  font-family: "Inter", serif;
}

@media screen and (min-width: 768px) {
  h3,
  .h3 {
    font-size: 2.5rem;
  }
}

h4,
.h4 {
  font-family: "Inter", serif;
  font-size: 1.25rem;
}

h5,
.h5 {
  font-family: "Inter", serif;
  font-size: 1rem;
}

h6,
.h6 {
  font-family: "Inter", serif;
  font-size: 0.8125rem;
}

@media screen and (min-width: 768px) {
  h6,
  .h6 {
    font-size: 0.9375rem;
  }
}

.header {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #048EBE;
  position: relative;
  z-index: 99;
}

.header .header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header-wrapper .logo {
  max-width: 158px;
}

@media screen and (min-width: 768px) {
  .header .header-wrapper .logo {
    max-width: 200px;
  }
}

@media screen and (min-width: 992px) {
  .header .header-wrapper .logo {
    max-width: 260px;
  }
}

.header .header-wrapper .logo img {
  width: 100%;
}

.header .header-wrapper .menu {
  display: none;
}

@media screen and (min-width: 768px) {
  .header .header-wrapper .menu {
    display: block;
  }
}

.header .header-wrapper .menu ul {
  padding: 0;
  margin: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

@media screen and (min-width: 768px) {
  .header .header-wrapper .menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.header .header-wrapper .menu ul li {
  list-style: none;
  padding-right: 20px;
}

.header .header-wrapper .menu ul li a {
  color:#048EBE;
  text-decoration: none;
  font-weight: 300;
  -webkit-transition: all .32s ease-in-out;
  transition: all .32s ease-in-out;
}

.header .header-wrapper .menu ul li a:hover, .header .header-wrapper .menu ul li a.active, .header .header-wrapper .menu ul li a:focus {
  color:#172c61;
}

.menu-toggle {
  width: 32px;
  height: 28px;
  position: relative;
  cursor: pointer;
  z-index: 99;
  margin-right: 30px;
}

.menu-toggle span {
  position: absolute;
  width: 100%;
  padding: 1px 0;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background-color: #048EBE;
  -webkit-transition: top 0.3s .3s, opacity 0.3s .3s, -webkit-transform 0.3s 0s;
  transition: top 0.3s .3s, opacity 0.3s .3s, -webkit-transform 0.3s 0s;
  transition: transform 0.3s 0s, top 0.3s .3s, opacity 0.3s .3s;
  transition: transform 0.3s 0s, top 0.3s .3s, opacity 0.3s .3s, -webkit-transform 0.3s 0s;
}

.menu-toggle span:nth-child(2) {
  top: calc(50% - 9px);
}

.menu-toggle span:nth-child(3) {
  top: calc(50% + 9px);
}

@media screen and (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  padding: 50px 0;
  position: absolute;
  width: 100%;
  left: 0;
  top: calc(100% + 1px);
  right: 0;
  background-color: #fbfcf8;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu ul {
  padding: 0;
  margin: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
}

.mobile-menu ul li {
  list-style: none;
  line-height: 40px;
  position: relative;
}

.mobile-menu ul li:hover::before {
  background-color:#172c61;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #048EBE;
  font-weight: 300;
}

.mobile-menu ul li a:hover, .mobile-menu ul li a.active {
  color: #172c61;
}

.menu-active .menu-toggle span {
  -webkit-transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s 0.3s;
  transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s, top 0.3s, opacity 0.3s;
  transition: transform 0.3s 0.3s, top 0.3s, opacity 0.3s, -webkit-transform 0.3s 0.3s;
}

.menu-active .menu-toggle span:nth-child(1) {
  opacity: 0;
}

.menu-active .menu-toggle span:nth-child(2) {
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menu-active .menu-toggle span:nth-child(3) {
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*-------=========== Hero section css ==============-------*/

.partnerlogo {display: block; text-align: center;}
.partnerlogo h3 {margin-left: 30px;}
.partnerlogomobile {display: none;}
.hero-sec {
  padding-top: 30px;
  padding-bottom: 50px;
}

.hero-sec .hero-btn {
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 400;
  text-align: center;
  background-color:#048EBE;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.hero-sec .hero-btn:hover {
  background-color: #172c61;
}
.hero-btn {
  padding: 10px 30px;
	margin: 50px 0;
  border-radius: 30px;
  font-weight:400;
  text-align: center;
  background-color:#048EBE;
  width: 100%;
  max-width: 300px;
  color:#fff;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.hero-btn a:link, .hero-btn a:visited {color: #fff !important;}
.hero-btn:hover {
  background-color:#172c61;
}

@media screen and (min-width: 576px) {
  .hero-sec .hero-btn {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-sec .hero-btn a {
  text-decoration: none;
  color: var(--c-white);
}

.hero-sec .hero-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.hero-sec .hero-wrapper .hero1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (min-width: 576px) {
  .hero-sec .hero-wrapper .hero1 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.hero-sec .hero-wrapper .hero3 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (min-width: 576px) {
  .hero-sec .hero-wrapper .hero3 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.hero-sec .hero-wrapper .hero-inner {
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}

.hero-sec .hero-wrapper .hero-inner:nth-child(1) {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .hero-sec .hero-wrapper .hero-inner:nth-child(1) {
    width: 20%;
  }
}

.hero-sec .hero-wrapper .hero-inner:nth-child(2) {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .hero-sec .hero-wrapper .hero-inner:nth-child(2) {
    width: 60%;
  }
}

.hero-sec .hero-wrapper .hero-inner:nth-child(3) {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .hero-sec .hero-wrapper .hero-inner:nth-child(3) {
    width: 20%;
  }
}

.hero-sec .hero-wrapper .hero-inner img {
  max-width: 200px;
  padding-bottom: 30px;
}

@media screen and (min-width: 576px) {
  .hero-sec .hero-wrapper .hero-inner img {
    width: 100%;
  }
}

.hero-sec .hero-wrapper .hero-inner h6 {
  width: 100%;
  color: #333;
  font-size: 20px;
  line-height: 1.528;
}

@media screen and (min-width: 1200px) {
  .hero-sec .hero-wrapper .hero-inner h6 {
    font-size: 24px;
  }
}

.hero-sec .hero-wrapper .hero-inner p {
  padding-top: 10px;
  padding-bottom: 20px;
  font-size: 16px;
  color: var(--c-gray);
}

@media screen and (min-width: 1200px) {
  .hero-sec .hero-wrapper .hero-inner p {
    font-size: 18px;
  }
}

.hero-sec .center-img-icon {
  width: 120px;
  height: 120px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--c-primary-dark);
  border-radius: 50%;
  padding: 20px;
  margin-top: -60px;
  z-index: 1;
  position: relative;
}

.hero-sec .center-img-icon img {
  width: 100%;
}

.hero-image-outer {
  overflow: hidden;
}
.boards {display: none;}

.hero-image-outer .hero-img {
  margin-top: 50px;
  position: relative;
  margin-left: -54.5%;
  margin-right: -57%;
}

@media screen and (min-width: 768px) {
  .hero-image-outer .hero-img {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-image-outer .hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-outer .hero-img .pdf-link-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.hero-image-outer .hero-img .pdf-link-wrapper .pdf-item {
  background-color: #048EBE;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
  text-decoration: none;
  color: var(--c-white);
}

.hero-image-outer .hero-img .pdf-link-wrapper .pdf-item .detail {
  padding: 12px;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--c-white);
  font-size: 13px;
  white-space: nowrap;
  letter-spacing: .5px;
  top: calc(50% - 20px);
  left: 50%;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  -webkit-transition-delay: .25s;
          transition-delay: .25s;
}

.hero-image-outer .hero-img .pdf-link-wrapper .pdf-item .detail::before {
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  border-style: solid;
  border-color: transparent #000;
  border-width: 6px 7px 6px 0px;
  right: 100%;
  opacity: .6;
  top: calc(50% - 6px);
}

.hero-image-outer .hero-img .pdf-link-wrapper .pdf-item:hover {
  background-color: rgba(0, 153, 193, 0.71);
  opacity: 1;
}

.hero-image-outer .hero-img .pdf-link-wrapper .pdf-item:hover .detail {
  visibility: visible;
  opacity: 1;
}

.hero-image-outer .hero-img .pdf-link-wrapper .pdf-item.pdf-1 {
  width: 7.5%;
  height: 32.1%;
  left: 16.8%;
  top: 15%;
}

.hero-image-outer .hero-img .pdf-link-wrapper .pdf-item.pdf-2 {
  width: 7.5%;
  height: 32.1%;
  left: 24.9%;
  top: 15%;
}

.hero-image-outer .hero-img .pdf-link-wrapper .pdf-item.pdf-3 {
  width: 7.6%;
  height: 32.1%;
  left: 32.9%;
  top: 15%;
}

.hero-image-outer .hero-img .pdf-link-wrapper .pdf-item.pdf-4 {
  width: 7.6%;
  height: 32.2%;
  left: 41%;
  top: 15%;
}

.hero-image-outer .hero-img .pdf-link-wrapper .pdf-item.pdf-5 {
  width: 7.6%;
  height: 32.2%;
  left: 49.1%;
  top: 15%;
}

.hero-image-outer .hero-img .pdf-link-wrapper .pdf-item.pdf-6 {
  width: 7.6%;
  height: 32.2%;
  left: 57.2%;
  top: 15%;
}

.hero-image-outer .hero-img .pdf-link-wrapper .pdf-item.pdf-7 {
  width: 7.6%;
  height: 32.2%;
  left: 65.3%;
  top: 15%;
}
.hero-image-outer .hero-img .pdf-link-wrapper .pdf-item.pdf-8 {
  width: 7.6%;
  height: 32.2%;
  left: 73.3%;
  top: 15%;
}
/*.hero-image-outer .hero-img .pdf-link-wrapper .pdf-item.pdf-9 {
  width: 8.8%;
  height:37%;
  left: 30.3%;
  top: 45%;
}
.hero-image-outer .hero-img .pdf-link-wrapper .pdf-item.pdf-10 {
  width: 8.8%;
  height: 37%;
  left: 39.6%;
  top: 45%;
}
.hero-image-outer .hero-img .pdf-link-wrapper .pdf-item.pdf-11 {
  width: 8.8%;
  height: 37%;
  left: 48.8%;
  top: 45%;
}
.hero-image-outer .hero-img .pdf-link-wrapper .pdf-item.pdf-12 {
  width: 8.8%;
  height: 37%;
  left: 58%;
  top: 45%;
}

.hero-image-outer .hero-img .pdf-link-wrapper .pdf-item.pdf-13 {
  width: 8.8%;
  height: 37%;
  left: 67.35%;
  top: 45%;
}

.hero-image-outer .hero-img .pdf-link-wrapper .pdf-item.pdf-5 .detail, .hero-image-outer .hero-img .pdf-link-wrapper .pdf-item.pdf-6 .detail, .hero-image-outer .hero-img .pdf-link-wrapper .pdf-item.pdf-7 .detail {
  left: auto;
  right: 50%;
}

.hero-image-outer .hero-img .pdf-link-wrapper .pdf-item.pdf-5 .detail::before, .hero-image-outer .hero-img .pdf-link-wrapper .pdf-item.pdf-6 .detail::before, .hero-image-outer .hero-img .pdf-link-wrapper .pdf-item.pdf-7 .detail::before {
  border-width: 6px 0px 6px 7px;
  right: auto;
  left: 100%;
}*/

/*-------=========== Be Part section css ==============-------*/
.be-part-sec {
  padding-bottom: 20px;
}

@media screen and (min-width: 576px) {
  .be-part-sec {
    padding-bottom: 70px;
  }
}

.be-part-sec .bepart-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.be-part-sec .bepart-wrapper .be-part-inner {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 0px solid #048EBE;
  border-top: 1px solid #048EBE;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .be-part-sec .bepart-wrapper .be-part-inner {
    border-top: 2px solid #048EBE;
    border-bottom: 2px solid #048EBE;
    width: 45%;
    margin-left: 0;
    margin-right: 0;
  }
}

.be-part-sec .bepart-wrapper .be-part-inner span {
  font-size: 20px;
  color: #048EBE;
}

.be-part-sec .bepart-wrapper .be-part-inner h6 {
  color:#172c61;
  padding: 20px 10px 20px 5px;
  font-size: 18px;
  margin: 0;
}

@media screen and (min-width: 992px) {
  .be-part-sec .bepart-wrapper .be-part-inner h6 {
    font-size: 20px;
  }
}

.be-part-sec .bepart-wrapper .be-part-inner img {
  width: 24px;
}

.be-part-sec .bepart-wrapper .be-part-inner a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  position: relative;
  width: 100%;
}

.be-part-sec .title p {
  color: #048EBE;
  font-weight:400;
}

/*--------------============ next step css start ===============-------------*/
.next-steo-sec {
  padding-top: 50px;
  padding-bottom: 100px;
}

.next-steo-sec .title h2 {
  text-align: center;
  color: #048EBE;
  font-weight: 200;
  font-size: 42px;
  padding-bottom: 0px;
  font-family: "Inter", serif;
}

@media screen and (min-width: 576px) {
  .next-steo-sec .title h2 {
    padding-bottom: 50px;
    font-size: 48px;
  }
}

.next-steo-sec .step-content {
  text-align: center;
}

.next-steo-sec .step-content span {
  color: var(--c-primary-dark);
  padding-right: 10px;
  font-weight: 500;
  display: block;
}

@media screen and (min-width: 576px) {
  .next-steo-sec .step-content span {
    display: inline-block;
  }
}

.next-steo-sec .step-content p {
  font-size: 20px;
  color: var(--c-gray);
  padding: 20px 0px;
}

@media screen and (min-width: 992px) {
  .next-steo-sec .step-content p {
    font-size: 22px;
  }
}

.next-steo-sec .step-content img {
  width: 60px;
  height: 60px;
}

.next-steo-sec .right-side-img img {
  width: 100%;
}

@media screen and (min-width: 576px) {
  .next-steo-sec .part-col {
    padding-top: 40px;
  }
}

.next-steo-sec .part-col p {
  padding: 0;
  font-size: 16px;
}

.next-steo-sec .part-col .col-inner {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #048EBE;
}

.next-steo-sec .part-col .col-inner a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  width: 100%;
  padding-right: 10px;
}

.next-steo-sec .part-col .col-inner img {
  width: 20px;
}

.next-steo-sec .part-col .col-inner h6 {
  padding: 20px;
  color: var(--c-gray);
  font-weight: 400;
}

@media screen and (min-width: 992px) {
  .next-steo-sec .part-col .col-inner h6 {
    font-size: 20px;
  }
}

.next-steo-sec .part-col .col-inner.second {
  border-bottom: 1px solid #048EBE;
}

/*--------------============ contact css start ===============a-------------*/
.contact-sec {
  padding-top: 50px;
  padding-bottom: 50px;
}

.contact-sec .title {
  text-align: center;
  padding-bottom: 30px;
}

.contact-sec .title h2 {
  font-weight: 200;
  color: #048EBE;
  font-size: 32 px;
}
.contact-sec .title p {color: #172c61 !important; font-weight: 200;}


.contact-sec .contact-inner a {
  color: #172c61;
	text-decoration: none;
}


@media screen and (min-width: 576px) {
  .contact-sec .title h2 {
    font-size: 48px;
  }
}

.contact-sec .title p {
  color: #048EBE;
  font-size: 18px;
}

.contact-sec .contact-inner {
  padding-left: 20px;
  padding-right: 20px;
}

.contact-sec .contact-inner:nth-child(3) {
  padding-top: 0px;
}

.contact-sec .contact-inner h4 {
  color: #172c61;
  font-weight: 300 !important;
}

.contact-sec .contact-inner p {
  color: #172c61;
}

.contact-sec .contact-inner h6 {
  padding-top: 30px;
  padding-bottom: 20px;
  color: #172c61;
  font-weight: 300 !important;
}

.contact-sec .contact-inner textarea {
  width: 100%;
  height: 100px;
  border-radius: 0px;
  border: none;
  border: 1px solid #048EBE;
}

@media screen and (min-width: 576px) {
  .contact-sec .contact-inner textarea {
    height: 200px;
  }
}

.contact-sec .contact-inner textarea:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact-sec .contact-inner .radio-btn {
  padding-bottom: 40px;
}

.contact-sec .contact-inner .radio-btn label {
  color: #172c61;
  font-size: 16px;
  padding-right: 25px;
}
label {color: #172c61;}

.contact-sec .contact-inner .label-title {
  position: relative;
  padding-left:25px;
  padding-right: 50px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.contact-sec .contact-inner .label-title input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.contact-sec .contact-inner .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #ECE9E7;
  border-radius: 30px;
}

.contact-sec .contact-inner .label-title:hover input ~ .checkmark {
  background-color: #ECE9E7;
  border-radius: 30px;
}

.contact-sec .contact-inner .label-title input:checked ~ .checkmark {
  background-color: #172c61;
}

.contact-sec .contact-inner .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.contact-sec .contact-inner .label-title input:checked ~ .checkmark:after {
  display: block;
}

.contact-sec .contact-inner .label-title .checkmark:after {
  left: 2.5px;
  top: 2.5px;
  width: 15px;
  height: 15px;
  border: solid white;
  border-radius: 30px;
}

.contact-sec .contact-inner input {
  text-decoration: none;
	width: 100%;
  background-color: #fff;
  color: #172c61;
  border-radius: none;
  padding: 12px 10px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  border: 1px solid #048EBE;
	margin-bottom: 30px;
}


.contact-sec .contact-inner input[type="submit"] {
	text-decoration: none;
  background-color:#048EBE;
  color: var(--c-white);
  border-radius: 30px;
  padding: 12px 50px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  border: none;
}
.contact-sec .contact-inner input[type="submit"]:hover {
  background-color:#172c61;
}

.contact-sec .contact-inner ul {
  padding: 0;
}

.contact-sec .contact-inner ul li {
  list-style: none;
}

.contact-sec .contact-inner ul li span {
  color: #048EBE;
	font-weight: 300 !important;
}

.contact-sec .contact-inner ul li p {
  font-weight: 300 !important;
  padding-bottom: 10px;
}

@media screen and (min-width: 576px) {
  .contact-sec .contact-inner ul li p {
    padding-bottom: 30px;
  }
}

.contact-sec .contact-inner ul li h6 {
  padding: 0;
}

.contact-sec .contact-inner ul li h5 {
  color: var(--c-primary-dark);
  font-weight: 300 !important;
  width: 100%;
}

@media screen and (min-width: 576px) {
  .contact-sec .contact-inner ul li h5 {
    max-width: 450px;
  }
}

.contact-sec .protection-col {
  padding-top: 20px;
}

@media screen and (min-width: 576px) {
  .contact-sec .protection-col {
    padding-top: 50px;
  }
}

.contact-sec .protection-col h6 {
  font-weight: 300 !important;
  color: #048EBE;
}

.contact-sec .protection-col p {
  color: var(--c-gray);
}

.footer {
  border-top: 2px solid #048EBE;
  border-bottom: 2px solid #048EBE;
  padding: 20px;
}

.footer .wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .footer-inner {
  padding-top: 20px;
}

@media screen and (min-width: 576px) {
  .footer .footer-inner {
    padding: 0;
  }
}

.footer .footer-inner img {
  max-width: 200px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .footer .footer-inner img {
    max-width: 250px;
  }
}

.footer .footer-inner p {
  padding: 0;
  margin: 0;
  color: #048EBE;
  font-weight: 300 !important;
}

.footer .footer-inner a {
  text-decoration: none;
  color: #172c61;
  font-weight: 300 !important;
  font-size: 14px;
}

@media screen and (max-width: 1199px) {
.partnerlogo {display: none;}
.partnerlogomobile {display: block; text-align: center;}
	.partnerlogomobile h3 {margin-left: 30px;}
}

@media screen and (max-width: 768px) {
	
	video {
  aspect-ratio: 16 / 9;
  max-width: 100%;
  
	
}

.hero-image-outer {
  display:none;
}
.boards {display: block; width: 100%; margin: 10px auto; text-align: center;}
	
	.boards img {display: block; margin: 10px auto; text-align: center; width: 100%; max-width: 100%;
		height: auto;}	
}
/*# sourceMappingURL=style.css.map */