:root {

  --red-orange-color-wheel: hsl(17, 96%, 48%);
  --middle-blue-green: hsl(167, 45%, 72%);
  --smokey-black: hsl(0, 0%, 7%);
  --spanish-gray: hsl(0, 0%, 60%);
  --granite-gray: hsl(0, 0%, 40%);
  --tan-crayola: hsl(27, 46%, 58%);
  --light-gray: hsl(0, 0%, 80%);
  --black_10: hsla(0, 0%, 0%, 0.1);
  --black_25: hsla(0, 0%, 0%, 0.25);
  --black_50: hsla(0, 0%, 0%, 0.4);
  --black_70: hsla(0, 0%, 0%, 0.7);
  --cultured: hsl(220, 16%, 96%);
  --manatee: hsl(218, 11%, 65%);
  --black: hsl(0, 0%, 0%);
  --white: hsl(0, 0%, 100%);
  --first-color: hsl(82, 60%, 28%);
  --title-color: hsl(0, 0%, 15%);
  --text-color: hsl(0, 0%, 35%);
  --body-color: hsl(0, 0%, 95%);
  --container-color: hsl(0, 0%, 100%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --h2-font-size: 1.25rem;
  --small-font-size: .813rem;

  /**
   * typography
   */
  @font-face {
    font-family: Gilroy-SemiBold;
    src: url(Fonts/Gilroy-SemiBold.ttf);
  }

  @font-face {
    font-family: Gilroy-Black;
    src: url(Fonts/Gilroy-Black.ttf);
  }

  @font-face {
    font-family: Gilroy-Medium;
    src: url(Fonts/Gilroy-Medium.ttf);
  }

  @font-face {
    font-family: Gilroy-Light;
    src: url(Fonts/Gilroy-Light.ttf);
  }

  --ff-roboto: 'Roboto',
  sans-serif;
  
  --fs-1: 6rem;
  --fs-2: 3rem;
  --fs-3: 2rem;
  --fs-4: 1.8rem;
  --fs-5: 1.4rem;
  --fs-6: 1.2rem;

  --fw-700: 700;
  --fw-500: 500;

  /**
   * spacing
   */

  --section-padding: 50px;

  /**
   * shadow
   */

  --shadow: 0 0 2px hsla(0, 0%, 0%, 0.2);

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a,
img,
span,
input,
button,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-family: var(--ff-roboto);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--black);
  font-size: 1.6rem;
  line-height: 1.7;
}

body.active {
  overflow: hidden;
}

:focus-visible {
  outline-offset: 4px;
}

::placeholder {
  color: var(--manatee);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 98%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(0, 0%, 70%);
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/
* {

  font-family: Gilroy-SemiBold;
}

.container {
  padding-inline: 15px;
}

.social-wrapper {
  display: flex;
  align-items: center;
}

.social-list {
  display: flex;
  gap: 30px;
}

.social-link {
  transition: var(--transition-1);
}

.social-link:is(:hover, :focus) {
  color: var(--tan-crayola);
}

.section {
  padding-block: var(--section-padding);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
  overflow: hidden;
}

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

.h2,
.h3 {
  color: var(--smokey-black);
  font-weight: var(--fw-500);
  line-height: 1.4;
}

.h2 {
  font-size: var(--fs-2);
}

.h3 {
  font-size: var(--fs-3);
}

.grid-list {
  display: grid;
  gap: 35px;
}

.has-before {
  position: relative;
  z-index: 1;
}

.has-before::before {
  content: "";
  position: absolute;
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .input-wrapper {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding-block: 15px;
  z-index: 4;
}

.header.active {
  position: fixed;
  transform: translateY(-100%);
  box-shadow: var(--shadow);
  animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  font-size: 1.9rem;
  font-weight: var(--fw-700);
}

.header-action {
  display: flex;
  gap: 15px;
}

.header-action-btn {
  position: relative;
  font-size: 24px;
  transition: var(--transition-1);
}

.header-action-btn:is(:hover, :focus) {
  color: var(--tan-crayola);
}

.header-action-btn .btn-badge {
  background-color: var(--tan-crayola);
  color: var(--white);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
  position: absolute;
  bottom: -10px;
  right: -10px;
  padding-inline: 6px;
  border-radius: 50%;
}





/*-----------------------------------*\
  #SIDEBAR
\*-----------------------------------*/

.sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  max-width: 420px;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  padding: 40px;
  padding-block-end: 100px;
  overflow-y: auto;
  z-index: 5;
  visibility: hidden;
  transition: 0.25s var(--cubic-in);
}

.sidebar.active {
  transform: translateX(-420px);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
}

.nav-close-btn {
  font-size: 30px;
}

.sidebar .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-block: 40px 75px;
}

