/********** Template CSS **********/
:root {
    --primary: #E35A22;
    --secondary: #06A3DA;
    --light: #EEF9FF;
    --dark: #0158a7;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
    color: #fff;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
    color: #fff;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .85);
    z-index: 1;
    opacity: 0.7;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (min-width: 768px) and (max-width: 900px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
    }
    /*.banner .bg-dark,.banner .bg-secondary{min-height: 423px!important;}*/
}

@media (min-width: 900px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
    }
    /*.banner .bg-dark,.banner .bg-secondary{min-height: 330px!important;}*/
}

@media (min-width: 900px) and (max-width: 990px){
    /*.banner .bg-dark,.banner .bg-secondary{min-height: 424px!important;}*/
}
@media (min-width: 990px) and (max-width: 1440px){
    /*.banner .bg-dark,.banner .bg-secondary{min-height: 245px!important;}*/
}

.section-title h5::before {
    position: absolute;
    content: "";
    width: 70%;
    height: 2px;
    right: 0;
    bottom: -8px;
    left: 0;
    background: var(--dark);
}

.section-title h5::after {
    position: absolute;
    content: "";
    width: 29%;
    height: 2px;
    right: 0px;
    bottom: -8px;
    background: var(--primary);
}

.twentytwenty-wrapper {
    height: 100%;
}

.hero-header {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.bg-featured {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/featured-bg.jpg) center center no-repeat;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.featured-form {
    background: rgba(6, 163, 218, .7);
}
.service-item img{width: 100%;height: 255px;object-fit: cover;}

.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.15);
}

.team-item .team-text::after,
.service-item .bg-light::after {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-radius:100px / 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .7);
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
    opacity: 1;
}

.bg-offer {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/bg-1.jpg) center center no-repeat;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.offer-text {
    background: rgba(6, 163, 218, .85);
}

