*{
    box-sizing: border-box;
}
body{
    background: #fff;
    font-family: "Roboto", sans-serif;   /* first, index.html link google 3 lines*/
    font-weight: 400; /* normal*/
    font-size: 16px;
    line-height: 1.6;
    color:#000;/* font color black, rgb */
   
}
a{
    color:#313030;
    text-decoration: none;
}

a:hover, a:focus, a:active, a:visited{
    color:#4a7b81
}
i{
    color: #f4ac00;;
}
p{
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    margin: 0 0 20px; /* top right-left and bottom, this case we use bottom. */
}
h1{
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px; /* top right-left and bottom, this case we use bottom. */
    letter-spacing: 1px;

}
h2{
    font-size: 40px;
        font-weight: 700;
        line-height: 1.2;
        margin: 0 0 20px; /* top right-left and bottom, this case we use bottom. */
        letter-spacing: 1px;
        text-transform: uppercase;
}
h3{
    font-size: 34px;
    font-weight: 700; 
    line-height: 1.2; 
    margin: 0 0 20px; /* top right-left and bottom, this case we use bottom. */
}
h4{
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px; /* top right-left and bottom, this case we use bottom. */
    
}
h5{
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 20px; /* top right-left and bottom, this case we use bottom. */
}
h6{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 20px; /* top right-left and bottom, this case we use bottom. */

}

ol, ul{
    padding: 0 0 0 25px;
    margin:  0 0  20px 0;
}
ul{
    list-style: disc; /* bullet*/
}
ol{
    list-style: decimal;
}
.flex{
    display: flex;
    flex-wrap:wrap;
    

}
.h-center{ /*horizental center  flex h-center */
    justify-content: center;

}
.v-center{  /* verticle align center  class: flex h-center*/
    align-items: center;
}

input[type="text"], input[type="password"], input[type="email"], input[type="number"]{
    background-color: #fafafa;
    padding:10px;
    border:1px solid #313030;
    font-size: 18px;
    color: #313030;

}
.formitem{
    margin-bottom: 15px;;
}
.formitem label{
    display:block;
    font-weight: 600;
    margin-bottom: 5px;
}
.button{
    background-color: #000;
    color:#fff;
    font-size: 18px;
    padding: 10px 20px;
    border: 2px solid #000;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    box-shadow: none;
    transition: all 0.3s ease; /* animation- smooth display */
    cursor: pointer;
    text-decoration: none;

}
.button:hover, .button:focus{
    background-color: transparent;
    color:#000;

}

/* global css end*/
.container{
    max-width: 1380px;
    margin: 0 auto; /* center */
    padding:0 20px;
}

/* Navigation bar*/
.logo{
    width: 25%;
}
.header-navigation > .container{
    background-color: #fff;
    align-items: center;
    /* padding: 10px 0; */
}
.primary-nav{
    display: flex; /* by default, it show in horizontal*/
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    
}
.primary-nav li{
    position: relative;
    list-style: none;
    z-index: 999;
}
.primary-nav > li > a{
    padding: 20px 25px;
    display: inline-block;
    color:#000;
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;

}
/* .primary-nav > li > a:hover{
    background-color: #000;
    color:#fff;
} */
.submenu{
    opacity:0; /* text opacity is zero */
    visibility: hidden;
    position: absolute; /* when absolute, we need to define relative parent ie. primary-nav li is relative*/
    top:100%;
    left:0;
    background: #fff;
    width: 200px;
    margin: 0;
    padding: 0;

}
.submenu a{
    font-size:16px;
    font-weight: 500;
    line-height: 1.2;
    display: block;
    padding: 10px 15px;
    color:#000;
    text-decoration: none; /* submenu text underline removed */
    
}
.submenu a:hover{
    background-color: #f4ac00;
    color:#fff;

}
.primary-nav li:hover .submenu{ /* sub menu display */
opacity:1; 
visibility:visible;
}
.has-child i{
    color:#fff;
    position: absolute;
    right:5px;
    top:50%;
    transform: translateY(-50%);
    text-decoration: none;
    z-index: 999;
}

