*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
::selection{
    background-color: #0756a1;
    color: white;
}
body{
    font-family: 'Montserrat', 'sans-serif';
}

/************************************   Home Page Css Start *****************************************/


/* header navbar start  */
.header_navbar{ 
    background-color: white;
    box-shadow: 5px 5px 5px rgb(4, 4, 4, 0.2);
    padding: 1rem 0rem;
    font-family: 'Montserrat', 'sans-serif';
}
.my_navbar ul li {
    margin-right: 1rem;
}
.my_navbar ul li a{
    color: #808080 !important;
    /* padding-right:1.4rem !important; */
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 0.3rem;
}
.nav-link-active{
    border-bottom:2px solid #0756a1;
}

.navbar .nav-item:not(:last-child) {
    margin-right: 35px;
  }  
  .dropdown-toggle::after {
     transition: transform 0.15s linear; 
  }
  .show.dropdown .dropdown-toggle::after {
    transform: translateY(3px);
  }
  .dropdown-menu {
    margin-top: 0;
  }
.my_dropdown a{
    font-size: 0.8rem !important;
  }
/* header navbar end  */

/* section slider css start */

section {
    width: 100%;
    height: 78vh;
    margin-top: 5.5rem;
}
.swiper-container {
    width: 100%;
    height: 100%;
}
.slide {
    display: grid;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #fff;
    overflow: hidden;
}
.slide-image {
    position: relative;
    width: 100vw;
    height: 80vh;
    background-size: cover;
    background-position:top right;
    background-repeat: no-repeat;
}
.slide-title {
    position: absolute;
    left: 50%;
    top:50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    max-width: 50%;
    white-space: normal;
    word-break: break-word;
    color: #FFF;
    z-index: 100;
    font-family: 'Montserrat', 'sans-serif';
    text-transform: uppercase;
    transform: translate(-50%, -50%);
}
.slide-image-1{
    /* background:linear-gradient(to left, rgba(0,0,0,0.4), rgba(0,0,0,0.3)), url("./images-carousel/header-bg-6.jpg"); */
    background:linear-gradient(to left, rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("cover_1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.slide-image-2{
    /* background:linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("./images-carousel/MAN.png"); */
    background: linear-gradient(to left, rgba(0,0,0,0.3), rgba(0,0,0,0.3)),url("cover_2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.slide-image-3{
    /* background: linear-gradient(to left, rgba(0,0,0,0.3), rgba(0,0,0,0.3)),url("./images-carousel/cover\ 3.png"); */
    background: linear-gradient(to left, rgba(0,0,0,0.3), rgba(0,0,0,0.3)),url("cover_3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
  @media (min-width: 45em) {
    .slide-title {
      font-size: 2.4rem;
      max-width: 1400px;
    }
  }
.slide-title span {
    white-space: pre;
    display: inline-block;
    opacity: 0;
}
.slideshow {
    position: relative;
  }
.slideshow-pagination {
    position: absolute;
    bottom: 5rem;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: .3s opacity;
    z-index: 10;
  }
.slideshow-pagination-item {
    display: flex;
    align-items: center;
  }
.slideshow-pagination-item .pagination-number {
    opacity: 0.5;
  }
.slideshow-pagination-item:hover, .slideshow-pagination-item:focus {
    cursor: pointer;
  }
.slideshow-pagination-item:last-of-type .pagination-separator {
    width: 0;
  }
.slideshow-pagination-item.active .pagination-number {
    opacity: 1;
  }
.slideshow-pagination-item.active .pagination-separator {
    width: 10vw;
  }
.slideshow-navigation-button {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 5rem;
    z-index: 1000;
    transition: all .3s ease;
    color: #FFF;
  }
.slideshow-navigation-button:hover, .slideshow-navigation-button:focus {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
  }
.slideshow-navigation-button.prev {
    left: 0;
  }
.slideshow-navigation-button.next {
    right: 0;
  }
.pagination-number {
    font-size: 1.8rem;
    color: #FFF;
    font-family: 'Oswald', sans-serif;
    padding: 0 0.5rem;
  }
.pagination-separator {
    display: none;
    position: relative;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    transition: all .3s ease;
  }
  @media (min-width: 45em) {
    .pagination-separator {
      display: block;
    }
  }
.pagination-separator-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    transform-origin: 0 0;
  }
/* section slider css end */

/* header product section start  */
#product_section{
    padding: 7rem 0rem 1rem 0rem;
}
.header_product{
    /* padding: 4rem 0rem; */
}
.header_product h3{
    font-size: 3.0rem;
    font-weight: 700;
    /* text-align: center; */
    color: #0756a1;
    text-transform: uppercase;
    font-family: 'Montserrat', 'sans-serif';
    padding-bottom: 3rem;
}
.product_two{
    padding-bottom: 2rem;
    border: grey solid 1px;
    padding-top: 1rem;
    padding-right: 0.6rem;
    padding-left: 0.6rem;
    transition: all 1.0s;
    font-family: 'Montserrat', 'sans-serif';
    color: gray;
}
.product_two h2{
    padding-bottom: 0.4rem;
    padding-top: 0.9rem;
    font-size: 1.3rem;
    height: 90px;
}
.product_two p{
    padding-bottom: 0.4rem;
    font-size: 0.9rem;
    height: 120px;
}
.product_two a{
    color: grey;
    text-decoration: none !important;
    background:white;
    padding: 0.5rem 0.8rem;
    margin-top: 3%;
    transition: all 0.4s;
    font-size: 1.0rem;
    float: right;
}
.product_two a:hover{
    background: #0756a1;
    color: white;
    transition: all 0.6s;
}
.product_two:hover{
    box-shadow: 2px 5px 30px 5px rgba(0,0,0,0.3), 2px 7px 30px 5px rgba(0,0,0,0.3);
    background: #0756a1;
    color: white;
    border: none;
}
.product_two img{
    transition: all 0.4s ease-in;
}
.product_two img:hover{
    transform: scale(1.05,1.04);
    cursor: pointer;
}
/* header product section end  */

/* header clients section start  */
#contact{
    padding: 2rem 0rem 0rem 0rem;
    background-color: #eeebeb;
}
.header_client{
    padding: 0rem 0rem;
    background-color: white;
}
.header_client h2{
    font-size: 2.5rem;
    font-weight: 800;
    padding-bottom: 2rem;
    color: grey;
    padding-left: 1.2rem;
    text-transform: uppercase;
    font-family: 'Montserrat', 'sans-serif';
}
.slick-slide img {
    width: 100%
}
.fa-angle-right, .fa-angle-left{
font-size: 28px;
}
.slick-next{
    position: absolute;
    right: 0;
    top:50%;
    transform: translateY(-50%);
    background: none;
    border: none;
}
.slick-prev{
    position: absolute;
    left: -1%;
    top:50%;
    transform: translateY(-50%);
    background: none;
    border: none;
}
/* header clients section end  */

/* footer section csss start  */
.footer{
    background-color: #eeebeb;
    padding: 4rem 0rem;
}
.footer_right_side{
    padding-right: 0rem;
    font-family: 'Montserrat', 'sans-serif';
}
.footer_right_side h5{
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 0%;
    margin-bottom: 0%;
    text-align: center;
}
.footer_right_side ul{
    list-style: none;
}
.footer_right_side ul li{
    display: flex;
}
.footer_right_side ul li i{
    font-size: 1.4rem;
    padding-right: 0.6rem;
}
 .footer_list{
    padding: 0rem;
 }
.footer_list >li {
    margin-bottom: 1rem;
}
.footer_end{
    background: #535353;
    padding: 1.5rem 0rem;
}
.footer_left_section {
    padding: 0rem 0rem;
    /* float: right; */
    font-family: 'Montserrat', 'sans-serif';
}
/************************************   Home Page Css End *****************************************/

/************************************* about section css start ***********************************/
#about{
    padding: 4rem 0rem 0rem 0rem;
}
.about_section{
    padding:3rem 0rem 2rem 0rem;
    /* background-image: linear-gradient(to left, rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(./header-bg-6.jpg); */
    background-position: top right;
    font-family: 'Montserrat', 'sans-serif';
    /* margin-top: 4rem; */
}
.about_section h3{
    font-size: 3.0rem;
    font-weight: 700;
    color: #0756a1;
    text-transform: uppercase;
}
.about_section_text {
    /* padding: 0rem 0rem 2rem 0rem; */
}
.about_section_text p{
    font-size: 1.0rem;
    line-height: 2.5rem;
    padding-top: 0rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: grey;
}
.about_second_section_one{
    color: white;
    padding: 2rem 0rem;
}
.about_second_section_one h2{
    font-size: 2.5rem;
    font-weight: 700;
    padding-left: 1.2rem;
    color: grey;
    text-transform: uppercase;
    padding-bottom: 2rem;
    font-family: 'Montserrat', 'sans-serif';
}
.about_box_text{
    color: grey;
    border: solid 1px lightgray;
    padding: 2rem 1.5rem; 
    display: flex;
    height: 100%;
    transition: all 1.0s;
    width: 100%;
    flex-direction: column;
}
.about_box_text:hover{
    
    background-color: #0756a1;
    color: white; 
}
.about_box_text img{
    background: #0756a1; 
    padding:1rem 1rem;
    text-align: center;
    margin-bottom: 1rem;
}
.about_box_text p{
    margin-top: 4%;
    text-align: center;
    font-size: 1.0rem;
    font-family: 'Montserrat', 'sans-serif';
    font-weight: 400;
}
blockquote {
    background: #f9f9f9;
    border-left: 10px solid #ccc;
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    quotes: "\201C""\201D""\2018""\2019";
    padding: 1.5rem 1rem;
}
blockquote:before {
    color: #ccc;
    content: open-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}
blockquote p {
    display: inline;
}
/************************************* about section css end  ***********************************/


/************************************* Contact  section css start ***********************************/
.contact{
    padding: 5rem 0rem;
}
.contact_info{
    font-family: 'Montserrat', sans-serif;
}
.contact_info h3{
    font-weight: 700;
    color: #0756a1;
    font-size: 2rem;
}
.contact_info h4{
    color: #0756a1;
    font-size: 1.6rem;
}
.contact_info h6{
    font-weight: 700;
    color: black;
  }
.contact_info ul{
    margin-top: 1%;
    list-style: none;
    padding:0rem;
}
.contact_info ul li{
    margin-bottom: 0.4rem;
}
.contact_info ul li i{
    padding-right: 1rem;
    font-size: 1.5rem;
}
.contact_info ul li a{
    color: grey;
    text-decoration: none !important;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

/************************************* Contact  section css end  ***********************************/
 
/* @media query laptop-L size 1440  */

@media only screen and (max-width:1440px) and (min-width:1200px) {
    .slide-title{
        font-size:2.0rem;
    }
    .footer_left_section ul li{
        font-size: 0.8rem;
    }
}

/* @media query laptop size 1024px  */
@media only screen and (max-width:1024px) and (min-width:768px) {
    .my_brand img{
        width: 300px;
    }  
    .slide-image{
        background-position: top center;
    } 
    .footer_left_section ul li{
        font-size: 0.7rem;
    }
    .about_section{
        background-position: top center;
    }
    
    .slide-title{
        font-size:1.5rem;
        line-height: 1.6rem;
    }
}

/* @media query tablet size 768px  */
@media only screen and (max-width:810px) and (min-width:425px) {
    .my_brand img{
        width: 240px;
    }
    .my_navbar ul li{
        margin-right: 10px !important;
    } 
    .my_navbar ul li a{
        font-size: 0.9rem;
    }
    .slide-title{
        font-size:1.3rem;
        line-height: 2.4rem;
    }
    .product_two:last-child{
        margin-top: 4%;
    }
    .slide-image{
        background-position: top center;
    }
    .footer_left_section ul li{
        font-size: 0.6rem;
    }
    .about_section{
        background-position: top center;
    }
    .contact_info{
        margin-top: 2%;
    }
}

/* @media query phone size 425px  */
@media only screen and (max-width:500px) and (min-width:320px) {
    .slide-image-1{
        background:linear-gradient(to left, rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("cover_phn_1.jpg") !important;
        background-repeat: no-repeat;
        background-position: center center;
    }
    .slide-image-2{
        background:linear-gradient(to left, rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("cover_phn_2.jpg") !important;
        background-repeat: no-repeat;
        background-position: center center;
    }
    .slide-image-3{
        background: linear-gradient(to left, rgba(0,0,0,0.3), rgba(0,0,0,0.3)),url("cover_phn_3.jpg") !important;
        background-repeat: no-repeat;
        background-position: center -10% !important;
    }
    .my_brand img{
        width: 185px;
    }
    .slide-title{
        font-size: 1.2rem;
        line-height: 1.4rem;
    }
    .slider-image{
        background-position: center center;
    }
    .product_two{
        margin-bottom: 4%;
    }
    #contact{
        padding: 6rem 0rem 0rem 0rem;
    }
    .header_client{
        padding: 1rem 0rem 0rem 0rem;
    }
    .footer_left_section{
        margin-top: 10%;
    }
    .footer_left_section ul li{
        font-size: 0.8rem;
    }
    .about_section{
        padding: 10rem 0rem;
        background-position: center center;
    }
    .about_section h2{
        font-size: 2.5rem;
    }
    .about_second_section_one h2{
        font-size: 2.0rem;
        padding-bottom: 0.2rem;
    }
    .about_box_text{
        padding:1rem 0.3rem;
    }
    .my_map iframe{
        width: 290px;
    }
    .contact_info{
        margin-top: 7%;
    }
    section {
        width: 100%;
        height: 40vh;
        margin-top: 5.5rem;
    }
    .slideshow-navigation-button{
        width: 4rem;
    }
    .header_client h2 {
        font-size: 2.0rem;
    }
    .client-img{
        /* width: 130px !important; */
    }
    .about_section {
        padding: 4rem 0rem 0rem 0rem;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .about_section h3 {
        /* font-size: 2rem; */
        font-weight: 700;
        /* text-align: center; */
        color: #0756a1;
        padding-bottom: 1rem;
        text-transform: uppercase;
    }
    .about_section_text p {
        line-height: 1.6rem;
        font-size: 0.9rem;
    }
    .product_third_section h2 {
        font-size: 2rem;
    }
    .product_third_section h2 span {
        font-size: 1.5rem;
    }
    .product_third_2 h2 {
            font-size: 1.5rem;
        }
    .footer-logo{
        width: 200px !important;
    }
    .footer_right_side h5 {
        font-size: 0.75rem;
    }
    .slick-slide img {
        width: 160px;
    }
    .slideshow-pagination {
        display: none;
    }
    .slideshow-navigation-button {
    width: auto;
    }
    .slideshow-navigation-button.prev {
        left: 3%;
    }
    .slideshow-navigation-button.next {
        right: 3%;
    }
    .slide-title{
        font-size: 1rem;
        word-wrap: wrap;
        width: 100vw;
        max-width: none;
    }
    .slick-next{
        position: absolute;
        right: 50%;
        top:50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        display: none !important;
    }
    .slick-prev{
        position: absolute;
        left: -1%;
        top:50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        display: none !important;
    }
    .slide-image {
        position: relative;
        width: 100vw;
        height: 80vh;
        background-size: 100vw 40vh;
        background-position: center top;
        background-position-x: center;
        background-position-y: top;
        background-repeat: no-repeat;
    }
    .nav-link-active{
        border-bottom:2px solid #0756a1;
        width: 25%;
    }
}

/* @media query only for s-phone size 320 px  */
  @media screen and (max-width: 320px) {
    .nav-link-active{
        border-bottom:2px solid #0756a1;
        width: 40%;
    }
    .about_section_text p {
        line-height: 1.6rem;
        font-size: 0.9rem;
    }
}