.price-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 45px);
    height: 45px;
    top: calc(50% - 22.5px);
    left: -22.5px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.price-carousel:hover .owl-nav {
    opacity: 1;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.bg-testimonial {
    background: url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    background: rgba(6, 163, 218, .85);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 46px);
    height: 46px;
    top: calc(50% - 23px);
    left: -23px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
}
.nph-title{color: var(--dark);}
.header-top-right,.header-top-right:before,.button-search,.nph-button{background-color: var(--dark);color: #fff;}
.border-search,.button-search,.nph-button{border-color: var(--dark);}
.nph-button:hover{background-color: var(--primary);border-color: var(--primary);color: #fff;}
.nph-button,.nph-rounded-5{border-radius: 5px;}
.nph-rounded-5{border-radius: 5px;}
.nph-rounded-5-top{border-top-left-radius: 5px;border-top-right-radius: 5px;}
.nph-rounded-5-bottom{border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;}
.nph-rounded-10{border-radius: 10px;}
.nph-rounded-10-top{border-top-left-radius: 10px;border-top-right-radius: 10px;}
.nph-rounded-10-bottom{border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;}
.carousel-inner{max-height: 600px;}
.carousel-caption div{max-width: 900px;top:10%;position: absolute;}
.owl-prev,.owl-next {
    position: absolute;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}
.owl-prev{top: 40%;left: -20px;}
.owl-next {top: 40%;right: -25px;}
.news-content .owl-prev{left: 0;}
.news-content .owl-next {right: 0!important;}
.news-content img,.news-page img{width: 100%;height: 250px;object-fit: cover;}
.bg-dark{background-color: var(--dark)!important;}
.bg-secondary{background-color: var(--primary)!important;}
.banner .bg-dark{border-radius: 10px 0 0 10px;}
.banner .bg-secondary{border-radius: 0 10px 10px 0;}
.banner .bg-dark,.banner .bg-secondary{/*min-height: 260px;*/color: #fff;}
.icon_wrap {
    background-color: var(--primary);
    width: 100px;
    height: 100px;
    display: block;
    line-height: 100px;
    font-size: 34px;
    color: #ffffff;
    margin: 0 auto;
    text-align: center;
    padding: 0 !important;
    border: 0 !important;
}
.icon_wrap em{margin-left: 7px;}
.bg-offer h1 {
    margin: 0;
    padding: 5px 0 0;
    text-align: inherit;
}
.bg-offer h3 {
    color: var(--primary);
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 768px) {
    .banner .bg-dark,.banner .bg-secondary{border-radius: 0;min-height: 302px!important;}
}

.Lcol{background:#e6e6e6;padding:15px}
.Lcol a.ResetSearchResult{background:#25659e;font-size:12px;color:#fff;padding:3px 10px 2px 10px;border-radius:3px;margin-top:5px;-webkit-transition:all .4s linear;transition:all .4s linear}
.Lcol a.ResetSearchResult:hover{background:#0c518e}
.Lcol h2{font-weight:600;color:#242424;font-size:16px;margin:0;padding:0 0px 10px 0px;text-align:left;}
.Lcol h2 i{color:#242424;}
.Lcol h3{color:#393939;font-weight:600;font-size:14px}
.Lcol ul{margin:0;padding:0;max-height:200px;overflow-y:auto;}
.Lcol ul li{margin:10px 0 0 0;padding:0;list-style:none}
.Lcol ul li label{padding-top:3px}
.Lcol ul > li ul.subDest,.Lcol ul > li ul.subAct{margin:0 10px;}
.Pic img{height:200px;object-fit:cover;width:100%;object-position:center;}
.Lcol .Holder{background:url(../img/seperator.jpg) repeat-x top;padding-top:30px;margin-top:30px}
.nphCheckBox{display:block;position:relative;padding-left:25px;cursor:pointer;font-size:12px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;min-height:20px;min-width:20px}
.nphCheckBox input{position:absolute;opacity:0;cursor:pointer;height:0;width:0}
.nphCheckmark{position:absolute;top:0;left:0;height:20px;width:20px;background-color:#fff;border:1px solid #909090}
.nphCheckBox input:checked~.nphCheckmark{background-color:#909090}
.nphCheckmark:after{content:"";position:absolute;display:none}
.nphCheckBox input:checked~.nphCheckmark:after{display:block}
.nphCheckBox .nphCheckmark:after{left:5px;top:1px;width:7px;height:13px;border:solid #fff;border-width:0 3px 3px 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}

#dvLoading {
    background: url(../img/loading.gif) no-repeat center center rgba(255,255,255,0.7);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    z-index: 999;
}
.picZoomer{
    position: relative;
    /*margin-left: 40px;
    padding: 15px;*/
}
.picZoomer-pic-wp{
    position: relative;
    overflow: hidden;
    text-align: center;
}
.picZoomer-pic-wp:hover .picZoomer-cursor{
    display: block;
}
.picZoomer-zoom-pic{
    position: absolute;
    top: 0;
    left: 0;
}
.picZoomer-pic{
    /*width: 100%;
    height: 100%;*/
}
.picZoomer-zoom-wp{
    display: none;
    position: absolute;
    z-index: 999;
    overflow: hidden;
    border:1px solid #eee;
    height: 460px;
    margin-top: 0px;
    left: 650px!important;
}
.picZoomer-cursor{
    display: none;
    cursor: crosshair;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    border: 1px solid #eee;
    background-color: rgba(0,0,0,.1);
}
.picZoomCursor-ico{
    width: 23px;
    height: 23px;
    position: absolute;
    top: 40px;
    left: 40px;
    /*background: url(images/zoom-ico.png) left top no-repeat;*/
}

.my_img {
    vertical-align: middle;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
}
.thumbImage .item{
    display: inline-block;
    width: 100%;
    height: 100px;
    border: 1px solid #eee;
    cursor: pointer;
}

.thumbImage .item img {
    width: 100px;
    height:100px;
    object-fit:cover;
}

/* custom style */
.picZoomer-pic-wp,
.picZoomer-zoom-wp{
    border: 1px solid #eee;
}



.section-bg {
    background-color: #fff1e0;
}
section {
    padding: 60px 0;
}
.row-sm .col-md-6 {
    padding-left: 5px;
    padding-right: 5px;
}

/*===pic-Zoom===*/
._boxzoom .zoom-thumb {
    display: inline-block;
    vertical-align: top;
    margin-top: 0px;
}
._boxzoom .zoom-thumb ul.piclist {
    padding-left: 0px;
    top: 0px;
}
._boxzoom ._product-images {
    width: 100%;
    display: inline-block;
}
._boxzoom ._product-images .picZoomer {
    width: 100%;
}
._boxzoom ._product-images .picZoomer .picZoomer-pic-wp img {
    left: 0px;
}
._boxzoom ._product-images .picZoomer img.my_img {
    width: 100%;
}

/*======products-details=====*/
._product-detail-content {
    background: #fff;
    padding: 15px;
    border: 1px solid lightgray;
}
._product-detail-content p._p-name {
    color: black;
    font-size: 20px;
    border-bottom: 1px solid lightgray;
    padding-bottom: 12px;
}
.p-list span {
    margin-right: 15px;
}
.p-list span.price {
    font-size: 25px;
    color: #318234;
}
._p-qty > span {
    color: black;
    margin-right: 15px;
    font-weight: 500;
}
._p-qty .value-button {
    display: inline-flex;
    border: 0px solid #ddd;
    margin: 0px;
    width: 30px;
    height: 35px;
    justify-content: center;
    align-items: center;
    background: #fd7f34;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
}

._p-qty .value-button {
    border: 0px solid #fe0000;
    height: 35px;
    font-size: 20px;
    font-weight: bold;
}
._p-qty input#number {
    text-align: center;
    border: none;
    border-top: 1px solid #fe0000;
    border-bottom: 1px solid #fe0000;
    margin: 0px;
    width: 50px;
    height: 35px;
    font-size: 14px;
    box-sizing: border-box;
}
._p-add-cart {
    margin-left: 0px;
    margin-bottom: 15px;
}
.p-list {
    margin-bottom: 10px;
}
._p-features > span {
    display: block;
    font-size: 16px;
    color: #000;
    font-weight: 500;
}
._p-add-cart .buy-btn {
    background-color: #fd7f34;
    color: #fff;
}
._p-add-cart .btn {
    text-transform: capitalize;
    padding: 6px 20px;
    /* width: 200px; */
    border-radius: 52px;
}
._p-add-cart .btn {
    margin: 0px 8px;
}

/*=========Recent-post==========*/
.title_bx h3.title {
    font-size: 22px;
    text-transform: capitalize;
    position: relative;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2em;
}
.title_bx h3.title:before {
    content: "";
    height: 2px;
    width: 20%;
    position: absolute;
    left: 0px;
    right: 0px;
    z-index: 1;
    top: 40px;
    background-color: var(--dark);
}
.title_bx h3.title:after {
    content: "";
    height: 2px;
    width: 79.8%;
    position: absolute;
    right: 0px;
    top: 40px;
    background-color: var(--primary);
}
.common_wd .owl-nav .owl-prev, .common_wd .owl-nav .owl-next {
    background-color: #fd7f34 !important;
    display: block;
    height: 30px;
    width: 30px;
    text-align: center;
    border-radius: 0px !important;
}
.owl-nav .owl-next {
    right:-20px;
}
.owl-nav .owl-prev, .owl-nav .owl-next {
    top:25%;
    position: absolute;
}
.common_wd .owl-nav .owl-prev i, .common_wd .owl-nav .owl-next i {
    color: #fff;
    font-size: 14px !important;
    position: relative;
    top: -1px;
}
.common_wd .owl-nav {
    position: absolute;
    top: -21%;
    right: 4px;
    width: 65px;
}
.owl-nav .owl-prev i, .owl-nav .owl-next i {
    left: 0px;
}
._p-qty .decrease_ {
    position: relative;
    right: -5px;
    top: 3px;
}

._p-qty .increase_ {
    position: relative;
    top: 3px;
    left: -5px;
}

.gallery-item {
    width: 200px;
}
.gallery-item img{margin-bottom: 5px;cursor: pointer;}

.GalleryBox img{height:190px;object-fit: cover;}
.navbar-nav .dropdown-menu{padding:0px;}
.navbar-nav .dropdown-menu .dropdown-item:hover, .dropdown-item:focus {
    color: #ffffff;
    background-color:var(--dark);
}
