@import "https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;500;600;700&family=Yantramanav:wght@300;400;500;700;900&display=swap";

:root {
    --main-color: #1f355b;
    --heading-color: #080c24;
    --paragraph-color: #565969;
    --body-font: "Public Sans", sans-serif;
    --heading-font: Yantramanav, sans-serif;
    --body-font-size: 16px;
    --line-height30: 1.7;
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #3498db;
    --text-color: #2c3e50;
    --light-bg: #ecf0f1
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    font-family: var(--body-font)
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased
}

body {
    margin: 0;
    color: var(--paragraph-color);
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    line-height: var(--line-height30);
    font-size: var(--body-font-size)
}

h1 {
    font-size: 84px;
    line-height: 90px
}

h2 {
    font-size: 40px;
    line-height: 1.3380952381
}

h3 {
    font-size: 36px;
    line-height: 1.3833333333
}

h4 {
    font-size: 30px;
    line-height: 1.3380952381
}

h5 {
    font-size: 24px;
    line-height: 1.3380952381
}

h6 {
    font-size: 20px;
    line-height: 1.2380952381
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-weight: 700;
    font-family: "Roboto", sans-serif
}

p {
    color: var(--paragraph-color);
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    margin-bottom: 10px
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: .4s;
    transition: .4s
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
    color: inherit
}

a:hover {
    color: var(--main-color)
}

pre {
    word-break: break-word
}

a i {
    padding: 0 2px
}

img {
    max-width: 100%
}

ol {
    counter-reset: counter;
    padding-left: 0
}

ol li {
    list-style: none;
    margin-bottom: 1rem
}

ol li:before {
    counter-increment: counter;
    content: counter(counter);
    font-weight: 500;
    margin-right: 10px
}

button:hover,
button:active,
button:focus {
    outline: 0
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #ddd
}

.no-gutter.row,
.no-gutter.container,
.no-gutter.container-fluid {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0
}

.no-gutter>[class^="col-"] {
    padding-left: 0;
    padding-right: 0
}

.no-gutter[class^="col-"] {
    padding-left: 0;
    padding-right: 0
}

.h-100vh {
    height: 100vh
}

code {
    color: #faa603
}

.check-list {
    margin: 0;
    padding: 0;
    list-style: none
}

.check-list li {
    display: block;
    padding-left: 20px;
    position: relative;
    z-index: 0
}

.check-list li:after {
    position: absolute;
    left: 0;
    top: 0;
    font-family: "fontawesome";
    content: "\f105";
    color: var(--main-color)
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    clear: both
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%
}

.comment-navigation .nav-previous>a,
.posts-navigation .nav-previous>a,
.post-navigation .nav-previous>a,
.comment-navigation .nav-next>a,
.posts-navigation .nav-next>a,
.post-navigation .nav-next>a {
    -webkit-transition: .3s ease-in;
    transition: .3s ease-in
}

.comment-navigation .nav-previous:hover>a,
.posts-navigation .nav-previous:hover>a,
.post-navigation .nav-previous:hover>a,
.comment-navigation .nav-next:hover>a,
.posts-navigation .nav-next:hover>a,
.post-navigation .nav-next:hover>a {
    color: var(--main-color)
}

.comment-list li {
    list-style: none
}

.h-100vh {
    height: 100vh
}

.position-relative {
    position: relative
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 15px;
    font-size: .875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000
}

#content[tabindex="-1"]:focus {
    outline: 0
}

.alignleft {
    float: left;
    clear: both;
    margin-right: 20px
}

.alignright {
    float: right;
    clear: both;
    margin-left: 20px
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 1.75em
}

.alignfull {
    margin: 1.5em 0;
    max-width: 100%
}

.alignwide {
    max-width: 1100px
}

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both
}

.sticky {
    display: block
}

.updated:not(.published) {
    display: none
}

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0
}

embed,
iframe,
object {
    max-width: 100%
}

.custom-logo-link {
    display: inline-block
}

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
    clear: both
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption .wp-caption-text {
    margin: .8075em 0
}

.wp-caption-text {
    text-align: center
}

.wp-link-pages a {
    margin: 0 5px;
    -webkit-transition: .3s ease-in;
    transition: .3s ease-in
}

.wp-link-pages {
    margin-bottom: 30px;
    margin-top: 25px
}

.wp-link-pages span,
.wp-link-pages a {
    border: 1px solid #e2e2e2;
    padding: 5px 15px;
    display: inline-block
}

.wp-link-pages .current,
.wp-link-pages a:hover {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color)
}

.wp-link-pages span:first-child {
    margin-right: 5px
}

dl,
ol,
ul {
    padding-left: 15px
}

.post-password-form input {
    display: block;
    border: 1px solid #e2e2e2;
    height: 50px;
    border-radius: 3px;
    padding: 0 20px
}

.post-password-form label {
    font-weight: 600;
    color: #333
}

.post-password-form input[type="submit"] {
    width: 100px;
    height: 50px;
    background-color: var(--main-color);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    -webkit-transition: .3s ease-in;
    transition: .3s ease-in
}

.post-password-form input[type="submit"]:hover {
    background-color: #121a2f
}

.footer-widget .table td,
.footer-widget .table th {
    padding: .5rem !important
}

@media all and (min-width: 1200px) {

    .no-lg-gutters>.col,
    .no-lg-gutters>[class*="col-"] {
        padding-right: 0;
        padding-left: 0
    }
}

.btn {
    height: 60px;
    line-height: 58px;
    padding: 0 30px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    border: 0;
    font-size: 18px;
    font-family: var(--heading-font);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    font-weight: 500;
    border-radius: 0;
    z-index: 0
}

.btn:focus,
.btn:active {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn:hover {
    background: #4285f4
}

.btn:hover:after {
    height: 100%;
    width: 135%
}

.btn:after {
    content: "";
    position: absolute;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    z-index: -1;
    height: 100%;
    left: -35%;
    top: 0;
    -webkit-transform: skew(30deg);
    transform: skew(30deg);
    -webkit-transition-duration: .6s;
    transition-duration: .6s;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    width: 0
}

.btn-base {
    color: #fff;
    background: var(--secondary-color);
    line-height: 60px
}

.btn-base:active,
.btn-base:focus,
.btn-base:hover {
    color: #fff;
    background: var(--secondary-color)
}

.btn-base:active:after,
.btn-base:focus:after,
.btn-base:hover:after {
    background: var(--secondary-color)
}

.btn-white {
    color: var(--heading-color);
    background: #fff;
    line-height: 60px
}

.btn-white:active,
.btn-white:focus,
.btn-white:hover {
    color: #fff;
    background: var(--main-color)
}

.btn-white:active:after,
.btn-white:focus:after,
.btn-white:hover:after {
    background: var(--main-color)
}

.btn-border-white {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
    line-height: 48px
}

.btn-border-white:hover,
.btn-border-white:focus {
    color: #fff;
    background: var(--main-color);
    border: 2px solid var(--main-color)
}

.btn-border-black {
    color: var(--heading-color);
    border: 2px solid rgba(0, 33, 71, 0.2);
    line-height: 48px
}

.btn-border-black:hover,
.btn-border-black:focus {
    color: #fff;
    border: 2px solid var(--main-color)
}

.read-more-text {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 14px;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.read-more-text svg,
.read-more-text i {
    font-size: 14px
}

.read-more-text:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    background: #1f355b;
    height: 1px;
    width: 0;
    -webkit-transition: .4s;
    transition: .4s
}

.read-more-text:hover {
    color: #1f355b
}

.read-more-text:hover:after {
    width: 100%
}

.add-to-cart-btn {
    font-size: 14px;
    font-weight: 400;
    color: #fff
}

.add-to-cart-btn:hover,
.add-to-cart-btn.active,
.add-to-cart-btn:focus {
    color: #1f355b
}

.add-to-cart-btn span {
    margin-right: 20px
}

.shadow-none {
    -webkit-box-shadow: none !important;
    box-shadow: none !important
}

.back-to-top {
    position: fixed;
    left: 35px;
    bottom: 60px;
    width: 40px;
    height: 40px;
    color: #fff;
    background: var(--main-color);
    background-position: center;
    background-size: cover;
    text-align: center;
    line-height: 40px;
    z-index: 99;
    font-size: 25px;
    cursor: pointer;
    display: none;
    -webkit-animation: backto-top-bounce 4s infinite ease-in-out;
    animation: backto-top-bounce 4s infinite ease-in-out
}

@-webkit-keyframes backto-top-bounce {
    0% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-5px)
    }

    50% {
        -webkit-transform: translateY(8px);
        transform: translateY(10px)
    }

    100% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-5px)
    }
}

@keyframes backto-top-bounce {
    0% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-5px)
    }

    50% {
        -webkit-transform: translateY(8px);
        transform: translateY(10px)
    }

    100% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-5px)
    }
}

.owl-carousel .owl-nav button {
    height: 60px;
    width: 60px;
    line-height: 58px;
    border-radius: 50%;
    background: #fff;
    border: 0;
    -webkit-box-shadow: 0 8px 20px rgba(7, 36, 95, 0.15);
    box-shadow: 0 8px 20px rgba(7, 36, 95, 0.15);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.owl-carousel .owl-nav button img {
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.owl-carousel .owl-nav button:hover {
    background: var(--main-color);
    color: #000
}

.owl-carousel .owl-nav button:hover img {
    -webkit-filter: brightness(99);
    filter: brightness(99)
}

.pre-wrap {
    position: fixed;
    content: "";
    -webkit-transform: translate(-100%, -240%);
    transform: translate(-100%, -240%);
    font-size: 62px
}

.preloader-inner {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999999999;
    background-color: #030724;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.preloader-inner .cancel-preloader {
    position: absolute;
    bottom: 30px;
    right: 30px
}

.preloader-inner .cancel-preloader a {
    background-color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--main-color);
    width: 200px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 30px;
    display: block;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.preloader-inner .cancel-preloader a:hover {
    background-color: var(--heading-color);
    color: #fff
}

.spinner {
    margin: 120px auto;
    width: 60px;
    height: 60px;
    position: relative;
    text-align: center;
    -webkit-animation: sk-rotate 2s infinite linear;
    animation: sk-rotate 2s infinite linear
}

.dot1,
.dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: var(--main-color);
    border-radius: 100%;
    -webkit-animation: sk-bounce 2s infinite ease-in-out;
    animation: sk-bounce 2s infinite ease-in-out
}

.dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1s;
    animation-delay: -1s
}

@-webkit-keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes sk-bounce {

    0%,
    100% {
        -webkit-transform: scale(0)
    }

    50% {
        -webkit-transform: scale(1)
    }
}

@keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0);
        -webkit-transform: scale(0)
    }

    50% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}

.video-thumb-wrap {
    position: relative
}

.video-thumb-wrap img {
    width: 100%
}

.video-thumb-wrap .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.video-play-btn {
    border-radius: 50%;
    background: var(--main-color);
    width: 60px;
    height: 60px;
    display: inline-block;
    line-height: 64px;
    position: relative;
    text-align: center;
    -webkit-animation: ripple-white3 2.5s linear infinite;
    animation: ripple-white3 2.5s linear infinite;
    z-index: 3
}

.video-play-btn:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--main-color);
    top: -10px;
    left: -10px
}

.video-play-btn svg,
.video-play-btn i {
    color: #fff;
    margin-left: 4px;
    font-size: 20px
}

.breadcrumb-area {
    padding: 296px 0 171px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center bottom
}

.breadcrumb-area .breadcrumb-inner {
    position: relative;
    z-index: 2;
    display: inline-block
}

.breadcrumb-area .page-title {
    font-weight: 900;
    font-size: 64px;
    line-height: 83px;
    margin-bottom: 0;
    color: #fff
}

.breadcrumb-area .page-list {
    margin: 0;
    padding: 0;
    color: #fff;
    display: inline-block
}

.breadcrumb-area .page-list li {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    list-style: none;
    display: inline-block;
    position: relative;
    color: #fff
}

.breadcrumb-area .page-list li+li {
    padding-left: 23px;
    margin-left: 5px
}

.breadcrumb-area .page-list li a {
    color: #1f355b
}

.breadcrumb-area .page-list li:after {
    position: absolute;
    left: 0;
    top: 1px;
    content: "\f061";
    color: #fd7e14;
    font-family: "Font Awesome 5 Free";
    font-weight: 700
}

.breadcrumb-area .page-list li:first-child {
    padding-left: 0
}

.breadcrumb-area .page-list li:first-child:after {
    display: none
}

.social-media {
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2
}

.social-media li {
    display: inline-block;
    margin: 0 4px
}

.social-media li a {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    background: #fff;
    color: #3f517e
}

.social-media li a:hover {
    color: #fff;
    background: var(--main-color)
}

.social-media li:first-child {
    margin-left: 0
}

.social-media li:last-child {
    margin-right: 0
}

.social-media.style-border li a {
    background: transparent;
    border: 1px solid #fff;
    color: #fff
}

.social-media.style-border li a i,
.social-media.style-border li a svg {
    margin-right: 0
}

.social-media.style-border li a:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff
}

.slider-control-square .owl-nav button {
    height: 50px;
    width: 50px;
    line-height: 50px;
    margin: 0 8px;
    border-radius: 0;
    border: 1px solid var(--main-color);
    -webkit-transition: .4s;
    transition: .4s;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--main-color);
    background: transparent;
    font-size: 20px;
    padding: 0;
    cursor: pointer
}

.slider-control-square .owl-nav button:hover {
    background: var(--main-color);
    color: #fff
}

.slider-control-square .owl-nav .owl-prev {
    margin-left: 0
}

.slider-control-square .owl-nav .owl-next {
    margin-left: 0
}

.ratting-inner {
    color: #ffc107
}

.bg-base {
    background: var(--main-color)
}

.bg-green {
    background: #1dc295
}

.bg-blue {
    background: #2878eb
}

.bg-red {
    background: #f14d5d
}

.bg-gray {
    background: #1b1e26
}

.bg-sky {
    background: #f9f9f9
}

.bg-black {
    background: var(--heading-color)
}

.bg-light {
    background: #f7fafc
}

.bg-relative {
    position: relative
}

.bg-cover {
    background-size: cover !important
}

.bg-overlay {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    z-index: 0
}

.bg-overlay:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(8, 12, 36, 0.9);
    z-index: -1
}

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

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

.bg-overlay-2 {
    position: relative;
    background-size: cover !important
}

.bg-overlay-2:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(3, 0, 12, 0.5)
}

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

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

.pd-top-45 {
    padding-top: 45px
}

.pd-top-60 {
    padding-top: 60px
}

.pd-top-75 {
    padding-top: 75px
}

.pd-top-90 {
    padding-top: 90px
}

