/* links google font  */
@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100..900&display=swap');

/* default css root   */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


body {
    font-family: "Catamaran", sans-serif;
}

a {
    text-decoration: none;
}

/* pre define class  */

.btn-parimary {
    background-color: #01598F;
    border-radius: 10px;
}

.icon_btn {
    background: transparent;
    border: none;
    padding: 0;
}

.icon_btn:focus {
    box-shadow: none;
}

/* header section design start  */

#header {
    background: url(../image/main_bg.jpg)no-repeat center center/cover;
    height: 100vh;
}


#background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    opacity: .5;
}

/* navbar style start  */
.navbar .navbar-brand img {
    margin-top: 20px;
}

.navbar .navbar-brand img {
    filter: brightness(0) invert(1);
    width: 160px;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.647);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;

}

.navbar .nav-item {
    margin: 0 24px;
}

.navbar .nav-item .active {
    color: white;
}

.navbar .nav-item:hover {
    transform: scale(1.2);
    transition: all 0.2s linear;
}

.navbar .navbar-toggler {
    border: 1px solid white;
    color: white;
    font-size: 14px;
    padding: 10px 28px;
    border-radius: 100px;
}

.navbar .navbar-toggler:focus {
    box-shadow: none;
}

.navbar .navbar-toggler-icon {
    filter: brightness(1) invert(1);

}

.nav-item:hover .nav-link {
    color: white;
    transform: scale(1.2);
    transition: all 0.1s;
}

/* navbar style end */
/* hero section start  */
.hero_heading {
    padding-top: 164px;
}

.hero_heading h2 {
    font-size: 64px;
    color: white;
    letter-spacing: 2px;
    font-weight: 800;
}

.hero_heading span {
    color: #148eda;
}

.hero_heading p {
    font-size: 18px;
    color: white;
    letter-spacing: 1.5px;
    margin-top: 20px;
}

/* hero section end */
/* header section design end */

/* about section start  */

.white {
    background: white !important;
}

#about {
    padding: 100px 0 40px 0;
}

#about h2 {
    font-size: 22px;
    font-weight: 200;
}

#about h3 {
    letter-spacing: 2px;
    font-weight: 100;
    font-size: 64px;
    margin: 30px 0;
    line-height: 60px;
}

#about h3 span {
    color: #148eda;
    font-weight: 800;
}

#about p {
    font-size: 20px;
    letter-spacing: 1.5px;
    font-weight: 500;
}



#about .btn_primary {
    font-size: 20px;
    margin-top: 30px;
    letter-spacing: 1.5px;
    font-weight: 600;
    background: #148eda;
    color: white;
    border: 2px solid transparent;
    padding: 12px 48px;
    border-radius: 100px;
    transition: all 0.2s;
}

#about .btn_primary:hover {
    color: #148eda;
    border: 2px solid #148eda;
    background-color: transparent;
    transform: scale(1.5);
    transition: all 0.2s;
}

/* about_part 2 start  */
#about_2 {
    background: #E8F4FB;
    padding: 64px 0;
}

#about_2 h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0;
}

#about_2 p {
    font-size: 16px;
    letter-spacing: 1.5px;
    font-weight: 500;
}

#about_2 svg {
    fill: #148eda;
}

/* about_part 2  end*/

/* about section end */

/* product secrtion start  */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#product {
    background: url(../image/product_bg.png) no-repeat center center/cover;
    padding: 64px 0;
}

#product h2 {
    letter-spacing: 2px;
    font-weight: 100;
    font-size: 64px;
    margin: 30px 0;
    line-height: 60px;
    color: white;
    text-align: center;
}

#product h2 span {
    color: #148eda;
    font-weight: 800;
}

#product h3 {
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 32px;
    color: white;
    text-transform: uppercase;
}

#product p {
    font-size: 16px;
    letter-spacing: 1.5px;
    font-weight: 400;
    margin: 20px 0;
    color: white;
    width: 60%;
}

#product .btn_primary {
    font-size: 20px;
    margin-top: 30px;
    letter-spacing: 1.5px;
    font-weight: 600;
    background: white;
    color: #148eda;
    border: 2px solid transparent;
    padding: 12px 48px;
    border-radius: 100px;
    transition: all 0.2s;
}

#product .btn_primary:hover {
    color: white;
    border: 2px solid white;
    background-color: transparent;
    transform: scale(1.2);
    transition: all 0.2s;
}

