.brd-r5 {
    border-radius: 5px;
}

.trans_03 {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.trans_10 {
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.shadow-hover:hover {
    box-shadow: 0px 0px 50px rgb(83 88 93 / 10%);
}

.href-url {
    font-size: 14px;
    color: var(--text-color-secondary);
    display: inline-block;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--primary-color);
    border-top-color: #d1e6f9;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

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

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--primary-color);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.datepicker-dropdown {
    padding: 20px !important;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f1f7fd;
}

.section-title {
    text-align: center;
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
    text-transform: uppercase;
}

.section-title p {
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 38px;
    line-height: 42px;
    font-weight: 700;
    color: var(--title-color);
}

@media (max-width: 768px) {
    .section-title p {
        font-size: 28px;
        line-height: 32px;
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #f6f9ff;
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    z-index: 996;
}

#topbar.topbar-scrolled {
    top: -40px;
}

#topbar .contact-info a {
    line-height: 1;
    color: #444444;
    transition: 0.3s;
}

#topbar .contact-info a:hover {
    color: #1977cc;
}

#topbar .contact-info i {
    color: var(--primary-color);
    padding-right: 4px;
    margin-left: 15px;
    line-height: 0;
}

#topbar .contact-info i:first-child {
    margin-left: 0;
}

#topbar .social-links a {
    color: var(--primary-color);
    padding-left: 15px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

#topbar .social-links a:hover {
    color: #1977cc;
}

#topbar .social-links a:first-child {
    border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header.header-scrolled {
    top: 0;
}

#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    /*padding: 15px 0;*/
    box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#header .logo a {
    color: var(--primary-color);
}

#header .logo img {
    max-height: 40px;
}

@media (max-width: 768px) {
    #header {
        /*padding: 8px 0;*/
    }

    #header .logo img {
        max-height: 30px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar > ul > li {
    position: relative;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: #37423b;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: var(--primary-color);
}

.navbar > ul > li > a:before {
    content: "";
    position: absolute;
    left: 30px;
    height: 2px;
    bottom: 3px;
    background-color: var(--primary-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
    visibility: visible;
    width: 25px;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: var(--primary-color);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #37423b;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(32, 38, 34, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 6px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile ul li {
    position: relative;
}

.navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #37423b;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: var(--primary-color);
}


.navbar-mobile .getstarted {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: var(--primary-color);
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    margin-bottom: -150px;
    padding: 0;
    position: relative;
}

#hero:before {
    content: "";
    background: rgba(5, 13, 24, 0.3);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

#hero .hero-wrapper {
    width: 100%;
    height: 90vh;
    background-position: top center;
    background-size: cover;
}

#hero .container {
    position: relative;
    z-index: 10;
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    text-transform: uppercase;
    color: var(--bs-white);
}

#hero h2 {
    color: var(--bs-white);
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero h2 br {
    display: inline;
    line-height: 50px;
}

#hero .btn-get-started {
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 40px;
    margin-top: 30px;
    transition: 0.5s;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
}

#hero .btn-get-started:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);;
    color: #FFFFFF;
}

@media (min-width: 1024px) {
    #hero .hero-wrapper {
        background-attachment: fixed;
    }
}

@media (max-width: 992px) {
    #hero .hero-wrapper {
        margin-bottom: 0;
        height: 100vh;
    }

    #hero .container {
        padding-bottom: 63px;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (max-height: 768px) {
    #hero .hero-wrapper {
        height: 110vh;
    }

    #hero h2 {
        font-size: 15px;
    }

    #hero h2 br {
        line-height: normal;
    }
}

/*--------------------------------------------------------------
# Service
--------------------------------------------------------------*/
#service {
    position: relative;
    z-index: 20;
}

#service .service-wrapper {
    padding: 20px;
    background: #fff;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}

#service .service-box {
    position: relative;
    overflow: hidden;
}


#service .service-box:hover img {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    -ms-filter: blur(3px);
    filter: blur(3px);
}


#service .service-text {
    position: absolute;
    left: 0;
    right: 0;
    padding: 20px;
    color: var(--bs-white);
    bottom: -150px;
    z-index: 10;
}

#service .service-text:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    background: rgb(0 0 0 / 40%);
    z-index: -10;
}

#service .service-text h3 {
    margin-bottom: 20px;
}

#service .service-text p {
    min-height: 90px;
    overflow: hidden;
    font-size: 14px;
}

#service .service-text a {
    color: #fff;
}

#service .service-box:hover .service-text {
    bottom: -0px;
}

/*--------------------------------------------------------------
# case
--------------------------------------------------------------*/
#case {
    position: relative;
}

.index-case-box .post-thumbs {
    position: relative;
    overflow: hidden;
    display: block;
    padding-bottom: 62.5%;
    height: 0;
}

.index-case-box .post-thumbs img {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% + 20px);
    max-width: calc(100% + 20px);
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(-20px, 0, 0);
}


.index-case-box .post-thumbs:hover img {
    transform: translate3d(0, 0, 0);
    transition: opacity 0.35s, transform 0.35s;
}

.index-case-box .case-text .cagetory {
    display: inline-block;
    background: var(--primary-color);
    color: #FFFFFF;
    font-size: 14px;
    padding: 2px 5px;
    margin-bottom: 0;
}

