@import "../../../cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css";

.header .container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .fa-envelope {
  color: #ffb871;
  font-size: 13px;
}

.header .container .logo a {
  display: block;
}
.header .container .logo a img {
  height: 50px;
}
.header .container .search {
  flex: 1;
  margin: 0 20px;
}
.header .container .menu {
  padding: 0;
}
.header .container .menu ul {
  display: flex;
  list-style: none;
  align-items: center;
}
.header .container .menu ul li {
  margin-left: 20px;
}
.header .container .menu ul li:first-child {
  margin-left: 0;
}
.header .container .menu ul li a {
  display: block;
  line-height: 20px;
  text-decoration: none;
  transition: .2s ease-in-out;
  -webkit-transition: .2ms ease-in-out;
  -moz-transition: .2ms ease-in-out;
  -ms-transition: .2ms ease-in-out;
  -o-transition: .2ms ease-in-out;
}
.header .container .menu ul li a.font-xs {
  font-size: 13px;
}

.navbar-nav li:hover a.nav-link {
  color: #ffb871 !important;
}

.header .container .menu ul li.active a {
  color: #1b40e7;
  box-shadow: 0 -3px 0 0 #1b40e7 inset;
}
.header .container .social {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #ddd;
}
.header .container .social ul {
  display: flex;
  list-style: none;
  display: none;
}
.header .container .social ul li {
  margin-left: 10px;
}
.header .container .social ul li:first-child {
  margin-left: 0;
}
.header .container .social ul li a {
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}
.header .container .social ul li a span {
  display: none;
}
.header .container .social ul li.facebook a {
  background: #3b5998;
}
.header .container .social ul li.twitter a {
  background: #1da1f2;
}
.header .container .menu-btn {
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: #ffb871;
  margin-right: -20px;
  text-decoration: none;
}
.responsive-menu {
  position: fixed;
  top: 0;
  left: -100%;
  opacity: 0;
  width: 100%;
  height: 100%;
  background: #16c7be;
  z-index: 99999;
  transition: 300ms all;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.responsive-menu.active {
  left: 0;
  opacity: 1;
}
.responsive-menu .close-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: #ffb871;
  text-decoration: none;
}
.responsive-menu .logo a img {
  height: 40px;
}
.responsive-menu .menu {
  flex: 1;
}
.responsive-menu .menu ul {
  padding: 50px 0;
  list-style: none;
}
.responsive-menu .menu ul li {
  display: flex;
  align-items: center;
  height: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.responsive-menu .menu ul li:last-child {
 border-bottom: 0;
}
.responsive-menu .menu ul li a {
  padding: 10px 12px;
  display: block;
  font-size: 20px;
  font-weight: bold;

}

.responsive-menu .menu ul li.active a {
  color: #1b40e7;
  background: rgba(27, 64, 231, 0.03);
  box-shadow: -3px 0 0 0 #1b40e7 inset;
}
.responsive-menu .social {
  border-top: 1px solid #eee;
  padding-top: 15px;
  padding-bottom: 5px;
}
.responsive-menu .social ul {
  display: flex;
  list-style: none;
  padding-left: 0;
}
.responsive-menu .social ul li {
  flex: 1;
}
.responsive-menu .social ul li a {
  display: flex;
  justify-content: center;
  text-decoration: none;
  align-items: center;
}
.responsive-menu .social ul li a span {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.responsive-menu .social ul li a i {
  margin-right: 10px;
}
.responsive-menu .social ul li.facebook a i,
.responsive-menu .social ul li.twitter a i,
.responsive-menu .social ul li.instagram a i,
.responsive-menu .social ul li.youtube a i {
  color: #ffb871;
  font-size: 20px;
}

.mobile-show {
  display: none;
}

@media (max-width: 1100px) {
  .container {
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
  }
}
@media (max-width: 900px) {
  .mobile-hide {
    display: none;
  }
  .mobile-show {
    display: flex;
  }
}
