@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

:root{
    --main-color: #FF0000;
    --sub-color: #FF7A00;
    --product-header: #646363;
    --breadcrumb-bg: #E5E7EB;
    --breadcrumb-text: #1E1E1E;
    --product-text: #B5B5B5;
    --bg-active-color: #393939;
    --contact-input: #BBBBBB;
    --times-new-roman: 'Times New Roman', Times, serif;
    --poppins: 'Poppins', sans-serif;;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--poppins);
}
.top-header,.footer{
    background-color: var(--bg-active-color);
}
/* =========header======== */
.header-icon{
    width: 16px;
    vertical-align: middle;
}
.header-text {
    font-size: 13px;
    color: yellow;
}
.brand-logo{
    width: 65%;
}
.navbar-nav .nav-item .nav-link{
    font-size: 15px;
    color: var(--sub-color);
    text-transform: uppercase;
    font-weight: 700;
    transition:  color 0.4s ease;
    white-space: nowrap ;
}
.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link:hover{
    color: var(--bg-active-color);
}
.active .nav-link{
    color: var(--bg-active-color) !important;
}
/* ==========slider========== */
.carousel-indicators{
    margin-bottom: 3rem;
    justify-content: start !important;
}
.carousel-indicators li{
    width: 12px !important;
    height: 12px !important;
    opacity: 1 !important;
    background-color: white !important;
}
.carousel-indicators li.active{
    background-color: yellow!important;
}
.header .navbar-nav .dropdown-menu {
    position: absolute ;
    border: none;
    right: 0;
    border-radius: 0px;
    padding: 0;
    min-width: 18rem;
}
.header .dropdown:hover>.dropdown-menu {
    display: block;
}
.header .dropdown>.dropdown-toggle:active {
    pointer-events: none;
}
.header .dropdown-menu li {
    position: relative;
}
.header .dropdown-menu .dropdown-item {
    color: white;
    font-size: 13px;
    padding: 10px 15px;
    font-weight: 300;
    background-color: var(--bg-active-color);
    border-top: 1px solid #484848;
}
.header .dropdown-menu .dropdown-item i{
    font-size: 11px;
    font-weight: 300;
    margin-top: 2px;
}
.header .navbar-toggler {
    border-radius: 0;
    height: 60px;
    padding: 4px 8px;
}
.header .navbar-toggler:focus{
    box-shadow: 0 0 1px 2px var(--sub-color);
}
/* =======welcome to ========== */
.border-20{
    border-radius: 20px;
}
.main-header{
    color: var(--main-color);
    font-family: var(--times-new-roman);
    font-weight: 700;
}
.mute-header{
    color: var(--contact-input);
    font-weight: 700;
}
.sub-header{
    color: var(--sub-color);
    font-weight: bold;
}
.about-text {
    color: black;
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    text-align: justify;
}
.seemore-icon{
    width: 18px;
    margin-right: 8px;
    vertical-align: top;
    margin-top: 1px;
}
.see-mote-btn{
    color: white;
    font-size: 14px;
    border: none;
    background: var(--sub-color);
    padding: 10px 20px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.more-overlay{
    position: absolute;
    top: 100%;
    left: 47%;
    width: 15px;
    height: 15px;
    background: #000;
    transform: scale(0);
    border-radius: 50%;
    transition:  0.8s ease;
    z-index: -1;

}
.see-mote-btn:hover .more-overlay{
    transform: scale(20);
}
/* =========home product========= */
.products,.about-2{
    background-color: #e5e7eb;
}
.home-product{
    border-radius: 20px 20px 0 0;
}
.product-img-box{
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0 ;
}
.header-bg{
    background-color: var(--sub-color);
    padding: 13px 20px;
    display: flex;
    align-items: center;
    height: 70px;
    justify-content: center;
    text-align: center;
    transition: background 0.4s ease;
}
.home-product-header{
    color: white;
    font-size: 17px;
}
.product-box .overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.product-box .overlay-icon {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.link-icon{
    width: 30px;
}
.product-box:hover .overlay{
    opacity: 1;
}
.product-box:hover .header-bg{
    background-color: #414141;
}

/* =========NEWSLETTER========= */
.newsletter-box{
    display: flex;
    justify-content: space-between;
    width: 75%;
}
.news-header{
    color: var(--product-header);
    font-family: var(--times-new-roman);
    font-weight: bold;
}
.newsletter-input{
    color: var(--product-header) !important;
    padding: 15px 20px !important;
    font-size: 14px;
    border: none;
    border-radius: 0 !important;
    background-color: #f0f0f0;
    width: 75%;
}
.newsletter-input::placeholder{
    color: var(--product-header);
}
.newsletter-input:focus{
    border: none !important;
    background: #f0f0f0 !important;
}
.submit-btn{
    border: none;
    color: white;
    background-color: var(--sub-color);
    border-radius: 5px;
    padding: 11px 30px;
    text-transform: uppercase;
}
.logo-subscribe{
    width: 100%;
}
/* =======banner======== */
.header-position {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
}
/* =========footer========= */
.footer-header{
    color: white;
    font-weight: 500;
}
.footer-icon{
    width: 20px;
}
.footer-text{
    color: white;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
}
/* ========our porducts======= */
.quick-link{
    background-color: var(--breadcrumb-bg);
}
.breadcrumb-item{
    text-decoration: none;
    font-size: 15px;
    color: var(--breadcrumb-text);
    font-weight: 500;
}
.our-products .card{
    border: 1px solid var(--breadcrumb-bg);
    border-radius: 0 !important;
}
.our-products .card-body{
    background-color: var(--sub-color);
}
.our-products .card-body .card-title{
    color: white;
}
.our-products .list-group{
    background-color: #fff1f1 !important;
}
.our-products .list-group .list-group-item{
    background-color: transparent !important;
    padding: 0 !important;
    border: none;
}
.our-products .list-group .list-group-item .product-item{
    background: transparent;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    color: var(--breadcrumb-text);
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.4s ease;
}
.our-products .list-group .list-group-item .product-item.active,
.our-products .list-group .list-group-item .product-item:hover{
    background: #e5e7eb;
}
.our-products .list-group .list-group-item .product-item i{
    font-size: 15px;
    font-weight: bold;
}
.our-products .list-group .list-group-item .product-item p{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis !important;
}
.product-images{
    border-radius: 10px;
}
.product-header{
    color: var(--product-header);
    font-size: 16px;
}
/* =======contact us=======  */
.contact-us{
    background-color: #e5e7eb;
}
.contact-header{
    color: black;
    font-weight: 600;
}
.contact-box{
    background-color: var(--bg-active-color);
    padding: 40px;
    border-radius: 20px;
}
.office{
    color: white;
    font-weight: 400;
}
.contact-img{
    width: 50%;
}
.contact-us .form-control{
    background-color: white !important;
    border-radius: 0;
    border-bottom: 1px solid var(--contact-input);
    padding: 10px;
}
.contact-us .form-control,
.contact-us .form-control::placeholder{
    font-size: 14px;
    color: var(--contact-input);
}
.contact-us .form-control:focus{
    box-shadow: none;
    border-color: transparent;
    border-bottom: 1px solid var(--contact-input) !important;
}
.send-btn{
    border: none;
    border-radius: 5px;
    background-color: var(--sub-color);
    color: white;
    font-size: 14px;
    padding: 10px 50px;
}
/* =======fade effect======== */
@-webkit-keyframes fade {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes fade {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes fade {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fade {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
.page {
    animation-name: fade;
    animation-duration: 0.5s;
    animation-fill-mode: backwards;
}

/* ============media query responsive=============== */
@media screen and (max-width:1024px) {
    .navbar-nav .nav-item .nav-link{
        font-size: 14px;
    }
    .home-product-header{
        font-size: 16px;
    }
    .header-bg{
        height: 60px;
    }
    .newsletter-box{
        width: 90%;
    }
    .newsletter-input{
        width: 70%;
    }
    .footer-text {
        font-size: 13px;
        line-height: 27px;
    }
    .navbar-nav {
        width: 90% !important;
    }
}
@media screen and (max-width:991px) {
    .navbar-nav .nav-item .nav-link {
        font-size: 13px;
    }
    .header .dropdown-menu .dropdown-item {
        font-size: 12px;
        padding: 8px 15px;
    }
    .header .dropdown-menu{
        width: 50% !important;
    }
    .brand-logo {
        width: 50%;
    }
    .header .navbar-nav .dropdown-menu {
        position: static;
    }
    .header .dropdown:hover>.dropdown-menu {
        display: none;
    }
    .header .dropdown>.dropdown-toggle:active {
        pointer-events: all;
    }
    .header .dropdown .dropdown-menu.show {
        display: block;
    }
    .mute-header {
        font-size: 15px;
    }
    .main-header,.news-header {
        font-size: 35px;
    }
    .sub-header {
        font-size: 25px;
    }
    .about-text {
        font-size: 14px;
        line-height: 23px;
    }
    .see-mote-btn {
        font-size: 13px;
        padding: 9px 17px;
    }
    .seemore-icon {
        width: 17px;
        margin-bottom: 2px;
    }
    .header-bg {
        height: 55px;
    }
    .home-product-header {
        font-size: 14px;
    }
    .newsletter-box{
        display: block;
    }
    .newsletter-input{
        width: 100%;
        margin-bottom: 20px;
        padding: 13px 17px !important;
        font-size: 14px;
    }
    .submit-btn{
        font-size: 14px;
        padding: 8px 25px;
    }
    .our-products .card-body .card-title {
        font-size: 20px;
    }
    .our-products .list-group .list-group-item .product-item {
        padding: 8px 15px;
        font-size: 13px;
    }
    .our-products .list-group .list-group-item .product-item i {
        font-size: 14px;
        margin-top: 1px;
    }
    .product-header {
        font-size: 15px;
    }
    .send-btn {
        padding: 10px 40px;
    }
    .header-size {
        font-size: 30px;
    }
}
@media screen and (max-width:767px) {
    .header-size {
        font-size: 20px;
    }
    .brand-logo {
        width: 55%;
    }
    .header .navbar-toggler {
        height: 50px;
        padding: 4px 5px;
    }
    .newsletter-box{
        width: 100%;
    }
    .contact-box{
        padding: 20px;
    }
    .header-text {
        font-size: 11px;
    }
    .header-icon {
        width: 14px;
    }
    .navbar-nav .nav-item .nav-link{
        font-weight: 500;
        font-size: 12px;
    }
    .home-product-header {
        font-size: 15px;
    }
    .logo-subscribe{
        width: 80%;
    }
    .our-products .card {
        width: 80%;
    }
}
@media screen and (max-width:420px) {
    .header .dropdown-menu .dropdown-item i{
        margin-top: 0;
    }
    .contact-header,.office {
        font-size: 20px;
    }
    .footer-header{
        font-size: 18px;
    }
    .header-text {
        font-size: 11px;
    }
    .brand-logo {
        width: 60%;
    }
    .header .navbar-toggler {
        height: 40px;
        padding: 4px 1px;
    }
    .home-product-header {
        font-size: 13px;
    }
    .header-bg {
        height: 45px;
    }
    .breadcrumb-item{
        font-size: 14px;
    }
    .breadcrumb{
        padding: 20px 0 !important;
    }
    .contact-us .form-control, .contact-us .form-control::placeholder {
        font-size: 13px;
    }
    .contact-us .form-control {
        padding: 8px;
    }
    .send-btn {
        padding: 7px 30px;
        font-size: 13px;
    }
    .footer-icon {
        width: 18px;
    }
    .contact-box {
        padding: 12px;
    }
    .d-flex.mb-1 .ms-3{
        margin-left: 10px !important;
    }
}
@media screen and (max-width:390px) {
    .home-product-header {
        font-size: 11px;
    }
    .footer-text {
        font-size: 12px;
        line-height: 25px;
    }
    .header .dropdown-menu .dropdown-item {
        font-size: 11px;
        padding: 6px 11px;
    }
    .header .dropdown-menu .dropdown-item i{
        font-size: 10px;
    }
}
@media screen and (max-width:380px) {
    .header .dropdown-menu .dropdown-item {
        font-size: 10px;
        padding: 6px 11px;
    }
    .contact-us .d-flex.mb-1 .ms-3{
        margin-left: 7px !important;
    }
    .footer-icon {
        width: 16px;
    }
    .footer-text {
        font-size: 11px;
        line-height: 23px;
    }
    .mute-header {
        font-size: 13px;
    }
    .main-header, .news-header {
        font-size: 30px;
    }
    .sub-header {
        font-size: 22px;
    }
    .about-text {
        font-size: 13px;
        line-height: 23px;
    }
    .header .navbar-toggler {
        height: 30px;
        padding:  2px;
        padding-bottom: 3px;
    }
    .navbar-toggler-icon{
        width: 1em !important;
        height: 1em !important;
    }
}
@media screen and (max-width:360px) {
    .header-text {
        font-size: 9px;
    }
    .navbar-nav .nav-item .nav-link {
        font-size: 11px;
    }
    .home-product-header {
        font-size: 10px;
    }
    .header-bg {
        height: 40px;
    }
    .br{
        display: none;
    }
    .header-size {
        font-size: 18px;
    }

}
@media screen and (max-width:280px) {
    .header .dropdown-menu .dropdown-item{
        width: 75% !important;
    }
    .main-header, .news-header {
        font-size: 25px;
    }
    .home-product-header {
        font-size: 7px;
    }
    .header-bg {
        height: 30px;
    }
    .header .dropdown-menu .dropdown-item {
        font-size: 9px;
        padding: 5px 10px;
    }
    .header .dropdown-menu .dropdown-item i {
        font-size: 8px;
    }
    .our-products .card {
        width: 100%;
    }
    .product-header {
        font-size: 11px;
    }
}