@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {

  background: #fdfdfd;
  position: relative;
  margin: 0;
}

.humburger {
  width: 33px;
  height: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  right: 21px;
  top: 44px;
  cursor: pointer;
  transition: 0.5s all ease-in;
  z-index: 5555;
}

.humburger.brnd {
  top: 12px;
  right: 5px;
}


.sgroup-prd-menu {
  list-style: circle;
  padding: 0 0 0 10px;
}

.humburger:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scale(0);
  transition: 0.5s all ease-in;
  z-index: 1;
}

.humburger .line {
  height: 3px;
  width: 80%;
  background: #030303;
  display: flex;
  transition: 0.5s all ease-in;
  position: relative;
  z-index: 2;
}

.humburger .line:after {
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  background: #030303;
  width: 0;
  transition: 0.5s all ease-in-out;
  z-index: 1;
}

.humburger:hover:after {
  transform: scale(1.4);
}

.humburger:hover .line:after {
  width: 100%;
}

.humburger.open .line {
  background: #030303;
  width: 50%;
}

.humburger.open .line:nth-of-type(1) {
  transform: rotate(45deg);
  margin-top: 12px;
}

.humburger.open .line:nth-of-type(2) {
  transform: rotate(-45deg);
  margin-top: -3px;
}

.humburger.open .line:nth-of-type(3) {
  visibility: hidden;
  opacity: 0;
}

.menu_body {
  position: fixed;
  top: 0px;
  right: 0;
  width: 350px;
  height: auto;
  display: flex;
  background: #fff;
  transform: translateX(100%);
  transition: 0.5s all ease;
  z-index: 99;
}

.menu_body.postn {
  z-index: 999;
}

.menu_body.open {
  transform: translateX(0);
  position: absolute;
}

.menu_body__item_wrapper {
  padding: 40px 0px 40px 0;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.menu_body__item_wrapper .menu_list {
  list-style: none;
  width: 100%;
  padding: 0 0 0 0;
}

/* .menu_body__item_wrapper .menu_list li {
  margin-bottom: 30px;
  position: relative;
  padding-left: 30px;
} */
.menu_body__item_wrapper .menu_list li {
  position: relative;
  border-bottom: 1px solid #ccc;
  margin: 20px 20px;
  padding-bottom: 15px;
}


/* .menu_body__item_wrapper .menu_list li.algn-lst {
  position: relative;
  border-bottom: 1px solid #ccc;
  padding: 12px 20px;
} */



.menu_body__item_wrapper .menu_list li:last-child {
  margin-bottom: 0;
}

.menu_body__item_wrapper .menu_list li a {
  color: #333;
  font-weight: 400;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  transition: 0.5s all ease;
}

.menu_body__item_wrapper .menu_list li a:after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  width: 0;
  bottom: 0;
  background: #EC1C24;
  transition: 0.5s all ease;
}

.menu_body__item_wrapper .menu_list li a:hover:after {
  width: 100%;
}

.menu_body__item_wrapper .menu_list li.has_child .sub-menu {
  position: absolute;
  background: black;
  list-style: none;
  padding: 30px;
  left: unset;
  top: 0;
  right: 100%;
  min-width: 135px;
  opacity: 0;
  visibility: hidden;
}

.menu_body__item_wrapper .menu_list li.has_child .sub-menu li {
  padding-left: 0;
  margin-bottom: 15px;
  width: 100%;
  font-size: 16px;
  padding: 4px 0;
  border: none;
  list-style: none;
}

.menu_body__item_wrapper .menu_list li.has_child .sub-menu li a:after {
  display: none;
}

.menu_body__item_wrapper .menu_list li.has_child:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}




@media (min-width: 768px) {
  .humburger {
    display: none;

  }
}

@media (max-width: 992px) {
  body .menu_body {
    width: 100%;
  }

  body .menu_body__item_wrapper .menu_list li.has_child {
    position: relative;
  }

  body .menu_body__item_wrapper .menu_list li.has_child a {
    position: relative;
    display: block;
  }

  body .menu_body__item_wrapper .menu_list li.has_child a:after {
    float: right;
    margin-right: 20px;
    font-size: 10px;
    content: '\25BC';
    color: #333;
    left: 330px;
    position: absolute;
    top: 5px;
    width: 0;
  }

  /* .menu_body__item_wrapper .menu_list li.has_child a::before {
    float: right;
    margin-right: 20px;
    font-size: 10px;
    content: '\25BC';
  }   */
  body .menu_body__item_wrapper .menu_list li.has_child .sub-menu {
    position: relative;
    background: transparent;
    list-style: none;
    padding: 0;
    left: unset;
    top: unset;
    right: unset;
    width: 100% !important;
    opacity: 1;
    visibility: visible;
    margin-top: 15px;
    display: none;
    padding-left: 10px;
  }
}



.dropbtn {
  background: none;
  font-size: 15px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: relative;
  background-color: #3c3c3c;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  top: 10px;
}

.dropdown-content a {
  color: #fff !important;
  padding: 10px 13px;
  text-decoration: none;
  display: block;
  font-size: 14px !important;
  border-bottom: 1px solid #fff !important;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background: none;
}


@media (max-width: 320px) {
  body .menu_body__item_wrapper .menu_list li.has_child a:after {
    float: right;
    margin-right: 20px;
    font-size: 10px;
    content: '\25BC';
    color: #333;
    left: 270px;
    position: absolute;
    top: 5px;
    width: 0;
  }
}