/*************************
Main Style Sheet v1.0.0
Added by Popway Innovation
******************/



/**************************************
This is Base Colors Of Theme For Easy to use
    
    Dark Blue: #002c4a
    ornage : #feb12e
    ornage gradient: linear-gradient(45deg, #feb12e, #e59103)
    Black: #010101
    Dark Blue gradiant: linear-gradient(45deg, #002c4a, #005a97)
    Light Bg: #ebfbf5
    Light Gradient (#fdfffe, #ebfbf5)
    Text Color: #626262

**************************************/

/**************************************
Common Elements
**************************************/
html {
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    color: #979797;
    font-size: 17px;
    line-height: 30px;
    overflow-x: hidden;
}

body.scroll-pad {
    padding-top: 70px;
}

/****************
Headings
*****************/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: 'Poppins', sans-serif;
    color: #2e2e2e;
    font-weight: 600;
}

.h1,
h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
}

.display-2 {
    font-weight: 600;
}

/****************
Lists
*****************/
dl,
ol,
ul {
    margin-bottom: 0;
}

/****************
Links
*****************/
a {
    color: #feb12e;
    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: #002c4a !important;
}

.base-bg {
    background-color: #002c4a !important;
}

.second-txt {
    color: #feb12e !important;
}

.second-bg {
    background-color: #010101 !important;
}

.light-bg {
    background-color: #ebfbf5 !important;
}

.bg-grad {
    background: linear-gradient(45deg, #093456, #07538b);
}

.no-bg {
    background: none !important;
}

.bg-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    opacity: 0.09;
}

.bg-overlay {
    position: relative;
    z-index: 0;
}

.bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.55;
    z-index: -1;
}

/****************
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: #002c4a;
    font-weight: 500;
    margin-bottom: 5px;
    display: inline-block;
    position: relative;
}

.theme-title h5::after {
    content: '';
    right: -100px;
    position: absolute;
    top: 50%;
    width: 80px;
    height: 3px;
    background: #feb12e;
    border-radius: 0px 60% 60% 0px;
}

.theme-title.center-title {
    text-align: center;
    position: relative;
    padding-bottom: 5px;
}

.theme-title.center-title h5::after {
    visibility: hidden;
}

/*
.theme-title.center-title::after {
    content: '';
    left: 50%;
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #feb12e;
    border-radius: 50%;
}
*/

.theme-title h2 {
    font-weight: 800;
    font-size: 2.4rem;
    line-height: 1.4;
    color: #2e2e2e;
}

.theme-title .bottom-border {
    border-bottom: 4px solid #feb12e;
    padding-bottom: 8px;
}

.theme-title-2 {
    position: relative;
    z-index: 0;
    text-align: center;
    padding-bottom: 15px;
}

.theme-title-2.left {
    text-align: left;
}

.theme-title-2::before {
    content: '';
    left: 50%;
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #feb12e;
    border-radius: 50%;
}

.theme-title-2.left::before {
    left: 0%;
    transform: none;
    border-radius: 0 50% 50% 0;
}

.sepretor {
    display: block;
    width: 50px;
    height: 3px;
    background: #feb12e;
}

/****************
Buttons Style
*****************/
button,
button:focus,
button:hover {
    outline: none;
    border: none;
}

