/*
0-600px:        Phone
600-991px:      Tablet Portrait
992-1200px:     Tablet Landscape
[1200-1800px:]  is where our normal styles apply
1800px + :      Big Desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/
/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/
html,
body {
  height: 100%;
  background-color: #ffffff;
  color: #ffffff;
  font-family: "Onest", sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #ffffff;
  font-family: "Onest", sans-serif;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 15px;
  color: #ffffff;
  font-family: "Onest", sans-serif;
  line-height: 1.65;
  margin-bottom: 16px;
}

img {
  max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

a:hover,
a:focus,
a:-webkit-any-link {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

.container {
  position: relative;
  z-index: 9;
}

@media (min-width: 1450px) {
  .container {
    max-width: 1170px;
  }
}
.row > * {
  padding-right: calc(var(--bs-gutter-x) * .6);
  padding-left: calc(var(--bs-gutter-x) * .6);
}

/*---------------------
   Helper CSS
 -----------------------*/
.button {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 25.5px;
  background: #810EDD;
  padding: 10px 16px;
  border-radius: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
@media only screen and (max-width: 767px) {
  .button {
    padding: 8px 12px;
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .button .desktop-icon {
    display: none;
  }
}
.button .mobile-icon {
  display: none;
}
@media only screen and (max-width: 767px) {
  .button .mobile-icon {
    display: block;
  }
}
.button:hover {
  color: #fff;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transform: scale(0);
  transition: 0.6s;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 10px;
  scrollbar-width: none;
}
.popup::-webkit-scrollbar {
  width: 6px;
  display: none;
}
.popup::-webkit-scrollbar-track {
  background: transparent;
}
.popup::-webkit-scrollbar-thumb {
  background: #d2ccc6;
  border-radius: 10px;
}
.popup .popup-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 30px;
  cursor: pointer;
  top: 36px;
  font-size: 14px;
  color: #810EDD;
  padding: 5px;
  font-weight: 700;
}
.popup.show-popup {
  transform: scale(1);
}
.popup__container {
  padding: 70px 60px;
  border-radius: 30px;
  background: #fff;
  max-width: 970px;
  width: 100%;
  position: relative;
  margin: 20px auto;
}
@media only screen and (max-width: 767px) {
  .popup__container {
    padding: 30px;
    margin: 10px auto;
  }
}
.popup__container h3 {
  font-size: 26px;
  color: #272728;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 41px;
  padding-right: 50px;
}
@media only screen and (max-width: 767px) {
  .popup__container h3 {
    font-size: 20px;
  }
}
.popup__container__text p {
  font-size: 17px;
  color: #21261D;
  line-height: 27px;
  margin-bottom: 0;
}
.popup__container__form p {
  color: #09213D;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 14px;
}
.popup__container__form input, .popup__container__form textarea {
  border: 1px solid #E1E1E1;
  background: #FAFBFC;
  height: 64px;
  border-radius: 16px;
  font-size: 16px;
  color: #999999;
  padding: 20px 25px;
  margin-bottom: 25px;
  width: 100%;
}
.popup__container__form textarea {
  margin-bottom: 35px;
  padding: 24px 26px;
  height: 180px;
}
.popup__container__form__buttons {
  display: flex;
  gap: 30px;
}
@media only screen and (max-width: 575px) {
  .popup__container__form__buttons {
    flex-direction: column;
  }
}
.popup__container__form__buttons button {
  font-size: 16px;
  color: #272728;
  font-weight: 700;
  padding: 16px;
  border: 1px solid #E1E1E1;
  border-radius: 110px;
  width: 100%;
}
.popup__container__form__buttons button.submit {
  color: #fff;
  background: #810EDD;
  border-color: #810EDD;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.27);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
}
.popup-overlay.show-popup-overlay {
  opacity: 1;
  visibility: visible;
}

/*----------------------------------------------
  Header
-----------------------------------------------*/
.header {
  padding-top: 40px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .header {
    padding-top: 20px;
  }
}
.header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  padding: 12px 0;
  box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
}
.header .header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*----------------------------------------------
  Hero