.post-odd .case-text .cagetory {
    margin-top: 0.5rem;
}

.post-even a.href-url {
    margin-bottom: 0.5rem;
}

.index-case-box .case-text h2 {
    margin: 1rem 0;
    color: var(--title-color);
    font-size: 20px;
}

.index-case-box .case-text .description {
    color: var(--text-color-secondary);
}


.case .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.case .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    border: 1px solid var(--primary-color);
}

.case .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.case .swiper-button-next, .case .swiper-button-prev {
    opacity: 0.2;
    color: var(--primary-color);
    z-index: 100;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.case:hover .swiper-button-next, .case:hover .swiper-button-prev {
    opacity: 1;
}

/*--------------------------------------------------------------
# about
--------------------------------------------------------------*/
#about {
    min-height: 50vh;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

#about:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#about .section-title p {
    color: #ffffff;
}

#about .section-title h2 {
    color: #f6f9ff;
}

.index-about-more {
    display: block;
    margin-bottom: 1rem;
}

.index-about-more .icon-box {
    padding: 30px 20px;
    transition: ease-in-out 0.3s;
    border: 1px solid rgba(255, 255, 255, 1);
    height: 100%;
    text-align: center;

}

.index-about-more .icon-box i {
    font-size: 36px;
    line-height: 1;
    color: #FFFFFF;
    transition: ease-in-out 0.3s;
}

.index-about-more .icon-box h3 {
    font-weight: 700;
    margin: 10px 0 0 0;
    padding: 0;
    line-height: 1;
    font-size: 20px;
    color: #fff;
    transition: ease-in-out 0.3s;
}

.index-about-more:hover .icon-box {
    background-color: rgba(255, 255, 255, 0.6);
}

.index-about-more:hover .icon-box i, .index-about-more:hover .icon-box h3 {
    color: var(--primary-color);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #f6f9ff;
    padding: 0 0 30px 0;
    font-size: 14px;
}

#footer .footer-top {
    background: white url(../image/footer-bg.png) no-repeat right top;
    background-size: contain;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-logo {
    max-width: 250px;
    display: inline-block;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 28px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
    color: #d0d4fc;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #ffc451;
    color: #151515;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;

    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #d0d4fc;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: var(--primary-color);
}

#footer .footer-top .footer-qrcode li {
    display: inline-block;
    max-width: 110px;
    overflow: hidden;
    text-align: center;

}

#footer .footer-top .footer-qrcode li:not(:last-child) {
    margin-right: 15px;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .poweredby {
    text-align: center;
    font-size: 13px;
}

#footer .copyright p {
    margin-bottom: 0.5rem;
}

#footer .links {
    margin: 1rem 0;
}

/*--------------------------------------------------------------
# Page General
--------------------------------------------------------------*/
.banner-inner {
    height: 35vh;
    background-size: cover;
    background-position: top center;
    position: relative;
}

.banner-inner-wrapper {
    display: flex;
    justify-content: left;
    align-items: center;
    position: absolute;
    bottom: 50px;
    top: 180px;
    left: 50px;
    right: 50px;
    z-index: 2;
    text-transform: uppercase;
}

.banner-inner-wrapper h3 {
    display: inline-block;
    font-size: 26px;
    color: var(--title-color);
    position: relative;
    font-weight: 600;
}

.banner-inner-wrapper h3::after {
    content: '';
    position: relative;
    display: block;
    left: 0;
    top: 10px;
    width: 25%;
    border-bottom: 2px solid var(--primary-color);
}

.banner-inner-wrapper p {
    font-size: 18px;
}

@media (max-width: 768px) {
    .banner-inner {
        margin-top: 100px;
        height: 20vh;
        background-position: top right;
    }

    .banner-inner-wrapper {
        top: 10vh;
        left: 0;
        right: 0;
    }

    .banner-inner-wrapper h3, .banner-inner-wrapper p {
        margin: 0;
        font-size: 14px;
    }

    .banner-inner-wrapper h3 {
        font-size: 18px;
        margin-bottom: 1rem;
    }

}

.page-nav {
    background: var(--light-bg-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
}

.breadcrumb {
    margin-bottom: 0;
    display: flex;
    justify-content: start;
    align-items: center;
    height: 40px;
    overflow: hidden;
    font-size: 14px;
}

.breadcrumb i {
    font-size: 25px;
    color: #dddddd;
    border-left: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
    margin-right: 18px;
    padding: 0 8px;
}

.breadcrumb span.bi {
    font-size: 12px;
    margin: 0 4px;
}

.left-sidebar {
    margin-bottom: 30px;
}


.sidebar-nav h3 {
    font-size: 26px;
    color: var(--title-color);
}

.sidebar-nav h3:before {
    content: '';
    display: block;
    background: var(--primary-color);
    height: 2px;
    width: 60px;
    margin-bottom: 1rem;
}

.left-sidebar .sub-category {
    margin-top: 15px;
}

.left-sidebar .sub-category li {
    margin-bottom: 0.5rem;
}

.left-sidebar .sub-category li a {
    font-size: 16px;
    color: var(--text-color-secondary);
}

.list-pagination {
    margin-top: 20px;
}