@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins/Poppins-Light.ttf) format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins/Poppins-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins/Poppins-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins/Poppins-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins/Poppins-Bold.ttf) format("truetype");
  font-weight: 800;
  font-style: normal;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Poppins", serif;
  font-weight: 400;
  position: relative;
  font-size: 17px;
}

.navbar {
  padding: 10px 30px;
}

.navbar-brand {
  color: #073A45;
  font-weight: 600;
  
}

.navbar-nav .nav-link {
  font-size: 17px;
}
.navbar-nav .nav-link.active {
  color: #073A45;
  font-weight: bold;
}

.btn-primary {
  background: #073A45;
  border-color: #073A45;
  border-radius: 3px;
  padding: 10px 20px;
  font-size: 17px;
  text-transform: uppercase;
}

.heading {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.sub-heading {
  font-size: 16px;
  color: #073A45;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.text {
  font-size: 17px;
  margin-bottom: 0px;
}

section {
  padding: 105px;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero {
  min-height: 90vh;
  width: 100%;
  background: url(../img/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: cover;
  color: white;
}

.page-title {
  min-height: 30vh;
  width: 100%;
  background: url(../img/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: cover;
  color: white;
}

.about {
  min-height: 40vh;
}

.event {
  min-height: 30vh;
  background: url(../img/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: cover;
}
.event .box {
  margin: 10px;
  padding: 40px 20px;
  background: white;
  border-radius: 10px;
  text-align: center;
}
.event .box .heading {
  font-size: 16px;
  margin-bottom: 0px;
}
.event .box .sub-heading {
  font-size: 15px;
  font-weight: 400;
}
.event .box .icon img {
  max-width: 60px;
}

.image-holder {
  margin-bottom: 10px;
}
.image-holder img {
  max-width: 70%;
}

.hero-form {
  padding: 40px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}
.hero-form .form-heading {
  font-size: 17px;
  padding: 5px;
}
.hero-form .input-item {
  width: 50%;
  float: left;
  padding: 5px;
}
.hero-form .input-item.full-width {
  width: 100%;
}
.hero-form .input-item input, .hero-form .input-item select {
  padding: 8px 17px;
  font-size: 17px;
}
.hero-form .input-item input[type=submit] {
  background: #073A45;
  color: #fff;
  border-color: #073A45;
}
.hero-form .nav-item {
  width: 50%;
}
.hero-form .nav-item button {
  width: 100%;
  border-radius: 0px;
}
.hero-form .tab-content > .active {
  padding: 10px 0px;
}
.hero-form .nav-link {
  color: black;
  background: rgba(255, 255, 255, 0.5019607843);
}
.hero-form .nav-link.active {
  color: #073A45;
}

.standalone-form {
  background: rgba(7, 58, 69, 0.25);
}
.standalone-form .form-heading {
  font-size: 20px;
  color: #073A45;
}

footer {
  padding: 40px 40px 10px;
  background: #000;
}
footer .heading {
  color: #fff;
}
footer p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 0px;
  text-align: center;
}
footer .hr {
  width: 50px;
  background: #073A45;
  height: 3px;
  text-align: center;
}
footer ul {
  padding: 0px;
  list-style-type: none;
}
footer ul li {
  font-size: 15px;
  color: #fff;
  border-right: 2px solid white;
  padding-right: 10px;
  text-align: center;
}
footer ul li a {
  text-decoration: none;
  color: #fff;
}
footer .cc {
  font-size: 12px;
}

@media only screen and (max-width: 500px) {
  .hero .heading, .hero .text {
    text-align: center;
  }

  .hero {
  min-height: 60vh;
  width: 100%;
  background: url(../img/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: cover;
  color: white;
}
  .hero .button-box {
    display: none;
  }
  .hero-form .input-item {
    width: 100%;
  }
  footer ul li {
    text-align: center;
    border: none;
  }
  footer .col-md-4 {
    align-items: center !important;
    margin-bottom: 20px;
  }
  footer .text {
    text-align: center;


  }
  section {
  padding: 20px;
  display: flex;
  align-items: center;
}
.image-holder img {
  max-width: 80%;
}
}/*# sourceMappingURL=style.css.map */