/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
/*  font-family: 'Poppins', sans-serif;*/
}
body{
  min-height: 100vh;
}
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: #3E8DA8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
header .navbar{
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
  clear: both;
}
.navbar .logo a{
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
header .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
header .navbar .links{
  display: flex;
}
header .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
header .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }
header .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
header .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #3E8DA8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
header .navbar .links li:hover .htmlCss-sub-menu,
header .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3E8DA8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3E8DA8;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3E8DA8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:920px) {
  header .navbar{
    max-width: 100%;
    padding: 0 25px;
  }
  header .navbar .logo a{
    font-size: 27px;
  }
  header .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  header .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:800px){
  header{
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
  }
  header .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background:  #3E8DA8;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #fff;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: #fff;
    }
  header .navbar .links{
    display: block;
    margin-top: 20px;
  }
  header .navbar .links li .arrow{
    line-height: 40px;
  }
header .navbar .links li{
    display: block;
  }
header .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
header .navbar .links li .sub-menu li{
  border-bottom: none;
}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }
  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  header .navbar .links li:hover .htmlCss-sub-menu,
  header .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  header .navbar .nav-links{
  max-width: 100%;
} 
}



/*====================menu-style-fonts========================*/
ul.menu-style-fonts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 2rem;
    background: #000;
    color: #fff;
}

@media (min-width: 768px) {
    ul.menu-style-fonts {
        /* gap:2.5625rem; */
    }
}

ul.menu-style-fonts li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 1.25rem 0 .75rem 0;
    position: relative;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content
}

@media (min-width: 768px) {
    ul.menu-style-fonts li {
        padding:1.5rem 0
    }

    ul.menu-style-fonts li:not(:last-of-type):before {
        content: "";
        position: absolute;
        width: 1px;
        height: calc(100% - 48px);
        background: #fff;
        opacity: .25;
        right: -1.25rem;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

ul.menu-style-fonts li:after {
    content: "";
    width: 100%;
    height: 3px;
    background: none;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    border-radius: .75rem;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: 0.3s background linear,0.3s opacity linear,0.3s -webkit-transform cubic-bezier(0,1.15,.46,1.17);
    transition: 0.3s background linear,0.3s opacity linear,0.3s -webkit-transform cubic-bezier(0,1.15,.46,1.17);
    transition: 0.3s transform cubic-bezier(0,1.15,.46,1.17),0.3s background linear,0.3s opacity linear;
    transition: 0.3s transform cubic-bezier(0,1.15,.46,1.17),0.3s background linear,0.3s opacity linear,0.3s -webkit-transform cubic-bezier(0,1.15,.46,1.17)
}

@media (min-width: 768px) {
    ul.menu-style-fonts li:after {
        
    }
}

ul.menu-style-fonts li.active:after {
    opacity: 1;
    background: #FF136B
}

ul.menu-style-fonts li:hover:after {
    opacity: 1;
    background: #FF136B
}

ul.menu-style-fonts li a {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

ul.menu-style-fonts li a img {
    display: none
}

@media (min-width: 768px) {
    ul.menu-style-fonts li a img {
        display:block
    }
}