@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
  text-transform: lowercase;
  font-family: "Lato", sans-serif;
  border: none;
  scroll-behavior: smooth;
  list-style-type: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important; 
  -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important; 
  outline: none !important;
}

/*-------------------nav bar starts------------*/



nav {
  position: relative;
  top: 0;
  z-index: 10;
  background-color: transparent;
  transition: background-color 0.5s ease-in-out;
  height: 70px;
  width: 100%;
  justify-content: space-between;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.navbar-yellow {
  background-color: rgb(0,0,0, 0.6) !important;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);

}

nav ul {
  height: 70px;
  list-style-type: none;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 100px;
  transition: 0.5s ease-in-out;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

nav ul li {
  display: flex;
  align-items: center;
  transition: background-color 0.5s ease-in-out;
  height: 70px;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

nav ul li a {
  display: block;
  padding: 0px 20px;
  color: black;
  transition: background-color 0.5s ease-in-out;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(0, 0, 0, 0.6);
  min-width: 200px;
  transition: 0.5s linear;
  top: 100%;
  left: 0;
  border-radius: 0% 0% 5% 5%;
  width: 100%;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.dropdown-link {
  height: 70px;
}

.dropdown-content a {
  display: block;
  padding: 15px 25px;
  color: white;
  transition: 0.5s ease-in-out;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.dropdown:hover .dropdown-content {
  display: block;
  transition: 0.5s linear;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.scroll-container {
  height: 3000px;
  transition: background-color 0.5s ease-in-out;
}

/* Before 300px */
.navbar-before-300px {
  position: absolute;
  top: 0;
  z-index: 1;
  background-color: transparent;
  transition: 0.5s linear;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.navbar-before-300px ul li a {
  color: white;
  transition: 0.5s linear;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

/* After 300px */
.navbar-after-300px {
  position: fixed;
  top: 0;
  z-index: 10;
  background-color: rgb(0, 0, 0, 0.6);
  transition: 0.5s linear;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.navbar-after-300px ul li a {
  color: white;
  transition: 0.5s linear;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.dropdown-link.dropdown-hover,
.navbar-yellow,
.dropdown-content:hover {
  background-color: rgb(0, 0, 0, 0.6);
  transition: 0.5s linear;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.dropdown-content a:hover {
  color: white;
  transition: 0.5s linear;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.logo01 {
  width: 210px;
  height: 33px;
}

/*-----mobile navbar---------*/

.nav-mob {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgb(0, 0, 0, 0.6);
  height: 11vh;
  width: 100%;
  z-index: 1;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-backdrop-filter: blur(5px);
  -moz-backdrop-filter: blur(5px);
  -ms-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  backface-visibility: hidden;
  transform: translateZ(0px);
  transition: 0.3s;
}

.mob_nav_logo img {
  width: 250px;
  height: 43px;
  margin: auto;
}

.burger {
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  padding: 0;
  width: 82px;
  height: 82px;
  font-size: 30px;
  color: #f9f9f9;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.burger i:last-child {
  display: none;
}

body.open .burger i:first-child {
  display: none;
}

body.open .burger i:last-child {
  display: block;
}

.overlay {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(27 32 44 / 70%);
  visibility: hidden;
  opacity: 0;
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

body.open .overlay {
  visibility: visible;
  opacity: 1;
}



.nav-mob button {
  background: transparent;
  border: 0;
  cursor: pointer;
}

aside {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 100%;
  padding: 60px 55px 25px 25px;
  background-color: rgb(0, 0, 0, 0.6);
  box-shadow: 0 0 20px rgb(0 0 0 / 20%);
  translate: 100% 0;
  transition: 0.3s;
}

body.open aside {
  translate: 0;
}

aside a {
  display: flex;
  align-items: center;
  height: 70px;
  font-size: 20px;
  cursor: pointer;
}


/*----------------- button ------------------*/

.cta {
  border: none;
  background: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.cta span {
  padding-bottom: 3px;
  letter-spacing: 4px;
  font-size: 14px;
  padding-right: 5px;
  text-transform: lowercase;
  display: inline-block;
  transition: all 0.7s ease;
  color: #fff;
}

.cta:hover span,
.cta:focus span {
  transform: translateX(4px);
  transition: all 0.7s ease;
}

.cta:active span {
  transform: scale(0.9);
}

.cta svg {
  transform: translateX(0);
  transition: all 0.5s ease;
}

.cta:hover svg,
.cta:focus svg {
  transform: translateX(10px);
}

.cta:active svg {
  transform: scale(0.9);
}

/*-------------------------------- before about us ------------------------------*/
.beforeabout{
  height: 80vh;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(images/interior_architecture_serivces_image.webp);
  background-size: cover ;
  background-position: center center;
  display: flex;
  justify-content:end;
  align-items:center;
  flex-direction:column;
  text-align: center;
}

.headabout h3{
  color: #fff;
  font-size: 60px;
  line-height: 80px;
  font-weight: 300;
  letter-spacing: 1.8px;
  text-transform: lowercase;
  padding-bottom: 10px;
}

.headabout h4{
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: lowercase;
  padding-bottom: 35px;
}


.smoothscroll{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 15px;
}
.scroll-down {
	display: block;
	text-align: center;
	font-size: 20px;
	text-decoration: none;
	text-shadow: 0;
	width: 15px;
	height: 15px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	z-index: 1;
	-webkit-transform: translate(-50%, 0%) rotate(45deg);
	-moz-transform: translate(-50%, 0%) rotate(45deg);
	transform: translate(-50%, 0%) rotate(45deg);
	-webkit-animation: fade_move_down 2s ease-in-out infinite;
	-moz-animation: fade_move_down 2s ease-in-out infinite;
	animation: fade_move_down 2s ease-in-out infinite;
}


/*animated scroll arrow animation*/
@-webkit-keyframes fade_move_down {
 0% {
-webkit-transform:translate(0, -10px) rotate(45deg);
opacity: 0;
}
 50% {
opacity: 1;
}
 100% {
-webkit-transform:translate(0, 10px) rotate(45deg);
opacity: 0;
}
}
@-moz-keyframes fade_move_down {
 0% {
-moz-transform:translate(0, -10px) rotate(45deg);
opacity: 0;
}
 50% {
opacity: 1;
}
 100% {
-moz-transform:translate(0, 10px) rotate(45deg);
opacity: 0;
}
}
@keyframes fade_move_down {
 0% {
transform:translate(0, -10px) rotate(45deg);
opacity: 0;
}
 50% {
opacity: 1;
}
 100% {
transform:translate(0, 10px) rotate(45deg);
opacity: 0;
}
}



.aboutbrandmain{
  height: 20vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.aboutbrand{
  height: fit-content;
  width: 70%;
  line-height: 23px;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
}


.spacebetween01 {
  height: 5vh;
}



.cell{
  width: auto;
  height: 560px;
  margin: 30px 60px 0px 60px;
  overflow: hidden;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
}

.cell img{
  width: fit-content;
  height: 560px;
  object-fit: cover;
  
}

.main-carousel .cell .ga{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.6);
}
.main-carousel .is-selected .ga{
  background: none;
}

.para{
  height: 500px;
  width: 100%; 
  background-color: #fdfdfd;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.headingmain{
  align-items: center;
  display: flex;
  justify-content: center;
  height: 180px;
  width: 100%; 
}

.headingmain h3{
  font-size: 42px;
  line-height: 80px;
  font-weight: 300;
  letter-spacing: 1.8px;
  
  text-transform: lowercase;
  text-align: justify;
}

.para01{
  align-items: center;
  display: flex;
  justify-content: center;
  height: 320px;
  width: 100%; 
}

.paracontent {
  height: 320px;
  width: 840px; 
  padding:0px;
  text-align: justify;
  line-height: 23px;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1px;
  
}

/*------------------------------cards------------------*/


.cardcontainer{
  display:flex;
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 100px;
  animation: showcontent 1s ease-in-out 0.3s 1;
  background-color: #fdfdfd;
}

.cardmain{
  height: fit-content;
  width: 820px;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card001 {
  display: flex;
  width: 260px;
  height: 60px;
  position: relative;
  background-color: white;
  border-radius: 0%;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  opacity: 0.8;
  background-size: 20px 25px;
  border: 1.2px solid  #6f6f6f;
  overflow: visible;
  cursor: pointer;
  animation: showcontent 1s ease-in-out 0.3s 1;
  
}


.card001 h3 {
  color: black;
  text-transform: lowercase;
  width: auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.7s ease;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 2px;
  animation: showcontent 1s ease-in-out 0.3s 1;
  
  
}

.card001:hover h3{
  color: #616161;
  transform: translateX(-8px);
  transition: all 0.7s ease;
}


.card001 svg{
    margin-right:20px;
    transition: all 0.7s ease;
    animation: showcontent 1s ease-in-out 0.3s 1;
}

.card001:hover svg{
  color: #616161;
  transform: translateX(-14px);
  transition: all 0.7s ease;
}

.card001 .top-key {
 height: 2px;
 width: 50px;
 top: -2px;
 left: 30px;
 position: absolute;
 background: white;
 transition: width 0.5s ease-out, left 0.3s ease-out;
 animation: showcontent 1s ease-in-out 0.3s 1;
}

.card001 .bottom-key-1 {
 height: 2px;
 width: 50px;
 right: 1.875rem;
 bottom: -2px;
 position: absolute;
 background: white;
 transition: width 0.5s ease-out, right 0.3s ease-out;
 animation: showcontent 1s ease-in-out 0.3s 1;
}


.card001:hover .top-key {
 left: -2px;
 width: 0px;
 animation: showcontent 1s ease-in-out 0.3s 1;
}

.card001:hover .bottom-key-1{
 right: 0;
 width: 0;
 animation: showcontent 1s ease-in-out 0.3s 1;
}


.card002 {
  display: flex;  
  width: 260px;
  height: 60px;
  position: relative;
  background-color: white;
  border-radius: 0%;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  opacity: 0.8;
  background-size: 20px 25px;
  border: 1.2px solid  #6f6f6f;
  overflow: visible;
  cursor: pointer;
  animation: showcontent 1s ease-in-out 0.3s 1;
}


.card002 h3 {
  color: black;
  text-transform: lowercase;
  width: auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.7s ease;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 2px;
  animation: showcontent 1s ease-in-out 0.3s 1;
  
}

.card002:hover  h3{
  color: #616161;
  transform: translateX(8px);
  transition: all 0.7s ease;
}

.card002 svg{
    margin-left:20px;
    animation: showcontent 1s ease-in-out 0.3s 1;
    transition: all 0.7s ease;
}

.card002:hover svg{
  color: #616161;
  transform: translateX(14px);
  transition: all 0.7s ease;
}


.card002 .top-key {
 height: 2px;
 width: 50px;
 top: -2px;
 left: 30px;
 position: absolute;
 background: white;
 transition: width 0.5s ease-out, left 0.3s ease-out;
 animation: showcontent 1s ease-in-out 0.3s 1;
}

.card002 .bottom-key-1 {
 height: 2px;
 width: 50px;
 right: 1.875rem;
 bottom: -2px;
 position: absolute;
 background: white;
 transition: width 0.5s ease-out, right 0.3s ease-out;
 animation: showcontent 1s ease-in-out 0.3s 1;
}


.card002:hover .top-key {
 left: -2px;
 width: 0px;
 animation: showcontent 1s ease-in-out 0.3s 1;
}

.card002:hover .bottom-key-1{
 right: 0;
 width: 0;
 animation: showcontent 1s ease-in-out 0.3s 1;
}

/*------------------------------footer------------------*/
.footer-main{
  background: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02)), url(images/footer_background.png);
  background-repeat: repeat-x;
  background-size:cover;
  text-align: center;

}

.footer-main .icons{
  padding: 32px;

}

.footer-main .icons a{
  height: 40px;
  width: 40px;
  line-height:40px;
  text-align: center;
  font-size: 20px;
  color: #6f6f6f;
  border-radius: 50%;
  border: 1.2px solid  #6f6f6f;
  margin: 0 10px;
  transition: all 0.7s ease;
}

.footerdis{
  display: flex;
  justify-content: center;
  align-items:center ;
  text-align: center;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 2px;
}

.footer-main .icons a:hover{
  color: white;
    border: 1.2px solid  #6f6f6f;

}

.facebook:hover{
  transform: translateY(-4px);
  background-color: #3b5998;
  transition: all 0.7s ease;
  
}


.whatsapp:hover{
  transform: translateY(-4px);
  background-color: #4ac157;
  transition: all 0.7s ease;
  color: white;
}


.envelope:hover{
  transform: translateY(-4px);
  background-color: #ea4335;
  transition: all 0.7s ease;
  
}


.instagram:hover{
  transform: translateY(-4px);

  background: radial-gradient(
      circle farthest-corner at 35% 90%,
      #fec564,
      transparent 50%
    ),
    radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%),
    radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%),
    radial-gradient(
      ellipse farthest-corner at 20% -50%,
      #5258cf,
      transparent 50%
    ),
    radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%),
    radial-gradient(
      ellipse farthest-corner at 60% -20%,
      #893dc2,
      transparent 50%
    ),
    radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent),
    linear-gradient(
      #6559ca,
      #bc318f 30%,
      #e33f5f 50%,
      #f77638 70%,
      #fec66d 100%
    );
  transition: all 0.7s ease;
}


.linkedin:hover{
  transform: translateY(-4px);
  background-color: #0177b5;
  transition: all 0.7s ease;
 
}

.footer-right01 a{
  color: black;
}


/*----------------small phone---------
-----------------------------------------*/
@media screen and (max-width: 320px) and (min-width: 10px){
 .nav {
    display: none;
  }

  .navmobile {
    display: block;
  }

  .nav-mob{
    height:55px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mob_nav_logo img{
    width: 130px;
    height: 23px;
    margin: auto;
  }

  .burger {
    padding-top: 5px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  aside {
    width: 200px;
    height: 100%;
    padding: 60px 35px 25px 35px;
  }

  .beforeabout{
    height: 300px;
    width: 100%;
    background-size: fit-content ;
    background-position: bottom bottom;
    display: flex;
    justify-content:end;
    align-items:center;
    flex-direction:column;
    text-align: center;
  }

  .beforeabout h3{
    color: #fff;
    font-size: 24px;
    line-height: 36px;
    font-weight: 300;
    letter-spacing: 1.8px;
    text-transform: lowercase;
    
  }

  .beforeabout h4{
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: lowercase;
    padding-bottom: 10px;
  }

  .aboutbrandmain{
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .aboutbrand{
    height: fit-content;
    width: 86%;
    line-height: 20px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: justify; 
  }


  .main-carousel{
    height: 300px;
    
  }

  .cell{
    height: 250px;
    width: 89%;
    margin: 10px 30px 0px 30px;
  }

  .cell img{
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .sp04{
    display: none;
  }
  .sp03{
    display: none;
  }
  .sp02{
    display: none;
  }

  .headingmain{
    align-items: center;
    display: flex;
    justify-content: center;
    height: 50px;
    width: 100%; 
  }

  .headingmain h3{
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    letter-spacing: 1.8px;
    text-transform: lowercase;
    text-align: justify;
  }
  
  .para{
    height: fit-content;
    width: 100%; 
    background-color: #fdfdfd;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
  }

  

  .para01{
    align-items: center;
    display: flex;
    justify-content: center;
    height: fit-content;
    width: 100%; 

    padding: 0 10px;
  }
  .paracontent {
    height: fit-content;
    width: 86%; 
    line-height: 20px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: justify;

  }

  .cardcontainer{
    display:flex;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 60px;
    animation: showcontent 1s ease-in-out 0.3s 1;
    background-color: #fdfdfd;
    margin: 20px 0px;
  }

  .cardmain{
    height: fit-content;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px
  }

  .card001 {
    display: flex;
    width: 160px;
    height: 40px;
    position: relative;
    background-color: white;
    border-radius: 0%;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    opacity: 0.8;
    background-size: 20px 25px;
    border: 1.2px solid  #6f6f6f;
    overflow: visible;
    cursor: pointer;
    animation: showcontent 1s ease-in-out 0.3s 1;
    
  }


  .card001 h3 {
    color: black;
    text-transform: lowercase;
    width: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.7s ease;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 2px;
    animation: showcontent 1s ease-in-out 0.3s 1;
    
    
  }

  .card001:hover h3{
    color: #616161;
    transform: translateX(-8px);
    transition: all 0.7s ease;
  }


  .card001 svg{
      margin-right:20px;
      transition: all 0.7s ease;
      animation: showcontent 1s ease-in-out 0.3s 1;
  }

  .card001:hover svg{
    color: #616161;
    transform: translateX(-14px);
    transition: all 0.7s ease;
  }

  .card001 .top-key {
  height: 2px;
  width: 50px;
  top: -2px;
  left: 30px;
  position: absolute;
  background: white;
  transition: width 0.5s ease-out, left 0.3s ease-out;
  animation: showcontent 1s ease-in-out 0.3s 1;
  }

  .card001 .bottom-key-1 {
  height: 2px;
  width: 50px;
  right: 1.875rem;
  bottom: -2px;
  position: absolute;
  background: white;
  transition: width 0.5s ease-out, right 0.3s ease-out;
  animation: showcontent 1s ease-in-out 0.3s 1;
  }


  .card001:hover .top-key {
  left: -2px;
  width: 0px;
  animation: showcontent 1s ease-in-out 0.3s 1;
  }

  .card001:hover .bottom-key-1{
  right: 0;
  width: 0;
  animation: showcontent 1s ease-in-out 0.3s 1;
  }


  .card002 {
    display: flex;  
    width: 160px;
    height: 40px;
    position: relative;
    background-color: white;
    border-radius: 0%;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    opacity: 0.8;
    background-size: 20px 25px;
    border: 1.2px solid  #6f6f6f;
    overflow: visible;
    cursor: pointer;
    animation: showcontent 1s ease-in-out 0.3s 1;
  }


  .card002 h3 {
    color: black;
    text-transform: lowercase;
    width: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.7s ease;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 2px;
    animation: showcontent 1s ease-in-out 0.3s 1;
    
  }

  .card002:hover  h3{
    color: #616161;
    transform: translateX(8px);
    transition: all 0.7s ease;
  }

  .footer-main .icons{
    padding: 30px;
  }

  .footer-main .icons a{
    height: 30px;
    width: 30px;
    padding-bottom: 10px;
    line-height:30px;
    text-align: center;
    font-size: 14px;
    color: #6f6f6f;
    border-radius: 50%;
    border: 1.2px solid  #6f6f6f;
    margin: 0 4px;
    transition: all 0.7s ease;
  }

}
/*----------------small phone---------
-----------------------------------------*/
@media screen and (max-width: 376px) and (min-width: 320px){

  .nav {
    display: none;
  }

  .navmobile {
    display: block;
  }

  .nav-mob{
    height:55px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mob_nav_logo img{
    width: 130px;
    height: 23px;
    margin: auto;
  }

  .burger {
    padding-top: 5px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  aside {
    width: 270px;
    height: 100%;
    padding: 60px 55px 25px 65px;
  }

  .beforeabout{
    height: 300px;
    width: 100%;
    background-size: fit-content ;
    background-position: center center;
    display: flex;
    justify-content:end;
    align-items:center;
    flex-direction:column;
    text-align: center;
  }

  .beforeabout h3{
    color: #fff;
    font-size: 28px;
    line-height: 36px;
    font-weight: 300;
    letter-spacing: 1.8px;
    text-transform: lowercase;
  }

  .beforeabout h4{
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: lowercase;
    padding-bottom: 10px;
  }
  
  .aboutbrandmain{
    height: 180px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .aboutbrand{
    height: fit-content;
    width: 86%;
    line-height: 20px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: justify;
  }


  .main-carousel{
    height: 300px;
    
  }

  .cell{
    height: 250px;
    width: 89%;
    margin: 10px 30px 0px 30px;
  }

  .cell img{
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .sp04{
    display: none;
  }
  .sp03{
    display: none;
  }
  .sp02{
    display: none;
  }

  .headingmain{
    align-items: center;
    display: flex;
    justify-content: center;
    height: 80px;
    width: 100%; 
  }

  .headingmain h3{
    font-size: 28px;
    line-height: 36px;
    font-weight: 300;
    letter-spacing: 1.8px;
    text-transform: lowercase;
    text-align: justify;
  }
  
  .para{
    height: fit-content;
    width: 100%; 
    background-color: #fdfdfd;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
  }

  

  .para01{
    align-items: center;
    display: flex;
    justify-content: center;
    height: fit-content;
    width: 100%; 

    padding: 0 10px;
  }
  .paracontent {
    height: fit-content;
    width: 90%; 
    line-height: 20px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: justify;

  }

  .cardcontainer{
    display:flex;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 100px;
    animation: showcontent 1s ease-in-out 0.3s 1;
    background-color: #fdfdfd;
  }

  .cardmain{
    height: fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
  }

  .card001 {
    display: flex;
    width: 160px;
    height: 40px;
    position: relative;
    background-color: white;
    border-radius: 0%;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    opacity: 0.8;
    background-size: 20px 25px;
    border: 1.2px solid  #6f6f6f;
    overflow: visible;
    cursor: pointer;
    animation: showcontent 1s ease-in-out 0.3s 1;
    
  }


  .card001 h3 {
    color: black;
    text-transform: lowercase;
    width: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.7s ease;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 2px;
    animation: showcontent 1s ease-in-out 0.3s 1;
    
    
  }

  .card001:hover h3{
    color: #616161;
    transform: translateX(-8px);
    transition: all 0.7s ease;
  }


  .card001 svg{
      margin-right:20px;
      transition: all 0.7s ease;
      animation: showcontent 1s ease-in-out 0.3s 1;
  }

  .card001:hover svg{
    color: #616161;
    transform: translateX(-14px);
    transition: all 0.7s ease;
  }

  .card001 .top-key {
  height: 2px;
  width: 50px;
  top: -2px;
  left: 30px;
  position: absolute;
  background: white;
  transition: width 0.5s ease-out, left 0.3s ease-out;
  animation: showcontent 1s ease-in-out 0.3s 1;
  }

  .card001 .bottom-key-1 {
  height: 2px;
  width: 50px;
  right: 1.875rem;
  bottom: -2px;
  position: absolute;
  background: white;
  transition: width 0.5s ease-out, right 0.3s ease-out;
  animation: showcontent 1s ease-in-out 0.3s 1;
  }


  .card001:hover .top-key {
  left: -2px;
  width: 0px;
  animation: showcontent 1s ease-in-out 0.3s 1;
  }

  .card001:hover .bottom-key-1{
  right: 0;
  width: 0;
  animation: showcontent 1s ease-in-out 0.3s 1;
  }


  .card002 {
    display: flex;  
    width: 160px;
    height: 40px;
    position: relative;
    background-color: white;
    border-radius: 0%;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    opacity: 0.8;
    background-size: 20px 25px;
    border: 1.2px solid  #6f6f6f;
    overflow: visible;
    cursor: pointer;
    animation: showcontent 1s ease-in-out 0.3s 1;
  }


  .card002 h3 {
    color: black;
    text-transform: lowercase;
    width: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.7s ease;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 2px;
    animation: showcontent 1s ease-in-out 0.3s 1;
    
  }

  .card002:hover  h3{
    color: #616161;
    transform: translateX(8px);
    transition: all 0.7s ease;
  }

  .footer-main .icons{
    padding: 35px;
  }

  .footer-main .icons a{
    height: 38px;
    width: 38px;
    padding-bottom: 10px;
    line-height:35px;
    text-align: center;
    font-size: 1.2rem;
    color: #6f6f6f;
    border-radius: 50%;
    border: 1.2px solid  #6f6f6f;
    margin: 0 2px;
    transition: all 0.7s ease;
  }
  .footer-main .icons{
    padding: 25px;
  }

  .footer-main .icons a{
    height: 35px;
    width: 35px;
    padding-bottom: 10px;
    line-height:35px;
    text-align: center;
    font-size: 1.2rem;
    color: #6f6f6f;
    border-radius: 50%;
    border: 1.2px solid  #6f6f6f;
    margin: 0 8px;
    transition: all 0.7s ease;
  }

}

/*----------------big phone---------
-----------------------------------------*/

@media screen and (max-width: 450px) and (min-width: 376px){
 
  .nav {
    display: none;
  }

  .navmobile {
    display: block;
  }

  .nav-mob{
    height:55px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mob_nav_logo img{
    width: 130px;
    height: 23px;
    margin: auto;
  }

  .burger {
    padding-top: 5px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  aside {
    width: 270px;
    height: 100%;
    padding: 60px 55px 25px 65px;
  }

  .beforeabout{
    height: 300px;
    width: 100%;
    background-size: fit-content ;
    background-position: center center;
    display: flex;
    justify-content:end;
    align-items:center;
    flex-direction:column;
    text-align: center;
  }

  .beforeabout h3{
    color: #fff;
    font-size: 28px;
    line-height: 36px;
    font-weight: 300;
    letter-spacing: 1.8px;
    text-transform: lowercase;
  }

  .beforeabout h4{
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: lowercase;
    padding-bottom: 10px;
  }
  
  .aboutbrandmain{
    height: 180px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .aboutbrand{
    height: fit-content;
    width: 86%;
    line-height: 20px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: justify;
  }


  .main-carousel{
    height: 300px;
    
  }

  .cell{
    height: 250px;
    width: 89%;
    margin: 10px 30px 0px 30px;
  }

  .cell img{
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .sp04{
    display: none;
  }
  .sp03{
    display: none;
  }
  .sp02{
    display: none;
  }

  .headingmain{
    align-items: center;
    display: flex;
    justify-content: center;
    height: 80px;
    width: 100%; 
  }

  .headingmain h3{
    font-size: 28px;
    line-height: 36px;
    font-weight: 300;
    letter-spacing: 1.8px;
    text-transform: lowercase;
    text-align: justify;
  }
  
  .para{
    height: fit-content;
    width: 100%; 
    background-color: #fdfdfd;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
  }

  

  .para01{
    align-items: center;
    display: flex;
    justify-content: center;
    height: fit-content;
    width: 100%; 

    padding: 0 10px;
  }
  .paracontent {
    height: fit-content;
    width: 90%; 
    line-height: 20px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: justify;

  }

  .cardcontainer{
    display:flex;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 100px;
    animation: showcontent 1s ease-in-out 0.3s 1;
    background-color: #fdfdfd;
  }

  .cardmain{
    height: fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
  }

  .card001 {
    display: flex;
    width: 160px;
    height: 40px;
    position: relative;
    background-color: white;
    border-radius: 0%;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    opacity: 0.8;
    background-size: 20px 25px;
    border: 1.2px solid  #6f6f6f;
    overflow: visible;
    cursor: pointer;
    animation: showcontent 1s ease-in-out 0.3s 1;
    
  }


  .card001 h3 {
    color: black;
    text-transform: lowercase;
    width: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.7s ease;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 2px;
    animation: showcontent 1s ease-in-out 0.3s 1;
    
    
  }

  .card001:hover h3{
    color: #616161;
    transform: translateX(-8px);
    transition: all 0.7s ease;
  }


  .card001 svg{
      margin-right:20px;
      transition: all 0.7s ease;
      animation: showcontent 1s ease-in-out 0.3s 1;
  }

  .card001:hover svg{
    color: #616161;
    transform: translateX(-14px);
    transition: all 0.7s ease;
  }

  .card001 .top-key {
  height: 2px;
  width: 50px;
  top: -2px;
  left: 30px;
  position: absolute;
  background: white;
  transition: width 0.5s ease-out, left 0.3s ease-out;
  animation: showcontent 1s ease-in-out 0.3s 1;
  }

  .card001 .bottom-key-1 {
  height: 2px;
  width: 50px;
  right: 1.875rem;
  bottom: -2px;
  position: absolute;
  background: white;
  transition: width 0.5s ease-out, right 0.3s ease-out;
  animation: showcontent 1s ease-in-out 0.3s 1;
  }


  .card001:hover .top-key {
    left: -2px;
    width: 0px;
    animation: showcontent 1s ease-in-out 0.3s 1;
  }

  .card001:hover .bottom-key-1{
    right: 0;
    width: 0;
    animation: showcontent 1s ease-in-out 0.3s 1;
  }


  .card002 {
    display: flex;  
    width: 160px;
    height: 40px;
    position: relative;
    background-color: white;
    border-radius: 0%;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    opacity: 0.8;
    background-size: 20px 25px;
    border: 1.2px solid  #6f6f6f;
    overflow: visible;
    cursor: pointer;
    animation: showcontent 1s ease-in-out 0.3s 1;
  }


  .card002 h3 {
    color: black;
    text-transform: lowercase;
    width: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.7s ease;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 2px;
    animation: showcontent 1s ease-in-out 0.3s 1;
    
  }

  .card002:hover  h3{
    color: #616161;
    transform: translateX(8px);
    transition: all 0.7s ease;
  }

  .footer-main .icons{
    padding: 35px;
  }

  .footer-main .icons a{
    height: 38px;
    width: 38px;
    padding-bottom: 10px;
    line-height:35px;
    text-align: center;
    font-size: 1.2rem;
    color: #6f6f6f;
    border-radius: 50%;
    border: 1.2px solid  #6f6f6f;
    margin: 0 2px;
    transition: all 0.7s ease;
  }
  .footer-main .icons{
    padding: 25px;
  }

  .footer-main .icons a{
    height: 35px;
    width: 35px;
    padding-bottom: 10px;
    line-height:35px;
    text-align: center;
    font-size: 1.2rem;
    color: #6f6f6f;
    border-radius: 50%;
    border: 1.2px solid  #6f6f6f;
    margin: 0 8px;
    transition: all 0.7s ease;
  }
}


@media screen and (max-width: 740px) and (min-width: 450px){
  .nav {
    display: none;
  }
  .nav-mob {
    height:50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navmobile {
    display: block;
  }

  .mob_nav_logo img{
    width: 135px;
    height: 23px;
    margin: auto;
  }

  .burger {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  aside {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 250px;
    height: 100%;
    padding: 40px 35px 25px 45px;
    background-color: rgb(0, 0, 0, 0.6);
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    translate: 100% 0;
    transition: 0.3s;
  }


  .beforeabout{
    height: 400px;
    width: 100%;
    background-size: fit-content ;
    background-position: bottom bottom;
    display: flex;
    justify-content:end;
    align-items:center;
    flex-direction:column;
    text-align: center;
  }

  .beforeabout h3{
    color: #fff;
    font-size: 26px;
    line-height: 36px;
    font-weight: 300;
    letter-spacing: 1.8px;
    text-transform: lowercase;
    
  }

  .beforeabout h4{
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: lowercase;
    padding-bottom: 10px;
  }


  .aboutbrand{
    height: fit-content;
    width: 80%;
    line-height: 23px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
  }


  .main-carousel{
    height: 400px;
  }

  .cell{
    height: 400px;
    margin: 10px 30px 0px 30px;
  }

  .cell img{
    width: fit-content;
    max-width: 100%;
    height: 400px;
    object-fit: cover;  
  }
  
  .sp04{
    display: none;
  }
  .sp03{
    display: none;
  }
  .sp02{
    display: none;
  }


  .card01{
    gap: 90px;
    height: 100px;
    padding: 0px 60px;
  }
  
  .card001{
    width: 190px;
    height: 50px;
  }    
  .card002{
    width: 190px;
    height: 50px;
  }    
  .card001 h3 {
    font-size: 14px;
  }
  .card002 h3 {
    font-size: 14px;
  }

  .para{
    height: fit-content;
    width: 100%; 
    background-color: #fdfdfd;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
  }

  .headingmain{
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100px;
    width: 100%; 
    
  }

  .headingmain h3{
    font-size: 24px;
    line-height: 80px;
    font-weight: 300;
    letter-spacing: 1.8px;
    
    text-transform: lowercase;
    text-align: justify;
  }

  .para01{
    align-items: center;
    display: flex;
    justify-content: center;
    height: fit-content;
    width: 100%; 
  }

  .paracontent {
    height: fit-content;
    width: 86%; 
    padding:0px;
    text-align: justify;
    line-height: 20px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    
  }



  .footer-main .icons{
    padding: 26px;
  }

  .footer-main .icons a{
    height: 34px;
    width: 34px;
    padding-bottom: 10px;
    line-height:32px;
    text-align: center;
    font-size: 16px;
    color: #6f6f6f;
    border-radius: 50%;
    border: 1.2px solid  #6f6f6f;
    margin: 0 4px;
    transition: all 0.7s ease;
  }
}

/*----------------tablet ipad mini---------
-----------------------------------------*/

@media screen and (max-width: 768px) and (min-width: 740px){

  .nav {
    display: none;
  }
  .nav-mob {
    height:70px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navmobile {
    display: block;
  }

  .mob_nav_logo img{
    width: 180px;
    height: 32px;
    margin: auto;
    
  }

  .burger {
    width: 82px;
    height: 72px;
    font-size: 22px;
  }

  aside {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 100%;
    padding: 80px 55px 25px 85px;
    background-color: rgb(0, 0, 0, 0.6);
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    translate: 100% 0;
    transition: 0.3s;
  }

  .beforeabout{
    height: 400px;
    width: 100%;
    background-size: fit-content ;
    background-position: bottom bottom;
    display: flex;
    justify-content:end;
    align-items:center;
    flex-direction:column;
    text-align: center;
  }

  .beforeabout h3{
    color: #fff;
    font-size: 30px;
    line-height: 36px;
    font-weight: 300;
    letter-spacing: 1.8px;
    text-transform: lowercase;
    
  }

  .beforeabout h4{
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: lowercase;
    padding-bottom: 10px;
  }


  .aboutbrand{
    height: fit-content;
    width: 80%;
    line-height: 23px;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
  }

  .main-carousel{
    height: 550px;
  }

  .cell{
    height: 500px;
    margin: 10px 30px 0px 30px;
  }

  .cell img{
    width: fit-content;
    max-width: 100%;
    height: 560px;
    object-fit: cover;  
  }
  
  .sp04{
    display: none;
  }
  .sp03{
    display: none;
  }
  .sp02{
    display: none;
  }


  .card01{
    gap:10vw;
    height: 120px;
    padding: 0px 80px;
  }
    
  .card001 h2 {
    font-size: 14px;
  }
  .card002 h2 {
    font-size: 14px;
  }

  .para{
    height: fit-content;
    width: 100%; 
    background-color: #fdfdfd;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
  }

  .headingmain{
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100px;
    width: 100%; 
    
  }

  .headingmain h3{
    font-size: 34px;
    line-height: 80px;
    font-weight: 300;
    letter-spacing: 1.8px;
    
    text-transform: lowercase;
    text-align: justify;
  }

  .para01{
    align-items: center;
    display: flex;
    justify-content: center;
    height: fit-content;
    width: 100%; 
  }

  .paracontent {
    height: fit-content;
    width: 86%; 
    padding:0px;
    text-align: justify;
    line-height: 23px;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    
  }
}


/*----------------tablet ipad air---------
-----------------------------------------*/

@media screen and (max-width: 821px) and (min-width: 769px){

  .nav {
    display: none;
  }
  .nav-mob {
    height:70px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navmobile {
    display: block;
  }

  .mob_nav_logo img{
    width: 180px;
    height: 32px;
    margin: auto;
    
  }

  .burger {
    width: 82px;
    height: 72px;
    font-size: 22px;
  }

  aside {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 100%;
    padding: 80px 55px 25px 85px;
    background-color: rgb(0, 0, 0, 0.6);
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    translate: 100% 0;
    transition: 0.3s;
  }

  .beforeabout{
    height: 400px;
    width: 100%;
    background-size: fit-content ;
    background-position: bottom bottom;
    display: flex;
    justify-content:end;
    align-items:center;
    flex-direction:column;
    text-align: center;
  }

  .beforeabout h3{
    color: #fff;
    font-size: 30px;
    line-height: 36px;
    font-weight: 300;
    letter-spacing: 1.8px;
    text-transform: lowercase;
    
  }

  .beforeabout h4{
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: lowercase;
    padding-bottom: 10px;
  }



  .aboutbrandmain{
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .aboutbrand{
    height: fit-content;
    width: 86%;
    line-height: 23px;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
  }

  .spacebetween01{
    display: none;
  }

  .main-carousel{
    height: 550px;
  }

  .cell{
    height: 500px;
    margin: 10px 30px 0px 30px;
  }
  .sp04{
    display: none;
  }
  .sp03{
    display: none;
  }
  .sp02{
    display: none;
  }

  .para{
    height: fit-content;
    width: 100%; 
    background-color: #fdfdfd;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 50px;
  }

  .headingmain{
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100px;
    width: 100%; 
  }

  .headingmain h3{
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 4px;
    text-align: center;
  }

  .para01{
    align-items: center;
    display: flex;
    justify-content: center;
    height: fit-content;
    width: 100%; 
 
    padding: 0 40px 40px 40px;
  }
  .paracontent {
    height: 320px;
    width: 840px; 
    padding:10px;
    text-align: justify;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 4px;
    line-height: 25px;

      
  }

  .card01{
    gap:10vw;
    height: 120px;
    padding: 0px 80px;
  }
    
  .card001 h2 {
    font-size: 14px;
  }
  .card002 h2 {
    font-size: 14px;
  }

}


@media screen and (max-width: 1100px) and (min-width: 821px){
  .nav {
    display: block;
  }

  .navmobile {
    display: none;
  }

  nav {
    position: relative;
    top: 0;
    z-index: 10;
    background-color: transparent;
    transition: background-color 0.5s ease-in-out;
    height: 70px;
    width: 100%;
    justify-content: space-between;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  nav ul {
    height: 70px;
    list-style-type: none;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
    transition: 0.5s ease-in-out;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  nav ul li {
    display: flex;
    align-items: center;
    transition: background-color 0.5s ease-in-out;
    height: 70px;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  nav ul li a {
    display: block;
    padding: 0px 20px;
    color: black;
    transition: background-color 0.5s ease-in-out;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  .dropdown {
    position: relative;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(0, 0, 0, 0.6);
    min-width: 200px;
    transition: 0.5s linear;
    top: 100%;
    left: 0;
    border-radius: 0% 0% 5% 5%;
    width: 100%;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  .dropdown-link {
    height: 70px;
  }

  .dropdown-content a {
    display: block;
    padding: 15px 25px;
    color: white;
    transition: 0.5s ease-in-out;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  .dropdown:hover .dropdown-content {
    display: block;
    transition: 0.5s linear;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  .scroll-container {
    height: 3000px;
    transition: background-color 0.5s ease-in-out;
  }

  /* Before 300px */
  .navbar-before-300px {
    position: absolute;
    top: 0;
    z-index: 1;
    background-color: transparent;
    transition: 0.5s linear;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  .navbar-before-300px ul li a {
    color: white;
    transition: 0.5s linear;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  /* After 300px */
  .navbar-after-300px {
    position: fixed;
    top: 0;
    z-index: 10;
    background-color: rgb(0, 0, 0, 0.6);
    transition: 0.5s linear;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  .navbar-after-300px ul li a {
    color: white;
    transition: 0.5s linear;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  .dropdown-link.dropdown-hover,
  .navbar-yellow,
  .dropdown-content:hover {
    background-color: rgb(0, 0, 0, 0.6);
    transition: 0.5s linear;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  .dropdown-content a:hover {
    color: white;
    transition: 0.5s linear;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  .logo01 {
    width: 180px;
    height: 29px;
  }

  .beforeabout h3{
    color: #fff;
    font-size: 40px;
    line-height: 80px;
    font-weight: 300;
    letter-spacing: 1.8px;
    text-transform: lowercase;
    padding-bottom: 10px;
  }

  .brandvalueheading h3{
    color:#000000;
    font-size: 34px;
    line-height: 80px;
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: lowercase;
  }

  .aboutbrandmain{
    height: 160px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    
  }

  .aboutbrand{
    height: fit-content;
    width: 80%;
    line-height: 23px;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
  }


  .cell{
    width: auto;
    height: 560px;
    margin: 30px 10px 0px 10px;
    overflow: hidden;
    object-fit: cover;
    background-repeat: no-repeat;
    position: relative;
  }

  .cell img{
    width: fit-content;
    height: 560px;
    object-fit: cover;
    
  }

  .para{
    height: fit-content;
    width: 100%; 
    background-color: #fdfdfd;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .headingmain{
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100px;
    width: 100%; 
  }

  .headingmain h3{
    font-size: 32px;
    line-height: 80px;
    font-weight: 300;
    letter-spacing: 1.8px;
    text-transform: lowercase;
    text-align: justify;
  }

  .para01{
    align-items: center;
    display: flex;
    justify-content: center;
    height: fit-content;
    width: 100%; 
  }

  .paracontent {
    height: fit-content;
    width: 80%; 
    padding:0px;
    text-align: justify;
    line-height: 23px;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;

  }

}



@media screen and (max-width: 1200px) and (min-width: 1100px){
  .nav {
    display: block;
  }

  .navmobile {
    display: none;
  }

  nav {
    position: relative;
    top: 0;
    z-index: 10;
    background-color: transparent;
    transition: background-color 0.5s ease-in-out;
    height: 70px;
    width: 100%;
    justify-content: space-between;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  nav ul {
    height: 70px;
    list-style-type: none;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
    transition: 0.5s ease-in-out;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  nav ul li {
    display: flex;
    align-items: center;
    transition: background-color 0.5s ease-in-out;
    height: 70px;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  nav ul li a {
    display: block;
    padding: 0px 20px;
    color: black;
    transition: background-color 0.5s ease-in-out;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  .dropdown {
    position: relative;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(0, 0, 0, 0.6);
    min-width: 200px;
    transition: 0.5s linear;
    top: 100%;
    left: 0;
    border-radius: 0% 0% 5% 5%;
    width: 100%;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  .dropdown-link {
    height: 70px;
  }

  .dropdown-content a {
    display: block;
    padding: 15px 25px;
    color: white;
    transition: 0.5s ease-in-out;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  .dropdown:hover .dropdown-content {
    display: block;
    transition: 0.5s linear;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  .scroll-container {
    height: 3000px;
    transition: background-color 0.5s ease-in-out;
  }

  /* Before 300px */
  .navbar-before-300px {
    position: absolute;
    top: 0;
    z-index: 1;
    background-color: transparent;
    transition: 0.5s linear;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  .navbar-before-300px ul li a {
    color: white;
    transition: 0.5s linear;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  /* After 300px */
  .navbar-after-300px {
    position: fixed;
    top: 0;
    z-index: 10;
    background-color: rgb(0, 0, 0, 0.6);
    transition: 0.5s linear;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  .navbar-after-300px ul li a {
    color: white;
    transition: 0.5s linear;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  .dropdown-link.dropdown-hover,
  .navbar-yellow,
  .dropdown-content:hover {
    background-color: rgb(0, 0, 0, 0.6);
    transition: 0.5s linear;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  .dropdown-content a:hover {
    color: white;
    transition: 0.5s linear;
    -webkit-backdrop-filter: blur(1px);
    -moz-backdrop-filter: blur(1px);
    -ms-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }

  .logo01 {
    width: 180px;
    height: 29px;
  }

  .beforeabout h3{
    color: #fff;
    font-size: 40px;
    line-height: 80px;
    font-weight: 300;
    letter-spacing: 1.8px;
    text-transform: lowercase;
    padding-bottom: 10px;
  }

  .brandvalueheading h3{
    color:#000000;
    font-size: 34px;
    line-height: 80px;
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: lowercase;
  }

  .aboutbrandmain{
    height: 160px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    
  }

  .aboutbrand{
    height: fit-content;
    width: 80%;
    line-height: 23px;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
  }


  .cell{
    width: auto;
    height: 560px;
    margin: 30px 10px 0px 10px;
    overflow: hidden;
    object-fit: cover;
    background-repeat: no-repeat;
    position: relative;
  }

  .cell img{
    width: fit-content;
    height: 560px;
    object-fit: cover;
    
  }

  .para{
    height: fit-content;
    width: 100%; 
    background-color: #fdfdfd;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .headingmain{
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100px;
    width: 100%; 
  }

  .headingmain h3{
    font-size: 32px;
    line-height: 80px;
    font-weight: 300;
    letter-spacing: 1.8px;
    text-transform: lowercase;
    text-align: justify;
  }

  .para01{
    align-items: center;
    display: flex;
    justify-content: center;
    height: fit-content;
    width: 100%; 
  }

  .paracontent {
    height: fit-content;
    width: 70%; 
    padding:0px;
    text-align: justify;
    line-height: 23px;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;

  }

}

@media (min-width: 1201px) {
  .nav {
    display: block;
  }

  .navmobile {
    display: none;
  }
}
