@font-face {
    font-family:'Montserrat';
    src: url("assets/fonts/Montserrat-Bold.ttf") format('truetype');
}
@font-face {
    font-family:'Numans' ;
    src: url("assets/fonts/Numans-Regular.ttf") format('truetype');
}
@font-face {
    font-family:'Lora' ;
    src: url("assets/fonts/Lora-Bold.ttf") format('truetype');
}
@font-face {
  font-family: 'CantataOne';
  src: url('../fonts/CantataOne-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}





*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root{
    --black:black;
    --white:white;
    --gray:gray;

    --primary-color:#0B5394;
    /* --primary-color:#0c5ddf; */
    --secondary-color:#38761D;
    --action-color:#FFA500;
    /* --action-color:#fdb092; */

    --bg1:#e3f1fa;
    --bg2:white;
    --bg3:#f8d799;

    --gradient1:background-image: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);

    --heading:'CantataOne', sans-serif;
    --sub-heading:'Montserrat', sans-serif ;
    --content: 'Numans', sans-serif;
}
body{
    /* background:linear-gradient(105deg,#d7e9f8dc,#d7e9f8dc,white,#d7e9f8dc,#d7e9f8dc,white,#d7e9f8dc,#d7e9f8dc,white); */
    /* background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%); */
    /* background-image: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%); */
    background-color:white ;
    width: 100%;
    /* height: 100%; */
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
    color:var(--action-color)
}
li{
    list-style: none;
}
ul{
    margin: 0;
    padding: 0;
}
p{
    font-family: var(--content);
    font-size: 13px;
    line-height: 20px;
    text-align: justify;
    word-break: break-word;
    margin-top: 10px;
    font-weight: 400 !important;
}

/* ================== class ================= */

.bg{
    background: whitesmoke;
}
.bg1{
    background-color: var(--primary-color);
}
.bg2{
    background-color: black;
}
.bg4{
    background: var(--secondary-color);
}


/* text color  */

section{
padding: 0;
margin: 0;
}
.container-fluid{
    position: relative;
    padding: 0;
    margin: 0;
}
.section-item{
    position: relative;
    padding: 60px  clamp(15px, 6vw, 60px);
    padding: 60px  clamp(10px, 3vw, 60px);
}

.container{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    /* background-color: #0B5394; */
}

.align-item{
    display: flex;
    align-items: center;
}


/* -------------- button ------------- */




/* ============================================== */
/* HEADING */
/* ============================================== */

.heading-body {
  display: flex;
  flex-direction: column;
}
.heading-body .small-heading {
  color: var(--action-color);
  font-family: var(--sub-heading);
  font-style: italic;
  font-size: 15px;
  position: relative;
  width: fit-content;
  text-transform: capitalize;
  font-weight: 400;
}
.heading-body .small-heading::after{
    position: absolute;
    content: '';
    width: 20px;
    height: 1px;
    top: 11px;
    right: -28px;
    background: var(--action-color);
    
}
.heading-body .small-heading::before{
    position: absolute;
    content: '';
    width: 35px;
    height: 1px;
    top: 16px;
    right: -43px;
    background: var(--action-color);
}


.heading-body .big-heading {
  font-size: clamp(20px, 2.5vw, 50px);
  font-weight: 400;
  font-family: var(--heading);
  color: var(--primary-color);
}
.heading-body .big-heading span {
  color: var(--action-color);
  font-weight: bold;
  font-family: var(--heading);
  text-transform: uppercase;
}
.heading-body .content-heading {
  width: 80%;
}
.center {
  align-items: center;
}
.start {
  align-items: start;
}
.end {
  align-items: end;
}



/* ============================================== */
/* HEADING */
/* ============================================== */

.header-body{
    background:transparent;
    position: fixed;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.356);  
  backdrop-filter: blur(4px);            
  -webkit-backdrop-filter: blur(10px);
}
.header{
    width: 100%;
    position: relative;
    padding: 0px 0px;
    /* border-bottom: 1px solid rgb(236, 234, 234); */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .left-section{
width: 10%;
/* background-color: red; */
border-right: 1px solid rgb(230, 226, 226);
}
.header .left-section .left-logo{
width: 80%;
margin: auto;
padding: 5px 0;

}
.header .left-section .left-logo img{
width: 100%;
}

.header .right-section{
width: 90%;
padding-left: 15px;
/* background-color: #0B5394; */
}
.top-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background: red; */
    width: 100%;
    padding: 20px 0px 0px 20px;
    
/* border-bottom: 1px solid rgb(230, 226, 226); */

}
.top-header .social-top a{
    color: var(--primary-color);
    margin-right: 20px;
    font-size: 14px;
    transition: linear 0.3s;
}
.top-header .social-top a:hover{
    color: var(--action-color);
}
.top-header .laction-top{
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
    transition: linear 0.3s;
}
.top-header .laction-top:hover{
    /* color: var(--action-color); */
}
.navbar{
    margin: 10px 0 0 0; 
    /* background-color: red; */
border-top: 1px solid rgba(230, 226, 226, 0.904);

}
.navbar-brand{
    display: none;
}
.navbar-nav .nav-item{
    padding:0 1.5vw;
}
.navbar-nav .nav-item .nav-link {
    /* background-color: red; */
    padding:20px 0;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    position: relative;
}
.navbar-nav .nav-item .nav-link::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 3px;
    left: 0;
    bottom: 0;
    background-color: var(--action-color);
    transform: scale(0);
    transition: linear .3s;
    border-radius: 100px;
}
.navbar-nav .nav-item .nav-link:hover{
    color: var(--action-color);
}
.navbar-nav .nav-item .nav-link:hover::before{
    transform: scale(1);
}
.dropdown:hover > .dropdown-menu ,.dropend:hover > .dropdown-menu{
    display: block;
}
.dropend:hover > .dropdown-menu{
    position: absolute;
    left: 100%;
    top: 0;
}
.dropdown-menu{
    border-radius: 0;
    border: none;
    background-color: transparent;
}
.dropdown-menu .dropdown-item{
    background: white;
    border-radius: 30px;
    border: 1px solid gray;
    margin-bottom: 1px;
    color: var(--primary-color);
    font-size: 14px;
    padding: 5px 20px;
}

