*,::before,::after{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Common */
.p-50{
  padding: 50px;
}
.p-30{
  padding: 30px;
}

/* Header */
header{
  padding: 10px 50px 10px 30px;
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  background: #00264C;
}
.brand-logo.logo{
  height: 50px;
  max-width: 100%;
}
.nav-link{
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
}

.nav-link:focus,
.nav-link:hover {
  color: #fff;
  transform: scale(1.1);
}
.navbar-nav .nav-link.active {
  color: #b88a44;
}
.navbar-nav .nav-link.show {
  color: white;
}
.nav-link:focus-visible {
  outline: 0;
  box-shadow: none;
}
button:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}
main{
  margin-top: 80px;
}

.dropdown-item:hover,
.dropdown-item.active{
  background-color: #00264C;
  font-weight: 500;
  font-size: 1rem;
  transform: scale(1.1rem);
}
.dropdown-item:focus{
  font-weight: 500;
}
.dropdown-toggle:after{
  display: none;
}

/* Sections */
.page-section{
  padding: 70px 50px;
}
.section-heading{
  color: #00264C;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.section-sub-heading{
  color: #00264C;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
/* .section-sub-heading::before{
  content: "";
  display: block;
  height: 2px;
  flex: 1;
  background: #b88a44;
  margin-right: 10px;
}
.section-sub-heading::after{
  content: "";
  display: block;
  height: 2px;
  flex: 1;
  background: #b88a44;
  margin-left: 10px;
} */
.section-para{
  font-size: 1.2rem;
}

/* Footer */
footer{
  background: #00264C;
}
.footer-top-section{
  color: #fff;
  text-align: center;
  border-bottom: 2px solid #fff;
}
.footer-top-section h4{
  font-size: 1.6rem;
  font-weight: 600;
  text-shadow: 0 0 8px #ffffff60;
  margin-bottom: 15px;
}
.footer-top-section i{
  font-size: 2rem;
  margin-bottom: 15px;
  text-shadow: 0 0 8px #ffffff80;
}
.footer-top-section p{
  font-size: 1rem;
  font-weight: 400;
  text-shadow: 0 0 8px #ffffff60;
  line-height: 150%;
}
.text-link{
  text-decoration: none;
  color: white;
}

/* Copyright */
.copyright{
  padding: 20px 70px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright .right-content{
  display: flex;
  justify-content: end;
  align-items: center;
}
.copyright p{
  font-size: 0.9rem;
  cursor: pointer;
}
.copyright .right-content div{
  padding-left: 20px;
}
.copyright .right-content i{
  font-size: 1.3rem;
  cursor: pointer;
}

@media screen and (max-width:992px) {
  header{
    padding: 10px ;
    display: inherit;
    align-items: center;
    justify-content: space-between;
    background: #00264C;
  }
  .navbar-nav{
    padding: 0 15px;
  }
  .section-heading {
    margin-bottom: 20px;
    font-size: 2rem;
  }
  .section-sub-heading {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  .section-para {
    font-size: 1.1rem;
    font-weight: 500;
  }
  .copyright .right-content .facebook {
    padding-left: 0;
  }
  .dropdown-menu{
    background-color: transparent;
    border: none;
    margin-top: -10px;
  }
  .dropdown-item{
    color: white;
  }
  .nav-link:focus,
  .nav-link:hover {
    color: #fff;
    transform: none;
  }
  
}