
/* section-1 */
.section-1{
    background: #00008b15;
    padding-top: 105px;
}

/* banner-1 */
.banner-1{
    padding: 0 5%;
}

.banner-1 img{
    width: 100%;
    height: 450px;
    box-shadow: 5px 5px 10px 1px #4e4e4edc;
}

.short-desc{
    text-align: center;
}

.short-desc h3{
    font-size: 16px;
}

.short-desc p {
    font-size: 12px;
}

/* section - 2 */
.section-2{
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

/* about img */
.section-img{
    position: absolute;
    background: url(../images/background/background-1.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
}

.section-img img{
    position: absolute;
    width: 350px;
    height: 350px;
    max-width: 500px;
    /* border-radius: 50%; */
    top: 15%;
}

/* about content section */
.about-section{
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    padding: 5% 5% 5% 10%;
    background: var(--secondary-color);
    color: var(--text-color-wh);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 15% 100%, 0% 50%);
}

.about-section h1{
    max-width: 400px;
    text-decoration: underline;
}

.about-section p{
    line-height: 1.65;
}

/* section - 3 */
.section-3{
    width: 100%;
}

.products-title{
    text-align: center;
    margin: 5% 0 2%;
    width: 85%;
}

.products-title h1{
    text-decoration: underline;
}

/* products */
.products{
    width: 85%;
    height: 85%;
    background-color: var(--teritary-color);
    z-index: 35;
    border-radius: 15px;
}

.products-section{
    width: 45%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 5px;
}

.product{
    height: 350px;
    position: relative;
    box-shadow: 1px 5px 5px 5px #00008b15;
}

.product-imgs{
    width: 95%;
    height: 85%;
    overflow-x: scroll;
    gap: 10px;
}

.product-imgs::-webkit-scrollbar{
    width: 10px;
    height: 10px;
}
/* The track (background) of the scrollbar */
.product-imgs::-webkit-scrollbar-track {
  background: #acacac;
  border-radius: 10px;
}

/* The draggable handle (thumb) of the scrollbar */
.product-imgs::-webkit-scrollbar-thumb {
  background: #332222;
  border-radius: 10px;
}

/* Handle on hover */
.product-imgs::-webkit-scrollbar-thumb:hover {
  background: #380c0c;
}

.product-imgs img{
    width: 100%;
    height: 95%;
    border: 1px solid var(--text-color-wh);
}

.product-category{
    width: 95%;
    background-color: var(--text-color-wh);
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
}

.product-category a{
    text-decoration: none;
    color: var(--text-color-bl);
}

.product-category:hover{
    background: #ffffffc2;
}

.prod-imgs{
    width: 95%;
    height: 75%;
    overflow: hidden;
    gap: 10px;
}

.prev,
.next{
    position: absolute;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    color: var(--text-color-wh);
    background: var(--quaternary-color);
    cursor: pointer;
}
.next{
    right: 25px;
}

.prod-imgs img{
    width: 100%;
    height: 95%;
    border: 1px solid var(--text-color-wh);
    display: none;
}
.prod-imgs img.show{
    display: block;
}

.products-nav{
    gap: 10px;
}

.products-nav div{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00008b15;
    cursor: pointer;
}

.products-nav div.show{
    background: #1a1a1a;
}

/* section - 4 */
.section-4{
    height: 100%;
}

.section-4>div{
    padding: 5%;
}

/* faq */
.faq-section{
    max-width: 1000px;
    width: 75%;
    background: var(--text-color-wh);
    border-radius: 15px;
    box-shadow: 5px 3px 10px 10px #00008b15;
}

.faq-section h2{
    text-align: center;
    text-decoration: underline;
}

.faqs{
    width: 100%;
}

.faq{
    width: 100%;
    border-bottom: 1px solid #333333;
}

.question{
    line-height: 1.7;
}

.answer{
    display: none;
}

.answer.show{
    display: block;
}

.faq-option{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #00008b15;
    outline: none;
    border: none;
    cursor: pointer;
}

/* review-contact section */
.review-contact{
    position: relative;
    width: 100%;
    min-height: 550px;
    margin-bottom: 15px;
}

/* review-section */
.review-section{
    position: absolute;
    left: 0;
    top: 0;
    width: 55%;
    height: 100%;
    padding-right: 10%;
    background: var(--secondary-color);
    color: var(--text-color-wh);
    clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
}

.review-section h2{
    text-decoration: underline;
}

.review{
    width: 100%;
    height: 100%;
    background: var(--text-color-wh);
    padding: 2% 5%;
    border-radius: 5px;
    color: var(--text-color-bl);
}

.review-star{
    color: #bebebe;
}

.review-star .checked{
    color: gold;
}

/* contact-section */
.contact-section{
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    padding: 5%;
}

.contact-section h2{
    text-decoration: underline;
}

.contact-section p{
    font-size: 16px;
}

.contact{
    /* width: 95%; */
    border-radius: 15px;
    box-shadow: 5px 5px 10px 10px #00008b15;
}

.location{
    width: 100%;
}

.location img{
    width: 100%;
}

.contact-mode{
    text-overflow: ellipsis;
}

.contact-mode a{
    color: var(--text-color-bl);
    text-decoration: none;
    gap: 10px;
}

.contact-mode a i{
    font-size: 25px;
}

.contact-mode a p{
    font-size: 18px;
}

.contact form label{
    letter-spacing: 1.2;
}

.contact form input{
    display: block;
    width: 100%;
    margin: 3% 0;
    padding: 5% 7%;
    font-size: 16px;
    border-radius: 15px;
    border: 1px solid #00008b15;
    box-shadow: 1px 1px 2px 5px #00008b15;
}

.submit button{
    padding: 5% 7%;
    border: none;
    cursor: none;
    background: var(--teritary-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}

.submit button:hover{
    background: var(--quaternary-color);
}

.whatsapp-section{
    position: fixed;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--secondary-color);
    right: 45px;
    bottom: 45px;
    box-shadow: 2px 2px 10px 5px #ffbebea4;
    z-index: 75;
}

.whatsapp-section:hover{
    background: #00008b15;
}

.whatsapp-section a{
    color: var(--text-color-wh);
    text-decoration: none;
}

.whatsapp-section a i{
    font-size: 3rem;
}

/* mobile - view */
@media screen and (max-width: 875px){
    .banner-1{
        height: fit-content;
    }
    .banner-1 img{
        height: auto;
    }
    .short-desc{
        padding: 3%;
    }
    .short-desc h3{
        font-size: 14px;
    }
    .short-desc p{
        font-size: 11px;
    }
    .section-2{
        height: 345px;
    }
    .about-section, .review-section{
        width: 100%;
        height: max-content;
        clip-path: none;
        padding: 5%;
    }
    .section-img{
        display: none;
    }
    .products{
        display: block;
        width: 90%;
    }
    .products-section{
        width: 100%;
    }
    .product{
        height: 455px;
    }
    .faq-section{
        width: 95%;
    }
    .review-contact{
        min-height: 950px;
    }
    .contact-section{
        width: 100%;
        top: 590px;
    }
    .whatsapp-section{
        width: 55px;
        height: 55px;
        right: 35px;
        bottom: 35px;
    }
    .whatsapp-section a i{
        font-size: 2rem;
    }
}

@media screen and (max-width: 545px){
    .short-desc{
        padding: 5%;
    }
    .section-2{
        height: 470px;
    }
    .about-section{
        padding: 10%;
    }
    .about-section h1{
        font-size: 22px;
    }
    .about-section p{
        font-size: 14px;
    }
    .products-section{
        grid-template-columns: 1fr;
        padding-left: 5%;
    }
    .product{
        width: 95%;
        height: 550px;
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .product-imgs{
        max-width: 350px;
        height: 400px;
    }
    .question{
        line-height: 1.3;
        font-size: 16px;
    }
    .answer{
        font-size: 14px;
    }
    .faq-option{
        width: 45px;
        height: 40px;
    }
    .review{
        padding: 5%;
    }
    .contact-section{
        margin-top: 75px;
    }
    .contact-section p{
        font-size: 13px;
    }
    .contact{
        width: 95%;
    }
    .contact-mode a i{
        font-size: 18px;
    }
    .contact-mode a p{
        font-size: 15px;
    }
    .contact form label{
        font-size: 14px;
    }
    .contact form input{
        margin: 7% 0 5%;
    }
    .whatsapp-section{
        width: 45px;
        height: 45px;
        right: 20px;
        bottom: 20px;
    }
    .whatsapp-section a i{
        font-size: 1.9rem;
    }
}

/* large screen - view */
@media screen and (min-width: 1540px) {
    .banner-1{
        height: fit-content;
    }
    .banner-1 img{
        height: 800px;
    }
    h3, h2, h1,
    .short-desc h3{
        font-size: 2rem;
    }
    p, a,
    .short-desc p,
    .reviewer-content,
    .contact-section p,
    .contact form label,
    .contact form input{
        font-size: 1.5rem;
    }
    .section-2{
        min-height: 650px;
        height: inherit;
    }
    .section-img img{
        width: 50%;
    }
    .about-section{
        padding: 3%;
        padding-left: 10%;
    }
    .product{
        height: 655px;
    }
    .prod-imgs{
        height: 85%;
    }
    .next{
        right: 35px;
    }
    .faq-section{
        max-width: 1350px;
    }
    .review-contact{
        min-height: 850px;
    }
    .review-section{
        padding: 3%;
        padding-right: 10%;
    }
    .review-section>div{
        height: 100%;
    }
    .reviewer-info{
        height: 70px;
    }
    .contact-section{
        padding: 3%;
    }
    .contact{
        width: 90%;
        max-width: 850px;
    }
    .contact-mode a p{
        font-size: 1.3rem;
    }
    .submit button{
        font-size: 27px;
    }
    .whatsapp-section{
        width: 100px;
        height: 100px;
    }
    .whatsapp-section a i{
        font-size: 3.5rem;
    }
}

@media screen and (min-width: 1800px) {
    h3, h2, h1,
    .short-desc h3{
        font-size: 2.5rem;
    }
    p, a,
    .short-desc p,
    .reviewer-content,
    .contact-section p{
        font-size: 1.9rem;
    }
    .contact-mode a p{
        font-size: 1.5rem;
    }
}