body, h1, h2, h3, h4, h5, h6, p, span, div {
  font-family: 'Montserrat', sans-serif;
}
.banner {
  width: 100%;
  margin: auto;
  background: url('../images/header-back.jpg') no-repeat center center;
  background-position: center center;
  background-size: cover;
  background-color: rgba(0,0,0,0.7);
  background-blend-mode: multiply;
  min-height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-h1 {
  font-weight: bold;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  margin: 0;
}

.wrap {
  max-width: 1140px;
  padding-top: 40px;
  margin: auto;
  
}

.signup-btn {
  text-align: center;
  padding: 20px 0px;
  color: #fff;
}
.btn-icon {
  color: #fff;
  padding-right: 10px;
}

.signup-btn button {
  background-color: #0c98f2;
  border-radius: 10px;
  border: none;
  padding: 15px 40px;
}

/*navbar*/
nav {
  font-size: 12px!important;
}
.navbtn {
  background: #0ed6fb!important;
  color: #fff;
  padding: 0px 3px
}
  

@media screen and (min-width: 769px) {
   nav {
    display: none!important;
   }
   
   header {
    position: absolute;
    z-index: 3;
    width: 100%;
    padding-top: 30px;
   }

   header p a {
    padding: 10px 5px;
    color: #fff;
    transition: .3s ease-in-out;
    text-decoration: none;
   }
   header p a:hover {
    text-decoration: none;
    color: #fff;
    background-color: rgba(0,0,0,0.3);
    transition: .3s ease-in-out;
   }

   header .col-md-4 a {
    padding: 10px 25px;
    background: #0ed6fb;
    border: 1px solid #0ed6fb;
    text-decoration: none;
   }

   header .col-md-4 a:hover {
    border: 1px solid #0ed6fb;
    text-decoration: none;
    color: #fff;
    background: transparent!important;
   }
}

@media screen and (max-width: 768px) {
  header {
    display: none!important;
  }
  .banner h1 {
      font-size: 20px;
      padding-top: 48px;
  }
  .banner {
      min-height: 210px;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

.sec-2 {
  padding: 60px 0;
  overflow: hidden;
  background-color: #f3f5fa;
}


/* TABS */
.tabs {
  max-width: 1140px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 0 auto;
}

.tabs input[type="radio"] {
  display: none;
}

.tabs ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  background: #1bb4d1;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.tabs ul li {
  flex-grow: 1;
  text-align: center;
}

.tabs ul li label {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 10px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  margin-bottom: 0 !important;
  font-weight: 500;
  min-height: 78px;
}

.tabs ul li label:hover,
.tabs ul li label.active {
  background: #189eb8;
  color: #fff;
}

.tabs input[type="radio"]:checked + label {
  border-bottom: 2px solid #1bb4d1;
  position: relative;
  z-index: 2;
}

.tabs .content section {
  display: none;
  padding: 20px;
  background: #fff;
  border-top: 1px solid #eee;
}

.tabs input[type="radio"]:nth-of-type(1):checked ~ .content section:nth-of-type(1),
.tabs input[type="radio"]:nth-of-type(2):checked ~ .content section:nth-of-type(2),
.tabs input[type="radio"]:nth-of-type(3):checked ~ .content section:nth-of-type(3),
.tabs input[type="radio"]:nth-of-type(4):checked ~ .content section:nth-of-type(4),
.tabs input[type="radio"]:nth-of-type(5):checked ~ .content section:nth-of-type(5),
.tabs input[type="radio"]:nth-of-type(6):checked ~ .content section:nth-of-type(6) {
  display: block;
}

@media (max-width: 600px) {
  .tabs ul {
      flex-direction: column;
  }

  .tabs ul li label {
      border-radius: 0;
  }

  .tabs ul li label:first-of-type {
      border-radius: 10px 10px 0 0;
  }

  .tabs ul li label:last-of-type {
      border-radius: 0 0 10px 10px;
  }

  .tabs ul li label {
      min-height: inherit;
  }
}