-----------------------------------------------*/
.hero {
  padding-top: 80px;
  padding-bottom: 40px;
  overflow: hidden;
}
.hero .hero_text {
  padding-top: 60px;
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 991px) {
  .hero .hero_text {
    padding-top: 0;
    margin-bottom: 50px;
  }
}
.hero .hero_text h2 {
  font-size: 64px;
  font-weight: 700;
  line-height: 76px;
  color: #21261D;
  margin-bottom: 25px;
}
@media only screen and (max-width: 575px) {
  .hero .hero_text h2 {
    font-size: 48px;
    line-height: 58px;
  }
}
.hero .hero_text p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #21261D;
}
.hero .hero_text .hero_text_logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
.hero .hero_text .hero_text_rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero .hero_text .hero_text_rating span {
  color: #7B8176;
  font-size: 14px;
  line-height: 22px;
}
.hero .hero_img {
  height: 637px;
  width: 351px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .hero .hero_img {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 575px) {
  .hero .hero_img {
    transform: translateX(-26px) !important;
  }
}
.hero .hero_img .basket {
  position: absolute;
  left: -41px;
  top: 26%;
  animation: basketMove 2s linear infinite alternate;
}
.hero .hero_img .tomato {
  position: absolute;
  right: -40px;
  bottom: 30%;
  transition: all 0.3s;
  animation: laptopMove 1s linear infinite alternate;
}
.hero .hero_img .variable {
  position: absolute;
  right: -26px;
  top: 23%;
  z-index: 1;
  animation: basketMove 2s linear infinite alternate;
}
.hero .hero_img .bars {
  position: absolute;
  right: -25px;
  top: -10px;
}
.hero .hero_img .arrows {
  position: absolute;
  left: -115px;
  bottom: 150px;
  z-index: -1;
}
@media only screen and (max-width: 575px) {
  .hero .hero_img .arrows {
    left: 0;
  }
}

.logos {
  background: #810EDD;
  padding-top: 52px;
  padding-bottom: 65px;
}
.logos .logos_text h6 {
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 30px;
  text-align: center;
}
.logos .logos_text .logos_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  .logos .logos_text .logos_inner {
    gap: 60px;
  }
}
@media only screen and (max-width: 575px) {
  .logos .logos_text .logos_inner {
    gap: 30px;
  }
}