/* .primary-nav > li:hover i{ 
        color:#000;
        background-color: #fff;
} */
.header-navigation img{
    width: 129px;
    margin-right: 252px;
    margin-left: 0px;
}
.sticky{
    position: fixed;
    width: 100%;
    top:0;
    background-color: #f4ac00 !important;
    z-index: 50;
  }
/* navigatiom end */

/* mobile menu */
.mobileNav__toggle {
        display: none
    }
    .menuBar__container {
        position: relative;
        display: block;
        width: 30px;
        height: 22px;
        -webkit-transition: .4s ease;
        transition: .4s ease
    }
    .nav__visible .menuBar__container {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg)
    }
    .menuBar {
        display: block;
        height: 4px;
        position: absolute;
        top: 50%;
        margin-top: -2px;
        left: 0;
        width: 100%;
        background-color: #484848;
        border-radius: 4px;
        -webkit-transition: .4s ease;
        transition: .4s ease
    }

    .menuBar:first-child {
        top: 0;
        margin-top: 0
    }
    
    .nav__visible .menuBar:first-child {
        -webkit-transform: rotate(45deg);/*browser prefix safari and chrome*/
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 11px
    }

    .nav__visible .menuBar:nth-child(2) {
        opacity: 0
    }

    .menuBar:last-child {
        top: auto;
        bottom: 0;
        margin-top: 0
    }
    .nav__visible .menuBar:last-child {
        -webkit-transform: rotate(-45deg); /*browser prefix safari and chrome*/
        -ms-transform: rotate(-45deg); /* internet explorer*/
        transform: rotate(-45deg);
        bottom: 8px
    }

    @media screen and (max-width: 1023px) {
        .mobileNav__toggle {
            display: block;
            margin-left: 15px
        }
        .main-nav{
            display:none;
        }
        .submenu{
            display: none;
            position:relative;
            z-index:5;
        }
        .nav-active .main-nav{
            display:block;
            position:absolute;
            left:0;
            right:0;
            top:100%;
            z-index:9999;
            overflow-y:auto;
            padding:25px;
            background-color:#000;
            min-height:100vh;
            max-height:calc(100vh - 60px);
            width:100%;
            max-width:500px;
        }
        .header-navigation{
            position:relative;
        }
        .primary-nav{
        display: block; 
        
   
        }
.primary-nav li{
   margin-bottom:5px;
   display:block;
   width:100%;
}
.primary-nav > li > a{
    padding: 10px 15px;
     color:#fff;
    font-size: 18px;
   

}
    }


