/*************************
Theme Main Css File

It Includes All the styles of Elements Used In This Theme
0. Root Variables
1.Common Elements
2.Preloader
3. Main Header

11.Main Footer
12. Reponsive Media Queries

******************/



/**************************************
This is Base Colors Of Theme For Easy to use
    
    green: #05659e
    light green: #87C159
    yellow: #ffa416
    Green gradient: (#05659e, #0ea96c)
    Black: #010101
    Black gradiant: (#444444 ,#010101)
    Light Bg: #ebfbf5
    Light Gradient (#fdfffe, #ebfbf5)
    Text Color: #626262

**************************************/

/**************************************
Common Elements
**************************************/
html {
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #6b6b6b;
    font-size: 15px;
    line-height: 28px;
    overflow-x: hidden;
}

body.scroll-pad {
    padding-top: 70px;
}

.fix-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../img/resource/body-bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

/****************
Headings
*****************/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: 'Manjari', sans-serif;
    color: #010101;
    font-weight: 700;
    line-height: 1.4;
}

.h1,
h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 800;
}

/****************
Lists
*****************/
dl,
ol,
ul {
    margin-bottom: 0;
}

.list-group-item:first-child {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.list-group-item:last-child {
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

/****************
Links
*****************/
a {
    color: #05659e;
    transition: all ease-in-out 0.4s;
    text-decoration: none;
}

a:hover {
    color: #010101;
    text-decoration: none;
}

/****************
Basic color & background classes for direct use
*****************/
.base-txt {
    color: #05659e !important;
}

.base-bg {
    background-color: #05659e !important;
}

.second-txt {
    color: #ffa416 !important;
}

.second-bg {
    background-color: #ffa416 !important;
}

.light-bg {
    background-color: #f3fbff !important;
}

.no-bg {
    background: none !important;
}

.text-light {
    color: #ccc !important;
}

/****************
Base Section Styles
(Common spacing, Text align etc.)
*****************/
.main-content-outer {
    width: 100%;
}

.section-space {
    padding: 90px 0;
}

.inner-cover {
    padding: 50px 0;
}

.start-margin {
    margin-top: 90px;
}

.end-margin {
    margin-bottom: 90px;
}

/****************
Section Title
*****************/

.theme-title {
    margin-bottom: 15px;
    position: relative;
}

.theme-title h5 {
    color: #05659e;
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.theme-title .title-deco {
    width: 250px;
}

.theme-title.center-title {
    text-align: center;
    position: relative;
    padding-bottom: 5px;
}

.theme-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    color: #010101;
    margin-bottom: 0;
}

.sepretor {
    display: block;
    width: 50px;
    height: 3px;
    background: #05659e;
}

@keyframes bubblewave {
    50% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

@-webkit-keyframes bubblewave {
    50% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.title-with-seprator {
    font-weight: lighter;
    position: relative;
    z-index: 0;
}

.title-with-seprator span {
    background-color: #fff;
    padding: 0 25px;
}

.title-with-seprator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e1e1e1;
    z-index: -1;
}

/****************
Buttons Style
*****************/
button,
button:focus,
button:hover {
    outline: none;
    border: none;
}

.btn-one {
    position: relative;
    background: #05659e;
    padding: 8px 30px;
    color: #fff !important;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.7;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    transition: all ease-in-out 0.4s !important;
    z-index: 2;
    overflow: hidden;
    cursor: pointer;
}

.btn-one.btn-sm {
    padding: 5px 22px;
    font-size: 14px;
    line-height: 1.5;
}

.btn-one.btn-lg {
    padding: 10px 36px;
    font-size: 18px;
}

.btn-one.alt-btn {
    background: #ffa416;
    color: #010101 !important;
}

.btn-one.light-btn {
    background: linear-gradient(45deg, #ffffff, #ffffff);
    color: #010101 !important;
}

.btn-one > i {
    margin-left: 8px;
}

.btn-one:hover {
    color: #fff !important;
}

.btn-one.alt-btn:hover {
    color: #fff !important;
}

.btn-one::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    left: 50%;
    background: #010101;
    text-align: center;
    border-radius: 50%;
    top: 50%;
    transition: all ease-in-out 0.8s;
    z-index: -1;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center top;
}

.btn-one.hover-2:hover {
    color: #010101 !important;
}

.btn-one.hover-2::before {
    background: #fff;
}

.btn-one:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.btn-one.btn-full {
    display: block;
    text-align: center;
}

.btn-one.btn-full::before {
    display: none;
}

.btn-one.btn-full:hover {
    background-color: #010101;
}

.btn-link {
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: #05659e;
    display: inline-block;
}

.btn-link:hover {
    color: #010101;
}

.icon-btn {
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    border: 1px solid #05659e;
    border-radius: 50%;
}

.icon-btn:hover {
    background: #05659e;
    color: #fff;
}

.video-btn {
    width: 45px;
    height: 45px;
    display: inline-block;
    background: #fff;
    text-align: center;
    line-height: 45px;
    color: #010101;
    border-radius: 50%;
}

.video-btn::before,
.video-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    -webkit-transform: translate(-50%, -50%) scale(0);
    width: 75px;
    height: 75px;
    background: #fff;
    z-index: -1;
    border-radius: 50%;
    opacity: 0.25;
    animation: bubblewave 2s ease-in-out infinite;
    -webkit-animation: bubblewave 2s ease-in-out infinite;
}

.video-btn::after {
    opacity: 0.25;
    width: 60px;
    height: 60px;
}

/****************
cards
*****************/
.card {
    border-radius: 25px;
    overflow: hidden;
}

.card-title{
    margin-bottom: 0;
}

.card-icon {
    background: #05659e;
    height: 60px;
    width: 60px;
    min-width: 60px;
    padding: 10px;
    border-radius: 15px;
    text-align: center;
}

.card-icon i {
    font-size: 28px;
    line-height: 40px;
    color: #fff;
}

.card-icon .card-num {
    font-weight: 800;
    margin-left: -5px;
}

.card-style-1 {
    background-color: transparent;
}

.card-style-1 .card-body {
    padding: 10px 0;
}

.card-style-1 .card-icon {
    background: #fff;
    height: 80px;
    width: 80px;
    min-width: 80px;
    padding: 18px;
    border-radius: 50%;
    text-align: center;
}

.card-style-2 {
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 7%);
}

.card-style-2 .card-body {
    padding-top: 20px;
    padding-bottom: 20px;
}

.card-style-2 .card-icon {
    border-radius: 50%;
}

.card-style-2 .card-title::after {
    content: '';
    display: block;
    margin-top: 10px;
    border-top: 1px dashed #ffa416;
}

.card-style-3 {
    background-color: transparent;
    transition: all ease-in-out 0.4s;
}

.card-style-3 .card-icon {
    background: transparent;
    height: 55px;
    width: 55px;
    min-width: 55px;
    padding: 0;
}

.card-style-3 .card-body {
    background: transparent;
}

.card-style-3 .card-text {
    font-weight: 500;
}

.card-style-4 .card-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
}

.card-style-4 .card-icon i {
    font-size: 22px;
    line-height: 24px;
}

.card-style-5 {
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 6%);
}

.card-style-5 .card-body {
    padding: 35px 25px;
}

.card-style-5 .card-icon {
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: #ffa416;
}

.card-style-5 .card-icon i {
    color: #010101;
}


