@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&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);
/* Bases */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline:  1px solid red; */
}

main,
html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Nunito", Helvetica, sans-serif;
  background-color: #121212;
  color: #fff;
}

/* Default */
.d-flex {
  display: flex;
}

.all-center {
  justify-content: center;
  align-items: center;
}

.f-column {
  flex-direction: column;
}

/* ============ variables ============= */
:root {
  --border-orange: solid 1px #ea7730;
  --border-border: solid 1px #fff;
  --orange-color: #ea7730;
  --gray-color: #121212;
}

/* Sections*/
.container__section {
  height: 100vh;
  max-width: 1500px;
  margin: 0 auto;
}

section {
  display: flex;
  justify-content: center;
}

#plan .container__section,
#releases .container__section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#releases .box__info {
  width: 100%;
}

#plan-container {
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  z-index: 1;
  position: relative;
  width: 300px;
  height: 280px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  text-align: left;
  padding: 0 20px;
  border: var(--border-orange);
  transition: 0.4s ease;
}

.card__info li {
  display: flex;
  list-style: none;
}

.card__info li {
  margin-top: 15px;
}

.card__info li p {
  margin-left: 5px;
  font-size: clamp(14px, 2vw, 14px);
}

.card__title p {
  margin-top: 20px;
}

.card__info {
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
}

.btn__card {
  display: none;
  width: 100%;
  cursor: pointer;
  height: 50px;
  border-radius: 50px;
  bottom: 20px;
  background-color: #ea7730;
  color: #fff;
  font-weight: 600;
  border: solid 1px #ea7730;
  transition: 0.3s;
}

.buttom__card {
  position: absolute;
  width: 100%;
  height: 12%;
}

.card__title h2 {
  margin-top: 20px;
  font-size: 40px;
}

.card__title h4 {
  color: #ea7730;
  margin-top: 20px;
}

.card__title h2 span {
  font-size: 16px;
}

.card__subtitle h1 {
  margin-top: 30px;
}

.card__title {
  width: 100%;
}

.card:hover .card__info {
  display: flex;
  flex-direction: column;
  opacity: 1;
  visibility: visible;
}

.card:hover .buttom__card {
  position: relative;
  display: block;
}

.card:hover {
  height: 700px;
  transition: 0.6s;
}

.card:hover .btn__card {
  display: block;
}

.card:hover .card__title {
  display: none;
}

.btn__card:hover {
  background-color: #121212;
  color: #ea7730;
}

@media (max-width: 1220px) {
  .cards-container {
    justify-content: space-around;
  }
}
@media (max-width: 920px) {
  .box__bottom .card__title h1 {
    padding: 0;
  }
  .box__bottom .card__info .card__subtitle h1 {
    padding: 0;
  }
  .cards-container {
    flex-direction: column;
    align-items: center;
  }
}
#bean {
  position: relative;
}

#faq {
  flex-direction: column;
}

#bean-container,
#range-container {
  flex: 1;
}

#bean-container .box__info,
#bean-container .box__img,
#range-container .box__info,
#range-container .box__img {
  flex: 1;
}

#bean-container .box__info,
#range-container .box__info {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#bean-container .box__info ol li span,
#range-container .box__info ol li span {
  font-weight: 600;
  font-size: clamp(16px, 2vw, 24px);
}

#bean-container .box__info ol,
#range-container .box__info ol {
  list-style: none;
}

#bean-container .box__info ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#bean-container .box__info ul li {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

#bean-container .box__info ul li p {
  margin-top: 0;
  margin-left: 10px;
  font-size: clamp(16px, 2vw, 20px);
}

#bean-container .box__info ol li,
#range-container .box__info ol li {
  margin-top: 2rem;
  text-align: justify;
  font-size: clamp(16px, 2vw, 20px);
}

#bean-container .box__info ul,
#range-container .box__info ol {
  padding: 0 25px;
}

#range-container .box__info ol p {
  margin-top: 2rem;
  font-size: clamp(16px, 2vw, 16px);
}

#bean-container .box__info h1,
#range-container .box__info h1 {
  padding: 0 25px;
}

#bean-container .box__img .flex__image,
#range-container .box__img .flex__image {
  display: flex;
  height: 100vh;
}