/* top bar starts */
.top-bar{
background-color: #fafafa;
}
.top-inner{
    padding: 10px;
    margin: 0;
    gap: 1rem;
}
.top-inner i{
    padding-right: 10px;
    font-size: 20px;
    font-weight: 600;
}
.top-inner p{
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.social-media{
    /* width: 25%; */
    justify-content: end;
    margin-left: auto;
    gap: 1rem;
}
.social-media i{
float: right !important;
font-size: 22px;

}

/* top bar ends */

/* slider starts */
.banner-slider-item{
    height: 70vh; /* view port height- screen height*/
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex; /* vertical center to align item center, we need flex*/
    flex-wrap: wrap;
    align-items: center; /* vertical center*/

}
.banner-slider-item:after{
    content:"";
    background: rgba(0,0,0,0.4);
    position: absolute;
    height: 100%;
    width: 100%;
    left:0;
    top:0;
}
.banner-slider-content{
    position: relative;
    z-index: 1;

}
.banner-slider-content,
.banner-slider-content h2{
    color:#fff;
}
.banner-slider-content h2{
    font-size: 60px;
}
.slider-button:hover{
    background-color: #000;
    color: #fff;
}
.banner-slider-content p{
    font-size: 20px;
    margin-bottom: 40px;
}
.slider-button{
    text-decoration: none;
    color: #000 ;
    background-color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    /* margin-top: 20px; */
}
.banner-slider .owl-dots{
    position: absolute;
    bottom:30px;
    width: 100%;
}
.banner-slider .owl-item.active h2,
.banner-slider .owl-item.active p,
.banner-slider .owl-item.active .button {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
  }
/*slider ends*/
/* welcome starts */
.welcome-inner{
    display: flex;
    flex-wrap: wrap;
    /* padding: 30px; */
}
.welcome-image{
    width: 50%;
}
.welcome-content{
    padding: 30px;
    width: 50%;
    background-color: #2b363f;
}
.welcome-content h2{
    color: #f4ac00;
    text-align: center;
    margin: 0 0 29px;
}
.welcome-image figure{
    /* margin-left: 355px; */
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* align-items: center; */
    padding: 54px 0;
}
.welcome-heading{
    margin: 20px 0 !important;
}
.welcome-content p{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 5px;
}

.welcome-content i{
    padding-right: 20px;
}
/* service-section */

/* service section*/

.services-section{
    padding: 60px 0;
    background-color: #fafafa;
}
.services-section h2{
    text-align: center !important;
    margin-bottom: 20px;
    color: #f4ac00;

}
.service-inner{
    display: flex;
    flex-wrap: wrap;
}
.Service-item{
    width: 30%;
    padding: 20px ;
    border-radius: 40px;
    border: #f4ac00 solid 5px;
  
    margin: 22px;
}
.Service-item__image img{
    width: 100%;
    border-radius: 5px;
    /* border: #f4ac00 solid 5px; */
}
.Service-item h3{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    /* color: #f4ac00; */
}

.Service-item .button{
    border-radius: 20px;
    color: #fff;
    background-color: #f4ac00;
}
.Service-item .button:hover{
    border-radius: 20px;
    color: #fff;
    background-color: #000;
}
/*service section close*/
.annimation-underline {
    display: inline-block;
    position: relative;
    color: #000;
  }
  
.annimation-underline:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #f4ac00;
    transform-origin: center;
    transition: transform 0.25s ease-out;
  }
  
.annimation-underline:hover:after {
    transform: scaleX(1);
    transform-origin: center;
  }
/*our highlight section starts*/
.highlights{
    padding: 60px 0;
    background-color: #f0f0f0;
}

