* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
}

a, a:visited, a:hover {
  text-decoration: none;
}

#header {
  margin: 0;
  pad: 0;
  width: 100%;
  height: 80px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 200px auto 400px;
      grid-template-columns: 200px auto 400px;
  -ms-grid-rows: 80px;
      grid-template-rows: 80px;
  place-items: center;
  position: fixed;
}

#header-img {
  height: 80%;
  margin: 2px;
  -ms-grid-column: 1;
  grid-column: 1;
  place-items: center start;
}

#nav-bar {
  font-size: 1.125rem;
  -ms-grid-column: 3;
  grid-column: 3;
}

.nav-link {
  color: black;
}

.nav-link:not(:last-child) {
  margin-right: 2rem;
}

@media (max-width: 600px) {
  #header {
    height: 160px;
    -ms-grid-columns: 10px auto 10px;
        grid-template-columns: 10px auto 10px;
    -ms-grid-rows: 80px 80px;
        grid-template-rows: 80px 80px;
    position: relative;
  }
  #header-img {
    -ms-grid-column: 2;
    grid-column: 2;
  }
  #nav-bar {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}

#about {
  width: 100%;
  height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (12.5%)[8];
      grid-template-columns: repeat(8, 12.5%);
  -ms-grid-rows: (12.5%)[8];
      grid-template-rows: repeat(8, 12.5%);
}

.image-box {
  -ms-grid-column: 2;
  -ms-grid-column-span: 5;
  grid-column: 2 / 7;
  -ms-grid-row: 2;
  -ms-grid-row-span: 6;
  grid-row: 2 / 8;
  background-image: url(../images/1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-animation: slideBg 18s linear infinite 0s;
          animation: slideBg 18s linear infinite 0s;
  -webkit-animation-timing-function: step-start;
          animation-timing-function: step-start;
  border-radius: 4px;
}

@-webkit-keyframes slideBg {
  0% {
    background-image: url("../images/1.jpg");
  }
  25% {
    background-image: url("../images/2.jpg");
  }
  50% {
    background-image: url("../images/3.jpg");
  }
  75% {
    background-image: url("../images/4.jpg");
  }
  100% {
    background-image: url("../images/1.jpg");
  }
}

@keyframes slideBg {
  0% {
    background-image: url("../images/1.jpg");
  }
  25% {
    background-image: url("../images/2.jpg");
  }
  50% {
    background-image: url("../images/3.jpg");
  }
  75% {
    background-image: url("../images/4.jpg");
  }
  100% {
    background-image: url("../images/1.jpg");
  }
}

.container-a {
  -ms-grid-column: 6;
  -ms-grid-column-span: 2;
  grid-column: 6 / 8;
  -ms-grid-row: 3;
  -ms-grid-row-span: 4;
  grid-row: 3 / 7;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  z-index: 0;
  position: relative;
  padding: 20px;
}

.container-a::before {
  -ms-grid-column: 6;
  -ms-grid-column-span: 2;
  grid-column: 6 / 8;
  -ms-grid-row: 3;
  -ms-grid-row-span: 4;
  grid-row: 3 / 7;
  content: "";
  background-image: linear-gradient(109.6deg, #530505 11.2%, black 91.1%);
  position: absolute;
  border-radius: 4px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.75;
  z-index: -1;
}

.container-a h2 {
  font-weight: lighter;
  position: relative;
  color: white;
}

.container-a p {
  margin: 20px 0;
  padding: 0px 10px;
  font-weight: 500;
  line-height: 25px;
  position: relative;
  color: white;
  font-size: 1rem;
}

.container-a a {
  background-color: white;
  color: black;
  padding: 10px;
  position: relative;
}

@media only screen and (max-width: 1024px) {
  .image-box {
    -ms-grid-column: 2;
    -ms-grid-column-span: 6;
    grid-column: 2 / 8;
    -ms-grid-row: 2;
    -ms-grid-row-span: 4;
    grid-row: 2 / 6;
  }
  .container-a {
    -ms-grid-column: 3;
    -ms-grid-column-span: 4;
    grid-column: 3 / 7;
    -ms-grid-row: 5;
    -ms-grid-row-span: 3;
    grid-row: 5 / 8;
    padding: 40px;
    margin-bottom: -80px;
  }
}

@media screen and (min-height: 1366px) {
  .container-a {
    -ms-grid-column: 3;
    -ms-grid-column-span: 4;
    grid-column: 3 / 7;
    -ms-grid-row: 5;
    -ms-grid-row-span: 3;
    grid-row: 5 / 8;
    padding: 40px;
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 414px) {
  #about {
    height: 840px;
    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-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .image-box {
    width: 88%;
    height: 200px;
    margin: 20px 0px;
  }
  .container-a {
    width: 80%;
    height: 430px;
  }
}

#explore {
  width: 100%;
  height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (12.5%)[8];
      grid-template-columns: repeat(8, 12.5%);
  -ms-grid-rows: (12.5%)[8];
      grid-template-rows: repeat(8, 12.5%);
}

.container-b {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2 / 4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 4;
  grid-row: 2 / 6;
  padding: 0px 20px;
}

.container-b h4 {
  font-size: 1rem;
  padding-bottom: 5px;
}

.container-b h1 {
  color: #d40000;
  font-size: 2rem;
}

.container-b p {
  font-size: 1rem;
  text-align: justify;
  line-height: 2rem;
}

.image-explore {
  -ms-grid-column: 4;
  grid-column: 4;
  -ms-grid-row: 2;
  grid-row: 2;
  place-self: center;
}

.image-explore img {
  width: 100%;
}

.video-box {
  -ms-grid-column: 4;
  -ms-grid-column-span: 4;
  grid-column: 4 / 8;
  -ms-grid-row: 3;
  -ms-grid-row-span: 5;
  grid-row: 3 / 8;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}

@media only screen and (max-width: 1024px) {
  .video-box {
    -ms-grid-column: 4;
    -ms-grid-column-span: 4;
    grid-column: 4 / 8;
    -ms-grid-row: 4;
    -ms-grid-row-span: 2;
    grid-row: 4 / 6;
    place-self: center;
  }
  .image-explore {
    -ms-grid-row: 3;
    grid-row: 3;
  }
}

@media screen and (min-height: 1366px) {
  #explore {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .image-explore {
    margin-left: 80px;
  }
  .image-explore img {
    width: 10%;
  }
  .container-b {
    margin: 10px 80px;
  }
  .video-box {
    margin: 10px 80px;
    margin-top: 60px;
  }
}

@media only screen and (max-width: 416px) {
  #explore {
    height: 800px;
    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-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .image-explore {
    width: 30%;
  }
  .container-b {
    width: 88%;
    text-align: center;
    margin-top: 20px;
  }
  .container-b p {
    line-height: 1.5rem;
  }
  .video-box {
    width: 88%;
    margin-top: 20px;
  }
}

#features {
  width: 100%;
  height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (12.5%)[8];
      grid-template-columns: repeat(8, 12.5%);
  -ms-grid-rows: (12.5%)[8];
      grid-template-rows: repeat(8, 12.5%);
}

