* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: "Poppins", sans-serif;
}

.navbar {
  width: 100%;
  padding: 32px 45px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

.navbar-menu-container {
  display: flex;
  flex-direction: row;
}

.logo-container {}

.logo-container img {}

.navbar-menu-container .menu-list {
  display: flex;
  flex-direction: row;
  margin-left: 188px;
  align-items: center;
  gap: 64px;
  list-style-type: none;
}

.menu-list .menu-item a {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  line-height: 25.2px;
  text-decoration: none;
  position: relative;
  transition: 0.5s;
}

.menu-list .menu-item a:hover {
 opacity: .8;
 transform: scale(1.2);
}


.menu-list .menu-item a .menu-drop-down {
  transition: 0.5s;
  position: absolute;
  width: 100%;
  min-height: 0;
  margin-top: 10px;
}


#menu-item-323 {
  position: relative;

}

.sub-menu {
  position: absolute;
  opacity: 0;
  transition: .5s;
  min-width: 343px;
  margin-top: 10px;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#menu-item-323:hover .sub-menu {
  opacity: 1;
}

.menu-list .menu-item a:hover .menu-drop-down {
  min-height: 200px;
}

.menu-list .menu-item a img {
  margin-left: 16px;
}

.btn-container {}

.navbar .menu-list-mobile {
  display: none;
  /* background-color: red; */
}


.navbar-menu-container .menu-toggle {
  display: none;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 25px;
  right: 16px;
  z-index: 15;
  width: 24px;
  height: 24px;
}

.navbar-menu-container .menu-toggle .hamburger {
  width: 24px;
  height: 3px;
  background-color: #0766E6;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 10px;
}


.hamburger::before,
.hamburger::after {
  content: '';
  width: 24px;
  height: 2px;
  background-color: #0766E6;
  position: absolute;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.hamburger::before {
  top: -10px;
}

.hamburger::after {
  bottom: -10px;
}


@media (max-width: 1040px) {

  .navbar {
    padding: 19px 16px;
  }

}

@media (max-width: 985px) {
  .btn-container {
    display: none;
  }

  .navbar-menu-container {
    width: 100%;
    justify-content: space-between;
  }

  .navbar-menu-container .menu-list {
    margin-left: 0;
  }
}

@media (max-width: 700px) {

  .navbar-menu-container .menu-toggle {
    display: flex;
  }

  .logo-container img {
    width: 122px;
    height: 39px;
  }

  .navbar-menu-container .menu-list {
    display: none;
  }

  .navbar .menu-list-mobile {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: -100%;
    top: 0;
    padding: 16px 20px;
    height: 100vh;
    width: 100%;
    z-index: 2;
    background-color: #122D7A;
    gap: 15px;
    transition: .5s;
  }

  .menu-list-mobile a {
    color: #fff;
    text-decoration: none;
  }


  .menu-list-mobile.active {
    right: 0;
  }

  .navbar-menu-container .menu-toggle.active {
    position: fixed;
    top: 22px;
    right: 24px;
  }

  .navbar-menu-container .menu-toggle.active .hamburger {
    transform: rotate(45deg);
    background-color: #fff;
  }

  .navbar-menu-container .menu-toggle.active .hamburger::before {
    transform: rotate(90deg);
    top: 0;
    background-color: #fff;
  }

  .navbar-menu-container .menu-toggle.active .hamburger::after {
    transform: rotate(90deg);
    bottom: 0;
    background-color: #fff;

  }
}

@media (max-width: 350px) {
  .menu-list-mobile {
    width: 100%;
    right: -100%;
  }
}


.btn-container .btn-contact,
.footer .btn-contact {
  border-radius: 600px;
  padding: 16px 32px;
  background-color: #0766e6;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: .5s;
}

.btn-container .btn-contact:hover,
.footer .btn-contact:hover {
  opacity: .7;
}

.footer {
  background-color: #080851;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 63px;
  padding-bottom: 74px;
}

.footer .inner-container-footer {
  max-width: 1124px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.footer .inner-container-footer .menu-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 96px;
  list-style-type: none;
  height: 100%;
}

.footer .inner-container-footer .menu-footer a {
  text-decoration: none;
}

.footer .menu-footer .menu-item a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  line-height: 25.2px;
  text-decoration: none;
  position: relative;
  transition: 0.5s;
}

.footer .menu-footer .menu-item a:hover {
 opacity: .8;
 transform: scale(1.2);
}


.btn-contact-footer {
  font-weight: 600;
}

.network-list {
  display: flex;
  align-items: center;
  list-style-type: none;
  gap: 13px;
  margin-top: 28px;
}

.custom-line {
  width: 100%;
  height: 1;
  max-width: 1124px;
  color: #ffffff;
  opacity: 0.2;
}

@media (max-width: 1200px) {
  .custom-line {
    max-width: 100%;
    width: 100%;
  }
}

.custom-line-footer {
  width: 100%;
  height: 1;
  max-width: 1124px;
  color: #ffffff;
  opacity: 0.2;
  margin-top: 43px;
  margin-bottom: 45px;
}

.cpy-container {
  width: 100%;
  justify-content: space-between;
}

.cpy-container .cpy-text {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  line-height: 19.6px;
  font-family: "Poppins", sans-serif;
}


@media (max-width: 1200px) {
  .footer .inner-container-footer {
    max-width: 100%;
    padding: 16px 20px;
  }

  .custom-line-footer {
    max-width: 100%;
    width: 95%;
  }

  .footer .inner-container-footer {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 32px;
  }

  .btn-contact-footer {}
}

.footer .inner-container-footer .mobile-network-list {
  display: none;
}

@media (max-width: 750px) {

  .inner-container-footer .logo img {
    width: 122px;
    height: 39px;
    margin: 0;
  }

  .footer {
    padding-top: 71px;
    padding-bottom: 71px;
  }

  .footer .inner-container-footer {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .footer .custom-line-footer {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .footer .inner-container-footer .menu-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0;
  }

  .network-list {
    display: none;
  }

  .network-list .footer-icon  img {
    transition: .5s;
  }

  .network-list .footer-icon:hover img {
    opacity: .7;
  }


  .footer .inner-container-footer .mobile-network-list {
    display: flex;
    margin: 0;
    margin-bottom: 53px;
    margin-top: 30px;
  }


}