.pd-top-100 {
    padding-top: 100px
}

.pd-top-105 {
    padding-top: 105px
}

.pd-top-110 {
    padding-top: 110px
}

.pd-top-115 {
    padding-top: 115px
}

.pd-top-120 {
    padding-top: 120px
}

.pd-top-240 {
    padding-top: 240px
}

.mg-top-120 {
    margin-top: 120px
}

.pd-bottom-45 {
    padding-bottom: 45px
}

.pd-bottom-70 {
    padding-bottom: 70px
}

.pd-bottom-80 {
    padding-bottom: 80px
}

.pd-bottom-90 {
    padding-bottom: 90px
}

.pd-bottom-100 {
    padding-bottom: 100px
}

.pd-bottom-110 {
    padding-bottom: 110px
}

.pd-bottom-115 {
    padding-bottom: 115px
}

.pd-bottom-120 {
    padding-bottom: 120px
}

.pd-bottom-240 {
    padding-bottom: 240px
}

.mb-60 {
    margin-bottom: 60px !important
}

.mb-120 {
    margin-bottom: 120px
}

.mrt-120 {
    margin-top: -120px
}

.after-none:after {
    display: none !important
}

.top_image_bounce {
    -webkit-animation: top-image-bounce 3s infinite ease-in-out;
    animation: top-image-bounce 3s infinite ease-in-out
}

.left_image_bounce {
    -webkit-animation: left-image-bounce 3s infinite ease-in-out;
    animation: left-image-bounce 3s infinite ease-in-out
}

.right_image_bounce {
    -webkit-animation: right-image-bounce 3s infinite ease-in-out;
    animation: right-image-bounce 3s infinite ease-in-out
}

.spin_image {
    -webkit-animation: spin 3s infinite ease-in-out;
    animation: spin 3s infinite ease-in-out
}

@-webkit-keyframes top-image-bounce {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px)
    }

    50% {
        -webkit-transform: translateY(12px);
        transform: translateY(12px)
    }

    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px)
    }
}

@keyframes top-image-bounce {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px)
    }

    50% {
        -webkit-transform: translateY(12px);
        transform: translateY(12px)
    }

    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px)
    }
}

@-webkit-keyframes left-image-bounce {
    0% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px)
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }

    100% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px)
    }
}

@keyframes left-image-bounce {
    0% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px)
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }

    100% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px)
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transform-origin: 50%;
        transform-origin: 50%
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transform-origin: 50%;
        transform-origin: 50%
    }
}

@-webkit-keyframes ripple-white3 {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1)
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0)
    }
}

@keyframes ripple-white3 {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1)
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0)
    }
}

.section-title {
    margin-bottom: 40px;
    position: relative
}

.section-title .subtitle {
    font-weight: 600;
    font-size: 16px;
    color: var(--main-color);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(15.22%, rgba(250, 67, 24, 0)), color-stop(33.76%, rgba(250, 67, 24, 0.0833333)), color-stop(58.49%, rgba(250, 67, 24, 0.23)), color-stop(79.25%, rgba(250, 67, 24, 0.39383)), to(#1f355b));
    background: linear-gradient(180deg, rgba(250, 67, 24, 0) 15.22%, rgba(250, 67, 24, 0.0833333) 33.76%, rgba(250, 67, 24, 0.23) 58.49%, rgba(250, 67, 24, 0.39383) 79.25%, #1f355b 100%);
    height: 46px;
    line-height: 46px;
    border-radius: 20px;
    display: inline-block;
    position: relative;
    z-index: 0;
    padding: 0 30px;
    margin-bottom: 19px
}

.section-title .subtitle:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: -webkit-fill-available;
    width: -webkit-fill-available;
    background: #fff;
    border-radius: 0 0 20px 20px;
    z-index: -1;
    margin: 0 2px 2px
}

.section-title .subtitle.style-2 {
    background: url(../img/wcu/bg-subtitle.png);
    background-size: 100% 100%;
    background-position: bottom;
    background-repeat: no-repeat
}

.section-title .subtitle.style-2:after {
    display: none
}

.section-title .title {
    margin-bottom: 0;
    margin-top: 0;
    font-size: 40px;
    font-weight: 900;
    position: relative;
    z-index: 0
}

.section-title .content {
    margin-top: 17px;
    margin-bottom: 0
}

.section-title .content.left-line {
    border-left: 5px solid var(--main-color);
    padding-left: 50px
}

.section-title .small-title {
    margin-top: 18px;
    line-height: 36px
}

.section-title .btn {
    margin-top: 30px
}

.section-title.style-white .subtitle {
    color: #fff
}

.section-title.style-white .title {
    color: #fff
}

.section-title.style-white .content {
    color: #d6d6d6
}

.section-title.style-white .small-title {
    color: #fff
}

.navbar-top {
    background: transparent;
    position: relative;
    margin-bottom: 68px;
    padding: 16.5px 0
}

.navbar-top:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 66.8%;
    background: url(../img/shape/topbar-bg.png);
    background-position: 0 0;
    background-size: 165% 100%;
    height: 100%;
    z-index: -1
}

.navbar-top .nav-phone-wrap {
    background: url(../img/shape/nav-contact-bg.png);
    background-position: -38px 0;
    background-size: 112% 100%;
    background-repeat: no-repeat;
    display: inline-block;
    position: absolute;
    top: 90px;
    color: #fff;
    padding: 12.5px 135px 9.5px 115px;
    left: -70px;
    font-family: var(--heading-font);
    font-size: 14px
}

.navbar-top .nav-phone-wrap i,
.navbar-top .nav-phone-wrap svg {
    margin-right: 5px
}

.navbar-top .logo {
    position: absolute;
    left: -70px;
    top: 0;
    width: 530px
}

.navbar-top .logo .main-logo {
    display: inline-block
}

.navbar-top ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.navbar-top ul.topbar-left {
    margin-left: 369px
}

.navbar-top ul.topbar-left li+li {
    margin-left: 11px
}

.navbar-top ul.topbar-left li i,
.navbar-top ul.topbar-left li svg {
    margin-right: 7px;
    color: var(--main-color)
}

.navbar-top ul.topbar-right li+li {
    margin-left: 17px
}

.navbar-top ul li {
    display: inline-block;
    color: #fff;
    font-size: 14px
}

.navbar-top ul li a {
    color: #fff
}

.navbar-top ul li a:hover {
    color: var(--main-color)
}

.navbar-area {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: #fff;
    color: #000;
    padding: 0;
    margin-top: 0
}

.navbar-area .nav-container {
    padding: 15px 0
}

.navbar-area .nav-container .btn-transparent {
    font-size: 13px;
    font-weight: 700
}

.navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    width: 100%;
    text-align: left
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: inline-block;
    font-weight: 500;
    line-height: 50px;
    text-transform: capitalize
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    color: #000;
    font-weight: 500;
    font-size: 15px
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li:hover a {
    color: #e67e22
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
    margin-left: 13px
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
    position: relative;
    z-index: 0;
    padding-right: 11px
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:after {
    content: "";
    position: absolute;
    right: -1px;
    top: 26px;
    height: 2px;
    width: 10px;
    background: var(--heading-color);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    z-index: -1
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    content: "";
    position: absolute;
    right: 3px;
    top: 50%;
    height: 10px;
    width: 2px;
    background: var(--heading-color);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    margin-top: 1px;
    z-index: -1
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover:before {
    opacity: 0
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover:after {
    background: var(--main-color)
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover>.sub-menu {
    visibility: visible;
    opacity: 1
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: absolute;
    text-align: left;
    min-width: 210px;
    margin: 0;
    padding: 0;
    list-style: none;
    left: 0;
    top: 100%;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;
    z-index: 9;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    border-radius: 0
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.border-bt0 {
    border-bottom: 0 !important
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    display: block;
    margin-left: 0;
    line-height: 22px;
    font-size: 15px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    border-bottom: 1px solid #f5f5f5
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    display: block;
    padding: 10px 20px;
    white-space: nowrap;
    -webkit-transition: all .3s;
    transition: all .3s;
    color: #050a30;
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    position: relative
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover {
    background: #1f355b
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover a {
    color: #fff
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover a:before {
    visibility: visible;
    opacity: 1
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:last-child {
    border-bottom: 0
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children {
    position: relative;
    z-index: 0;
    padding-right: 0
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 100%;
    top: 20px
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu .sub-menu .sub-menu {
    left: auto;
    right: 100%
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu {
    visibility: visible;
    opacity: 1
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu li:hover:before {
    color: #fff
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
    margin-right: 0
}

.navbar-area .nav-container .navbar-collapse .navbar-nav>li {
    margin-right: 9px
}

.navbar-area-1 {
    padding: 0;
    top: 60px
}

.navbar-area-1 .nav-container {
    padding: 7px 0 27px
}

.navbar-area-1 .nav-container .navbar-collapse .navbar-nav {
    padding-left: 368px
}

.navbar-area-1:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background: url(../img/shape/nav-bar.png);
    height: 100%;
    width: 74.5%;
    z-index: -1;
    background-size: 142% 80%;
    background-position: 4px 0;
    background-repeat: no-repeat
}

.navbar-area-1 .logo {
    display: none
}

.navbar-area-1 .logo a {
    font-weight: 700;
    font-size: 24px;
    color: #fff
}

.navbar-area-1 .logo a img {
    height: auto
}

.navbar-area-2 {
    margin-top: 0
}

.navbar-area-2:after {
    display: none
}

.navbar-area-2 .logo {
    position: relative;
    left: 0;
    top: 0
}

.navbar-area-2 .logo .logo-1 {
    display: block
}

.navbar-area-2 .logo .logo-2 {
    display: none
}

.navbar-area-2 .nav-container {
    padding: 29px 0 20px
}

.navbar-area-2.sticky-active .nav-container .logo {
    all: unset !important
}

.navbar-area-2.sticky-active .nav-container .logo .logo-1 {
    display: none
}

.navbar-area-2.sticky-active .nav-container .logo .logo-2 {
    display: block
}

.sticky-active {
    all: unset !important
}

.sticky-active .nav-container {
    all: unset !important
}

.sticky-active .nav-container .logo {
    all: unset !important
}

.sticky-active .nav-container .navbar-collapse .navbar-nav {
    all: unset !important
}

.navbar-nav {
    opacity: 0;
    margin-right: -30px;
    visibility: hidden;
    -webkit-transition: all .3s ease 0;
    transition: all .3s ease 0
}

.menu-open {
    opacity: 1;
    margin-right: 0;
    visibility: visible
}

.bar1 {
    width: 32px;
    height: 2px;
    margin-bottom: 5px;
    position: absolute;
    background: #fff;
    z-index: 9999;
    top: 10px;
    right: -5px
}

.bar2 {
    width: 24px;
    height: 2px;
    margin-bottom: 5px;
    position: absolute;
    background: #fff;
    z-index: 9999;
    top: 17px;
    right: -5px
}

.bar3 {
    width: 18px;
    height: 2px;
    margin-bottom: 5px;
    position: absolute;
    background: #fff;
    z-index: 9999;
    top: 24px;
    right: -5px
}

.responsive-mobile-menu button:focus {
    outline: none;
    border: none
}

.nav-right-part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.nav-right-part .btn {
    color: #fff;
    padding: 0 27px
}

.nav-right-part a {
    margin-left: 30px;
    color: var(--heading-color);
    display: inline-block
}

.nav-right-part .cart-btn {
    position: relative
}

.nav-right-part .cart-btn span {
    position: absolute;
    right: -10px;
    top: -5px;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: #1f355b;
    text-align: center;
    font-size: 13px;
    line-height: 22px
}

.nav-right-part .menu-bar {
    background: #fff;
    border-radius: 50px;
    height: 50px;
    width: 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 50px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 42px
}

.nav-right-part-mobile {
    display: none
}

.sidebar-menu {
    width: 0;
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    background-color: #fff;
    z-index: 999;
    overflow-y: auto;
    -webkit-transition: .5s;
    transition: .5s;
    opacity: 0;
    visibility: hidden
}

.sidebar-menu .sidebar-inner {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    padding: 50px 40px
}

.sidebar-menu .sidebar-inner .thumb {
    margin-bottom: 15px
}

.sidebar-menu .sidebar-inner p {
    margin-bottom: 28px
}

.sidebar-menu .sidebar-inner .sidebar-address {
    margin-bottom: 35px
}

.sidebar-menu .sidebar-inner .sidebar-address ul {
    margin: 0;
    padding: 0
}

.sidebar-menu .sidebar-inner .sidebar-address ul li {
    list-style: none;
    margin-bottom: 4px
}

.sidebar-menu .sidebar-inner .sidebar-address ul li:last-child {
    margin-bottom: 0
}

.sidebar-menu .sidebar-inner .sidebar-address ul li i {
    margin-right: 6px;
    width: 25px
}

.sidebar-menu .sidebar-inner .sidebar-subscribe {
    position: relative;
    margin-bottom: 40px
}

.sidebar-menu .sidebar-inner .sidebar-subscribe input {
    width: 100%;
    border: 1px solid #d6dadf;
    height: 42px;
    padding: 0 45px 0 12px
}

.sidebar-menu .sidebar-inner .sidebar-subscribe button {
    position: absolute;
    right: 0;
    top: 0;
    height: 42px;
    width: 42px;
    background: #97b3d0;
    -webkit-transition: .4s;
    transition: .4s;
    border: 0;
    color: var(--heading-color);
    cursor: pointer
}

.sidebar-menu .sidebar-inner .sidebar-subscribe button:hover {
    background: var(--main-color);
    color: #fff
}

.sidebar-menu .sidebar-inner .social-media li a {
    background: #ced4da
}

.sidebar-menu .sidebar-inner .social-media li a:hover {
    background: var(--main-color);
    color: #fff
}

.sidebar-menu .sidebar-menu-close {
    background-color: #043381;
    border: 0;
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    z-index: 999
}

.sidebar-menu.active {
    width: 360px;
    opacity: 1;
    visibility: visible
}

.sidebar-menu.active .sidebar-inner {
    top: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .7s ease-out .8s;
    transition: all .7s ease-out .8s
}

@media only screen and (max-width: 991px) {
    .navbar-area .nav-container {
        padding: 15px
    }

    .nav-right-part {
        margin-right: 50px
    }

    .nav-right-part .btn .right {
        padding-left: 5px;
        font-size: 13px
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav>li {
        margin-right: 0;
        padding-right: 0
    }

    .navbar-area .nav-container {
        position: relative;
        z-index: 0
    }

    .navbar-area .nav-container .navbar-toggler {
        padding: 0
    }

    .navbar-area .nav-container .navbar-collapse {
        margin-top: 13px
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav {
        display: block;
        margin-top: 20px
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        display: block;
        text-align: left;
        line-height: 30px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1)
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
        display: block
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
        border-bottom: none
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
        margin-left: 0
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
        top: 26px;
        right: 3px !important
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
        position: initial;
        display: block;
        width: 100%;
        border-top: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        margin-left: 0;
        padding-bottom: 0;
        height: auto;
        overflow: hidden;
        max-height: 250px;
        overflow-y: scroll;
        background-color: transparent;
        border-radius: 10px;
        padding: 0;
        border-bottom: none;
        display: none;
        -webkit-transition: none;
        transition: none;
        visibility: visible;
        opacity: 1
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
        content: "\f107"
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
        padding: 0
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
        top: 30px;
        color: #fff
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
        border-top: none
    }
}

.sopen {
    display: block
}

.toggle-btn {
    left: auto;
    right: -10px;
    position: absolute;
    top: 10px;
    width: 40px;
    height: 40px;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    border: 0;
    background: transparent
}

.toggle-btn .icon-left {
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    position: absolute;
    height: 2px;
    width: 11px;
    top: 18px;
    background-color: #fff;
    left: 7px
}

.toggle-btn .icon-left:before {
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    position: absolute;
    width: 11px;
    height: 2px;
    background-color: #fff;
    content: "";
    top: -7px;
    left: 0
}

.toggle-btn .icon-left:after {
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    position: absolute;
    width: 11px;
    height: 2px;
    background-color: #fff;
    content: "";
    top: 7px;
    left: 0
}

.toggle-btn .icon-left:hover {
    cursor: pointer
}

.toggle-btn .icon-right {
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    position: absolute;
    height: 2px;
    width: 11px;
    top: 18px;
    background-color: #fff;
    left: 18px
}

.toggle-btn .icon-right:before {
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    position: absolute;
    width: 11px;
    height: 2px;
    background-color: #fff;
    content: "";
    top: -7px;
    left: 0
}

.toggle-btn .icon-right:after {
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    position: absolute;
    width: 11px;
    height: 2px;
    background-color: #fff;
    content: "";
    top: 7px;
    left: 0
}

.toggle-btn .icon-right:hover {
    cursor: pointer
}

.toggle-btn.open .icon-left {
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    background: transparent
}

.toggle-btn.open .icon-left:before {
    -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(2px, 1px);
    transform: rotateZ(45deg) scaleX(1.4) translate(2px, 1px)
}

.toggle-btn.open .icon-left:after {
    -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -1px);
    transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -1px)
}

.toggle-btn.open .icon-right {
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    background: transparent
}

.toggle-btn.open .icon-right:before {
    -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 1px);
    transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 1px)
}

.toggle-btn.open .icon-right:after {
    -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -1px);
    transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -1px)
}

.toggle-btn:hover {
    cursor: pointer
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        font-size: 16px
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
        margin-left: 5px
    }

    .navbar-nav li {
        padding-right: 12px !important
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        font-size: 14px
    }

    .navbar-area .nav-container .navbar-collapse.sopen {
        display: block
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media only screen and (max-width: 1199px) {
    .margin-xlt-80 {
        margin-top: 0
    }

    .contact-widget .contact_info_list li.single-info-item .details {
        padding-left: 25px
    }
}

@media only screen and (max-width: 991px) {
    .navbar-area .logo {
        padding-top: 0 !important
    }

    .widget ul {
        text-align: left
    }

    .navbar-collapse {
        background: #fff;
        margin-top: 0;
        width: 100%
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
        right: 20px
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav {
        margin-bottom: 20px
    }

    .navbar-area {
        padding-bottom: 0
    }

    .bar1,
    .bar2,
    .bar3 {
        background: #fff
    }

    .party-box-wrapper {
        padding: 50px 0
    }

    .party-box-wrapper .party-box-content h4 {
        font-size: 30px;
        line-height: 45px
    }

    .footer-area .copyright-area-inner {
        padding: 20px
    }

    .navbar-expand-lg .navbar-collapse {
        margin-top: 0
    }

    .contact-widget .contact_info_list li.single-info-item .details {
        padding-left: 25px
    }

    .footer-area .footer-top .widget.widget_nav_menu ul li a {
        font-size: 14px
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
        padding: 0 0 0 20px
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
        padding: 12px 0
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:last-child a {
        padding-bottom: 3px
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover i {
        opacity: 0;
        margin-right: -18px
    }

    .nav-right-part-mobile {
        display: block
    }

    .nav-right-part-desktop {
        display: none
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover {
        background: none
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
        color: #333
    }
}

@media only screen and (max-width: 767px) {
    .logo-wrapper.mobile-logo {
        display: block;
        width: 100%
    }

    .responsive-mobile-menu {
        display: block;
        width: 100%;
        position: relative
    }

    .responsive-mobile-menu .navbar-toggler {
        position: absolute;
        left: calc(100% - 130px);
        top: 10px
    }

    .table-responsive {
        display: block !important
    }

    .btn-custom-default,
    .btn-custom-white {
        font-size: 14px;
        line-height: 33px;
        padding: 6px 20px
    }

    .navbar-area .logo {
        padding-top: 0 !important
    }
}

@media only screen and (max-width: 575px) {
    .navbar-area .logo {
        padding-top: 10px
    }

    .widget.footer-widget .subscribe-form.subscribe-form-style2 .form-control {
        padding: 15px 20px
    }

    .widget.footer-widget .subscribe-form.subscribe-form-style2 .btn {
        padding: 15px 20px
    }

    .search-popup .search-form {
        min-width: 350px
    }
}

@media only screen and (max-width: 375px) {

    .btn-custom-default,
    .btn-custom-white {
        padding: 5px 18px
    }

    .search-popup .search-form .form-group .form-control,
    .search-popup .search-form .submit-btn {
        height: 45px
    }

    .search-popup .search-form {
        min-width: 300px
    }
}

@media only screen and (max-width: 320px) {
    .search-popup .search-form {
        min-width: 265px
    }

    .responsive-mobile-menu .navbar-toggler {
        left: calc(100% - 95px)
    }
}

.td-search-popup.active .search-form {
    visibility: visible;
    opacity: 1;
    width: 40%
}

.td-search-popup .search-form {
    width: 35%;
    position: absolute;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 999
}

.td-search-popup .search-form .form-group .form-control {
    border: none;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    height: 54px;
    padding: 0 75px 0 25px;
    background: #f7f9fb
}

.td-search-popup .search-form .form-group .form-control:hover,
.td-search-popup .search-form .form-group .form-control:focus,
.td-search-popup .search-form .form-group .form-control:active {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.td-search-popup .search-form .submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 54px;
    border: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #fff;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    padding: 0;
    text-align: center;
    cursor: pointer;
    background: var(--main-color)
}

.td-search-popup .search-form .submit-btn:hover,
.td-search-popup .search-form .submit-btn:focus,
.td-search-popup .search-form .submit-btn:active {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    content: "";
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress
}

.body-overlay.active {
    visibility: visible;
    opacity: .97
}

.mfp-zoom-in .mfp-content {
    opacity: 0;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-transform: scale(0.7);
    transform: scale(0.7)
}

.mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.mfp-zoom-in.mfp-ready .mfp-content {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: .7
}

.mfp-zoom-in.mfp-removing .mfp-content {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0
}

.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0
}

.single-input-inner {
    margin-bottom: 24px;
    position: relative
}

.single-input-inner label {
    font-weight: 400;
    font-size: 14px;
    color: var(--paragraph-color);
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 20px;
    height: 60px;
    line-height: 60px
}

.single-input-inner input {
    width: 100%;
    height: 60px;
    border: 0;
    border-radius: 0;
    padding: 0 40px;
    font-size: 14px;
    background: rgba(8, 12, 36, 0.06);
    color: var(--paragraph-color)
}

.single-input-inner input::-webkit-input-placeholder {
    color: var(--paragraph-color)
}

.single-input-inner input::-moz-placeholder {
    color: var(--paragraph-color)
}

.single-input-inner input:-ms-input-placeholder {
    color: var(--paragraph-color)
}

.single-input-inner input::-ms-input-placeholder {
    color: var(--paragraph-color)
}

.single-input-inner input::placeholder {
    color: var(--paragraph-color)
}

.single-input-inner input:active,
.single-input-inner input:focus,
.single-input-inner input:hover {
    border: 0
}

.single-input-inner textarea {
    width: 100%;
    border: 0;
    height: 160px;
    border-radius: 0;
    padding: 17px 40px;
    background: rgba(8, 12, 36, 0.06);
    color: var(--paragraph-color);
    margin-bottom: -8px
}

.single-input-inner textarea::-webkit-input-placeholder {
    color: var(--paragraph-color)
}

.single-input-inner textarea::-moz-placeholder {
    color: var(--paragraph-color)
}

.single-input-inner textarea:-ms-input-placeholder {
    color: var(--paragraph-color)
}

.single-input-inner textarea::-ms-input-placeholder {
    color: var(--paragraph-color)
}

.single-input-inner textarea::placeholder {
    color: var(--paragraph-color)
}

.single-input-inner.style-border input {
    border: 1px solid #d6d6d6 !important;
    background: transparent;
    height: 55px;
    padding: 0 20px
}

.single-input-inner.style-border input::-webkit-input-placeholder {
    color: var(--paragraph-color)
}

.single-input-inner.style-border input::-moz-placeholder {
    color: var(--paragraph-color)
}

.single-input-inner.style-border input:-ms-input-placeholder {
    color: var(--paragraph-color)
}

.single-input-inner.style-border input::-ms-input-placeholder {
    color: var(--paragraph-color)
}

.single-input-inner.style-border input::placeholder {
    color: var(--paragraph-color)
}

.single-input-inner.style-border textarea {
    border: 1px solid rgba(234, 225, 214, 0.6) !important
}

.single-input-inner.style-border textarea::-webkit-input-placeholder {
    color: #bbb
}

.single-input-inner.style-border textarea::-moz-placeholder {
    color: #bbb
}

.single-input-inner.style-border textarea:-ms-input-placeholder {
    color: #bbb
}

.single-input-inner.style-border textarea::-ms-input-placeholder {
    color: #bbb
}

.single-input-inner.style-border textarea::placeholder {
    color: #bbb
}

.single-input-inner.style-bg input {
    background: #f5f6f6
}

.single-input-inner.style-bg input::-webkit-input-placeholder {
    color: #3f517e
}

.single-input-inner.style-bg input::-moz-placeholder {
    color: #3f517e
}

.single-input-inner.style-bg input:-ms-input-placeholder {
    color: #3f517e
}

.single-input-inner.style-bg input::-ms-input-placeholder {
    color: #3f517e
}

.single-input-inner.style-bg input::placeholder {
    color: #3f517e
}

.single-input-inner.style-bg textarea {
    background: #f5f6f6
}

.single-input-inner.style-bg textarea::-webkit-input-placeholder {
    color: #3f517e
}

.single-input-inner.style-bg textarea::-moz-placeholder {
    color: #3f517e
}

.single-input-inner.style-bg textarea:-ms-input-placeholder {
    color: #3f517e
}

.single-input-inner.style-bg textarea::-ms-input-placeholder {
    color: #3f517e
}

.single-input-inner.style-bg textarea::placeholder {
    color: #3f517e
}

.single-select-inner {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.single-select-inner label {
    font-weight: 400;
    font-size: 14px;
    color: var(--paragraph-color);
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 20px;
    height: 60px;
    line-height: 60px
}

.single-select-inner .single-select {
    width: 100%;
    height: 60px;
    line-height: 60px;
    border: 0 !important;
    border-radius: 0;
    font-size: 14px;
    color: var(--paragraph-color);
    background: rgba(8, 12, 36, 0.06);
    padding: 0 30px 0 40px
}

.single-select-inner .single-select::-webkit-input-placeholder {
    color: var(--paragraph-color)
}

.single-select-inner .single-select::-moz-placeholder {
    color: var(--paragraph-color)
}

.single-select-inner .single-select:-ms-input-placeholder {
    color: var(--paragraph-color)
}

.single-select-inner .single-select::-ms-input-placeholder {
    color: var(--paragraph-color)
}

.single-select-inner .single-select::placeholder {
    color: var(--paragraph-color)
}

.single-select-inner .single-select:after {
    right: 20px;
    height: 7px;
    width: 7px;
    border-color: var(--paragraph-color)
}

.single-select-inner .single-select .list {
    width: 100%
}

.single-select-inner.style-border .single-select {
    border: 1px solid #d6d6d6 !important;
    background: transparent;
    height: 55px;
    line-height: 55px;
    padding: 0 20px
}

.single-select-inner.style-bg .single-select {
    background: #f7fafc
}

.single-select-inner.style-bg .single-select::-webkit-input-placeholder {
    color: #3f517e
}

.single-select-inner.style-bg .single-select::-moz-placeholder {
    color: #3f517e
}

.single-select-inner.style-bg .single-select:-ms-input-placeholder {
    color: #3f517e
}

.single-select-inner.style-bg .single-select::-ms-input-placeholder {
    color: #3f517e
}

.single-select-inner.style-bg .single-select::placeholder {
    color: #3f517e
}

.single-check-wrap {
    font-size: 14px;
    margin: 0;
    line-height: 26px
}

.single-check-wrap .form-check-input {
    border-radius: 0;
    border: 1px solid #d6d6d6;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    height: 20px;
    width: 20px
}

.single-check-wrap .form-check-input:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    height: 8px;
    width: 8px;
    background: var(--main-color);
    opacity: 0;
    z-index: 1
}

.single-check-wrap .form-check-input:checked[type="checkbox"] {
    background: transparent
}

.single-check-wrap .form-check-input:checked[type="checkbox"]::after {
    opacity: 1
}

.single-check-wrap label {
    margin-left: 10px
}

.booking-form {
    margin-top: -120px;
    z-index: 2;
    position: relative
}

.booking-form-inner {
    padding: 45px 50px 30px;
    border-radius: 7px;
    background-size: cover
}

.booking-form-inner h3 {
    color: #fff;
    margin-bottom: 2px
}

.booking-form-inner p {
    color: #fff;
    margin-bottom: 30px
}

.banner-inner {
    position: relative;
    z-index: 2
}

.banner-inner .title {
    font-weight: 900
}

.banner-inner .content {
    margin-top: 11px;
    margin-bottom: 0
}

.banner-inner .btn-wrap {
    margin-top: 35px
}

.banner-inner.style-white .title {
    color: #fff
}

.banner-inner.style-white .content {
    color: #fff
}

.banner-area-1 .item {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    z-index: 1
}

.banner-area-1 .item:after {
    content: "";
    background: -webkit-gradient(linear, left top, right top, color-stop(14.27%, #080c24), color-stop(29.06%, rgba(8, 12, 36, 0.96789)), color-stop(41.25%, rgba(8, 12, 36, 0.905506)), color-stop(51.56%, rgba(8, 12, 36, 0.832149)), color-stop(57.4%, rgba(8, 12, 36, 0.711263)), color-stop(82.4%, rgba(8, 12, 36, 0)));
    background: linear-gradient(90deg, #080c24 14.27%, rgba(8, 12, 36, 0.96789) 29.06%, rgba(8, 12, 36, 0.905506) 41.25%, rgba(8, 12, 36, 0.832149) 51.56%, rgba(8, 12, 36, 0.711263) 57.4%, rgba(8, 12, 36, 0) 82.4%);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1
}

.banner-area-1 {
    overflow: hidden
}

.banner-area-1 .banner-inner {
    padding: 350px 0 277px;
    position: relative
}

.banner-area-1 .banner-inner:after {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    -webkit-transform: translate(-100%, -40%);
    transform: translate(-100%, -40%);
    background: rgba(255, 255, 255, 0.07);
    height: 432px;
    width: 432px;
    border-radius: 50%;
    z-index: 1
}

.banner-area-1 .banner-inner:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    -webkit-transform: translate(-100%, -40%);
    transform: translate(-100%, -40%);
    background: rgba(255, 255, 255, 0.07);
    height: 432px;
    width: 432px;
    border-radius: 50%;
    margin-top: 30px;
    z-index: 2
}

.banner-area-1 .banner-inner .btn-wrap .btn-base {
    margin-right: 28px
}

.banner-area-1 .banner-slider .owl-nav {
    position: absolute;
    left: 10px;
    top: 50%;
    z-index: 9
}

.banner-area-1 .banner-slider .owl-nav button {
    display: block
}

.banner-area-1 .banner-slider .owl-nav button.owl-prev {
    margin-bottom: 10px
}

.banner-area-2 .banner-inner {
    padding: 343px 0 365px;
    position: relative
}

.banner-area-2 .banner-inner .btn-wrap .btn-base {
    margin-right: 28px
}

.banner-area-2 .banner-slider .owl-nav {
    position: absolute;
    left: 10px;
    top: 50%;
    z-index: 9
}

.banner-area-2 .banner-slider .owl-nav button {
    display: block
}

.banner-area-2 .banner-slider .owl-nav button.owl-prev {
    margin-bottom: 10px
}

.banner-slider .owl-item.active .b-animate-1 {
    -webkit-animation: 1.5s .2s fadeInLeft both;
    animation: 1.5s .2s fadeInLeft both
}

.banner-slider .owl-item.active .b-animate-2 {
    -webkit-animation: 1.5s .4s fadeInLeft both;
    animation: 1.5s .4s fadeInLeft both
}

.banner-slider .owl-item.active .b-animate-3 {
    -webkit-animation: 1.5s .6s fadeInLeft both;
    animation: 1.5s .6s fadeInLeft both
}

.banner-slider .owl-item.active .b-animate-4 {
    -webkit-animation: 1.5s .8s fadeInLeft both;
    animation: 1.5s .8s fadeInLeft both
}

.banner-slider .owl-item.active .b-animate-5 {
    -webkit-animation: 1.5s .9s fadeInLeft both;
    animation: 1.5s .9s fadeInLeft both
}

.feature-area {
    background: #fff;
    -webkit-box-shadow: 0 4px 50px rgba(0, 35, 90, 0.1);
    box-shadow: 0 4px 50px rgba(0, 35, 90, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    top: -60px;
    z-index: 2
}

.feature-wrap {
    padding: 30px 40px 35px;
    border-radius: 10px
}

.feature-wrap.bg-pink {
    background: rgba(250, 67, 24, 0.1)
}

.feature-wrap.bg-ash {
    background: rgba(8, 12, 36, 0.1)
}

.feature-wrap.bg-sky {
    background: rgba(0, 133, 239, 0.1)
}

.feature-wrap .icon {
    background: var(--main-color);
    height: 60px;
    width: 60px;
    line-height: 60px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 50%;
    position: relative;
    margin: 5px 0 22px 5px
}

.feature-wrap .icon:after {
    position: absolute;
    content: "";
    left: -5px;
    top: -5px;
    background: var(--heading-color);
    height: 60px;
    border-radius: 50%;
    width: 60px;
    z-index: -1
}

.feature-wrap .icon img {
    margin: auto;
    width: auto
}

.feature-wrap p {
    margin-top: 12px;
    margin-bottom: 0
}

.feature-slider .owl-nav {
    position: absolute;
    right: 0;
    top: -128px
}

.feature-slider .owl-nav .owl-prev {
    margin-right: 10px
}

.about-area-2 .about-inner-wrap {
    margin-right: 64px
}

.about-area-2 .about-thumb-wrap .img-1 {
    top: 0;
    right: 0;
    left: auto;
    bottom: auto
}

.about-area-2 .about-thumb-wrap .img-2 {
    margin-left: -58px
}

.about-area-2 .about-thumb-wrap .img-3 {
    margin-left: -168px;
    margin-bottom: -73px
}

.about-area-2 .about-thumb-wrap .exprience-wrap {
    right: auto;
    top: auto;
    bottom: -88px;
    left: -56px
}

.about-thumb-wrap {
    position: relative
}

.about-thumb-wrap .img-1 {
    position: absolute;
    left: -39px;
    bottom: -53px;
    z-index: -1
}

.about-thumb-wrap .img-3 {
    margin-left: -215px;
    margin-bottom: -63px;
    vertical-align: bottom
}

.about-thumb-wrap .exprience-wrap {
    display: inline-block;
    text-align: center;
    position: absolute;
    right: -20px;
    top: 17px
}

.about-thumb-wrap .exprience-wrap img {
    margin-bottom: -15px
}

.about-thumb-wrap .exprience-wrap .details {
    background: url(../img/about/shape-2.png);
    background-size: cover;
    padding: 45px 30px;
    background-position: center
}

.about-thumb-wrap .exprience-wrap .details h1 {
    font-size: 64px;
    font-weight: 900;
    color: var(--main-color);
    margin-bottom: 0;
    line-height: 83px
}

.about-thumb-wrap .exprience-wrap .details p {
    font-weight: 600;
    color: var(--heading-color);
    line-height: 19px
}

.about-inner-wrap {
    margin-left: 58px
}

.about-inner-wrap .section-title .content {
    margin-top: 10px;
    padding-left: 10px;
    font-size: 20px;
    font-weight: 500;
    color: var(--heading-color);
    line-height: 30px;
    margin-bottom: 20px
}

.about-inner-wrap .btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #d9d9d9;
    margin-top: 25px;
    padding-top: 30px
}

.about-inner-wrap .btn-wrap .btn {
    margin-top: 0
}

.about-inner-wrap .btn-wrap .author-wrap {
    margin: 0 auto;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.about-inner-wrap .btn-wrap .author-wrap img {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-right: 20px
}

.about-inner-wrap .btn-wrap .author-wrap p {
    margin-bottom: 0;
    border-top: 1px solid #e4e4e4;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #4d5765
}

.about-inner-wrap .btn-wrap .video-wrap {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--heading-color);
    margin-left: 100px
}

.about-inner-wrap .btn-wrap .video-wrap span {
    margin-left: 10px;
    text-decoration: underline
}

.about-inner-wrap .btn-wrap .video-wrap .video-play-btn {
    height: 45px;
    width: 45px;
    line-height: 45px
}

.about-inner-wrap .btn-wrap .video-wrap .video-play-btn:after {
    height: 55px;
    width: 55px;
    top: -5px;
    left: -5px;
    border: 0;
    background: rgba(250, 67, 24, 0.3)
}

.about-inner-wrap .btn-wrap .video-wrap .video-play-btn i,
.about-inner-wrap .btn-wrap .video-wrap .video-play-btn svg {
    font-size: 14px;
    margin-left: 2px
}

.single-about-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 9px
}

.single-about-wrap .icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-right: 15px
}

.single-about-wrap h6 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0
}

.list-inner-wrap {
    margin: 0;
    padding: 0
}

.list-inner-wrap li {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--heading-color);
    font-weight: 500
}

.list-inner-wrap li+li {
    margin-top: 14px
}

.list-inner-wrap li img,
.list-inner-wrap li i,
.list-inner-wrap li svg {
    margin-right: 8px
}

.wcu-area .img-1 {
    position: absolute;
    top: 69px;
    left: 37px
}

.wcu-area .img-2 {
    position: absolute;
    bottom: -28px;
    right: 0
}

.wcu-area-2 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 168px
}

.single-wcu-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 22px
}

.single-wcu-wrap .icon {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    padding: 5px 0 0 5px;
    z-index: 0;
    margin-right: 15px
}

.single-wcu-wrap .icon:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    height: 50px;
    width: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    z-index: -1
}

.single-wcu-wrap .details h6 {
    color: #fff;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px
}

.single-wcu-wrap .details p {
    color: #d6d6d6;
    line-height: 26px;
    margin-bottom: 0
}

.single-wcu-wrap.style-2 .icon {
    height: 50px;
    width: 50px;
    background: var(--main-color);
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    z-index: 1;
    padding: 0;
    margin-top: 10px
}

.single-wcu-wrap.style-2 .icon:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--main-color);
    z-index: -1;
    border: 0;
    border-radius: 50%
}

.fact-area .fact-counter-area {
    -webkit-transform: translate(0px, -120px);
    transform: translate(0px, -120px);
    margin-bottom: -120px
}

.fact-counter-area {
    border-top: 5px solid #fff;
    padding: 39px 45px 11px;
    -webkit-transform: translate(0px, -114px);
    transform: translate(0px, -114px);
    margin-bottom: -114px
}

.single-fact-wrap {
    position: relative;
    margin-bottom: 30px;
    padding-left: 15px
}

.single-fact-wrap:after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    height: 140px;
    width: 4px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: #fff
}

.single-fact-wrap h2 {
    color: var(--main-color);
    font-weight: 700;
    font-size: 44px;
    line-height: 57px;
    margin-bottom: 8px
}

.single-fact-wrap h5 {
    line-height: 31px;
    color: #fff;
    margin-bottom: 10px
}

.single-fact-wrap p {
    line-height: 26px;
    color: #d6d6d6;
    margin-bottom: 0
}

.single-team-wrap {
    position: relative;
    background: #fff;
    -webkit-box-shadow: 0 10px 30px rgba(7, 36, 95, 0.06);
    box-shadow: 0 10px 30px rgba(7, 36, 95, 0.06);
    border-radius: 10px;
    text-align: center;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.single-team-wrap .thumb {
    position: relative
}

.single-team-wrap .thumb:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: var(--heading-color);
    mix-blend-mode: soft-light;
    opacity: .6;
    border-radius: 10px 10px 0 0
}

.single-team-wrap:hover {
    background: var(--main-color)
}

.single-team-wrap:hover .details p,
.single-team-wrap:hover .details h5 {
    color: #fff
}

.single-team-wrap:hover .details .hover-icon {
    background: #fff;
    color: var(--main-color)
}

.single-team-wrap:hover .details .hover-icon:before {
    background: rgba(255, 255, 255, 0.5)
}

.single-team-wrap .details {
    padding: 27px 30px 28px;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    position: relative
}

.single-team-wrap .details h5 {
    line-height: 35px;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    margin-bottom: -2px
}

.single-team-wrap .details p {
    line-height: 24px;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    margin-bottom: 0
}

.single-team-wrap .details .hover-icon {
    background: var(--main-color);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    line-height: 40px;
    color: #fff;
    position: absolute;
    right: 30px;
    top: -50%;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
    margin-top: 15px;
    cursor: pointer
}

.single-team-wrap .details .hover-icon:before {
    content: "";
    position: absolute;
    height: 60px;
    width: 60px;
    background: rgba(250, 67, 24, 0.4);
    border-radius: 50%;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    z-index: -1;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.single-team-wrap .details .hover-icon i,
.single-team-wrap .details .hover-icon svg {
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.single-team-wrap .details .hover-icon:hover .fa-plus {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    color: var(--main-color)
}

.single-team-wrap .details .hover-icon:hover .social-area {
    opacity: 1
}

.single-team-wrap .details .social-area {
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    position: absolute;
    right: 50%;
    top: 0;
    -webkit-transform: translate(50%, -100%);
    transform: translate(50%, -100%);
    transition: all .3s ease-in;
    margin-bottom: 0;
    padding: 0;
    margin-top: -20px;
    opacity: 0
}

.single-team-wrap .details .social-area li {
    display: block;
    margin: 0
}

.single-team-wrap .details .social-area li+li {
    margin-top: 10px
}

.single-team-wrap .details .social-area li a {
    background: #fff;
    -webkit-box-shadow: 0 4px 15px rgba(7, 36, 95, 0.15);
    box-shadow: 0 4px 15px rgba(7, 36, 95, 0.15);
    width: 40px;
    line-height: 42px;
    height: 40px;
    color: var(--paragraph-color);
    border-radius: 50%;
    display: block;
    text-align: center;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.single-team-wrap .details .social-area li a i,
.single-team-wrap .details .social-area li a svg {
    -webkit-transition: none;
    transition: none
}

.single-team-wrap .details .social-area li a:hover {
    background: var(--main-color);
    -webkit-box-shadow: 0 8px 19px rgba(255, 76, 19, 0.3);
    box-shadow: 0 8px 19px rgba(255, 76, 19, 0.3);
    color: #fff
}

.team-slider .owl-nav button {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    position: absolute
}

.team-slider .owl-nav .owl-prev {
    left: -90px
}

.team-slider .owl-nav .owl-next {
    position: absolute;
    right: -90px
}

.call-to-contact-area {
    margin-top: -120px;
    position: relative;
    z-index: 0
}

.call-to-contact-area img {
    position: absolute;
    width: 73.5%;
    left: 0;
    bottom: 0;
    z-index: -1
}

.call-to-contact-area .section-title .subtitle {
    background-size: 98% 100%
}

.cta-inner-wrap {
    background: url(../img/contact/bg.png);
    padding: 40px 50px
}

.single-cta-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 41px;
    margin-left: 14px
}

.single-cta-wrap .icon {
    width: 50px;
    height: 50px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    background: var(--main-color);
    line-height: 52px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    position: relative;
    z-index: 0
}

.single-cta-wrap .icon:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #1f355b;
    opacity: .3;
    height: 76px;
    width: 76px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1
}

.single-cta-wrap .details {
    margin-left: 33px
}

.single-cta-wrap .details h6 {
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    color: #fff;
    margin-bottom: 5px
}

.single-cta-wrap .details h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 39px;
    color: var(--main-color);
    margin-bottom: 0
}

.testimonial-area {
    background: #f8f9fa;
    position: relative
}

.testimonial-slider-wrap {
    margin-top: 50px;
    padding: 30px 15px
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 20px 15px;
    transition: all .4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05)
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1)
}

.testimonial-content {
    position: relative;
    margin-bottom: 30px
}

.quote-icon {
    position: absolute;
    top: -15px;
    right: 0;
    color: #fd7e14;
    font-size: 40px;
    opacity: .1
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fd7e14
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.author-info h4 {
    font-size: 18px;
    color: #1f355b;
    margin-bottom: 5px
}

.author-info span {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 8px
}

.rating {
    color: #ffc107;
    font-size: 14px
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 126, 20, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .4s ease
}

.gallery-item:hover .gallery-overlay {
    opacity: 1
}

.gallery-item:hover img {
    transform: scale(1.1)
}

.gallery-content {
    text-align: center;
    color: #fff;
    padding: 20px
}

.gallery-content h5 {
    font-size: 20px;
    margin-bottom: 5px
}

.gallery-content p {
    font-size: 14px;
    margin: 0
}

.testimonial-slider .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1
}

.testimonial-slider .owl-prev,
.testimonial-slider .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all .3s ease
}