.highlights h2{
    text-align: center;
    margin-bottom: 40px;
    color: #f4ac00;
    font-size: 47px;

}
/* .highlight-heading{
    background-color: #a31f22;
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    border-radius: 9px;
    padding: 0 5px;
} */
.highlights-inner{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.hightlights-item{
    width: 25%;
    padding: 0 15px;
}
.highlights-item__image{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 5px solid #f4ac00;
    overflow: hidden;
    position: relative;
    display: block;

}
.highlights-item__image::after{
    content: "";
    background-color: rgba(0, 0, 0, 0.3) ;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
}


.highlights-item__image img{
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.3s ease;

}

.highlights-item__image h3{
    position: absolute;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 10px;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}  
/* highlight closed */
/* form and why us starts */
/* form contact-us */
.contact-form{
    padding: 60px 0;
    background-color: #f4ac00;

}
.contactform{
    width: 40%;
    padding: 30px;
    background-color: #fff;
}
.contactform h3{
    color: #f4ac00;
    text-align: center;
}
.contact-info{
    width: 50%;
    padding-left: 30px;
}
.form-item{
    margin-bottom: 20px;
}
.form-item > label{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3px;
    display: block;
  }
  .form-item input[type="text"], 
  .form-item input[type="email"],
  .form-item input[type="number"],
  .form-item textarea,
  .form-item select{
    padding: 10px 15px;
    border:3px solid #f4ac00;
    color:#000;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.checkbox-item label,
.checkbox-item input{
  display: inline-block; /* */
}

.checkbox-item label{
  font-weight: 400;

}
.radio-item label,
.radio-item input{
  display: inline-block; /* */
}

.radio-item label{
  font-weight: 400;

}
.formbutton .button{
    border-radius: 20px;
    color: #fff;
    background-color: #f4ac00;
}
.formbutton .button:hover{
    border-radius: 20px;
    color: #fff;
    background-color: #000;
}
.why-inner{
    padding: 0 30px;
}
.why-us h2{
    text-align: center;
    margin-bottom: 51px;
    font-size: 44px;

}
.icon{
    width: 40%;
}
.why-content{
    width: 60%;
}
.icon i{
    color: #fff;
    font-size: 88px;
    padding-right: 20px;
}
.why-content h3{
    font-size: 24px;
    margin-bottom: 10px;
}
.why-item{
    padding: 20px;
    width: 50%;
}
.why-us{
    width: 60%;
}
/* why us closed */
/* banner */
.page-banner{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* left right : cennter*/
    justify-content: center; /*top-bottom: center*/
   }
   .page-banner::after{
    content: "";
    background-color: rgba(0,0,0,0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top:0;
  }
  .page-banner h1{
  color: #fff;
  z-index: 9;
  position: relative;
  text-align: center;
}
.page-banner .button{
    margin: 0 301px;
}
.page-banner .button{
    border-radius: 20px;
    color: #fff;
    background-color: #f4ac00;
    z-index: 999;
    position: relative;
}
.page-banner .button:hover{
    border-radius: 20px;
    color: #fff;
    background-color: #000;
    z-index: 999;
    position: relative;
}
.page-banner i{
    color: #fff;
    z-index: 999;
    position: relative;
    padding-right: 10px;
}
.page-banner p{
    margin: 0;
    z-index: 999;
    position: relative;
}
/* banner closed */
/* testimonial starts  */
.testimonials-section{
    padding: 60px 0;
    background-color: #fafafa;
  }
  .testimonials-section h2{
    text-align: center;
    margin-bottom: 20px;;
    color: #f4ac00;
  }
.testimonial-item{
    border: 2px solid #ccc;
}

  .testimonial-item__inner{
    padding: 20px;

    border-radius: 6px;
    height: 100%;
    background-color: #fff;

  }
  /* .testimonial-image i{
    width: 100%;
    height: 100%;
    font-size: 215px;
  } */
  /* .testimonial-image{
    width: 35%;
    padding: 20px;
  
  } */
  /* .testimonial-item__inner{
    width: 65%;

  } */
  .testimonial-item__inner blockquote{
    font-size: 20px;
    line-height: 1.4;
    font-style: italic;
    font-weight: 500;
    
  }
  .testimonial-item__authorinfo{
    margin-top: 25px;
  }
  .testimonial-item__authorinfo p{
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }


/* testimonial ends  */
/* fotter starts */
.footer{
    background-color: #fff;
    /* justify-content: space-between; */
}

.footer-inner{
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    
}
.col1{
    width: 25%;
    color: #000;
}
.col2{
    width: 20%;
    /* margin-left: 30px; */
    
}
.col3{
    width: 30%;
    
}
.col4{
    width: 20%;
    
}
.col1 img{
    /* padding: 0 0; */
    width: 91%;
    max-width: 100%;
   
}
.footer-icons i{
    /* color: #a31f22; */
    /* background-color: #fff; */
    font-size: 30px;
    padding-right:20px;
    margin-bottom: 30px;
   /* padding-left: 10px; */
   
 
}
.col1>p>i{
    /* color: #a31f22; */
    font-size: 20px;
    padding-right: 20px;
    
}
.col1 a{
    text-decoration: none;
   
   
}
/* .col1 p{
color: #164dee;
font-size: 20px;
font-weight: 500;
margin: 0;
} */
.col1 a:hover, a:focus, a:active, a:visited {
    color: #000;
}
.col1>p>a{  
    padding-left: 36px;
    font-size: 18px;
    font-weight: 500;
    line-height: 0;
    
}

i.fa-solid.fa-location-dot {
    width: 20px;
}
.footer-ico i{
    width: 45px !important;
}
/* .west-loc{
    padding-left: 10px;
} */


.col2 h4{
    /* color: #a31f22; */
    /* text-align: center; */
    padding-top: 30px;
    font-size: 35px;
    font-weight: 600;
}
.col2-cellphone{
    list-style: none;
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
    /* color: #164dee; */
}

.col2-cellphone a{
    text-decoration: none;
    /* color: #164dee; */
    color: #000;
}
.col2-cellphone i{
    padding-right: 20px;
    /* color: #a31f22 */
}
.col3 h4{
    /* color: #a31f22; */
    /* text-align: center; */
    padding-top: 30px ;
    font-size: 35px;
    font-weight: 600;
    text-decoration-line: none;
}
.col3-computer{
    list-style: none;
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
    /* color: #164dee; */
}
.col3-computer a{
    text-decoration: none;
    /* color: #164dee; */
    color: #000;
}
.col3-computer i{
    padding-right: 20px;
    
    /* color: #a31f22 */
}



.col4 h4{
    /* color: #a31f22; */
    /* text-align: center; */
    padding-top: 30px ;
    font-size: 35px;
    font-weight: 600;
    text-decoration: none;
}
.col4-website{
    list-style: none;
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
    /* color: #164dee; */
}
.col4-website a{
    text-decoration: none;
    /* color: #164dee; */
    color: #000;
}
.col4-website i{
    padding-right: 20px;
    
   
}
.col4-cellphone p{
    font-size: 20px;
    /* color: #f4ac00; */
    font-weight: 500;
}
.col3-computer i.fa-solid.fa-location-dot{
    width: 43px;
}  
/* footer ends */
/*copyright section*/
.copyright{
    background-color: #f4ac00;
}
.copyright-inner{
    display: flex;
    flex-wrap: wrap;
}
.copyright-info{
    width: 50%;
    color: #fff;
    padding: 20px 0;
}
.copyright-info i{
    padding-right: 20px;
    color: #fff;
}

.copyright-company{
    width: 50%;
    text-align: right;
    color: #fff;
    padding: 20px 0;
}
.copyright-company a{
   color: #fff;
   text-decoration: none;
    
}
/* copyright ends */
/* about-us */
.site-content{
    background-color: #fff;
  }
  .page-banner{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* left right : cennter*/
    justify-content: center; /*top-bottom: center*/
   }
   .page-banner::after{
    content: "";
    background-color: rgba(0,0,0,0.6);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top:0;
  }
  .page-banner h1{
  color: #fff;
  z-index: 9;
  position: relative;

  }

  .main-content_inner{
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
  }
  .main_content{
    width: 60%;
    
  }
  .main_image{
    width: 40%;
  }
  .main-content h3{
    /* background-image: linear-gradient(to right, #f4ac00 , #f0dfb8); */
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 10px 0;
  }
  .main-content p{
    font-size: 20px;
    font-size: 500;
  }
  .main-content i{
    /* color: #af191c; */
    padding-right: 10px;
    font-size: 25px;
  }
  .main_image figure{
    padding: 0 49px;
    object-fit: cover;
  

  }
  /* about-us */
  /* .main-content_inner .contact-form{
    width: 50%;
  } */
   .visit-us{
    margin-left: 67px;
}
.visit-us h3 {
    /* background-image: linear-gradient(to right, #f4ac00, #f0dfb8); */
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding-top: 42px ;
}   
.map{
   /* padding-left: 50px; */
   align-items: center;
   display: flex;
   justify-content: center;
   text-align: center;
}
.contact-icons{
    padding-top: 30px;
    text-align: center;
}
.contact-icons i{
    color: #fff;
    font-size: 50px;
}
.phone-icons{
    padding-top: 30px;
    padding-left: 170px;

    /* text-align: center; */
    
}
.phone-icons i{
    color: #fff;
    font-size: 40px;
}
.phone-icons p{
    font-size: 22px;
    font-weight: 600;
    color: #000;
}
.phone-icons i.fa-solid.fa-location-dot{
    width: 48px;
}
.phone-icons a{
    color: #000;
    font-size: 22px;
    font-weight: 600;
}
.locaton iframe {
    width: 100%;
    display: block;
}