.btn-one {
    position: relative;
    background: linear-gradient(45deg, #093456, #07538b);
    padding: 10px 35px;
    color: #fff !important;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.7;
    border-radius: 30px;
    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: 16px;
    line-height: 1.5;
}

.btn-one.btn-xs {
    padding: 3px 15px;
    font-size: 15px;
}

.btn-one.btn-lg {
    padding: 10px 36px;
    font-size: 18px;
}

.btn-one.alt-btn {
    background: linear-gradient(45deg, #444444, #010101);
    color: #fff !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.hover-2:hover {
    color: #010101 !important;
}

.btn-one::before {
    content: "";
    position: absolute;
    width: 102%;
    height: 100%;
    left: -102%;
    background: linear-gradient(45deg, #444444, #010101);
    text-align: center;
    border-radius: 30px;
    top: 0%;
    transition: all ease-in-out 0.4s;
    z-index: -1;
}

.btn-one.alt-btn::before {
    background: linear-gradient(45deg, #feb12e, #e59103);
}

.btn-one.hover-2::before {
    background: #fff;
}

.btn-one:hover::before {
    left: -1px;
}

/****************
cards
*****************/
.card {
    border-radius: 15px;
    overflow: hidden;
}

.card-icon {
    background: linear-gradient(45deg, #feb12e, #e59103);
    height: 60px;
    width: 60px;
    min-width: 60px;
    padding: 10px;
    border-radius: 15px;
    text-align: center;
}

.card-icon.card-icon-2 {
    background: linear-gradient(45deg, #002c4a, #005a97);
}

.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: transparent;
}

.card-style-1 .card-body {
    padding: 0;
}

.card-style-2 .card-icon {
    margin: 0 auto 15px;
    height: 75px;
    width: 75px;
    min-width: 75px;
    padding: 15px;
}

.card-style-3 {
    margin-top: -15px;
    padding: 18px 0;
    transition: all ease-in-out 0.4s;
}

.card-style-3:first-child {
    z-index: 4;
}

.card-style-3:nth-child(2) {
    z-index: 3;
}

.card-style-3:nth-child(3) {
    z-index: 2;
}

.card-style-3 .card-body {
    background: transparent;
    padding-top: 25px;
    padding-bottom: 25px;
}

.card-style-3:hover {
    z-index: 9;
    transform: scale(1.04);
}

.card-style-3:hover h5 {}

.card-style-3 .card-text {
    font-weight: 500;
}

.card-style-3:hover .card-text {}

.card-style-2 .card-body {
    padding-top: 25px;
    padding-bottom: 25px;
}

/****************
Theme List
*****************/
ul.theme-list {
    list-style: none;
    padding-left: 0;
}

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: 3px;
}

ul.theme-list li i {
    color: #002c4a;
    margin-right: 8px;
}

ul.theme-list.list-lg li {
    display: flex;
    align-items: flex-start;
}

ul.theme-list.list-lg {
    font-size: 22px;
    color: #222;
}

ul.theme-list.list-lg li + li {
    margin-top: 30px;
}

ul.theme-list.list-lg li i {
    font-size: 30px;
    margin-right: 8px;
}

.table-sm {
    font-size: 15px;
}

.table-sm > :not(caption) > * > * {
    padding: 0.25rem 0.85rem;
}


/****************
Blob Image
*****************/
.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%;
}

.theme-img {
    position: relative;
    z-index: 0;
}

.theme-img img {
    border-radius: 25px;
}

.theme-img::before,
.theme-img::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 20px;
    transform: rotate(45deg);
    background: white;
    z-index: 2;
}

.theme-img::before {
    top: 15px;
    right: -25px;
}

.theme-img::after {
    bottom: 15px;
    left: -25px;
}

.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 !important;
}

.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: linear-gradient(45deg, #feb12e, #e59103);
    line-height: 36px;
    display: block;
    padding: 0;
    color: #fff;
    text-align: center;
    border-radius: 12px;
}

.social-bar.style-2 > li > a:hover {
    background: linear-gradient(45deg, #444444, #010101);
    color: #ffffff;
}

/***************
Back To Top
************/
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 42px;
    text-align: center;
    background: linear-gradient(45deg, #093456, #07538b);
    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 {
    border-color: #feb12e;
    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: 20px;
    height: 5px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #feb12e;
}

/**************************************
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;
}

.loader-stroke {
    fill: none;
    stroke: #002c4a;
    stroke-width: 18.8px;
    stroke-dasharray: 5000;
    stroke-dashoffset: 5000;
    -webkit-animation: writeName 2.2s ease-in-out infinite;
    animation: writeName 2.2s ease-in-out infinite;
}

.preloader-icon-outer {
    height: 50px;
    width: auto;
}

.preloader-icon {
    width: 8px;
    height: 40px;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    background: #feb12e;
    color: #FFF;
    -webkit-animation: scaleLines 0.3s 0.3s linear infinite alternate;
    animation: scaleLines 0.3s 0.3s linear infinite alternate;
}

.preloader-icon::after,
.preloader-icon::before {
    content: "";
    width: 8px;
    height: 40px;
    border-radius: 4px;
    background: #feb12e;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    -webkit-animation: scaleLines 0.3s 0.45s linear infinite alternate;
    animation: scaleLines 0.3s 0.45s linear infinite alternate;
}

.preloader-icon:before {
    left: -20px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.preloader-txt {
    font-size: 20px;
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

/****************
Preloader Keyframes
*****************/
@-webkit-keyframes scaleLines {
    0% {
        height: 48px;
    }

    100% {
        height: 4.8px;
    }
}

@keyframes scaleLines {
    0% {
        height: 48px;
    }

    100% {
        height: 4.8px;
    }
}

@-webkit-keyframes writeName {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes writeName {
    100% {
        stroke-dashoffset: 0;
    }
}

/**************************************
Main Header
**************************************/
.top-bar {
    width: 100%;
    background-color: #010101;
    padding-top: 8px;
    padding-bottom: 8px;
}

.contact-bar li {
    margin-right: 15px !important;
}

.contact-bar li > a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.contact-bar li > a:hover {
    color: #ffffff;
}

.contact-bar li.highlight-item > a {
    font-weight: 600;
    color: #feb12e;
}

.contact-bar li > a > i {
    color: #feb12e;
    margin-right: 10px;
}

.navbar-brand > img {
    width: 160px;
    height: auto;
    transition: all ease-in-out 0.4s;
}

header.header-main.is-sticky .navbar-brand > img {
    width: 140px;
}

/****************
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: 0px;
    padding-bottom: 0px;
    animation-duration: 0.5s;
    animation-name: stickySlideUp;
}

.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: 15px;
    padding-bottom: 15px;
    transition: all ease-in-out 0.4s;
}

.header-main.scroll-fix.is-sticky nav.navbar {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: calc(100% - 40px);
    animation-name: stickySlideDown;
    margin: 0 20px;
    border-radius: 0 0 40px 40px;
}

.header-main .navbar .navbar-brand {
    padding: 18px 0;
}

.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;
    padding: 25px 0;
    font-size: 18px;
}

.header-main.is-sticky li.nav-item a.nav-link {
    padding: 20px 0;
}

.header-main.is-sticky .navbar .navbar-brand {
    padding: 15px 0;
}

.header-main .navbar .navbar-text {
    padding: 18px 0;
}

.header-main.is-sticky .navbar .navbar-text {
    padding: 12px 0;
}

.header-main li.nav-item .dropdown-menu {
    border: 0;
    border-top: 3px solid #002c4a;
    border-radius: 0 0 10px 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: 50%;
    left: 0;
    transform: translateY(-3px);
    width: 0px;
    height: 6px;
    background: #feb12e;
    border-radius: 0 50% 50% 0;
    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;
    padding-left: 25px;
}

.header-main li.nav-item.dropdown .dropdown-menu li {
    padding: 5px 0;
    font-size: 16px;
    line-height: 1.2;
}

.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: 10px;
}

.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: 0px;
    margin-right: 8px;
}

.header-main li.nav-item.btn-nav-item .btn-one:hover {
    background-color: #010101;
    color: #fff;
}

/**************************************
Page Header
**************************************/
.page-header-outer {
    position: relative;
    padding: 100px 0;
    background: url(../img/resource/page-header-2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    z-index: 0;
    border-radius: 0 0 25% 25%;
    overflow: hidden;
}

.page-header-outer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.55;
    z-index: -1;
}

.page-header-outer h1 {
    color: #fff;
}

ul.breadcrumbs li,
ul.breadcrumbs li a:hover {
    color: #ffffff;
}

ul.breadcrumbs li i {
    margin-left: 8px;
}

/**************************************
Home Slider 1
**************************************/
.home-jumbo .inner-cover {
    padding: 130px 0 10px;
    background: linear-gradient(to bottom, #fdfffe, #ebfbf5);
}

.home-jumbo h5 {
    font-weight: 500;
}

.owl-nav .owl-next span{
    margin-right: 80px;
}
.owl-nav .owl-prev span{
    margin-left: 80px;
}

/**************************************
Home Slider 2
**************************************/
.bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.bg-lines::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 25%;
    border: 1px solid rgb(255 255 255 / 18%);
    background: rgb(255 255 255 / 5%);
    z-index: -1;
}

.bg-lines::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25%;
    width: 25%;
    border: 1px solid rgb(255 255 255 / 18%);
    background: rgb(255 255 255 / 5%);
    z-index: -1;
}

.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: 120px;
    padding-bottom: 180px;
}

.simple-slider .banner-subtitle {
    margin-bottom: 10px;
    color: #fff;
}

.simple-slider .banner-title {
    font-size: 3.5rem;
    line-height: 1.4;
    font-weight: 800;
    color: #fff;
}

.simple-slider p {
    font-size: 18px;
    font-weight: 500;
}

.main-banner {
    padding: 30px 0;
    background-image: url(../img/resource/main-banner-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
}

.main-banner-txt{
    padding: 75px 0 75px 45px;
}

.home-jumbo .main-banner-txt {
    min-height: 455px;
}

.main-banner .banner-title {
    font-size: 2.8rem;
    line-height: 1.4;
    font-weight: 800;
    color: #fff;
}

.simple-banner {
    position: relative;
    z-index: 0;
    padding: 140px 0 175px;
    background-image: url(../img/resource/simple-banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.simple-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.35;
    z-index: -1;
}

/*
.banner-title span {
    line-height: 1.2;
    background: #feb12e;
    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: 60px;
    height: 60px;
    line-height: 58px;
}

.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);
}

#slider-particle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 93%;
}

/**************************************
About Section
**************************************/
.counter-icon {
    font-size: 28px;
    background: linear-gradient(45deg, #002c4a, #005a97);
    border-radius: 15px;
    width: 55px;
    height: 55px;
    display: block;
    line-height: 58px;
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
}

.counter h3,
.counter h3 span {
    font-size: 38px;
    line-height: 1.1;
    color: #010101;
    font-weight: 600;
    margin-bottom: 0;
}

.counter p {
    margin-bottom: 0;
    font-weight: 500;
}

.counter-outer .counter-box-2 {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.counter-outer.nomove_counter .counter-box-2 {
    margin-top: 0px;
}

.counter-box-2 {
    padding: 20px;
    border-radius: 15px;
    background: #fff;
}

.counter-box-2 .counter-icon {
    margin-right: 15px;
    width: 70px;
    min-width: 70px;
    height: 70px;
    line-height: 66px;
    margin-bottom: 0;
}

.counter-box-2 .counter-icon img {
    width: 55px;
}

.counter-box-2 p {
    font-size: 20px;
    color: #222;
    margin-top: 15px;
}

.counter-box-3 {
    background: linear-gradient(45deg, #feb12e, #e59103);
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}

.img-counter-box {
    position: relative;
}

.img-counter-box .counter-box-3 {
    position: absolute;
    bottom: 50px;
    left: -30px;
}

.counter-box-3 h3,
.counter-box-3 h3 span {
    color: #fff;
}

.intro-panel {
    margin-bottom: -100px;
}

.service-box {
    position: relative;
}

.service-box img {
    border-radius: 20px;
    border: 2px solid #838383;
}

.service-box h3 {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 0;
    background: rgb(0 0 0 / 25%);
    font-size: 30px;
}

.feature-box {
    padding: 20px;
    border-radius: 15px;
    background: #fff;
    border: 2px solid #dfdfdf;
    margin-top: -80px;
    z-index: 2;
    position: relative;
}

.product-box {
    text-align: center;
}

.product-img {
    border: 1px solid #222;
    padding: 20px;
    border-radius: 30px;
    max-width: 300px;
    margin: 0 auto 15px;
}

.product-img img {
    max-width: 150px;
}

/**************************************
Why Choose Us Section 
**************************************/
.why-us-outer {
    background-image: url(../img/resource/why-us-2.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.light-txt .h1 {
    color: #fff;
}

.light-txt p {
    color: #f6f6f6;
}

.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: #feb12e;
    color: #fff;
    width: 45px;
    height: 45px;
    display: block;
    line-height: 45px;
    text-align: center;
    font-size: 20px;
    border-radius: 50%;
}

.content-box-2 {
    border: 1px solid #d3d3d3;
    padding: 25px;
    border-radius: 20px;
}

.content-box-2 .grad-icon {
    background: linear-gradient(45deg, #002c4a, #005a97);
    width: 75px;
    height: 75px;
    padding: 18px;
    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;
}

.mgs-box {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #d1d1d1;
    border-radius: 20px;
    margin-bottom: 35px;
}

.mgs-info {
    padding-left: 20px;
}

.mgs-info h5 {
    font-size: 20px;
}

.mgs-img {}

.certi-logo {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 20px;
}

/**************************************
Portfolio Section 
**************************************/
.portfolio-outer {
    background-image: url(../img/resource/left-wave.svg);
    background-size: 80%;
    background-position: top left;
    background-repeat: no-repeat;
}

.portfolio-inner {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.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: 15px;
    overflow: hidden;
}

.grid-box > a:hover img {
    transform: scale(1.1);
}

.grid-box > a:hover .project-info {
    top: 15px;
    opacity: 1;
    transform: scale(1);
}

.project-info {
    position: absolute;
    top: -10%;
    left: 15px;
    right: 15px;
    padding: 10px;
    background: #fff;
    z-index: 3;
    border-radius: 15px;
    opacity: 0;
    transform: scale(0);
    transition: all ease-in-out 0.4s;
}

.project-info h5 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
}

.filters {
    width: 100%;
    text-align: center;
}

.filters ul {
    list-style: none;
    padding: 20px 0;
}

.filters li {
    display: inline-block;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .05em;
}

.filters li:hover {
    color: #a6a6a6;
}

.filters li.active {
    color: #fff;
    border-radius: 15px;
    background: linear-gradient(45deg, #feb12e, #e59103);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

/**************************************
Project Single
**************************************/
.project-category {
    color: #feb12e;
    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: #feb12e;
}

.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: #feb12e;
}

.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%);
}

/**************************************
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: linear-gradient(45deg, #feb12e, #e59103);
    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 #e3e3e3 !important;
    border-radius: 10px !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: linear-gradient(45deg, #444444, #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: #1dbd7e;
    color: #fff;
    border-radius: 5px;
    padding: 2px 4px;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
}

.accordion-box .accordion-body {
    background: #fff;
}

/**************************************
Team Section
**************************************/
.team-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.team-info {
    position: relative;
    padding: 25px 15px 15px;
    background: #ffffff;
    margin-top: -40px;
    text-align: center;
    z-index: 5;
    border: 1px dashed #feb12e;
    border-radius: 45% 45% 15px 15px;
}

.team-info p,
.team-info h5 {
    margin-bottom: 0;
}

.team-info p {
    color: #feb12e;
}

.team-box .social-bar {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    text-align: center;
    transition: all cubic-bezier(0.73, -0.09, 0.01, 0.98) 0.4s;
}

.team-box:hover .social-bar {
    bottom: 110px;
}

.team-box .social-bar li:first-child,
.team-box .social-bar li:last-child {
    transform: translateY(8px);
}

/**************************************
CTA Section
**************************************/
.cta-inner {
    padding: 30px 50px;
    background: linear-gradient(45deg, #002c4a, #003b63);
    border-radius: 60px 15px;
}

.cta-outer h3,
.cta-outer p {
    color: #fff;
}

.cta-outer p {
    font-size: 20px;
}

.cta-style-2 {
    position: relative;
    z-index: 0;
}

.cta-style-2 .cta-inner {
    padding: 75px 0;
    border-radius: 0;
}

/**************************************
Pricing Section
**************************************/
.pricing-box {
    border-radius: 15px;
    overflow: hidden;
}

.pricing-box.side-boxes {
    transform: scale(0.97);
}

.pricing-top {
    background: #ebfbf5;
    padding: 25px;
    border-radius: 0 0 45% 45%;
}

.pricing-top .anual-price {
    display: none;
}

.pricing-top .h1 {
    color: #feb12e;
    font-size: 3.5rem;
}

.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: linear-gradient(45deg, #feb12e, #e59103);
    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 {
    background-image: url(../img/resource/right-wave.svg);
    background-size: 40%;
    background-position: top right;
    background-repeat: no-repeat;
}

.testi-style-1 .owl-item {
    transform: scale(0.9) !important;
}

.testi-style-1 .owl-item.active.center {
    transform: scale(1) !important;
}

.testi-style-1 .testi-box,
.testi-style-2 .testi-box {
    position: relative;
    padding: 20px;
    border-radius: 15px;
    background-color: #fff;
    z-index: 2;
    overflow: hidden;
}

.testi-style-1 .testi-box::after {
    content: '';
    position: absolute;
    top: -25%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 50%;
    background: #ebfbf5;
    z-index: -1;
    border-radius: 50%;
}

.testi-style-1 .user-box {
    z-index: 2;
    position: relative;
    margin-bottom: 10px;
}

.testi-style-1 .user-box img {
    max-width: 75px;
    border-radius: 50%;
    border: 3px solid #feb12e;
    margin: 15px auto 10px;
}

.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-1 .testi-box span.fa-quote-left {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 40px;
    color: #feb12e;
}


.testi-style-2 .user-box {
    margin-top: 20px;
}

.testi-style-2 .user-info {
    margin-left: 15px;
}

.testi-style-2 .user-box img {
    max-width: 65px;
    border-radius: 50%;
    border: 3px solid #feb12e;
}

.testi-style-2 .testi-box span.fa-quote-right {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 24px;
    color: #feb12e;
}

.testi-style-2 .testi-box::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -70px;
    width: 150px;
    height: 150px;
    background: #ebfbf5;
    z-index: -1;
    border-radius: 50%;
}

/**************************************
Blog Section
**************************************/
.blogs-outer .inner-cover {
    background: linear-gradient(to top, #ffffff, #ebfbf5);
}

.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: #feb12e;
}

.link-btn {
    font-weight: 500;
    border-bottom: 1px solid #002c4a;
}

.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 #feb12e;
    border-radius: 0 15px 15px 0;
}

.blockquote-footer span {
    color: #feb12e;
    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;
}

.sidebar-card .theme-title {
    margin-bottom: 0;
}

.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:hover {
    color: #feb12e;
}

.sidebar-card .list-group li i {
    margin-right: 5px;
    color: #feb12e;
}

.blog-search .form-control {
    padding: 10px;
}

.blog-search .btn {
    padding: 12px 15px;
    border-radius: 8px;
    background: #feb12e;
    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: 8px 15px 8px 0;
}

.blog-tags .blog-tags-list li a {
    padding: 2px 10px;
    background: #feb12e;
    color: #fff;
    display: block;
    border-radius: 8px;
}

.blog-tags .blog-tags-list li a:hover {
    background: #010101;
    color: #fff;
}

.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;
}

.sidebar-ads .card-body {
    border: 1px solid #feb12e;
    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;
}

/**************************************
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 {
    line-height: 1.3;
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #e7e7e7;
}

.form-floating textarea.form-control {
    height: 100px;
}

.form-control:focus,
.form-select:focus {
    border: 1px solid #feb12e;
    box-shadow: none;
}

.map-outer {
    margin-bottom: -65px;
}

/***********Form Submit Elements**********/
.error-handling-messages .success-msg,
.error-handling-messages .error-msg {
    padding: 3px 15px;
    border: 2px solid;
    color: #222;
    display: none;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 600;
}

.error-handling-messages .success-msg {
    background: rgb(106 189 79 / 9%);
    border-color: #6abd4f;
    color: #6abd4f;
}

.error-handling-messages .error-msg {
    background: rgb(254 1 1 / 9%);
    border-color: #fe0101;
    color: #fe0101;
}

label.error.wobble-error {
    display: block;
    width: 100%;
    margin-bottom: 0;
    color: #fe0101;
    font-size: 13px;
    line-height: 1;
    margin-top: 5px;
    bottom: -18px;
    left: 5px;
    top: initial;
    height: auto;
    padding: 0;
    transform: none !important;
}

.custom-control label.error.wobble-error {
    position: absolute;
    white-space: nowrap;
    bottom: -12px;
    left: 0px;
}

.form-loader {
    display: none;
    padding: 10px 15px;
    font-size: 18px;
    color: #002c4a;
}

@keyframes refresh {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.form-loader i {
    animation: refresh 1s linear infinite;
    display: inline-block;
}

/***********404 page ********/
#error-middle {
    text-align: center;
    top: 48%;
    position: absolute;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
}

#error-middle h1 {
    font-size: 175px;
    line-height: 1;
    margin-bottom: 20px;
    color: #002c4a;
}

#error-middle h2 {
    font-size: 28px;
}

#error-middle a {
    margin: 50px 0 0;
}

/**************************************
Footer 
**************************************/
.footer-main {
    z-index: 5;
    position: relative;
}

.footer-inner {
    position: relative;
    padding: 70px 0 60px;
    z-index: 100;
    background: #1e1e1e;
    color: #979797;
}

footer h3 {
    color: #fff;
}

footer p,
.footer-bottom p {
    margin-bottom: 0;
}

footer .logo-img {
    width: 180px;
    height: auto;
}

footer .widget-title {
    position: relative;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 25px;
}

footer .widget-title::after {
    content: '';
    position: absolute;
    width: 45px;
    height: 3px;
    border-radius: 0 50% 50% 0;
    background: #feb12e;
    bottom: -14px;
    left: 0;
}

ul.widget-list {
    list-style: none;
    padding-left: 0;
    line-height: 26px;
}

ul.widget-list li {
    display: flex;
    align-items: baseline;
    font-size: 15px;
}

ul.widget-list li + li {
    margin-top: 5px;
}

ul.widget-list li a {
    color: #979797;
}

ul.widget-list li a:hover {
    color: #fff;
}

.link-btn:hover {
    color: #2e2e2e;
}

ul.widget-list li i {
    color: #ffffff;
    font-size: 15px;
    margin-right: 8px;
}

footer .btn-one:hover {
    background-color: #fff;
    color: #010101 !important;
}

.footer-bottom {
    font-size: 15px;
    background: #151515;
    padding: 15px 15px;
    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%);
}


#cookiePopup {
    background-color: #ffffff;
    position: fixed;
    font-size: 15px;
    box-shadow: 0 0.5rem 2em rgba(5, 0, 31, 0.25);
    line-height: 1.6em;
    padding: 0.8em 1.2em;
    border-radius: 12px;
    transition: all 0.5s ease-in;
    z-index: 9999;
}

#cookiePopup img {
    display: block;
    width: 3.25em;
    transform: translateZ(0);
    position: relative;
    margin: auto;
    opacity: 0.7;
}

