@import url('https://fonts.googleapis.com/css2?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');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    list-style: none;
    text-decoration: none;
}

body {
    padding-top: 80px;
    overflow-x: hidden;
}

.main_container {
    max-width: 100vw;
}

.main_container .hero_container {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    overflow: hidden;
}

.main_container .hero_container .title_part {
    position: absolute;
    z-index: 3;
    top: 40%;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    width: 50%;
    height: 40%;
    padding: 0 0 0 10rem;
    background: #008080;
    border-radius: 0 50px 50px 0;

}

.main_container .hero_container .title_part .line_1 {
    font-size: 1.5rem;
    color: #fff;

}

.main_container .hero_container .title_part .line_1 span {
    font-size: 1.75rem;
    color: #F4A300;
    font-weight: bold;
}

.main_container .hero_container .title_part a {
    margin-top: 0.5rem;
}

.main_container .hero_container .title_part a button {
    cursor: pointer;
    background-color: #F4A300;
    border-radius: 10px;
    padding: 10px;
    font-weight: 600;
    font-size: 1rem;
    color: #008080;
    border: none;
    transition: 0.5s;
}

.main_container .hero_container .title_part a button:hover {
    box-shadow: 2px 2px 10px #ffffff;
}

.dynamic_text {
    font-size: 2rem;
    font-weight: 600;
    color: #F4A300;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.dynamic_text:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #008080;
    border-left: 2px solid #fff;
    animation: animate 4s steps(12) infinite;
}

@keyframes animate {

    40%,
    60% {
        left: 100%;
    }

    100% {
        left: 0%;
    }
}

.main_container .hero_container .image_part {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image_part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: fade 12s infinite;
    z-index: 1;
}

.image-slide {
    animation: fade 12s infinite;
}

.image-slide:nth-child(1) {
    animation-delay: 8s;
}

.image-slide:nth-child(2) {
    animation-delay: 4s;
}

.image-slide:nth-child(3) {
    animation-delay: 0s;
}

@keyframes fade {
    0% {
        opacity: 1;
    }

    20%,
    50% {
        opacity: 1;
    }

    55%,
    100% {
        opacity: 0;
    }
}

.product_container {
    margin: 4rem 0;
    width: 100%;
    padding: 0 10rem;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.product_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    border-radius: 10px;
    transition: 0.5s;
}

.responsive-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    align-self: center;
}

.product_container img:hover {
    transform: scale(1.12);
}