/****************
Theme List
*****************/
ul.theme-list {
    list-style: none;
    padding-left: 0;
}

ul.theme-list.list-lg {
    font-size: 17px;
}

ul.theme-list li {
    display: flex;
    align-items: baseline;
}

ul.theme-list.three-row-list li {
    width: 33.33%;
    float: left;
    font-weight: 600;
}

ul.theme-list.three-row-list li {
    margin-top: 10px;
}

ul.theme-list li + li {
    margin-top: 10px;
}

ul.theme-list li i {
    color: #05659e;
    margin-right: 8px;
}

/****************
Theme Tabs
*****************/
.theme-tabs .nav-tabs .nav-link {
    font-size: 16px;
    color: #010101;
}

.theme-tabs .nav-tabs .nav-item.show .nav-link,
.theme-tabs .nav-tabs .nav-link.active {
    background: transparent;
    border-color: #c9c9c9;
    border-bottom-color: #f8f9fa;
    color: #05659e;
    font-weight: 600;
}

.theme-tabs .nav-tabs {
    border-bottom-color: #c9c9c9;
}


/****************
Theme Images
*****************/
.theme-img {
    border: 3px dotted #05659e;
    border-radius: 25px;
    padding: 8px;
}

.theme-img img {
    border-radius: 20px;
}

.blob-img .grad-path {
    transform-origin: center;
    transform-box: fill-box;
    -webkit-transform-box: fill-box;
    -moz-transform-box: fill-box;
    -o-transform-box: fill-box;
    -ms-transform-box: fill-box;
    animation: blob 10s ease-in-out infinite alternate;
}

@keyframes blob {
    0% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(-60deg);
    }
}

.img-clip {
    position: absolute;
    z-index: -9999;
}

.deco-img {
    position: relative;
    z-index: 2;
}

.deco-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 85%;
    height: 100%;
    background: #fdfffe;
    z-index: -1;
    border-radius: 50%;
}

.rounded {
    border-radius: 20px !important;
}

/****************
Section Top/Bottom Shape Image
*****************/
.ps-shape-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/****************
Section Top & Bottom Wave Decoration
*****************/
.bottom-wave::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 0;
    width: 100%;
    height: 200px;
    background-image: url(../img/resource/bottom-wave.svg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
}


/****************
Common Social Bar
*****************/
.social-bar > li {
    margin-right: 8px;
}

.social-bar > li > a {
    padding: 5px 10px;
}

.social-bar.style-1 > li > a {
    font-size: 18px;
}

.social-bar.style-2 > li > a {
    width: 36px;
    height: 36px;
    background: #05659e;
    line-height: 36px;
    display: block;
    padding: 0;
    color: #fff;
    text-align: center;
    border-radius: 50%;
}

.social-bar.style-2 > li > a:hover {
    background: #fff;
    color: #222;
    
}

/***************
Back To Top
************/
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #05659e;
    color: #ffffff !important;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 999;
    display: none;
}

/****************
Owl Carousel Styles
*****************/
.owl-stage-outer {
    overflow: visible !important;
}

.owl-item {
    opacity: 0;
    transition: opacity 500ms;
}

.owl-item.active {
    opacity: 1;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent !important;
    color: initial !important;
    text-decoration: none !important;
}

.owl-nav .owl-next span,
.owl-nav .owl-prev span {
    width: 40px;
    display: block;
    height: 40px;
    line-height: 36px;
    border: 1px solid #d3d3d3;
    border-radius: 50%;
    font-size: 20px;
}

.owl-nav .owl-next span:hover,
.owl-nav .owl-prev span:hover {
    background-color: #05659e;
    border-color: #05659e;
    color: #fff;
}

.owl-nav .owl-next,
.owl-nav .owl-prev {
    position: absolute;
    top: 35%;
}

.owl-nav .owl-prev {
    left: -55px;
}

.owl-nav .owl-next {
    right: -55px;
}

.owl-theme .owl-dots {
    margin-top: 20px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 4px;
    background: #f0f0f0;
    transition: all ease-in-out .4s;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot.active:hover span{
    background-color: #05659e;
    transform: scale(1.6);
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: #ccc;
}

/**************************************
Preloader 
**************************************/
.preloader {
    position: fixed;
    background-color: #ffffff;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
}

.preloader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.preloader-lines {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 130px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #05659e;
    -webkit-animation: pre-spin 1.3s linear infinite;
    animation: pre-spin 1.3s linear infinite;
}

.preloader-lines:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #ffa416;
    -webkit-animation: pre-spin 2.3s linear infinite;
    animation: pre-spin 2.3s linear infinite;
}

.preloader-lines:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #010101;
    -webkit-animation: pre-spin 0.9s linear infinite;
    animation: pre-spin 0.9s linear infinite;
}

@-webkit-keyframes pre-spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes pre-spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.preloader-txt {
    font-size: 20px;
    font-weight: 500;
    display: block;
    margin-top: 20px;
}

/****************
Preloader Keyframes
*****************/
@-webkit-keyframes scaleLines {
    0% {
        height: 48px;
    }

    100% {
        height: 4.8px;
    }
}

@keyframes scaleLines {
    0% {
        height: 48px;
    }

    100% {
        height: 4.8px;
    }
}

/**************************************
Main Header
**************************************/
.top-bar {
    width: 100%;
    background-color: #fff;
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ccc;
}

.top-bar .social-bar.style-2 > li > a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 13px;
}

.top-bar .social-bar.style-2 > li > a:hover {
    background-color: #05659e;
    color: #fff;
}

ul.contact-bar {
    list-style: none;
    padding: 0;
    display: flex;
    font-size: 14px;
}

.contact-bar li {
    margin-right: 15px !important;
}

.contact-bar li > a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #6b6b6b;
}

.contact-bar li > a:hover {
    color: #ffffff;
}

.contact-bar li.highlight-item > a {
    font-weight: 600;
    color: #05659e;
}

.contact-bar li > a > i {
    color: #05659e;
    margin-right: 10px;
}

.navbar-brand > img {
    width: 200px;
    height: auto;
    transition: all ease-in-out 0.4s;
}

header.header-main.is-sticky .navbar-brand > img {
    width: 185px;
}

