/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --main-color: #152c55;
  --secondary-color: #148aff;
  --main-font: "Barlow", sans-serif;
}
body {
  font-family: "Barlow", sans-serif;
  color: #444444;
}

a {
  color: #94c045;
  text-decoration: none;
}

a:hover {
  color: #aacd6b;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--main-font);
}

#main {
  margin-top: 70px;
  z-index: 3;
  position: relative;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #94c045;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #a6ca63;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  z-index: 997;
  transition: all 0.5s ease-in-out;
  background: var(--main-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

/*--------------------------------------------------------------
# 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: 10px 0 10px 30px;
  font-family: var(--main-font);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  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 > a {
  color: #148aff;
}

.triangle-down {
  margin-left: 45%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid var(--main-color);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  right: -70px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 0px 0 10px 0px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  color: var(--main-color);
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  background-color: #a1d0ff;
}

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

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

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

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

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #3c4133;
  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;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(34, 36, 29, 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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

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

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #94c045;
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.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 > a {
  color: #94c045;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
  min-height: 70vh;
  background-image: url(/assets/img/bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero .card {
  border-radius: 0px;
  background-color: var(--main-color);
  padding: 3rem;
}
.hero .card h2 {
  font-weight: 700;
  color: #fff;
  font-family: var(--main-font);
}

.hero .card .btns {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.hero .card .btns .learn-more {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  font-family: var(--main-font);
}
.hero .card .btns i {
  color: var(--secondary-color);
  font-size: 22px;
  padding: 0.1rem 0.5rem;
  margin-right: 0.5rem;
  border: 1px solid #fff;
}
.hero .card .btns a {
  color: #fff;
  font-family: var(--main-font);
}

/*--------------------------------------------------------------
# Featured
--------------------------------------------------------------*/

.featured {
  padding: 7rem 0rem;
}

.featured h2 {
  font-weight: 400;
}

.featured .card {
  border-radius: 0px;
  border-color: #999999;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.featured .card img {
  width: 70px;
}
.featured .card h4 {
  font-weight: 600;
  font-size: 22px;
}

/*--------------------------------------------------------------
# Select
--------------------------------------------------------------*/
.bg {
  background-color: #eeeeee;
}
.select {
  padding: 7rem 0rem;
}
.select h2 {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 18px;
  font-family: var(--main-font);
}

.select h1 {
  font-size: 32px;
  color: var(--main-color);
  font-weight: 500;
}

.select p {
  color: var(--main-color);
}

.select h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--main-color);
}
.select ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: 0px;
  padding-left: 0px;
}
.select ul li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.select ul li span {
  color: var(--main-color);
}
.select ul li i {
  color: var(--secondary-color);
}

/*--------------------------------------------------------------
# hire
--------------------------------------------------------------*/
.hire {
  padding: 4rem 0rem;
  background-image: url(/assets/img/bg-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: var(--main-font);
}
.hire h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hire p {
  color: #fff;
  font-weight: 600;
}
.hire .bg-2 {
  background-color: var(--main-color);
  padding: 1rem 3rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.hire img {
  width: 100%;
  height: 100%;
}
.hire .ab {
  position: relative;
}

.hire .btns {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 0.5rem 1rem;
  width: fit-content;
}
.hire span {
  color: var(--secondary-color);
}

.hire .new {
  padding: 1rem 1rem 1rem 4rem;
}
.hire .triangle {
  position: absolute;
  top: 50px;
  left: 0px;
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-left: 50px solid var(--main-color);
  border-bottom: 25px solid transparent;
}
/*--------------------------------------------------------------
# Packages
--------------------------------------------------------------*/
.packages {
  padding: 7rem 0rem;
}

.packages header {
  text-align: center;
  color: var(--main-color);
  padding-bottom: 2rem;
  font-family: var(--main-font);
}

.packages .card .content {
  padding: 0px 1rem 2rem 1rem;
}

.packages .card {
  border-color: #999999;
  border-radius: 0px;
}
.packages .card .icon {
  margin-top: -40px;
  width: 80px;
  margin-bottom: 2rem;
}

.packages .card h2 {
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 700;
}

.packages .card h1 {
  color: var(--main-color);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 2rem;
}
.packages .card .btns {
  margin-top: 2rem;
}
.packages .card .btns a {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: 0.4s;
}

.packages .card .btns a:hover {
  background-color: var(--main-color);
}
/*--------------------------------------------------------------
# Kontakt
--------------------------------------------------------------*/
.kontakt {
  height: 100vh;
  background-image: url(/assets/img/bg-3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.kontakt .container {
  height: 100%;
}
.kontakt .row {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.kontakt .card {
  padding: 2rem;
  height: 80vh;
  border: none;
  background-color: #fff;
  border-radius: 0px;
  text-align: end;
}
.kontakt .card {
  content: "";
  background-image: url(/assets/img/bg-4.png);
  background-size: cover;
  background-position: end;
  background-repeat: no-repeat;
}
.kontakt .card h2 {
  font-size: 28px;
  font-weight: 400;
  color: var(--main-color);
  margin-bottom: 2rem;
}

.kontakt .card p {
  color: var(--main-color);
}

.kontakt .phone a {
  color: var(--main-color);
  font-weight: 600;
  font-size: 26px;
}
.kontakt .phone {
  margin: 0px;
  margin-top: 2rem;
}
.kontakt .email a {
  padding-top: 0px;
  color: var(--main-color);
}

/*--------------------------------------------------------------
# Kuser
--------------------------------------------------------------*/
.inner-hero {
  display: flex;
  align-items: center;
  height: 80vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.inner-hero h2 {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--main-font);
  color: var(--secondary-color);
  text-transform: uppercase;
}

.inner-hero h1 {
  font-size: 36px;
  font-weight: 700;
  font-family: var(--main-font);
  color: var(--main-color);
}

.little-cards {
  background-color: rgba(20, 137, 255, 0.14);
  padding: 7rem 0rem;
}
.little-cards header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  color: var(--main-color);
}
.little-cards header img {
  width: 50px;
}
.little-cards .col .card {
  height: 100%;
  padding: 1rem;
  background-color: #fff;
  text-align: center;
}

.little-cards .col .card h1 {
  font-size: 42px;
  color: var(--secondary-color);
  font-weight: 700;
}

.little-cards .col .card p {
  color: var(--main-color);
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--main-color);
  padding: 60px 0px;
  color: #fff;
  font-size: 14px;
}

#footer img {
  width: 200px;
}

#footer .footer-text {
  margin-top: 2rem;
  padding: 2rem 0rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

#footer .footer-text p {
  font-weight: 600;
}

#footer .footer-text a {
  color: #fff;
}