.testimonial-slider .owl-prev {
    left: -25px
}

.testimonial-slider .owl-next {
    right: -25px
}

.testimonial-slider .owl-prev:hover,
.testimonial-slider .owl-next:hover {
    background: #fd7e14 !important;
    color: #fff !important
}

@media (max-width: 991px) {
    .testimonial-card {
        padding: 30px;
        margin: 15px 10px
    }

    .gallery-item {
        height: 250px
    }

    .testimonial-slider .owl-nav {
        display: none
    }
}

.portfolio-area {
    background-position: center !important;
    background-size: cover !important
}

.portfolio-area .section-title {
    margin-bottom: 50px
}

.swiper-container {
    margin: -305px -93px 253px;
    -webkit-transform: translate(0px, 134px);
    transform: translate(0px, 134px);
    padding-top: 172px
}

.swiper-container .button {
    height: 55px;
    width: 55px;
    line-height: 54px;
    border-radius: 50%;
    background: #fff;
    border: 0;
    -webkit-box-shadow: 0 8px 20px rgba(7, 36, 95, 0.15);
    box-shadow: 0 8px 20px rgba(7, 36, 95, 0.15);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    text-align: center;
    position: absolute;
    top: 22px;
    left: auto
}

.swiper-container .button img {
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.swiper-container .button:hover {
    background: var(--main-color);
    color: #fff;
    -webkit-box-shadow: 0 8px 19px rgba(255, 76, 19, 0.3);
    box-shadow: 0 8px 19px rgba(255, 76, 19, 0.3)
}

.swiper-container .button:hover img {
    -webkit-filter: brightness(99);
    filter: brightness(99)
}

.swiper-container .swiper-button-prev {
    right: 158px
}

.swiper-container .swiper-button-next {
    right: 93px
}

.swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.swiper-slide.swiper-slide-active .single-portfolio-wrap {
    -webkit-transform: scale(1.7);
    transform: scale(1.7)
}

.swiper-slide.swiper-slide-active .single-portfolio-wrap .portfolio-details {
    opacity: 1
}

.swiper-slide.swiper-slide-next {
    z-index: -1
}

.single-portfolio-wrap {
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    margin: 84px 0;
    position: relative
}

.single-portfolio-wrap .portfolio-details {
    position: absolute;
    left: 0;
    bottom: 0;
    width: -webkit-fill-available;
    background: #fff;
    border-radius: 5px;
    margin: 20px;
    padding: 20px 23px 16px 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.single-portfolio-wrap .portfolio-details .details p {
    font-weight: 500;
    font-size: 10px;
    line-height: initial;
    color: var(--main-color);
    margin-bottom: 9px
}

.single-portfolio-wrap .portfolio-details .details h4 {
    font-size: 17px;
    margin-bottom: 0
}

.single-portfolio-wrap .portfolio-details .icon {
    height: 28px;
    width: 28px;
    background: var(--main-color);
    border-radius: 5px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    margin-left: auto;
    font-size: 12px
}

.partner-area-2 {
    background-size: 100% 100% !important;
    background-position: 0 0 !important;
    background-repeat: no-repeat !important;
    position: relative;
    top: -109px;
    z-index: 1;
    margin-bottom: -109px
}

.partner-slider .thumb {
    cursor: pointer
}

.partner-slider .thumb:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0)
}

