/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@500;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  /*========== button  color ==========*/
  --button-color: hsl(var(--hue-color), 64%, 18%);

  --header-height: 3rem;

  /*========== Colors ==========*/
  /* Change favorite color to match images */
  /*Green dark 190 - Green 171 - Grren Blue 200*/
  --hue-color: 146;

  /* HSL color mode */
  --first-color: hsl(var(--hue-color), 64%, 22%);
  --first-color-second: hsl(var(--hue-color), 64%, 22%);
  --first-color-alt: hsl(var(--hue-color), 64%, 15%);
  --title-color: hsl(var(--hue-color), 64%, 18%);
  --text-color: hsl(var(--hue-color), 24%, 35%);
  --text-color1: hsl(var(--hue-color), 24%, 35%);
  --text-color-light: hsl(var(--hue-color), 8%, 60%);
  --input-color: hsl(var(--hue-color), 24%, 97%);
  --body-color: hsl(var(--hue-color), 100%, 99%);
  --white-color: #FFF;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 75%);

  /*========== Font and typography ==========*/
  --body-font: 'Open Sans', sans-serif;
  --title-font: 'Raleway', sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /*========== Hover overlay ==========*/
  --img-transition: .3s;
  --img-hidden: hidden;
  --img-scale: scale(1.1);
   /*========== dropdown root ==========*/
   --bg-color: #033ac5;
  --primary-bg-color: #333740;
  --primary-color: #2c62f6;
  --text-color: #b1b8ca;
  --text-active: #ffffff;
  --button-hover-bg-color: #2b2e34;
  --border-color: #494d59;
  --dropdown-height: 0;
  --rotate-arrow: 0;
  --translate-value: 0;
  --list-opacity: 0;
  --transition-time: 0.4s;
  --transition-timing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --border-radius: 1.4rem;
  --list-button-height: 4.6rem;
  --floating-icon-size: 26;
  --floating-icon-top: 0;
  --floating-icon-left: 0;
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color-second: hsl(var(--hue-color), 54%, 12%);
  --title-color: hsl(var(--hue-color), 24%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --text-color1: hsl(var(--hue-color), 24%, 35%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 29%, 12%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
  --button-color: #fff;

}

/*========== Button Dark/Light ==========*/
.nav__dark {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  position: absolute;
  left: 3rem;
  bottom: 4rem;
}

.change-theme, .change-theme-name {
  color: var(--text-color);
}

.change-theme {
  cursor: pointer;
  font-size: 1rem;
}

.change-theme-name {
  font-size: var(--small-font-size);
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

button,
input {
  border: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

button {
  cursor: pointer;
}

input {
  outline: none;
}

.main {
  overflow-x: hidden;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 2.5rem;
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: var(--mb-2);
}
.section__title-1 {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: var(--mb-0-25);
}


.container1 {
  max-width: 968px;
  margin-left: var(--mb-1);
  margin-right: var(--mb-1);
 
  
  
}

.container {
  max-width: 968px;
  margin-left: var(--mb-1);
  margin-right: var(--mb-1);
}


.grid {
  display: grid;
  gap: 1rem;
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo, .nav__toggle {
  color:var(--title-color);
}
.logo__size{
  max-width: 8%;
 padding-top: .5rem;

 
}


.nav__logo {
  font-weight: var(--font-semi-bold);
  align-items: center;
  
  
 
}
.shop__icon{

  max-width: 2rem;
}
.shop__align{
  
  display: flex;
  justify-content: space-between;
  align-items: center;
}




.nav__toggle {
  font-size: 1.2rem;
  cursor: pointer;
}

.nav__menu {
  position: relative;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: var(--body-color);
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
    padding: 3rem;
    transition: .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.nav__link {
  color: var(--text-color-light);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
}

.nav__link:hover {
  color: var(--text-color);
}

.nav__close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 0 4px rgba(14, 55, 63, 0.15);
}

.scroll-header .nav__logo,
.scroll-header .nav__toggle {
  color: var(--title-color);
}

/* Active link */
.active-link {
  position: relative;
  color: var(--title-color);
}

.active-link::before {
  content: '';
  position: absolute;
  background-color: var(--title-color);
  width: 100%;
  height: 2px;
  bottom: -.75rem;
  left: 0;
}

/*=============== HOME ===============*/
.home{
  display: none;
}

.home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 83%;
}

.home__container {
  position: relative;
  height: calc(100vh - var(--header-height));
  align-content: center;
  row-gap: 3rem;
}

.home__data-subtitle, 
.home__data-title, 
.home__social-link{
  color: var(--white-color);
}

.home__data-subtitle {
  display: block;
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__data-title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-2-5);
}

.home__social {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.home__social-link {
  font-size: 1.2rem;
  width: max-content;
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  transition: .3s;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button--flex {
  display: flex;
  align-items: center;
  column-gap: .25rem;
}

.button--link {
  background: none;
  padding: 0;
}

.button--link:hover {
  background: none;
}

/*=============== ABOUT ===============*/
.about{
  display: none;
}

.about__data {
  text-align: center;
}

.about__container {
  row-gap: 2.5rem;
}

.about__description {
  margin-bottom: var(--mb-2);
}

.about__img {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  justify-content: center;
}

.about__img-overlay {
  overflow: var(--img-hidden);
}

.about__img-one {
  width: 130px;
}

.about__img-two {
  width: 180px;
}

.about__img-one, 
.about__img-two {
  transition: var(--img-transition);
}

.about__img-one:hover, 
.about__img-two:hover {
  transform: var(--img-scale);
}
/*=============== SEARCH BAR ===============*/

.scbar__container{
    align-items: center;
    justify-content: center;
    justify-self: center;
    display: flex;
    background-size: cover;
    
}

.scbar__size{
    margin-top: var(--mb-0-25);
    width: 100%;
    max-width: 700px;
    background: var(--white-color);
    display: flex;
    align-items: center;
    border-radius: 60px;
    padding-right: 10px;;
    align-self: center;
    border: 0.1rem solid var(--border-color);
    
    
}
.scbar__size input{
    background: transparent;
    flex: 1;
    border: 0;
    outline: none;
    padding: 10px 20px 10px;
    font-size: var(--small-font-size);
    color: var(--text-color);
}
::placeholder{
    color: var(--text-color);
}
.submit{
    background: transparent;
    
    border: 0;
    outline: none;
}

.drop__img{
  margin: var(--mb-0-25);
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
  position: absolute;
}
.product__list1{
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.product__list{
  
  
  max-width: 740px;
  width: 100%;
  margin-top: 3.5rem;
  position: absolute;
  border-radius: var(--mb-0-25);
  background-color: var(--white-color);
  
} 
.product__detail{
  margin: var(--mb-0-25);
  margin-left: var(--mb-0-5);
   
}
.product__title{
  font-size: var(--small-font-size);
  color: var(--text-color);
  
  text-transform: capitalize;
  width: 100%;
  border: 1px solid rgb(0, 0,0);
  border-radius: .2rem;
  margin: .2rem;
  border-radius: 1rem;
  padding: .2rem;
  
 
}
.productname1{
  color: var(--text-color1);
}
/*=============== PRODUCT SHOW ===============*/
.productshow__back-button{
  font-size: var(--small-font-size);
  color: var(--title-color);
  text-align: left;
  text-transform: capitalize;
  margin-bottom: var(--mb-2);
}
.productshow__img{
  border-radius: 1rem;

  width: 100%;
  
}
.productshow__description{
  font-size: var(--smaller-font-size);
  color:var(--title-color);
  margin-bottom: var(--mb-0-5);
}




/*=============== Drop Down ===============*/
button {
  border: none;
  cursor: pointer;
  background-color: transparent;
  outline: none;
}
svg {
  height: 1.6rem;
  width: 1.6rem;
}
.text-truncate {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.dropdown-container {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 34rem;
}

.dropdown-title-icon,
.dropdown-arrow {
  display: inline-flex;
}

.dropdown-title {
  margin: 0 auto 0 1.8rem;
  text-transform: capitalize;
}

.dropdown-button {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  padding: 0 1.8rem;
}

.dropdown-button svg {
  transition: all var(--transition-time) var(--transition-timing);
  fill: var(--text-color);
}

.dropdown-button svg,
.dropdown-button span {
  pointer-events: none;
}

.dropdown-button:hover,
.dropdown-button:focus {
  color: var(--text-active);
}

.dropdown-button:hover svg,
.dropdown-button:focus svg {
  fill: var(--text-active);
}

.main-button {
  height: 5.2rem;
  border-radius: var(--border-radius);
  color: var(--text-color);
  background-color: var(--primary-bg-color);
  border: 0.1rem solid var(--border-color);
  transition: all var(--transition-time) var(--transition-timing);
}

.main-button:focus {
  border: 0.1rem solid var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(44, 98, 246, 0.4);
}

.main-button .dropdown-arrow {
  transition: transform var(--transition-time) var(--transition-timing);
  transform: rotate(var(--rotate-arrow));
  margin-left: 1.8rem;
}

.list-button {
  height: var(--list-button-height);
  transition: color var(--transition-time) var(--transition-timing);
  color: var(--text-color);
  overflow: hidden;
}

.dropdown-list-container {
  overflow: hidden;
  max-height: var(--dropdown-height);
  transition: max-height var(--transition-time) var(--transition-timing);
}
.productname{
 padding-top: 1rem;
 padding-left: 4rem;
 padding-bottom: 1rem;
 display: flex;
 
}

.dropdown-list-wrapper {
  margin-left: 1rem;
  margin-top: 1rem;
 
 

  padding: .4rem .5rem;
  background-color: var(--white-color);
  border-radius: 1.4rem 0rem 0rem 1.4rem;
  border: 0.1rem solid var(--border-color);
  position: relative;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 230px;
  width: 700px; 
}

ul.dropdown-list {
  position: relative;
  list-style-type: none;
}

ul.dropdown-list::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
  height: var(--list-button-height);
  background-color: var(--button-hover-bg-color);
  transition: all var(--transition-time) linear;
  transform: translateY(var(--translate-value));
  border-radius: var(--border-radius);
  pointer-events: none;
}
ul.dropdown-list:hover::before,
ul.dropdown-list:hover ~ .floating-icon {
  opacity: 1;
}

li.dropdown-list-item {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  opacity: var(--list-opacity);
  transition: opacity 0.8s var(--transition-timing);
}

.floating-icon {
  height: calc(var(--floating-icon-size) * 1px);
  width: calc(var(--floating-icon-size) * 1px);
  position: absolute;
  top: var(--floating-icon-top);
  left: var(--floating-icon-left);
  background-color: var(--border-color);
  border-radius: 1rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-time) var(--transition-timing);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-icon svg {
  fill: var(--text-active);
}
.dropdown-list-wrapper::-webkit-scrollbar-track{
  border-radius: 100vw;

}
.dropdown-list-wrapper::-webkit-scrollbar{
  position: absolute;
  padding-left: 1rem;
  border-radius: 1rem;
  width: .50rem;
  background-color: var(--scroll-bar-color);
}
.dropdown-list-wrappe::-webkit-scrollbar-thumb {
  border-radius: 100vw;
  background-color: var(--scroll-thumb-color);
}

.dropdown-list-wrappe::-webkit-scrollbar-thumb:hover {
  border-radius: 1rem;
  background-color: var(--text-color-light);
}

/*=============== TOKO ===============*/
.shop__card {
  position: relative;
  width: 200px;
  overflow: var(--img-hidden);
  border-radius: 1rem;
 
 
  
}

.shop__span{
  font-size: var(--small-font-size);
  color: var(--title-color);
  text-align: center;
  text-transform: capitalize;
  
 
}
.shop__span-1{
  font-size: var(--small-font-size);
  color: var(--title-color);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: var(--mb-1);
  
 
}
.shop__data {
  
  bottom: 1.5rem;
  left: 1rem;
}

.shop__title, 
.shop__description {
  color: var(--title-color);
}

.shop__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.shop__description {
  display: block;
  font-size: var(--smaller-font-size);
}


.shop__img {
  transition: var(--img-transition);
  max-width: 40rem;
}

.shop__img:hover {
  
  max-width: 40rem;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: none;
 
}
.shop__location{
 
  width: 1rem;
 
  
}
.shop__menu{
  
  text-align: right;
  padding: 10px;
  
}
.shop__menu-detail{
  
  text-align: right;
  padding-right: 10px;
  
}
.shop__button1{
  display: inline-block;
  background-color: var(--button-color);
  color: var(--white-color);
  padding: .3rem;
  border-radius: .2rem;
  font-weight: var(--font-semi-bold);
  transition: .3s;
  margin: .2rem;
}
.shop__button2{
  display: inline-block;
  background-color: var(--button-color);
  color: var(--white-color);
  padding: .3rem;
  
  border-radius: .2rem;
  font-weight: var(--font-semi-bold);
  transition: .3s;
  margin: .2rem;
  
}
.shop__location-detail{
 
  width: 2rem;
 
  
}
.shop__button1-detail{
  display: inline-block;
  background-color: var(--button-color);
  color: var(--white-color);
  padding: .3rem;
  border-radius: .2rem;
  font-weight: var(--font-semi-bold);
  transition: .3s;
  margin: .5rem;
}
.shop__button2-detail{
  display: inline-block;
  background-color: var(--button-color);
  color: var(--white-color);
  padding: .3rem;
  
  border-radius: .2rem;
  font-weight: var(--font-semi-bold);
  transition: .3s;
  margin: .5rem;
  
}
.shop__button1-detail_1{
  display: inline-block;
  
  color: var(--title-color);
  padding: .3rem;
  border-radius: .2rem;
  font-weight: var(--font-semi-bold);
  transition: .3s;
  margin: .5rem;
}


/*=============== PROMO ===============*/
.promo__img{
  border-radius: 0rem 1rem 0rem 1rem;
}
.promo__span{
  font-size: var(--small-font-size);
  color: var(--title-color);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: var(--mb-1-5);
  
 
}
.promo__content{
  position: relative;
}
.promo__description{
  text-align: center;
  margin-top: var(--mb-2-5);
  margin-bottom: var(--mb-2-5);
}

/*=============== VIDEO ===============*/
.video{
  display: none;
}
.video__container {
  padding-bottom: 1rem;
}

.video__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.video__content {
  position: relative;
}

.video__button {
  position: absolute;
  right: 1rem;
  bottom: -1rem;
  padding: 1rem 1.5rem;
}

.video__button-icon {
  font-size: 1.2rem;
}



/*=============== SERVICES ===============*/
.services{
  display: none;
}
.services__container {
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.services__content {
  position: relative;
  background-color: var(--first-color);
  padding: 1rem;
  border-radius: 0.25rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: 0.3s;

}
.services__content:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.services__icon {
  display: block;
  font-size: 1.5rem;
  color: var(--first-color);
  margin-bottom: var(--mb-1);
}
.services__title {
  font-size: var(--h3-font-size);
  text-align: center;
  margin-top: 1rem;
  color: var(--white-color);
}
.services__button {
  cursor: pointer;
  font-size: var(--small-font-size);
}
.services__button:hover .button__icon {
  transform: translateX(0.25rem);
}
.services__logo{
  max-width: 3rem;
  display: block;
  align-self: center;
  align-items: center;
  justify-self: center;

}









/*=============== FOOTER ===============*/
.footer__container {
  row-gap: 5rem;
}

.footer__content {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

.footer__title, 
.footer__subtitle {
  font-size: var(--h3-font-size);
}

.footer__title {
  margin-bottom: var(--mb-0-5);
}

.footer__description {
  margin-bottom: var(--mb-2);
}

.footer__social {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-right: var(--mb-1-25);
}

.footer__subtitle {
  margin-bottom: var(--mb-1);
}

.footer__item {
  margin-bottom: var(--mb-0-75);
}

.footer__link {
  color: var(--text-color);
}

.footer__link:hover {
  color: var(--title-color);
}

.footer__rights {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  text-align: center;
}

.footer__copy, .footer__terms-link {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.footer__terms {
  display: flex;
  column-gap: 1.5rem;
  justify-content: center;
}

.footer__terms-link:hover {
  color: var(--text-color);
}

/*========== SCROLL UP ==========*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background-color: var(--first-color);
  padding: .5rem;
  display: flex;
  opacity: .9;
  z-index: var(--z-tooltip);
  transition: .4s;
}

.scrollup:hover {
  background-color: var(--first-color-alt);
  opacity: 1;
}

.scrollup__icon {
  color: var(--white-color);
  font-size: 1.2rem;
}

/* Show scroll */
.show-scroll {
  bottom: 5rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .60rem;
  background-color: var(--scroll-bar-color);
}


::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */

@media screen and (max-width: 567px) {
  .home__data-title{
    text-align: right;
  }
  .productname{
    font-size: var(--font-medium);
    margin-bottom: .5rem;
  }
  .shop__img{
    transition: var(--img-transition);
    max-width: 13rem;
  }
  .shop__img:hover{
    max-width: 13rem;
  }
  .container1{
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }
  .scbar__size{
    width:80%;
    display: flex;
    justify-content: center;
    
    
  }
  .dropdown-list-wrapper{
    margin-left: auto;
    margin-right: auto;
    height: 230px;
  width: 80%; 
    
   }
}
@media screen and (max-width: 340px) {
  .home__data-title{
    text-align: right;
  }
  .productname{
    font-size: var(--font-medium);
    margin-bottom: .5rem;
  }
  .shop__img{
    transition: var(--img-transition);
    max-width: 15rem;
  }
  .shop__img:hover{
    max-width: 15rem;
  }
  .container1{
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }
  .scbar__size{
    width:80%;
    display: flex;
    justify-content: center;
    
    
  }
  .dropdown-list-wrapper{
    margin-left: auto;
    margin-right: auto;
    height: 230px;
  width: 250px; 
    
   }
  .place__container {
    grid-template-columns: max-content;
    justify-content: center;
  }
  .shop__icon{
    max-width: 2rem;
  }
  
  .experience__content {
    padding: 0;
  }
  .experience__overlay:nth-child(1) {
    width: 190px;
  }
  .experience__overlay:nth-child(2) {
    width: 80px;
  }
  .home__info {
    width: 190px;
    padding: 1rem;
  }
  .experience__img,
  .video__container {
    padding: 0;
  }
}

/* For medium devices */
@media screen and (min-width: 568px) {
  .home__data-title{
    text-align: right;
  }
  .productname{
    font-size: var(--font-medium);
    margin-bottom: .5rem;
  }
  .shop__img{
    transition: var(--img-transition);
    max-width: 15rem;
  }
  .shop__img:hover{
    max-width: 15rem;
  }
  .container1{
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }
  .scbar__size{
    width:100%;
    display: flex;
    justify-content: center;
    
    
  }
  .dropdown-list-wrapper{
    margin-left: auto;
    margin-right: auto;
    height: 230px;
  width: 500px; 
    
   }
  .video__container {
    display: grid;
    grid-template-columns: .6fr;
    justify-content: center;
  }
  .shop__icon{
    max-width: 2rem;
  }

  .services__container {
    grid-template-columns: repeat(3, 218px);
    justify-content: center;
  }
  .services__icon {
    font-size: 2rem;
  }
  
 
  
  .place__container {
    grid-template-columns: repeat(3, max-content);
  }
  .subscribe__form {
    width: 470px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 569px) {
  .scbar__size{
    width:100%;
    display: flex;
    justify-content: center;
    
    
  }
  .container1{
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }
  .shop__img{
    transition: var(--img-transition);
    max-width: 13rem;
  }
  .shop__img:hover{
    max-width: 13rem;
  }
}

@media screen and (min-width: 768px) {
  .home__data-title{
    text-align: right;
  }
  .shop__img{
    transition: var(--img-transition);
    max-width: 13rem;
  }
  .shop__img:hover{
    max-width: 13rem;
  }
  .container1{
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }
  .scbar__size{
    width:100%;
    display: flex;
    justify-content: center;
    
    
  }
  .dropdown-list-wrapper{
   margin-left: auto;
   margin-right: auto;
   
  }
  body {
    margin: 0;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__link {
    color:var(--title-color);
    text-transform: initial;
  }
  .nav__link:hover {
    color: var(--title-color);
  }
  .nav__dark {
    position: initial;
  }
  .nav__menu {
    display: flex;
    column-gap: 1rem;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }
  .nav__toggle, .nav__close {
    display: none;
  }
  .change-theme-name {
    display: none;
  }
  .change-theme {
    color: var(--title-color);
  }
  .active-link::before {
    background-color: var(--white-color);
  }
  .scroll-header .nav__link {
    color: var(--text-color);
  }
  .scroll-header .active-link {
    color: var(--title-color);
  }
  .scroll-header .active-link::before {
    background-color: var(--title-color);
  }
  .scroll-header .change-theme {
    color: var(--text-color);
  }
  .section {
    padding: 7rem 0 2rem;
  }
  .home__container {
    height: 100vh;
    grid-template-rows: 1.8fr .5fr;
  }
  .home__data {
    align-self: flex-end;
  }
  .home__social {
    flex-direction: row;
    align-self: flex-end;
    margin-bottom: 3rem;
    column-gap: 2.5rem;
  }
  .home__info {
    bottom: 3rem;
  }
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .about__data, .about__title {
    text-align: initial;
  }
  .about__title {
    margin-bottom: var(--mb-1-5);
  }
  .about__description {
    margin-bottom: var(--mb-2);
  }
  .shop__container {
   
    width: 610px;
    margin-left: auto;
    margin-right: auto;
    
   
   
    
    
    
  }
  
  .shop__container,
  .place__container {
    padding-top: 2rem;
  }
  .experience__overlay:nth-child(1) {
    width: 363px;
    margin-right: 4rem;
  }
  .experience__overlay:nth-child(2) {
    width: 160px;
  }
  .subscribe__bg {
    background: none;
    padding: 0;
  }
  .subscribe__container {
    background-color: var(--first-color-second);
    padding: 3.5rem 0;
  }
  .subscribe__input {
    padding: 0 .5rem;
  }
  .footer__rights {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .dropdown-list-wrapper{
    margin-left: -1rem;
    height: 230px;
  width: 580px; 
  }
  .shop__img{
    transition: var(--img-transition);
    max-width: 15rem;
  }
  .shop__img:hover{
    max-width: 15rem;
  }
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .home__container {
    grid-template-rows: 2fr .5fr;
  }
  .home__info {
    width: 328px;
    grid-template-columns: 1fr 2fr;
    column-gap: 2rem;
  }
  .home__info-title {
    font-size: var(--normal-font-size);
  }
  .home__info-img {
    width: 240px;
  }
  .about__img-one {
    width: 230px;
  }
  .about__img-two {
    width: 290px;
  }
  .shop__card {
    width: 237px;
  }
  .shop__container {
    width: 700px;
  }
  .shop__data {
    left: 1.5rem;
    bottom: 2rem;
  }
  .shop__title {
    font-size: var(--h2-font-size);
  }
  .experience__content {
    margin: var(--mb-1) 0;
    column-gap: 3.5rem;
  }
  .experience__overlay:nth-child(1) {
    width: 463px;
    margin-right: 7rem;
  }
  .experience__overlay:nth-child(2) {
    width: 220px;
    top: 3rem;
  }
  .video__container {
    grid-template-columns: .7fr;
  }
  .video__description {
    padding: 0 8rem;
  }
  .place__container {
    gap: 3rem 2rem;
  }
  .place__card, .place__img {
    height: 263px;
  }
  .footer__content {
    justify-items: center;
  }



  .services__icon {
    font-size: 5rem;
  }
 
}
@media screen and (min-width: 1025px){
  .container1{
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }
  .scbar__size{
    width:100%;
    display: flex;
    justify-content: center;
    
    
  }
  .dropdown-list-wrapper{
    margin-left: auto;
    margin-right: auto;
    height: 230px;
  width: 500px; 
    
   }
}
 @media screen and (min-width: 1200px) {
  .productshow__img{
    max-width: 768px;
    display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;

  }
  .container {
    max-width: 1024px;
  }
  .container1{
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }
  .scbar__size{
    width:100%;
    display: flex;
    justify-content: center;
    
    
  }
  .dropdown-list-wrapper{
    margin-left: auto;
    margin-right: auto;
    height: 230px;
  width: 600px; 
    
   }
} 

/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
  body {
    margin: 0;
  }
  .home__container, .home__img {
    height: 640px;
  }
}
