/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.font-roboto {
    font-family: 'Roboto', sans-serif;
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

.font-montserrat-semibold {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.color-1 {
    color: #fbb03b;
}

.color-gray {
    color: rgb(83, 78, 78);
}

.bg-1 {
    background-color:  white;
}

/* Preloader */
.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    z-index: 100;
}

@-webkit-keyframes honeycomb {
    0%,
    20%,
    80%,
    100% {
      opacity: 0;
      -webkit-transform: scale(0);
      transform: scale(0);
    }

    30%,
    70% {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  @keyframes honeycomb {
    0%,
    20%,
    80%,
    100% {
      opacity: 0;
      -webkit-transform: scale(0);
      transform: scale(0);
    }

    30%,
    70% {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  .honeycomb {
    height: 24px;
    position: relative;
    width: 24px;
  }

  .honeycomb div {
    -webkit-animation: honeycomb 2.1s infinite backwards;
    animation: honeycomb 2.1s infinite backwards;
    background: #20375f;
    height: 12px;
    margin-top: 6px;
    position: absolute;
    width: 24px;
  }

  .honeycomb div:after, .honeycomb div:before {
    content: '';
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    position: absolute;
    left: 0;
    right: 0;
  }

  .honeycomb div:after {
    top: -6px;
    border-bottom: 6px solid  #20375f
  }

  .honeycomb div:before {
    bottom: -6px;
    border-top: 6px solid  #20375f
  }

  .honeycomb div:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    left: -28px;
    top: 0;
  }

  .honeycomb div:nth-child(2) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
    left: -14px;
    top: 22px;
  }

  .honeycomb div:nth-child(3) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    left: 14px;
    top: 22px;
  }

  .honeycomb div:nth-child(4) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    left: 28px;
    top: 0;
  }

  .honeycomb div:nth-child(5) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    left: 14px;
    top: -22px;
  }

  .honeycomb div:nth-child(6) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    left: -14px;
    top: -22px;
  }

  .honeycomb div:nth-child(7) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    left: 0;
    top: 0;
  }


/* button effect */
.btn-style {
    background-color: #fbb03b;
    color: #ffffff;
    font-weight: Bold;
    transition: all 0.5s;
    border-radius: 5px;
    -webkit-transition: all 0.5s;
    padding: 15px 40px;
    text-decoration: none;
}

.btn-style:hover {
    background-color: #FCC46C;
    box-shadow: 0 0 20px #f7c76f50;
}

.btn-style:active {
    background-color: #FBB03B;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    box-shadow: none;
}

.text-justify {
    text-align: justify;
}

.padding-top {
    padding-top: 50px;
}

.padding-bottom {
    padding-bottom: 50px;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background:  #243f6c;

    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
    padding: 0;
}

#topbar .contact-info i {
    font-style: normal;
    color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
    padding-left: 5px;

}

#topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
    transition: 0.3s;
}

#topbar .contact-info i a:hover {
    color: #fff;
    text-decoration: underline;
}

#topbar .social-links a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

#topbar .social-links a:hover {
    color: white;
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar-nav .nav-item .active {
    color: #243f6c;
    text-decoration: underline;
    font-weight: 600;
}

.nav-item a {
    color: #243f6c;
}
.nav-item a:hover {
    color: #243f6c;
    font-weight: bold;
}
.nav-item a .active:hover {
    color: #243f6c;
    font-weight: bold;
}

.navbar-nav .nav-item:hover {
    color: #243f6c;
    text-decoration: underline;
    font-weight: 600;
}


/* Homepage - About Us */
.about-section .text-container {
    padding-right: 150px;
}
