
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Rubik", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #6c757d;
    line-height: 1.6666;
    font-weight: 400;
}

.ProductPageMainDiv{
    width: 100%;
    display: flex;
    justify-content: center;
}

.ProductPageSubDiv{
    min-width: 1200px;
    max-width: 1400px;
    padding: 75px 15px 0px 15px;
}

.OurProductMainDiv{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 30px 150px 0px 150px;
}

.OurProductText{
    text-align: center;
    font-size: 1.6rem;
    color: #595959;
    font-weight: 500;
    letter-spacing: 1px;
}

.OurProductContent{
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 400;
}


.ProductsPageParentDiv {
    min-height: calc(100vh - 75px);
    display: flex;
    position: sticky;
    background-color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    top: 0;
}

.ProductPaddingTop{
    padding-top: 75px;
}

.ProductContMainDiv{
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 0px 50px;
}

.ProductDetailDiv{
    width: 40%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ProductDetailSubDiv{
    width: 100%;
    height: auto;
}

.ProductName{
    font-size: 1.3rem;
    color: #595959;
    font-weight: 500;
}

.ProductContentText{
    font-size: 1.1rem;
    margin-top: 6px;
    font-family: 'Rubik', sans-serif;
    color: #6c757d;
    line-height: 1.6666;
    font-weight: 400;
}

/* .ReadMoreBtnMainDiv {
    background: #3973BC;
    border-radius: 40px;
    cursor: pointer;
    width: 170px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.ReadMoreBtnMainDiv:hover{
    background: #235798;
} */

.ReadMoreText{
    font-size: 1.05rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
}


.ReadMoreText::after {
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 12px;
}

.ReadMoreBtnMainDiv {
    display: inline-block;
    padding: 12px 36px;
    border-radius: 40px;
    font-size: 0.9rem;
    letter-spacing: 0.6px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none !important;
    color: #fff;
    margin-top: 20px;
    cursor: pointer;
  }
  
  .ReadMoreBtnMainDiv:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3973BC;
    color: #fff;
    border-radius: 40px;
    z-index: -2;
  }
  
  .ReadMoreBtnMainDiv:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #41B152;
    color: #fff;
    transition: all 0.3s;
    border-radius: 40px;
    z-index: -1;
  }
  
  .ReadMoreBtnMainDiv:hover {
    color: #fff;
  }
  
  .ReadMoreBtnMainDiv:hover:before {
    width: 100%;
  }


.ProductImageDiv{
    width: 60%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.ProductImageDiv2{
    display: none;
}

.ProductImageStyle{
    width: 650px;
    border-radius: 16px;
}

#WhatsAppTop {
    width: 45px;
    height: 45px;
    position: fixed;
    bottom: 110px;
    right: 25px;
    border-radius: 100%;
    background-repeat: no-repeat;
    background-position: 50% 48%;
    background: #3EAA51;
    transition: all 400ms ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
    cursor: pointer;
    z-index: 20;
}

.WhatsAppLinkColor{
    color: white;
    font-size: 26px;
}

#ui-to-top {
    width: 45px;
    height: 45px;
    position: fixed;
    bottom: 35px;
    right: 25px;
    border-radius: 100%;
    background-repeat: no-repeat;
    background-position: 50% 48%;
    background: linear-gradient(to right, #00aafc, #00caad);
    transition: all 400ms ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
    cursor: pointer;
    z-index: 20;
}

.ArrowColor {
    color: white;
    font-size: 20px;
}

/* ************************* Media Query Section *************************** */

/* For screens smaller than 768px (phones) */
@media only screen and (max-width: 767px) {

    #ui-to-top {
        display: none !important;
    }

    #WhatsAppTop {
        display: none !important;
    }

    .ProductPageSubDiv {
        min-width: 320px;
        /* max-width: 360px; */
        padding: 70px 20px 0px 20px;
    }

    .OurProductMainDiv {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 20px 0px 0px 0px;
    }

    .OurProductText {
        font-size: 1.3rem;
        letter-spacing: 0.7px;
    }

    .OurProductContent {
        font-size: 1rem;
        line-height: 1.6;
    }

    .ProductContMainDiv {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 15px 0px 15px 0px;
    }

    .ProductPaddingTop {
        padding-top: 70px;
    }

    .ProductDetailDiv {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .ProductName {
        font-size: 1.2rem;
    }

    .ProductDetailSubDiv {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .ProductContentText {
        font-size: 0.9rem;
        margin-top: 6px;
    }

    .ReadMoreBtnMainDiv {
        /* width: 160px; */
        height: 50px;
        margin-top: 14px;
    }

    .ReadMoreText {
        font-size: 0.95rem;
    }

    .ProductImageDiv {
        display: none;
    }

    .ProductImageDiv2 {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .ProductImageStyle {
        width: 650px;
        border-radius: 16px;
        min-width: 270px;
    }













}