#product .swiper {
    padding: 64px 0;
}

#product .swiper-slide {
    background-color: transparent;
}

.swiper-pagination-bullet {
    background: white !important;
}

.swiper-pagination-bullet-active {
    background: white !important;
}

.swiper-button-next::after,
.swiper-rtl .swiper-button-prev::after {
    color: white;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    color: white;
}


/* product secrtion end */

/* blog section start  */
#blog {
    padding: 100px 0;
}

.blog_heading {
    font-size: 70px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 40px 0;
}

.blog_box p {
    font-size: 18px;
    margin: 20px 0;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.blog_box .icon_btn {
    font-size: 18px;
    color: #148eda;
    font-weight: 600;
}

.blog_box .icon_btn svg {
    fill: #148eda;
    width: 22px;
    margin-left: 10px;
}

/* blog section end */

/* contact us style start  */

#contact {
    padding: 100px 0;
}

#contact .form-control {
    background: #F2F2F2;
    border: none;
    padding: 16px 20px;
    margin: 16px 0;
}

#contact .form-control::placeholder {
    font-size: 14px;
    opacity: 0.5;
}

#contact .form-control:focus {
    box-shadow: none;
}

#contact h2 {
    letter-spacing: 2px;
    font-weight: 100;
    font-size: 64px;
    margin-bottom: 64px;
    line-height: 60px;
    text-align: center;
}

#contact h2 span {
    color: #148eda;
    font-weight: 800;
}


#contact .contact_info svg {
    fill: #148eda;
}

#contact .contact_info h3 {
    font-size: 22px;
    color: #148eda;
    font-weight: 700;
    margin: 14px 0;
}

#contact .contact_info h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
}

#contact .contact_info h5 {
    font-size: 20px;
    margin: 10px 0;
}

#contact .contact_info h5 a {
    color: black;
}

#contact .info_box {
    margin: 30px 0;
}


#contact .btn_primary {
    font-size: 20px;
    margin-top: 30px;
    letter-spacing: 1.5px;
    font-weight: 600;
    background: #148eda;
    color: white;
    border: 2px solid transparent;
    padding: 12px 48px;
    border-radius: 100px;
    transition: all 0.2s;
}

#contact .btn_primary:hover {
    color: #148eda;
    border: 2px solid #148eda;
    background-color: transparent;
    transform: scale(1.2);
    transition: all 0.2s;
}


/* contact us style end */
/* footer Design start  */
#footer {
    background: url(../image/footer-ng.png) center center/cover;
    padding: 64px 0 20px 0;
}

#footer .contact_info h2 {
    color: white;
    font-size: 32px;
    margin: 64px 0 40px 0;
    text-transform: uppercase;
    font-weight: 800;
}

#footer .contact_info .info_box .content h4 {
    color: white;
    font-size: 16px;
    font-weight: 300;
}

#footer .contact_info .info_box svg {
    margin-right: 20px;
    fill: white;
}

#footer .contact_info .info_box .content h5 {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

#footer .info_box {
    margin: 20px;
}

.copy_right {
    margin-top: 30px;
    border-top: 1px solid white;
    padding: 30px 0 0 0;
}

.copy_right p {
    color: white;
    font-size: 16px;
    letter-spacing: 2px;
}

.social_icons a {
    margin: 0 10px;
}

.social_icons a:hover .img-fluid {
    transform: scale(1.5);
    transition: all 0.1s;
}

/* footer Design end */

/* ******************************  About Us Page Design  *************************************** */

#inner_page #header {
    height: 50vh;

}

#inner_page .breadcrumb {
    padding: 50px 0 0 0;
}

#inner_page .breadcrumb svg {
    fill: #148eda;
    margin: 0 10px;
}

#inner_page .breadcrumb a {
    font-size: 18px;
    color: white;
    font-weight: 300;
}

#inner_page .breadcrumb a:hover {
    transform: scale(1.2);
    transition: all 0.1s;
}

#inner_page .breadcrumb .active {
    color: #148eda;
    font-weight: 800;
    font-size: 32px;
    margin: 0;
}

#inner_page #background-video {
    height: 50vh;
}

#inner_page .about .about_heading {
    font-size: 70px;
    font-weight: 800;
    text-transform: uppercase;
}

#inner_page .about {
    padding: 100px 0 64px 0;
    background: white;
}

#inner_page .about .pera_1 {
    font-size: 20px;
    margin-top: 30px;
    letter-spacing: 1.5px;
    font-weight: 500;
}

