/********** CSS **********/
:root {
    --primary: #166EB5;
    --secondary: #0F3D88;
    --dark: #222222;
    --light:#373737;
    --bg-light: #F4FAFD;
}

/********************************* Sub Page ************************************/
.subpage-banner{
    height: 280px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    background-position: center;
    object-fit: cover;
    /* z-index: 99; */
}
.subpage-banner::before {
    background: rgb(7 44 103 / 56%);
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.sub-banner-content{
    color: var(--dark);
    z-index: 99;
}
.sub-banner-content h2{
    color: white;
    font-size: 34px;
}
.sub-page-content-area{
    margin-bottom: 50px;
}
.sub-page-content p{
    margin-bottom: 30px;
    text-align: justify;
}
/* ------------- Breadcrumbs ------------- */

.breadcrumbs{
    justify-content: center;
    display: flex;
}
.breadcrumbs ul{
    /* background-color: white;
    border-radius: 20px; */
}
.breadcrumbs ul li{
    color: white;
    position: relative;
    padding: 0px 33px;
    font-size: 19px;
}
.breadcrumbs ul li::before{
    content: '\f101' !important;
    font-family: "fontAwesome";
    font-size: 15px;
    position: absolute;
    left: -20px;
    top: 3px;
    color: white !important;
    opacity: 0.7;

}
.breadcrumbs ul li:first-child{
    padding-left: 0;
}
.breadcrumbs ul li:last-child{
    padding-right: 0;
}
.breadcrumbs ul li:first-child::before{
    content: none !important;

}
.breadcrumbs ul li a{
    color: white;
    opacity: 0.7;
    font-size: 19px;
}
.breadcrumbs ul li a:hover{
    color: var(--secondary);
}

/* ------------- Content ------------- */

.sub-page-content{
    background: #e9f4fa;
    padding: 60px 0px;
    position: relative;
}

.sub-page-content img{
    max-height: 350px;
    width: auto;
    object-fit: cover;
    object-position: center;
}

/* ------------- Products ------------- */

.sub-page-content .item{
    background: white;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.sub-page-content .item img{
    margin: 0 auto;
    display: block;
}
.sub-page-content .featured1{
    border: none;
    padding: 0;
    border-radius: 0;
}
.sub-page-content .featured1 img{
    width: 100%;
    object-fit: cover;
}

/* ------------- Blog ------------- */

.sub-page-content .news1{
    background: white;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.sub-page-content .news1 img{
    height: 180px;
    width: 100%;
    object-fit: cover;
}
.sub-page-content .news1 h5{
    font-weight: 400;
    font-size: 19px;
}
.sub-page-content .news1 h6{
    font-weight: 400;
    font-size: 16px;
}

/* ------------- Blog Details ------------- */

.blog-details img{
    height: 350px !important;
    margin-bottom: 20px;
}

.blog-side-menu{
    /* padding: 20px; */
    /* border-radius: 5px; */
}
.blog-side-menu h5{
    font-size: 17px;
    font-weight: 400;
}

.blog-thumbnail{
    background: white;
    padding: 15px;
    border-radius: 5px;
}
/* ------------- Contact form ------------- */
.contact-page{

}
.contact-pg{
    background: linear-gradient(to bottom, #0F3D88, #166EB5);
}

.contact-details{
    margin-bottom: 40px;
}
.contact-page h5{
    font-size: 28px;
    font-weight: 600;
}
.contact-page p{
    margin-bottom: 5px;
}
.contact-details a{
    color: var(--light);
}
.contact-details a:hover{
    color: var(--secondary);
}
.contact-page .contact-icon{
    border: 1px solid var(--light);
    width: 110px;
    height: 110px;
    border-radius: 100px;
    justify-content: center;
    display: flex;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 20px;
}
.contact-page .contact-icon img{
    height: 50px;
    width: auto;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
}
.contact-sub-form::after{
    /* display: none; */
}

.contact-form{
    /* padding: 30px; */
    /* border-radius: 5px; */
    margin-bottom: 30px;
}
.contact-sub input[type=text], .contact-sub textarea {
    width: 100%; 
    padding: 12px 20px;
    /* margin: 8px 0; */
    /* display: inline-block; */
    border: 1px solid #ccc !important;
    border-radius: 8px;
    box-sizing: border-box;
    height: 50px;
    z-index: 99;
    margin-bottom: 15px;
}
.contact-sub input[type=submit] {
    background-color: var(--primary);
    color: white;
    padding: 12px 20px;
    margin: 0px 5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    height: 50px;
    z-index: 99;
    text-transform: capitalize;
    margin: 7px 0px;
}
.contact-sub input[type=submit]:hover{
    background: var(--secondary);
}

.contact-sub input[type=text]:focus{
    border: none !important;
    outline: none !important;
}
.contact-sub input[type=text], .contact-sub textarea  {
    width: 100%; 
    padding: 12px 20px;
    /* margin: 8px 0; */
    /* display: inline-block; */
    border: 1px solid #ccc !important;
    border-radius: 5px;
    box-sizing: border-box;
    height: 50px;
    z-index: 99;
    margin-bottom: 15px;
}
/* .contact-sub input[type=submit] {
    background-color: var(--secondary);
    color: white;
    padding: 12px 20px;
    margin: 0px 5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    height: 50px;
    z-index: 99;
    text-transform: capitalize;
    margin: 7px 0px;
    float: left;
} */
.contact-sub input[type=submit]:hover{
    background: var(--primary);
}

.contact-sub input[type=text]:focus{
    border: none !important;
}

.address-sub{
    padding: 20px 5px;
    margin-bottom: 20px;
    text-align: center;
    min-height: 190px;
    border-radius: 5px;
}
.connect{
    padding: 0px 15px;
}
.address-sub i{
    color: white;
    text-align: center;
    margin: 0 auto;
    display: block;
    font-size: 25px;
    margin-bottom: 10px;
}
.address-sub p{
    margin-bottom: 0px;
    font-size: 15px;
    line-height: 24px;
    color: white;
}
.address-sub a{
    margin-top: 7px;
    font-weight: 400;
    color: white;
    font-size: 15px;

}
.address-sub a:hover{
    color: var(--secondary);
}
.address-sub h4{
    font-size: 22px;
}
.connect p span{
    /* color: var(--light); */
    font-weight: 400;
}
.contact-sub-form{
    /* padding: 50px 0px; */
}
.contact-top-sub{
    background: var(--primary);
    color: white;
}
.address-sub ul{
    padding: 0;
}
.address-sub ul li{
    list-style: none;
    line-height: 30px;
}
.contact-sub input:focus,
.contact-sub textarea:focus {
    border: none; /* Remove border on focus */
    /* You can also adjust other border properties here */
    outline: none !important;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border: 1px solid #ccc !important;
    outline: 0;
    /* box-shadow: none !important; */
}
.map-main{
    /* padding: 0px; */
    background: white;
    position: relative;
    z-index: 99;
}
.map-main p{
    margin-bottom: 30px;
}
.map-main h4{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-sub-form h4{
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
    color: white;
}
/* ------------- 404 ------------- */
.error-page-main{
    border-top: 1px solid #ccc;
    background-image: url(../img/banner1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
}
.error-page-main::before{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.74);
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
}
.error-page{
    /* min-height: 300px; */
    align-items: center;
    justify-content: center;
    /* padding: 0px 0px 50px; */
    display: flex;
}

.error-page h3{
    font-size: 24px;
    color: var(--dark);
}

.error1{
    text-align: center;
    z-index: 999999;
}
.error-page-content h2{
    font-size: 130px;
    font-weight: 700;
    color: white;
    line-height: 120px;

}
.error-page-content h3{
    font-size: 30px;
    font-weight: 700;
    color: white;
}
.error-page-content p{
    color: white !important;
}
.error-page-content button{
    margin: 0 auto !important;
}
.error-page-content a{
    color: white;
}
.error-page-content a:hover{
    color: white;
    opacity: 0.7;
}

.woocommerce div.product div.images img {
    object-fit: none;
    padding: 10px;
    max-height: inherit;
}
.woocommerce-product-gallery ol li{
	width: auto !important;
}
.woocommerce-product-gallery ol li img {
    width: 100% !important;
    border-radius: 0;
    margin: 0 5px !important;
	padding: 0 !important;
}


@media (max-width: 768px) { 
    .error-page img{
        height: 250px;
    }
    .error-page-content h2{
        font-size: 90px;
        line-height: 90px;
    }
    .error-page-content h3{
        font-size: 23px;
    }
}

@media (max-width: 576px) { 
    .error-page img{
        height: 150px;
    }
    .error-page-content h2{
        font-size: 50px;
        line-height: 50px;
    }
    .error-page-content h3{
        font-size: 18px;
    }
    .error-page-content p{
        display: none;
    }
    
}