.sidebar-list-title,
.contact-list-title,
.social-list-title {
  color: var(--smokey-black);
  font-weight: var(--fw-500);
}

.sidebar-list-title {
  margin-block-end: 15px;
}

.sidebar-link {
  color: var(--spanish-gray);
  margin-block-start: 6px;
  transition: var(--transition-1);
}

.sidebar-link:is(:hover, :focus) {
  color: var(--tan-crayola);
}

.navbar {
  margin-block-end: 60px;
}

.navbar-item:not(:last-child) {
  margin-block-end: 15px;
}

.navbar-link {
  font-weight: var(--fw-500);
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus),
.sidebar :is(.address, .contact-item) {
  color: var(--granite-gray);
}

.sidebar .address {
  margin-block-start: 20px;
}

.sidebar .social-wrapper {
  justify-content: space-between;
  margin-block-start: 50px;
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black_70);
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  padding-block-start: calc(var(--section-padding) + 10px);
}

.hero-list {
  display: grid;
  gap: 15px;
}

.hero-card {
  position: relative;
}

.hero-card .img-cover {
  transition: var(--transition-2);
}

.hero-card:is(:hover, :focus) .img-cover {
  transform: scale(1.1);
}

.hero-card .card-content {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
}

.hero-card :is(.card-title, .card-text) {
  font-weight: var(--fw-500);
}

.hero-card .card-title {
  font-size: var(--fs-3);
  transition: var(--transition-1);
}

.hero-card .card-title:is(:hover, :focus) {
  color: var(--tan-crayola);
}





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
  margin-top: -9vh;
  text-align: center;
}
.section-text {
  font-size: 2vh;
}
.about .section-title {
  font-family: var(--ff-mr_de_haviland);
  font-size: 12vh;
  font-weight: var(--fw-500);
}

.about .section-text {
  margin-block: 1px 4px;
}

.about-card {
  position: relative;
}

.about-card .img-cover {
  transition: var(--transition-2);
}

.about-card:is(:hover, :focus) .img-cover {
  transform: scale(1.1);
}

.about-card .play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  color: var(--white);
  font-size: 80px;
  transition: var(--transition-2);
}

.about-card:is(:hover, :focus) .play-btn {
  background-color: var(--black_50);
}





/*-----------------------------------*\
  #PRODUCT
\*-----------------------------------*/

.product .section-title {
  text-align: center;
}

.filter-btn-list {
  margin-block: 20px 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn-item {
  position: relative;
  display: flex;
}

.filter-btn-item:not(:last-child)::after {
  content: "|";
  margin-inline: 15px;
}

.filter-btn {
  transition: var(--transition-1);
}

.filter-btn.active {
  color: var(--tan-crayola);
}

.product-card {
  text-align: center;
}

.product-card .card-banner::before {
  inset: 0;
  background-color: var(--black_10);
  opacity: 0;
  transition: var(--transition-1);
}

.product-card .card-banner:is(:hover, :focus-within)::before {
  opacity: 1;
}

.product-card .card-action-list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100%);
  display: flex;
  gap: 15px;
  opacity: 0;
  transition: var(--transition-2);
}

.product-card .card-banner:is(:hover, :focus-within) .card-action-list {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.product-card .card-action-btn {
  background-color: var(--white);
  font-size: 22px;
  padding: 12px;
  border-radius: 50%;
  transition: var(--transition-1);
}

.product-card .card-action-btn:is(:hover, :focus) {
  color: var(--tan-crayola);
}

.product-card .badge-list {
  position: absolute;
  top: 15px;
  left: 15px;
}

.product-card .badge {
  color: var(--white);
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  line-height: 45px;
  margin-block-end: 10px;
}

.product-card .badge.orange {
  background-color: var(--red-orange-color-wheel);
}

.product-card .badge.cyan {
  background-color: var(--middle-blue-green);
}

.product-card .card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--black);
  color: var(--white);
  font-weight: var(--fw-500);
  padding-inline: 15px;
}

.product-card .h3 {
  font-size: unset;
}

.product-card .card-title {
  color: var(--smokey-black);
  font-weight: var(--fw-500);
  margin-block: 18px 5px;
  transition: var(--transition-1);
}

.product-card .card-title:is(:hover, :focus) {
  color: var(--tan-crayola);
}

.product-card .card-price {
  display: flex;
  justify-content: center;
  gap: 15px;
  color: var(--granite-gray);
  font-size: var(--fs-4);
}

.product-card .card-price .del {
  color: var(--spanish-gray);
}

.product-list>* {
  display: none;
}

