/*
	Template Name: Trizen
	Author: TechyDevs
	Email: contact@techydevs.com
	Website: techydevs.com
	Description: Trizen - Travel Booking HTML5 Template
	Version: 1.0
*/
/*------------------------------------------------------------------

/*---------------- css loader ----------------*/
:root {
    --theme-primary: #ca262c;
    --theme-secondary: #d9d9d9;
    --theme-tertiary: #ed1c24;
}

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

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

@keyframes infinite-blink {
    0% {
        opacity: 1;
        top: 0;
    }

    30% {
        opacity: 1;
        top: 30%;
    }

    70% {
        opacity: 0;
        top: 30%;
    }

    100% {
        opacity: 0;
        top: 0;
    }
}

/*============== play-button-pulse ==============*/
@-webkit-keyframes play-button-pulse {
    0% {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@-moz-keyframes play-button-pulse {
    0% {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@-ms-keyframes play-button-pulse {
    0% {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@-o-keyframes play-button-pulse {
    0% {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes play-button-pulse {
    0% {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

/*== heartBeat ==*/
@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    40% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -webkit-transform: scale(1.04);
        -moz-transform: scale(1.04);
        -ms-transform: scale(1.04);
        -o-transform: scale(1.04);
        transform: scale(1.04);
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes cluster-animation {
    0%,
    100% {
        -webkit-box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
    }

    50% {
        -webkit-box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.1);
    }
}

/*====== starsAnimation ========*/
@keyframes starsAnimation {
    from {
        transform: translateY(-2000px);
    }

    to {
        transform: translateY(0px);
    }
}

/*====== background-move ========*/
@keyframes background-move {
    0% {
        background-position: 0 0, 0 0;
    }

    100% {
        background-position: 100vw 0, 0 0;
        background-position: max(100vw, 40em) 0, 0 0;
    }
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

a:hover,
a:focus {
    text-decoration: none;
}

input:focus {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

body {
    font-size: 14px;
    line-height: 28px;
    font-family: "Roboto", sans-serif;
    color: #5d646d;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*---------------- fonts ----------------*/

.font-size-40 {
    font-size: 40px !important;
}

.font-size-30 {
    font-size: 30px !important;
}

.font-size-28 {
    font-size: 28px !important;
}

.font-size-14 {
    font-size: 14px !important;
}

/*---------------- font-weight ----------------*/

.font-weight-medium {
    font-weight: 500 !important;
}

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

.font-weight-bold {
    font-weight: 700 !important;
}

/*---------------- line-height ----------------*/

.line-height-26 {
    line-height: 26px !important;
}

.line-height-22 {
    line-height: 22px !important;
}

.before-none:before {
    display: none !important;
}

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

.after-none:after,
.before-none:before {
    display: none !important;
}

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

.section-bg-2 {
    background-color: var(--theme-primary);
}

.section-block {
    height: 1px;
    background-color: #f5f7fc;
}

/*==== border color =====*/
.border {
    border-color: rgba(128, 137, 150, 0.3) !important;
}

.border-top {
    border-top-color: rgba(128, 137, 150, 0.1) !important;
}

.border-bottom {
    border-bottom-color: rgba(128, 137, 150, 0.1) !important;
}

/*---------------- text-color ----------------*/

.text-gray {
    color: #5d646d !important;
}

/*---------------- container ----------------*/
.container {
    max-width: 1200px;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    .margin-bottom-desktop {
        margin-bottom: 100px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/*---------------- responsive-column will be visible on responsive ----------------*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .responsive-column {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .responsive-column {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .responsive-column {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 1366px) {
    .responsive-column-l {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .responsive-column-l {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .responsive-column-l {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 1199px) {
    .responsive--column-l {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .responsive-column-m {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .responsive-column-m {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .responsive-column-m {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .responsive-column--m {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/*=== theme-btn ====*/
.theme-btn {
    font-size: 15px;
    color: #fff;
    line-height: 45px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: var(--theme-primary);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid var(--theme-primary);
    font-weight: 500;
}

.theme-btn:hover {
    background-color: #fff;
    color: var(--theme-primary);
}

/*=== theme-btn-small ====*/
.theme-btn-small {
    line-height: 35px;
    padding-left: 15px;
    padding-right: 15px;
}

/*=== theme-btn-transparent ====*/
.theme-btn-transparent {
    background-color: #fff;
    color: var(--theme-primary);
}

.theme-btn-transparent:hover {
    background-color: var(--theme-primary);
    color: #fff;
}

.section--padding {
    padding: 50px 0px;
}

.section--padding h2 {
    font-size: 32px;
    color: #333333;
    font-weight: 700;
    margin-bottom: 5px;
}

.section--padding .title-sec {
    color: #ca262c;
}

.section--padding .section-desc {
    line-height: 21px;
    margin-top: 15px;
}

/*===== padding-top ========*/

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

.padding-top-50px {
    padding-top: 50px;
}

.padding-top-20px {
    padding-top: 20px;
}

.padding-top-10px {
    padding-top: 10px;
}

/*===== padding-bottom ========*/
.padding-bottom-60px {
    padding-bottom: 60px;
}

.padding-bottom-40px {
    padding-bottom: 40px;
}

.padding-bottom-35px {
    padding-bottom: 35px;
}

.padding-bottom-20px {
    padding-bottom: 20px;
}

/*===== padding-right ========*/
.padding-right-100px {
    padding-right: 100px;
}
.padding-left-100px {
    padding-left: 100px;
}
/*===== padding-left ========*/
.margin-bottom-20px {
    margin-bottom: 20px;
}

/*========= preloader ==========*/
.preloader {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #fff;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.bread-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    stroke: none;
    fill: #fff;
}
.loader .spinner {
    animation: rotate 1s linear infinite;
    z-index: 2;
    width: 50px;
    height: 50px;
}

.loader .spinner .path {
    stroke: var(--theme-primary);
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

/*====================================================
    cd-words-wrapper
 ====================================================*/
.cd-words-wrapper b {
    font-weight: 700;
}

/*====================================================
    section-heading
 ====================================================*/
.section-heading .sec__title {
    font-size: 40px;
    color: #0d233e;
    font-weight: 700;
}

@media (max-width: 425px) {
    .section-heading .sec__title {
        font-size: 30px;
        line-height: 42px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-heading .sec__title br {
        display: none;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .section-heading .sec__title br {
        display: none;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .section-heading .sec__title br {
        display: none;
    }
}

.section-heading .sec__desc {
    font-size: 18px;
    color: #5d646d;
    line-height: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-heading .sec__desc br {
        display: none;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .section-heading .sec__desc br {
        display: none;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .section-heading .sec__desc br {
        display: none;
    }
}

/*==== title =====*/
.title {
    font-size: 22px;
    font-weight: 700;
    color: #0d233e;
}

/*==== curve-shape =====*/
.curve-shape {
    position: relative;
    display: inline-block;
}

.curve-shape::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: attr(data-text);
    color: transparent;
    text-decoration-style: wavy;
    text-decoration-color: var(--theme-primary);
    text-decoration-line: underline;
}

/*==== stroke-shape =====*/
.stroke-shape {
    position: relative;
    display: inline-block;
}

.stroke-shape::before,
.stroke-shape::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 2px;
    width: 45px;
    background-color: var(--theme-primary);
}

.stroke-shape::after {
    width: 7px;
    background-color: #fff;
    left: 25px;
}

/*====================================================
    custom-checkbox
 ====================================================*/
.custom-checkbox {
    display: block;
    margin-bottom: 8px;
}

.custom-checkbox label {
    color: #5d646d;
    font-size: 15px;
    display: block;
    margin-bottom: 0;
    cursor: pointer;
}

.custom-checkbox label a {
    color: var(--theme-primary);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.custom-checkbox label a:hover {
    color: #0d233e;
}

.custom-checkbox input[type="checkbox"]:not(:checked),
.custom-checkbox input[type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}

.custom-checkbox input[type="checkbox"]:not(:checked) + label,
.custom-checkbox input[type="checkbox"]:checked + label {
    position: relative;
    padding-left: 26px;
}

.custom-checkbox input[type="checkbox"]:not(:checked) + label:before,
.custom-checkbox input[type="checkbox"]:checked + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    background-color: #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.custom-checkbox input[type="checkbox"]:not(:checked) + label:after,
.custom-checkbox input[type="checkbox"]:checked + label:after {
    content: "\f00c";
    position: absolute;
    top: 1px;
    left: 3px;
    font-size: 12px;
    color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-family: "Line Awesome Free";
    font-weight: 900;
}

.custom-checkbox input[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    visibility: hidden;
}

.custom-checkbox input[type="checkbox"]:checked + label:after {
    opacity: 1;
    visibility: visible;
}

.custom-checkbox input[type="checkbox"]:checked + label:before {
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
}

/*======= social-profile ========*/
.social-profile li {
    display: inline-block;
    margin-right: 3px;
}

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

.social-profile li a {
    display: block;
    color: #0d233e;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    background-color: var(--theme-primary);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.social-profile li a:hover {
    background-color: #f8474a;
    color: #fff;
}

.social-profile-white li a {
    display: block;
    color: #0d233e;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.social-profile-white li a:hover {
    background-color: #f8474a;
    color: #fff;
}

/*======= list-items ========*/
.list-items li {
    margin-bottom: 6px;
    color: #5d646d;
}

.list-items li a {
    color: #5d646d;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.list-items li a:hover {
    color: var(--theme-primary);
}

/*======= list--items ========*/
.list--items a {
    position: relative;
    display: inline-block;
}

.list--items a::before {
    position: absolute;
    content: "";
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--theme-primary);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.list--items a:hover::before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/*===== toggle-drop-menu =======*/
.toggle-drop-menu {
    display: none;
}

/*======== photo-block-item =========*/
.photo-block-item {
    margin-bottom: 30px;
}

.photo-block-item img {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

/*======== toggle-menu =========*/
.toggle-menu li .toggle-menu-icon .la {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.toggle-menu li.active .toggle-menu-icon .la {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

/*=============== tip ===============*/
.tip {
    display: inline-block;
    cursor: help;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: 18px;
    line-height: 18px;
    width: 18px;
    height: 18px;
    position: relative;
    top: 2px;
    left: 1px;
}

.filter-option {
    margin-right: 20px;
}

@media (max-width: 575px) {
    .filter-option {
        margin-right: 10px;
    }
}

@media (max-width: 375px) {
    .filter-option {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.filter-option .dropdown-contain .dropdown-menu {
    width: 245px;
    margin-top: 15px;
}

@media (max-width: 575px) {
    .filter-option .dropdown-contain .dropdown-menu {
        left: -90px !important;
    }
}

@media (max-width: 425px) {
    .filter-option .dropdown-contain .dropdown-menu {
        left: -20px !important;
    }
}

@media (max-width: 375px) {
    .filter-option .dropdown-contain .dropdown-menu {
        left: 0 !important;
    }
}

.filter-option .price-slider-amount .amounts {
    background-color: transparent;
    text-align: left;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

@media (max-width: 375px) {
    .bootstrap-select .dropdown-toggle .filter-option {
        margin-bottom: 0;
    }
}

/*======== back-to-top =========*/
#back-to-top {
    position: fixed;
    right: -150px;
    bottom: 40px;
    z-index: 9999;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background-color: #fff;
    -webkit-box-shadow: 0 10px 40px rgba(82, 85, 90, 0.2);
    -moz-box-shadow: 0 10px 40px rgba(82, 85, 90, 0.2);
    box-shadow: 0 10px 40px rgba(82, 85, 90, 0.2);
    color: #0d233e;
    font-size: 18px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

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

#back-to-top.active {
    right: 30px;
    opacity: 1;
    visibility: visible;
}

/*====================================================
    date range picker
 ====================================================*/
.daterangepicker {
    font-family: "Roboto", sans-serif;
    border-color: rgba(128, 137, 150, 0.3);
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    color: #0d233e;
}

.daterangepicker td.off {
    color: #5d646d;
}

.daterangepicker td.active {
    background-color: var(--theme-primary);
    color: #fff;
}

.ck-editor__main ul {
    list-style: disc;
}

.ck.ck-toolbar {
    border-color: rgba(128, 137, 150, 0.2) !important;
}

.ck.ck-editor__editable_inline {
    padding-right: 25px !important;
    padding-left: 25px !important;
    border-color: rgba(128, 137, 150, 0.2) !important;
}

.ck.ck-editor__editable_inline:focus {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/*==== icon-element ======*/
.icon-element {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--theme-primary);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: relative;
    font-size: 25px;
    color: #fff;
}

/*====================================================
    contact-form-action
 ====================================================*/
.label-text {
    font-size: 14px;
    color: #0d233e;
}

.contact-form-action .form-group {
    position: relative;
}

.contact-form-action .form-group .form-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #5d646d;
    font-size: 18px;
}

.contact-form-action .form-group .search-btn,
.contact-form-action .form-group .submit-btn {
    position: absolute;
    top: 7px;
    right: 8px;
}

.contact-form-action .form-group .search-btn {
    background-color: transparent;
    border: none;
    padding: 3px 10px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #0d233e;
}

.contact-form-action .form-group .search-btn:hover {
    color: var(--theme-primary);
}

.contact-form-action .form-control {
    height: auto;
    line-height: inherit;
    padding: 10px 20px 10px 40px;
    font-size: 13px;
    color: #0d233e;
    border-color: rgba(128, 137, 150, 0.2);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #fff;
}

.contact-form-action .form-control:focus {
    border-color: var(--theme-primary);
}

.contact-form-action .message-control {
    height: 130px;
}

.forgot-password {
    font-size: 14px;
}

.forgot-password a {
    color: #5d646d;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.forgot-password a:hover {
    color: var(--theme-primary);
}

#singleMap,
#map {
    width: 100%;
    height: 465px;
}

/*==== leaflet-bar ======*/
.leaflet-bar {
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
}

.leaflet-bar a {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border-bottom: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 4px;
    font-size: 20px;
}

.leaflet-bar a:hover {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border-bottom: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: var(--theme-primary);
    color: #fff;
}

/*================== form-box ===================*/
.form-box {
    border: 1px solid rgba(128, 137, 150, 0.1);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
}

.form-title-wrap {
    padding: 20px;
    border-bottom: 1px solid rgba(128, 137, 150, 0.1);
}

.form-content {
    padding: 20px;
}

.blockquote-item {
    border-left: none;
    background-image: url("../images/blog/bg4.jpg");
    background-size: cover;
    background-position: center;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    z-index: 1;
    padding: 40px;
    position: relative;
}

.blockquote-item .blockquote__text {
    line-height: 30px;
    font-weight: 500;
    font-style: italic;
    color: #fff;
}

.blockquote-item .blockquote__meta {
    font-weight: 500;
    margin-top: 16px;
    display: -ms-flex;
    display: flex;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: start;
    color: #fff;
    font-size: 18px;
}

.blockquote-item .blockquote__meta span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin-left: 5px;
}

.blockquote-item:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #05162b;
    opacity: 0.8;
    z-index: -1;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

/*====================================================
    breadcrumb-area
 ====================================================*/
.breadcrumb-area {
    padding-top: 90px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.breadcrumb-area::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/images/header.jpg"),
        linear-gradient(80deg, #000000, #01060d);
    background-position: 50% 50%;
    background-size: 100vw auto, 100% 100%;
    opacity: 0.9;
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-area .image-box {
        display: none;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .breadcrumb-area .image-box {
        display: none;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .breadcrumb-area .image-box {
        display: none;
    }
}

/*====================================================
    header
 ====================================================*/
.header-top-bar {
    background: linear-gradient(to right, #ffffff 70%, #f5f7fc);
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(128, 137, 150, 0.1);
}

@media (max-width: 1366px) {
    .header-top-bar {
        padding-right: 0;
        padding-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-top-bar {
        padding-top: 10px;
        padding-bottom: 18px;
        display: none;
        height: auto !important;
        border-bottom: 1px solid rgba(128, 137, 150, 0.1) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .header-top-bar {
        padding-top: 10px;
        padding-bottom: 18px;
        display: none;
        height: auto !important;
        border-bottom: 1px solid rgba(128, 137, 150, 0.1) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .header-top-bar {
        padding-top: 10px;
        padding-bottom: 18px;
        display: none;
        height: auto !important;
        border-bottom: 1px solid rgba(128, 137, 150, 0.1) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-top-content {
        text-align: center;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .header-top-content {
        text-align: center;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .header-top-content {
        text-align: center;
    }
}

.header-top-content .list-items li {
    padding-right: 13px;
    margin-bottom: 5px;
    display: inline-block;
    color: #0d233e;
    text-transform: inherit;
    font-size: 14px;
}

.header-top-content .list-items li:last-child {
    padding-right: 0;
}

.header-top-content .list-items li .la {
    margin-right: 3px;
}

.header-top-content .list-items li a {
    color: #0d233e;
}

.header-top-content .list-items li a:before {
    display: none;
}

.header-top-content .social-profile a {
    background-color: rgba(255, 255, 255, 0.1);
    width: 33px;
    height: 33px;
    line-height: 33px;
}

.header-top-content .social-profile a:hover {
    background-color: #fff;
    color: var(--theme-primary);
}

/*========== header-right ========*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-right {
        padding-top: 5px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .header-right {
        padding-top: 5px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .header-right {
        padding-top: 5px;
    }
}

@media (max-width: 375px) {
    .header-right {
        display: block !important;
        padding-top: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-right.justify-content-end {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .header-right.justify-content-end {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .header-right.justify-content-end {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 600px) {
    .header-right .list-items {
        margin-right: 0 !important;
    }
}

/*===== header-menu-wrapper ========*/
.header-menu-wrapper {
    background-color: #fff;
    z-index: 1024;
}

@media (max-width: 1366px) {
    .header-menu-wrapper {
        padding: 10px 0px;
    }
}

.header-menu-wrapper.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
}

@media (max-width: 1199px) {
    .header-menu-wrapper.header-fixed {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

/*===== menu-wrapper ========*/
.menu-wrapper {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .menu-wrapper {
        padding-top: 15px;
        padding-bottom: 15px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .menu-wrapper {
        padding-top: 15px;
        padding-bottom: 15px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .menu-wrapper {
        padding-top: 15px;
        padding-bottom: 15px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.down-button {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 30px;
    text-align: center;
    height: 22px;
    line-height: 20px;
    background-color: rgba(128, 137, 150, 0.1);
    color: #5d646d;
    display: none;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
    z-index: 3;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.down-button .la {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.down-button.active .la {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.down-button:hover {
    color: #fff;
    background-color: var(--theme-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .down-button {
        display: block;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .down-button {
        display: block;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .down-button {
        display: block;
    }
}

.logo {
    z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .logo {
        width: 100%;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .logo {
        width: 100%;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .logo {
        width: 100%;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.logo a {
    display: inline-block;
}

.logo-2 {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .logo-2 {
        display: flex;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .logo-2 {
        display: flex;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .logo-2 {
        display: flex;
    }
}

.user-menu-open,
.side-menu-close,
.menu-toggler {
    width: 40px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    display: none;
    margin-left: auto;
    background-color: rgba(128, 137, 150, 0.1);
    color: #0d233e;
    font-size: 26px;
    position: relative;
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
    .user-menu-open,
    .side-menu-close,
    .menu-toggler {
        display: block;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .user-menu-open,
    .side-menu-close,
    .menu-toggler {
        display: block;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .user-menu-open,
    .side-menu-close,
    .menu-toggler {
        display: block;
    }
}

.side-menu-close .la-bars,
.menu-toggler .la-bars {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.side-menu-close .la-times,
.menu-toggler .la-times {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.side-menu-close.active .la-bars,
.menu-toggler.active .la-bars {
    opacity: 0;
    visibility: hidden;
}

.side-menu-close.active .la-times,
.menu-toggler.active .la-times {
    opacity: 1;
    visibility: visible;
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
    .menu-toggler {
        margin-left: 5px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .menu-toggler {
        margin-left: 5px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .menu-toggler {
        margin-left: 5px;
    }
}

/*======== main-menu-content =========*/
.main-menu-content {
    padding-top: 22px;
    margin-left: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-menu-content {
        display: none;
        margin-left: 0 !important;
        padding: 15px 0 0 0;
        width: 100%;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .main-menu-content {
        display: none;
        margin-left: 0 !important;
        padding: 15px 0 0 0;
        width: 100%;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .main-menu-content {
        display: none;
        margin-left: 0 !important;
        padding: 15px 0 0 0;
        width: 100%;
    }
}

.main-menu-content ul li {
    display: inline-block;
    text-transform: capitalize;
    padding-right: 23px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-menu-content ul li {
        display: block;
        padding-bottom: 15px;
        padding-right: 0;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .main-menu-content ul li {
        display: block;
        padding-bottom: 15px;
        padding-right: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .main-menu-content ul li {
        display: block;
        padding-bottom: 15px;
        padding-right: 0;
    }
}

.main-menu-content ul li .drop-menu-toggler {
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    color: #0d233e;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: none;
    outline: none;
    z-index: 2;
    background-color: transparent;
}

.main-menu-content ul li .drop-menu-toggler .la-angle-down {
    font-size: 16px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-menu-content ul li .drop-menu-toggler .la-angle-down {
        display: block;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .main-menu-content ul li .drop-menu-toggler .la-angle-down {
        display: block;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .main-menu-content ul li .drop-menu-toggler .la-angle-down {
        display: block;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-menu-content ul li .drop-menu-toggler {
        display: block;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .main-menu-content ul li .drop-menu-toggler {
        display: block;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .main-menu-content ul li .drop-menu-toggler {
        display: block;
    }
}

.main-menu-content ul li .drop-menu-toggler:hover {
    background-color: rgba(128, 137, 150, 0.1);
}

.main-menu-content ul li a {
    color: #0d233e;
    display: block;
    font-size: 17px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    padding-bottom: 22px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-menu-content ul li a {
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .main-menu-content ul li a {
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .main-menu-content ul li a {
        padding-bottom: 0;
    }
}

.main-menu-content ul li a .la-angle-down {
    font-size: 12px;
    color: #5d646d;
    margin-left: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-menu-content ul li a .la-angle-down {
        display: none;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .main-menu-content ul li a .la-angle-down {
        display: none;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .main-menu-content ul li a .la-angle-down {
        display: none;
    }
}

.main-menu-content ul li a:hover {
    color: var(--theme-primary);
}

.main-menu-content ul li .dropdown-menu-item {
    text-align: left;
    position: absolute;
    top: 50px;
    left: 0;
    width: 200px;
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    z-index: 4;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    transform-origin: top;
    -webkit-transform: perspective(250px) rotateX(-15deg);
    -moz-transform: perspective(250px) rotateX(-15deg);
    -ms-transform: perspective(250px) rotateX(-15deg);
    -o-transform: perspective(250px) rotateX(-15deg);
    transform: perspective(250px) rotateX(-15deg);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-menu-content ul li .dropdown-menu-item {
        opacity: 1;
        visibility: visible;
        -webkit-transform: perspective(0) rotateX(0);
        -moz-transform: perspective(0) rotateX(0);
        -ms-transform: perspective(0) rotateX(0);
        -o-transform: perspective(0) rotateX(0);
        transform: perspective(0) rotateX(0);
        display: none;
        width: 100%;
        /*height: 210px;*/
        overflow-x: auto;
        overflow-y: auto;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: 0 0 0 0;
        -moz-box-shadow: 0 0 0 0;
        box-shadow: 0 0 0 0;
        position: relative;
        top: auto;
        left: auto;
        padding-bottom: 0;
        background-color: transparent;
    }

    .main-menu-content ul li .dropdown-menu-item::-webkit-scrollbar {
        width: 8px;
    }

    .main-menu-content ul li .dropdown-menu-item::-webkit-scrollbar-track {
        background-color: rgba(128, 137, 150, 0.1);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
    }

    .main-menu-content ul li .dropdown-menu-item::-webkit-scrollbar-thumb {
        background-color: rgba(128, 137, 150, 0.2);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
    }

    .main-menu-content
        ul
        li
        .dropdown-menu-item::-webkit-scrollbar-thumb:hover {
        background-color: rgba(128, 137, 150, 0.4);
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .main-menu-content ul li .dropdown-menu-item {
        opacity: 1;
        visibility: visible;
        -webkit-transform: perspective(0) rotateX(0);
        -moz-transform: perspective(0) rotateX(0);
        -ms-transform: perspective(0) rotateX(0);
        -o-transform: perspective(0) rotateX(0);
        transform: perspective(0) rotateX(0);
        display: none;
        width: 100%;
        /*height: 210px;*/
        overflow-x: auto;
        overflow-y: auto;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: 0 0 0 0;
        -moz-box-shadow: 0 0 0 0;
        box-shadow: 0 0 0 0;
        position: relative;
        top: auto;
        left: auto;
        padding-bottom: 0;
        background-color: transparent;
    }

    .main-menu-content ul li .dropdown-menu-item::-webkit-scrollbar {
        width: 8px;
    }

    .main-menu-content ul li .dropdown-menu-item::-webkit-scrollbar-track {
        background-color: rgba(128, 137, 150, 0.1);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
    }

    .main-menu-content ul li .dropdown-menu-item::-webkit-scrollbar-thumb {
        background-color: rgba(128, 137, 150, 0.2);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
    }

    .main-menu-content
        ul
        li
        .dropdown-menu-item::-webkit-scrollbar-thumb:hover {
        background-color: rgba(128, 137, 150, 0.4);
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .main-menu-content ul li .dropdown-menu-item {
        opacity: 1;
        visibility: visible;
        -webkit-transform: perspective(0) rotateX(0);
        -moz-transform: perspective(0) rotateX(0);
        -ms-transform: perspective(0) rotateX(0);
        -o-transform: perspective(0) rotateX(0);
        transform: perspective(0) rotateX(0);
        display: none;
        width: 100%;
        /*height: 210px;*/
        overflow-x: auto;
        overflow-y: auto;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: 0 0 0 0;
        -moz-box-shadow: 0 0 0 0;
        box-shadow: 0 0 0 0;
        position: relative;
        top: auto;
        left: auto;
        padding-bottom: 0;
        background-color: transparent;
    }

    .main-menu-content ul li .dropdown-menu-item::-webkit-scrollbar {
        width: 8px;
    }

    .main-menu-content ul li .dropdown-menu-item::-webkit-scrollbar-track {
        background-color: rgba(128, 137, 150, 0.1);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
    }

    .main-menu-content ul li .dropdown-menu-item::-webkit-scrollbar-thumb {
        background-color: rgba(128, 137, 150, 0.2);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
    }

    .main-menu-content
        ul
        li
        .dropdown-menu-item::-webkit-scrollbar-thumb:hover {
        background-color: rgba(128, 137, 150, 0.4);
    }
}

.main-menu-content ul li .dropdown-menu-item li {
    display: block;
    padding-right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-menu-content ul li .dropdown-menu-item li {
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .main-menu-content ul li .dropdown-menu-item li {
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .main-menu-content ul li .dropdown-menu-item li {
        padding-bottom: 0;
    }
}

.main-menu-content ul li .dropdown-menu-item li a {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 3px 25px;
    color: #5d646d;
    font-size: 15px;
}

.main-menu-content ul li .dropdown-menu-item li a .la-plus {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-menu-content ul li .dropdown-menu-item li a .la-plus {
        display: none;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .main-menu-content ul li .dropdown-menu-item li a .la-plus {
        display: none;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .main-menu-content ul li .dropdown-menu-item li a .la-plus {
        display: none;
    }
}

.main-menu-content ul li .dropdown-menu-item li a .sub-menu-toggler {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    color: #0d233e;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    z-index: 2;
    outline: none;
    border: none;
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-menu-content ul li .dropdown-menu-item li a .sub-menu-toggler {
        display: block;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .main-menu-content ul li .dropdown-menu-item li a .sub-menu-toggler {
        display: block;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .main-menu-content ul li .dropdown-menu-item li a .sub-menu-toggler {
        display: block;
    }
}

.main-menu-content ul li .dropdown-menu-item li a .sub-menu-toggler .la-plus {
    display: block;
}

.main-menu-content ul li .dropdown-menu-item li a .sub-menu-toggler:hover {
    background-color: rgba(128, 137, 150, 0.1);
}

.main-menu-content ul li .dropdown-menu-item li a:hover {
    color: var(--theme-primary);
}

.main-menu-content ul li .dropdown-menu-item li .sub-menu {
    position: absolute;
    top: -10px;
    left: 200px;
    width: 200px;
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    transform-origin: top;
    -webkit-transform: perspective(250px) rotateX(-15deg);
    -moz-transform: perspective(250px) rotateX(-15deg);
    -ms-transform: perspective(250px) rotateX(-15deg);
    -o-transform: perspective(250px) rotateX(-15deg);
    transform: perspective(250px) rotateX(-15deg);
    visibility: hidden;
    opacity: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-menu-content ul li .dropdown-menu-item li .sub-menu {
        width: 100%;
        position: inherit;
        top: auto;
        left: auto;
        -webkit-transform: perspective(0) rotateX(0);
        -moz-transform: perspective(0) rotateX(0);
        -ms-transform: perspective(0) rotateX(0);
        -o-transform: perspective(0) rotateX(0);
        transform: perspective(0) rotateX(0);
        opacity: 1;
        visibility: visible;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: 0 0 0 0;
        -moz-box-shadow: 0 0 0 0;
        box-shadow: 0 0 0 0;
        padding: 5px 0 5px 25px;
        display: none;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .main-menu-content ul li .dropdown-menu-item li .sub-menu {
        width: 100%;
        position: inherit;
        top: auto;
        left: auto;
        -webkit-transform: perspective(0) rotateX(0);
        -moz-transform: perspective(0) rotateX(0);
        -ms-transform: perspective(0) rotateX(0);
        -o-transform: perspective(0) rotateX(0);
        transform: perspective(0) rotateX(0);
        opacity: 1;
        visibility: visible;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: 0 0 0 0;
        -moz-box-shadow: 0 0 0 0;
        box-shadow: 0 0 0 0;
        padding: 5px 0 5px 25px;
        display: none;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .main-menu-content ul li .dropdown-menu-item li .sub-menu {
        width: 100%;
        position: inherit;
        top: auto;
        left: auto;
        -webkit-transform: perspective(0) rotateX(0);
        -moz-transform: perspective(0) rotateX(0);
        -ms-transform: perspective(0) rotateX(0);
        -o-transform: perspective(0) rotateX(0);
        transform: perspective(0) rotateX(0);
        opacity: 1;
        visibility: visible;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: 0 0 0 0;
        -moz-box-shadow: 0 0 0 0;
        box-shadow: 0 0 0 0;
        padding: 5px 0 5px 25px;
        display: none;
    }
}

.main-menu-content ul li .dropdown-menu-item li:hover a .la-plus {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.main-menu-content ul li .mega-menu {
    width: 625px;
    left: -453px;
    padding-top: 0;
    padding-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-menu-content ul li .mega-menu {
        left: auto;
        width: 100%;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .main-menu-content ul li .mega-menu {
        left: auto;
        width: 100%;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .main-menu-content ul li .mega-menu {
        left: auto;
        width: 100%;
    }
}

.main-menu-content ul li .mega-menu .mega-menu-item {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
}

.main-menu-content ul li .mega-menu .mega-menu-item + .mega-menu-item {
    border-left: 1px solid rgba(128, 137, 150, 0.1);
}

.main-menu-content ul li.active .drop-menu-toggler {
    background-color: rgba(128, 137, 150, 0.1);
}

.main-menu-content ul li.active .drop-menu-toggler::before {
    content: "\f113";
}

.main-menu-content ul li:last-child {
    padding-right: 0;
}

@media (min-width: 992px) {
    .main-menu-content ul li:hover .dropdown-menu-item {
        -webkit-transform: perspective(300px) rotateX(0);
        -moz-transform: perspective(300px) rotateX(0);
        -ms-transform: perspective(300px) rotateX(0);
        -o-transform: perspective(300px) rotateX(0);
        transform: perspective(300px) rotateX(0);
        opacity: 1;
        visibility: visible;
    }

    .main-menu-content ul li .dropdown-menu-item li:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: perspective(250px) rotateX(0);
        -moz-transform: perspective(250px) rotateX(0);
        -ms-transform: perspective(250px) rotateX(0);
        -o-transform: perspective(250px) rotateX(0);
        transform: perspective(250px) rotateX(0);
    }
}

/*---------------- fixed-nav ----------------*/
.fixed-nav .header-top-bar {
    height: 0;
    border: none;
    opacity: 0;
    visibility: hidden;
}

.fixed-nav .header-menu-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
}

/*===== modal-backdrop =====*/
.modal-backdrop.show {
    opacity: 0.8;
}

/*===== modal-popup =====*/
.modal-popup .modal-header,
.modal-popup .modal-body,
.modal-popup .modal-footer {
    padding: 20px;
}

.modal-header .close {
    background-color: rgba(128, 137, 150, 0.2);
    padding: 0;
    width: 33px;
    height: 33px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    margin-top: -5px;
    margin-right: 0;
    font-size: 20px;
    outline: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-shadow: none;
}

.modal-header .close:hover {
    background-color: var(--theme-primary);
    color: #fff;
}

/*============ author-content ===============*/
.author-content .author-img {
    width: 64px;
    height: 64px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-right: 15px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.author-content .author-img img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.05);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.05);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.05);
}

.author-content .author-img-md {
    width: 80px;
    height: 80px;
}

.author-content .author-bio .rating-stars li,
.author-content .author-bio .author__meta {
    font-size: 15px;
}

.author-content .author-bio .author__title {
    color: #0d233e;
    font-size: 16px;
    font-weight: 500;
}

.author-content .author-bio .author__title a {
    color: #0d233e;
}

/*============ avatar ===============*/
.avatar {
    background-color: #5d646d;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    height: 48px;
    width: 48px;
}

.avatar img {
    width: 100%;
    height: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

/*==== tag-list =====*/
.tag-list li {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 15px;
    margin-right: 3px;
}

.tag-list li a {
    border: 1px solid rgba(128, 137, 150, 0.2);
    color: #5d646d;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding: 4px 18px;
    display: block;
}

.tag-list li:hover a {
    color: var(--theme-primary);
    border-color: var(--theme-primary);
}

#particles-js {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

/*======= card ========*/
.card-item {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
}

.card-item:hover {
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
}

.card-item .card-img {
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.card-item .card-img img {
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.card-item .card-img .badge {
    position: absolute;
    background-color: #40cc6f;
    top: -10px;
    left: 20px;
    padding: 6px 11px;
    padding: 6px 11px;
    font-size: 12px;
    text-transform: uppercase;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    font-weight: 500;
    z-index: 1;
    color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.card-item .card-img .badge-ribbon {
    left: auto;
    right: 20px;
    background-color: #f9b851;
}

.card-item .card-img .add-to-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 18px;
    cursor: pointer;
    color: #0d233e;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.card-item .card-img .add-to-wishlist:hover {
    background-color: var(--theme-primary);
    color: #fff;
}

.card-item .card-title {
    font-size: 19px;
    color: #0d233e;
    margin-bottom: 2px;
}

.card-item .card-title a {
    color: #0d233e;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.card-item .card-title a:hover {
    color: var(--theme-primary);
}

.card-item .card-meta {
    font-size: 15px;
}

.card-item .card-meta .post-dot {
    width: 4px;
    height: 4px;
    background-color: rgba(128, 137, 150, 0.4);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
    position: relative;
    top: -3px;
}

.card-item .card-body {
    min-height: auto;
}

@media (max-width: 425px) {
    .card-item .list-items-2 li span {
        width: 100%;
    }
}

/*======= blog-card ========*/
.blog-card .card-img img {
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

.blog-card .card-img .post-format {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 18px;
    color: #0d233e;
    background-color: #fff;
    z-index: 1;
}

.blog-card .card-img::before {
    background-color: #0d233e;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: 1;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    transition: opacity 0.4s ease;
}

.blog-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    padding-bottom: 20px;
}

.blog-card .card-footer {
    background-color: transparent;
    border-top: none;
    position: relative;
    padding: 20px;
}

.blog-card .card-footer:last-child {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.blog-card .card-footer .author-content .author-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.blog-card .post-categories {
    padding-bottom: 14px;
}

.blog-card .post-categories .badge {
    text-transform: capitalize;
    background-color: #fff;
    color: #0d233e;
    font-size: 13px;
    margin-right: 5px;
    padding: 4px 8px;
    font-weight: 400;
}

.blog-card .post-categories .badge:hover {
    color: var(--theme-primary);
}

.blog-card .card-meta,
.blog-card .card-title {
    color: #fff;
}

.blog-card .card-meta a,
.blog-card .card-title a {
    color: #fff;
}

.blog-card .card-title {
    margin-bottom: 5px;
}

.blog-card .card-title a:hover {
    color: #fff;
}

.blog-card .card-meta .post-dot {
    background-color: #fff;
}

.text-blog-sub {
    color: #bbbbbb;
}

/*===== post-share ======*/
.post-share ul li {
    position: relative;
    font-size: 20px;
}

.post-share ul li .icon-element {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: rgba(40, 125, 250, 0.1);
    cursor: pointer;
    font-size: 20px;
    color: var(--theme-primary);
}

.post-share ul li .icon-element:hover {
    background-color: var(--theme-primary);
    color: #fff;
}

.post-share ul li .post-share-dropdown {
    position: absolute;
    top: 0;
    right: 42px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.3);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.3);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.3);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
}

.post-share ul li .post-share-dropdown::before {
    position: absolute;
    content: "";
    top: 50%;
    right: -4px;
    width: 8px;
    height: 8px;
    background-color: #fff;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.post-share ul li .post-share-dropdown li {
    display: inline-block;
}

.post-share ul li .post-share-dropdown li a {
    padding: 5px 6px;
    display: block;
    color: #0d233e;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.post-share ul li .post-share-dropdown li a:hover {
    color: var(--theme-primary);
}

.post-share ul li:hover .post-share-dropdown {
    right: 47px;
    opacity: 1;
    visibility: visible;
}

/*======= blog-card-layout-2 ========*/
.blog-card-layout-2 {
    -webkit-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -moz-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -ms-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.blog-card-layout-2 .post-categories .badge {
    border: 1px solid rgba(128, 137, 150, 0.2);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.blog-card-layout-2 .post-categories .badge:hover {
    border-color: var(--theme-primary);
}

.blog-card-layout-2 .card-body {
    position: inherit;
    top: auto;
    left: auto;
}

.blog-card-layout-2 .card-title {
    color: #0d233e;
}

.blog-card-layout-2 .card-title a {
    color: #0d233e;
}

.blog-card-layout-2 .card-title a:hover {
    color: var(--theme-primary);
}

.blog-card-layout-2 .card-meta {
    color: #5d646d;
}

.blog-card-layout-2 .card-meta .post-dot {
    background-color: rgba(128, 137, 150, 0.5);
}

.blog-card-layout-2 .card-footer {
    padding-top: 0;
}

/*======= card-item-list ========*/
.card-item-list {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .card-item-list {
        display: block;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .card-item-list {
        display: block;
    }
}

.card-item-list .card-img {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .card-item-list .card-img {
        -webkit-border-radius: 5px 5px 0 0;
        -moz-border-radius: 5px 5px 0 0;
        border-radius: 5px 5px 0 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .card-item-list .card-img {
        -webkit-border-radius: 5px 5px 0 0;
        -moz-border-radius: 5px 5px 0 0;
        border-radius: 5px 5px 0 0;
    }
}

.card-item-list .card-img img {
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
    object-fit: cover;
    height: 223px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .card-item-list .card-img img {
        height: auto;
        -webkit-border-radius: 5px 5px 0 0;
        -moz-border-radius: 5px 5px 0 0;
        border-radius: 5px 5px 0 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .card-item-list .card-img img {
        height: auto;
        -webkit-border-radius: 5px 5px 0 0;
        -moz-border-radius: 5px 5px 0 0;
        border-radius: 5px 5px 0 0;
    }
}

.card-item-list .card-body {
    -webkit-box-flex: 2;
    -webkit-flex: 2;
    -ms-flex: 2;
    flex: 2;
}

/*======= recent-post-card ========*/
.recent-post-card {
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
}

.recent-post-card:hover {
    background-color: #f0f0f0;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .recent-post-card {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
    }
}

@media (max-width: 480px) {
    .recent-post-card {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
    }
}

@media (max-width: 375px) {
    .recent-post-card {
        display: block;
    }
}

.recent-post-card .card-img img {
    height: 70px;
    width: 90px;
    object-fit: cover;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.recent-post-card .card-body {
    padding: 0 0 0 10px;
}

@media (max-width: 375px) {
    .recent-post-card .card-body {
        padding-top: 10px;
        padding-left: 0;
    }
}

.recent-post-card .card-title {
    font-size: 15px;
}

.recent-post-card .card-meta {
    font-size: 12px;
    line-height: 17px;
}

.recent-post-card:hover {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

/*======= blog-single-card ========*/
.blog-single-card {
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.blog-single-card .card-img img {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.blog-single-card:hover {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

@media (max-width: 375px) {
    .post-tag-wrap {
        display: block !important;
    }
}

.post-tag-wrap .post-share ul li .icon-element {
    margin-right: 0;
}

@media (max-width: 375px) {
    .post-author-wrap .author-content .d-flex,
    .post-navigation {
        display: block !important;
    }
}

@media (max-width: 375px) {
    .post-author-wrap .author-content .author-img {
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
}

@media (max-width: 1024px) {
    .card-area.padding-right-100px {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

/*====================================================
    cta-area
 ====================================================*/
.cta-area {
    position: relative;
    background-size: cover;
}

.cta-area::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d233e;
    opacity: 0.6;
}

@media (max-width: 425px) {
    .cta-area .section-heading .sec__title {
        font-size: 30px !important;
    }
}

/*===== subscriber-area ======*/
@media (max-width: 375px) {
    .subscriber-area .section-heading .sec__title {
        line-height: 40px !important;
        margin-bottom: 10px !important;
    }
}

.subscriber-area::before {
    opacity: 0.2;
    background-color: transparent;
    background-position: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .subscriber-box {
        margin-top: 20px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .subscriber-box {
        margin-top: 20px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .subscriber-box {
        margin-top: 20px;
    }
}

/*=============== comments ===============*/
.comment {
    border-bottom: 1px solid rgba(128, 137, 150, 0.1);
    padding: 20px 0px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    position: relative;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .comment {
        text-align: center;
        display: block;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .comment {
        text-align: center;
        display: block;
    }
}

/*=============== comments-avatar ===============*/
.comment-avatar .avatar__img {
    width: 90px;
    height: 90px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-right: 25px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border: 4px solid #fff;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .comment-avatar .avatar__img {
        margin-right: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .comment-avatar .avatar__img {
        margin-right: 0;
    }
}

/*=============== comment-reply ===============*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .comment-reply {
        display: block;
        text-align: center;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .comment-reply {
        display: block;
        text-align: center;
    }
}

.comment-reply .theme-btn {
    line-height: 35px;
    padding-right: 15px;
    padding-left: 15px;
    font-size: 14px;
    background-color: rgba(128, 137, 150, 0.1);
    color: #5d646d;
    border: none;
}

.comment-reply .theme-btn:hover {
    background-color: rgba(128, 137, 150, 0.2);
    color: #0d233e;
}

/*===== section-tab ======*/
.section-tab .nav-tabs {
    border-bottom: none;
}

.section-tab .nav-tabs .nav-item {
    margin-bottom: 0;
    margin-right: 6px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-tab .nav-tabs .nav-item {
        margin-bottom: 6px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .section-tab .nav-tabs .nav-item {
        margin-bottom: 6px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .section-tab .nav-tabs .nav-item {
        margin-bottom: 6px;
    }
}

.section-tab .nav-tabs .nav-link {
    -webkit-border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    border-radius: 8px 8px 0 0;
    background-color: transparent;
    color: #fff;
    border: none;
    padding: 9px 25px 9px 25px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 500;
}

.section-tab .nav-tabs .nav-link i {
    font-size: 20px;
}

.section-tab .nav-tabs .nav-link.active {
    color: var(--theme-primary);
    background-color: #fff;
}

/*====== section-tab 2 ========*/
.section-tab-2 .nav-tabs .nav-item {
    margin-right: 20px;
}

.section-tab-2 .nav-tabs .nav-link {
    color: #0d233e;
    background-color: transparent;
    padding: 2px 25px 9px 25px; /*0 0 0 20px;*/
    font-size: 14px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    position: relative;
}

.section-tab-2 .nav-tabs .nav-link::before,
.section-tab-2 .nav-tabs .nav-link::after {
    position: absolute;
    content: "";
    top: 8px;
    left: 0;
    width: 14px;
    height: 14px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.section-tab-2 .nav-tabs .nav-link::before {
    left: 4px;
    top: 12px;
    width: 6px;
    height: 6px;
    background-color: #fff;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.section-tab-2 .nav-tabs .nav-link::after {
    border: 2px solid rgba(19, 41, 104, 0.2);
}

.section-tab-2 .nav-tabs .nav-link.active,
.section-tab-2 .nav-tabs .nav-link:hover {
    background-color: transparent;
    color: var(--theme-primary);
}

.section-tab-2 .nav-tabs .nav-link.active::before,
.section-tab-2 .nav-tabs .nav-link:hover::before {
    background-color: var(--theme-primary);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.section-tab-2 .nav-tabs .nav-link.active::after,
.section-tab-2 .nav-tabs .nav-link:hover::after {
    border-color: var(--theme-primary);
}

/*====== sidebar =====*/
.sidebar {
    border: 1px solid rgba(128, 137, 150, 0.1);
    padding: 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sidebar {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .sidebar {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .sidebar {
        margin-top: 10px;
        margin-bottom: 40px;
        padding: 20px;
    }
}

/*====== sidebar-widget =====*/
.sidebar-widget {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(128, 137, 150, 0.2);
}

.sidebar-widget .title {
    font-size: 17px;
    margin-bottom: 20px;
    padding-bottom: 7px;
}

@media (max-width: 375px) {
    .sidebar-widget .section-tab-2 .nav-tabs .nav-item {
        margin-right: 10px;
    }
}

.sidebar-widget:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/*====================================================
    footer-area
 ====================================================*/
.footer-area {
    position: relative;
    z-index: 1;
    background-color: #f5f7fc;
}

.footer-area:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.footer-area .footer-bottom {
    width: 100%;
    background-color: var(--theme-primary);
}

.footer-area .footer-bottom p {
    color: #fff;
}

/*===== footer-item =======*/
.footer-item {
    position: relative;
    margin-bottom: 50px;
}

.footer-item .title {
    font-weight: 600;
    font-size: larger;
    color: var(--theme-primary);
}

.footer-item .footer-logo {
    height: 100%;
}

.footer-item .footer-logo .foot__logo img {
    width: 90%;
}

.footer-item .footer__desc a {
    color: #333333;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.font-weight-footer {
    color: var(--theme-primary);
    font-weight: bold;
}

.footer-item .footer__desc a:hover {
    color: var(--theme-primary);
}

.footer-item .contact-form-action .form-input {
    border: none;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
}

.footer-item .contact-form-action .form-control {
    border: none;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
}

.footer-item .footer__desc {
    letter-spacing: 0.2px;
}

/*===== footer-social-box =======*/
.footer-social-box {
    display: flex;
}

.social-profile {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 7px;
}

.social-profile li {
    display: inline-block;
}

.social-profile a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-profile a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-profile svg {
    width: 20px;
    height: 20px;
    transition: fill 0.3s ease;
    fill: white;
}

/* Facebook hover */
.social-profile a.facebook:hover {
    background-color: #1877f2;
}
.social-profile a.facebook:hover svg {
    fill: #ffffff;
}

/* TikTok hover */
.social-profile a.tiktok:hover {
    background-color: #000000;
}
.social-profile a.tiktok:hover svg {
    fill: #ffffff;
}

/* Instagram hover */
.social-profile a.instagram:hover {
    background: linear-gradient(
        45deg,
        #405de6,
        #5851db,
        #833ab4,
        #c13584,
        #e1306c,
        #fd1d1d
    );
}
.social-profile a.instagram:hover svg {
    fill: #ffffff;
}

.d-none {
    display: none !important;
}

/*===== footer-area =======*/
.footer-area .section-block {
    background-color: rgba(128, 137, 150, 0.1);
}

.footer-area .cta-svg {
    bottom: auto;
    top: -100px;
}

/*===== footer-social-box =======*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-social-box {
        text-align: center !important;
        padding-top: 20px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .footer-social-box {
        text-align: center !important;
        padding-top: 20px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .footer-social-box {
        text-align: center !important;
        padding-top: 20px;
    }
}

/*===== footer-area =======*/
.footer-area .section-block {
    background-color: rgba(128, 137, 150, 0.1);
}

.footer-area .cta-svg {
    bottom: auto;
    top: -100px;
}

/*===== copy-right =======*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .copy-right {
        text-align: center;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .copy-right {
        text-align: center;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .copy-right {
        text-align: center;
    }
}

/*===== copy__desc =======*/
.copy__desc {
    font-size: 15px;
}

.copy__desc a {
    color: #5d646d;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.copy__desc a:hover {
    color: var(--theme-primary);
}

.copy__desc span {
    animation: heartBeat 1000ms infinite linear;
    color: var(--theme-primary);
}

.slogan {
    font-family: cursive;
    margin: 2px 2px;
    font-size: small;
    display: block;
    font-weight: bold;
}

.btn-travel-docs {
    background-color: transparent;
    color: black;
    border: none;
    padding: 0px;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
}

.btn-travel-docs:hover {
    background-color: transparent;
    color: var(--theme-primary);
}

/* SECTION OUR SERVICES WE PROVIDED */
.ourservices-app {
    position: relative;
    z-index: 1;
}

.ourservices-app::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url(../images/background/bg5.jpg); */
    background-color: #e6e6e6;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.2;
}

.ourservices-app .ourservices-img {
    bottom: -100px;
    right: 0;
}

.ourservices-card {
    width: 100%;
    height: 300px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.05);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.05);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.05);
    border: 1px solid rgba(128, 137, 150, 0.2);
    padding: 25px 30px 30px 30px;
}

.ourservices-card .ourservices-img {
    width: 64px;
    height: 64px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-bottom: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.ourservices-card .ourservices-img img {
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.05);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.05);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.05);
}

.ourservices-card .ourservices-desc-box {
    width: 100%;
    height: fit-content;
}

.ourservices-card .ourservices-desc-box span {
    color: #f9b851;
    font-size: 18px;
    font-weight: bolder;
}

.ourservices-card .ourservices-desc-box h4 {
    margin: 5px 0px;
    font-size: 21px;
    display: block;
    font-weight: bold;
}

.ourservices-card .ourservices-desc-box h5 {
    margin: 5px 0px;
    font-size: 18px;
    display: block;
    font-weight: bold;
}

.ourservices-card .ourservices-desc-box h6 {
    margin: 5px 0px;
    font-size: 15px;
    display: block;
    font-weight: bold;
}

.ourservices-card .ourservices-desc-box p {
    font-size: small;
}

@media only screen and (min-width: 768px) and (max-width: 1100px) {
    .ourservices-app .ourservices-img {
        position: inherit;
        bottom: auto;
        right: auto;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .ourservices-section-heading .sec_title {
        font-size: 29px;
    }

    .ourservices-app .ourservices-img {
        position: inherit;
        bottom: auto;
        right: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .ourservices-section-heading .sec_title {
        font-size: 30px;
    }

    .ourservices-app .ourservices-img {
        position: inherit;
        bottom: auto;
        right: auto;
    }
}

button:focus:not(:focus-visible) {
    outline: 0;
}

.social-profile-fixed {
    position: fixed;
    border-radius: 5px 0 0 5px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    top: 50%;
    right: -1px;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.social-profile-fixed ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-profile-fixed li {
    margin: 6px 0;
}

.social-profile-fixed li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    background: var(--theme-primary);
    font-size: 18px;
    transition: all 0.3s ease;
}
.social-profile-fixed li a:hover {
    background: #fff;
}

.social-profile-fixed i {
    line-height: 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Hover efek */
.social-profile-fixed li a:hover i.la-facebook-f {
    transform: translateY(-6px) scale(1.1);
    background: linear-gradient(145deg, #00c6ff, #0072ff);
}

.social-profile-fixed li a:hover i.fa-x-twitter {
    transform: translateY(-6px) scale(1.1);
    background: #000000;
}

.social-profile-fixed li a:hover i.la-telegram-plane {
    transform: translateY(-6px) scale(1.1);
    background: linear-gradient(145deg, #2ca5e0, #1b83b9);
}

.social-profile-fixed li a:hover i.la-linkedin-in {
    transform: translateY(-6px) scale(1.1);
    background: linear-gradient(145deg, #0a66c2, #004182);
}

.social-profile-fixed li a:hover i.fa-tiktok {
    transform: translateY(-6px) scale(1.1);
    background-color: #000000;
}

.social-profile-fixed li a:hover i.la-instagram {
    transform: translateY(-6px) scale(1.1);
    background: linear-gradient(
        45deg,
        #405de6,
        #5851db,
        #833ab4,
        #c13584,
        #e1306c,
        #fd1d1d
    );
}

.social-profile-fixed li a:hover i.la-whatsapp {
    transform: translateY(-6px) scale(1.1);
    background-color: #25d366;
}

/* Tombol toggle */
.toggle-btn {
    position: absolute;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 25px;
    height: 50px;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-btn i {
    font-size: 20px;
    color: #ff4b2b;
    transition: transform 0.3s ease;
}

.social-profile-fixed.closed {
    right: -60px;
}

.social-profile-fixed.closed .toggle-btn i {
    transform: rotate(180deg);
}

.text-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.social-profile-fixed .share-title {
    padding-left: 3px;
    color: var(--theme-primary);
    font-weight: 500;
}

/* Search */
.search-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.search-title {
    white-space: nowrap;
    font-weight: 600;
    color: #333;
    font-size: 16px;
    margin-right: 8px;
}

.search-input {
    flex: 1;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-size: 15px;
    color: #333;
    transition: all 0.2s ease;
}

.search-input::placeholder {
    color: #aaa;
}

.search-input:focus {
    border-color: var(--theme-primary);
}

.search-btn {
    background-color: var(--theme-primary);
    border: none;
    color: white;
    height: 42px;
    padding: 0 30px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.search-btn:hover {
    background-color: white;
    color: var(--theme-primary) !important;
    border: 1px solid var(--theme-primary);
}

.search-btn:active {
    transform: scale(0.96);
}

.article-result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (max-width: 768px) {
    .article-result-grid {
        grid-template-columns: 1fr;
    }
}

.mb-auto {
    margin-bottom: auto;
}
.d-flex {
    display: flex !important;
}
.flex-column {
    flex-direction: column !important;
}
.justify-content-between {
    justify-content: space-between !important;
}

.navbar-lang-dropdown {
    position: relative;
    font-family: Arial, sans-serif;
}

.navbar-language-btn {
    background: transparent;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar-flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.navbar-lang-code {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.navbar-arrow {
    border: solid #333;
    border-width: 0 2.5px 2.5px 0;
    display: inline-block;
    padding: 3px;
    margin-left: 4px;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.navbar-lang-dropdown.open .navbar-arrow {
    transform: rotate(-135deg);
}

.navbar-lang-menu {
    display: none;
    position: absolute;
    top: 110%;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    width: 160px;
    overflow: hidden;
    z-index: 999;
}

.navbar-lang-item {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.navbar-lang-item:hover {
    background: #f5f5f5;
}
.navbar-lang-item.active {
    background: #f5f5f5;
}


.navbar-lang-dropdown.open .navbar-lang-menu {
    display: block;
}

.section-customer-review {
    height: auto;
    width: initial;
    position: relative;
    padding: 60px 0px;
    background-color: #f0f0f0;
    background-image: url(../images/blog/bg4.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    filter: alpha(opacity=40);
    -webkit-filter: alpha(opacity=40);
}

.section-customer-review h2 {
    font-size: 32px;
    color: #333333;
    font-weight: 700;
    margin-bottom: 5px;
}
.section-customer-review .title-sec {
    color: #ca262c;
}

/*---------------- LAYOUT INSTAGRAM ----------------*/
.bg-social-media {
    height: auto;
    width: initial;
    position: relative;
    padding-bottom: 100px;
    background-color: #f0f0f0;
    background-image: url(../images/bg4.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    filter: alpha(opacity=40);
    -webkit-filter: alpha(opacity=40);
}

.img-block-1 {
    width: 100%;
    height: 315px;
    border-radius: 10px;
    object-fit: cover;
}

.img-promo {
    padding: 30px 0px;
}

.img-block-2 {
    object-position: top;
    border-radius: 10px;
    width: 100%;
    height: 245px;
    object-fit: cover;
    position: relative;
}

.img-block-2:hover {
    opacity: 0.8;
    filter: blur(2px);
}

.img-block-2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    transition: opacity 0.6s;
}

.img-block-2:hover::before {
    opacity: 1;
}

.card-body-1 {
    padding: 20px;
    background-color: var(--theme-primary);
    color: white;
    border-radius: 10px;
    text-align: center;
}

.card-body-2 {
    padding: 20px;
    z-index: 10;
    height: 285px;
    background-color: white;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 93%;
}

.card-body-3 {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
}

.card-title {
    color: #333333 !important;
    font-size: 1.25rem;
    font-weight: bold;
}

.card-body .card-title .card {
    color: #fff !important;
    font-size: 1.25rem;
    font-weight: bold;
}

.news-item {
    display: flex;
    margin-bottom: 20px;
}

.news-item:hover {
    background-color: #dedede;
    border-radius: 10px;
    color: white;
    transition: 0.3s;
}

.news-item:last-child {
    margin-bottom: 0;
}

.news-item img {
    width: 120px;
    height: 100px;
    border-radius: 10px;
    margin-right: 15px;
    object-fit: cover;
    flex-shrink: 0;
}

.news-item h5 {
    width: 186px;
    margin-top: 5px !important;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1rem;
    color: #333333 !important;
    flex-grow: 1;
}

.img-profile {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white),
        linear-gradient(to right, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.name-profile {
    color: #333333 !important;
    line-height: 17px;
    font-size: 12px;
}

.desc-profile {
    margin-top: 21px;
    color: #3a3a3a !important;
    line-height: 24px;
    font-size: 14px;
}

.news-item p {
    margin: 0;
    font-size: 0.875rem;
    color: #6c757d;
}

.instagram-post {
    border-radius: 15px;
    border: 1px solid #dbdbdb;
}

.instagram-image {
    max-height: 400px;
    object-fit: cover;
}

.post-actions i {
    font-size: 1.2rem;
    margin-right: 15px;
    cursor: pointer;
}

.btn-follow-instagram {
    font-size: 14px;
    color: var(--theme-primary);
    line-height: 33px;
    padding: 0px 20px;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid var(--theme-primary);
    font-weight: 600;
}

.btn-follow-instagram:hover {
    color: #fff;
    background-color: var(--theme-primary);
    font-weight: 600;
}

.ring-container {
    position: relative;
}

.circle {
    width: 10px;
    height: 10px;
    background-color: #62bd19;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    left: -3px;
}

.ringring {
    border: 3px solid #62bd19;
    -webkit-border-radius: 30px;
    height: 20px;
    width: 20px;
    position: absolute;
    left: -8px;
    top: -11px;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0;
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

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

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .margin-mobile-block-2 {
        margin-top: 20px;
    }

    .margin-mobile-block-3 {
        margin-top: 20px;
    }

    .card-body-2 {
        top: 220px;
    }
    .card-body-3 {
        margin-top: 260px;
    }
}

@media only screen and (min-width: 479px) and (max-width: 1200px) {
    .desc-profile {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .news-item h5 {
        width: 100%;
        min-width: 220px;
    }

    .margin-mobile-block-3 {
        margin-top: 20px;
    }

    .card-body-2 {
        top: 209px;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .card-body-1 {
        padding: 7px 20px;
    }
}

/* END INSTAGRAM FEED */

.section-title {
    padding-left: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.section-title > li {
    font-size: 1.4rem;
    font-weight: 600;
    list-style: decimal;
}

.blockquote-item .list-items li {
    color: #ffffff;
}

.text-white {
    color: #ffffff !important;
}