.container-c {
  -ms-grid-column: 2;
  -ms-grid-column-span: 3;
  grid-column: 2 / 5;
  -ms-grid-row: 2;
  -ms-grid-row-span: 6;
  grid-row: 2 / 8;
}

.image-features {
  -ms-grid-column: 5;
  -ms-grid-column-span: 3;
  grid-column: 5 / 8;
  -ms-grid-row: 3;
  -ms-grid-row-span: 4;
  grid-row: 3 / 7;
  place-self: center;
}

.image-features img {
  width: 100%;
}

.container-c h1 {
  color: #d40000;
  font-size: 2rem;
}

.container-c ul li {
  font-weight: bold;
  padding: 5px;
}

.container-c {
  font-size: 1rem;
  text-align: justify;
  line-height: 1.7rem;
}

.container-c h1 b {
  color: black;
}

@media screen and (min-height: 1366px) {
  #features {
    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-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .container-c {
    margin: 10px 100px;
  }
  .image-features {
    width: 40%;
  }
}

@media only screen and (max-width: 416px) {
  #features {
    height: 1340px;
    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-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .container-c {
    width: 75%;
    text-align: justify;
  }
  .container-c ul li {
    text-align: left;
  }
  .container-c h1 {
    text-align: center;
  }
  .image-features {
    width: 80%;
    margin-top: 20px;
  }
}

#shop {
  width: 100%;
  height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (12.5%)[8];
      grid-template-columns: repeat(8, 12.5%);
  -ms-grid-rows: (12.5%)[8];
      grid-template-rows: repeat(8, 12.5%);
}

