@charset "utf-8";
* {
  background-color: transparent;
  font-family: Open Sans;
  font-weight: 400;
  line-height: 1.5;
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  color: #7A113B;
}
h1 {
  margin: 10px auto;
}
h2 {
  margin: 10px auto;
}
a {
  text-decoration: none;
  color: #7A113B;
  font-weight: 500;
}
a:hover {
  color: #AD909A;
  font-weight: 600;
}
img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 95vw;
  height: 300px;
  background-image: url("../jpg/header.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 25px;
  margin: 0px auto;
  padding: 20px;
}
.logo a {
  display: flex;
  width: auto;
  height: 200px;
}
.logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.nav {
  display: flex;
  width: 80vw;
  heigth: 200px;
  align-items: center;
  justify-content: space-around;
}
.nav a {
  display: block;
  width: 200px;
  height: 30px;
  font-weight: 600;
  font-size: 18pt;
  text-align: center;
  margin: auto;
}
.divider {
  display: block;
  margin: 5px auto;
  width: 95vw;
  height: 0.5px;
  background-color: #7A113B;
}
.outboxwhite {
  display: flex;
  width: 95vw;
  height: auto;
  margin: 20px auto;
  align-items: center;
  justify-content: space-around;
}
.outboxcolor {
  display: flex;
  width: 95vw;
  height: auto;
  justify-content: space-around;
  align-items: center;
  margin: 20px auto;
  padding: 20px 0px;
  border-radius: 20px;
  background-color: #C8A5B1;
}
.grid4c {
  display: grid;
  grid-template-columns: repeat(4, 20vw);
  grid-template-rows: auto;
  grid-gap: 20px;
  place-items: center;
}
.grid3c {
  display: grid;
  grid-template-columns: repeat(3, 30vw);
  grid-template-rows: auto;
  grid-gap: 20px;
  place-items: center;
}
.gridbox4c {
  grid-column: span 4;
}
.gridbox4c ul {
  margin-left: 50px;
}
.gridbox3c {
  grid-column: span 3;
}
.gridbox1c {
  grid-column: span 1;
  text-align: center;
}
.gridbox1c img {
  display: block;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  box-shadow: 2.5px 2.5px 5px 2.5px #f5e4eb;
  margin: 20px auto;
}
.producth {
  grid-column: span 1;
  text-align: center;
}
.producth img {
  display: block;
  border-radius: 15px;
  width: 300px;
  height: 450px;
  box-shadow: 2.5px 2.5px 5px 2.5px #f5e4eb;
  margin: 20px auto;
}
.productq {
  grid-column: span 1;
  text-align: center;
}
.productq img {
  display: block;
  border-radius: 15px;
  width: 300px;
  height: 200px;
  box-shadow: 2.5px 2.5px 5px 2.5px #f5e4eb;
  margin: 20px auto;
}
.footer {
  display: flex;
  width: 95vw;
  height: 200px;
  margin: 20px auto;
  align-items: center;
  justify-content: space-around;
  background-color: #C8A5B1;
  border-radius: 20px;
}
.footerbox1 {
  display: flex;
  width: 30%;
  height: 200px;
  align-items: center;
  justify-content: flex-start;
}
.footerbox2 {
  display: flex;
  width: 30%;
  height: 200px;
  align-items: center;
  justify-content: center;
}
.footerbox3 {
  display: flex;
  width: 30%;
  height: 200px;
  align-items: center;
  justify-content: flex-end;
}
.footertext {
  width: auto;
  height: auto;
  color: #7A113B;
}
.footertext ul {
  list-style: none;
}
@media (min-width: 800px) and (max-width: 1440px) {
  .header {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    justify-content: space-around;
    align-items: center;
  }
  .footer {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    justify-content: space-around;
    align-items: center;
  }
  .footerbox1 {
    justify-content: center;
    width: 90%;
    text-align: center;
  }
  .footerbox2 {
    justify-content: center;
    width: 90%;
    text-align: center;
  }
  .footerbox3 {
    justify-content: center;
    width: 90%;
    text-align: center;
  }
  .grid4c {
    display: grid;
    grid-template-columns: repeat(2, 45vw);
    grid-template-rows: auto;
  }
  .grid3c {
    display: grid;
    grid-template-columns: repeat(1, 30vw);
    grid-template-rows: auto;
    grid-gap: 20px;
    place-items: center;
  }
  .gridbox3c {
    grid-column: span 1;
    max-width: 100%;
  }
  .gridbox4c {
    grid-column: span 2;
    max-width: 100%;
  }
  .burgericon {
    display: flex;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
    transition: all .5s ease-in-out;
    cursor: pointer;
    margin: 20px 0px 0px 0px;
    /*border: 1px solid black;*/
    border-radius: 3px;
  }
  .burgerbtn {
    width: 38px;
    height: 3px;
    background: #7A113B;
    border-radius: 3px;
    transition: all .5s ease-in-out;
    margin: 40px 0px;
  }
  .burgerbtn::before, .burgerbtn::after {
    content: '';
    position: absolute;
    width: 38px;
    height: 3px;
    background: #7A113B;
    border-radius: 3px;
    transition: all .5s ease-in-out;
  }
  .burgerbtn::before {
    transform: translateY(-12px)
  }
  .burgerbtn::after {
    transform: translateY(12px)
  }
  /* Animation*/
  .burgericon.open .burgerbtn {
    transform: translateX(-40px);
    background: transparent;
  }
  .burgericon.open .burgerbtn::before {
    transform: rotate(45deg) translate(28px, -28px);
  }
  .burgericon.open .burgerbtn::after {
    transform: rotate(-45deg) translate(28px, 28px);
  }
  .nav {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-height: 0px;
    margin: 0px 0px;
    transition: all .5s ease-in-out;
  }
  .nav a {
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0px;
    max-height: 0px;
    padding: 0px;
    transition: all .5s ease-in-out;
  }
  .nav.open {
    max-height: 1000%;
    margin: 0px 0px;
  }
  .nav.open a {
    visibility: visible;
    width: 80%;
    padding: 15px;
    max-height: 40px;
    border: 1px solid black;
    margin: 10px 0px;
    background-color: #C8A5B1;
  }
}
@media (min-width: 360px) and (max-width: 799px) {
  .header {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    justify-content: space-around;
    align-items: center;
  }
  .footer {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    justify-content: space-around;
    align-items: center;
  }
  .footerbox1 {
    justify-content: center;
    width: 90%;
    text-align: center;
  }
  .footerbox2 {
    justify-content: center;
    width: 90%;
    text-align: center;
  }
  .footerbox3 {
    justify-content: center;
    width: 90%;
    text-align: center;
  }
  .grid4c {
    display: grid;
    grid-template-columns: repeat(1, 90vw);
    grid-template-rows: auto;
  }
  .grid3c {
    display: grid;
    grid-template-columns: repeat(1, 90vw);
    grid-template-rows: auto;
  }
  .gridbox3c {
    grid-column: span 1;
    max-width: 100%;
  }
  .gridbox4c {
    grid-column: span 1;
    max-width: 100%;
  }
  .burgericon {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s ease-in-out;
    cursor: pointer;
    margin: 20px 0px 0px 0px;
    /*border: 1px solid black;*/
    border-radius: 3px;
  }
  .burgerbtn {
    width: 38px;
    height: 3px;
    background: #7A113B;
    border-radius: 3px;
    transition: all .5s ease-in-out;
    margin: 40px 0px;
  }
  .burgerbtn::before, .burgerbtn::after {
    content: '';
    position: absolute;
    width: 38px;
    height: 3px;
    background: #7A113B;
    border-radius: 3px;
    transition: all .5s ease-in-out;
  }
  .burgerbtn::before {
    transform: translateY(-12px)
  }
  .burgerbtn::after {
    transform: translateY(12px)
  }
  /* Animation*/
  .burgericon.open .burgerbtn {
    transform: translateX(-40px);
    background: transparent;
  }
  .burgericon.open .burgerbtn::before {
    transform: rotate(45deg) translate(28px, -28px);
  }
  .burgericon.open .burgerbtn::after {
    transform: rotate(-45deg) translate(28px, 28px);
  }
  .nav {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-height: 0px;
    margin: 0px 0px;
    transition: all .5s ease-in-out;
  }
  .nav a {
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0px;
    max-height: 0px;
    padding: 0px;
    transition: all .5s ease-in-out;
  }
  .nav.open {
    max-height: 1000%;
    margin: 0px 0px;
  }
  .nav.open a {
    visibility: visible;
    width: 80%;
    padding: 15px;
    max-height: 40px;
    border: 1px solid black;
    margin: 10px 0px;
    background-color: #C8A5B1;
  }
}