@import url(footer.css);


/* CSS Document */
* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  font-family: 'Henny Penny';
}

::-webkit-scrollbar {
  width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #9453a6;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #8b27a7;
}

/*Desktop Slider*/
@keyframes slide {
  0% {
    left: 0%;
  }

  9% {
    left: 0%;
  }

  18% {
    left: -100%;
  }

  27% {
    left: -100%;
  }

  36% {
    left: -200%;
  }

  45% {
    left: -200%;
  }

  54% {
    left: -300%;
  }

  63% {
    left: -300%;
  }

  72% {
    left: -400%;
  }

  /* 
    81% {
        left: -400%;
    }

    90% {
        left: -500%;
    }

    100% {
        left: -500%;
    } */
}

#slider {
  overflow: hidden;
  position: relative;
  bottom: 27px;
}

#slider figure {
  position: relative;
  width: 600%;
  margin: 0px;
  left: 0px;
  text-align: left;
  animation: 30s slide infinite;
}

#slider figure img {
  float: left;
  width: 16.6666%;

  height: 50%;
}

/*mobile-slider*/
.mobile-slider img {
  display: none;
  width: 100%;
  height: auto;
}

/*Timer*/
.timer-h2 {
  width: 40%;
  margin: 0 auto;
  font-family: 'roboto';
  font-size: 2rem;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  font-family: 'Henny Penny';

}

.coming-soon {

  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 5px;
}

.countdown {
  display: flex;
  justify-content: center;
  text-align: center;
  height: 130px;
  width: 23.3%;
  margin: auto;
  background-color: #FDF8E5;

}

.day,
.hour,
.minute,
.second {
  font-size: 3rem;
  margin-top: 10px
}

.timer-h3 {
  position: relative;
  bottom: 60px;
  padding: 10px;
}

.container-day,
.container-hour,
.container-minute,
.container-second {
  border: 5px solid black;
}

/*Info*/
.info {
  width: 60%;

  margin: auto;
  background-color: #f2cc0f;
  border-radius: 20px;
}

.logo {
  float: left;
  width: 80px;
  height: 80px;
}

.info h2 {
  text-align: center;
  font-size: 32px;
}

.info p {
  font-family: "Roboto";
  text-align: justify;
  font-size: 18px;
  line-height: 1.5;
  padding: 30px;
}

/* .main-body {
  background-color: #9453a6;
  width: 80%;
  margin: auto;
} */

/*Slider*/
#h1_partners {
  text-align: center;
}

.nav {
  height: 80px;
  width: 100%;
  background-color: #f2cc0f;
  position: relative;
}

.nav>.nav-header {
  display: inline;
}

.nav>.nav-header>.nav-title {
  display: inline-block;
  font-size: 22px;
  color: #fff;
  font-weight: 550;
  font-family: Arial, Helvetica, sans-serif;
  padding: 10px 10px 10px 10px;
}

.nav>.nav-btn {
  display: none;
}

nav ul li a {
  color: black;
  font-size: 17px;
  padding: 7px 13px;
  border-radius: 3px;
  text-transform: uppercase;
}

.nav>.nav-links {
  display: inline;
  float: left;
  font-size: 18px;
  padding: 7px 13px;
}

.nav>.nav-links>ul li a {
  display: block;
  padding: 7px 13px;
  color: black;
  /* line-height: 40px; */
  font-size: 17px;
  text-decoration: none;
  text-transform: uppercase;
}

.nav>.nav-links>ul li a:hover {
  background: #9453a6;
  color: white;
}

.nav>.nav-links>ul {
  padding: 0;
  margin-top: 5px;
  list-style: none;
  position: relative;
}

.nav>.nav-links>ul li {
  display: inline-block;
  background-color: transparent;
}

.nav>.nav-links>ul li:hover {
  background-color: transparent;
  border-radius: 5px;
}

.nav>#nav-check {
  display: none;
}

.nav .nav-links ul a.icon {
  margin-left: 80px;
  margin-right: 10px;
}

.nav .nav-links ul a i {
  background-color: #fff;
  border-radius: 50px;
  padding: 7px;
  margin-left: 5px;
}

@media (max-width: 750px) {
  .nav>.nav-btn {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
  }

  .nav>.nav-btn>label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }

  .nav>.nav-btn>label:hover,
  .nav #nav-check:checked~.nav-btn>label {
    background-color: rgba(0, 0, 0, 0.3);
  }

  .nav>.nav-btn>label>span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #eee;
  }

  .nav>.nav-links {
    position: revert;
    display: block;
    width: 100%;
    background-color: #FDF8E5;
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 50px;
    left: 0px;
  }

  .nav>.nav-links>ul li a {
    display: block;
    width: 100%;
  }

  /*   */

  .nav>.nav-links>ul li {
    display: block;
    margin-bottom: 20px;
    padding: 0;
    background-color: #FDF8E5;
  }

  .nav>.nav-links>ul li a {
    margin-left: 40%;
  }

  .nav .nav-links ul a.icon {
    margin-left: 33%;
  }

  /*   */
  .nav>#nav-check:not(:checked)~.nav-links {
    height: 0px;
  }

  .nav>#nav-check:checked~.nav-links {
    height: calc(100vh - 50px);
    overflow-y: auto;
  }
}

/*********************************************************************************/
body {
  margin: 0px;
  padding: 0px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  height: 100vh;
  background-color: #FDF8E5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box {
  width: 350px;
  height: 610px;
  background-color: #9554a6;
  border-radius: 10px;
  box-shadow: 2px 10px 12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  margin: 20px 10px;
}

.model {
  height: 350px;
  max-height: 100%;
  max-width: 100%;
}

.details {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
}

.details p {
  font-family: calibri;
  font-weight: bold;
  color: white;
  text-align: center;
  margin-top: 20px;
  font-size: 20px;

}

.marvel {
  color: #32323e;
  font-weight: bold;
  letter-spacing: 2px;
  font-family: bebas kai;
  font-size: 25px;
}

.mask-logo {
  height: 60px;
}

.box:hover {
  background-color: #8cbf3f;
  transform-style: preserve-3d;
  transform: scale(1.02);
  transition: all ease 0.3s;
}

.box:hover .marvel {
  color: #c0292b;
  transition: all ease 0.5s;
}

/*--responsive for mobile phone--*/
@media (max-width: 720px) {
  .box {
    width: 94%;
    height: 500px;
  }

  .model {
    height: 250px;
  }

  .details p {
    font-size: 16px;
    width: 250px;
  }

  .mobile-slider img {
    display: flex;
    width: 100%;
    height: auto;
  }

  #slider {
    display: none;
  }

  ::-webkit-scrollbar {
    display: none;
  }

  .info {
    width: 100%;
  }
}