@charset "UTF-8";
/* CSS Document */


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  padding: 10px 0;
  font-size: 14px;
}

#topbar .contact-info i {
  font-style: normal;
  color: #bff6ff;
}

#topbar .contact-info i a, #topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #bff6ff;
}

#topbar .social-links a {
  color: #bababa;
  line-height: 0;
  transition: 0.3s;
  margin-left: 10px;
}

#topbar .social-links a:hover {
  color: white;
}


/*--------------------------------------------------------------
# header1
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: #13498e;
}

.header.header-scrolled {
  background: #db0f0f;
  padding: 10px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  opacity: .95;
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo span {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #f9f9f9;
  font-family: "Poppins", sans-serif;
  margin-top: 3px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar1 {
  padding: 0;
}

.navbar1 ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar1 li {
  position: relative;
}

.navbar1 > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar1 a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 14px;
  padding: 0 4px;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.4px;
  position: relative;
  text-transform: uppercase;
}

.navbar1 a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar1 > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #ff6767;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.navbar1 a:hover:before, .navbar1 li:hover > a:before, .navbar1 .active:before {
  visibility: visible;
  transform: scaleX(1);
}

.navbar1 a:hover, .navbar1 .active, .navbar1 li:hover > a {
  color: #ffe96e;
}

.navbar1 .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar1 .dropdown ul li {
  min-width: 200px;
}

.navbar1 .dropdown ul a {
  padding: 15px 20px;
  font-size: 14px;
  text-transform: none;
  color: #2a333e;
}

.navbar1 .dropdown ul a i {
  font-size: 12px;
}

.navbar1 .dropdown ul a:hover, .navbar1 .dropdown ul .active:hover, .navbar1 .dropdown ul li:hover > a {
	color: #FFF;
	background-color: #af0a0a;
}

.navbar1 .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar1 .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar1 .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar1 .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar1 .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #012970;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar1 ul {
    display: none;
  }
}

.navbar1-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}

.navbar1-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar1-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar1-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #012970;
}

.navbar1-mobile a:hover, .navbar1-mobile .active, .navbar1-mobile li:hover > a {
  color: #4154f1;
}

.navbar1-mobile .getstarted {
  margin: 15px;
}

.navbar1-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar1-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar1-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar1-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar1-mobile .dropdown ul a:hover, .navbar1-mobile .dropdown ul .active:hover, .navbar1-mobile .dropdown ul li:hover > a {
  color: #4154f1;
}

.navbar1-mobile .dropdown > .dropdown-active {
  display: block;
}


.bi-list::before {
    content: "\f479";
}

[class^="bi-"]::before, [class*=" bi-"]::before {
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
	color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	}