@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Inter", sans-serif;
    color: #202020;
}
.navbar ul li {
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
}
.navbar ul li a {
    color: #000000;
}
.contact_menu {
    background: #f25c05;
    padding: 5px 20px !important;
    color: #fff;
}
.navbar ul li a.active {
    color: #f25c05 !important;
}
.brand_color {
    color: #f25c05;
}
.bg_primary {
    background: #f25c05;
    color: #fff;
}
@media (max-width: 767px) {
    .custom_section {
        padding-top: 60px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .custom_section {
        padding-top: 60px;
    }
}
@media (min-width: 991px) and (max-width: 1199px) {
    .custom_section {
        padding-top: 80px;
    }
}
@media (min-width: 1200px) {
    .custom_section {
        padding-top: 100px;
    }
}

a {
    text-decoration: none !important;
}
.read_more {
    padding: 8px 20px;
    transition: all 0.3s;
}
.read_more:hover {
    background: #ec8448;
}

.img-gradient {
    position: relative;
    display: inline-block;
}
.img-gradient:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 90%;
    height: 100%;
    display: inline-block;
    background: linear-gradient(
        180deg,
        rgba(242, 83, 5, 0) 55.73%,
        #f25c05 100%
    );
}
.img-gradient img {
    display: block;
    width: 90%;
}

.img-gradient .inner_btn {
    position: absolute;
    top: 15px;
    right: 0;
    background: #f25c05;
    color: #ffffff;
    padding: 10px 40px;
}
.img-gradient .inner_text {
    position: absolute;
    bottom: 15px;
    color: #ffffff;
    width: 85%;
    left: 6%;
    z-index: 1;
    padding-right: 8px;
}
.product_wrapper {
    position: relative;
}
.product_wrapper img {
    width: 100%;
}
.product_wrapper .product_inner_btn {
    position: absolute;
    cursor: pointer;
    background: #f25c05;
    color: #ffffff;
    padding: 5px 30px;
    bottom: 15px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero_img {
    position: relative;
}
.hero_img .page_title {
    position: absolute;
    left: 8%;
    top: 10%;
}
.testimonials-item {
    border: 1px solid #f25c05;
    padding: 7px;
    min-height: 152px;
}

.footer {
    background: #f25c05;
    color: #fff;
}
.footer ul {
    padding-left: 0;
    list-style-type: none;
}
.footer ul li {
    margin-bottom: 15px;
}
.footer ul li a {
    color: #fff;
}

@media screen and (max-width: 575px) {
    .hero_img .hero_child_img {
        position: absolute;
        right: 50px;
        top: 70px;
    }

    .hero_img .hero_child_img img {
        width: 33%;
    }
    .testimonials-item {
        min-height: 152px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .hero_img .hero_child_img {
        position: absolute;
        right: 88px;
        top: 120px;
    }

    .hero_img .hero_child_img img {
        width: 36%;
    }
    .testimonials-item {
        min-height: 270px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero_img .hero_child_img {
        position: absolute;
        right: 106px;
        top: 140px;
    }

    .hero_img .hero_child_img img {
        width: 45%;
    }
    .testimonials-item {
        min-height: 270px;
    }
}

@media (min-width: 991px) and (max-width: 1199px) {
    .hero_img .hero_child_img {
        position: absolute;
        right: 142px;
        top: 184px;
    }

    .hero_img .hero_child_img img {
        width: 60%;
    }
}

@media (min-width: 1200px) {
    .hero_img .hero_child_img {
        position: absolute;
        right: 125px;
        top: 264px;
    }

    .hero_img .hero_child_img img {
        width: 75%;
    }
}

@media screen and (max-width: 370px) {
    .latest_update_text p {
        font-size: 13px;
    }
}
@media (min-width: 370px) and (max-width: 575px) {
    .latest_update_text p {
        font-size: 14px;
    }
}
