@font-face {
  font-family: 'Cairo';
  src:
    url('../font/Cairo-VariableFont_slnt\,wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'RobotoCondensed';
  src:
    url('../font/RobotoCondensed-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Mada';
  src:
    url('../font/Mada-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: right;
  font-family: 'Cairo';
}

:root {
  --color1: #ce171d;
  --color2: #000b54;
}

body {
  background: #f5f5f5;
}

.phone_header {
  display: none;
}

.munio_main {
  display: none;
}

/* Header */
.header {
  width: 100%;
  height: 10vh;
  background: white;
  text-align: right;
  display: flex;
  align-items: center;
}

.header .logo {
  width: fit-content;
  color: #194171;
  font-size: 35px;
  font-weight: bold;
  text-decoration: none;
  font-style: italic;
  font-family: 'RobotoCondensed';
  display: flex;
  text-align: center;
  margin-right: 7%;
}

/* Serch */
.header .search {
  width: 30%;
  height: 50%;
  background: #f0eeee;
  display: flex;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #d6d5d5;
  margin-right: 15%;
}

.header .search i {
  width: 8%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #194171;
}

.header .search input {
  width: 90%;
  height: 90%;
  border: none;
  outline: none;
  background: none;
  color: #194171;
  font-weight: bold;
}

.header .search-btn {
  border: none;
  outline: none;
  background: #194171;
  color: white;
  width: 5%;
  height: 50%;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  margin-right: 1%;
}

.header .user {
  font-size: 24px;
  margin-right: 15%;
  color: #000b54;
}

.header .bage-cart {
  font-size: 21px;
  margin-right: 2%;
  color: #000b54;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.header .bage-cart .cart-count {
  font-size: 14px;
  font-weight: bold;
  margin-right: 7px;
}

.header .mini-cart {
  width: 25%;
  height: auto;
  top: 10vh;
  left: 3%;
  position: absolute;
  display: none;
  background: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5);
  z-index: 100;
  overflow-y: auto;
}

.header .mini-cart div {
  width: 100%;
  height: 10vh;
}

.header .mini-cart hr {
  background-color: #194171;
  height: 1px;
}

.header .mini-cart div img {
  width: 20%;
  height: 90%;
  margin-top: 1%;
  float: right;
  border-radius: 2px;
}

.header .mini-cart div .name {
  float: right;
  margin-right: 10%;
  color: #194171;
  font-weight: bold;
}

.header .mini-cart div .price {
  margin-right: 10%;
  float: right;
  color: #194171;
}

.header .mini-cart .cart-footer {
  width: 100%;
  margin-top: 10%;
}

.header .mini-cart .cart-footer .total {
  float: right;
  font-size: 18px;
  color: #194171;
  font-weight: bold;
}

.header .mini-cart .cart-footer .add {
  float: left;
  text-decoration: none;
  background: #194171;
  color: white;
  padding: 2px 15px;
  font-size: 14px;
  border-radius: 50px;
}

.header .mini-cart .cart-footer .bag {
  float: left;
  font-size: 13px;
  font-weight: 600;
  color: #000b54;
  margin-top: 2%;
}

/* Secuond Header */
.header-link {
  width: 100%;
  height: 8vh;
  background: #d6d5d5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2%;
}

.header-link a {
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #194171;
}

/* Hero */
.hero {
  width: 100%;
  height: 82vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero .slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1s;
}

.hero .active {
  opacity: 1;
}

/* Descount */
.descount {
  width: 100%;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2%;
}

.descount a {
  width: 23%;
  height: 90%;
  background: #d6d5d5;
  border-radius: 10px;
  overflow: hidden;
}

.descount a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Products */
.products-container {
  width: 100%;
  height: auto;
}

.products-container .title {
  width: 98%;
  height: 20vh;
  background: #194171;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1%;
  border-radius: 10px;
  font-size: 60px;
  font-family: 'Mada';
}

.products-container .cards-products {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5%;
  padding: 3% 3%;
}

.products-container .cards-products .product {
  width: 100%;
  height: 90%;
  background-color: white;
  overflow: hidden;
  float: right;
  position: relative;
}

.products-container .cards-products .product .discount {
  position: absolute;
  background-color: red;
  top: 2%;
  right: 0;
  width: auto;
  padding: 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.products-container .cards-products .product img {
  width: 100%;
  height: 70%;

}

.products-container .cards-products .product .content {
  color: #194171;
}

.products-container .cards-products .product .content h3 {
  width: 100%;
  text-align: center;
  font-size: 15px;
  margin-top: 2%;
}

.products-container .cards-products .product .content p {
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-top: 2%;
}

.products-container .cards-products .product .content p del {
  font-size: 13px;
}

.products-container .cards-products .product .content .size {
  width: 80%;
  height: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10%;
  margin-top: 1%;
}

.products-container .cards-products .product .content .size select {
  border: 1px solid #194171;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  outline: none;
}


.products-container .cards-products .product .content button {
  border: none;
  outline: none;
  background: #194171;
  width: 60%;
  margin-right: 20%;
  text-align: center;
  color: white;
  border-radius: 50px;
  padding: 2px;
  margin-top: 5%;
  cursor: pointer;
}

/* Serv */
.serv {
  width: 90%;
  margin-right: 5%;
}

.serv a {
  background: #d6d5d5;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #194171;
}

.serv a i {
  font-size: 90px;
}

.serv a span {
  font-weight: bold;
  font-size: 19px;
}

.serv a p {
  text-align: center;
  line-height: 20px;
}

/* Footer */
.footer {
  display: none;
}

footer {
  width: 100%;
  height: 55vh;
  background: #194171;
}

footer .card {
  float: right;
  width: 15%;
  height: auto;
  display: flex;
  flex-direction: column;
  color: white;
  margin-top: 5%;
}

footer .card:first-child {
  margin-right: 5%;
}

footer .card .title {
  font-weight: bold;
  font-size: 18px;
}

footer .card a:first-of-type {
  margin-top: 3%;
}

footer .card a {
  text-decoration: none;
  color: white;
  width: fit-content;
  height: fit-content;
  margin-bottom: 3%;
  font-size: 14px;
  padding: 0;
}

footer .card:last-child {
  width: 45%;
}

footer .card:last-child .info {
  font-size: 14px;
  margin-top: 2%;
}

footer .card:last-child form {
  margin-top: 3%;
}

footer .card:last-child form {
  margin-top: 3%;
}

footer .card:last-child form input {
  width: 80%;
  height: 5vh;
  border: 1px solid white;
  background: none;
  outline: none;
  color: white;
  font-size: 14px;
  padding: 5px;
  padding-right: 10px;
  border-radius: 50px;
}

footer .card:last-child form input::placeholder {
  color: white;
  opacity: 1;
}

footer .card:last-child form button {
  border: 1px solid white;
  outline: none;
  background: none;
  width: 14%;
  height: 5vh;
  color: white;
  text-align: center;
  border-radius: 50px;
  margin-right: 1%;
  cursor: pointer;
}

footer .card:last-child .sochial {
  margin-top: 5%;
}

footer .card:last-child .sochial a {
  margin-left: 3%;
  font-size: 16px;
  margin-top: 4%;
}

footer .card:last-child .copyRight {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-right: 74%;
}

footer .card:last-child .copyRight i {
  margin-top: 0.8%;
  margin-right: 3%;
  width: fit-content;
}

@media (max-width: 720px) {
  .header {
    display: none;
  }

  .header-link {
    display: none;
  }

  footer {
    display: none;
  }

  /* Header Phone */
  .phone_header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 10vh;
    background-color: white;
    border-bottom: 1px solid #194171;
  }

  .phone_header .bi-list {
    border: none;
    outline: none;
    background: none;
    font-size: 40px;
    margin-right: 5%;
    color: #194171;
  }

  .phone_header h4 {
    font-size: 30px;
    font-family: 'RobotoCondensed';
    margin-right: 20%;
    color: #194171;
  }

  .phone_header .bi-person {
    font-size: 30px;
    color: #194171;
    margin-right: 5%;
  }

  .phone_header .bi-bag {
    background: none;
    border: none;
    outline: none;
    font-size: 25px;
    color: #194171;
    margin-right: 5%;
    position: relative;
    padding: 10px;
  }

  .phone_header .bi-bag p {
    position: absolute;
    background: #194171;
    color: white;
    font-size: 12px;
    top: 5%;
    left: 0%;
    padding: 0 6px;
    border-radius: 5px;
  }

  /* Maine Bag */
  .phone_header .mini-cart {
    width: 70%;
    height: auto;
    top: 10vh;
    left: 0;
    position: absolute;
    display: none;
    background: white;
    padding: 10px;
    z-index: 100;
    overflow-y: auto;
  }

  .phone_header .mini-cart div {
    width: 100%;
    height: 10vh;
    margin-top: 4%;
  }

  .phone_header .mini-cart hr {
    background-color: #194171;
    height: 1px;
  }

  .phone_header .mini-cart div img {
    width: 20%;
    height: 90%;
    margin-top: 1%;
    float: right;
    border-radius: 2px;
  }

  .phone_header .mini-cart div .name {
    float: right;
    margin-right: 10%;
    color: #194171;
    font-weight: bold;
  }

  .phone_header .mini-cart div .price {
    margin-right: 10%;
    float: right;
    color: #194171;
  }

  .header .mini-cart .cart-footer {
    width: 100%;
    margin-top: 10%;
  }

  .phone_header .mini-cart .cart-footer .total {
    float: right;
    font-size: 18px;
    color: #194171;
    font-weight: bold;
  }

  .phone_header .mini-cart .cart-footer .add {
    float: left;
    text-decoration: none;
    background: #194171;
    color: white;
    padding: 2px 15px;
    font-size: 14px;
    border-radius: 50px;
  }

  .phone_header .mini-cart .cart-footer .bag {
    float: left;
    font-size: 13px;
    font-weight: 600;
    color: #000b54;
    margin-top: 2%;
  }

  /* Munio */
  .munio_main {
    width: 100%;
    height: 100vh;
    background: #19417167;
    position: fixed;
    top: 0;
    z-index: 100;
  }

  .munio_main .munio {
    width: 70%;
    height: 100vh;
    background: white;
  }

  .munio_main .munio .bi-x {
    border: none;
    outline: none;
    background: none;
    font-size: 35px;
    margin-top: 5%;
    margin-right: 5%;
    color: #194171;
  }

  .munio_main .munio .search {
    width: 90%;
    height: 5vh;
    margin-right: 5%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d6d5d5;
    margin-top: 5%;
  }

  .munio_main .munio .search input {
    width: 90%;
    border: none;
    outline: none;
    background: none;
    color: #194171;
    font-size: 15px;
    font-weight: bold;
  }

  .munio_main .munio .search input::placeholder {
    color: #194171;
  }

  .munio_main .munio .search i {
    color: #194171;
  }

  .munio_main .munio .links {
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-top: 10%;
    margin-right: 5%;
  }

  .munio_main .munio .links a {
    text-decoration: none;
    color: #194171;
    font-weight: bold;
    padding: 5px;
  }

  .munio_main .munio .links a:hover {
    background: #19417167;
  }

  .munio_main .munio .lng {
    width: 100%;
    height: 55vh;
    background: #f0eeee;
    display: flex;
    flex-direction: column;
    margin-top: 5vh;
  }

  .munio_main .munio .lng a {
    margin-right: 5%;
    text-decoration: none;
    font-size: 14px;
    color: #194171;
    font-weight: bold;
  }

  .munio_main .munio .lng a:first-child {
    margin-top: 20%;
  }

  /* Hero */
  .hero {
    height: 80vh;
  }

  /* Decount */
  .descount {
    width: 95%;
    height: 70vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-right: 2.5%;
  }

  .descount a {
    width: 100%;
    margin: 0;
  }

  /* Products */
  .products-container {
    overflow: hidden;
    padding-bottom: 5vh;
  }

  .products-container .title {
    width: 95%;
    margin-right: 2.5%;
    height: 8vh;
    font-size: 30px;
  }

  .products-container .cards-products {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .products-container .cards-products .product {
    height: 60vh;
  }

  .products-container .cards-products .product img {
    height: 65%;
  }

  .products-container .cards-products .product .content .size {
    height: 6%;
  }

  .products-container .cards-products .product .content .size select {
    width: 70%;
  }

  /* Footer */
  .footer {
    width: 100%;
    height: auto;
    background: #194171;
    color: white;
    display: block;
    padding-bottom: 2vh;
    margin-top: 3vh;
  }

  .footer .title {
    text-align: center;
    font-size: 20px;
    margin-top: 10%;
  }

  .footer .info {
    text-align: center;
    font-size: 15px;
  }

  .footer form {
    width: 90%;
    margin-right: 5%;
    margin-top: 5%;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .footer form input {
    width: 100%;
    height: 5vh;
    border: 1px solid #fff;
    background: none;
    outline: none;
    color: white;
    border-radius: 50px;
    padding: 10px;
    font-size: 17px;
  }

  .footer form input::placeholder {
    color: white;
  }

  .footer form button {
    width: 100%;
    height: 5vh;
    border: 1px solid #fff;
    background: none;
    outline: none;
    color: white;
    margin-top: 3%;
    border-radius: 50px;
    font-size: 17px;
    text-align: center;
  }

  .footer .btnMun {
    width: 100%;
    height: auto;
    margin-top: 10%;
  }

  .footer .btnMun button {
    width: 100%;
    height: 7vh;
    border: none;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    outline: none;
    background: none;
    position: relative;
    text-align: center;
    color: white;
    font-size: 17px;
  }

  .footer .btnMun button i {
    position: absolute;
    left: 4%;
    top: 30%;
  }

  /* Button Munio */
  .footer .btnMun .mun {
    width: 100%;
    height: auto;
    display: none;
    /* display: flex; */
    flex-direction: column;
    padding: 5px;
  }

  .footer .btnMun .mun a {
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    color: white;
  }

  .footer .soch {
    width: 100%;
    height: 15vh;
    border-bottom: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5%;
  }

  .footer .soch a {
    text-decoration: none;
    color: white;
    font-size: 20px;
  }

  .footer .copyRight {
    color: white;
    text-align: center;
    margin-top: 5%;
    font-size: 18px;
  }
}