﻿@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Poppins&display=swap");
body {
  font-family: "Poppins";
}

.navigation {
  height: 100px;
  background: transparent;
}

@media screen and (min-width: 799px) {
  .navigation {
    margin-bottom: -7rem;
    position: relative;
    z-index: 5;
  }
}
.nav-container {
  max-width: 95%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row !important;
}

.brand {
  position: relative;
  padding-left: 20px;
  /*float: left;*/
  line-height: 100px;
  text-transform: uppercase;
  font-size: 1.7em;
  overflow: hidden;
  background-color: white;
  width: fit-content;
  height: 100%;
}
.brand img {
  height: 100%;
}
.brand a,
.brand a:visited {
  color: #0c0c0c;
  text-decoration: none;
}

@media only screen and (max-width: 799px) {
  .brand:dir(rtl) {
    right: 40%;
  }
}
nav {
  /*float: right;*/
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: black;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li ul li {
  font-size: 16px;
  background-color: white;
}
nav ul li a {
  display: block;
  padding: 10px 20px 0 20px;
  line-height: 50px;
  background: transparent;
  color: #0c0c0c;
  text-decoration: none;
}
nav ul li a::before {
  transition: 300ms;
  height: 5px;
  content: "";
  position: absolute;
  background-color: #f8b500;
  width: 0%;
  bottom: 0px;
}
nav ul li a:hover::before {
  width: 70%;
}
nav ul li a:not(:only-child):after {
  padding-left: 4px;
  content: " ▾";
}
nav ul li ul li {
  min-width: 190px;
}
nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

.lang-btn {
  margin: auto 0;
}

@media only screen and (max-width: 799px) {
  .lang-btn:dir(ltr) {
    position: relative;
    left: -12rem;
  }
}
.nav-dropdown {
  display: none;
  position: absolute;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  height: 100px;
  width: 100px;
}

@media only screen and (max-width: 799px) {
  .nav-mobile {
    display: block;
  }
  nav {
    width: 100%;
    padding: 100px 0 15px;
  }
  nav ul {
    display: none;
  }
  nav ul li {
    float: none;
    font-size: 20px;
  }
  nav ul li a {
    padding: 15px;
    line-height: 20px;
  }
  nav ul li a:hover::before {
    width: 20%;
  }
  nav ul li ul li a {
    padding-left: 30px;
  }
  .nav-dropdown {
    position: static;
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #f8b500;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

@media screen and (min-width: 799px) {
  .nav-list {
    display: flex !important;
    font-size: 23px;
    margin: 13px 0;
  }
  .elementor-heading-title {
    font-size: 1.6rem !important;
  }
}
@media screen and (max-width: 799px) {
  .nav-list {
    display: none;
    position: relative;
    z-index: 999999;
    background-color: white;
  }
}
