/* ---------------------------------- Menu ---------------------------------- */

#navigation {
  overflow: visible;
  /* background-color: #f1f1f1; */
  /* box-shadow: 1px 1px 4px 0 rgba(0,0,0,0.2); */
  transition: 0.5s;
  padding: 60px 0px;
  

}

#navigation #logo {

  background-image: url('../img/logo_icons/Logo.svg');
  width: 200px;
  height: 60px;
  transition: 0.5s;
  background-repeat: no-repeat;
  background-size: contain;
}


.container {
  margin: 0 auto;
  padding: 0 2.4rem;
  width: 100%;
  /* max-width: 130rem; */
  max-width: 140rem;
}

.btn {
  padding: 1.6rem 3.2rem;
  border-radius: 4px;
}

.cta-btn {
  display: inline-block;
  /* margin-top: 2.4rem; */
  background-color: #ffffff;
  border: 1px solid #fff;

  color: #3D405B;
  /* text-transform: capitalize; */
  font-size: 1.4rem;
  transition: all 0.5s;
}

.cta-btn:hover {
  background-color: #3D405B;
  color: #ffffff;
  border: 1px solid #fff;

}

/* Responsive Navbar - Mobile first*/

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* height: 5rem; */
}


/*******************************************************/

ul {
  /* background: darkorange; */
  list-style: none;
  margin: 0;
  padding-left: 0;
}

li {
  color: #fff;
  /* background: rgb(92, 88, 83); */
  /* display: block; */
  float: left;
  padding: 1rem 0.3rem;
  position: relative;
  text-decoration: none;
  transition-duration: 0.5s;
  
}
  


li:hover,
li:focus-within {
  /* background: red; */
  /* cursor: pointer; */
}

li:focus-within a {
  outline: none;
}

ul li ul {
  /* background: orange; */
  visibility: hidden;
  opacity: 0;
  min-width: 16rem;
  position: relative;
  transition: all 0.5s ease;
  margin-top: 1rem;
  left: 0;
  display: none;
  background: rgb(92, 88, 83);
}

ul li:hover > ul,
ul li:focus-within > ul,
ul li ul:hover,
ul li ul:focus {
  visibility: visible;
  opacity: 1;
  display: block
  
}

ul li ul li {
  clear: both;
  width: 100%;
  margin-left: 2rem;
}

/**************************************************/







.navbar-brand {
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

.nav-list {
  list-style: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  height: 100vh;
  background-color: #082A39;
  padding: 4.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  z-index: 1250;
  text-transform: uppercase;
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.nav-link {
  margin-left: 2rem;
  font-size: 1.5rem;
  transition: all 0.1s;
}


.nav-not-link {
  margin-left: 2rem;
  font-size: 1.5rem;
  transition: all 0.1s;
}


.nav-link:hover {
  border-bottom: 3px solid #ffffff;
}

.active {
  font-weight: 700;
  border-bottom: 3px solid #ffffff;
}

.open .nav-list {
  transform: translateX(0);
}

.menu-toggle {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3.2rem;
  height: 3.2rem;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.hamburger {
  width: 2.4rem;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  border: none;
  transition: all 0.7s ease-out;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 2.4rem;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  border: none;
}

.hamburger::before {
  transform: translateY(-8px);
}

.hamburger::after {
  transform: translateY(8px);
}

/* Menu Toggle Animation */

.open .hamburger {
  background: transparent;
}

.open .hamburger::before {
  transform-origin: (0, 0);
  transform: rotate(45deg);
}

.open .hamburger::after {
  transform-origin: (0, 0);
  transform: rotate(-45deg);
}



@media screen and (min-width: 992px) {

 
  .nav-list {
    position: initial;
    width: initial;
    height: initial;
    background-color: transparent;
    padding: 0;
    justify-content: initial;
    flex-direction: row;
    transform: initial;
    transition: initial;
    display: inline;
}

.nav-link {
    font-size: 1.2rem;
}

.nav-not-link {
  font-size: 1.2rem;
}

.menu-toggle {
    display: none;
}

#navigation #logo {


  width: 250px;
  height: 80px;
  background-size: contain;

}



@media screen and (min-width: 992px) {

  #navigation {
    padding: 50px 50px;

}

.navbar {
  height: 6rem;
}


ul li ul {

  position: absolute;
  
}

ul li ul li {

  margin-left: 0rem;
}



}