/****************
Sticky Nav Keyframes
*****************/
@keyframes stickySlideDown {
    0% {
        opacity: 0.7;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes stickySlideUp {
    0% {
        opacity: 0.7;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.header-main {
    width: 100%;
}

.header-main .navbar {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    animation-duration: 0.5s;
    animation-name: stickySlideUp;
}

.header-main.style-2{
        margin: 0 40px;
    width: auto;
}

.header-main.style-2 .navbar {
    background-color: #fff;
    border-radius: 0 0px 30px 30px;
}

.header-main.is-sticky nav.navbar {
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .15);
}

.header-main.fixed-top.is-sticky nav.navbar {
    padding-top: 10px;
    padding-bottom: 10px;
    transition: all ease-in-out 0.4s;
}

.header-main.scroll-fix.is-sticky nav.navbar {
    position: fixed;
    z-index: 999;
    padding-top: 12px;
    padding-bottom: 12px;
    top: 0;
    left: 0;
    width: 100%;
    animation-name: stickySlideDown;
}

.header-main .navbar .navbar-nav li.nav-item {
    margin: 0 15px;
}

.header-main li.nav-item a.nav-link {
    position: relative;
    color: #010101;
    font-weight: 500;
    z-index: 0;
    font-size: 16px;
}

.header-main li.nav-item .dropdown-menu {
    border: 0;
    border-radius: 10px;
    padding: 5px 0;
    box-shadow: 0 0.2rem 0.8rem rgb(0, 0, 0, 0.05);
    transition: all ease-in-out 0.4s;
}

.header-main li.nav-item .dropdown-menu .dropdown-item {
    position: relative;
}

.header-main li.nav-item .dropdown-menu .dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0px;
    height: 100%;
    background: #ffa416;
    transition: all ease-in-out 0.4s;
}

.header-main li.nav-item .dropdown-menu .dropdown-item:focus,
.header-main li.nav-item .dropdown-menu .dropdown-item:hover {
    color: #010101;
    background-color: transparent;
    font-weight: 600;
}

.header-main li.nav-item.dropdown .dropdown-menu li {
    padding: 5px 0;
    font-size: 15px;
}

.header-main li.nav-item.dropdown .dropdown-menu li + li {
    border-top: 1px solid #ededed;
}

.header-main li.nav-item .dropdown-menu .dropdown-item:hover::before {
    width: 100%;
    z-index: -1;
}

.header-main li.nav-item.btn-nav-item .nav-link::after {
    visibility: hidden;
}

.header-main li.nav-item.btn-nav-item .nav-link {
    color: #010101;
    padding: 8px 30px;
    font-weight: 700;
}

.header-main li.nav-item.btn-nav-item .btn-one > i {
    margin-left: 8px;
    margin-right: 0px;
}

.header-main li.nav-item.btn-nav-item .btn-one:hover {}

/**************************************
Page Header
**************************************/
.page-header-outer {
    position: relative;
    background: url(../img/resource/single-service-header.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    z-index: 0;
}

.page-header-outer.style-2 {
    background: url(../img/resource/page-header-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: left;
}

.page-header-inner {
    padding: 150px 0px 90px;
    position: relative;
}

.page-header-inner.style-2::after,
.page-header-inner.style-2::before {
    content: '';
    position: absolute;
    background: #05659e;
    opacity: 0.35;
    z-index: -1;
    transform: skewX(40deg);
}

.page-header-inner.style-2::before {
    top: 0;
    right: 8%;
    width: 50px;
    height: 100%;
}

.page-header-inner.style-2::after {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100%;
}

.page-header-outer.style-2 .page-header-inner::after {
    top: 0;
    right: 15%;
    left: auto;
}

.page-header-outer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.65;
    background-size: 6px;
    background-repeat: repeat;
    background-position: center center;
    z-index: -1;
}

.page-header-outer h1 {
    color: #fff;
    font-weight: 600;
    font-size: 3.5rem;
    margin-bottom: 0;
}

ul.breadcrumbs {
    font-size: 18px;
}

ul.breadcrumbs li a{
    color: #ffa416;
}

ul.breadcrumbs li,
ul.breadcrumbs li a:hover {
    color: #ffffff;
}

ul.breadcrumbs li i {
    margin-left: 8px;
}

.page-header-outer.style-2 p {
    color: #fff;
}

/**************************************
Home Slider 1
**************************************/
.home-jumbo {
    position: relative;
}

.home-jumbo .inner-cover {
    padding: 140px 0 70px;
    background-color: #ecf8ff;
    background-image: url(../img/banner/banner-2.jpg);
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.home-jumbo .inner-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000;
    opacity: 0.65;
    z-index: -1;
}

.home-jumbo h5 {
    font-weight: 600;
}

.home-jumbo .owl-theme .owl-dots {
    position: absolute;
    top: 50%;
    right: -55px;
    transform: translateY(-50%) rotate(90deg);
    margin: 0;
}

.home-jumbo .owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background-color: #fff;
}

.home-jumbo .owl-theme .owl-dots .owl-dot.active span {
    background-color: #05659e;
}

.home-jumbo.jubmo-style-2 .inner-cover {
    padding: 90px 0 90px;
}

.home-jumbo.jubmo-style-2 ul.theme-list li i {
    color: #fff;
}

.bg-shapes .circle-1,
.bg-shapes .circle-2,
.bg-shapes .circle-3 {
    position: absolute;
    top: 20%;
    left: 2%;
    width: 250px;
    height: 250px;
    background: #05659e;
    border-radius: 50%;
    opacity: 0.06;
}

.bg-shapes .circle-2 {
    width: 100px;
    height: 100px;
    right: 45%;
    left: auto;
    top: 70%;
}

.bg-shapes .circle-3 {
    width: 50px;
    height: 50px;
    right: 5%;
    left: auto;
    top: 20%;
}

#slider-particle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 92%;
}

.sale-img {
    position: relative;
}

.sale-label {
    font-family: 'Manjari', sans-serif;
    background: #ffa416;
    position: absolute;
    top: 10%;
    right: 10px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    color: #010101;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    padding: 15px 0px;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
}

.sale-label::before,
.sale-label::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    -webkit-transform: translate(-50%, -50%) scale(0);
    width: 95px;
    height: 95px;
    background: #05659e;
    z-index: -1;
    border-radius: 50%;
    opacity: 0.2;
    animation: bubblewave 3s ease-in-out infinite;
    -webkit-animation: bubblewave 3s ease-in-out infinite;
}

.sale-label::after {
    opacity: 0.25;
    width: 80px;
    height: 80px;
}

.sale-label span {
    display: block;
    font-size: 12px;
    font-weight: 600;
}

/**************************************
Home Slider 2
**************************************/
.simple-slider .owl-carousel .item {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.simple-slider .owl-carousel .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000;
    opacity: 0.55;
    z-index: -1;
}

.simple-slider .container {
    padding-top: 185px;
    padding-bottom: 100px;
}

.simple-slider .banner-subtitle {
    margin-bottom: 20px;
    color: #fff;
}

.simple-slider .banner-title {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.banner-title span {
    line-height: 1.2;
    background: #05659e;
    padding: 0 15px;
    border-radius: 15px;
    display: inline-block;
}

.simple-slider .owl-nav .owl-prev span,
.simple-slider .owl-nav .owl-next span {
    color: #fff;
    width: 70px;
    height: 70px;
    line-height: 66px;
    font-size: 30px;
}

.simple-slider .owl-nav .owl-prev {
    left: 15px;
    top: 42%;
}

.simple-slider .owl-nav .owl-next {
    right: 15px;
    top: 42%;
}

/**************************************
Home Slider 3
**************************************/
.wave-slider {
    position: relative;
}

.wave-slider .inner-cover {
    padding: 190px 0 60px;
    background: linear-gradient(to bottom, #fdfffe, #ebfbf5);
}

/**************************************
About Section
**************************************/
.counter.img-counter {
    width: 155px;
    text-align: center;
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    position: absolute;
    top: 35px;
    left: -25px;
}

.counter.img-counter .counter-inner {
    border: 2px solid #f3c405;
    padding: 10px 15px;
    border-radius: 12px;
}

.counter.counter-box-1 {
    text-align: center;
    padding: 15px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 7%);
}

.counter.counter-box-1 .counter-inner {
    border: 1px solid #ffa416;
    padding: 20px;
    border-radius: 12px;
}

.counter.img-counter .counter-icon {
    margin-bottom: 5px;
}

.counter-icon {
    font-size: 42px;
    display: block;
    text-align: center;
    color: #05659e;
    margin-bottom: 10px;
}

.counter.counter-box-1 .counter-icon {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 0;
}

.counter h3,
.counter h3 span.odometer {
    font-size: 48px;
    color: #010101;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1;
}

.counter.img-counter p {
    font-size: 14px;
}

.counter p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 18px;
}

