@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* font-family: "Poppins", sans-serif; */
  font-family: "Montserrat", sans-serif;

}

:root {

  --secondary-color: #ff563c;
  --primary-color: #2f2e33;
  --para-shade: #7c7c7c;
  --text-color: #ccb5fe;
  --white-shade: #f0f0f0;
  --grey-shade: #e7e7e7;

}

body {
  position: relative;
  background-color: var(--primary-color);
}

a{
  text-decoration: none;
}

/* scroll  */
.scroll-up {
  background-color: var(--secondary-color, #fff);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: var(--black-shade);
  font-size: 24px;
  opacity: 0;
  pointer-events: none;
}

.scroll-up.show {
  opacity: 1;
  pointer-events: auto;
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring-bg,
.progress-ring-circle {
  fill: none;
  stroke-width: 2;
  r: 26;
  cx: 30;
  cy: 30;
}

.progress-ring-bg {
  stroke: #dd4024;
}

.progress-ring-circle {
  stroke: #2F2E34;
  stroke-linecap: round;
  stroke-dasharray: 163.36;
  stroke-dashoffset: 163.36;
  transition: stroke-dashoffset 0.3s ease;
}


/* navigaition */




.navigation {

  z-index: 100;
  background-color: var(--white-shade);
  box-shadow: 0px 0px 5px #00000020;
  background-color: var(--white-shade);
  position: fixed;


}

.nav-bar {
  padding: 15px 0px;
  position: relative;
  top: 0;

}




.logo {
  height: 40px;
}



.logo img {
  object-fit: cover;
  z-index: 2;
}

.search-box {
  border: none;
  outline: none;
  box-shadow: none;
  width: 160px;
}



.search-box::placeholder {
  color: var(---grey-shade);
  font-size: 16px;
  font-weight: 200;
}

.search-box:focus::placeholder {
  color: transparent;
}

.search-container {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  border-radius: 30px;
}

.divider {
  height: 90%;
  width: 1px;
  background-color: var(--primary-color);
  margin: 0 12px;
}

.search-icon {
  font-size: 18px;
  color: var(--primary-color);
  cursor: pointer;
}

.nav-items-list {
  gap: 40px;
}

.nav-item {
  font-size: 16px;
  font-weight: 300;
  color: var(--primary-color);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  /* position: relative; */
  padding: 16px 0;



}

.nav-item:hover {
  color: var(--secondary-color);


}





.bar {
  cursor: pointer;
}


.bar_all {
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: space-around;
  align-items: end;
  flex-direction: column;
  cursor: pointer;
}

.bar-1 {
  background-color: black;
  height: 2px
}

.bar-2 {
  width: 90%;
}

.bar-3 {
  width: 70%;
}

.bar-4 {
  width: 50%;
}



/* dropdown_all_all  */

.dropdown_all {
  padding: 10px 0;
  position: relative;

}

.sub-menu {
  position: absolute;
  top: 80%;
  left: -20px;
  opacity: 0;
  visibility: hidden;
  width: 200px;
  background: #fafafabc;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  filter: drop-shadow(0 0px 5px rgba(0, 0, 0, 0.112));
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(20px);
}


.dropdown_all:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.sub-li {
  position: relative;
  height: 30px;



}

.sub-menu-list {
  position: relative;
  width: 100%;
  padding: 20px 50px 10px 20px;
}

.right-style {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: var(--white-shade);
  z-index: -1;
}

.right-style img {
  width: 100%;
  object-fit: cover;
  transition: unset;
}






.nav-item1 {
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  position: absolute;
  width: fit-content;
  font-size: 18px;
  width: 100%;



}



.sub-li:hover .nav-item1 {
  transform: translateX(20px);
}






.dropdown_all:hover .sub-menu-shop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.nav-item-shop {
  font-weight: 400;
  color: var(--white-shade);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.show-item-shop {
  font-weight: 400;
  color: var(--primary-color);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  position: absolute;
  width: fit-content;
  font-size: 18px;
  transition: all 0.3s ease;
  width: 100%;
}

.sub-li:hover .show-item-shop {
  transform: translateX(20px);
}


.sub-li-acces {
  width: 100%;
  height: 30px;
}

.sub-menu-acces {
  width: 60vw;
  left: -25vw;
  border-radius: 30px;
  background: #fafafad9;

}

.li-shop {
  position: relative;
  width: 50%;
}

.sub-cata-menu {
  height: 50px;
  padding: 20px;
  background-color: var(--primary-color);

}

.sub-menu-accesories {
  width: 100%;
  position: absolute;
}

.sub-menu-shop {
  position: absolute;
  top: 80%;
  width: 50vw;
  left: -20vw;
  opacity: 0;
  visibility: hidden;
  background: #fafafade;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.538);
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  transform: translateY(20px);
  
}






/* hero section */

.hero-section {
  position: relative;
  background-color: #efefef;
  height: 100vh;
}

.hero {
  padding: 150px 0 50px 0;
  padding-bottom: 50px;
  z-index: 1;
  position: relative;


}



.hero-title {
  font-size: clamp(60px, 15vw, 150px);
  font-weight: 900;
  line-height: 0.9;
  color: var(--primary-color);
  text-transform: uppercase;
}

.hero-para {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--primary-color);
  text-transform: uppercase;
  z-index: 7;
}


.hero-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-container .fake-div {
  background-color: #2f2e3492;
  backdrop-filter: blur(1px);
}









.hero-content2 {
  width: 0%;
  position: absolute;
  right: 0;
  background-color: violet;
}

.hero-content2-1 {

  position: relative;
  background-color: #dd4024;
  width: 0%;
}




.time-cs {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 16px;
  color: var(--primary-color);
  position: absolute;
  rotate: 90deg;
  white-space: nowrap;
  right: -188px;

}

.fake-div {
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: #ed142399;
  backdrop-filter: blur(4px);
}

/* hero tag scroll  */






/* video container  */

.video-container {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;

}

.overlayvc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.btn-secondary {
  background: var(--secondary-color);
  padding: 10px 20px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  border: none;
  border-radius: 8px;
  color: var(--white-shade);

}

/* about-section */



.about-section {

  background-color: var(--white-shade);


}

.about {
  padding: 100px 0;
  position: relative;
}



.about-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.about-subtitle {
  font-size: calc(18px + 1.5vw);
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
}

.about-content {
  z-index: 2;
}

.section-about__img {
  object-fit: cover;
  object-position: center;
  z-index: 1;
  width: 70%;
  height: 600px;

}


.about-para {
  font-size: 18px;
  color: var(--para-shade);
  text-wrap: balance;


}

.about-title-2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
}

.about-item {
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
}

.about-item-img {
  font-size: 40px;
}

.about-item-img-1 {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: #9d9a9a8c;
}

.about-content-3 {
  position: relative;
  height: 250px;
}

.about-image-2 {
  height: 100%;
  left: -180px;
  position: absolute;
  border: 30px solid var(--white-shade);


}

.about-img-grid {
  height: 100%;
}

.about-image-2-1 {
  background-image: url("https://cdn.pixabay.com/photo/2015/08/27/09/06/bike-909690_1280.jpg");
  background-size: cover;
  background-position: center;
  height: 100%;

}

.about-image-2-2 {
  background-image: url("https://cdn.pixabay.com/photo/2015/08/27/09/06/bike-909690_1280.jpg");
  background-size: cover;
  background-position: center;
  height: 100%;
}


/* accessories product  */

.latest-section {
  background-color: var(--white-shade);
}

.all-catogories {
  font-size: 48px;
  font-weight: 700;
  color: var(--white-shade);
  text-transform: uppercase;
}

.latest-container {
  padding: 50px 0;
  /* background-color: var(--primary-color); */
}

.view-all p {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
  /* text-transform:capitalize; */
  text-decoration: none;
  cursor: pointer;
}


.horizontal-line {
  height: 0.5px;
  background-color: #2f2e344b;
}

.latest-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: capitalize;

}