.partner-slider .thumb img {
    width: auto;
    margin: auto;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.partner-slider .owl-nav {
    display: none
}

.skill-area .section-title {
    margin-bottom: 19px
}

.skill-area .section-title .subtitle.style-2 {
    background-size: 95% 100%
}

.skill-area .thumb {
    position: relative
}

.skill-area .thumb.img-2 {
    margin-top: 90px
}

.single-progressbar .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 7px
}

.single-progressbar .title h6 {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0
}

.single-progressbar .title .progress-count-wrap {
    margin-left: auto;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: var(--heading-color);
    font-family: var(--heading-font)
}

.progress-item {
    margin-bottom: 28px
}

.progress-item .progress-count-wrap {
    position: absolute;
    top: -35px;
    right: 16px
}

.progress-item .progress-count.counting {
    font-weight: 600;
    font-size: 16px;
    color: var(--heading-color);
    font-family: "Courier New", Courier, monospace
}

.progress-item.add-progress-start .progress-count-wrap {
    position: absolute;
    top: -35px;
    right: -5px
}

.progress-item.add-progress-full .progress-count-wrap {
    position: absolute;
    top: -35px;
    right: 11px
}

.progress-item .progress-bg {
    position: relative;
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0
}

.progress-item .progress-bg .progress-rate {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    border-radius: 3px;
    background: var(--main-color);
    -webkit-transition: 2.5s;
    transition: 2.5s
}

.video-area {
    position: relative;
    z-index: 0;
    overflow: hidden
}

.video-area .video-thumb-wrap {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 80%
}

.video-area .video-thumb-wrap img {
    height: 100%
}

.video-area .video-thumb-wrap .video-play-btn {
    position: absolute;
    top: 50%;
    left: 68.5%;
    -webkit-animation: none;
    animation: none
}

.video-area .video-thumb-wrap .video-play-btn:after {
    height: 100px;
    width: 100px;
    background: var(--main-color);
    opacity: .3;
    border: 0;
    left: -20px;
    top: -20px
}

.video-area .cta-inner-wrap {
    position: relative
}

.video-area .cta-inner-wrap .section-title .subtitle.style-2 {
    background: url(../img/shape/bg-subtitle.png);
    background-size: 100% 100%;
    background-position: bottom;
    background-repeat: no-repeat
}

.video-area .cta-inner-wrap .single-cta-wrap .icon {
    background: #fff;
    color: var(--main-color)
}

.video-area .cta-inner-wrap .single-cta-wrap .icon:after {
    background: #fff
}

.video-area .cta-inner-wrap .single-cta-wrap .details h3 {
    color: #fff
}

.video-area .cta-inner-wrap .btn {
    color: var(--main-color)
}

.video-area .cta-inner-wrap .btn:after {
    background: var(--main-color)
}

.video-area .cta-inner-wrap .btn:hover {
    background: #fff
}

.video-area .cta-inner-wrap .btn:hover:after {
    background: #fff
}

.contact-area {
    background: #fff;
    -webkit-box-shadow: 0 10px 50px rgba(8, 12, 36, 0.08);
    box-shadow: 0 10px 50px rgba(8, 12, 36, 0.08)
}

.contact-area .contact-form {
    padding: 29px 40px 40px
}

.contact-area .contact-form h3 {
    border-bottom: 2px solid var(--main-color);
    margin-bottom: 40px;
    padding-bottom: 4px
}

.contact-information-wrap {
    background: var(--main-color);
    padding: 29px 40px 40px
}

.contact-information-wrap h3 {
    border-bottom: 2px solid #fff;
    margin-bottom: 40px;
    padding-bottom: 4px;
    color: #fff
}

.contact-information-wrap .single-contact-info-wrap {
    background: #fff;
    border-radius: 5px;
    padding: 23px 30px 27px;
    margin-bottom: 24px
}

.contact-information-wrap .single-contact-info-wrap h6 {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 9px
}

.contact-information-wrap .single-contact-info-wrap .media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.contact-information-wrap .single-contact-info-wrap .media .icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    height: 50px;
    width: 50px;
    line-height: 50px;
    background: var(--main-color);
    border-radius: 5px;
    text-align: center;
    color: #fff;
    margin-right: 10px;
    font-size: 20px
}

.contact-information-wrap .single-contact-info-wrap .media p {
    line-height: 26px;
    margin-bottom: 0
}

.contact-g-map {
    margin-bottom: -11px
}

.contact-g-map iframe {
    line-height: 1 !important;
    border: 0;
    width: 100%;
    height: 600px
}

.request-quote-inner {
    background: #fff;
    -webkit-box-shadow: 0 10px 50px rgba(8, 12, 36, 0.1);
    box-shadow: 0 10px 50px rgba(8, 12, 36, 0.1);
    position: relative;
    top: -168px;
    margin-bottom: -168px
}

.request-quote-inner .nav-pills {
    background: #161922
}

.request-quote-inner .nav-pills .nav-item {
    width: 50%
}

.request-quote-inner .nav-pills .nav-item .nav-link {
    width: 100%;
    height: 80px;
    padding: 0;
    border-radius: 0;
    font-weight: 700;
    font-size: 16px;
    color: #fff
}

.request-quote-inner .nav-pills .nav-item .nav-link.active {
    background: var(--main-color)
}

.request-quote-inner .nav-pills .nav-item .nav-link img {
    margin-right: 15px
}

.request-quote-inner .tab-content .tab-pane {
    padding: 46px 50px 50px
}

.request-quote-inner .tab-content .tab-pane .subtitle {
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 14px
}

.request-quote-inner .tab-content .tab-pane .single-check-list {
    margin: 0 0 40px;
    padding: 0;
    list-style: none
}

.request-quote-inner .tab-content .tab-pane .single-check-list li {
    display: inline-block
}

.request-quote-inner .tab-content .tab-pane .single-check-list li+li {
    margin-left: 30px
}

.request-quote-inner .tab-content .tab-pane .btn {
    height: 55px;
    line-height: 55px;
    font-size: 14px
}

.quote-wrap {
    padding: 31px 40px 40px;
    margin-left: 26px
}

.quote-wrap h4 {
    color: #fff;
    line-height: 40px;
    margin-bottom: 17px
}

.quote-wrap p {
    color: #fff;
    line-height: 26px;
    margin-bottom: 48px
}

.quote-wrap .btn {
    height: 55px;
    line-height: 55px;
    color: var(--main-color);
    font-size: 14px
}

.quote-wrap .btn:hover {
    background: var(--heading-color);
    color: #fff
}

.quote-wrap .btn:hover:after {
    background: var(--heading-color)
}

.single-pricing-inner {
    background: #fff;
    -webkit-box-shadow: 0 6px 30px rgba(0, 15, 87, 0.08);
    box-shadow: 0 6px 30px rgba(0, 15, 87, 0.08);
    padding: 44px 60px 50px;
    margin-bottom: 30px
}

.single-pricing-inner .header {
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 4px;
    margin-bottom: 26px
}

.single-pricing-inner .header h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    display: inline-block;
    position: relative;
    margin-bottom: 17px
}

.single-pricing-inner .header h4:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 100%;
    background: var(--main-color)
}

.single-pricing-inner .header .price h2 {
    font-weight: 900;
    font-size: 64px;
    line-height: 83px;
    color: var(--main-color)
}

.single-pricing-inner .header .price sup {
    font-weight: 700;
    font-size: 36px;
    line-height: 47px;
    color: var(--main-color);
    font-family: var(--heading-font)
}

.single-pricing-inner .header .price span {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--heading-color);
    margin-left: -26px;
    position: relative;
    bottom: -5px
}

.single-pricing-inner .single-list-inner {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 38px
}

.single-pricing-inner .single-list-inner li {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px
}

.single-pricing-inner .single-list-inner li+li {
    margin-top: 18px
}

.single-pricing-inner .single-list-inner li i,
.single-pricing-inner .single-list-inner li svg {
    color: var(--main-color);
    margin-right: 10px
}

.single-pricing-inner .single-list-inner li.unavailable {
    color: #d6d6d6
}

.single-pricing-inner .single-list-inner li.unavailable i,
.single-pricing-inner .single-list-inner li.unavailable svg {
    color: #d6d6d6
}

.single-pricing-inner .btn {
    height: 55px;
    line-height: 55px;
    font-size: 14px;
    background: var(--heading-color)
}

.faq-accordion .single-accordion-inner {
    border: 0;
    margin-bottom: 30px;
    background: #fff;
    -webkit-box-shadow: 0 4px 20px rgba(8, 12, 36, 0.08);
    box-shadow: 0 4px 20px rgba(8, 12, 36, 0.08)
}

.faq-accordion .single-accordion-inner .accordion-header .accordion-button {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--heading-color);
    background: #fff;
    border: 0;
    padding: 10px 30px;
    -webkit-box-shadow: none;
    box-shadow: none
}

.faq-accordion .single-accordion-inner .accordion-header .accordion-button:not(.collapsed) {
    background: var(--main-color);
    color: #fff
}

.faq-accordion .single-accordion-inner .accordion-header .accordion-button:not(.collapsed) span {
    color: #fff
}

.faq-accordion .single-accordion-inner .accordion-header .accordion-button:not(.collapsed):after {
    background: #fff
}

.faq-accordion .single-accordion-inner .accordion-header .accordion-button:not(.collapsed):before {
    display: none
}

.faq-accordion .single-accordion-inner .accordion-header .accordion-button span {
    color: var(--main-color);
    margin-right: 7px
}

.faq-accordion .single-accordion-inner .accordion-header .accordion-button:after {
    background: var(--main-color);
    height: 2px;
    width: 12px;
    background: var(--main-color);
    -webkit-transform: none;
    transform: none
}