/**************************************
Why Choose Us Section 
**************************************/
.img-icon-card .card-body {
    position: relative;
}

.img-icon-card .card-icon {
    margin: 0;
    position: absolute;
    top: -30px;
    right: 20px;
    width: 50px;
    min-width: 50px;
    height: 50px;
}

.img-icon-card .card-icon i {
    font-size: 24px;
    line-height: 29px;
}

/**************************************
Sevices Section 
**************************************/
.content-box-1 {
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.content-box-1 .content-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0 20px 20px;
    background: #ffffff;
    z-index: 0;
    transition: all ease-in-out 0.4s;
}

.content-box-1 .content-inner::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    transform: skewY(8deg);
    z-index: -1;
}

.content-box-1 .content-inner p {
    position: relative;
    margin-bottom: 0;
    opacity: 0;
    height: 0;
    transition: all ease-in-out 0.4s;
}

.content-box-1:hover .content-inner p {
    opacity: 1;
    height: 135px;
}

.content-box-1 .rm-link {
    position: absolute;
    top: -30px;
    right: 30px;
    background: #05659e;
    color: #fff;
    width: 45px;
    height: 45px;
    display: block;
    line-height: 45px;
    text-align: center;
    font-size: 20px;
    border-radius: 50%;
}

.content-box-2 .grad-icon {
    background: #05659e;
    width: 85px;
    height: 85px;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all ease-in-out 0.4s;
}

.content-box-2:hover .grad-icon {
    transform: scale(1.1);
}

.content-box-2 .content-inner p {
    margin-top: 5px;
    margin-bottom: 10px;
}

/**************************************
Service Section 
**************************************/
.service-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 6%);
    transition: all ease-in-out 0.4s;
    background-color: #fff;
}

.service-box:hover {
    transform: scale(1.02);
    box-shadow: 0.5rem 0.65rem 1rem rgb(0 0 0 / 6%);
}

.service-icon {
    width: 65px;
    background: #ffa416;
    padding: 15px;
    border-radius: 50%;
    margin-top: -70px;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
}

.service-txt {
    position: relative;
    padding: 20px 20px;
    z-index: 0;
    text-align: center;
}

.service-txt h5{
    margin-bottom: 0;
}

.service-box:hover .service-txt::before {
    height: 70%;
    width: 85%;
    opacity: 0.85;
}

.service-box:hover .btn-link {
    transform: scale(1.1);
    transform-origin: left center;
}

.service-box.service-style-2 {
    background-color: transparent;
    box-shadow: none;
    overflow: visible;
        margin: 0 5px;
}

.service-style-2 .service-front,
.service-style-2 .service-back {
    transition: all ease-in-out 0.4s;
    background-color: #fff;
    border-radius: 25px;
    border: 1px solid #e2e2e2;
}

.service-box.service-style-2:hover .service-front {
    transform: rotateX(180deg);
}

.service-box.service-style-2:hover .service-back {
    opacity: 1;
    transform: rotateX(0deg);
}

.service-style-2 .service-front {
    padding: 12px 12px 15px;
}

.service-style-2 .service-front .service-img {
    border-radius: 12px;
}

.service-style-2 .service-front .service-icon {
    margin-top: -40px;
    margin-left: -25px;
}

.service-style-2 .service-front h5 {
    margin-bottom: 0px;
    margin-top: 10px;
}

.service-style-2 .service-back.service-txt {
    position: absolute;
    top: 0;
    background: #fff;
    bottom: 0;
    left: 0;
    right: 0;
    transform: rotateY(-180deg);
    opacity: 0;
}


/**************************************
Portfolio Section 
**************************************/
.portfolio-outer {}

.portfolio-inner {
    width: 100%;
    margin: 0 auto;
}

.portfolio-inner .grid {
    text-align: center;
    margin-left: -15px;
    margin-right: -15px;
}

.grid-box {
    padding: 15px;
}

.grid-box img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: all ease-in-out 0.4s;
}

.grid-box > a {
    position: relative;
    display: block;
    border-radius: 25px;
    overflow: hidden;
}

.grid-box > a:hover img {
    transform: scale(1.1);
}

.grid-box > a:hover .project-info {
    opacity: 1;
    transform: scale(1);
}

.project-info {
    position: absolute;
    top: 42%;
    left: 0;
    right: 0;
    padding: 10px;
    background: #fff;
    z-index: 3;
    opacity: 0;
    transform: scale(1.5);
    transition: all ease-in-out 0.4s;
}

.project-info h5 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
}

.filters {}

.filters ul {
    list-style: none;
    padding: 20px 0;
}

.filters li {
    display: inline-block;
    padding: 8px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .05em;
}

.filters li:hover {
    color: #a6a6a6;
}

