<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  border-bottom: 1px solid rgba(var(--bs-card-border-color-rgb), .6) !important;
  box-shadow:0 .46875rem 2.1875rem rgba(90,97,105,0.1),0 .9375rem 1.40625rem rgba(90,97,105,.1),0 .25rem .53125rem rgba(90,97,105,.12),0 .125rem .1875rem rgba(90,97,105,.1);
  background-image: linear-gradient(rgba(var(--bs-nav-bg-rgb),1),rgba(var(--bs-nav-sec-bg-rgb),1));
  
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 11px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin-top: 6px;
  max-height: 60px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar{
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 6px 25px 6px;
  font-family: "Poppins", sans-serif;
  font-size: var(--bs-nav-font-size);
  color: rgba(var(--bs-rm-nav-link-color-rgb),1);
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover&gt;a {
  /*color: #8fc04e;*/
  color: rgba(var(--bs-rm-nav-link-hover-color-rgb),1);
  text-decoration: none;
  background-color: rgba(var(--bs-rm-nav-link-hover-bg-rgb),1);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #8fc04e;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #9bc761;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0px;
  top: calc(100% + 30px);
  margin-top: 3px;
  padding: 0px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  /*background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);*/
  transition: 0.3s;
  border-radius: 0px;
  border-color: transparent;
  /*background-color: transparent;*/
  background-color: rgba(var(--bs-rm-navdrp-link-bg-rgb),1);
}

.navbar .dropdown ul li {
  min-width: 200px;
  margin-left: 0px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  /*font-size: 14px;*/
  font-weight: 500;
  text-transform: none;
  /*color: #353535;*/
  color: rgba(var(--bs-rm-navdrp-link-color-rgb),1);
  font-size: var(--bs-nav-font-size);
  text-decoration: none;
  background-color: rgba(var(--bs-rm-navdrp-link-bg-rgb),1);
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover&gt;a {
  /*color: #8fc04e;*/
  color: rgba(var(--bs-rm-navdrp-link-hover-color-rgb),1);
  text-decoration: none;
  background-color: rgba(var(--bs-rm-navdrp-link-hover-bg-rgb),1);
}

.navbar .dropdown:hover&gt;ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover&gt;ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}


@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover&gt;ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 28, 28, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #353535;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover&gt;a {
  /*color: #8fc04e;*/
  color: rgba(var(--bs-rm-navdrp-link-hover-color-rgb),1);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-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);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
  background-color: #fff;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  background-color: #fff;
  color: #353535;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover&gt;a {
  /*color: #8fc04e;*/
  color: rgba(var(--bs-rm-navdrp-link-hover-color-rgb),1);
  background-color: #fff;
}

.navbar-mobile .dropdown&gt;.dropdown-active {
  display: block;
}



/*--------------------------------------------------------------
# Flag Icon
--------------------------------------------------------------*/
.flag {
  height: 20px;
  margin-left: -5px;
  margin-right: -5px;
  float: center;
}

.icon {
  margin-left: -5px;
  margin-right: -5px;
  float: center;
}

.box span {
  display: block;
}

.box .webspell {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-top: 10px;
}

.box .slogan {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

</pre></body></html>