.container-d {
  -ms-grid-column: 2;
  -ms-grid-column-span: 6;
  grid-column: 2 / 8;
  -ms-grid-row: 2;
  -ms-grid-row-span: 3;
  grid-row: 2 / 5;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container-d .card {
  position: relative;
  width: 375px;
  height: 300px;
  margin: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.container-d .card::before {
  content: "";
  background-image: linear-gradient(109.6deg, #530505 11.2%, black 91.1%);
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.94;
}

.container-d .card img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 320px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.container-d .card:hover img {
  left: 73%;
  height: 200px;
}

.container-d .card .content-d {
  position: relative;
  width: 60%;
  left: 20%;
  padding: 20px 20px 20px 40px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.container-d .card:hover .content-d {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.container-d .card .content-d h2 {
  color: white;
  text-transform: uppercase;
}

.container-d .card .content-d p {
  color: white;
  font-size: 1rem;
  position: relative;
}

.container-d .card .content-d a {
  position: relative;
  color: #111;
  background: white;
  display: inline-block;
  padding: 10px;
  margin-top: 40px;
  font-size: 0.75rem;
}

.container-e {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2 / 4;
  -ms-grid-row: 1;
  grid-row: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container-e h1 {
  color: #d40000;
  font-size: 2rem;
}

.container-e h1 b {
  color: black;
}

.review {
  -ms-grid-column: 2;
  -ms-grid-column-span: 6;
  grid-column: 2 / 8;
  -ms-grid-row: 7;
  -ms-grid-row-span: 1;
  grid-row: 7 / 8;
  text-align: center;
  padding: 0px 40px;
}

.review h1 {
  font-size: 2rem;
  padding-bottom: 15px;
}

.review h1 b {
  color: #d40000;
}

.review span {
  font-weight: bold;
}

.image-review {
  -ms-grid-column: 4;
  -ms-grid-column-span: 2;
  grid-column: 4 / 6;
  -ms-grid-row: 5;
  -ms-grid-row-span: 2;
  grid-row: 5 / 7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.image-review img {
  border-radius: 50%;
  width: 35%;
}

@media only screen and (max-width: 1024px) {
  .container-d .card {
    width: 280px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 220px;
  }
  .container-d .card:hover {
    height: 380px;
  }
  .container-d .card img {
    height: 220px;
  }
  .container-d .card:hover img {
    left: 50%;
    height: 200px;
  }
  .container-d .card .content-d {
    width: 100%;
    left: 0;
    padding: 40px;
  }
  .review h1 {
    padding-bottom: 20px;
    margin-top: -50px;
  }
}

@media screen and (min-height: 1366px) {
  .container-e {
    -ms-grid-column: 2;
    -ms-grid-column-span: 3;
    grid-column: 2 / 5;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

@media only screen and (max-width: 416px) {
  #shop {
    height: 1620px;
    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-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .container-d {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .image-review {
    margin-top: 20px;
  }
  .review {
    margin-top: 80px;
  }
}

#footer {
  width: 100%;
  height: 270px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% 25% 25% 25%;
      grid-template-columns: 25% 25% 25% 25%;
  -ms-grid-rows: 250px 20px;
      grid-template-rows: 250px 20px;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  place-items: center;
  box-shadow: 0px -1px 17px 0px rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0px -1px 17px 0px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0px -1px 17px 0px rgba(0, 0, 0, 0.7);
}

.address {
  font-size: 0.75rem;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1 / 5;
  -ms-grid-row: 2;
  grid-row: 2;
  place-items: center;
}

.about-us {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  font-size: 1rem;
  padding: 30px;
  padding-top: 0;
  text-align: left;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  padding-top: 30px;
}

.socmeds {
  -ms-grid-column: 4;
  grid-column: 4;
  -ms-grid-row: 1;
  grid-row: 1;
  font-size: 1.5rem;
  letter-spacing: 10px;
  cursor: pointer;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.contacts {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  font-size: 1rem;
  text-align: left;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  padding-top: 30px;
}

.legals {
  -ms-grid-column: 3;
  grid-column: 3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  font-size: 1rem;
  text-align: left;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  padding-top: 30px;
}

.legals ul li {
  list-style-type: none;
}

.legals ul li a {
  color: black;
}

#form {
  -ms-grid-column: 4;
  grid-column: 4;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  padding-top: 30px;
}

#email {
  font-size: 1rem;
  height: 32px;
  border-top-style: hidden;
  border-right-style: hidden;
  border-left-style: hidden;
  background-color: transparent;
}

#email:focus {
  outline: none;
}

.submit-btn {
  margin-top: 10px;
  font-size: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (max-width: 1024px) {
  #footer {
    height: 370px;
    -ms-grid-rows: 350px 20px;
        grid-template-rows: 350px 20px;
  }
}

@media only screen and (max-width: 416px) {
  #footer {
    height: 740px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .legals, #form, .contacts {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    text-align: center;
  }
  .about-us {
    text-align: center;
  }
  .socmeds {
    margin-top: 10px;
  }
}
/*# sourceMappingURL=style.css.map */