.dropdown-menu .dropdown-item:hover{
    background-color: var(--action-color);
    color: var(--white);
}
.nav-btn{

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap:20px;
}
.nav-btn .nav-phone{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.nav-btn .nav-phone .icon {
    width: 40px;
}
.nav-btn .nav-phone .icon img{
    width: 100%;
}
.nav-btn .nav-phone .des b{
    font-size: 14px;
    font-weight: 500;
}
.nav-btn .nav-phone .des a{
    color: var(--primary-color);
    font-size: 20px;
}
.nav-btn .nav-phone:hover .des a{
    color: var(--action-color);
}
.nav-btn .contact-btn{
    padding: 10px  23px;
    background-color: var(--action-color);
    font-size: 18px;
    color: white;
    font-weight: 400;
    transition: linear 0.3s;
}
.nav-btn .contact-btn:hover{
    background-color: var(--primary-color);
    cursor: pointer;
}

.dropend{
    margin-bottom: 1px ;

        background: white ;
    border-radius: 30px;
    border: 1px solid gray;
    /*color: var(--primary-color) ;*/
    font-size: 14px ;
    padding: 5px 20px ; 
    width: 100% !important
}



.sticky{
animation: navbar 2s;
background-color: white;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.sticky .left-section{
display: none;
}
.sticky .right-section{
width: 100%;
}
.sticky .top-header{
display: none;
}
.sticky .navbar{
    border: none;
}
.sticky .navbar-brand{
    display: unset;
}
.sticky .navbar-brand .logo{
    width: 100px;
}
.sticky .navbar-brand .logo img{
    width: 100%;
}
@keyframes navbar {
0%{
    transform: translateY(-100%);
}
100%{
    transform: translateY(0);
}
}



/* ============================================== */
/* About us */
/* ============================================== */
.about-section{
    overflow: hidden;
}
.about-img{
    width: 50%;
    position: relative;
    float:left;
    padding-right: 20px;
}
.about-img img{
    width: 100%;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    p
}
/*.about-back{*/
/*    position: absolute;*/
/*    width: 80%;*/
/*    height:100%;*/
/*    left: -30%;*/
    
/*    background-color: #b4d9fa;*/
/*    background-color: var(--primary-color);*/
/*    background-image: linear-gradient(to top, #00c6fb 0%, #b8cef3 100%);*/
    
/*    border-radius: 30px;*/
/*    z-index: -2;*/
/*    animation: leftright linear 5s infinite;*/
    
/*}*/
@keyframes leftright {
    0%,100%{
        left: -30%;
    }
    50%{
        left: -35%;
    }
}
/*.about-content{*/
/*    width: 50%;*/
/*}*/
.about-list{
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}
.about-list i{
    color: var(--action-color);
}
.about-list:hover{
    cursor: pointer;
}
.about-btns{
    display: flex;
    align-items: center;
    gap: 1.5vw;
    margin-top: 18px;
    flex-wrap: wrap-reverse;

}
.about-btns .about-link{
    padding: 10px 20px;
    background-color: var(--action-color);
    font-size: 16px;
    color: white;
    font-weight: 500;
    letter-spacing: 2px;
    border-radius: 4px;
    transition:all linear 0.2s;

}
.about-btns .about-link:hover{
    background-color: var(--primary-color);
}
.about-btns .call-btn {
    background-color: var(--primary-color);
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;   
}

.about-btns .call-btn span {
    position: relative; 
    z-index: 10;       
}

.about-btns .call-btn::before {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    left: 0;
    bottom: 0;
    background-color: var(--action-color);
    border-radius: 4px;
    z-index: 2;      
    transition: all ease-in 0.3s;
}
.about-btns .call-btn:hover::before{
    width: 100%;
}


/* ============================================== */
/* Product slider */
/* ============================================== */

.product-des{
    text-align: end;
}
.prodcuct-body{
    margin-top:25px ;
}
 .product-slider .swiper-wrapper{
    padding: 20px 0px 40px;
    /* background: red; */
 }
.product-card{
position: relative;
}
.prod-img{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.prod-img::before{
    width: 100%;
    height: 100%;
    content: '';
    left: 100%;
    top: 0;
    position: absolute;
    background-color: #005aea60; 
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.prod-img img{
    width: 100%;
}

.product-name{
    width: 90%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 400;
    margin: auto;
    transform: translateY(-50%);
    position: relative;
    transition: linear 0.3s;


}
.product-name span{
    position: relative;
    z-index: 4;
}
.product-name::before{
    width: 0%;
    height: 100%;
    content: '';
    left: 0%;
    top: 0;
    position: absolute;
    background-color: var(--action-color);
    z-index: 2;
    transition: linear 0.3s;
}
@keyframes product {
    0%{
        left: -100%;
    }
50%{
       left : 0%;
    }
    100%{
       left : 100%;
    }
}
.product-card:hover .prod-img::before{
    animation: product linear 1s;
}
.product-card:hover .product-name{
    transform: translateY(0%);
    width: 100%;
}
.product-card:hover .product-name::before{
    width: 100%;
}



/* ============================================== */
/* cate */
/* ============================================== */

.cate-card{
    width: 100%;
    position: relative;
}
.cate-card img{
    width: 100%;
}
.cate-name{
    position: absolute;
    width: 100%;
    height: 95%;
    top: 5%;
    left: 0;
    /* background-color:#0b5494c2; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    /* gap: 10px; */
    transition: all  0.2s;
}
.cata-box{
    width: 100%;
    height: 30%;
    /* background-color: #38761D; */
    
}
.cate-name .des{
    height: fit-content;
    transition: all  0.2s;

}
.cate-name .des{
    padding: 2vw;
}
.cate-name .des .num{
    font-size: 50px;
    color: white;
    /* font-family: var(--sub-heading); */
    font-weight: bolder;
}
.cate-name .des .name{
    /* font-size: 3vw; */
    font-size: 50px;
    font-weight: 800;
    color: var(--action-color);
    text-shadow: 5px 5px 3px #38761d77;
    
}
.cate-name .des .cate-des{
    font-family: var(--content);
    color: white;
    display: none;
    transition: linear  0.3s;
    transform: translate(100px);

}

.cate-card:hover .cate-name{
      background-color:#156ebda6;
      top: 0;
}
.cate-card:hover .cate-name .des .cate-des{
    display: block;
    transform: translate(0px);

}
.cate-card:hover .cate-name .des{
    /* height: 70%; */
}
.cate-card:hover .cate-name .name{
    color: white;
}


/* ============================================== */
/* why choose us */
/* ============================================== */

/* Section Base */
.why-choose-us {
  background: white;
  padding: 80px 3vw;
  text-align: center;
  font-family: Arial, sans-serif;
  border-radius: 30px;
  /* border: 10px solid var(--primary-color); */
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
.why-choose-us .heading-body .big-heading{
    /* text-shadow:  0 0 10px rgb(231, 231, 231); */
    background-color: var(--action-color);
    padding: 0px 0px  0 24PX;
    border-radius: 10PX;
    overflow: hidden;

}
.why-choose-us .heading-body .big-heading span{
    background-color: var(--primary-color);
    padding: 6px 14px;
}



/* Card Grid */


/* Card Style */
.why-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Icon */
.why-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Title */
.why-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
}

/* Text */
.why-card p {
  font-size: 0.95rem;
  color: #444343 !important;
  line-height: 1.6;
  text-align: center;
}
.parallax{
    background:linear-gradient(rgba(141, 141, 141, 0.274),rgba(143, 143, 143, 0.274)) ,url('../../img/img/why-choose-bg.jpg');
    background-size: cover;
    background-position: center;

}

/* ============================================== */
/* FAQ */
/* ============================================== */

.faq-img{
    width: 100%;
    height: auto;
}
.faq-img img{
    width: 100%;
}

.faq-body{
    width: 100%;
    height: 100%;
    background-color: #e7f7ff;
    background: var(--primary-color);
    background: var(--secondary-color);
    padding: 3.5vw;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    outline: 1px solid var(--white);
    outline-offset: -1vw;
    
}
.faq-itme{
    background-color: var(--white);
    padding: 1.5vw;
    border-radius: 15px;
    margin-bottom: 20px;
}
/* .faq-itme .ans{
 
    height: 0%;
    display: none; 
    margin-top: 10px;
    transition: linear 1s;

} */
.faq-itme .tilte{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-itme .tilte .ques{
font-weight: 500;

}
.faq-itme .tilte .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height:20px;
    /* background-color: red; */
    position: relative;
}
.faq-itme .tilte .icon .fline{
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--action-color);
}
.faq-itme .tilte .icon .fline1{
    transform:rotate(90deg);
}
.faq-itme .ans {
    max-height: 0;
    overflow: hidden;
      font-size: 14px;
    transition:  0.4s ; 
}

.faq-itme:hover .ans {
    max-height: 300px; 
    padding-top: 10px;
  
}
.faq-itme:hover .tilte .icon .fline1{
    transform:rotate(90deg);
    display: none;
}
.faq-itme:hover .tilte .ques{
    color: var(--primary-color);
}




/* ============================================== */
/* Vision and Mission */
/* ============================================== */
.vision-section{
   padding-top:0;
   padding-bottom:0;

}
.left-vision{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: red; */
}
.left-vision .vision-text{
  writing-mode: vertical-rl; 
  text-orientation: downleft; 
    font-size: 10vw;
    padding: 0;
    margin: 0;
    font-family: var(--heading);
    line-height: 1;
    /* transform: rotate(180deg); */
    color: rgb(20, 20, 20);
    text-transform: uppercase;
    /* -webkit-text-stroke: 1px solid white; */
      -webkit-text-stroke: 1px #f7c15c8a;
}
.right-vision{
    width: 100%;
    height: 100%;
    /* background-color: red; */
}
.right-vision .vision-img{
    width: 100%;
    height: 100%;
}
.right-vision .vision-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vision-card {
    width: 100%;
    height: auto;
    padding: 2vw;
    background-color: white;
    border-radius: 10px;
    /* margin-bottom: 20px; */
    box-shadow: 0 0 10px white;
    transition:  linear 0.2s;
}
.vision-card .icon{
    width: 70px ;
    height: 70px;
    /* margin: auto; */
    background-color: #005bea;
    padding: 15px;
    border-radius: 50%;
    float: right;
}
.vision-card .icon img{
    width: 100%;
}
.vision-card .title{
    font-size: 30px;
    font-weight: 500;
    font-family: var(--heading);
    /* text-align: center; */
    padding: 10px;
}

.vision-card .des{
    margin-top: 10px;
    font-family: var(--content);
    font-size: 14px;
}
.vision-card:hover{
    transform: translateY(-15px);
}
/* ============================================== */
/* Counter */
/* ============================================== */

.counter-body{
    background: var(--action-color);


    width: 80%;
    margin: auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;
    overflow: hidden;
}
.counter-item{
    background:url('../../images/bg/bg3.png');
    background-color: #ffa600c5; 
    background-blend-mode: multiply;  
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding:40px 4vw ;
}
.counter-section{
    display: flex;
    align-items: center;
    justify-content: center;
}
.counder-card{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1vw 0px;
}
.counder-card .num{
    font-size: 40px;
    color:var(--primary-color);
    font-weight: 700;
    font-family: var(--sub-heading);
}
.counder-card .title{
    font-size: 20px;
    font-family: var(--heading);
    text-wrap: nowrap;
color:var(--primary-color);
}
.counder-center{
    border-left: 2px dashed var(--white);
    border-right: 2px dashed var(--white);

}

/* ============================================== */
/* HEADING */
/* ============================================== */

.test-body{
    margin-top: 30px;
}
.test-card{
    /* background: red; */
    padding: 30px 20px;
    background-color: var(--bg1);
    position: relative;
    box-shadow: 0 0 5px lightgray;

    margin: 20px 5px;
}
.test-card .des{
    text-align: center;
    margin: 10px 0;
    position: relative;
    z-index: 5;
    color: black;
}
.test-card .rating{
    color: var(--action-color);
    text-align: center;
        position: relative;
    z-index: 5;
    font-size: 20px;
}
.test-card .name{
    text-align: center;
        position: relative;
    z-index: 5;
    font-size: 20px;
    color: black;
    font-weight: 500;
}
.test-odd{
background-color: var(--bg3);
}
.test-card .back{
    position: absolute;
    width: 100%;
    height: 100%;
    /* background-color: red; */
    z-index: 1;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateY(180deg);
}
.test-card .back i{
    font-size: 180px;
    z-index: 3;
    color: #004aea;
    opacity: .2;
    transition: all .3s;
}
.test-card:hover .back i{
    transform: scale(1.1);
    opacity: 0.4;
}
.test-body .swiper-wrapper{
    padding:0px 0px  30px 0px ;
    /* margin: auto 30px; */
    /* background-color: red; */
}
.test-body .swiper-pagination{
/* background-color: #004aea; */
bottom: 0;
}

/* ============================================== */
/* Contat Us*/
/* ============================================== */
.container-contact{
  margin-left: auto;
  margin-right: 0;
  width: 90%;
  padding: 50px 0;
  padding-right: 50px;
  /* background-color: red; */
}
.contact-content .des{
margin-right: 50px;
color: rgb(231, 231, 231);
margin-top: 15px;
}
.contact-list{
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
    color:white;
}
.contact-list i{
    color: var(--action-color);
}
.contact-list:hover{
    cursor: pointer;
}
.contact-content .cont-btns{
    width: fit-content;
    margin-top: 20px;
}
.contact-content .cont-btns .contact-btn{
    background: var(--action-color);
    text-wrap: nowrap;
    padding: 13px 25px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    transition: all 0.4s;
    letter-spacing: 1px;

}
.contact-content .cont-btns .contact-btn span{
    position: relative;
    z-index: 5;
}
.contact-content .cont-btns .contact-btn::before{
    content: '';
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-color:whitesmoke;
    transition: all 0.4s;
}
.contact-content .cont-btns .contact-btn:hover::before{
    width: 100%;
}
.contact-content .cont-btns .contact-btn:hover{
    color: var(--primary-color);
}

/* Contact  form  */

.contact-form-body{
    width: 100%;
    height: 100%;
    background:url('../../img/bg/contact-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.form-body{
      /* margin-left: 0;
  margin-right: auto; */
  margin:50px auto 50px 0 ;
  width: 70%;
  background-color:white;
  padding: 2vw;
  border-radius: 5px;
  transform: translateX(-50px);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.contact-heading{
    font-size: 25px;
    font-weight: 650;
    font-family: var(--sub-heading);
    color: var(--primary-color);
}
.myform{
    margin-top: 10px;
}
.myform .input{
    border: none;
    outline: none;
    border-bottom: 2px solid var(--primary-color);
    width: 100%;
    padding: 5px 0px;
    margin-bottom: 20px;
}
.myform .input:focus{
    border-color: var(--action-color) !important;
}
.myform .textarea{
    width: 100%;
    border: 2px solid var(--primary-color) !important;
    margin-top: 18px;
    padding: 10px;
}

.myform .form-btn{
    border: none;
    outline: none;
    padding: 10px 30px ;
    background-color: var(--primary-color);
    color: white;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--heading);
    letter-spacing: 1px;
    margin: auto;
    display: block;
    border-radius: 30px;
    transition: all 0.2s;
}
.myform .form-btn:hover{
    transform: scaleX(1.1);
}

.map-img{
    width: 100%;
    margin: auto;
    border-radius: 30px;
    overflow: hidden;
    overflow: hidden;
}
.map-img img{
    width: 100%;
}
/* ============================================== */
/* Footer */
/* ============================================== */
.footer-section{
    background:linear-gradient(135deg,black,rgba(0, 0, 0, 0.356)) ,url('../../img/bg/bg6.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: end;
   
}
.f-heading{
    font-size: 20px;
    color: var(--action-color);
    text-transform: uppercase;
    font-family: var(--heading);
    margin-bottom: 15px;
}
.f-item ul{
    height: 170px;
    overflow-y: auto;
}
.f-item ul::-webkit-scrollbar{
    width: 8px;
    background: white;
}
.f-item ul::-webkit-scrollbar-thumb{
    background-color: gray;
}
.f-item .f-logo{
    width: 150px;
    background-color: white;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}
.f-item .f-logo img{
    width: 100%;

}
.f-item .des{
    text-align: justify;
    color: whitesmoke;
}
.f-item ul li {
    padding: 2px 0px;
}
.f-item ul li a{
    color: whitesmoke;
}
.f-item ul li a i{
    font-size: 11px;
}
.f-item ul li a:hover{
    color: var(--action-color);
}

.f-address{
    padding: 20px 0px;
}
.f-address .f-heading{
    text-transform: capitalize;
    font-size: 18px;
}
.f-address p{
    color: white;
}
.f-address p:hover{
    color: var(--action-color);
}
.footer-body{
    border-bottom: 1px solid white;
}
.footer-left{
    border-right: 1px solid white;
}
.right-contact{
    margin-left: 20px;
}
.copyright{
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.copyright p{
    margin: 0;
    color: white;
   
}
.copyright .f-social-link a{
    margin-left: 15px;
    color: white;font-size: 13px;
}
.copyright .f-social-link a:hover{
    color: var(--action-color);
}