.product_container h2 {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(to right, #008080, transparent);
    color: #F4A300;
    padding-left: 0.5rem;
    border-radius: 10px 0 0 10px;
}


.product_section_1,
.product_section_2 {
    position: relative;
    padding: 0.5rem;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.product_section_2 {
    /* height: 80vh; */
    display: flex;
    flex-direction: column;
}

.product_section_2a {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 50%;
    padding: 0 0.5rem 0.5rem 0.5rem;
    border-radius: 10px;
}

.product_section_2b {
    overflow: hidden;
    position: relative;
    display: flex;
    width: 100%;
    height: 50%;
    padding: 0.5rem 0.5rem 0 0.5rem;
    border-radius: 10px;

}

.product_section_2b_1,
.product_section_2b_2 {
    overflow: hidden;
    position: relative;
    width: 50%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    background-size: 100%;
}

.product_section_2b_1 img,
.product_section_2b_2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.product_section_2b_1 {
    padding: 0 0.5rem 0 0;
}

.product_section_2b_2 {
    padding: 0 0 0 0.5rem;
}

.why_choose_us {
    width: 100vw;
    padding: 2rem 10rem;
    display: flex;
    flex-direction: column;
}

.why_choose_us h2 {
    color: #F4A300;
    padding-left: 1rem;
    background: linear-gradient(to right, #008080, transparent);
    border-radius: 10px 0 0 10px;
}

.why_choose_us_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.why_choose_us_list .why_choose_reason {
    width: 80%;
    margin: 1.5% auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    transition: 0.5s;
}

.why_choose_us_list .why_choose_reason:nth-child(even) {
    flex-direction: row-reverse;
}



.why_choose_us_list .why_choose_reason iframe {
    border: none;
    height: 300px;
    width: auto;
    max-width: 100%;
    border-radius: 5px 5px 0 0;
    object-fit: cover;
}

.reason_content {
    width: 60%;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.why_choose_us_list .why_choose_reason .reason_content h3 {
    width: 100%;
    padding: 0.25rem 1rem;
    font-size: 1.25rem;
    background: linear-gradient(to right, #008080, transparent);
    color: #F4A300;
    border-radius: 10px 0 0 10px;
}

.why_choose_us_list .why_choose_reason .reason_content ul {
    /* background: #708090; */
    color: #000;
    padding: 0.5rem 1rem;
    list-style: disc;

}

.why_choose_us_list .why_choose_reason .reason_content ul li {
    color: #000;
    font-size: 1rem;
}

.why_choose_us_list .why_choose_reason .reason_content ul li .hexcode {
    color: #000;
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.ordernowbtn {
    width: 10rem;
    background: #008080;
    height: 3rem;
    border-radius: 10px;
    align-content: center;
    transition: 0.3s;
}

.ordernowbtn a {
    color: #F4A300;
    font-size: 1.5rem;
    font-weight: 500;
    transition: 0.3s;
}

.ordernowbtn:hover {
    background: #F4A300;
    color: #000;
}

.ordernowbtn:hover a {
    color: #000;
}

.testimonial {
    position: relative;
    width: 100vw;
    padding: 2rem 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial h2 {
    width: 100%;
    /* text-align: center; */
    background: linear-gradient(to right, #008080, transparent);
    color: #F4A300;
    padding-left: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px 0 0 10px;
}

.review_box {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    box-shadow: 10px 10px 10px #008080, -5px -5px 10px #5880ee;
    position: relative;
    overflow: hidden;
}

.card {
    height: 300px;
    padding: 40px;
    line-height: 22px;
    background: #fff;
    position: relative;
    z-index: 1;
}

.profile {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    margin-right: 20px;

}

.profile h3 {
    font-size: 1.5rem;
    color: #008080;
    margin-bottom: 8px;
}

.testimonial .google_review {
    margin: 1rem;
    height: 2rem;
    width: 100%;
    background: #008080;
    border-radius: 10px;
    border: none;

}

.testimonial .google_review a {
    font-size: 1rem;
    font-weight: bold;
    color: #F4A300;
    text-align: left;
}

.google-review-text {
    display: inline-block;
    background-color: white;
    padding: 0 5px;
    border-radius: 5px;
}

.g {
    color: #4285F4;

}

.o1 {
    color: #EA4335;
}

.o2 {
    color: #FBBC05;
}

.g2 {
    color: #34A853;
}

.l {
    color: #FFB6C1;
}

.e {
    color: #8A2BE2;
}

#slide {
    width: 100%;
    padding-right: 60px;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.slidebar {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    width: 60px;
    height: 100%;
    padding: 15px 0;
    background: #008080;
    position: absolute;
    right: 0;
    top: 0;
}

.slidebar svg {
    cursor: pointer;
    font-size: 0.5rem;
    transition: 0.5s;
}

.card::before {
    content: '';
    width: 110px;
    height: 110px;
    border-bottom-right-radius: 100%;
    background: #008080;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}


.about_section4 {
    width: 100%;
    padding: 2rem 10rem;
}

.about_section4 .about_section4_heading h3 {
    font-size: 1.5rem;
    padding-left: 1rem;
    border-radius: 10px 0 0 10px;
    background: linear-gradient(to right, #008080, transparent);
    color: #F4A300;
    margin: 0 0 1rem 0;
}

.about_section4 .strength_div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about_section4 .strength_div .strength_div_tabs {
    width: calc(50% - 1rem);
    margin: 1rem 1rem 1rem 0;
}

.about_section4 .strength_div .strength_div_tabs img {
    height: 350px;
    width: 100%;
    /* border: 1px solid black; */
    background: #D3D3D3;
    padding: 1rem;
    border-radius: 10px;
}

.about_section4 .strength_div .strength_div_tabs h3 {
    font-size: 1.5rem;
    color: #008080;
    margin-bottom: 8px;
}

@media (max-width: 991px) {

    .main_container .hero_container {
        height: 50vh;
    }

    .main_container .hero_container .title_part {
        width: 80%;
        height: 50%;
        border-radius: 0 15px 15px 0;
        padding: 0 0 0 1rem;
    }

    .main_container .hero_container .title_part .line_1 {
        font-size: 1rem;
        color: #fff;
    }

    .main_container .hero_container .title_part .line_1 span {
        font-size: 1.1rem;
        color: #F4A300;
        font-weight: bold;
    }

    .main_container .hero_container .title_part a {
        margin-top: 0.25rem;
    }

    .main_container .hero_container .title_part a button {
        font-size: 0.5rem;
    }

    .main_container .hero_container .title_part a button:hover {
        box-shadow: 2px 2px 10px #ffffff;
    }

    .dynamic_text {
        font-size: 1.2rem;
    }

    .product_container {
        padding: 0 1rem;
        flex-direction: column;
    }

    .product_section_1,
    .product_section_2 {
        width: 100%;
        height: 100%;
        padding: 0.25rem 0;
    }

    .product_section_2a,
    .product_section_2b {
        padding: 0.25rem 0;
    }

    .why_choose_us {
        padding: 2rem 1rem;
    }

    .why_choose_us_list {
        display: flex;
        flex-direction: column;
    }

    .why_choose_us_list .why_choose_reason {
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .why_choose_us_list .why_choose_reason:nth-child(even) {
        flex-direction: column;
    }

    .reason_content {
        width: 90%;
        min-height: 100%;
    }

    .about_section4 {
        width: 100%;
        padding: 2rem 1rem;
    }

    .about_section4 .strength_div {
        display: flex;
        flex-direction: column;
    }

    .about_section4 .strength_div .strength_div_tabs {
        width: calc(100% - 1rem);
        margin: 1rem 1rem 1rem 0;
    }

    .about_section4 .strength_div .strength_div_tabs img {
        height: 250px;
        width: 100%;
        /* border: 1px solid black; */
        background: #D3D3D3;
        padding: 1rem;
        border-radius: 10px;
    }

    .about_section4 .strength_div .strength_div_tabs h3 {
        font-size: 1.25rem;
        color: #008080;
        margin-bottom: 8px;
    }

    .testimonial {
        padding: 2rem 1rem;
    }

    /* 
    .review_box {
        width: 100%;
        height: 200px;
        border-radius: 10px;
        box-shadow: 10px 10px 10px #008080, -5px -5px 10px #5880ee;
        position: relative;
        overflow: hidden;
    }
    
    .card {
        height: 200px;
        padding: 20px;
        line-height: 22px;
        background: #fff;
        position: relative;
        z-index: 1;
    }
    
    .profile {
        display: flex;
        align-items: center;
        margin-bottom: 40px;
    }
     */
}