@keyframes basketMove {
  0% {
    top: 20%;
  }
  100% {
    top: 30%;
  }
}
@keyframes laptopMove {
  0% {
    bottom: 25%;
  }
  100% {
    bottom: 30%;
  }
}
/*---------------------
  Nearby
-----------------------*/
.nearby-place {
  padding-top: 220px;
  padding-bottom: 110px;
  overflow: hidden;
}
@media (min-width: 1450px) {
  .nearby-place .container {
    max-width: 1000px;
  }
}
.nearby-place__item {
  margin-bottom: 220px;
}
.nearby-place__item:last-child {
  margin-bottom: 0;
}
.nearby-place__item__img {
  max-width: 424px;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .nearby-place__item__img {
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
.nearby-place__item__img__inner {
  position: absolute;
  left: 64px;
  bottom: -5%;
  z-index: 1;
}
@media only screen and (max-width: 575px) {
  .nearby-place__item__img__inner {
    left: 0;
    right: 0;
    width: 293px;
    margin: 0 auto;
    transform: translateX(-25px);
  }
}
.nearby-place__item__img__inner--weekly .weekly-mike {
  position: absolute;
  right: -77px;
  bottom: 10%;
  animation: weeklyMike 2s linear infinite alternate;
}
.nearby-place__item__img__inner--weekly .weekly-dizzy {
  position: absolute;
  left: -16px;
  top: 206px;
  animation: weeklyDizzy 2s linear infinite alternate;
}
@media only screen and (max-width: 575px) {
  .nearby-place__item__img__inner--weekly .weekly-dizzy {
    left: 24px;
  }
}
.nearby-place__item__img__inner--details {
  bottom: -8%;
}
.nearby-place__item__img__inner--details .details-basket {
  position: absolute;
  left: -10px;
  top: 43%;
  animation: detailsBasket 2s linear infinite alternate;
}
.nearby-place__item__img__inner--details .details-cart {
  position: absolute;
  right: -31px;
  bottom: 18%;
  z-index: -1;
}
.nearby-place__item__img__inner--nearby {
  bottom: -8%;
}
.nearby-place__item__img__inner--nearby .nearby-dizzy {
  position: absolute;
  right: -40px;
  top: 31%;
  animation: nearbyDizzy 3s linear infinite alternate;
}
@media only screen and (max-width: 575px) {
  .nearby-place__item__img__inner--nearby .nearby-dizzy {
    right: -20px;
  }
}
.nearby-place__item__img__inner--nearby .nearby-cart {
  position: absolute;
  right: -47px;
  bottom: 17%;
  z-index: -1;
}
@media only screen and (max-width: 575px) {
  .nearby-place__item__img__inner--nearby .nearby-cart {
    right: -26px;
  }
}
.nearby-place__item__img__inner--nearby .nearby-location {
  position: absolute;
  left: 5px;
  top: 50%;
  animation: nearbyLocation 2s linear infinite alternate;
}
.nearby-place__item__img__inner .wishlist-cart {
  position: absolute;
  left: -20px;
  top: 30%;
  z-index: -1;
}
.nearby-place__item__img__inner .wishlist-dizzy {
  position: absolute;
  left: 32px;
  bottom: 7%;
}
.nearby-place__item__img__inner .wishlist {
  position: absolute;
  right: -35px;
  bottom: 28%;
  animation: wishlist 3s linear infinite alternate;
}
.nearby-place__item__text {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .nearby-place__item__text {
    align-items: center;
    text-align: center;
  }
}
.nearby-place__item__text h1 {
  color: #21261D;
  font-size: 36px;
  margin: 20px 0px;
}
.nearby-place__item__text h2 {
  font-size: 48px;
  font-weight: 700;
  color: #21261D;
  margin-bottom: 24px;
  line-height: 57px;
}
.nearby-place__item__text h4 {
/*  font-size: 48px;*/
  font-weight: 700;
  color: #21261D;
  margin-bottom: 24px;
  line-height: 57px;
}
.nearby-place__item__text p {
  font-size: 19px;
  font-weight: 600;
  color: #21261D;
  margin-bottom: 0;
  line-height: 30px;
}
.nearby-place__item__text ul {
  font-size: 19px;
  font-weight: 600;
  color: #21261D;
  margin-bottom: 0;
  line-height: 30px;
}
.nearby-place__item__text ul li{
  list-style-type: none;
  padding-left: 25px;
}

@media only screen and (max-width: 575px) {
  .order-mobile-1 {
    order: 1 !important;
  }

  .order-mobile-2 {
    order: 2 !important;
  }
}
@keyframes weeklyMike {
  0% {
    bottom: 10%;
  }
  100% {
    bottom: 20%;
  }
}
@keyframes weeklyDizzy {
  0% {
    top: 206px;
  }
  100% {
    top: 230px;
  }
}
@keyframes nearbyLocation {
  0% {
    top: 32%;
  }
  100% {
    top: 45%;
  }
}
@keyframes nearbyDizzy {
  0% {
    top: 31%;
  }
  100% {
    top: 47%;
  }
}
@keyframes wishlist {
  0% {
    bottom: 28%;
  }
  100% {
    bottom: 35%;
  }
}
@keyframes detailsBasket {
  0% {
    top: 43%;
  }
  100% {
    top: 50%;
  }
}
/*---------------------
  Footer
-----------------------*/
.footer {
  background: #080E03;
  padding-top: 95px;
  overflow: hidden;
}
.footer__about p {
  font-size: 16px;
  line-height: 25.6px;
  color: #A1A1A1;
  margin-top: 30px;
  margin-bottom: 65px;
}
.footer__about__logos {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer__features {
  margin-bottom: 65px;
  margin-top: 60px;
}
@media only screen and (max-width: 991px) {
  .footer__features {
    margin-bottom: 0;
    margin-top: 40px;
  }
}
.footer__features li {
  list-style: none;
  margin-bottom: 20px;
}
.footer__features li:last-child {
  margin-bottom: 0;
}
.footer__features li a {
  font-size: 15px;
  line-height: 24px;
  color: #A1A1A1;
}
.footer__social {
  margin-bottom: 65px;
  margin-top: 60px;
}
@media only screen and (max-width: 991px) {
  .footer__social {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}
.footer__social p {
  font-size: 15px;
  line-height: 24px;
  color: #A1A1A1;
}
.footer__social__lists {
  display: flex;
  align-items: center;
  gap: 40px;
}
.footer__social__lists a {
  color: #fff;
}
.footer__social__lists a i {
  font-size: 22px;
}
.footer__arrow {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
.footer__arrow span {
  color: #fff;
  font-size: 15px;
  line-height: 26px;
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media only screen and (max-width: 991px) {
  .footer__links {
    margin-top: 40px;
  }
}
.footer__links a {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}
.footer__copyright {
  padding: 20px 0;
  background-color: #1E1F1D;
  margin-top: 70px;
}
.footer__copyright p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}
.footer__copyright p a {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.nearby-place__item__img__inner img:first-child{
  width: 90%;
}

/*# sourceMappingURL=style.css.map */