#bean-container .box__img .flex__image {
  max-width: 800px;
  width: 100%;
  position: absolute;
  top: -70px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top -70px center;
  overflow-x: hidden;
}

@media (max-width: 2400px) {
  #bean-container .box__img .flex__image {
    margin-right: -20%;
  }
}
@media (max-width: 1600px) {
  #bean-container .box__img .flex__image {
    margin-right: -10%;
  }
}
#bean-container .box__img .flex__image img {
  height: auto;
  overflow-x: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center top;
     object-position: center top;
  width: 100%;
  height: 95%;
}

#range-container .box__img .flex__image {
  width: 900px;
  position: absolute;
  height: 100%;
  margin-right: -20%;
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
  overflow-x: hidden;
}

#range-container .box__img img {
  z-index: 2;
}

.accordion-container {
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

.accordion-container.bottom,
.accordion-container.top {
  display: flex;
}

.accordion-container.top .accordion {
  width: 350px;
  width: 30%;
}

.accordion-container.bottom .accordion {
  width: 30%;
  min-width: 150px;
}

.accordion {
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.accordion-header span {
  color: var(--orange-color);
}

.accordion-header {
  padding: 10px;
  background: transparent;
  color: #fff;
  text-align: left;
  font-size: clamp(16px, 2vw, 20px);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding: 0 10px;
  background-color: #ea7730;
  border-radius: 10px;
}

.accordion-content.show {
  max-height: 1000px;
  padding: 10px;
}

#faq .container__section {
  height: auto;
}

#faq {
  position: relative;
}

#faq .splide {
  position: absolute;
  width: 100%;
  left: 0;
}

.splide-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
}

.splide {
  width: 100%;
  box-sizing: border-box;
  height: 250px;
}

.splide .splide__slide {
  width: 330px;
  height: 180px;
  margin-right: 20px;
  margin-top: 30px;
  border: #ea7730 solid 1px;
  border-radius: 5px;
}

.splide__slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#title-info {
  padding: 20px;
}

.box__info {
  text-align: center;
}

.box__bottom {
  flex: 1;
}

.box__info h1 {
  font-size: clamp(24px, 3vw, 40px);
  margin: 45px 0;
}

#title-info h1 {
  font-size: clamp(24px, 4vw, 30px);
}

#title-info {
  display: flex;
  justify-content: center;
  align-items: center;
}

.box__info span {
  color: var(--orange-color);
}

.box__info p {
  font-size: clamp(16px, 2vw, 24px);
  margin-top: 40px;
}

#hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#bottom {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#container-bottom,
#container-hero {
  flex-direction: column;
}

footer {
  height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

footer i {
  font-size: 1.2rem;
}

footer a {
  color: #fff;
  text-decoration: none;
}

.box-footer-2 {
  margin-top: 20px;
}

.box-footer-1 {
  gap: 50px;
}

i {
  margin-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  color: #fff;
  background-color: rgba(234, 119, 48, 0.431372549);
  border: 2px solid #ea7730;
  transition: transform 0.1s ease, background-color 0.5s, border 0.5s;
}

i:hover {
  transform: scale(1.1);
  color: #ea7730;
  background-color: transparent;
}

.social-footer {
  display: flex;
}

.counter__items {
  margin-top: 5%;
  justify-content: space-around;
  width: 100%;
  gap: 50px;
}

.counter {
  position: relative;
  text-align: center;
}

.line__counter {
  width: 100%;
  bottom: -20px;
  position: absolute;
  border: solid 1px var(--orange-color);
}

.counter__box {
  width: 100%;
}

.counter h1:first-of-type {
  font-size: clamp(36px, 2vw, 40px);
  color: #ea7730;
}

.counter span {
  font-size: clamp(22px, 2vw, 18px);
}

/* buttons */
.btn__box {
  margin-top: 40px;
  cursor: pointer;
  width: 460px;
  border-radius: 50px;
  height: 55px;
  color: #fff;
  border: solid 1px #fff;
  background-color: #ea7730;
  font-size: clamp(15px, 3vw, 18px);
  font-weight: 600;
  transition: 0.6s;
  transform: 1s;
}

.btn__box:hover {
  background-color: var(--gray-color);
  border: 1px solid var(--orange-color);
  color: var(--orange-color);
  transform: scale(1.03);
}

/* ballons */
.box__ballom {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  position: relative;
  width: 90%;
  height: 100%;
  margin: 10px;
}

.ballom-1,
.ballom-2,
.ballom-3 {
  padding: 15px;
  display: flex;
  color: #000;
  justify-content: center;
  text-align: center;
  align-items: center;
  width: 320px;
  height: 100px;
  border-radius: 45px;
  background-color: #fff;
}

.ballom-2 {
  color: #fff;
}

.ballom-3::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: 15px;
  border-width: 25px;
  border-style: solid;
  transform: rotate(45deg);
  border-color: transparent #fff transparent transparent;
}