.faq-accordion .single-accordion-inner .accordion-header .accordion-button:before {
    content: "";
    background: var(--main-color);
    height: 12px;
    width: 2px;
    position: absolute;
    right: 35px;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.faq-accordion .single-accordion-inner .accordion-body {
    padding: 24px 30px
}

.service-area .section-title .subtitle.style-2 {
    background-size: 95% 100%
}

.service-area.style-2 .single-service-wrap {
    margin-top: 0;
    -webkit-transform: none;
    transform: none;
    margin-bottom: 40px
}

.service-area.style-2 .single-service-wrap .details {
    padding: 40px 29px 30px
}

.single-service-wrap {
    -webkit-transform: translate(0px, 50%);
    transform: translate(0px, 50%);
    margin-top: -210px;
    z-index: 1;
    position: relative
}

.single-service-wrap:hover .thumb:before,
.single-service-wrap:hover .thumb:after {
    border-color: transparent transparent transparent var(--main-color)
}

.single-service-wrap:hover .details {
    background: var(--main-color)
}

.single-service-wrap:hover .details p,
.single-service-wrap:hover .details h5 {
    color: #fff
}

.single-service-wrap:hover .details p {
    border-bottom-color: #fff
}

.single-service-wrap:hover .details .btn-wrap .read-more-text {
    color: #fff
}

.single-service-wrap:hover .details .btn-wrap .read-more-text span {
    background: #fff;
    color: var(--main-color)
}

.single-service-wrap .thumb {
    margin: 0 30px;
    position: relative;
    z-index: 0
}

.single-service-wrap .thumb:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 0 0 39px;
    border-color: transparent transparent transparent #fff;
    bottom: 68px;
    left: -30px;
    z-index: -1;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.single-service-wrap .thumb:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 0 0 39px;
    border-color: transparent transparent transparent #fff;
    bottom: 68px;
    right: -30px;
    -webkit-transform: translate(0px, -175%);
    transform: rotate(270deg);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    z-index: -1
}

.single-service-wrap .thumb img {
    width: 100%
}

.single-service-wrap .thumb .icon {
    height: 70px;
    width: 70px;
    background: var(--main-color);
    border-radius: 50%;
    text-align: center;
    line-height: 68px;
    position: relative;
    right: 20px;
    margin-left: auto;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    margin-bottom: -70px
}

.single-service-wrap .thumb .icon img {
    width: auto
}

.single-service-wrap .details {
    background: #fff;
    -webkit-box-shadow: 0 6px 30px rgba(0, 35, 90, 0.08);
    box-shadow: 0 6px 30px rgba(0, 35, 90, 0.08);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    padding: 32px 29px 30px
}

.single-service-wrap .details h5 {
    margin-bottom: 8px;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    line-height: 31px
}

.single-service-wrap .details p {
    line-height: 26px;
    border-bottom: 1px solid rgba(8, 12, 36, 0.15);
    padding-bottom: 17px;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    margin-bottom: 20px
}

.single-service-wrap .details .btn-wrap .read-more-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    color: var(--heading-color)
}

.single-service-wrap .details .btn-wrap .read-more-text:after {
    display: none
}

.single-service-wrap .details .btn-wrap .read-more-text span {
    display: inline-block;
    height: 26px;
    width: 26px;
    line-height: 26px;
    border-radius: 50%;
    margin-left: auto;
    text-align: center;
    background: var(--main-color);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    color: #fff
}

.service-details-wrap .thumb .icon {
    height: 70px;
    width: 70px;
    background: var(--main-color);
    border-radius: 50%;
    text-align: center;
    line-height: 68px;
    position: relative;
    right: 50px;
    margin-left: auto;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    margin-bottom: -70px
}

.service-details-wrap .thumb .icon img {
    width: auto
}

.service-details-wrap h2 {
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    margin-top: 28px;
    margin-bottom: 9px
}

.service-details-wrap p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 18px
}

.service-details-wrap p.last-para {
    margin-bottom: -8px
}

.service-details-wrap .subtitle {
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 16px;
    margin-bottom: 21px;
    line-height: 39px
}

.service-details-wrap .list-inner-wrap li {
    position: relative;
    padding-left: 29px;
    line-height: 26px
}

.service-details-wrap .list-inner-wrap li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    background: #fff;
    border: 4px dotted #fd7e14;
    height: 14px;
    width: 14px
}

.service-details-wrap .video-thumb-wrap .video-play-btn {
    -webkit-animation: none;
    animation: none
}

.service-details-wrap .video-thumb-wrap .video-play-btn:after {
    height: 100px;
    width: 100px;
    background: var(--main-color);
    opacity: .3;
    border: 0;
    left: -20px;
    top: -20px
}

.single-service-wrap-2 {
    position: relative;
    z-index: 0;
    border-radius: 6px;
    padding: 40px;
    background-size: cover !important;
    -webkit-box-shadow: 0 4px 30px rgba(8, 12, 36, 0.1);
    box-shadow: 0 4px 30px rgba(8, 12, 36, 0.1)
}

.single-service-wrap-2:hover:after {
    opacity: 0
}

.single-service-wrap-2:hover .details h5 {
    color: #fff
}

.single-service-wrap-2:hover .details p {
    color: #fff
}

.single-service-wrap-2:hover .details .btn-wrap .read-more-text {
    color: #fff
}

.single-service-wrap-2:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: -1;
    border-radius: 5px;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.single-service-wrap-2:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    height: 4px;
    width: 70%;
    background: #fd7e14;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}

.single-service-wrap-2 .icon {
    margin-bottom: 36px
}

.single-service-wrap-2 .icon img {
    width: auto
}

.single-service-wrap-2 .icon .img-2 {
    position: absolute;
    right: 0;
    top: 0
}

.single-service-wrap-2 .details h5 {
    font-weight: 900;
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 14px;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.single-service-wrap-2 .details p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    padding-bottom: 25px;
    border-bottom: 1px solid #d6d6d6;
    margin-bottom: 30px;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.single-service-wrap-2 .details .btn-wrap .read-more-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    font-size: 14px;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    color: var(--main-color)
}

.single-service-wrap-2 .details .btn-wrap .read-more-text:after {
    display: none
}

.single-service-wrap-2 .details .btn-wrap .read-more-text span {
    display: inline-block;
    height: 26px;
    width: 26px;
    line-height: 26px;
    border-radius: 50%;
    margin-left: auto;
    text-align: center;
    background: #fd7e14;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    color: #fff
}

.service-slider .owl-nav button {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    position: absolute
}

.service-slider .owl-nav .owl-prev {
    left: -90px
}

.service-slider .owl-nav .owl-next {
    position: absolute;
    right: -90px
}

.sidebar-area .widget {
    margin-bottom: 40px;
    border-radius: 0;
    background: #1f355b;
    padding: 40px;
    color: #fff
}

.sidebar-area .widget .widget-title {
    margin-bottom: 48px;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    line-height: 31px;
    position: relative;
    display: inline-block
}

.sidebar-area .widget .widget-title:after {
    content: "";
    position: absolute;
    width: 60px;
    color: #fff;
    height: 3px;
    bottom: -16px;
    left: 0;
    background: #fd7e14;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.sidebar-area .widget .widget-title span {
    position: absolute;
    color: #fff;
    height: 3px;
    width: 3px;
    background: var(--heading-color);
    bottom: -14.5px;
    left: 65px
}

.sidebar-area .widget .widget-title span:after {
    content: "";
    position: absolute;
    width: 3px;
    color: #fff;
    height: 3px;
    bottom: 0;
    left: 8px;
    background: var(--heading-color)
}

.sidebar-area .widget .widget-title.style-white {
    color: #fff
}

.sidebar-area .widget .widget-title.style-white:after {
    background: #fff
}

.sidebar-area .widget .widget-title.style-white span {
    background: #fff
}

.sidebar-area .widget .widget-title.style-white span:after {
    background: #fff
}

.widget_search .search-form {
    position: relative;
    background: #fff;
    border-radius: 0;
    height: 55px;
    line-height: 55px;
    overflow: hidden
}

.widget_search .search-form .form-group {
    margin-bottom: 0
}

.widget_search .search-form input {
    width: 100%;
    border: 0;
    height: 55px;
    background: #fff;
    padding: 0 48px 0 20px
}

.widget_search .search-form input:focus {
    border: 0;
    outline: 0
}

.widget_search .search-form button {
    position: absolute;
    right: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0 20px;
    top: 0;
    color: var(--main-color);
    height: 55px
}

.widget_search .search-form button:active,
.widget_search .search-form button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0
}

.widget-recent-post ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.widget-recent-post ul li {
    border: 0;
    padding: 0;
    margin: 0
}

.widget-recent-post ul li:last-child {
    border-bottom: 0 !important;
    padding-bottom: 0;
    margin-bottom: 0
}

.widget-recent-post ul li:last-child .single-recent-post {
    margin-bottom: 0
}

.single-recent-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px
}

.single-recent-post .thumb {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-right: 15px
}

.single-recent-post .details h6 {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
    margin-top: -10px
}

.single-recent-post .details p {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 0
}

.single-recent-post .details p i,
.single-recent-post .details p svg {
    color: var(--main-color);
    margin-right: 10px
}

.widget_support,
.widget_download,
.widget_catagory {
    padding: 34px 40px 40px !important
}

.widget_support ul,
.widget_download ul,
.widget_catagory ul {
    padding-left: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    margin-top: 0
}

.widget_download ul li,
.widget_catagory ul li {
    list-style: none;
    -webkit-transition: .6s;
    transition: .6s;
    margin-bottom: 10px;
    margin-top: 0
}

.widget_download ul li:last-child,
.widget_catagory ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0
}

.widget_catagory ul li a {
    position: relative;
    color: #fff;
    padding: 18px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    border-radius: 0;
    background: rgba(8, 12, 36, 0.1)
}

.widget_catagory ul li a span {
    display: inline-block;
    margin-left: auto
}

.widget_download ul li a:hover,
.widget_catagory ul li a:hover {
    background: var(--main-color);
    color: #fff
}

.widget_catagory ul li a i {
    padding-right: 5px
}

.widget_catagory ul li:last-child {
    margin-bottom: 0
}

.widget_download ul li a {
    position: relative;
    color: var(--paragraph-color);
    padding: 20.5px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    border-radius: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(8, 12, 36, 0.1)
}

.widget_download ul li a i,
.widget_download ul li a svg {
    margin-right: 6px;
    color: var(--main-color);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.widget_download ul li a:hover i,
.widget_download ul li a:hover svg {
    color: #fff
}

.widget_support {
    padding-bottom: 34px !important
}

.widget_support .widget-title:after {
    left: 50% !important;
    -webkit-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important
}

.widget_support .widget-title span {
    left: 151px !important
}

.widget_support p {
    color: #fff;
    margin-bottom: 28px
}

.widget_support p.contact {
    font-weight: 600;
    margin-bottom: 7px;
    line-height: 26px
}

.widget_support p.contact i,
.widget_support p.contact svg {
    margin-right: 10px
}

.widget_author .thumb {
    margin-bottom: 23px
}

.widget_author h5 {
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 21px
}

.widget_author p {
    line-height: 26px;
    margin-bottom: 24px
}

.widget_author .social-media li {
    margin: 0 -4px 0 0
}

.widget_author .social-media li a {
    background: transparent;
    width: auto;
    height: auto;
    margin: 0 15px;
    color: #565969
}

.widget_author .social-media li a:hover {
    color: var(--main-color)
}

.widget_author .social-media li+li {
    border-left: 1px solid rgba(86, 89, 105, 0.2)
}

.widget_tags .tagcloud a {
    height: 40px;
    line-height: 39px;
    padding: 0 20px;
    border-radius: 0;
    display: inline-block;
    margin: 0 7px 10px 0;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    background: #080c24;
    -webkit-box-shadow: 0 2px 14px rgba(4, 6, 66, 0.05);
    box-shadow: 0 2px 14px rgba(4, 6, 66, 0.05)
}

.widget_tags .tagcloud a:hover {
    background: var(--main-color);
    color: #fff
}

.widget_checkbox_list .single-checkbox:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0
}

.single-checkbox {
    display: block;
    position: relative;
    padding-left: 28px;
    margin-bottom: 7px;
    padding-bottom: 7px;
    cursor: pointer;
    font-size: 16px;
    color: var(--heading-color);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-bottom: 1px solid #e3e3e3
}

.single-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.single-checkbox input:checked~.checkmark {
    background-color: var(--main-color)
}

.single-checkbox input:checked~.checkmark:after {
    display: block
}

.single-checkbox .checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eae1d6
}

.single-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.widget-video-inner {
    border-radius: 5px
}

.widget-video-inner .thumb {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px
}

.widget-video-inner .thumb:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3)
}

.widget-video-inner .thumb .video-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    line-height: 52px;
    z-index: 1
}

.widget-video-inner .thumb .video-btn i {
    font-size: 18px
}

.widget-video-inner .thumb .video-btn:after {
    width: 70px;
    height: 70px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.widget-video-inner .details {
    margin-top: 10px
}

.widget-video-inner .details ul {
    padding: 0;
    margin: 0
}

.widget-video-inner .details ul li {
    list-style: none;
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    border-bottom: 1px dashed #e3e3e3;
    padding-bottom: 10px;
    margin-bottom: 10px
}

.widget-video-inner .details ul li:last-child {
    border-bottom: 0
}

.widget-video-inner .details ul li i {
    color: var(--main-color);
    margin-right: 7px
}

.widget-video-inner .details ul li span {
    margin-right: auto;
    font-weight: 500;
    color: var(--heading-color)
}

.widget_contact .details {
    padding: 0
}

.widget_contact .details li {
    margin-bottom: 18px;
    position: relative;
    padding-left: 25px;
    list-style: none
}

.widget_contact .details li i {
    margin-right: 14px;
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--main-color)
}

.widget_contact .details li:last-child {
    margin-bottom: 0
}

.widget_contact .details li .time {
    font-size: 12px;
    margin-top: 3px
}

.widget_contact .social-media li a {
    color: var(--main-color)
}

.widget_contact .social-media li a:hover {
    background: var(--main-color);
    color: #fff
}

.widget_contact .single-contact-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 13px
}

.widget_contact .single-contact-inner .icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    height: 30px;
    width: 30px;
    background: var(--main-color);
    border-radius: 50%;
    text-align: center;
    color: #fff;
    line-height: 32px;
    font-size: 14px;
    margin-right: 10px;
    margin-top: 6px
}

.widget_contact .single-contact-inner p {
    color: #d6d6d6;
    line-height: 28px;
    margin-bottom: 0
}

.widget_subscribe p {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 23px
}

.widget_subscribe .single-subscribe-inner {
    height: 60px;
    line-height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.widget_subscribe .single-subscribe-inner input {
    height: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    border: 0;
    padding: 0 20px;
    width: 100%
}

.widget_subscribe .single-subscribe-inner .btn {
    padding: 0 21px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
}

.widget_subscribe .single-subscribe-inner .btn:after {
    left: -56%
}

.single-blog-inner {
    margin-bottom: 30px
}

.single-blog-inner.style-2 {
    margin-bottom: 40px
}

.single-blog-inner.style-2 .details {
    padding: 37px 40px 40px
}

.single-blog-inner.style-2 .details h2 {
    margin-bottom: 15px;
    line-height: 50px
}

.single-blog-inner.style-2 .details p {
    margin-bottom: 25px
}

.single-blog-inner.style-2 .blog-meta {
    border-bottom: 0;
    padding-bottom: 0;
    margin: 0 0 1px
}

.single-blog-inner .thumb {
    position: relative;
    overflow: hidden
}

.single-blog-inner .thumb img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: .9s;
    transition: .9s;
    width: 100%
}

