html,body {
  margin:0;
  padding:0;
  background-color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight:300;
  color:#000;
  height:100%
}

a {
  color: inherit;
  text-transform: none;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

.box-shadow {
  -webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.01), -5px -5px 5px rgba(0,0,0,0.01), -5px 5px 5px rgba(0,0,0,0.01), 5px -5px 5px rgba(0,0,0,0.01);
  box-shadow: 5px 5px 5px rgba(0,0,0,0.01), -5px -5px 5px rgba(0,0,0,0.01), -5px 5px 5px rgba(0,0,0,0.01), 5px -5px 5px rgba(0,0,0,0.01);
}

.nav-item {
  position: relative;
}

.desktop-mode {
  display: block;
}

.mobile-mode{
  display: none;
}

.dropdown-menu {
  left: -90px !important;
  font-size: 12px;
}

.grad-blue {
  background: rgb(10,195,214);
  background: -moz-linear-gradient(270deg, rgba(10,195,214,1) 0%, rgba(15,130,220,1) 44%, rgba(74,67,226,1) 100%);
  background: -webkit-linear-gradient(270deg, rgba(10,195,214,1) 0%, rgba(15,130,220,1) 44%, rgba(74,67,226,1) 100%);
  background: linear-gradient(270deg, rgba(10,195,214,1) 0%, rgba(15,130,220,1) 44%, rgba(74,67,226,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0ac3d6",endColorstr="#4a43e2",GradientType=1);
}

.banner-wrap {
  position: relative;
}

.banner-wrap .float {
  position: absolute;
  top: 40%;
  left: 5%;
}

.banner-wrap .float .btn1 {
  cursor: pointer;
  -webkit-transition: 0.5s;
     -moz-transition: 0.5s;
      -ms-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;
  color: #FFF;
  width: 100%;
  margin: 20px auto 0;
  padding: 6px 50px;
  text-align: center;
  -webkit-border-radius: 50px;
          border-radius: 50px;
}

.banner-wrap .float .btn1:hover {
  width: 90%;
}

.banner-wrap h4 {
  color: #FFF;
  font-size: 3vw;
  padding-bottom: 40px;
  text-transform: uppercase;
  animation-name: showup;
  animation-duration: 2s;
}

/* The animation code */
@keyframes showup {
  0%   {opacity: 0;transform: translateX(-40px);}
  100% {opacity: 1;transform: translateX(0);}
}

.banner-wrap img {
  
}

.header-top {
  color: #fff;
  display: flex;
  
  height: 40px;
  padding: 0 15px;
}

.header-top .container {
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}

.header-top .container div {
  margin: 0 5px;
}

.header-btm {
  display: block;
  background: #FFF;
  height: 80px;
  padding-bottom: 20px;
}

.logo {
  display: block;
  background-image:url("../images/logo.svg");
  width: 210px;
  height: 70px;
  -webkit-background-size: 210px 70px;
       -o-background-size: 210px 70px;
          background-size: 210px 70px;
}

.main-nav {
  background: #fff;
}

.main-nav > li {
  padding: 0 0 0 20px !important;
}

.main-nav a {
  text-transform: uppercase !important;
}

.main-nav a:hover {
  color: #0F82DC !important;
  font-weight: bold;
}

.main-nav a.active {
  color: #0F82DC !important;
  font-weight: bold;
}

.dropdown-item.active {
    background: #e9ecef !important;
}

.main-sec {
  -webkit-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
}

.main-sec-info {
  text-align: center;
  text-transform: uppercase;
}

.main-sec-info h3 {
  color: #0F82DC;
  font-weight: bold;
  margin-bottom: 2rem;
}

.main-sec-info.subpage p {
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  text-transform: initial;
}

.main-sec-info p {
  font-weight: bold;
  font-size: 40px;
}

.subpage-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 15px;
}

.pbox-wrap {
  display: flex;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.pbox {
  padding: 15px 30px;
  width: 32%;
  text-transform: initial;
  text-align: left;
  height: auto;
  background: rgba(255,255,255,.9);
  margin: 15px 5px;
  display: block;
  border: 1px solid #ccc;
}

.pbox p {
  margin: 0 0 10px;
  font-size: 20px !important;
}

.pbox ul {
  padding: 0 0 0 16px;
}

.pbox li {
  
}

.box-wrap {
  width: 80%;
  margin: auto;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: center;
}

.box {
  padding: 25px;
  margin: 10px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  width: 28%;
  -webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.01), -5px -5px 5px rgba(0,0,0,0.01), -5px 5px 5px rgba(0,0,0,0.01), 5px -5px 5px rgba(0,0,0,0.01);
  box-shadow: 5px 5px 5px rgba(0,0,0,0.01), -5px -5px 5px rgba(0,0,0,0.01), -5px 5px 5px rgba(0,0,0,0.01), 5px -5px 5px rgba(0,0,0,0.01);
  background: #FFF;
}

.box h4 {
  text-align: center;
  color: #0F82DC;
  font-size: 1.3rem;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box p {
  min-height: 86px;
}

.box .btn1 {
  cursor: pointer;
  -webkit-transition: 0.5s;
     -moz-transition: 0.5s;
      -ms-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;
  color: #FFF;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 6px 12px;
  text-align: center;
  -webkit-border-radius: 50px;
          border-radius: 50px;
}

.box .btn1:hover {
  width: 80%;
  padding: 2px 12px 10px;
}

.sub-header {
  width: 100%;
  height: 300px;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  background-position: center;
  -webkit-background-size: cover;
         -o-background-size: cover;
            background-size: cover;  
}

.sub-header h2 {
  color: #FFF;
  max-width: 625px;
  text-transform: uppercase;
  padding: 0 0 0 60px;
  font-size: 40px;
  animation-name: showup;
  animation-duration: 2s;
  
}



footer {
  
}

.footer-top {
  padding: 25px 0 50px;
  background: #F3F3F3;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}

.footer-sec {
  max-width: 300px;
  margin: 0 0 0 40px;
  font-size: 12px;
}

.footer-sec a{
  display: block;
}

.footer-sec a:hover {
  color: #0F82DC;
}

.footer-sec .info {
  padding: 0 0 5px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.footer-top .fright {
  padding: 0 25px;
} 

.footer-sec h4 {
  font-size: 14px;
  text-transform: uppercase;
  padding: 0 0 5px;
}

.footer-sec h4:after {
  display: block;
  content: "";
  height: 3px;
  margin: 9px 0 0;
  width: 131px;
  background: #0F82DC;
}

.footer-sec .info .icon {
  width: 15px;
  height: auto;
  display: block;
  margin: 0 5px 0 0;
}

.footer-sec .info span {
  
}

.footer-sec .info span {
  
}


.footer-btm {
  color: #fff;
  padding: 6px 0;
  font-size: 12px;
}

/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
  .navbar-expand-sm .navbar-collapse {
    display: block !important;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
  .desktop-mode {
    display: none;
  }

  .mobile-mode{
    display: block;
  }

  .banner-wrap h4 {
    
    font-size: 6vw;
    text-align: center;
    padding-bottom: 40px;
    text-transform: uppercase;
    padding-bottom: 20px;
  }

  .banner-wrap .float .btn1 {
    display: block;
  }

  .header-btm {
    height: auto;
    padding-bottom: 5px;
  }

  .header-btm .container {
    padding: 0;
  }

  .logo {
    width: 180px;
    height: 60px;
    -webkit-background-size: 180px 60px;
    -o-background-size: 180px 60px;
    background-size: 180px 60px;
  }

  .main-nav > li {
    padding: 0 15px !important;
  }

  .navbar-expand-sm .navbar-collapse {
    /*display: flex !important;*/
  }

  .navbar-toggler-icon {
    width: 1em;
    height: 1em;
  }

  .navbar-toggler {
    margin: 0 15px;
  }

  .logo-wrap {
    padding:0 15px;
  }

  .box-wrap {
    width: 100%;
  }

  .box {
    width: 94%;
  }

  .main-sec-info p {
    font-size: 4vw;
  }

  .sub-header h2 {
    padding: 0;
    margin: 0 auto;
    font-size: 6.5vw;
    text-align: center;
    -webkit-text-shadow: 3px 3px 3px rgba(0,0,0,0.5), -3px -3px 3px rgba(0,0,0,0.5), -3px 3px 3px rgba(0,0,0,0.5), 3px -3px 3px rgba(0,0,0,0.5);
    text-shadow: 3px 3px 3px rgba(0,0,0,0.5), -3px -3px 3px rgba(0,0,0,0.5), -3px 3px 3px rgba(0,0,0,0.5), 3px -3px 3px rgba(0,0,0,0.5);
    
  }

  .pbox-wrap {
    display: flex;
    -webkit-justify-content: space-around;
            justify-content: space-around;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .pbox {
    padding: 15px 30px;
    width: 100%;
    text-transform: initial;
    text-align: left;
    height: auto;
    background: rgba(255,255,255,.9);
    margin: 15px 5px;
    display: block;
    border: 1px solid #ccc;
  }

  .pbox p {
    margin: 0 0 10px;
    font-size: 20px !important;
  }

  .pbox ul {
    padding: 0 0 0 16px;
  }

  .pbox li {
    
  }

  .footer-top {
    padding: 25px 0 50px;
    background: #F3F3F3;
    display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }

  .footer-sec {
    width: 100%;
  }

  .footer-sec:not(:first-child) {
    padding-bottom: 1rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
  
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

}