.ballom-1::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: 15px;
  border-width: 25px;
  border-style: solid;
  transform: rotate(45deg);
  border-color: transparent #fff transparent transparent;
}

.ballom-2::after {
  content: "";
  position: absolute;
  bottom: -22%;
  right: 15px;
  border-width: 25px;
  border-style: solid;
  transform: rotate(45deg);
  border-color: transparent transparent var(--orange-color) transparent;
}

.ballom-3 {
  margin-top: 60px;
}

.ballom-2 {
  background-color: #ea7730;
  position: absolute;
  left: 40%;
  box-shadow: #000 1px 1px 15px;
  z-index: 1;
}

#ballom {
  display: flex;
  left: -50%;
  align-items: center;
}

/* Mobile Devices */
@media (min-width: 768px) {
  .container__section {
    padding: 20px;
  }
}
@media (max-width: 1024px) {
  * {
    box-sizing: border-box;
  }
  .container__section {
    max-width: 90%;
    margin: 20px;
    padding: 10px;
    height: auto;
  }
  .box__bottom {
    flex-direction: column;
  }
  .box__bottom {
    flex-direction: column;
  }
  .logo {
    right: 0;
  }
  .box__info {
    width: 100%;
  }
  .box__ballom {
    width: 100%;
    left: 0;
  }
  #title-info {
    padding: 0;
  }
  .ballom-1::after,
  .ballom-2::after,
  .ballom-3::after {
    display: none;
  }
  .ballom-1,
  .ballom-2,
  .ballom-3 {
    position: relative;
  }
  .ballom-1,
  .ballom-3 {
    margin-top: 10px;
    width: 90%;
    position: relative;
    border-bottom-left-radius: 0px;
  }
  .ballom-2 {
    width: 90%;
    left: 8%;
    transform: scale(1.05);
    box-shadow: 1px 2px 14px #000;
    border-bottom-right-radius: 0px;
  }
  .ballom-3 {
    margin-top: 0;
  }
  .box__bottom h1 {
    text-align: left;
    margin: 20px 0;
    padding: 0 25px;
  }
  #releases-container .box__info h1,
  #bottom .box__info h1,
  #hero .box__info h1,
  #bean-container .box__info h1,
  #range-container .box__info h1 {
    text-align: center;
  }
  #bottom .box__info p,
  #hero .box__info p {
    text-align: justify;
    padding: 0 25px;
    letter-spacing: normal;
  }
  #bean-container .box__img,
  #range-container .box__img {
    display: none;
  }
  #bean-container .box__info h1,
  #range-container .box__info h1 {
    padding: 0 25px;
  }
  .box__info br {
    display: none;
  }
  .btn__box {
    height: 70px;
    max-width: 90%;
  }
  .btn__box:hover {
    transform: scale(0.9);
  }
  .counter__items {
    display: grid;
  }
  .box-footer-2 {
    padding: 0 25px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .box-footer-1 {
    padding: 0 25px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 900px) {
  .accordion-container.top .accordion {
    width: calc(33.33% - 10px);
  }
  .accordion-container.bottom .accordion {
    width: calc(50% - 10px);
  }
}
@media (max-width: 768px) {
  .accordion-container.top,
  .accordion-container.bottom {
    flex-direction: column;
  }
  .accordion-container.top .accordion,
  .accordion-container.bottom .accordion {
    width: 100%;
  }
}