.product-list[data-filter="all"]>*,
.product-list[data-filter="accessory"]>.accessory,
.product-list[data-filter="decoration"]>.decoration,
.product-list[data-filter="furniture"]>.furniture {
  display: block;
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog .title-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 50px;
  margin-block-end: 50px;
}

.blog .btn-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: var(--fw-500);
  transition: var(--transition-1);
}

.blog .btn-link:is(:hover, :focus) {
  color: var(--tan-crayola);
}

.blog-card .card-banner {
  position: relative;
}

.blog-card .card-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--white);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 15px;
  transform: translateX(100%);
  transition: var(--transition-2);
}

.blog-card:is(:hover, :focus) .card-btn {
  transform: translateX(0);
}

.blog-card .card-title {
  margin-block: 20px 10px;
  transition: var(--transition-1);
}

.blog-card .card-title:is(:hover, :focus) {
  color: var(--tan-crayola);
}

.blog-card .card-meta-list {
  display: flex;
  align-items: center;
}

.card-meta-item {
  position: relative;
  color: var(--granite-gray);
  font-size: var(--fs-5);
}

.card-meta-item:not(:last-child)::after {
  content: "/";
  margin-inline: 8px;
  color: var(--spanish-gray);
}

.card-meta-text {
  display: inline-block;
  color: var(--black);
  transition: var(--transition-1);
}

a.card-meta-text:is(:hover, :focus) {
  color: var(--tan-crayola);
}

/*-----------------------------------*\
  #NEWSLATTER
\*-----------------------------------*/

.newsletter {
  --section-padding: 20px;
  background-color: var(--cultured);
}

.newsletter-card {
  padding-inline: 15px;
}

.newsletter-card .card-content {
  margin-block-end: 40px;
}

.newsletter .section-title {
  margin-block-end: 8px;
}

.newsletter-card .h2 {
  --fs-2: 2.6rem;
}

.newsletter .card-form {
  position: relative;
}

.newsletter-card .email-field {
  background-color: var(--white);
  padding-block: 14px;
  padding-inline: 20px 50px;
  outline: 3px solid transparent;
  outline-offset: 0;
  transition: var(--transition-1);
}

.newsletter-card .email-field:focus {
  outline-color: var(--black_25);
}

.newsletter-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding-inline: 20px;
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer-top {
  display: grid;
  gap: 30px;
  padding-block-end: 40px;
}

.footer-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-link {
  padding-block: 4px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus) {
  color: var(--tan-crayola);
}

.footer-brand .social-list {
  margin-block-start: 30px;
}

.footer-list-title {
  color: var(--smokey-black);
  font-size: var(--fs-4);
  font-weight: var(--fw-500);
  margin-block-end: 15px;
}

.footer-form {
  position: relative;
}

.footer .email-field {
  padding-block: 10px;
  padding-inline-end: 35px;
  border-block-end: 1px solid var(--black_25);
  outline: none;
}

.footer .email-field:focus {
  border-color: var(--tan-crayola);
}

.footer-form-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 20px;
  color: var(--granite-gray);
}

.footer-list .wrapper {
  display: flex;
  gap: 20px;
  margin-block-start: 20px;
}

.copyright {
  text-align: center;
  padding-block: 20px;
}

.copyright-link {
  display: inline-block;
}

/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--tan-crayola);
  color: var(--white);
  font-size: 24px;
  padding: 18px;
  border-radius: 50%;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}
/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {

  .container {
    max-width: 575px;
    width: 100%;
    margin-inline: auto;
  }

  .grid-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
  }

  .grid-list>li:last-child {
    grid-column: span 2;
    max-width: calc(50% - 12.5px);
    width: 100%;
    margin-inline: auto;
  }
  /**
   * HEADER
   */

  .header .container {
    gap: 35px;
  }

  .header .input-wrapper {
    display: block;
    position: relative;
  }

  .header .input-field {
    padding-block: 10px;
    padding-inline-end: 30px;
    border-block-end: 1px solid var(--black_25);
    outline: none;
    transition: var(--transition-1);
  }

  .header .input-field::-webkit-search-cancel-button {
    display: none;
  }

  .header .input-field:focus {
    border-block-end-color: var(--tan-crayola);
  }

  .header .input-wrapper ion-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 24px;
  }

  .header-action {
    gap: 25px;
  }

  /**
   * NEWSLETTER
   */

  .newsletter {
    background: none;
  }

  .newsletter-card {
    background-color: var(--cultured);
    padding: 20px 30px;
  }

  /**
   * FOOTER
   */

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

}