.latest-para {
  font-size: 16px;
  font-weight: 300;
  color: var(--para-shade);
  text-align: center;
  text-wrap: balance;
  letter-spacing: 0.3;
}

.latest-item {
  padding: 15px;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0px 0px 5px #00000020;
  transition: all 0.3s ease;
  position: relative;
}

.latest-item-seen {
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 14px;
  text-transform: capitalize;
  background-color: var(--secondary-color);
  color: var(--white-shade);
  border: none;
  cursor: pointer;
  top: 20px;
  right: 20px;
  z-index: 2;
  position: absolute;
}

.latest-item-img {
  height: 200px;
  border-radius: 10px;
  background-color: var(--white-shade);
  backdrop-filter: blur(8px);
  position: relative;

}

/* carasoul  */


.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
}

.card1 {
  border-radius: 10px;
  overflow: hidden;


}

.card1 img {
  height: 100%;
  width: 80%;
  object-fit: cover;
  object-position: center;
}

.card-btn {
  text-align: center;
  margin-top: 15px;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}

.btn-cara {
  background-color: transparent;
  color: var(--para-shade);
  padding: 5px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.dots {
  height: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 3px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--para-shade);
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--secondary-color);
}





.latest-title-2-1-fake {
  font-size: 12px;
  font-weight: 500;
  color: var(--para-shade);
  text-transform: uppercase;
  text-decoration: line-through;

}