.single-blog-inner .thumb .video-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.single-blog-inner .blog-meta {
    margin: 0;
    padding: 0;
    margin-bottom: 21px;
    border-bottom: 1px solid #d6d6d6;
    margin-top: 16px;
    padding-bottom: 22px
}

.single-blog-inner .blog-meta li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 26px;
    font-weight: 400;
    font-size: 16px;
    line-height: 14px;
    color: var(--paragraph-color)
}

.single-blog-inner .blog-meta li i,
.single-blog-inner .blog-meta li svg {
    margin-right: 10px;
    color: var(--main-color)
}

.single-blog-inner .blog-meta li:last-child {
    margin-right: 0
}

.single-blog-inner .details {
    padding: 32px 30px;
    position: relative;
    background: #fff;
    -webkit-box-shadow: 0 6px 30px rgba(7, 36, 95, 0.08);
    box-shadow: 0 6px 30px rgba(7, 36, 95, 0.08)
}

.single-blog-inner .details h4 {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 30px;
    line-height: 38px
}

.single-blog-inner .details h4:hover a {
    color: #1f355b
}

.single-blog-inner .details .read-more-text {
    font-weight: 600;
    font-size: 14px
}

.single-blog-inner .details p {
    font-size: 16px
}

.single-blog-inner:hover .thumb img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.blog-thumb-slider {
    position: relative
}

.blog-thumb-slider .owl-nav button {
    height: 60px;
    width: 60px;
    position: absolute;
    top: 50%;
    border: 0;
    border-radius: 50%;
    background: var(--main-color);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    margin-top: -30px
}

.blog-thumb-slider .owl-nav button.owl-prev {
    left: 0
}

.blog-thumb-slider .owl-nav button.owl-next {
    right: 0
}

.pagination {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 20px 0 0
}

.pagination .pagination-arrow a {
    border: 0;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.pagination .pagination-arrow a:hover {
    border: 0
}

.pagination li a {
    height: 40px;
    width: 40px;
    margin-right: 0;
    border: 0;
    border-radius: 5px !important;
    background-color: rgba(0, 15, 87, 0.1);
    line-height: 42px;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    display: block;
    font-weight: 500;
    font-size: 16px;
    font-family: var(--heading-font)
}

.pagination li a:active,
.pagination li a:focus,
.pagination li a:hover {
    background: var(--main-color);
    color: #fff;
    -webkit-box-shadow: 0 8px 19px rgba(255, 76, 19, 0.3);
    box-shadow: 0 8px 19px rgba(255, 76, 19, 0.3)
}

.pagination li a.active {
    background: var(--main-color);
    color: #fff;
    -webkit-box-shadow: 0 8px 19px rgba(255, 76, 19, 0.3);
    box-shadow: 0 8px 19px rgba(255, 76, 19, 0.3)
}

.pagination li a.page-next {
    width: auto;
    background: transparent;
    font-weight: 700;
    font-size: 14px;
    color: var(--main-color);
    margin-left: 10px
}

.pagination li a.page-next:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--heading-color)
}

.pagination li+li {
    margin-left: 10px
}

.pagination li:first-child a {
    border-radius: 2px 0 0 2px
}

.pagination li:last-child a {
    border-radius: 0 2px 2px 0
}

blockquote {
    background: rgba(8, 12, 36, 0.06);
    margin: 30px 0;
    padding: 31px 50px 38px;
    position: relative;
    border-left: 5px solid var(--main-color)
}

blockquote span {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    font-family: var(--heading-font);
    color: var(--heading-color);
    position: relative;
    padding-left: 69px
}

blockquote span:after {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    background: var(--main-color);
    height: 4px;
    width: 59px
}

blockquote p {
    font-weight: 600;
    font-size: 18px;
    font-style: italic;
    line-height: 30px;
    color: var(--heading-color);
    margin-bottom: 3px !important
}

blockquote .d-flex {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end
}

blockquote .icon {
    margin-left: auto;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
}

.blog-details-area .video-thumb-wrap .video-play-btn {
    -webkit-animation: none;
    animation: none
}

.blog-details-area .video-thumb-wrap .video-play-btn:after {
    height: 100px;
    width: 100px;
    background: var(--main-color);
    opacity: .3;
    border: 0;
    left: -20px;
    top: -20px
}

.tag-and-share {
    padding-top: 30px;
    margin-top: 25px;
    border-top: 1px solid #d6d6d6
}

.tag-and-share strong {
    margin-bottom: 0;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 20px;
    line-height: 26px
}

.tag-and-share .tags a {
    display: inline-block;
    background: rgba(8, 12, 36, 0.06);
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    margin: 0 0 0 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--heading-color)
}

.tag-and-share .tags a:hover {
    background: var(--main-color);
    color: #fff
}

.tag-and-share .social-media {
    display: inline-block;
    margin-left: 14px
}

.tag-and-share .social-media li {
    margin: 0
}

.tag-and-share .social-media li a {
    background: rgba(8, 12, 36, 0.08);
    font-size: 14px;
    color: var(--paragraph-color)
}

.tag-and-share .social-media li a:hover {
    background: var(--main-color);
    color: #fff
}

.singla-blog-share-wrap {
    text-align: center;
    display: block;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    font-weight: 400;
    color: #fff
}

.singla-blog-share-wrap.style-facebook {
    background: #3b5998
}

.singla-blog-share-wrap.style-twitter {
    background: #1aa9f3
}

.singla-blog-share-wrap.style-pinterest {
    background: #ac1e30
}

.singla-blog-share-wrap:hover {
    background: #fff !important;
    color: #03000c
}

.blog-comment {
    margin-top: 40px;
    padding: 33px 40px 31px;
    background: #fff;
    -webkit-box-shadow: 0 6px 50px rgba(8, 12, 36, 0.08);
    box-shadow: 0 6px 50px rgba(8, 12, 36, 0.08);
    margin-bottom: 40px
}

.blog-comment h4 {
    margin-bottom: 23px;
    line-height: 39px
}

.blog-comment .media {
    margin-bottom: 30px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: transparent;
    border-bottom: 1px solid #d6d6d6
}

.blog-comment .media.media-nesting {
    padding-left: 120px
}

.blog-comment .media a {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
}

.blog-comment .media a img {
    border-radius: 50%
}

.blog-comment .media .media-body {
    margin-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 21px
}

.blog-comment .media .media-body h6 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0
}

.blog-comment .media .media-body .date {
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    font-style: italic;
    color: var(--paragraph-color);
    display: block
}

.blog-comment .media .media-body p {
    margin-top: 13px;
    line-height: 26px;
    margin-bottom: 11px
}

.blog-comment .media .media-body a {
    font-weight: 700;
    font-size: 14px;
    line-height: 26px;
    color: var(--main-color)
}

.blog-comment .media .media-body a i,
.blog-comment .media .media-body a svg {
    margin-right: 6px
}

.blog-comment-form {
    margin-top: 40px;
    padding: 33px 40px 40px;
    background: #fff;
    -webkit-box-shadow: 0 6px 50px rgba(8, 12, 36, 0.08);
    box-shadow: 0 6px 50px rgba(8, 12, 36, 0.08)
}

.blog-comment-form h4 {
    margin-bottom: 12px;
    line-height: 39px
}

.blog-comment-form p {
    margin-bottom: 26px;
    line-height: 26px
}

.blog-comment-form .btn {
    height: 55px;
    line-height: 55px
}

.footer-area {
    position: relative;
    background-color: #080c24;
    padding-bottom: 50px
}

.footer-area.style-2 .footer-top {
    padding: 0;
    border-color: rgba(255, 255, 255, 0.1)
}

.footer-area .footer-top {
    background-position: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 37px 0 0;
    margin-bottom: 120px
}

.footer-area .footer-top .single-footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-bottom: 33px
}

.footer-area .footer-top .single-footer-top:after {
    content: "";
    position: absolute;
    right: 0;
    top: -38px;
    height: 160px;
    width: 61px;
    background: url(../img/footer/rectangle.png)
}

.footer-area .footer-top .single-footer-top .icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    height: 80px;
    width: 80px;
    border-radius: 5px;
    background: var(--main-color);
    line-height: 80px;
    text-align: center;
    position: relative;
    margin: 6px 20px 0 6px
}

.footer-area .footer-top .single-footer-top .icon:after {
    content: "";
    position: absolute;
    background: #1f355b;
    opacity: .3;
    height: 80px;
    width: 80px;
    border-radius: 5px;
    left: -6px;
    top: -6px
}

.footer-area .footer-top .single-footer-top .details h6 {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    margin-bottom: 4px
}

.footer-area .footer-top .single-footer-top .details p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #d6d6d6;
    margin-bottom: 0
}

.footer-area .widget {
    position: relative;
    z-index: 2;
    margin-bottom: 70px
}

.footer-area .widget-title {
    padding-bottom: 13px;
    margin-bottom: 26px;
    position: relative;
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    color: #f8f8f8
}

.footer-area .widget-title:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90.09deg, #1f355b -7.63%, rgba(250, 67, 24, 0) 99.84%);
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
    z-index: -1
}

.footer-area .widget_about .thumb {
    margin-bottom: 13px
}

.footer-area .widget_about .details p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    margin-bottom: 30px
}

.footer-area .widget_nav_menu ul {
    margin: 0;
    padding: 0
}

.footer-area .widget_nav_menu ul li {
    list-style: none;
    position: relative;
    color: #d6d6d6;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px
}

.footer-area .widget_nav_menu ul li i,
.footer-area .widget_nav_menu ul li svg {
    margin-right: 3px
}

.footer-area .widget_nav_menu ul li+li {
    margin-top: 16px
}

.footer-area .widget_nav_menu ul li:hover:after {
    background: var(--main-color)
}

.footer-bottom-area {
    background: #161922;
    padding: 21.5px 0
}

.footer-bottom-area p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    margin-bottom: 0
}

.footer-bottom-area p a {
    color: var(--main-color)
}

.footer-bottom-area ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.footer-bottom-area ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    display: inline-block
}

.footer-bottom-area ul li+li {
    border-left: 1px solid #fff;
    padding-left: 9px;
    margin-left: 6px
}

.footer-top-subscribe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer-top-subscribe h3 {
    color: #fff;
    margin-bottom: 0;
    padding: 50px 0 47px
}

.footer-top-subscribe .media-left {
    margin-left: 78px;
    padding-left: 80px;
    padding-right: 58px;
    border-left: 1px solid rgba(255, 255, 255, 0.1)
}

.footer-top-subscribe .thumb {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
}

.footer-top-subscribe .single-subscribe-inner {
    min-width: 360px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
}

.main-navbar {
    background: #2c3e50;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo img {
    height: 50px
}

.nav-links ul {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color .3s ease
}

.nav-links a:hover {
    color: #e67e22
}

.nav-item.dropdown {
    position: relative
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block
}

.dropdown-menu a {
    color: #333;
    padding: 8px 20px;
    display: block
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #e67e22
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/banner/ankara-nakliyat.webp);
    background-size: cover;
    background-position: center;
    padding: 180px 0 100px;
    margin-top: 80px
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease
}

.btn-primary {
    background: #e67e22;
    color: #fff
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff
}

.btn-primary:hover {
    background: #d35400
}

.btn-secondary:hover {
    background: #fff;
    color: #333
}

@media (max-width: 991px) {
    .nav-links {
        display: none
    }

    .hero-content h1 {
        font-size: 36px
    }

    .hero-content p {
        font-size: 16px
    }
}

.banner-area {
    margin-bottom: 0;
    background: #e0e0e0
}

.about-area-2 {
    padding-top: 60px;
    padding-bottom: 120px
}

@media (max-width: 991px) {
    .banner-area {
        margin-top: 70px
    }
}

.banner-area {
    background-image: url(../img/agaoglu-nakliye/genel/banner.png);
    background-size: cover;
    background-position: center;
    overflow: hidden
}

.banner-inner {
    padding-right: 50px
}

.banner-inner .sub-title {
    display: inline-block;
    background: rgba(31, 53, 91, 0.1);
    color: #1f355b;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px
}

.banner-inner .title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1f355b
}

.banner-inner .title .highlight {
    color: #e67e22
}

.banner-inner .content {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px
}

.banner-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 40px
}

.banner-btns .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all .3s ease
}

.btn-primary {
    background: #1f355b;
    color: #fff
}

.btn-primary:hover {
    background: #e67e22
}

.btn-outline {
    border: 2px solid #1f355b;
    color: #1f355b
}

.btn-outline:hover {
    background: #1f355b;
    color: #fff
}

.banner-features {
    display: flex;
    gap: 30px
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px
}

.feature-item i {
    color: #e67e22;
    font-size: 20px
}

.feature-item span {
    font-size: 14px;
    font-weight: 500;
    color: #1f355b
}

.banner-image {
    position: relative;
    text-align: center
}

.banner-image .main-img {
    max-width: 100%;
    animation: float 3s ease-in-out infinite
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: #1f355b;
    color: #fff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(31, 53, 91, 0.2)
}

.experience-badge .number {
    font-size: 36px;
    font-weight: 700;
    line-height: 1
}

.experience-badge .text {
    font-size: 14px;
    text-align: center;
    margin-top: 5px
}

@keyframes float {
    0% {
        transform: translateY(0px)
    }

    50% {
        transform: translateY(-20px)
    }

    100% {
        transform: translateY(0px)
    }
}

@media (max-width: 991px) {
    .banner-area {
        padding: 80px 0 40px
    }

    .banner-inner {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px
    }

    .banner-inner .title {
        font-size: 32px;
        margin-bottom: 15px
    }

    .banner-inner .content {
        font-size: 15px;
        margin-bottom: 20px
    }

    .banner-btns {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px
    }

    .banner-btns .btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 250px;
        justify-content: center
    }

    .banner-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px
    }

    .feature-item {
        font-size: 13px
    }

    .banner-image {
        margin-top: 30px
    }

    .experience-badge {
        width: 80px;
        height: 80px;
        bottom: 10px;
        right: 10px
    }

    .experience-badge .number {
        font-size: 24px
    }

    .experience-badge .text {
        font-size: 12px
    }
}

.banner-btns .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    font-size: 15px;
    min-width: 180px
}

.banner-btns .btn i {
    font-size: 14px
}

.banner-btns .btn span {
    display: inline-block;
    line-height: 1.2
}

.contact-info-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 30px
}

.contact-info-box h3 {
    color: #1f355b;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px
}