/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 768px;
  }

  /**
   * HEADER
   */

  .header-action {
    gap: 35px;
  }

  .header .input-wrapper {
    width: 200px;
  }
  /**
   * HERO
   */

  .hero-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .hero-list .colspan-2 {
    grid-column: span 2;
  }

  /**
   * ABOUT
   */

  .about .section-text {
    margin-block-end: 75px;
  }

  /**
   * PRODUCT
   */

  .product .title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-block-end: 80px;
  }

  .filter-btn-list {
    margin: 0;
  }

  /**
   * NEWSLETTER
   */

  .newsletter-card {
    padding: 50px 70px;
  }

}

/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 992px;
  }

  .grid-list>li:last-child {
    all: unset;
  }

  .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /**
   * HERO
   */

  .hero-card .card-title {
    --fs-3: 2.2rem;
  }

  /**
   * ABOUT
   */

  .about .section-text {
    max-width: 109ch;
    margin-inline: auto;
  }

  /**
   * NEWSLETTER
   */

  .newsletter {
    --section-padding: 20px;
  }

  .newsletter-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
  }

  .newsletter-card .card-content {
    margin-block-end: 0;
  }
  /**
   * FOOTER
   */

  .footer-top {
    grid-template-columns: 1fr 0.75fr 0.6fr 1fr;
    padding-block-end: 60px;
  }

}

/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 3.6rem;

  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1200px;
  }

  /**
   * PRODUCT
   */

  .product-list {
    grid-template-columns: repeat(4, 1fr);
  }

}
.off h1{
  align-items: center;
  justify-content: center;
  font-size: 3vh;
  margin-left: 46%;
  
}
.off img{
  align-items: center;
  justify-content: center;
  margin-left: 3%;
}
.services-1 {
  padding: 20px;
  text-align: center;
}
.services-1 h1 {
font-size: 3vh;
}
.services-1 h2 {
  margin-bottom: 20px;
}

.service-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  justify-items: center;
}

.service-item {
  text-align: center;
}

.service-item img {
  width: 100px;
  height: 100px;
}

.service-item p {
  margin-top: 10px;
  text-decoration: underline;
}

.sticky-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.sticky-btn {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 15px;
  background-color: #ffffff;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}

.sticky-btn img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.sticky-btn.call-btn {
  background-color: #1367d4ef;
}

.sticky-btn.whatsapp-btn {
  background-color: #25D366;
}

.sticky-btn:hover {
  background-color: #0056b3;
}

.sticky-btn.whatsapp-btn:hover {
  background-color: #4f9461;
}

@media (max-width: 768px) {
  .services-1 {
    margin-top: 2vh;
  }
  .off img{
    align-items: center;
    justify-content: center;
    margin-left:9%;
    
  }
  .off h1{
    align-items: center;
    justify-content: center;
    font-size: 3vh;
    margin-left:35%;
    
  }
  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav-active {
    display: flex;
    flex-direction: column;
  }
}





/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container1 {
    margin-inline: 1rem;
  }
  .card_title_1{
    font-size: 2vh;
  
  }
  .card__data {
    width: 250px;
    padding: 1rem;
  }
}

/* For medium devices */
@media screen and (min-width: 768px) {
  .card__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }
  .card_title_1{
    font-size: 2vh;
  
  }
}

/* For large devices */
@media screen and (min-width: 1120px) {
  .container1 {
    height: 50vh;
  }
  .card_title_1{
    font-size: 2vh;
  
  }
  .card__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .card__img {
    width: 348px;
  }

  .card__data {
    width: 316px;
    padding-inline: 2.5rem;
  }
}


/*-------------HOME---------------*/

.main-con {
  width: 100%;
  height: 100%;
  display: flex;
}

.lft {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2vh;
  padding-left: 9vw;
  width: 60%;
  height: 100%;
}

.lft h1 {
  font-size: 3vw;
  color: #333;
  font-family: Gilroy-Black;
}

.lft h1:nth-child(2) {
  font-family: Gilroy-Light;
}

.lft p {
  width: 40vw;
  color: #000000;
}

.lft .search {
  width: 25vw;
  padding: 1.5vw 1vw;
  justify-content: space-between;
}

.lft .search input {
  width: 25vw;
}

.lft .search i {
  color: #ff8000dd;
}

.lft button {
  width: 8vw;
  padding: 1vw 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #585654;
  color: #fff;
  border: none;
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.rght {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  height: 100%;
  /* background-color: #FF8000; */
}

#background {
  width: 33vw;
}

#all-plate {
  position: absolute;
  width: 30vw;
  height: 30vw;
  /* background-color: #FF8000; */
  animation: circle 15s infinite linear;
}