.filters li.active {
    color: #010101;
    border-radius: 15px;
    background: #ffa416;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

/**************************************
Project Single
**************************************/
.project-category {
    color: #05659e;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-features-list li.list-group-item {
    padding-left: 0;
    padding-right: 0;
}

.project-features-list h6 {
    color: #05659e;
}

.project-features-list p {
    margin-bottom: 0;
}

.post-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.post-nav a {
    font-weight: 500;
    display: block;
    padding: 15px 20px;
    background: #fbfbfb;
    border-radius: 15px;
}

.post-nav a:hover {
    color: #05659e;
}

.post-prev a i {
    margin-right: 5px;
}

.post-next a i {
    margin-left: 5px;
}

.post-prev a p,
.post-next a p {
    margin-bottom: 0;
    color: #010101;
    font-size: 18px;
    font-weight: 700;
}

/**************************************
Brands Section
**************************************/
.brand-box {
    padding: 0 20px;
}

.brand-box img {
    -webkit-filter: opacity(30%);
    filter: opacity(30%);
    transition: all ease-in-out 0.4s;
}

.brand-box:hover img {
    -webkit-filter: opacity(100%);
    filter: opacity(100%);
}

/**************************************
Our Process Section
**************************************/
.work-box {
    position: relative;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 25px;
    z-index: 0;
}

.work-box::before {
       content: "\f105";
    position: absolute;
    top: 15px;
    right: -30px;
    z-index: -1;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 28px;
    background: #ffa416;
    width: 64px;
    height: 64px;
    line-height: 34px;
    text-align: center;
    border-radius: 50%;
    z-index: 10;
    color: #010101;
    border: 15px solid #fff;
}

.our-process-outer.light-bg .work-box::before{
    border: 15px solid #f3fbff;
}

.work-box.no-line::before {
    visibility: hidden;
}

.work-icon {
    width: 70px;
    height: 70px;
    margin-right: 15px;
}

.work-count {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    color: #ffa416;
    display: block;
}

.work-count span {
    display: block;
    font-size: 15px;
    color: #010101;
}

.work-content {
    margin-top: 20px;
}

/**************************************
How We Work Section
**************************************/
ul.step-list {
    list-style: none;
    padding: 0;
}

.step-list li {
    display: flex;
    align-items: center;
}

.step-list li + li {
    margin-top: 30px;
}

.step-count {
    display: block;
    font-size: 24px;
    font-weight: 800;
    width: 45px;
    height: 45px;
    min-width: 45px;
    line-height: 45px;
    text-align: center;
    background: #05659e;
    border-radius: 50%;
    color: #fff;
    margin-right: 15px;
}

.step-txt p,
.step-txt h5 {
    margin-bottom: 0;
}

.step-txt h5 {
    font-size: 18px;
}

/**************************************
FAQ Section
**************************************/
.accordion-box {
    border: 1px solid #dfdfdf !important;
    border-radius: 15px !important;
    overflow: hidden;
}

.accordion-box + .accordion-box {
    margin-top: 12px;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    padding: 12px 15px;
    line-height: 1.5;
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
    background: #010101;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: #314856;
    box-shadow: none;
}

.accordion-button::after {
    flex-shrink: 0;
    width: auto;
    height: auto;
    margin-left: auto;
    content: "\f067";
    background-image: none !important;
    transition: transform .2s ease-in-out;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    background: #05659e;
    color: #fff;
    border-radius: 15px;
    padding: 3px 4px;
}

.accordion-box .accordion-body {
    background: #fff;
}

/**************************************
Team Section
**************************************/
.team-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.team-info {
    padding: 10px 15px;
    text-align: center;
    z-index: 5;
    border-radius: 0 0 15px 15px;
}

.team-style-1 .team-info {
    background: rgb(0 0 0 / 55%);
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

.team-style-2 .team-info {
    background: #fff;
}

.team-info p,
.team-info h5 {
    margin-bottom: 0;
}

.team-style-1 .team-info p,
.team-style-1 .team-info .h5 {
    color: #fff;
}

.team-style-2 .team-info p {
    color: #05659e;
}

.team-style-2 .team-info .h5 {
    color: #010101;
}

.team-info p,
.team-info .h5 {
    color: #fff;
}

.team-img-wrap {
    position: relative;
}

.team-img-wrap .social-bar {
    position: absolute;
    text-align: center;
    display: flex;
}

.team-style-1 .team-img-wrap .social-bar {
    flex-direction: column;
    right: 15px;
    top: 15px;
}

.team-style-2 .team-img-wrap .social-bar {
    justify-content: center;
    right: 0px;
    left: 0;
    bottom: 15px;
}

.team-img-wrap .social-bar > li {
    transform: scale(0);
    transition: all cubic-bezier(0.73, -0.09, 0.01, 0.98) 0.4s;
}

.team-style-1 .team-img-wrap .social-bar > li {
    margin-right: 0;
    margin-bottom: 10px;
}

.team-box:hover .social-bar li {
    transform: scale(1);
}

/**************************************
CTA Section
**************************************/
.cta-outer {
    background-image: url(../img/resource/dotted-map.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #222;
    padding: 60px 0;
}

.cta-outer p {
    color: #fff;
}

.cta-outer p {
    font-size: 18px;
}

.cta-style-2 .cta-inner {
    padding: 50px 0;
    border-radius: 0;
}

/**************************************
Pricing Section
**************************************/
.pricing-box {
    border-radius: 25px;
    overflow: hidden;
    border: 2px dotted #05659e;
    background: #fff;
}

.pricing-box.side-boxes {
    transform: scale(0.97);
}

.pricing-top {
    background: #ebfbf5;
    padding: 25px;
}

.pricing-top .anual-price {
    display: none;
}

.pricing-top .h1 {
    color: #05659e;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.pricing-inner {
    padding: 25px;
}

.pricing-box li.list-group-item {
    border: 0;
    padding: 5px 15px;
}

.toggle-section {
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #010101;
    margin-bottom: 35px;
}

.toggle-section #switch {
    display: none;
}

.toggle-section .switch-label {
    position: relative;
    cursor: pointer;
    width: 60px;
    height: 30px;
    background: #ffa416;
    border-radius: 50px;
    overflow: hidden;
    margin: 0 15px;
    transition: all 0.4s ease-in-out;
}

.toggle-section .switch-label::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    transition: all 0.4s ease-in-out;
}

.toggle-section #switch:checked + .switch-label::before {
    transition: all 0.4s ease-in-out;
    transform: translateX(30px);
}

/**************************************
Testimonial Section
**************************************/
.testimonial-outer {}

.testi-style-1 .owl-item.active.center {
    transform: scale(1) !important;
}

.testi-style-1 .testi-box {
    position: relative;
    padding: 20px;
    border-radius: 25px;
    background-color: #fff;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 6%);
    border: 1px solid #f3f3f3;
}

.testi-style-1 .user-box{
    margin-bottom: 0px;
    margin-top: 20px;
}

.testi-style-1 .user-box,
.testi-style-2 .user-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 2;
    position: relative;
    margin-bottom: 10px;
}

.testi-style-1 .user-box img,
.testi-style-2 .user-box img {
    max-width: 65px;
    border-radius: 50%;
    border: 2px dotted #05659e;
    margin-left: 20px;
    padding: 3px;
}

.testi-style-2 .user-info,
.testi-style-1 .user-info{
    text-align: right;
}

.testi-style-1 .user-box p {
    font-size: 14px;
}

.testi-style-1 p,
.testi-style-1 .user-box h6,
.testi-style-2 p,
.testi-style-2 .user-box h6 {
    margin-bottom: 0;
}

.testi-style-2 .testi-box span.fa-quote-right,
.testi-style-1 .testi-box span.fa-quote-right {
    position: absolute;
    top: -22px;
    left: 25px;
    line-height: 1;
    font-size: 18px;
    color: #fff;
    background:#05659e;
    display: inline-block;
    padding: 10px;
    border-radius: 50%;
}

.testi-style-1 .testi-box span.fa-quote-right {
    position: absolute;
    bottom: 30px;
    font-size: 14px;
    top: initial;
}


.testi-style-2 .testi-box > p {
    position: relative;
    background: #fff;
    padding: 25px 20px 20px;
    border-radius: 25px;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 6%);
    margin-bottom: 30px;
}

.testi-style-2 .testi-box > p::after {
        content: '';
    position: absolute;
    border-top: 20px solid #ffffff;
    border-left: 25px solid transparent;
    bottom: -20px;
    right: 30px;
}

/**************************************
Blog Section
**************************************/
.blogs-outer .inner-cover {
    background: linear-gradient(to top, #ffffff, #ecf8ff);
}

.blog-box {
    margin-bottom: 30px;
}

.blog-info {
    font-size: 14px;
    margin-top: 5px;
}

.blog-box .blog-info a {
    color: #6c757d;
}

.blog-box .blog-info i,
.blog-box .stats i {
    color: #05659e;
}

.link-btn {
    font-weight: 500;
}

.blog-box .card-footer .link-btn:hover {
    color: #010101;
}

/**************************************
Single Blog Section
**************************************/
.blog-detail-inner {
    padding: 30px 0 0;
}

.single-blog-info {
    font-weight: 500;
    margin-bottom: 10px;
}

.single-blog-info .col i {
    margin-right: 5px;
}

.blockquote {
    font-weight: 500;
    padding: 20px 35px;
    background: #ebfbf5;
    line-height: 1.8;
    border-left: 5px solid #05659e;
    border-radius: 0 15px 15px 0;
}

.blockquote-footer span {
    color: #05659e;
    font-weight: 600;
}

.blog-user {
    padding: 30px;
    background: #ebfbf5;
    border-radius: 15px;
    margin: 25px 0 50px;
}

.comments-list {
    padding: 10px 0;
}

.comments-list .comment-item {
    padding: 20px 0;
    border-bottom: 1px solid #dee2e6;
}

.blog-user .blog-user-img img,
.comments-list .comment-item .comment-user img {
    max-width: 100px;
}

.blog-user .blog-user-info,
.comments-list .comment-item .comment-info {
    margin-left: 25px;
}

.blog-sidebar,
.service-sidebar {
    padding-left: 20px;
}

.sidebar-card {
    margin-bottom: 35px;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 6%);
    border: 1px solid #ededed;
}

