* {
  padding: 0;
  margin: 0;
}

@font-face {
  font-family: ArialMT;
  src: url(../fonts/ArialMT.otf);
}

@font-face {
  font-family: Arial-BoldMT;
  src: url(../fonts/Arial-BoldMT.otf);
}

@font-face {
  font-family: Moderat-Bold;
  src: url(../fonts/Moderat-Bold.otf);
}

@font-face {
  font-family: Moderat-Regular;
  src: url(../fonts/Moderat-Regular.otf);
}

@font-face {
  font-family: Arial-Mdm;
  src: url(../fonts/Arial-Mdm.ttf);
}

@font-face {
  font-family: Manrope-Regular;
  src: url(../fonts/Manrope-Regular.ttf);
}

.myContainer {
  width: 1320px;
  margin: auto;
}

.title_1 {
  font-family: Arial-BoldMT;
  text-align: center;
  font-size: 36px;
  color: #000;
  line-height: 1;
}

.title_2 {
  font-family: ArialMT;
  font-size: 18px;
  color: #000000;
  line-height: 1;
  text-align: center;
  margin-top: 20px;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9;
}

.header .myContainer {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header .top {
  height: 40px;
  background-color: var(--theme-color);
}

.header .top .item {
  display: flex;
  align-items: center;
  margin-right: 38px;
  font-size: 16px;
  color: #FFF;
  font-family: ArialMT;
}

.header .top .email .text {
  text-decoration: underline;
}

.header .bottom {
  height: 100px;
  background-color: #ffffff;
}

.header .bottom .myContainer {
  justify-content: space-between;
}

.header .bottom .right {
  display: flex;
  align-items: center;
}

.header .bottom .right .nav {
  display: flex;
  margin-right: 54px;
}

.header .bottom .right .nav .mobileClose {
  display: none;
}

.header .bottom .right .nav .item {
  display: block;
  text-decoration: none;
  padding: 0 14px;
  font-family: ArialMT;
  font-size: 16px;
  color: #000;
  border-radius: 20px;
  transition: all 0.3s;
  line-height: 1;
  height: 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
}

.header .bottom .right .nav .item:not(:last-child) {
  margin-right: 9px;
}

.header .bottom .right .nav .item:hover {
  color: #FFF;
  background-color: var(--theme-color);
}

.header .bottom .right .nav .active {
  color: #FFF;
  background-color: var(--theme-color);
}


.header .bottom .right .item .subNav {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  background-color: #FFF;
  display: flex;
  flex-direction: column;
  max-height: 0;
  padding-top: 22px;
  overflow: hidden;
}

.header .bottom .right .item .subNav .sItem {
  min-width: 100%;
  white-space: nowrap;
  height: 40px;
  color: #000;
  text-align: center;
  line-height: 40px;

}

.header .bottom .right .item .subNav .sItem {
  border-top: 1px solid #e5e5e5;
  font-size: 14px;
}

.header .bottom .right .item:hover .subNav {
  max-height: 100vh;
  padding: 10px;
}

.header .bottom .right .item .subNav .sItem:hover {
  background-color: var(--theme-color);
  color: #FFF;
}

.header .bottom .right .search {
  position: relative;
  min-width: 18px;
  margin-right: 40px;
  min-height: 18px;
}

.header .bottom .right .search .icon {
  display: block;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  cursor: pointer;
}

.header .bottom .right .search .searchBox {
  width: 0;
  height: 35px;
  transition: all 0.3s;
  font-size: 14px;
  padding-left: 10px;
}

.header .bottom .right .search:hover .icon {
  transform: translate(0, -50%);
  left: auto;
  right: 10px;
}

.header .bottom .right .search:hover .searchBox {
  width: 150px;
  border: 1px solid var(--theme-color);

}

.header .bottom .right .cart {
  display: block;
  width: 18px;
  height: 19px;
  position: relative;
}

.header .bottom .right .cart::before {
  content: attr(data-count);
  position: absolute;
  right: -16px;
  top: -9px;
  border-radius: 50%;
  background-color: var(--theme-color);
  font-size: 12px;
  font-family: ArialMT;
  color: #FFF;
  display: block;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .bottom .right .mobileNav {
  display: none;
}

@media (max-width: 1440px) {
  .myContainer {
    width: 1160px;
    box-sizing: border-box;
    padding: 0 20px;
  }
}

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

@media (max-width: 1024px) {
  .title_1 {
    font-size: 28px;
  }

  .title_2 {
    font-size: 16px;
    margin-top: 15px;
  }

  .header .myContainer {
    flex-direction: column;
    align-items: flex-start;
  }

  .header .top {
    height: auto;
    padding: 10px 0;
  }

  .header .bottom .myContainer {
    flex-direction: row;
    align-items: center;
  }

  .header .bottom .right .mobileNav {
    display: block;
  }

  .header .bottom .right .nav {
    position: fixed;
    flex-direction: column;
    background: #FFF;
    top: 0;
    right: 0;
    margin-right: 0;
    width: 320px;
    height: 100vh;
    z-index: 100;
    box-sizing: border-box;
    max-width: 0;
    transition: all 0.5s;
    overflow: hidden;
    padding: 0;
  }

  .header .bottom .right .nav .mobileClose {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    height: 60px;
    align-items: center;
  }

  .header .bottom .right .nav .item {
    font-size: 18px;
    height: 45px;
  }

  .header .bottom .right .active_nav {
    padding: 20px;
    max-width: 100vw;
  }

  .header .bottom .right .cart {
    margin-right: 40px;
  }
}

@media (max-width: 768px) {
  .title_1 {
    font-size: 24px;
  }

  .title_2 {
    font-size: 14px;
    line-height: 1.5;
  }

  .header .bottom {
    height: 70px;
  }

  .header .bottom .logo {
    width: 120px;
  }

  .header .bottom .right .search {
    margin-right: 20px;
  }

  .header .bottom .right .cart {
    margin-right: 20px;
  }

  .header .bottom .right .nav .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: fit-content;
    padding: 0;
    border-radius: 0;
    margin-bottom: 3%;
  }
  .header .bottom .right .nav .item .navText{
    line-height: 35px;
    height: 35px;
    padding: 0 15px;
    border: 17px;
    font-weight: bold;
  }
  .header .bottom .right .nav .item .subNav {
    position: static;
    width: 100%;
    padding: 0;
  }
  .header .bottom .right .nav .item .subNav .sItem{
    text-align: left;
    padding: 0 25px;
    font-size: 14px;
    
  }
}