.latest-title-2-1 {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
}

.latest-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: capitalize;
}

.latest-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--primary-color);
  text-transform: capitalize;
}

.text-truncate-line {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-height: 1.2em;
}

.detail_anchor {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
}

.latest-btn {

  text-decoration: none;

  font-weight: 400;
  outline: none;
  border: none;
  color: var(--white-shade);
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 10px
}

.latest-btn:hover {
  cursor: pointer;
}



.latest-content-2-1::-webkit-scrollbar {
  height: 5px;
  background-color: var(--primary-color);
}

.latest-content-2-1::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
}

.latest-content-2-1::-webkit-scrollbar-thumb:hover {
  background-color: var(--white-shade);
  cursor: grabbing;
}

.latest-content-2-1::-webkit-scrollbar-track {
  background-color: var(--primary-color);
  border-radius: 30px;

}

/* hero title  */


.hero-tag-section {
  background-color: var(--white-shade);
  padding: 50px 0;

}



.hero-tag {
  z-index: 2;
  border-radius: 30px;
}


.hero-tag-title {
  font-size: 40px;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
}


.hero-tag-item {
  height: 200px;
  color: var(--primary-color);
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  position: relative;
  box-shadow: 0px 0px 5px #00000020;
}

.hero-img-container img {
  width: 80%;
  object-fit: cover;
  object-position: center;
  scale: 1.4;
  transition: all 0.3s ease;
  overflow: hidden;

}

.model-name-1 {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 18px;
}

.hero-tag-item:hover img {
  scale: 1.3;
}

.hero-tag-carousel-wrapper {
  position: relative;

}

.hero-tag-carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.hero-tag-item {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border: none;
  height: 100px;
  width: 30px;
  font-size: 24px;
  cursor: pointer;
  z-index: 100;
  background-color: var(--white-shade);
  color: var(--primary-color);
  filter: drop-shadow(0px 0px 5px #00000036);
}

.scroll-btn.left {
  left: 0px;
  border-radius: 0px 20px 20px 0px;
}

.scroll-btn.right {
  right: 0px;
  border-radius: 20px 0px 0px 20px;
}

.hero-tag-carousel::-webkit-scrollbar {
  display: none;


}


.hero-tag-carousel {
  padding: 0px 35px;
}













/* show-catory-section */

.show-catory-section {
  background-color: var(--white-shade);
}

.show-catory {
  padding: 50px 0px;

}

.show-catory-1 {
  height: 500px;
  position: relative;
  border-radius: 20px;
  background: linear-gradient(to bottom, #e5feff, var(--white-shade));

}

.shop-catory-1-content {
  z-index: 2;
}


.shop-catory-img {
  object-fit: cover;
  position: absolute;
  right: 10px;
  height: 80%;
  z-index: 1;
}

.show-catory-2 {
  height: 500px;
}

.shop-catory-2-1 {
  height: 240px;
  position: relative;
  border-radius: 20px;
  background: linear-gradient(to bottom, #fce4ee, var(--white-shade));
}

.shop-catory-2-2 {
  background: linear-gradient(to bottom, #e2e8ff, var(--white-shade));

}

.shop-catory-title {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-color);
}

.shop-catory-2-1 .shop-catory-title {
  font-size: 24px;
  line-height: 1;
}

.discount {

  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgb(171, 250, 52);
  padding: 5px 10px;
  color: var(--primary-color);
  border-radius: 20px;
  z-index: 4;
  font-size: 14px;

}


.shop-catory-para {
  font-size: 16px;
  font-weight: 300;
  color: var(--para-shade);
  line-height: 1.2;
  text-wrap: balance;


}

.small-catory-p {
  font-size: 14px;
}



.shop-catory-btn1 {
  padding: 5px 12px;
  font-size: 12px;
}



/* accessories-section */

.accesories-section {
  background-color: var(--white-shade);
  padding: 50px 0;
}


.accessories-title {
  font-size: 30px;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: capitalize;
}

.accessories-item {
  padding: 15px;
  background-color: var(--grey-shade);
  border-radius: 15px;
  box-shadow: 0px 0px 5px #0000005a;
  transition: all 0.3s ease;
  position: relative;

}



.accessories-item-img {
  border-radius: 15px;
  background-color: var(--white-shade);
  height: 100%;
  overflow: hidden;
  box-shadow: 0px 0px 10px #0000000c;
}

.accessories-item-img img {
  width: 90%;
  object-fit: contain;
  object-position: center;
}

.accessories-name {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: capitalize;
  margin: 0;
  padding: 0;
}

.accessories-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--para-shade);
  text-transform: capitalize;
  margin: 0;
  padding: 0;
}

.accessories-price-fake {
  font-size: 14px;
  font-weight: 500;
  color: var(--para-shade);
  text-decoration: line-through;
  text-transform: capitalize;
  margin: 0;
}

.accessories-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: capitalize;
  margin: 0;
}

