* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}



.flex {
  display: flex;
}

.flex1 {
  display: flex;
  justify-content: space-between;
}

/*----------header--------*/
nav {
  height: 60vh;
  line-height: 10vh;
  background-image: url(../image/planofundo.jpg);
  background-size: cover;
  text-align: center;
  color: yellow;
}

.logo img {
  margin-top: 20px;
}

nav ul {
  width: 100%;
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav li a {
  text-decoration: none;
  color: #f7ff06;
  text-transform: capitalize;
  transition: 0.5s;
}

nav li a:hover {
  color: #37B234;
}

.media_button i {
  font-size: 20px;
  display: none;
}

.account i {
  color: #37B234;
  margin: 30px 20px 0 0;
}

@media only screen and (max-width:768px) {
  .main_list {
    overflow: hidden;
    height: 0;
    width: 100%;
    position: absolute;
    left: 0;
    top: 10%;
    padding: 0 0 0 40px;
    transition: 0.5s;
  }

  nav .show_list {
    height: 250px;
    background: rgb(96, 255, 5);
    transform: none;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li a {
    line-height: 40px;
    display: table;
  }

  .media_button i {
    display: block;
    margin-top: 20px;
    background: #e81111;
    padding: 10px;
    color: white;
    cursor: pointer;
  }

  .account {
    display: none;
  }
}

/*----------header--------*/
/*----------home--------*/
.left {
  width: 35%;
}

.right {
  width: 65%;
  overflow-x: hidden;
}

button {
  padding: 15px 50px;
  margin: 20px 20px 0 0;
  border-radius: 50px;
  border: none;
  background: #37B234;
  color: white;
}

.btn1 {
  border: 2px solid white;
}

.btn2 {
  background: white;
  color: rgb(244, 8, 8);
}

.home {
  position: relative;
  color: white;
}

.home .left {
  padding: 150px 0 0 65px;
  margin-top: 50px;
}

.home .right {
  margin-top: 100px;
}

.home::after {
  content: '';
  position: absolute;
  top: 0;
  background-image: url('../image/slide.png');
  background-size: contain;
  background-repeat: no-repeat;
  height: 120vh;
  width: 100%;
  z-index: -1;
}

.time_box {
  margin: 0 50px 0 0;
  border: 1px solid white;
  padding: 20px;
  border-radius: 10px;
}

.time_box h1 {
  font-size: 50px;
  margin-left: 10px;
}

.time_box span {
  font-size: 14px;
  margin-left: 15px;
}

.home h2 {
  font-size: 50px;
  margin: 20px 0 20px 0;
}

/*----------home--------*/
/*----------latest--------*/
.top {
  margin-top: 100px;
}

.mtop {
  margin-top: 50px;
}

.heading {
  text-align: center;
  position: relative;
  margin-bottom: 120px;
}

.heading h1 {
  font-size: 40px;
  font-weight: 400;
}

.heading button {
  padding: 15px 80px;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 42%;
  font-size: 15px;
}

.heading .lines {
  position: relative;
  width: 100%;
}

.heading .line {
  border: 1px solid #ff0101;
  width: 45%;
  height: 3px;
  border-left: none;
  position: absolute;
  left: 0;
  top: 43px;
  z-index: 1;
}

.heading .line i {
  position: absolute;
  right: -1px;
  top: -7px;
  color: rgba(8, 28, 255, 0.66);
}

.heading .line2 {
  right: 0;
  left: 59%;
  border-radius: none;
}

.heading .line2 i {
  left: -100%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.latest .scontainer {
  padding: 50px;
  margin-top: auto;
  text-align: center;
}

.latest .box {
  background: #ffee01;
  padding: 30px;
  border: 4px solid #fc5603;
  border-radius: 10px;
  transition: 0.5s;
}

.latest .box:hover {
  border: 1px solid #37B234;
  cursor: pointer;
}

.latest .img {
  position: relative;
}

.latest .img .flex1 {
  width: 100%;
  position: absolute;
  top: 0;
}

.latest .img label {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: rgb(13, 0, 0);
  background: #0c85c6;
  text-align: center;
}

.latest .img i {
  color: #d40606;
  font-size: 20px;
  line-height: 50px;
}

.latest .detalhes h2 {
  font-weight: 400;
  color: #37B234;
  margin: 20px 0 20px 0;
}

.latest .detalhes h2 span {
  text-decoration: line-through;
  font-size: 14px;
  color: grey;
}

.latest .detalhes button {
  margin: 0;
  margin-top: 20px;
}

/*----------latest--------*/
/*----------slider--------*/
ul {
  list-style: none;
}

.slider {
  background-color: cadetblue;
  padding: 80px 0 0 0;
  color: rgb(5, 0, 0);
}

.slider p {
  font-size: 15px;
}

.slider h1 {
  font-size: 50px;
  font-weight: 400;
  color: brown;
  margin: 20px 0 20px 0;
}

.slider ul li {
  font-size: 22px;
  opacity: 0.8;
  margin-top: 15px;
  white-space: 5px;
}

.slider h2 {
  font-size: 30px;
  font-weight: 400;
  margin: 40px 0 30px 0;
}

.owl-nav .owl-prev i,
.owl-nav .owl-next i {
  position: absolute;
  top: 35%;
  cursor: pointer;
  font-size: 50px;
}

.owl-nav .owl-prev i {
  left: -33px;
}

.owl-nav .owl-next i {
  right: -33px;
}

.owl-nav .owl-prev i:hover,
.owl-nav .owl-next i:hover {
  color: #f3eb05;
}

/*----------slider--------*/
/*----------Popular--------*/
.Popular {
  color: rgb(79, 5, 253);
}

.Popular.latest {
  background: none;
}

/*----------Popular--------*/
/*----------wrapper--------*/
.wrapper {
  background-image: url("../image/back.jpg");
  background-size: cover;
  height: 100vh;
  width: 100%;
  text-align: center;
  position: relative;
}

.wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(55, 179, 52, 0.83);
}

.wrapper .scontainer {
  position: relative;
  z-index: 1;
}

.wrapper .text {
  padding: 100px 50px;
  color: white;
}

.wrapper h1 {
  font-size: 40px;
  margin: 20px 0 20px 0;
  font-weight: 400;
}

.wrapper h3 {
  font-size: 25px;
  margin-bottom: 30px;
  font-weight: 400;
}


/*----------wrapper--------*/
/*----------Assesories--------*/

.Assesories {
  margin-top: 25%;
}

/*----------Assesories--------*/
/*----------shipping--------*/
.shipping {
  padding: 50px;
  background: #fff201;
  color: rgb(0, 0, 0);
}

.shipping .img {
  border: 2px solid rgb(247, 2, 2);
  border-radius: 50%;
  text-align: center;
  margin-right: 20px;
  padding: 30px;
}

.shipping i {
  font-size: 20px;
}

.shipping h3 {
  font-weight: 400;
  margin-bottom: 10px;
}

.shipping p {
  opacity: 0.8;
  line-height: 20px;
}

/*----------shipping--------*/
/*----------footer--------*/
footer {
  background: rgb(87, 139, 234);
}

footer .scontainer {
  padding: 70px 50px;
  color: rgb(5, 4, 0);
}

footer h3 {
  margin: 30px 0 20px 0;
}

footer h1 {
  color: rgb(4, 0, 0);
  margin: 15px 0 10px 0;
}

footer li,
footer p {
  margin: 15px 0 10px 0;
  color: rgb(0, 0, 0);
}

footer input {
  padding: 10px;
  background: none;
  border: none;
}

footer .input {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

footer .input i {
  margin: 15px;
}

footer .social_media i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solid grey;
  text-align: center;
  margin-top: 20px;
  margin-right: 20px;
  color: rgb(0, 0, 0);
}

/*----------footer--------*/
@media only screen and (max-width:768px) {

  /*----------home--------*/
  .home .content {
    flex-direction: column;
  }

  .left, .right {
    width: 100%;
  }

  .home .left {
    padding: 50px 100px 50px 50px;
  }

  .home::after {
    background-size: cover;
    height: 70vh;
  }

  .ani_image img {
    width: 100%;
    height: 100%;
  }

  /*----------home--------*/
  /*----------latest--------*/
  .heading button {
    left: 30%;
  }

  .heading .line {
    display: none;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .latest .scontainer {
    padding: 0;
  }

  .latest .box {
    padding: 10px;
  }

  /*----------latest--------*/
  /*----------slider--------*/
  .slider .item {
    flex-direction: column;
    flex-direction: column-reverse;
  }

  /*----------slider--------*/
  .shipping .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (max-width:511px) {
  .home::after {
    height: 100vh;
  }

  .time_box {
    display: none;
  }

  .grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .heading h1 {
    font-size: 35px;
  }

  .heading button {
    left: 20%;
  }

  footer .scontainer,
  .latest .scontainer {
    padding: 0;
  }

  .shipping {
    padding: 50px 0 50px 0;
  }
}