#cookiePopup a {
    color: #6859fe;
}

#cookiePopup.hide {
    visibility: hidden;
    bottom: 0;
    right: 2em;
}

#cookiePopup.show {
    visibility: visible;
    bottom: 1em;
    right: 3em;
    left: 3rem;
}

@media only screen and (max-width: 37.5em) {
    #cookiePopup {
        width: 100%;
    }

    #cookiePopup.hide {
        bottom: 2em;
        right: 0;
    }

    #cookiePopup.show {
        right: 0;
        bottom: 0;
    }
}


/**************************************
Mobile Responsive Media Queries 
**************************************/

/**************************************
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: 16px;
        line-height: 1.7;
    }

    .header-main .navbar .navbar-brand {
        padding: 16px 0;
    }

    .header-main button.navbar-toggler {
        padding: 6px 10px;
        font-size: 24px;
        line-height: 28px;
        border-color: #feb12e;
        color: #010101;
        margin: 12px 0;
    }

    .header-main button.navbar-toggler:hover,
    .header-main button.navbar-toggler:active,
    .header-main button.navbar-toggler:focus {
        border-color: #feb12e;
        background-color: #feb12e;
        color: #fff;
    }

    .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: #feb12e;
        opacity: 0;
        border-radius: 0 3px 3px 0;
    }

    .header-main .navbar-collapse.show button.navbar-close {
        opacity: 1;
    }


    .header-main.is-sticky li.nav-item a.nav-link,
    .header-main li.nav-item a.nav-link {
        padding: 6px 0;
    }

    .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;
        border-top: 0;
    }

    .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: 80px 0;
    }

    .start-margin {
        margin-top: 70px;
    }

    .theme-title h2 {
        font-size: 1.6rem;
    }

    .theme-title .w-75 {
        width: 100% !important;
    }

    ul.theme-list.list-lg {
        font-size: 18px;
        color: #222;
    }

    ul.theme-list.list-lg li i {
        font-size: 26px;
    }

    .contact-bar {
        text-align: center;
    }

    .contact-bar li {
        margin-left: 0;
    }

    .navbar-brand > img {
        width: 120px;
    }

    header.header-main.is-sticky .navbar-brand > img {
        width: 110px;
    }

    header.header-main.is-sticky button.navbar-toggler {
        margin: 10px 0;
    }

    .header-main.scroll-fix.is-sticky nav.navbar {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .main-banner {
        padding: 0px 0 30px;
        background-position: 40% 50%;
    }

    .main-banner-txt {
        padding: 75px 0 75px 0;
    }

    .main-banner .banner-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .simple-banner {
        padding: 80px 0 80px;
    }

    .intro-panel {
        margin-bottom: 20px;
    }

    .feature-box {
        margin-top: 25px;
    }

    .home-jumbo .inner-cover {
        padding: 130px 0 50px;
    }

    .simple-slider .container {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .simple-slider .banner-title {
        font-size: 2rem;
        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 {
        padding: 60px 0;
        border-radius: 0 0 25% 25%;
    }

    .counter h3,
    .counter h3 span {
        font-size: 38px;
    }

    .counter-outer .counter-box-2 {
        margin-top: 20px;
    }

    .counter-box-2 {
        padding: 15px;
    }

    .img-counter-box .counter-box-3 {
        bottom: 15px;
        left: 15px;
    }

    .content-box-1:hover .content-inner p {
        height: auto;
    }

    .portfolio-outer {
        background-size: 180%;
    }

    .filters li {
        margin: 3px 0;
    }

    .testimonial-outer {
        background-size: 150%;
    }

    .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);
    }

    .error-inner h1 {
        font-size: 7rem;
    }

    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: 120px;
    }

    .simple-slider .banner-title {
        font-size: 2.8rem;
    }

    .wave-slider .inner-cover {
        padding: 160px 0 60px;
    }

    .page-header-outer {
        padding: 70px 0;
    }

    .content-box-1:hover .content-inner p {
        height: auto;
    }

    .counter-outer .counter-box-2 {
        margin-top: 20px;
    }

    .counter-box-2 {
        padding: 15px;
    }

    .counter-box-2.counter h3,
    .counter-box-2.counter h3 span {
        font-size: 36px;
    }

    .counter-box-2 p {
        font-size: 16px;
    }

    .img-counter-box .counter-box-3 {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 30px;
        text-align: center;
    }

    .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;
    }

    .error-inner h1 {
        font-size: 10rem;
    }

}