.accessories-btn-see {
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 14px;
  text-transform: capitalize;
  background-color: var(--secondary-color);
  color: var(--white-shade);
  border: none;
  cursor: pointer;
}

.accessories-btn-add {
  padding: 5px 10px;
  font-size: 14px;
  text-transform: capitalize;
  background-color: var(--secondary-color);
  color: var(--white-shade);
  border-radius: 5px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.line-2 {
  height: 0.5px;
  background-color: var(--primary-color);
}

.accessories-see-all {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
}



/* faq section */



.faq-container {
  padding: 50px 0;
  margin: 0 auto;
  font-family: 'Arial', sans-serif;
  background-color: var(--white-shade);
}

.faq-h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.faq-item {
  border: 1px solid var(--para-shade);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white-shade);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 16px 20px;
  background: var(--white-shade);
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-weight: 600;
  transition: background-color 0.3s;
}

.faq-question h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.faq-question:hover {
  background-color: var(--text-color);
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  transition: transform 0.3s;
  color: var(--secondary-color);
}

.faq-item.active .faq-question::after {
  content: '-';
  color: var(--secondary-color);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-answer p {
  font-size: 16px;
  color: var(--para-shade);
  margin: 0;

}

.faq-item.active .faq-answer {
  padding: 16px 20px;
  max-height: 500px;
}


/* footer */

.footer-section {
  background-color: var(--white-shade);
  padding: 50px 0;
  position: relative;
  background-image: url("./images/hero-bg-shade.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.footer-container {
  z-index: 2;
}

.footer-container-2 {
  z-index: 2;
}

.footer-fake {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c7c7c758;
  backdrop-filter: blur(5px);
  z-index: 0;
}

.footer-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
}

.footer-line {
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
  z-index: 1;
  margin: 20px 0;
}

.footer-para {
  font-size: 16px;
  font-weight: 300;
  color: var(--primary-color);
  text-transform: capitalize;
  margin: 0;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}


.footer-list-link:hover {
  color: var(--secondary-color);
}


.footer-page-links {
  list-style: none;
}

.social-link-item {
  display: inline-block;
  margin-right: 10px;
  color: var(--primary-color);
  font-size: 25px;
  transition: all 0.3s ease;
}

.social-link-item:hover {
  color: var(--secondary-color);
}

.footer-copyright {
  z-index: 2;
}


.footer-acc {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-weight: 600;
  transition: background-color 0.3s;
  width: fit-content;
}



.footer-item i {
  transition: all 0.3s ease;

}


.footer-item.active i {
  transform: rotate(-180deg);

}

.footer-item {
  border-radius: 8px;
  margin: 10px 0;
  overflow: hidden;
}


.footer-answer {
  padding: 0;
  max-height: 0;
  margin-top: 10px;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}


.footer-item.active .footer-answer {
  max-height: 500px;
}