body {
  margin: 0;
  padding: 0;
}

a,
span,
button,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Rubik", sans-serif;
}

.floatingNav {
  width: calc(100vh - 100px);
  border-radius: 2px;
  box-shadow: 0px 1px 10px #95c5b4;
  border-radius: 0px 0px 25px 25px;
  /*animation: slideDown 1s ease-out;*/
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}
.header .headerContainer {
  max-width: 1570px;
}
.header #navbarNav {
  justify-content: end;
}
.header .logo {
  width: 220px;
}
@media screen and (max-width: 767px) {
  .header .logo {
    width: 130px;
  }
}
@media screen and (max-width: 767px) {
  .header .navbar-light .navbar-nav .nav-item {
    border-bottom: 0.5px solid #e7e7e7;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .header .navbar-light .navbar-nav .nav-item {
    border-bottom: 0.5px solid #e7e7e7;
  }
}
.header .navbar-light .navbar-nav .main-menu {
  position: relative;
}
.header .navbar-light .navbar-nav .main-menu .down {
  margin-left: 5px;
}
.header .navbar-light .navbar-nav .main-menu:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.header .navbar-light .navbar-nav .main-menu .sub-menu {
  position: absolute;
  right: -57px;
  width: 224px;
  top: 24px;
  background: #ffffff;
  padding-top: 46px;
  padding-left: 6px;
  padding-right: 0px;
  border-radius: 5px;
  border-bottom: 3px solid #fd5115;
  opacity: 0;
  z-index: 99;
  visibility: hidden;
  transition: all 0.3s linear;
}
@media screen and (max-width: 767px) {
  .header .navbar-light .navbar-nav .main-menu .sub-menu {
    left: 20%;
    right: auto;
  }
  .navbar-toggler {
    padding: 1px 6px;
    font-size: 16px;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header .navbar-light .navbar-nav .main-menu .sub-menu {
    left: 35%;
    right: auto;
  }
}
.header .navbar-light .navbar-nav .main-menu .sub-menu li {
  list-style: none;
  padding-left: 10px;
  padding-bottom: 18px;
  font-size: 12px;
  font-weight: 600;
}
.header .navbar-light .navbar-nav .main-menu .sub-menu li:hover {
  padding-left: 15px;
  transition: all 0.5s;
}
.header .navbar-light .navbar-nav .main-menu .sub-menu li a {
  text-decoration: none;
  color: #696969;
}
.header .navbar-light .navbar-nav .main-menu .sub-menu li a:hover {
  color: #048071;
}
.header .navbar-light .navbar-nav .nav-link {
  color: #3a3a3a;
  font-size: 16px;
  padding: 0px 20px;
  font-weight: bold;
  text-transform: uppercase;
}
.header .navbar-light .navbar-nav .nav-link:hover {
  color: #fe5500;
}
@media screen and (max-width: 767px) {
  .header .navbar-light .navbar-nav .nav-link {
    padding: 6px 20px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header .navbar-light .navbar-nav .nav-link {
    padding: 5px 15px;
    text-align: center;
  }
}

.banner {
  background: linear-gradient(180deg, #FE5500 8.85%, #B5073B 100%);
  display: flex;
  align-items: center;
  margin-top:6rem !important;
}
@media screen and (max-width: 767px) {
  .banner {
    margin-top: 4rem;
  }
}
.banner .bancontainer {
  max-width: 1570px;
  padding: 5%;
}
.banner .bancontainer .row {
  align-items: center;
}
.banner .bancontainer .main_ban {
  display: none;
}
@media screen and (max-width: 767px) {
  .banner .bancontainer .main_ban {
    display: block !important;
  }
}
.banner .bancontainer .ban_img {
  position: relative;
  display: flex;
  justify-content: center;
}
.banner .bancontainer .ban_img img {
  max-width: 60%;
}
@media screen and (max-width: 767px) {
  .banner .bancontainer .ban_img img {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .banner .bancontainer .ban_img img {
    display: block;
    width: 100%;
  }
}
.banner .bannerText .drop-in {
  color: #fff;
  font-weight: bold;
  font-size: 70px;
  padding-bottom: 20px;
  /*animation: drop-in 2s ease 200ms backwards;*/
}
@media screen and (max-width: 767px) {
  .banner .bannerText .drop-in {
    font-size: 30px;
    padding-bottom: 5px;
  }
}
@media screen and (min-width: 1030px) and (max-width: 1366px) {
  .banner .bannerText .drop-in {
    font-size: 54px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .banner .bannerText .drop-in {
    font-size: 25px;
    padding-bottom: 5px;
  }
}
@keyframes drop-in {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translate(0px);
  }
}

/*.drop-in {*/
/*  animation: drop-in 1s ease 200ms backwards;*/
/*}*/

/*.drop-in-2 {*/
/*  animation: drop-in 1200ms ease 500ms backwards;*/
/*}*/

@keyframes drop-in {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translate(0px);
  }
}
.aboutus {
  margin: 2rem 0px;
}
@media screen and (max-width: 767px) {
  .aboutus {
    margin: 10px;
  }
}
.aboutus .row {
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .aboutus .row {
    margin-top: 0px;
  }
}
.aboutus .aboutusText {
  background-color: #c6ffeb;
  padding: 5%;
  position: relative;
}
.aboutus .aboutusText :before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 35px 35px 0;
  border-style: solid;
  border-color: #fff #fff #42b18a #42b18a;
  background: #658e15;
}
@media screen and (max-width: 767px) {
  .aboutus .aboutusText :before {
    display: none;
  }
}
.aboutus .aboutusText h2 {
  font-size: 38px;
  font-weight: bold;
  color: #049e68;
  margin-bottom: 20px;
  line-height: 50px;
}
@media screen and (max-width: 767px) {
  .aboutus .aboutusText h2 {
    font-size: 23px;
    line-height: 30px;
  }
  .aboutus .aboutusText h2 br {
    display: none;
  }
}
.aboutus .aboutusText p {
  font-size: 16px;
  line-height: 24px;
  color: #474747;
}
@media screen and (max-width: 767px) {
  .aboutus .aboutusText p {
    font-size: 14px;
    line-height: 23px;
  }
}
.aboutus .aboutusText h5 {
  font-weight: 600;
  color: #424242;
}
@media screen and (max-width: 767px) {
  .aboutus .aboutusText h5 {
    font-size: 15px;
  }
}

.footer {
  background-color: #001630;
  width: 100%;
  padding: 20px 20px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 0;
  }
}
.footer .row {
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer .foot_logo {
    justify-content: center;
    display: flex;
  }
}
.footer .foot_logo .foot-logo {
  width: 220px;
}
@media screen and (max-width: 767px) {
  .footer .foot_logo .foot-logo {
    width: 130px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer .foot_logo {
    text-align: center;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .footer .foot_logo {
    text-align: left;
  }
}
.footer .foot-navbar-nav {
  display: flex;
  margin: 0px;
}
@media screen and (max-width: 767px) {
  .footer .foot-navbar-nav {
    margin: 7px 0px;
    padding: 0px;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer .foot-navbar-nav {
    justify-content: center;
    padding: 0px;
  }
}
@media screen and (min-device-width: 820px) and (max-device-width: 1180px) and (orientation: landscape) {
  .footer .foot-navbar-nav {
    padding: 0px;
  }
}
.footer .foot-navbar-nav li {
  list-style: none;
}
.footer .foot-navbar-nav li a {
  color: #b5b5b5;
}
.footer .foot-navbar-nav li a:hover {
  color: #fe5500;
}
@media screen and (max-width: 767px) {
  .footer .foot-navbar-nav li a {
    font-size: 13px;
    padding: 5px 4px;
  }
}
@media screen and (min-device-width: 820px) and (max-device-width: 1180px) and (orientation: landscape) {
  .footer .foot-navbar-nav li a {
    padding: 0px 6px;
  }
}
.footer hr {
  border: 1px solid #636363;
  width: 80%;
  margin: 0px auto;
}
.footer .policy {
  display: flex;
  color: #747474;
  font-size: 13px;
  margin: 0px;
}
@media screen and (max-width: 767px) {
  .footer .policy {
    margin: 7px 0px;
    padding: 0px;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer .policy {
    justify-content: center;
    padding: 10px 0px;
  }
}
.footer .policy li {
  list-style: none;
}
.footer .policy li .nav-link {
  color: #a1a1a1;
}
@media screen and (max-width: 767px) {
  .footer .policy li .nav-link {
    font-size: 13px;
    padding: 0px 5px;
  }
}
.footer .copyright {
  border-top: 1px solid #a9a9a9;
}
@media screen and (max-width: 767px) {
  .footer .copyright .mt-4 {
    margin-top: 0rem !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer .copyright .mt-4 {
    margin-top: 0rem !important;
    padding-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .footer .copyright .copyrightText {
    text-align: center;
    color: #b5b5b5;
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer .copyright .copyrightText {
    text-align: center;
  }
}
.footer .copyright .copyrightText .copy_right {
  color: #b5b5b5;
  font-size: 14px;
}
.footer .copyright .social {
  justify-content: end;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer .copyright .social {
    justify-content: center;
    margin: 8px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer .copyright .social {
    justify-content: center;
    padding: 0px;
  }
}
.footer .copyright .social .icon {
  color: #048071;
  margin: 0px 8px;
  font-size: 20px;
}
.footer .copyright .social .icon:hover {
  color: #fd5115;
  transition:all .5s
}/*# sourceMappingURL=accessibility.css.map */