@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Spectral+SC:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

body {
    background-color: #fffaf0;
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1300px;
    }
}

.homeTopTitle {
    font-weight: 600;
    color: var(--main-color);
    font-size: 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.homeTitle {
    font-weight: 400;
    font-size: 40px;
    color: var(--black);
    font-family: "Spectral SC", sans-serif;
    margin-top: 10px;
}

.homeText {
    font-size: 16px;
    font-weight: 400;
    color: rgb(102, 102, 102);
    font-family: "Plus Jakarta Sans", sans-serif;
    margin-top: 20px;
}

.aymButton {
    font-weight: 700;
    font-size: 14px;
    color: white !important;
    text-decoration: none;
    background: var(--main-color);
    height: 50px;
    font-family: "Plus Jakarta Sans", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 35px;
    outline: none;
    border: none;
    border-radius: 8px;
    transition: .3s ease-in-out;
    cursor: pointer;

}

.aymButton:hover {
    background: var(--main-color-hover);
    transition: .3s ease-in-out;
}

.aymButtonDefault {
    border: 1px solid var(--main-color);
    color: var(--main-color) !important;
    background: none !important;
}

.aymButtonDefault:hover {
    border: 1px solid var(--black);
    color: var(--black) !important;
    background: none !important;
}

.aymButtonWhite {
    color: var(--black) !important;
    background: white;
}

.aymButtonWhite:hover {
    color: white;
    background: var(--black);
}


.heroAreaBox {
    background: white;
}

.heroAreaBoxDetail {
    padding: 10%;
}

.heroAreaBoxDetailCounter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.heroAreaBoxDetailCounterRow {
    border-top: 4px solid #f2f2f2;
    transition: .3s ease-in-out;
    padding-top: 20px;
}

.heroAreaBoxDetailCounterRow:hover {
    border-top: 4px solid var(--main-color);
    transition: .3s ease-in-out;
}

.heroAreaBoxDetailCounterRow span:first-child {
    font-weight: 400;
    font-size: 50px;
    color: var(--main-color);
    font-family: "Spectral SC", sans-serif;
    width: 100%;
    text-align: center;
    display: block;
}

.heroAreaBoxDetailCounterRow span:last-child {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    width: 100%;
    text-align: center;
    display: block;
}

.heroAreaBoxImage {
    height: 100%;
}

.heroAreaBoxImage img {
    height: 100%;
    object-fit: cover;
}

.heroArea {
    margin-top: 75px;
    padding-bottom: 50px;
}

.heroAreaBox {
    position: relative;
}

.heroAreaBoxImage1 {
    position: absolute;
    left: -80px;
    bottom: -100px;
    z-index: -1;
}

.heroAreaBoxImage2 {
    position: absolute;
    right: -35px;
    bottom: -130px;
    z-index: -1;
}

@media only screen and (max-width: 767px) {
    .heroArea {
        margin-top: 50px;
        position: relative;
        top: 0px;
        padding-bottom: 0;
    }
}

.contentArea1BoxBg {
    border-radius: 50%;
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    transition: .3s ease-in-out;
}

.contentArea1BoxCounter {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 54px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: 10;
    color: #fff;
    background-color: var(--main-color);
    transition: .3s ease-in-out;
}

.contentArea1Box:hover .contentArea1BoxCounter {
    background: white;
    color: var(--main-color);
    transition: .3s ease-in-out;
}

.contentArea1Box:hover .contentArea1BoxBg {
    background: var(--main-color);
    transition: .3s ease-in-out;
}

.contentArea1BoxImage {
    position: absolute;
    width: 90%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 50%;
    overflow: hidden;
}

.contentArea1BoxImage img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.contentArea1BoxTitle {
    font-weight: 400;
    font-size: 24px;
    color: black;
    font-family: "Spectral SC", sans-serif;
    text-align: center;
    margin-top: 20px;
}

.contentArea1BoxText {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin-top: 10px;
    text-align: center;

}

.heroArea2 {
    top: 0;
    margin-top: 100px;
}

.heroAreaBoxDetailList {
    margin-top: 25px;
}

.heroAreaBoxDetailList ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.heroAreaBoxDetailList ul li {
    display: flex;
    align-items: center;
    width: 50%;
    margin-bottom: 25px;
}

.heroAreaBoxDetailList ul li span:first-child {
    width: 60px;
    margin-right: 15px;
}

.heroAreaBoxDetailList ul li span img {
    width: 100%;
}

.heroAreaBoxDetailList ul li span:last-child {
    width: calc(100% - 100px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: black;
}

.contentArea2Bg {
    width: 60%;
    padding-bottom: 60%;
    position: absolute;
    background: #967f3c;
    border-radius: 50%;
    z-index: -1;
}

.verticalSwiper {
    height: 450px;
    margin: auto;
}

.verticalSwiperBox {
    background: white;
    padding: 20px;
    display: flex;
    align-items: center;
}

.verticalSwiper .swiper-slide {
    opacity: 0.5;
}

.verticalSwiper .swiper-slide-next {
    opacity: 1;
}

.verticalSwiperImage {
    flex: none;
    margin-right: 25px;
    width: 90px;
    height: 90px;
}

.verticalSwiperImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.verticalSwiperDetailTitle {
    font-weight: 400;
    font-size: 20px;
    color: black;
    font-family: "Spectral SC", sans-serif;

}

.verticalSwiperDetailText {
    margin-top: 5px;
    font-weight: 400;
    font-size: 16px;
    color: rgb(102, 102, 102);
    font-family: "Plus Jakarta Sans", sans-serif;
}


.bodyTrible1Box {
    background: white;
}

.bodyTrible1Bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bodyTrible1BoxTotTitle {
    font-weight: 600;
    font-size: 16px;
    color: var(--main-color);
    font-family: "Plus Jakarta Sans", sans-serif;

}

.bodyTrible1BoxTitle {
    font-weight: 400;
    font-size: 40px;
    color: black;
    font-family: "Spectral SC", sans-serif;
    line-height: 50px;

}

.clientCommentsText {
    font-weight: 500;
    font-size: 20px;
    color: black;
    font-style: italic;
    font-family: "Plus Jakarta Sans", sans-serif;

}

.clientCommentsText span {
    font-size: 12px;
}

.clientCommentsName {
    margin-top: 25px;
    font-weight: 600;
    font-size: 14px;
    color: rgb(153, 153, 153);
    font-family: "Plus Jakarta Sans", sans-serif;

}

.bodyTrible2Box {
    padding: 90px 0;
    background: var(--main-color);
}

.bodyTrible2Image img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.bodyTrible2Title {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 400;
    color: white;
    font-family: "Spectral SC", sans-serif;

}

.bodyTrible2Text {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    color: white;
    font-family: "Plus Jakarta Sans", sans-serif;

}

.homeProductBoxImage {
    background: #F6F6F6;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 400px;
    height: 400px;
    cursor: pointer;

}

.homeProductBoxImage img {
    width: 100%;
    object-fit: contain;
}

.homeProductBoxTitle {
    margin-top: 15px;
    text-align: center;
}

.homeProductBoxTitle a {
    font-weight: 400;
    font-size: 16px;
    color: black;
    transition: .3s ease-in-out;
    outline: none;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;

}

.homeProductBoxTitle a:hover {
    color: var(--main-color);
}

.homeProductBoxPoints {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.homeProductBoxPrice {
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homeProductBoxPrice {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.homeProductBoxPrice strike {
    color: #333;
}

.homeProductBoxAction {
    justify-content: center;
    display: flex;
    align-items: center;
}

.productWishlistButton {
    font-weight: 700;
    font-size: 14px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    background: none !important;
    height: 50px;
    width: 50px;
    outline: none;
    border-radius: 8px;
    transition: .3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.homeProductBoxActionPiece {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.homeProductBoxActionPiece input {
    height: 50px;
    border-radius: 8px;
    padding: 0 8px;
    outline: none;
    border: 1px solid var(--main-color);
    width: 75px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.homeProductBoxActionPiece div {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.homeProductBoxActionPiece a {
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    cursor: pointer;
    text-decoration: none;
}

.bodyTrible3Box {
    background: white;
    padding: 90px;
}
@media only screen and (max-width:767px){
    .heroAreaBoxDetailCounterRow span:first-child{
        font-size: 35px;
    }
    .bodyTrible2Box{
        padding: 45px 30px;
    }
    .bodyTrible3Box{
        padding: 30px;
    }
    .aymButton{
        padding: 0 18px;
    }
}