.product-sidebar .sidebar-card {
    box-shadow: none;
    border: none;
    border-radius: 0;
}

.product-sidebar .sidebar-card .card-body {
    padding: 0;
}

.sidebar-card .theme-title {
    margin-bottom: 0;
}


.sidebar-card .theme-title .title-deco {
    width: 120px;
}

.sidebar-card .card-body {
    padding: 35px;
}

.sidebar-card .list-group li {
    padding-left: 0;
    padding-right: 0;
}

.sidebar-card .list-group li a {
    color: #6b6b6b;
}

.sidebar-card .list-group li a span {
    float: right;
    font-weight: 500;
}

.sidebar-card .list-group li a:hover {
    color: #05659e;
}

.sidebar-card .list-group li i {
    margin-right: 5px;
    color: #05659e;
}

ul.box-list {
    list-style: none;
    padding-left: 0px;
}

ul.box-list li a {
    display: block;
    padding: 10px 20px;
    background: #f1f1f1;
    margin-bottom: 15px;
    border-radius: 10px;
    color: #010101;
    font-weight: 600;

}

ul.box-list li a:hover {
    background-color: #05659e;
    color: #fff;
}

ul.box-list li i {
    color: #ffa416;
    background: #010101;
    border-radius: 10px;
    line-height: 0.8;
    margin-right: 8px;
}

.blog-search .form-control {
    padding: 10px;
}

.blog-search .btn {
    padding: 12px 15px;
    border-radius: 8px;
    background: #05659e;
    border: 0;
}

.blog-recent-list .blog-recent-item {
    padding: 15px 0;
    display: flex;
    align-items: center;
}

.blog-recent-list .blog-recent-item .blog-recent-img img {
    width: 100px;
    height: auto;
    min-width: 100px;
    border-radius: 5px;
}

.blog-recent-list .blog-recent-item .blog-recent-info {
    margin-left: 15px;
}

.blog-tags .blog-tags-list {
    flex-wrap: wrap;
}

.blog-tags .blog-tags-list li {
    padding: 0;
    border: 0;
    margin: 5px 15px 5px 0;
}

.blog-tags .blog-tags-list li a {
    padding: 8px 10px;
    background: #010101;
    color: #fff;
    display: block;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1;
}

.blog-tags .blog-tags-list li a:hover {
    background: #05659e;
    color: #fff;
}

