* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

/* font lexend */
@import url('../../../fonts.googleapis.com/css232e7.css?family=DM+Serif+Display:ital@0;1&amp;family=Lexend:wght@100;200;300;400;500;600;700;800;900&amp;display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
    font-family: 'Lexend', sans-serif;
   
}



:root {
    --primary-col: #d73435;
    --secondary-col: #2d398e;
    --black-col: #000;
    --white-col: #fff;
}

a {
    text-decoration: none;
    color: #d73435;
    font-weight: 500;
}

a:hover{
    color: #000;
}
/* navbar */


.navbar-brand img {
    height: 120px;
}

.navbar .nav-item .nav-link {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 40px;
}
.navbar .nav-item .nav-link:hover{
    color: #d73435;
}
.navbar .nav-item .nav-link.contact-btn {
    border-radius: 30px;
    padding: 10px 25px;
    background: var(--black-col);
    color: var(--white-col);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.navbar .nav-item .nav-link.contact-btn::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(246,213,144,1) 0%, rgba(243,179,46,1) 52%, rgba(231,161,15,1) 100%);
    z-index: -1;
    transition: .5s ease-in-out;

}
.navbar .nav-item .nav-link.contact-btn:hover::before{
    width: 100%;
}

/* hero section */
.hero-section {
    background-image: url('../images/banner/banner-img.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0 40px;
    height: calc(100vh - var(--header-height) - 30px);
    margin: 0 3%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 20px 10px;
}

.hero-section .hero-logo-img {
    width: 80px;
    margin-bottom: 10px;
}

.hero-section h1 {
    color: var(--white-col);
    font-family: 'DM Serif Display', serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    /* 103.704% */
    margin-bottom: 10px;
}

.hero-section h1 span {
    color: var(--primary-col);
}

.hero-section p {
    color: var(--white-col);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 122.222% */
}

.call-btn{
    background-color: #fff;
    color: #000000;
    font-size: 17px;
    font-weight: 600;
    padding: 13px 35px;
    border-radius: 60px;
    transition: .3s ease-in-out;
    text-transform: uppercase;
}
.call-btn:hover{
    background-color: #d73435;
    color: #fff;
}
.call-btn i{
    font-size: 16px;
    margin-left: 5px;
}
.view-product-btn{
    background-color: transparent;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    padding: 11px 25px;
    border-radius: 60px;
    border: 1px solid #fff;
    transition: .3s ease-in-out;
    text-transform: uppercase;
    margin-left: 20px;
}
.view-product-btn:hover{
    background-color: #d73435;
    color: #fff;
}
.view-product-btn i{
    font-size: 16px;
    margin-left: 5px;
}

/* about section */
.about-section {
    padding: 120px 10px;
}

.sm-head {
    color: var(--secondary-col);
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px;
    margin-bottom: 0;
}

.main-head {
    color: var(--black-col);
    font-family: 'DM Serif Display', serif;
    font-size: 46px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    display: inline-block;
    position: relative;
}



.main-head span {
    color: #d73435;
}

.main-head::before {
    content: '';
    background-image: url('../images/about/icon-askar.png');
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50%;
    top: -35px;
}

.main-head.why-choose::before{
    left: 70%;
}

.yellow-sm-head {
    color: var(--primary-col);
    font-family: "DM Serif Display";
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
}

.description {
    color: var(--black-col);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
}

.btn-1 {
    border-radius: 30px;
    padding: 13px 35px;
    border: 1px solid #000;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: inline-block;
    margin-top: 10px;
    transition: .3s ease;
}
.btn-1:hover{
    border: 1px solid #d73435;
    color: #d73435;
}

.product-card {
    margin: 0 0px 50px;
}

.product-card .product-img-box {
    height: 260px;
    width: 100%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-image: url('../images/product/product-bg-1.png'); */
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
}

.product-card .product-name {
    color: var(--black-col);
    font-family: "DM Serif Display";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 155.08% */
    margin-bottom: 0;
}

.product-card .product-desc {
    color: var(--black-col);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 16px;
    /* 114.286% */
    margin: 10px 0 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.product-card .product-btn {
    border-radius: 50px;
    background: #000;
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 133.333% */
    padding: 10px 25px;
    display: inline-block;
    transition: .3s ease-in;
}
.product-card .product-btn:hover{
    background-color: #d73435;
    color: #fff;
}

.view-all-product{
    color: var(--black-col);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 60px;
    border: 1px solid #000;
    padding: 12px 35px;
    transition: .4s ease-in-out;
}

.view-all-product:hover{
    background-color: #000;
    color: #fff;
}
/* cta section */

.cta-section{
    padding: 180px 0 150px;
    background-image: url('../images/cta-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin: 100px 0;
}
.cta-section .head{
    font-size: 46px;
    line-height: 52px;
    font-weight: 600;
    color: #000;
    font-family: "DM Serif Display";
}
.cta-section .desc{
    width: 80%;
}
.main-head.mh-70::before{
    left: 75%;
}

.btn-2{
    border-radius: 60px;
    background: #000;
    padding: 13px 30px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: inline-block;
    margin-right: 20px;
    transition: .3s ease-in-out;
}
.btn-2:hover{
    background-color: #d73435;
    color: #ffffff;
}

.features-boxes{
    padding: 100px 0px;
}

.feature-box{
    display: flex;
    align-items: center;

}
.feature-box .icon{
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.feature-box .content{
    width: 70%;
    margin-left: 10px;
}
.feature-box .content h4{
    color: #000;
    font-family: "DM Serif Display";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 100% */
}
.feature-box .content p{
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px; /* 137.5% */
}

/* blog section */
.blog-section{
    padding: 100px 10px;
    background-image: url('../images/blog/blog-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.main-head.mh-white{
    color: var(--white-col);
}
.main-head.mh-30::before{
    background-image: url('../images/about/icon-askar-white.png');
    left: 20%;
}
.description.des-wh{
    color: var(--white-col);
}
.blog-slider-card{
    background-color: var(--white-col);
    padding: 10px;
    border-radius: 20px;

}
.blog-img{
    position: relative;
    height: 300px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}
.blog-img img{
    height: 100%;
    width: 100%;
}
.blog-slider-card .blog-head{
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 133.333% */
}
.blog-slider-card .blog-desc{
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px; /* 128.571% */
}
.btn-icon-1{
    width: 13px !important;
    height: 12px;
    display: inline !important;
    margin-left: 10px;
}
.blog-slider-card a{
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px; /* 128.571% */
}

/* cta 2 */

.cta-2-section{
    padding: 100px 0px;
}
.cta-2-section .container{
    padding: 80px 50px;
    background-image: url('../images/cta-2-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
    overflow: hidden;
}
.cta-head{
    color: #000;
    font-family: "DM Serif Display";
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px; /* 117.391% */
}
.cta-desc{
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px; /* 133.333% */
}


/* inner page banner */
.inner-pg-banner{
    padding: 100px 40px;
    background-image: url('../images/banner/about-pg.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 3%;
    overflow: hidden;
    border-radius: 60px;
    display: flex;
    align-items: center;
}

.product-page-banner{
    background-image: url('../images/banner/product-banner.png');
}

.contact-banner{
    background-image: url('../images/banner/contact-banner.png');
}
.blog-pg-banner{
    background-image: url('../images/banner/blog-banner.png');
 
}
.blog-inner-page-banner{
    background-image: url('../images/banner/banner-inner-img.png');
    min-height: 60vh;

}
.page-name h5{
    color: #ffffff;
    text-align: center;
    font-family: "DM Serif Display";
    font-size: 54px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 50px 30px;
}

/* about pg feature section */
.feature-section .container{
    padding: 80px 15%;
    background-image: url('../images/feature/feature-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;

}
.feature-div{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-div p{
    font-size: 24px;
    font-weight: 500;
    font-family: "DM Serif Display";
    color: #fff;
    margin-top: 20px;
}

.features-boxes.abt-pg{
    padding: 100px 0 0;
}
.cta-2-section.abt-pg{
    padding: 0 10px 100px;
}



/* product page */

.product-pg-section{
    padding: 100px 10px;
}

.main-head.product-pg::before{
    left: 65%;
    top: -35px;
}

.product-pg-card{
    /* background-image: url('../images/product/product-pg-bg.png'); */
    background: black;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px 10px 20px 20px;
    margin-bottom: 40px;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.product-pg-card .head{
    color: #fff;
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
    font-family: "DM Serif Display";
}
.product-pg-card .desc{
    color: #fff;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 20px;

}
.product-pg-card .product-btn{
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 30px;
    font-size: 12px;
    border-radius: 50px;
    display: inline-block;
}
.product-pg-card .product-img{
    display: flex;
    align-items: flex-end;
}

/* footer */
footer{
    padding: 100px 0 15px;
}
.footer-desc{
    font-size: 14px;
    margin: 20px 0;
}
.ftr-sm-icons{
    display: flex;
    gap: 15px;
}
.ftr-sm-icons img{
    width: 30px;
}
.ftr-lnk-head{
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.ftr-links{
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 7px;
    display: block;
    color: #000;
    width: fit-content;
}
.ftr-links:hover{
    color: #d73435;
}
.ftr-details{
    display: flex;
    flex-shrink: 0;
    margin-bottom: 10px;
    color: #000;
}
.ftr-details a{
    color: #000;
}

.ftr-details.number a{
    white-space: nowrap;
}
.ftr-details p{
    margin-bottom: 0;
}
.ftr-details img{
    margin-right: 10px;
    max-width: 100%;
    height: 100%;
    margin-top: 2px;
}
.copyright-line{
    padding: 50px 0px 0;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.copyright{
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 0;
}
.copyright-line img{
    width: 70%;
}

/* contact pg */
.contact-section{
    padding: 100px 10px;
}
.contact-section .desc{
    width: 75%;
    margin: 10px 0 10px;
}
.contact-section .sm-head{
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    color: #000;
    margin: 20px 0 10px;
}

.contact-form .sm-head span{
    font-size: 24px;
    display: block;
}
.input-field{
    border-style: none;
    background-color: #F7F7F7;
    border-radius: 30px;
    padding: 10px 28px;
    margin-bottom: 20px;
    width: 100%;
}
.input-field::placeholder{
    font-size: 14px;
}
.form-box{
    margin-top: 30px;
}
.message-area{
    border-style: none;
    background-color: #F7F7F7;
    border-radius: 30px;
    padding: 10px 28px;
    margin-bottom: 20px;
    width: 100%;
}
.message-area::placeholder{
    font-size: 14px;
}

.submit-btn{
    background-color: #000;
    color: #fff;
    padding: 13px;
    display: block;
    text-align: center;
    border-radius: 30px;
    text-transform: uppercase;
    transition: .4s ease-in;
    font-weight: 600;
}
.submit-btn:hover{
    background-color: #d73435;
    color: #fff;
}
.map-section iframe{
    height: 340px;
    width: 100%;
    border-radius: 30px;
}


/* blog pg */

.blog-pg-section{
    padding: 100px 10px;
}
.blog-card{
    padding: 10px 10px 15px;
    margin: 20px 2px;
    border: 1px solid #000;
    border-radius: 20px;
}
.blog-card .blog-card-img{
    position: relative;
    margin-bottom: 25px;
}
.blog-card .blog-card-img img{
    height: 250px;
    object-fit: cover;
    width: 100%;
    border-radius: 15px;
}
.blog-catagory{
    font-size: 12px;
    left: 0;
    bottom: 30px;
    position: absolute;
    background-color: #fff;
    padding: 4px 15px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    white-space: nowrap;
}

.blog-card .head{
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
}
.blog-card .desc{
    font-size: 14px;
    margin-bottom: 5px;
}
.blog-card a{
    color: #000;
    font-size: 14px;
    line-height: 20px;

}
.blog-card a img{
    height: 12px;
    margin-left: 5px;
}

.blog-details-section{
    padding: 100px 10px 10px;
}

.catagory-blog{
    font-size: 12px;
    border: 1px solid #000;
    border-radius: 15px;
    padding: 4px 15px;
}
.blog-details-section .head{
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    width: 50%;
    margin: 10px 0 20px;
}
.blog-details-section img{
    margin-bottom: 30px;
}
.blog-details-section h6{
    font-size:22px;
}
.more-blogs{
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 35px;
    display: inline-block;
    margin-top: 30px;
    width: fit-content;
    border-radius: 30px;
    margin-left: 10px;
    transition: .3s ease-in;
}

.more-blogs:hover{
    background-color: #d73435;
    color: #fff;
    border-color: #d73435;
}

/* media query ipad */

@media screen and (max-width:999px){
    .hero-section {
        padding: 0 40px;
        height: calc(80vh - var(--header-height)-30px);
        margin: 0 3%;
        border-radius: 20px;
        display: flex;
        align-items: center;
    }
    .about-img{
        margin-bottom: 20px;
    }
    .product-card .product-img-box{
        height: 220px;
    }
    .product-card{
        margin: 0 0 40px;
    }
    .cta-section{
        background-position: right;
        padding: 100px 0 140px;
        margin: 50px 0;
    }
    .cta-section .head{
        font-size: 34px;
    }
    .footer-desc{
        width: 45%;
    }
    .ftr-sm-icons{
        margin-bottom: 40px;
    }
    footer{
        padding: 20px 0 10px;
    }
    .feature-section .container{
        padding: 50px 40px;
    }
    .product-pg-card .product-img img{
        position: absolute;
        right: 10px;
    }
}


/* mobile */

@media screen and (max-width:767px){
    .hero-section h1{
        font-size: 34px;
        line-height: 42px;
    }

    .navbar-brand img {
    height: 70px;
    }
    .hero-section {
        padding: 0 10px;
        height: calc(80vh - var(--header-height)-30px);
        margin: 0 1%;
        border-radius: 20px;
        display: flex;
        align-items: center;
    }
    .hero-section p{
        display: none;
    }
    .view-product-btn{
        display: none;
    }
    .main-head{
        font-size: 38px;
    }
    .sm-head{
        font-size: 19px;
    }
    .about-section{
        padding: 60px 10px;
    }
    .cta-section{
        margin-bottom: 0;
    }
    .cta-2-section .container{
        padding: 40px 20px;
        border-radius: 60px;
    }
    .cta-2-section{
        padding: 50px 10px;
    }
    .cta-head{
        font-size: 30px;
        line-height: 40px;
    }
    .page-name h5 {
        font-size: 30px;
    }
    .inner-pg-banner{
        padding: 30px 20px;
    }
    .feature-section .container{
        flex-direction: column;
    }
    .feature-div{
        margin-bottom: 20px;
    }
    .feature-section{
        padding: 10px;
    }
    .product-pg-card .product-img{
        justify-content: center;
    }
    .product-pg-card .product-img img{
        position: relative;

    }
    .product-pg-section{
        padding: 80px 10px 0;
    }
    .ftr-details{
        flex-wrap: nowrap;
    }
    .inner-pg-banner{
        display: none;
    }
    .blog-details-section .head{
        width: 100%;
    }
    .footer-desc{
        width:90%;    
    }
    .ftr-lnk-head{
        margin-bottom:10px;    
    }
}

/* loader */
.loader-div{
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    z-index: 9999;
}


/* HTML: <div class="loader"></div> */
.loader {
    width: 40px;
    aspect-ratio: 1;
    display: grid;
  }
  .loader::before,
  .loader::after {
    content: "";
    grid-area: 1/1;
    background: #d73435;
    clip-path: polygon(0 0,101% 0, 0 100%);
    animation: l13 2s infinite;
  }
  .loader::after {
    --s:-1,-1;
    background: #2d398e;

  }
  @keyframes l13 {
      0%,
      10%  {transform:scale(var(--s,1)) translate(0,0)        rotate(0deg)}
      33%  {transform:scale(var(--s,1)) translate(20px,-20px) rotate(0deg)}
      66%  {transform:scale(var(--s,1)) translate(20px,-20px) rotate(180deg)}
      90%,
      100% {transform:scale(var(--s,1)) translate(0px,0px)    rotate(180deg)}
  }
  
  
  
  .navbar-toggler-icon{
    background-image: url('../images/hamburger.png');
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .navbar-toggler:focus{
    box-shadow: none;
  }

  .offcanvas-body .nav-link{
    color: #000;
  }

  .offcanvas-end{
    width: 340px;
  }


  .navbar .lang-btn{
    border-style: none;
    /* background-color: var(--secondary-col); */
    background: linear-gradient(to right, #d73435, #d73435);
    color: var(--white-col);
    padding: 10px 25px;
    margin-left: 20px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 400;
}

@media screen and (max-width:767px){
    .navbar .lang-btn{
        border-style: none;
        background-color: var(--secondary-col);
        color: var(--white-col);
        padding: 8px 25px;
        margin-left: 10px;
        border-radius: 30px;
        font-size: 15px;
        line-height: 23px;
        font-weight: 400;
    }
}


/* gallery pg */

.gallery-section{
    padding: 100px 10px;
}
.gallery-section .container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.gallery-section .container .gallery img{
    width: 100%;
    height: 380px;
    object-fit: cover;
}
.gallery-section .container .gallery iframe{
    width: 100%;
    height: 380px;
}
.whatsapp-chat{
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 1111;
}

.whatsapp-chat img{
    width: 55px;
    transition: .5s ease-in-out;
}

.whatsapp-chat:hover img{
    rotate: 360deg;
    transform: scale(1.1);
}

@media screen and (min-width: 1440px) {
  .inner-pg-banner {
    padding: 180px 40px;
  }
}



/* form alert */

.alert-success{
    z-index: 1;
    background-color: #d4edda;
    font-size: 14px;
    font-weight: 700;
    padding: 20px 40px;
    width: 100%;
    border-left: 8px solid #3ad66e;
    border-radius: 4px;
}
.alert-error{
    z-index: 1;
    background-color: #fff3cd;
    font-size: 14px;
    font-weight: 700;
    padding: 20px 40px;
    width: 100%;
    border-left: 8px solid #ffa502;
    border-radius: 4px;
}
@media (max-width:767px){
    .gallery-section .container{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    .gallery-section .container .gallery img{
        width: 100%;
        height: 240px;
        object-fit: cover;
    }
    .gallery-section .container .gallery iframe{
        width: 100%;
        height: 240px;
    }
}
.product-img img{
    max-width: 280px !important;
}

    .ftr-sm-icons{
        margin-bottom: 40px;
    }