#inner_page .about .icon_box h2 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1.8px;
    margin: 20px 0;
}


#inner_page .about .icon_box p {
    font-size: 16px;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ******************************  our product  Page Design  *************************************** */

#inner_page #product {
    background: white;
}

#scroll {
    position: fixed;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px
}

#scroll span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    transition: all 0.1s linear;

    border-bottom-color: #ffffff;
}

#scroll:hover {
    transform: scale(1.2);
    transition: all 0.1s linear;
}

/* product details page design start  */
.product_details {
    background-color: white;
    padding: 80px 0;
}

.product_details h2 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1.8px;
    margin: 20px 0;
    margin-bottom: 30px;
}

.product_details p {
    font-size: 16px;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.product_details .table {
    margin: 80px 0;
}

.product_details .table th {
    border: 0.5px solid #148eda;
}

.product_details .table td {
    border: 0.5px solid #148eda;
}

.product_details .table thead {
    background: #148eda55;
}


.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px !important;
}

.Copper_Powder .table {
    margin: 20px 0;
}

/* product details page design end */


/* blog detaisl page start  */
#blog_details {
    padding: 80px 0 0 0;
    background: white;
}

#blog_details .blog_info svg {
    fill: #148eda;
    margin-right: 10px;
}

#blog_details .blog_info h2 {
    font-size: 20px;
    margin: 0;
    font-weight: 400;
    padding: 0;
}

#blog_details .blog_heading {
    font-size: 32px;
    font-weight: 700;
    padding: 0;
    color: #148eda;

}

#blog_details hr {
    color: #148eda;
    padding: 0;
    margin: 20px 0;
}

#blog_details .blog_content {
    padding: 40px 0;
}

#blog_details .blog_content h3 {
    font-size: 32px;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin: 20px 0;
    padding: 0;
}

#blog_details .blog_content p {
    font-size: 16px;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin: 20px 0;
    padding: 0;
}

#blog_details .blog_content p span {
    font-weight: 700;
}

#blog_details .recent_blog {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    padding: 0 0 40px 0;
}

.share_info a {
    margin: 0 10px;
}

.share_info {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.492);
    border-bottom: 1px solid rgba(0, 0, 0, 0.492);
}

/* blog detaisl page end */

/* contact us page start  */
#contact_page #contact {
    padding: 40px 0;
}

#contact_page .contact_page_title {
    margin: 0;
    padding: 20px 0;
}

/* contact us page end */

/* product page start  */
.product_page {
    background: url(../image/product_bg.png) no-repeat center center/cover !important;
}

/* product page end */

.txt-para {
    text-align: justify;
    font-size: 16px;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin: 20px 0;
    padding: 0;
}


.submenu .nav-link {
    text-transform: capitalize;
    
}

.submenu .nav-item .nav-link{
    font-size: 12px;
}


@media (max-width: 767px) {
    
    #hero {
    margin-top: -160px;
    height: 100%;
    }

    
.navbar .navbar-brand img {
    width: 110px !important;
}

.header-phone {
    display: none !important;
}
#inner_page .breadcrumb {
    text-align: center;
}
.navbar.navbar-expand-lg > .container-fluid {
    padding: 0;
}
    #header .navbar-collapse {
     
        top: 48px;
    
    }
    .navbar-collapse.collapse.show .nav{
            display: block !important;
    }
    .hero_heading h2 {
        font-size: 30px !important;
    }
    .hero_heading {

    padding-left: 10px !important;
    padding-right: 10px !important;
}
#header .navbar-collapse
 {
        position: absolute !important;
        top: 120px !important;
        width: 100% !important;
        left: 0px !important;
        color: black !important;
        background: white !important;
        margin: 30px 0px 0px !important; 
        border-radius: 10px !important;
        padding: 20px 0px !important;
    }
    
    #header-nav .navbar-collapse
 {
        position: absolute !important;
        top: 120px !important;
        width: 100% !important;
        left: 0px !important;
        color: black !important;
        background: white !important;
        margin: 30px 0px 0px !important; 
        border-radius: 10px !important;
        padding: 20px 0px !important;
    }
 .navbar .nav-item .active,  .navbar .nav-item{
    color: #000 !important;
}
    .navbar .nav-link{
        color: #000 !important;
    }
    #header-nav .navbar-collapse{
        top: 60px !important;
    }

}