#img-three {
  width: 18vw;
  position: absolute;
  top: 0%;
  left: -12%;
  animation: circle 20s infinite linear;
}

#img-two {
  width: 20vw;
  position: absolute;
  bottom: -18%;
  right: 0%;
  animation: circle 20s infinite linear;
}

#img-one {
  width: 14vw;
  position: absolute;
  top: 3%;
  right: -15%;
  animation: circle 20s infinite linear;
}

@keyframes circle {
  0% {
    rotate: 0deg;
  }

  100% {
    rotate: 360deg;
  }
}

.ri-menu-3-line {
  display: none;
}

@media (max-width:500px) {
  .main-con {
    height: auto;
    min-height: 80vh;
    flex-direction: column;
  }

  .rght {
    width: 100%;
    height: 40vh;
  }

  #background {
    width: 92vw;
  }

  #all-plate {
    width: 50vw;
    height: 50vw;
  }

  #img-one {
    width: 40vw;
    right: -50%;
  }

  #img-three {
    width: 30vw;
    left: -40%;
    top: -15%;
  }

  #img-two {
    width: 40vw;
    bottom: -50%;
    right: 44%;
  }

  .lft {
    margin-top: -13vh;
    width: 100%;
    height: 60vh;
    gap: 0vh;
  }

  .lft h1 {
    font-size: 6vw;
  }

  .lft p {
    width: 80vw;
    font-size: 3vw;
    margin-top: 3vh;
    margin-bottom: 3vh;
  }

  .lft .search {
    padding: 1vw 2vw;
    width: 70vw;
    height: 10vw;
  }

  .lft .search input {
    width: 70vw;
  }

  .lft .search i {
    font-size: 5vw;
  }

  .lft button {
    margin-top: 1.5vh;
    width: 30vw;
    height: 10vw;
  }
}



.team{
	position: relative;
	width: 100%;
	height: 62vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.team-content{
	width: 100%;
	max-width: 1350px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, auto));
	align-items: center;
	gap: 2rem;
	text-align: center;
	margin-top: 4rem;
}
.team-content img{
	width: 100%;
	height: auto;
	border-radius: 15px;
	margin-bottom: 15px;
}
.center h1{
	color: #444141;
	font-size: 4rem;
	text-align: center;
}
.box{
	padding: 16px;
	background: #292828;
	border-radius: 15px;
	transition: all .38s ease;
}
.box h3{
	font-size: 23px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 8px;
}
.box h5{
	font-size: 15px;
	font-weight: 600;
	color: #f1f1f1;
	margin-bottom: 15px;
	letter-spacing: 2px;
}
.icons i{
	display: inline-block;
	color: #fff;
	font-size: 20px;
	margin: 0 8px;
	transition: all .38s ease;
}
.icons i:hover{
	transform: scale(1.2);
}
.box:hover{
	transform: translateY(-10px);
	cursor: pointer;
}

@media(max-width: 1240px){
	.team{
		width: 100%;
		height: auto;
		padding: 90px 2%;
	}
	.center h1{
		font-size: 3.2rem;
	}
}
.ban {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Ensures that any overflow is hidden */
}

.ban img {
  width: 50%; /* Default size for desktop */
  height: auto; /* Maintains the aspect ratio */
}

@media (max-width: 768px) { /* Adjust the max-width as needed for your design */
  .ban img {
    width: 100%; /* Full size for mobile */
  }
}


.slider-area h2 {
	text-align: center;
	font-family: impact;
	font-size: 30px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0px 0 0px 0;
	color: #131212;
}
.wrapp {
	display: flex;
	width: 60%;
	overflow: hidden;
	padding: 1.3rem;
	border-radius: 20px;
margin-left: 74vh;
	box-sizing: 3vw;

}
.item.img {
	object-fit: contain;
	mix-blend-mode: color-burn;
}
.item {
	animation: animate 10s alternate linear infinite;
}
.container:hover .item {
	animation-play-state: paused;
}
@keyframes animate {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-310px, 0, 0);
	}
}
@media (max-width:767px) {
	.slider-area h2 {
		font-size: 30px;
    margin-top: 5vh;
	}
	.wrapp {
		width: 90%;
    margin-top: 2vh;
    margin-left: -2vw;
		border-radius: 0;
		padding: 0;
	}
  .item {
    animation: animate 10s alternate linear infinite;
  }
  .container:hover .item {
    animation-play-state: paused;
  }
  @keyframes animate {
    0% {
      transform: translate3d(60, 0, 0);
    }
    100% {
      transform: translate3d(-250px, 0, 0);
    }
  }
}
.tags h6{
  font-size: 1px;
  color: #ffff;
}