.info-item:last-child {
    margin-bottom: 0
}

.info-item i {
    color: #e67e22;
    font-size: 24px;
    margin-top: 5px
}

.info-content h4 {
    color: #1f355b;
    font-size: 18px;
    margin-bottom: 5px
}

.info-content p {
    color: #666;
    margin-bottom: 3px;
    font-size: 15px
}

.info-content a {
    color: #666;
    text-decoration: none;
    transition: color .3s ease
}

.info-content a:hover {
    color: #e67e22
}

@media (max-width: 991px) {
    .contact-info-box {
        padding: 30px;
        margin-top: 40px
    }

    .contact-info-box h3 {
        font-size: 20px;
        margin-bottom: 25px
    }

    .info-item {
        margin-bottom: 20px
    }

    .info-content h4 {
        font-size: 16px
    }

    .info-content p {
        font-size: 14px
    }
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all .3s ease
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15)
}

.service-image {
    height: 200px;
    overflow: hidden
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease
}

.service-card:hover .service-image img {
    transform: scale(1.1)
}

.service-content {
    padding: 25px
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1f355b
}

.service-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fd7e14;
    font-weight: 500;
    transition: all .3s ease
}

.service-btn:hover {
    color: #1f355b
}

.service-btn i {
    transition: all .3s ease
}

.service-btn:hover i {
    transform: translateX(5px)
}

@media (max-width: 991px) {
    .service-card {
        margin-bottom: 30px
    }
}

.service-card-horizontal {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all .3s ease;
    margin-bottom: 30px
}

.service-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15)
}

.service-card-horizontal .service-content {
    padding: 40px
}

.service-card-horizontal .service-image {
    height: 100%;
    min-height: 300px;
    overflow: hidden
}

.service-card-horizontal .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease
}

.service-card-horizontal:hover .service-image img {
    transform: scale(1.1)
}

@media (max-width: 991px) {
    .service-card-horizontal .service-content {
        padding: 30px
    }

    .service-card-horizontal .service-image {
        min-height: 200px
    }
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666
}

.service-features li i {
    color: #fd7e14;
    font-size: 16px
}

.service-card-horizontal .service-content {
    padding: 50px
}

.service-card-horizontal .service-content h3 {
    color: #1f355b;
    font-size: 28px;
    margin-bottom: 20px
}

.service-card-horizontal .service-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px
}

@media (max-width: 991px) {
    .service-card-horizontal .service-content {
        padding: 30px
    }

    .service-card-horizontal .service-content h3 {
        font-size: 24px
    }

    .service-features {
        margin: 15px 0
    }
}

.location-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all .3s ease;
    border: 1px solid #eee;
    height: 100%
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #fd7e14
}

.location-icon {
    width: 70px;
    height: 70px;
    background: rgba(253, 126, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px
}

.location-icon i {
    font-size: 30px;
    color: #fd7e14
}

.location-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1f355b
}

.location-card p {
    color: #666;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    min-height: 65px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

@media (max-width: 991px) {
    .location-card {
        padding: 20px 15px
    }

    .location-icon {
        width: 60px;
        height: 60px
    }

    .location-icon i {
        font-size: 24px
    }

    .location-card h3 {
        font-size: 18px
    }
}

.process-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all .4s ease;
    border: 2px solid #f5f5f5;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden
}

.process-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #fd7e14, #ff9f4a);
    opacity: 0;
    transition: all .4s ease
}

.process-card:hover::before {
    opacity: 1
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(253, 126, 20, 0.1)
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 56px;
    font-weight: 700;
    color: rgba(253, 126, 20, 0.08);
    line-height: 1
}

.process-icon {
    width: 90px;
    height: 90px;
    background: rgba(253, 126, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all .4s ease
}

.process-card:hover .process-icon {
    background: #fd7e14;
    transform: scale(1.1)
}

.process-icon i {
    font-size: 35px;
    color: #fd7e14;
    transition: all .4s ease
}

.process-card:hover .process-icon i {
    color: #fff
}

.process-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1f355b;
    font-weight: 600
}

.process-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px
}

.process-features {
    background: rgba(253, 126, 20, 0.05);
    border-radius: 12px;
    padding: 15px;
    margin-top: 20px
}

.process-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(253, 126, 20, 0.2)
}

.process-features span:last-child {
    border-bottom: none
}

.process-features i {
    color: #fd7e14;
    font-size: 16px
}

.process-cta {
    background: linear-gradient(45deg, #fd7e14, #ff9f4a);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(253, 126, 20, 0.15)
}

.process-cta p {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1)
}

.process-cta i {
    color: #fff;
    margin-right: 12px;
    font-size: 24px
}

.process-cta .btn {
    background: #fff;
    color: #fd7e14;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all .4s ease;
    border: 2px solid #fff;
    line-height: normal;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.process-cta .btn i {
    transition: transform .4s ease;
    margin: 0
}

@media (max-width: 991px) {
    .process-card {
        padding: 30px 20px;
        margin-bottom: 20px
    }

    .process-number {
        font-size: 40px;
        top: 15px;
        right: 15px
    }

    .process-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px
    }

    .process-icon i {
        font-size: 28px
    }

    .process-card h3 {
        font-size: 20px;
        margin-bottom: 15px
    }

    .process-features {
        padding: 12px
    }

    .process-cta {
        padding: 30px
    }

    .process-cta p {
        font-size: 18px
    }
}

.wcu-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all .4s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(253, 126, 20, 0.1)
}

.wcu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(253, 126, 20, 0.15);
    border-color: #fd7e14
}

.wcu-icon {
    width: 70px;
    height: 70px;
    background: rgba(253, 126, 20, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all .4s ease
}

.wcu-icon i {
    font-size: 32px;
    color: #fd7e14;
    transition: all .4s ease
}

.wcu-card:hover .wcu-icon {
    background: #fd7e14
}

.wcu-card:hover .wcu-icon i {
    color: #fff
}

.wcu-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1f355b;
    font-weight: 600
}

.wcu-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px
}

.wcu-features {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px
}

.wcu-features li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    transition: all .3s ease
}

.wcu-features li:last-child {
    border: none;
    padding-bottom: 0
}

.wcu-features li i {
    color: #fd7e14;
    font-size: 16px;
    margin-right: 12px
}

.wcu-testimonial {
    margin-top: 25px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    position: relative
}

.wcu-testimonial i {
    color: #fd7e14;
    font-size: 24px;
    margin-bottom: 15px;
    opacity: .5
}

.wcu-testimonial p {
    font-style: italic;
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.6
}

.wcu-testimonial span {
    color: #1f355b;
    font-weight: 600;
    font-size: 14px
}

.wcu-cta {
    background: #fd7e14;
    padding: 50px;
    border-radius: 16px;
    position: relative;
    overflow: hidden
}

.wcu-cta h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600
}

.wcu-cta-features {
    margin-bottom: 0
}

.wcu-cta-features li {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center
}

.wcu-cta-features li i {
    font-size: 20px;
    margin-right: 12px;
    color: #fff
}

.wcu-cta .btn {
    background: #fff;
    color: #fd7e14;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all .3s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.wcu-cta .btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff
}

@media (max-width: 991px) {
    .wcu-card {
        padding: 30px;
        margin-bottom: 30px
    }

    .wcu-cta {
        padding: 30px;
        text-align: center
    }

    .wcu-cta-features {
        margin-bottom: 25px
    }

    .wcu-cta .btn {
        width: 100%;
        justify-content: center
    }
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px
}

.google-logo {
    width: 50px;
    height: auto
}

.rating-info {
    text-align: left
}

.stars {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffc107;
    font-size: 20px
}

.rating-text {
    color: #1f355b;
    font-weight: 600;
    font-size: 24px;
    margin-left: 10px
}

.rating-count {
    color: #666;
    font-size: 14px;
    margin: 5px 0 0
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 20px 15px;
    transition: all .4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05)
}

.faq-area {
    background: #f8f9fa;
    position: relative
}

.faq-accordion {
    margin-top: 30px
}

.accordion-item {
    border: none;
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05)
}

.accordion-button {
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #1f355b;
    background: #fff;
    border-radius: 15px !important;
    border: none
}

.accordion-button:not(.collapsed) {
    color: #fd7e14;
    background: #fff;
    box-shadow: none
}

.accordion-button:focus {
    box-shadow: none;
    border: none
}

.accordion-button::after {
    background-image: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fd7e14;
    font-size: 20px
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg)
}

.accordion-button i {
    margin-right: 15px;
    color: #fd7e14;
    font-size: 20px
}

.accordion-body {
    padding: 0 30px 25px
}

.accordion-body p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.faq-list li {
    padding: 10px 0;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.faq-list li i {
    color: #fd7e14;
    margin-top: 5px
}

.faq-image {
    position: relative;
    padding: 30px
}

.faq-experience-badge {
    position: absolute;
    bottom: 50px;
    right: 30px;
    background: #fd7e14;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(253, 126, 20, 0.2)
}

.faq-experience-badge .icon {
    font-size: 30px;
    margin-bottom: 10px
}

.faq-experience-badge h4 {
    color: #fff;
    margin: 0;
    font-size: 24px;
    font-weight: 700
}

.faq-experience-badge p {
    margin: 0;
    font-size: 14px
}

.packing-process {
    background: #fff;
    position: relative
}

.packing-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all .4s ease
}

.packing-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(253, 126, 20, 0.15)
}

.packing-thumb {
    position: relative;
    height: 300px;
    overflow: hidden
}

.packing-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease
}

.packing-item:hover .packing-thumb img {
    transform: scale(1.1)
}

.packing-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: #fff;
    transition: all .4s ease
}

.packing-overlay h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px
}

.packing-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0
}

@media (max-width: 991px) {
    .packing-thumb {
        height: 250px
    }
}

@media (max-width: 767px) {
    .packing-item {
        margin-bottom: 30px
    }
}

.contact-info-wrap {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.single-contact-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px
}

.single-contact-info:last-child {
    margin-bottom: 0
}

.single-contact-info .icon {
    width: 50px;
    height: 50px;
    background: #fd7e14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0
}

.contact-info-details h6 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #1f355b
}

.contact-info-details p {
    margin: 0;
    color: #666;
    line-height: 1.6
}

.contact-info-details a {
    color: #666;
    text-decoration: none;
    transition: all .3s ease
}

.contact-info-details a:hover {
    color: #fd7e14
}

.contact-map iframe {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05)
}

@media (max-width: 991px) {
    .contact-info-wrap {
        height: auto;
        margin-bottom: 30px
    }

    .contact-map iframe {
        height: 350px
    }
}

.banner-carousel {
    position: relative;
    background: #fff;
    overflow: hidden;
}

.banner-slide {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

/* Slayt Arka Planları */
.slide-1 {
    background: linear-gradient(135deg, rgba(253, 126, 20, 0.05) 0%, rgba(31, 53, 91, 0.05) 100%);
}

.slide-2 {
    background: linear-gradient(135deg, rgba(31, 53, 91, 0.05) 0%, rgba(253, 126, 20, 0.05) 100%);
}

.slide-3,
.slide-4 {
    background: linear-gradient(135deg, rgba(253, 126, 20, 0.03) 0%, rgba(31, 53, 91, 0.03) 100%);
}

/* Banner İçerik */
.banner-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    margin-right: -50px;
}

.banner-content .sub-title {
    display: inline-block;
    background: #fd7e14;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.banner-content .title {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1f355b;
    font-weight: 700;
}

.banner-content .highlight {
    color: #fd7e14;
}

.banner-content .content {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #666;
}

/* Banner Özellikler */
.banner-features {
    margin: 40px 0;
}

.banner-features li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    color: #1f355b;
}

.banner-features li i {
    width: 45px;
    height: 45px;
    background: rgba(253, 126, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #fd7e14;
    font-size: 20px;
}

/* Banner Görsel */
.banner-image {
    position: relative;
    z-index: 1;
    height: 600px;
    margin-left: -30px;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

/* Banner Butonlar */
.banner-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.banner-btns .btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.banner-btns .btn-primary {
    background: #fd7e14;
    border-color: #fd7e14;
    color: #fff;
}

.banner-btns .btn-outline {
    border: 2px solid #fd7e14;
    color: #fd7e14;
}

/* Owl Carousel Dots */
.banner-slider .owl-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.banner-slider .owl-dot {
    width: 40px !important;
    height: 6px !important;
    border-radius: 3px !important;
    background: rgba(253, 126, 20, 0.2) !important;
    border: none !important;
    transition: all .3s ease;
}

.banner-slider .owl-dot.active {
    width: 60px !important;
    background: #fd7e14 !important;
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
    .banner-content {
        padding: 40px;
        margin-right: 0;
    }

    .banner-content .title {
        font-size: 42px;
    }

    .banner-image {
        height: 500px;
        margin-left: 0;
    }
}

@media (max-width: 991px) {
    .banner-slide {
        min-height: auto;
        padding: 20px 0;
        /* Padding'i azalttım */
    }

    .banner-slide .row {
        flex-direction: column-reverse;
    }

    .banner-content {
        text-align: left;
        margin: 0;
        padding: 20px;
        /* Padding'i azalttım */
        margin-top: 20px;
        /* Margin'i azalttım */
        background: rgba(255, 255, 255, 0.98);
        /* Arka plan opaklığını artırdım */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        /* Gölgeyi hafifleştirdim */
    }

    .banner-content .title {
        font-size: 36px;
        /* Başlık boyutunu artırdım */
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .banner-content .sub-title {
        font-size: 16px;
        padding: 8px 20px;
    }

    .banner-features {
        margin: 20px 0;
        /* Margin'i azalttım */
    }

    .banner-features li {
        justify-content: flex-start;
        margin-bottom: 15px;
        /* Liste öğeleri arası mesafeyi azalttım */
        font-size: 16px;
    }

    .banner-btns {
        justify-content: flex-start;
        flex-direction: column;
        /* Butonları alt alta yerleştirdim */
        gap: 10px;
        margin-top: 20px;
    }

    .banner-btns .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        /* Buton padding'ini azalttım */
    }

    .banner-image {
        height: 300px;
        margin: 0;
        border-radius: 15px;
        overflow: hidden;
        /* Taşan kısımları gizle */
    }

    .banner-image img {
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
    }
}

@media (max-width: 767px) {
    .banner-content .title {
        font-size: 32px;
    }

    .banner-btns {
        flex-direction: column;
        gap: 15px;
    }

    .banner-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .banner-image {
        height: 300px;
    }

    .banner-features li {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .banner-content .title {
        font-size: 28px;
    }

    .banner-content .sub-title {
        font-size: 16px;
        padding: 10px 20px
    }

    .banner-image {
        height: 250px;
    }
}