@import url("colors.css");
@import url("fonts.css");
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Shabnam";
  height: 100%;
}

body main {
  background: #016342;
  background: radial-gradient(circle, rgba(1, 99, 66, 0.05) 2%, rgba(255, 255, 255, 0) 100%);
  -webkit-box-sizing: cover;
          box-sizing: cover;
}

body main .slider {
  margin: 1rem 1rem 0;
}

body main .slider .carousel {
  -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2) !important;
          box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2) !important;
  border-radius: 20px;
  overflow: hidden;
}

body main .slider .carousel .carousel-indicators {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  right: unset !important;
  margin-left: 3%;
}

body main .slider .carousel .carousel-indicators button {
  width: 0.5rem !important;
  height: 0.5rem !important;
  border-radius: 50%;
  background-color: var(--color-white) !important;
  opacity: 100% !important;
  border: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

body main .slider .carousel .carousel-indicators .active {
  background-color: var(--color-main-green) !important;
  width: 1rem !important;
  border-radius: 5px;
}

body main .search-box {
  position: relative;
  margin: 0 1rem 2rem;
}

body main .search-box form {
  position: relative;
  top: -1.5rem;
  width: 100%;
  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;
}

body main .search-box form div {
  width: 60%;
  position: relative;
}

body main .search-box form div input {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 0.7rem 3rem 0.7rem 1rem;
  font-family: 'Shabnam';
  -webkit-box-shadow: 0 0 2rem 0.5rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 2rem 0.5rem rgba(0, 0, 0, 0.16);
}

body main .search-box form div input:focus-visible {
  outline: none !important;
  border: none !important;
}

body main .search-box form div button {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background-color: transparent;
  border: none;
  color: var(--color-main-green);
  font-size: 1.2em;
}

body main .search-box form div button:hover {
  color: var(--color-black);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

body main .boxes .title-section {
  text-align: center;
  font-family: "Shabnam-bold";
  font-size: 1.7em;
  color: var(--color-main-green);
}

body main .boxes .desc-section {
  text-align: center;
  font-family: "Shabnam";
  font-size: 1em;
  color: var(--color-gray);
}

body main .boxes .row {
  margin-top: 1rem;
}

body main .boxes .box {
  width: 78%;
  margin: auto;
  background-color: var(--color-white);
  -webkit-box-shadow: 0 0 2rem 0.5rem rgba(0, 0, 0, 0.179);
          box-shadow: 0 0 2rem 0.5rem rgba(0, 0, 0, 0.179);
  border-radius: 20px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

body main .boxes .box .image-box {
  position: relative;
  top: -3rem;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  height: 15rem;
  background-color: green;
  overflow: hidden;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 1rem 0.5rem rgba(0, 0, 0, 0.238);
          box-shadow: 0 0 1rem 0.5rem rgba(0, 0, 0, 0.238);
}

body main .boxes .box .image-box img {
  width: 300%;
}

body main .boxes .box h5 {
  margin-top: -1.5rem;
  text-align: center;
}

body main .boxes .box h5 a {
  text-decoration: none;
  color: var(--color-black);
  font-family: "Shabnam-bold";
  font-size: 1em;
}

body main .boxes .box h5 a:hover {
  color: var(--color-main-green);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

body main .boxes .box h6 {
  text-align: center;
}

body main .boxes .box .footer {
  width: 80%;
  margin: auto;
  padding: 2rem 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-item-align: center;
      align-self: center;
}

body main .boxes .box .footer a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.9em;
  background-color: var(--color-main-green);
  color: var(--color-white);
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
}

body main .boxes .box .footer a:hover {
  background-color: var(--color-main-green-hover);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

body main .best {
  margin: 3rem 1rem 3rem;
}

body main .best .col-md-3 {
  margin-top: 7rem;
}

body main .best .threedbox {
  margin-top: 3rem;
  text-align: center;
}

body main .best .threedbox a {
  background-color: var(--color-main-green);
  color: var(--color-white);
  font-family: "Shabnam";
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 7px;
}

body main .best .threedbox a i {
  position: relative;
  top: 0.25rem;
  font-size: 1.2em;
  margin-left: 0.5rem;
}

body main .best .threedbox a:hover {
  background-color: var(--color-main-green-hover);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

body main .best-selling {
  margin-top: 10rem;
}

body main .best-selling .woods {
  margin-top: 7rem;
}

body main .best-selling .woods .box {
  margin-bottom: 7rem;
}

body main .best-selling .threedbox {
  margin-top: -4rem;
  text-align: center;
}

body main .best-selling .threedbox a {
  color: var(--color-main-green);
  font-family: "Shabnam";
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
}

body main .best-selling .threedbox a i {
  position: relative;
  top: 0.25rem;
  font-size: 1.2em;
  margin-left: 0.5rem;
}

body main .best-selling .threedbox a:hover {
  color: var(--color-main-green-hover);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

body main .blog {
  margin-top: 7rem;
}

body main .blog .posts {
  margin-top: 5rem;
}

body main .blog .posts .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: space-evenly !important;
      -ms-flex-pack: space-evenly !important;
          justify-content: space-evenly !important;
}

body main .blog .posts .post {
  -webkit-box-shadow: 0 0 30px 1px rgba(0, 0, 0, 0.107) !important;
          box-shadow: 0 0 30px 1px rgba(0, 0, 0, 0.107) !important;
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 0 !important;
  overflow: hidden;
  text-align: center;
  margin-bottom: 3rem;
}

body main .blog .posts .post img {
  width: 100%;
}

body main .blog .posts .post h2 {
  margin-top: 1rem;
  font-size: 1.3em;
  font-family: "Shabnam-bold";
}

body main .blog .posts .post p {
  text-align: justify;
  padding: 1rem 2rem;
  color: var(--color-gray);
}

body main .blog .posts .post .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 2rem;
}

body main .blog .posts .post .footer a {
  background-color: var(--color-main-green);
  color: var(--color-white);
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
}

body main .blog .posts .post .footer a:hover {
  background-color: var(--color-main-green-hover);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

body main .blog .posts .post .footer p {
  position: relative;
  top: 0.3rem;
  direction: rtl;
  font-weight: bold;
  padding: 0 !important;
  text-align: right;
  color: var(--color-black);
}

body main .blog .posts .post .footer p i {
  position: relative;
  top: 0.2rem;
  font-size: 1.3em;
  color: var(--color-yellow);
  margin-left: 0.5rem;
}

body main .blog .posts .threedbox {
  margin-top: 0rem;
  text-align: center;
}

body main .blog .posts .threedbox a {
  color: var(--color-main-green);
  font-family: "Shabnam";
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
}

body main .blog .posts .threedbox a i {
  position: relative;
  top: 0.25rem;
  font-size: 1.2em;
  margin-left: 0.5rem;
}

body main .blog .posts .threedbox a:hover {
  color: var(--color-main-green-hover);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

body main .instagram {
  margin-top: 7rem;
}

body main .instagram .row {
  -webkit-box-pack: space-evenly !important;
      -ms-flex-pack: space-evenly !important;
          justify-content: space-evenly !important;
}

body main .instagram a {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 5rem;
}

body main .instagram a .box {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
}

body main .instagram a .box:hover {
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

body main .instagram a .box:hover img {
  -webkit-filter: brightness(60%);
          filter: brightness(60%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

body main .instagram .woods {
  margin-top: 10rem;
  text-align: center;
}

body main .instagram .woods .image-box {
  position: relative;
  width: 80%;
  height: 0;
  padding-bottom: 80%;
  color: var(--color-black) !important;
}

body main .instagram .woods .image-box img {
  width: 100%;
}

body main .instagram .woods .caption {
  margin-top: -1.5rem;
  padding: 0rem 2rem;
  text-align: justify;
  font-size: 0.9em;
  color: var(--color-gray);
}

body main .instagram .woods .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  color: var(--color-gray);
  padding: 0.5rem 0rem 2rem !important;
}

body main .instagram .woods .footer i {
  font-size: 1.5em;
}

body main .instagram .woods .footer .like {
  color: var(--color-red);
}

body main .instagram .threedbox {
  margin-top: -2rem;
  text-align: center;
}

body main .instagram .threedbox a {
  background-color: var(--color-main-green);
  color: var(--color-white);
  font-family: "Shabnam";
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 7px;
}

body main .instagram .threedbox a i {
  position: relative;
  top: 0.25rem;
  font-size: 1.2em;
  margin-left: 0.5rem;
}

body main .instagram .threedbox a:hover {
  background-color: var(--color-main-green-hover);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

body main .comments {
  margin-top: 7rem;
  padding: 0 3rem;
}

body main .comments .carousel-item {
  margin-top: 2rem;
  padding: 1rem 2rem;
  width: 100%;
  border-radius: 10px;
}

body main .comments .carousel-item .comment {
  padding: 2rem 5rem;
  -webkit-box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.156);
          box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.156);
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

body main .comments .carousel-item .comment .footer {
  border-top: 1px solid var(--color-gray);
  margin-top: 2rem !important;
  padding-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body main .comments .carousel-item .comment .footer .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body main .comments .carousel-item .comment .footer .right img {
  width: 3.5rem;
  border-radius: 50%;
  margin-left: 1rem;
}

body main .comments .carousel-item .comment .footer .right .name {
  position: relative;
  top: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body main .comments .carousel-item .comment .footer .right .name h4 {
  font-family: "Shabnam-bold";
  font-size: 1em;
}

body main .comments .carousel-item .comment .footer .right .name h5 {
  color: var(--color-gray);
  font-size: 0.8em;
  font-family: "Shabnam";
}

body main .comments .carousel-item .comment .footer .left i {
  position: relative;
  top: 0.15rem;
  color: var(--color-yellow);
  font-size: 1.3em;
}

body main .comments .carousel-item .comment .footer .left span {
  font-weight: bold;
}

body main .comments .carousel-control-prev, body main .comments .carousel-control-next {
  opacity: 1 !important;
  width: 6%;
  bottom: unset;
  top: 50%;
}

body main .comments .carousel-control-prev i, body main .comments .carousel-control-next i {
  padding: 0.5rem;
  border-radius: 7px;
  background-color: var(--color-main-green);
  font-size: 1.5em;
}

@-webkit-keyframes transitionToUp {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
}

@keyframes transitionToUp {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
}

@media only screen and (max-width: 768px) {
  body .comments {
    padding: 0 0rem !important;
  }
  body .comments .carousel-item {
    margin-top: 2rem;
    padding: 1rem 0rem !important;
  }
  body .comments .carousel-item .comment {
    padding: 2rem 1rem !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  body .comments .carousel-control-prev, body .comments .carousel-control-next {
    opacity: 1 !important;
    width: 80% !important;
    bottom: -1rem !important;
    top: unset !important;
  }
  body .comments .carousel-control-prev i, body .comments .carousel-control-next i {
    padding: 0.5rem;
    border-radius: 7px;
    background-color: var(--color-main-green);
    font-size: 1.5em;
  }
}
/*# sourceMappingURL=home.css.map */