.sidebar-ads,
.product-sidebar .sidebar-card.sidebar-ads {
    position: relative;
    background-image: url(../img/resource/blog-ad.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 15px;
    z-index: 0;
    border-radius: 15px;
}

.sidebar-ads .card-body,
.product-sidebar .sidebar-ads.sidebar-card .card-body {
    border: 2px dashed #ffffff;
    border-radius: 15px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.sidebar-ads h4 {
    color: #fff;
    line-height: 1.6;
    font-weight: 800;
}

.sidebar-ads::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.price-slider .ui-slider-horizontal {
    height: .4em;
}

.price-slider .ui-slider-horizontal {
    margin-bottom: 15px;
    margin-top: 15px;
    width: 90%;
    margin-left: 10px;
}

.price-slider .ui-slider-horizontal .ui-slider-handle {
    top: -0.5em;
    border-radius: 50%;
    background: #f6f6f6 !important;
    border: 1px solid #c5c5c5 !important;
}

.price-slider .ui-widget-header {
    background: #05659e;
}

.price-slider .price-filter-outputs {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.price-slider .price-range-field {
    width: 40%;
    min-width: 40%;
    font-size: 14px;
    height: 26px;
    padding: 5px;
}

/**************************************
Contact Us
**************************************/

.contact-box {
    box-shadow: 0px 8px 16px rgb(0 0 0 / 15%);
    background: #fff !important;
    margin-top: -12px;
}

.form-floating {
    margin-bottom: 30px;
}

.form-floating > label {
    top: -3px;
    margin-bottom: 0px;
}

.form-check-label {
    margin-bottom: 0;
}

label {
    margin-bottom: 5px;
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #e7e7e7;
    font-size: 15px;
    padding: 10px 15px;
}

.form-control.form-control-sm,
.form-control-sm.form-select {
    padding: 4px 10px;
}

.input-group-text {
    border-radius: 8px 0 0 8px;
    padding: 10px 12px;
}

.form-check {
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #05659e;
    border-color: #05659e;
}

.form-check-input:focus {
    border-color: #00a54d;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(0 165 77 / 25%);
}

.form-floating textarea.form-control {
    height: 100px;
}

.form-control:focus,
.form-select:focus {
    border: 1px solid #05659e;
    box-shadow: none;
}

.contact-info-box {
    background-color: #ecf8ff;
    padding: 20px;
    border-radius: 20px;
}

.map-outer iframe {
    display: block;
    border: 2px dashed #05659e;
    border-radius: 20px;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
    padding: 10px;
}

/**************************************
Products 
**************************************/
.product-box {
    position: relative;
    background: #fff;
    padding: 15px;
    border-radius: 25px;
    border: 1px solid #e5e5e5;
}

.product-grid .product-box {
    margin-bottom: 35px;
}

.product-box > a {
    display: flex;
    align-items: center;
}

.product-img-wrap {
    position: relative;
    padding-right: 15px;
    max-width: 130px;
}

.product-img-wrap span.sale-badge {
    position: absolute;
    right: 0px;
    top: 0;
    background: #ffa416;
    font-size: 14px;
    color: #010101;
    font-weight: 500;
    line-height: 1;
    border-radius: 25px;
    padding: 19px 10px;
    box-shadow: 0 0.3rem 1rem rgb(0 0 0 / 10%);
}

.product-action {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 20px;
    right: -15px;
}

.product-action a {
    position: relative;
    width: 32px;
    height: 32px;
    line-height: 32px;
    background: #05659e;
    text-align: center;
    margin-bottom: 15px;
    border-radius: 50%;
    color: #fff;
    transition: all ease-in-out 0.4s;
    opacity: 0;
    transform: scale(0);
    box-shadow: 0 0.3rem 1rem rgb(0 0 0 / 10%);
}

.product-box:hover .product-action a {
    opacity: 1;
    transform: scale(1);
}

.product-action a:hover {
    background: #010101;
    color: #fff;
}

.product-action {
    text-align: center;
}

.product-info-wrap h5 {
    font-weight: 700;
    margin-bottom: 0;
}

.product-info-wrap h6 {
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #05659e;
}

.product-info-wrap h6 span {
    font-size: 75%;
    opacity: 0.6;
    text-decoration: line-through;
    margin-right: 5px;
}

.star-rating {
    direction: rtl;
    display: inline-block;
}

.star-rating.display-star i {
    margin: 0 3px;
    font-size: 16px;
    color: #d5d5d5;
}

.star-rating > input {
    display: none;
}

.star-rating > label {
    color: #d5d5d5;
}

.star-rating > input:checked ~ label {
    color: #ffca08;
}

.star-rating > input:hover ~ label {
    color: #ffca08;
}

.pagination .page-item.active .page-link {
    background-color: #05659e;
    border-color: #05659e;
    color: #fff;
}

.pagination .page-item .page-link {
    padding-left: 15px;
    padding-right: 15px;
    color: #010101;
    font-weight: 500;
    font-size: 16px;
    margin: 0 5px;
    border-radius: 8px;
}

.filter-top .form-control,
.filter-top .form-select {
    border: 1px solid #adadad;
}

.filter-top .form-control:focus,
.filter-top .form-select:focus {
    border: 1px solid #05659e;
}

.filter-search input.form-control {
    border-right: 0;
}

.filter-search .input-group-text {
    background: transparent;
    border-left: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-color: #adadad;
}

.filter-search input:focus + button,
.filter-search button.input-group-text:hover {
    border-color: #05659e;
    background-color: #05659e;
    color: #fff;
}

/**************************************
Product Details Section 
**************************************/
.slick-slider .slick-prev,
.slick-slider .slick-next {
    z-index: 100;
    font-size: 2.5em;
    height: 40px;
    width: 40px;
    margin-top: -20px;
    color: #B7B7B7;
    position: absolute;
    top: 50%;
    text-align: center;
    color: #000;
    opacity: .3;
    transition: opacity .25s;
    cursor: pointer;
}

.slick-slider .slick-prev:hover,
.slick-slider .slick-next:hover {
    opacity: .65;
}

.slick-slider .slick-prev {
    left: 0;
}

.slick-slider .slick-next {
    right: 0;
}

.product-images {
    width: 100%;
    margin: 0 auto;
}

.product-images li,
.product-images figure,
.product-images a,
.product-images img {
    display: block;
    outline: none;
    border: none;
}

.product-images .main-img-slider figure {
    margin: 0 auto;
    padding: 0 2em;
}

.product-images .main-img-slider figure a {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.product-images .main-img-slider a {
    background-color: #fff;
    border-radius: 15px;
}

.product-images .main-img-slider a img {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.product-images .thumb-nav {
    margin: 0 auto;
    padding: 20px 10px;
    max-width: 600px;
}

.product-images .thumb-nav.slick-slider .slick-prev,
.product-images .thumb-nav.slick-slider .slick-next {
    font-size: 28px;
    height: 20px;
    width: 26px;
    margin-top: -15px;
}

.product-images .thumb-nav li {
    display: block;
    margin: 0 10px;
    cursor: pointer;
}

.product-images .thumb-nav li img {
    display: block;
    width: 100%;
    max-width: 100px;
    margin: 0 auto;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    -webkit-transition: border-color .25s;
    -ms-transition: border-color .25s;
    -moz-transition: border-color .25s;
    transition: border-color .25s;
}

.product-images .thumb-nav li.slick-active.slick-current img {
    border-color: #05659e;
    border-width: 2px;
}

.product-images .thumb-nav li:hover,
.product-images .thumb-nav li:focus {
    border-color: #999;
}

.product-images .product-images .thumb-nav li.slick-current img {
    border-color: #d12f81;
}

.product-price {
    color: #05659e;
}

.product-price small {
    color: #010101;
    font-size: 70%;
}

.qty {
    display: flex;
    align-items: center;
}

.qty .minus,
.qty .plus {
    cursor: pointer;
    padding: 10px;
    font-size: 12px;
    background: #05659e;
    width: 30px;
    height: 30px;
    display: inline-block;
    line-height: 1;
    text-align: center;
    border-radius: 50%;
    color: #fff;
}

.qty input {
    height: 40px;
    width: 60px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
    font-weight: 600;
}

/**************************************
Cart Section 
**************************************/

.cart-table td,
.cart-table th {
    padding: 15px 20px;
    vertical-align: middle;
    font-size: 17px;
    font-weight: 600;
}

.cart-table .cart-product img {
    max-width: 70px;
    margin-right: 15px;
}

.cart-table .cart-qty {
    max-width: 70px;
}

/**************************************
Checkout Section 
**************************************/
.checkout-form {
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #dee2e6;
}

.checkout-form .form-check-label {
    margin-bottom: 0;
}

.checkout-form .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.checkout-form .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.checkout-form .input-group-text {
    border-radius: 8px 0 0 8px;
}

/**************************************
Login Section 
**************************************/
.login-card {
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 6%);
}

.login-tabs {
    padding: 35px;
}

.login-tabs .nav-tabs .nav-link {
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    color: #010101;
    background: rgb(0 175 82 / 12%);
}

.login-tabs .nav-tabs .nav-link.active {
    color: #495057;
    background: #fff;
}

.account-forms {
    border-right: 1px solid #dee2e6;
    padding-right: 35px;
}

/**************************************
Benefits Section 
**************************************/
.why-img-col {
    background-image: url(../img/resource/dots-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.why-solar-outer {
    position: relative;
    background-image: url(../img/resource/footer-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 0;
}

.why-solar-outer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #010101;
    opacity: 0.75;
    z-index: -1;
}

/**************************************
Footer 
**************************************/
.footer-main {
    z-index: 5;
    position: relative;
    background-image: url(../img/resource/dots.png);
    background-position: center center;
    background-color: #1a1a1a;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #010101;
    opacity: 0.3;
    z-index: -1;
}

.footer-inner {
    position: relative;
    padding: 60px 0;
    z-index: 100;
    color: #979797;
}

footer h3 {
    color: #fff;
}

footer .title-deco {
    max-width: 85px;
    margin-bottom: 15px;
}

footer p,
.footer-bottom p {
    margin-bottom: 0;
    color: #dfdfdf;
}

footer .logo-img {
    width: 220px;
    height: auto;
}

footer .widget-title {
    position: relative;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

ul.widget-list {
    list-style: none;
    padding-left: 0;
    line-height: 36px;
}

ul.widget-list li {
    display: flex;
    align-items: baseline;
}

ul.widget-list li a {
    color: #dfdfdf;
    font-size: 16px;
}

ul.widget-list li a:hover,
.link-btn:hover {
    color: #fff;
}

ul.widget-list li i {
    color: #05659e;
    font-size: 15px;
    margin-right: 8px;
}

footer .btn-one:hover {
    background-color: #fff;
    color: #010101 !important;
}

.footer-bottom {
    padding: 20px 12px;
    text-align: center;
    border-top: 1px solid #2e2e2e;
}

/**************************************
404 Error Page
**************************************/
.error-outer {
    background: linear-gradient(0deg, transparent, #ebfbf5, transparent);
}

.error-inner h1 {
    text-align: center;
    font-size: 15em;
    line-height: 1;
    font-weight: 600;
}

.cloud-letter {
    position: relative;
    display: inline-block;
}

.cloud-letter img {
    position: absolute;
    top: -20%;
    left: 50%;
    width: 90%;
    transform: translateX(-50%);
}


/**************************************
Mobile Responsive Media Queries 
**************************************/

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1200px;
    }
}

/**************************************
For All Device Greater Then 991px
**************************************/
@media (min-width: 992px) {
    .header-main li.nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0px;
    }
}

/**************************************
For All Device Less Then 991px
**************************************/
@media (max-width: 991px) {
    .btn-one {
        padding: 5px 20px;
        font-size: 15px;
        line-height: 1.7;
    }

    .btn-one.btn-lg {
        padding: 8px 30px;
        font-size: 17px;
    }

    .header-main li.nav-item .dropdown-menu .dropdown-item::before {
        display: none;
    }

    .header-main .navbar {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .header-main button.navbar-toggler {
        padding: 6px 8px;
        font-size: 18px;
        line-height: 0.8;
        border-color: #05659e;
        color: #010101;
    }

    .header-main button.navbar-toggler:hover,
    .header-main button.navbar-toggler:active,
    .header-main button.navbar-toggler:focus {
        border-color: #05659e;
        background-color: #05659e;
    }

    .header-main .navbar-collapse.collapsing .navbar-nav {
        display: block;
        position: fixed;
        top: 0;
        bottom: 0;
        left: -190px;
        transition: all 0.2s ease;
    }

    .header-main .navbar-collapse.show .navbar-nav {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        flex-direction: column;
        height: auto;
        width: 250px;
        padding: 0 15px;
        transition: left 0.35s ease;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        background-color: #ffffff;

    }

    .header-main .navbar-collapse.show {
        z-index: 999;
    }

    .header-main .navbar-collapse.show::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgb(0 0 0 / 25%);
        z-index: -1;
    }

    .header-main button.navbar-close {
        position: absolute;
        top: 10px;
        right: -40px;
        color: #fff;
        font-size: 24px;
        padding: 8px;
        border: 0 !important;
        background: #21c383;
    }

    .header-main li.nav-item a.nav-link::after {
        float: right;
        margin: 12px 10px;
    }

    .header-main li.nav-item a.nav-link.dropdown-toggle.show {
        padding-bottom: 0;
    }

    .header-main .navbar .navbar-nav li.nav-item {
        margin: 0;
    }

    .header-main .navbar .navbar-nav li.nav-item + li.nav-item {
        border-top: 1px solid #e4e4e4;
    }

    .header-main li.nav-item .dropdown-menu {
        padding: 0px 0 5px;
        box-shadow: none;
    }

    .header-main li.nav-item.btn-nav-item .btn-one {
        padding: 2px 15px;
        margin: 12px 0 10px;
        font-size: 16px;
    }

    .header-main .navbar.navbar-light .navbar-text {
        display: none;
    }
}

/**************************************
For All Mobiles
**************************************/
@media only screen and (min-width: 300px) and (max-width: 691px) {

    .h1,
    h1 {
        font-size: 2rem;
        font-weight: 800;
    }

    .h5,
    h5 {
        font-size: 1.15rem;
    }

    .h6,
    h6 {
        line-height: 1.5;
    }

    .w-75 {
        width: 90% !important;
    }

    ul.theme-list.three-row-list li {
        width: 100%;
    }

    .section-space {
        padding: 75px 0;
    }

    .inner-cover {
        padding: 65px 0;
    }

    .start-margin {
        margin-top: 70px;
    }

    .theme-title h2 {
        font-size: 1.8rem;
    }

    .theme-title .w-75 {
        width: 100% !important;
    }

    .contact-bar {
        text-align: center;
    }

    .contact-bar li {
        margin-left: 0;
    }
    
    .header-main.style-2{
        margin: 0;
    }

    .header-main.style-2 .top-bar {
        display: none;
    }

    .navbar-brand > img {
        width: 140px;
    }

    .home-jumbo .inner-cover {
        padding: 130px 0 50px;
    }

    .simple-slider .container {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .simple-slider .banner-title {
        font-size: 2.1rem;
        line-height: 1.5;
    }

    .simple-slider .banner-subtitle {
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .wave-slider .inner-cover {
        padding: 150px 0 60px;
    }

    .page-header-outer {}

    .page-header-inner {
        padding: 60px 0px 70px;
    }

    .page-header-outer h1 {
        font-size: 2.7rem;
    }

    .content-box-1:hover .content-inner p {
        height: auto;
    }

    .counter.img-counter {
        bottom: 25px;
        right: 35px;
    }

    .counter.img-counter .counter-icon {
        font-size: 32px;
    }

    .counter.img-counter h3,
    .counter.img-counter h3 span.odometer {
        font-size: 40px;
    }

    .work-box::before {
        display: none;
    }

    .portfolio-outer {
        background-size: 180%;
    }

    .filters ul {
        display: flex;
        flex-direction: column-reverse;
    }

    .page-portfolio .filters ul {
        flex-direction: column;
    }

    .filters li {
        margin: 3px 0;
    }

    .testimonial-outer {
        background-size: 150%;
    }

    .cta-inner {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .cta-outer p {
        font-size: 15px;
    }

    .post-nav {
        flex-direction: column;
    }

    .post-nav .post-next {
        margin-top: 20px;
    }

    .blog-user .blog-user-info,
    .comments-list .comment-item .comment-info {
        margin-left: 0;
    }

    .blog-sidebar,
    .service-sidebar {
        padding-left: 0px;
    }

    .sidebar-card .card-body {
        padding: 25px;
    }

    .pricing-box.side-boxes {
        transform: scale(1);
    }

    .cart-table .cart-product img {
        max-width: 55px;
        margin-right: 10px;
    }

    .checkout-form {
        padding: 15px;
    }

    .login-tabs {
        padding: 25px;
    }

    .login-tabs .nav-tabs .nav-link {
        font-size: 16px;
        padding: 10px 35px;
    }

    .account-forms {
        border-right: none;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .error-inner h1 {
        font-size: 7rem;
    }

    footer .logo-img {
        width: 160px;
    }

    footer .widget-title {
        font-size: 1.3rem;
    }
}


/**************************************
For All Medium Devices (Tablet, phablet etc.)
**************************************/

@media only screen and (min-width: 692px) and (max-width: 991px) {

    .h1,
    h1 {
        font-size: 2.3rem;
        font-weight: 800;
    }

    .h5,
    h5 {
        font-size: 1.15rem;
    }

    .h6,
    h6 {
        line-height: 1.5;
    }

    .section-space {
        padding: 80px 0;
    }

    .theme-title h2 {
        font-weight: 800;
        font-size: 2.2rem;
    }

    .navbar-brand > img {
        width: 165px;
    }

    .header-main .navbar {
        padding-left: 30px;
        padding-right: 30px;
    }

    .home-jumbo .inner-cover {
        padding: 130px 0 50px;
    }

    .simple-slider .container {
        padding-top: 100px;
        padding-bottom: 90px;
    }

    .simple-slider .banner-title {
        font-size: 2.8rem;
    }

    .wave-slider .inner-cover {
        padding: 160px 0 60px;
    }

    .counter.img-counter {
        right: 45px;
    }

    .work-box.no-md-line::before {
        visibility: hidden;
    }

    .filters ul {
        display: flex;
        flex-direction: row-reverse;
    }
    
    .page-portfolio .filters ul{
        flex-direction: row;
    }

    .page-header-inner {
        padding: 70px 0px;
    }
    
    .page-header-outer h1{
        font-size: 3rem;
    }

    .content-box-1:hover .content-inner p {
        height: auto;
    }

    .testimonial-outer {
        background-size: 65%;
    }

    .testi-style-1 .owl-item {
        transform: scale(1) !important;
    }

    .blog-sidebar,
    .service-sidebar {
        padding-left: 0px;
    }

    .pricing-inner {
        padding: 15px;
    }
    
    .checkout-form {
        padding: 20px;
    }

    .error-inner h1 {
        font-size: 10rem;
    }

}
