/* --------- design system --------- */
.h1 {
 /* h1 */
 font-family: Poppins;
 font-size: 64.85px;
 font-style: normal;
 font-weight: 700;
}
.h2 {
 /* h2 */
 font-family: Poppins;
 font-size: 51.88px;
 font-style: normal;
 font-weight: 700;
}
.h3 {
 /* h3 */
 font-family: Poppins;
 font-size: 41.504px;
 font-style: normal;
 font-weight: 700;
}
.h4 {
 /* h4 */
 font-family: Poppins;
 font-size: 33.203px;
 font-style: normal;
 font-weight: 600;
}
.h5 {
 /* h5 */
 font-family: Poppins;
 font-size: 26.563px;
 font-style: normal;
 font-weight: 600;
}
.h6 {
 /* h6 */
 font-family: Poppins;
 font-size: 21.248px;
 font-style: normal;
 font-weight: 500;
}
.p {
 /* p */
 font-family: Poppins;
 font-size: 14px;
 font-style: normal;
 font-weight: 400;
}
/* // Large devices (desktops, 992px and up) */
@media (max-width: 992px) { 
 .h1 {
  /* h1 */
  font-size: 30.85px;
 }
 .h2 {
  /* h2 */
  font-size: 28.88px;
 }
 .h3 {
  /* h3 */
  font-size: 24.504px;
 }
 .h4 {
  /* h4 */
  font-size: 22.203px;
 }
 .h5 {
  /* h5 */
  font-size: 20.563px;
 }
 .h6 {
  /* h6 */
  font-size: 18.248px;
 }
 .p {
  /* p */
  font-size: 14px;
 }
}
/* // Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
 .h1 {
  /* h1 */
  font-size: 28.85px;
 }
 .h2 {
  /* h2 */
  font-size: 24.88px;
 }
 .h3 {
  /* h3 */
  font-size: 22.504px;
 }
 .h4 {
  /* h4 */
  font-size: 20.203px;
 }
 .h5 {
  /* h5 */
  font-size: 18.563px;
 }
 .h6 {
  /* h6 */
  font-size: 16.248px;
 }
 .p {
  /* p */
  font-size: 12px;
 }
}
/* // Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
 .h1 {
  /* h1 */
  font-size: 24.85px;
 }
 .h2 {
  /* h2 */
  font-size: 22.88px;
 }
 .h3 {
  /* h3 */
  font-size: 20.504px;
 }
 .h4 {
  /* h4 */
  font-size: 18.203px;
 }
 .h5 {
  /* h5 */
  font-size: 16.563px;
 }
 .h6 {
  /* h6 */
  font-size: 14.248px;
 }
 .p {
  /* p */
  font-size: 11px;
 }
}
p {
 margin: 0;
 padding: 0;
}
* {
 font-family: 'Poppins', sans-serif;
}
a {
 text-decoration: none;
 color: black;
}
.btn-1 {
 border-radius: 0px 18px 0px 0px;
 background: var(--2, #FFB24A);

 width: 173px;
 height: 57px;
 display: flex;
 justify-content: space-evenly;
 align-items: center;
}
.btn-2 {
 border-radius: 0px 18px 0px 0px;
 background: #000;

 width: 173px;
 height: 57px;
 display: flex;
 justify-content: space-evenly;
 align-items: center;
 color: white;
}
.btn-3 {
 display: flex;
 height: 55px;
 padding: 12px 24px;
 justify-content: center;
 align-items: center;
 gap: 10px;
 border-radius: 8px;
 border: 1.5px solid var(--o, #FF9505);
 transition: 0.5s;
 background-color: transparent;

 color: var(--o, #FF9505);
}
.btn-3:hover {
 background: var(--o, #FF9505);
 color: white;
}
.btn-4{
 display: flex;
 height: 42px;
 padding: 12px 24px;
 justify-content: center;
 align-items: center;
 gap: 10px;
 transition: 0.5s;

 border-radius: 8px;
 border: 1.5px solid rgba(255, 251, 251, 0.35);
 color: var(--w, #FFFBFB);
}
.btn-4:hover {
 background: white;
 color: black;
}
.btn-5 {
 display: inline-flex;
 height: 42px;
 padding: 12px 24px;
 justify-content: center;
 align-items: center;
 gap: 10px;
 flex-shrink: 0;
 transition: 0.5s;

 border-radius: 8px;
 background: var(--w, #FFFBFB);

 color: var(--b, #1B1B1B);
 font-family: Montserrat;
}
.btn-5:hover {
 background: black;
 color: white;
}
.input-1 {
 fill: #FFF;
 stroke-width: 1px;
 stroke: #DDD;
 box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.10) inset;
 padding: 15px 23px ;
 width: 100%;
}
.input-1 {
 border: none;
 background-color: transparent;
}
.input-1:focus {
 outline: none;
}
.card-1 {
 background: white;
}
.card-1 .img {
 height: 282px;
 width: 100%;
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
}
.card-1 .desc {
 padding: 22px 13px ;
}
.card-1 .desc h3 {
 color: var(--1, #C87224);
}
.card-1 .desc p {
 margin: 10px 0;
 color: var(--5, #000);
}
.card-1 .desc a {
 color: var(--5, #000);
}
.button-whatsapp  {
 z-index: 99;
 position: fixed;
 bottom: 31px;
 right: 31px;
 opacity: 0.9;
 transition: 0.2s;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 text-decoration: none;
 /* typography */
 color: #FFF;

 /* Body/B5/Inter/Regular/14px */
 font-family: Inter;
 font-size: 14px;
 font-style: normal;
 font-weight: 400;
 line-height: 180%; /* 25.2px */
 letter-spacing: 0.28px;
}
.button-whatsapp:hover {
 opacity: 1;
}

/* body */
body {
 background: var(--3, #F0F0F0);
}
/* header */
.detail-page header {
 background-color: #000;
}
header.active {
 background-color: #000;
}
header {
 background-color: #00000000;
 transition: 0.75s;
 width: 100%;
 position: fixed;
 z-index: 99;
 display: flex;
 justify-content: center;
 align-items: center;
 height: 130px;
}
/* nav */
nav {
 display: flex;
 justify-content: center;
 align-items: center;
 position: fixed;
 top: 0;
 width: 100%;
 z-index: 99;
 padding-top: 38px;
}
button.close {
 display: none;
 cursor: pointer;
}
@media (max-width:1000px) {
 .detail-page header {
  background-color: #00000000;
 }
 header.active {
  background-color: #00000000;
 }
 header.active2 {
  z-index: 999;
 }
 nav {
  flex-direction: column;
  min-height: 100vh;
  background-color: #000;
  width: 100%;
  height: 100%;
  padding: 20px 0;
  position: relative;
  transition: 0.75s ease-in-out;
 }
 button.close {
  position: fixed;
  top: 10px;
  left: 10px;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
 }
 .translate {
  transform: translateX(-200%);
 }
 header {
  height: 100%;
  z-index: -9;
 }
}
nav .logo {
 width: 100%;
 height: 39.5px;
}
nav ul {
 list-style: none;
 display: flex;
}
nav a {
 color: white;
 text-align: center;
 transition: 0.25s;
}
nav a:hover {
 color: gray;
}
nav img.logo {
 width: 200px;
}

/* footer */
footer {
 color: white;
 padding: 70px 0;
 background: linear-gradient(226deg, #271A00 0%, rgba(0, 0, 0, 0.98) 44.79%);
}
footer .left p {
 margin-top: 20px;
 color: var(--w, #FFFBFB);
 font-family: Montserrat;
}
footer .main ul{
 display: flex;
 flex-direction: column;
 gap: 10px;
}
footer .main h6 {
 color: #FFF;
 font-family: Montserrat;
}
footer .right {
 display: flex;
 flex-direction: column;
 gap: 16px;
}
footer .right img{
 max-width: 60px;
}
footer .right h6 {
 color: #FFF;
 font-family: Montserrat;
}
footer ul {
 padding: 0;
 margin: 0;
}
footer ul li {
 list-style: none;
}
footer .line {
 border: 1px solid var(--l, rgba(255, 251, 251, 0.35));
 opacity: 0.2;
 background: var(--w, #FFFBFB);
 width: 100%;
 height: 2px;
 margin: 55px 0 32px;
}
footer .copyright {
 text-align: center;
}

/* banner */
.banner {
 position: relative;
 display: flex;
 justify-content: center;
}
.banner .title {
 text-align: center;
}
.banner .swiper .swiper-slide {
 background-repeat: no-repeat;
 /* background-size: cover; */
 background-position: center;
}
.banner .mySwiper {
 width: 100vw;
}
.banner .swiper-slide .title {
 min-height: 100vh;
 display: flex;
 justify-content: center;
 padding-top: 20vh;
 background-image: linear-gradient(rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.619));
}
@media (max-width:992px) {
 .banner .swiper-slide .title {
  padding-top: 15vh;
 }
}
.banner .swiper-slide .title h1 {
 color: var(--3, #F0F0F0);
}
span.color1 {
 color: var(--2, #FFB24A);
}
.banner .option {
 max-width: 764px;
 bottom: 50px;
 position: absolute;
 z-index: 9;
 padding: 20px;
}
.banner .option form {
 display: flex;
 border-radius: 4px;
 background: var(--light-gray, #F3F3FA);
 padding: 23px 34px;
}
.banner form button {
 padding: 15px 10px;
 border-radius: 8px;
 background: var(--1, #C87224);
 outline: none;
 border: none;
 color: white;
 margin: auto;
}
.banner form button .row .col {
 justify-content: center;
 align-items: center;
}
.banner .option .categories {
 margin-top: 50px;
 margin-bottom: 35px;
 gap: 24px;
}
.banner p.qoutes {
 color: #FFF;
 text-align: center;
 

}
.banner .input .row {
 justify-content: center;
 align-items: center;
}

/* newsletter */
.newsletter {
 padding: 100px 0;
 background: white;
}
.newsletter .main {
 justify-content: center;
 align-items: center;
}
.newsletter h3 {
 color: var(--5, #000);

 
}
.newsletter p {
 color: var(--5, #000);
 margin-bottom: 19px;

}
@media (max-width: 768px) {
 .newsletter .row .col-12{
  justify-content: center;
  align-items: center;
  display: flex;
 }
 .newsletter .col{
  text-align: center;
 }
}

/* --------- DASHBOARD PAGE --------- */
/* hero */
.dashboard-page .hero {
 background: white;
}
.dashboard-page .hero .row.main {
 min-height: 100vh;
}
.dashboard-page .hero .row .left {
 display: flex;
 justify-content: center;
 align-items: center;
}
.dashboard-page .hero .row .right {
 flex-direction: column;
 display: flex;
 justify-content: center;
}
.dashboard-page .hero .row .right h2 {
 color: var(--1, #000000);

}
.dashboard-page .hero .row .right p {
 margin-top: 11px;
 margin-bottom: 29px;
 color: #000;
}
.dashboard-page .hero .row .right img {
 fill: #FFAC12;
}
.dashboard-page .hero img {
 width: 100%;
}
.dashboard-page .hero .row .left-main {
 max-height: 750px;
 height: 100%;
}
.dashboard-page .hero .row .left-main .img1 {
 display: flex;
 justify-content: start;
 align-items: start;
}
.dashboard-page .hero .row .left-main .img2 {
 display: flex;
 justify-content: end;
 align-items: end;
}

/* book */
.dashboard-page .book {
 padding-top: 190px;
 min-height: 100vh;
 background: var(--3, #F0F0F0);
}
.dashboard-page .book .btn-3 {
width: 183px;
}
.dashboard-page .book h2 {
 color: var(--1, #C87224);
}
.dashboard-page .book .col {
 display: flex;
 justify-content: end;
 align-items: end;
 flex-direction: column;
}
.dashboard-page .book .line {
 width: 100%;
 height: 5px;
 background-color: #DADAEE;
 position: relative;
 margin-top: 71px;
}
.dashboard-page .book .progress {
 width: 50%;
 height: 5px;
 position: absolute;
 left: 0;
 z-index: 99;
 background-color: #C87224;
 transition: 0.5s;
}
.dashboard-page .book .swiper {
 margin: 121px 0;
}
.dashboard-page .book .buttons {
 display: flex;
 margin-top: 49px;
 gap: 29px;
}
.dashboard-page .book .button-left-swiper {
 cursor: pointer;
 transition: 0.2s;
}
.dashboard-page .book .button-right-swiper {
 cursor: pointer;
 transition: 0.2s;
}
.dashboard-page .book .button-left-swiper:hover,
.dashboard-page .book .button-right-swiper:hover {
 transform: scale(0.9);
}

/* description */
.dashboard-page .description {
 background-image: url('img/desc.png');
 background-repeat: no-repeat;
 background-position: center;
 background-size: cover;
 min-height: 160vh;
 position: relative;
}
.dashboard-page .description .title {
 text-align: center;
 display: flex;
 justify-content: center;
 align-items: center;
 flex-direction: column;
 gap: 16px;
 padding-top: 100px;
}
.dashboard-page .description .title h2 {
 color: var(--4, #FFF);


}
.dashboard-page .description .title p {
 max-width: 666px;

 color: var(--w, #FFFBFB);
 text-align: center;
 

}
.dashboard-page .description .bg-top {
 background: linear-gradient(180deg, #F0F0F0 70.31%, rgba(217, 217, 217, 0.00) 100%);
 height: 639px;
 width: 100%;
 position: absolute;
 top: -440px;
}
.dashboard-page .description .container {
 position: relative;
 z-index: 2;
}
.dashboard-page .description .row .col-lg-6 {
 min-height: 100vh;
 display: flex;
 justify-content: center;
 align-items: start;
 flex-direction: column;
}
.dashboard-page .description .row .col-lg-6 h2 {
 color: var(--2, #FFB24A);

 
}
.dashboard-page .description .row .col-lg-6 p {
 margin: 19px  0;
 color: var(--w, #FFFBFB);


}
/* contact */
.dashboard-page .contact {
 position: relative;
 margin-top: -200px;
 z-index: 9;
 overflow-x: hidden;
 padding-bottom: 100px;
 min-height: 100vh;
}
@media (max-width:992px) {
 .dashboard-page .contact {
  margin-top: 0px;
 }
}
.dashboard-page .contact h3 {
 color: var(--1, #C87224);

 
}
.dashboard-page .contact img {
 width: 100%;
 min-width: 50vw;
 border-radius: 62px 0px 0px 0px;
 /* background: url(<path-to-image>), lightgray 50% / cover no-repeat; */
 
 /* 1 */
 box-shadow: 0px 62px 54px 0px rgba(0, 0, 0, 0.30);
}
.dashboard-page .contact .col-lg-6 {
 display: flex;
 justify-content: end;
 align-items: start;
 flex-direction: column;
 gap: 42px;
}
.dashboard-page .contact ul {
 margin: 0;
 padding: 0;
}
.dashboard-page .contact ul li {
 list-style: none;
}

/* --------- LIST PAGE --------- */
.list-page .list {
 background: var(--3, #F0F0F0);
}

/* --------- DETAIL PAGE --------- */
.detail-page h1{
 color: var(--5, #000);
}

.detail-page .main {
 padding-top: 100px;
}

@media (max-width: 1000px) {
 .detail-page .main {
  padding-top: 0px;
 }
}

.detail-page .swiper-container {
 display: flex;
 flex-direction: column-reverse;
}

.detail-page .swiper {
 width: 100%;
 height: 300px;
 margin-left: auto;
 margin-right: auto;
}

.detail-page .swiper-slide {
 background-size: cover;
 background-position: center;
}

.detail-page .mySwiper4 {
 width: 100%;
 min-height: 400px;
}

.detail-page .mySwiper3 {
 height: 200px;
 box-sizing: border-box;
 padding: 10px 0;
}

.detail-page .mySwiper3 .swiper-slide {
 width: 100%;
 height: 100%;
 opacity: 0.4;
}

.detail-page .mySwiper3 .swiper-slide-thumb-active {
 opacity: 1;
}

.detail-page .swiper-slide img {
 display: block;
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.detail-page .image-people {
 width: 150px;
 height: 150px;
 background-position: center;
 background-size: cover;
 background-repeat: no-repeat;
 border-radius: 100px;
}

.detail-page .profile {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 10px;
 padding-top: 100px;
}