/*------------------------------------------------------------------
Project:		iThrive
Version:		1.0
Last change:	15/06/2025
Assigned to:	www.ithrivecentre.com
-------------------------------------------------------------------*/
@font-face {
    font-family: 'Futura';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/futura-font/futura-light.ttf') format('truetype');
}

@font-face {
    font-family: 'Futura';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/futura-font/futura-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Futura';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/futura-font/futura-medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Futura';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/futura-font/futura-bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Futura';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/futura-font/futura-extrabold.otf') format('truetype');
}

@font-face {
    font-family: 'Futura';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/futura-font/futura-heavy.otf') format('truetype');
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --bs-primary: #3E1E71;
    --bs-primary-rgb: 62 30 113;
    --bs-primary-100: rgb(var(--bs-primary-rgb)/var(--bs-opacity-1));
    --bs-primary-200: rgb(var(--bs-primary-rgb)/var(--bs-opacity-2));
    --bs-primary-300: rgb(var(--bs-primary-rgb)/var(--bs-opacity-3));
    --bs-primary-400: rgb(var(--bs-primary-rgb)/var(--bs-opacity-4));
    --bs-primary-500: rgb(var(--bs-primary-rgb)/var(--bs-opacity-5));
    --bs-primary-600: rgb(var(--bs-primary-rgb)/var(--bs-opacity-6));
    --bs-primary-700: rgb(var(--bs-primary-rgb)/var(--bs-opacity-7));
    --bs-primary-800: rgb(var(--bs-primary-rgb)/var(--bs-opacity-8));
    --bs-secondary: #FAA829;
    --bs-secondary-rgb: 250 168 41;
    --bs-secondary-100: rgb(var(--bs-secondary-rgb)/var(--bs-opacity-1));
    --bs-secondary-200: rgb(var(--bs-secondary-rgb)/var(--bs-opacity-2));
    --bs-secondary-300: rgb(var(--bs-secondary-rgb)/var(--bs-opacity-3));
    --bs-secondary-400: rgb(var(--bs-secondary-rgb)/var(--bs-opacity-4));
    --bs-secondary-500: rgb(var(--bs-secondary-rgb)/var(--bs-opacity-5));
    --bs-secondary-600: rgb(var(--bs-secondary-rgb)/var(--bs-opacity-6));
    --bs-secondary-700: rgb(var(--bs-secondary-rgb)/var(--bs-opacity-7));
    --bs-secondary-800: rgb(var(--bs-secondary-rgb)/var(--bs-opacity-8));
    --bs-tertiary: #E24E59;
    --bs-tertiary-rgb: 226 78 89;
    --bs-tertiary-100: rgb(var(--bs-tertiary-rgb)/var(--bs-opacity-1));
    --bs-tertiary-200: rgb(var(--bs-tertiary-rgb)/var(--bs-opacity-2));
    --bs-tertiary-300: rgb(var(--bs-tertiary-rgb)/var(--bs-opacity-3));
    --bs-tertiary-400: rgb(var(--bs-tertiary-rgb)/var(--bs-opacity-4));
    --bs-tertiary-500: rgb(var(--bs-tertiary-rgb)/var(--bs-opacity-5));
    --bs-tertiary-600: rgb(var(--bs-tertiary-rgb)/var(--bs-opacity-6));
    --bs-tertiary-700: rgb(var(--bs-tertiary-rgb)/var(--bs-opacity-7));
    --bs-tertiary-800: rgb(var(--bs-tertiary-rgb)/var(--bs-opacity-8));
    --bs-dark: #000000;
    --bs-light: #FFFFFF;
    --bs-text: #78669A;
    --font-primary: "Roboto", sans-serif;
    --font-secondary: "Futura", serif;
    --bs-opacity-1: 0.1;
    --bs-opacity-2: 0.2;
    --bs-opacity-3: 0.3;
    --bs-opacity-4: 0.4;
    --bs-opacity-5: 0.5;
    --bs-opacity-6: 0.6;
    --bs-opacity-7: 0.7;
    --bs-opacity-8: 0.8;
    --bs-radius-0: 0px;
    --bs-radius-xs: 2px;
    --bs-radius-sm: 4px;
    --bs-radius-md: 6px;
    --bs-radius-lg: 8px;
    --bs-radius-xl: 10px;
}
* {
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}
*:hover {
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}
html {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    color: var(--bs-text);
    background-color: var(--bs-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
:focus, button:focus {
    outline: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--bs-primary);
}
p {
    color: var(--bs-text);
}
ul, ol {
    list-style: none;
    padding: 0px;
    margin: 0px;
}
.list-ul {
    margin-bottom: 1rem;
}
.list-ul li {
    position: relative;
    margin-left: 35px;
    margin-bottom: 5px;
}
.list-ul li::before {
    content: "\f192";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    left: -35px;
}
a {
    color: var(--bs-primary);
    text-decoration: none;
    transition: all .5s ease;
}
a:hover {
    color: var(--bs-secondary);
    text-decoration: none;
}
.bg-light {
    background-color: var(--bs-light) !important;
}
.bg-dark {
    background-color: var(--bs-dark) !important;
}
.bg-primary {
    background-color: var(--bs-primary) !important;
}

.bg-primary-100 {
    background-color: var(--bs-primary-100) !important;
}

.bg-primary-200 {
    background-color: var(--bs-primary-200) !important;
}

.bg-primary-300 {
    background-color: var(--bs-primary-300) !important;
}

.bg-primary-400 {
    background-color: var(--bs-primary-400) !important;
}

.bg-primary-500 {
    background-color: var(--bs-primary-500) !important;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.bg-secondary-100 {
    background-color: var(--bs-secondary-100) !important;
}

.bg-secondary-200 {
    background-color: var(--bs-secondary-200) !important;
}

.bg-secondary-300 {
    background-color: var(--bs-secondary-300) !important;
}

.bg-secondary-400 {
    background-color: var(--bs-secondary-400) !important;
}

.bg-secondary-500 {
    background-color: var(--bs-secondary-500) !important;
}

.bg-tertiary {
    background-color: var(--bs-tertiary) !important;
}

.bg-tertiary-100 {
    background-color: var(--bs-tertiary-100) !important;
}

.bg-tertiary-200 {
    background-color: var(--bs-tertiary-200) !important;
}

.bg-tertiary-300 {
    background-color: var(--bs-tertiary-300) !important;
}

.bg-tertiary-400 {
    background-color: var(--bs-tertiary-400) !important;
}

.bg-tertiary-500 {
    background-color: var(--bs-tertiary-500) !important;
}

.text-gray-100 {
    color: var(--bs-gray-100) !important;
}
.text-gray-200 {
    color: var(--bs-gray-200) !important;
}
.text-gray-300 {
    color: var(--bs-gray-300) !important;
}
.text-gray-400 {
    color: var(--bs-gray-400) !important;
}
.text-gray-500 {
    color: var(--bs-gray-500) !important;
}
.text-gray-600 {
    color: var(--bs-gray-600) !important;
}
.text-gray-700 {
    color: var(--bs-gray-700) !important;
}
.text-italic {
    font-style: italic !important;
}
.butn, .btn {
    font-weight: 500;
    font-size: 16px;
    padding: 18px 40px;
    border-radius: var(--bs-radius-0);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: all 0.6s;
    display: inline-flex;
    align-items: center;
    border-radius: 100px;
    transition: all 0.3s linear;
}
.btn .btn-text {
    overflow: hidden;
    width: 100%;
    position: relative;
}
.btn .btn-text span {
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    text-align: center;
    transition: transform 0.5s ease;
    display: block;
}
.btn .btn-text span:first-child {
    transform: translateY(24px);
}
.btn .btn-text span:last-child {
    position: relative;
}
.btn .btn-text span i {
    vertical-align: middle;
}
.btn:hover .btn-text span:first-child {
    transform: translateY(0);
}
.btn:hover .btn-text span:last-child {
    transform: translateY(-24px);
}

.btn-link {
    font-weight: 500;
    color: var(--bs-dark);
    padding: 0px;
    border-radius: 0px;
    text-decoration: none;
    transition: all 0.5s ease;
    box-shadow: none !important;
    text-transform: capitalize !important;
    border: 0px !important;
}

.btn-link:hover {
    color: var(--bs-secondary);
}
.btn-primary {
    color: var(--bs-light);
    border-color: rgb(var(--bs-primary-rgb)/var(--bs-opacity-1));
    background-color: var(--bs-primary);
}
.btn-primary:active,
.btn-primary:active:focus,
.btn-primary:active:hover,
.btn-check:checked+.btn-primary,
.btn-primary:hover,
.btn-primary.active,
.btn-primary.show,
.btn-primary:first-child:active,
:not(.btn-check)+.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active:focus {
    color: var(--bs-white);
    border-color: var(--bs-secondary);
    background-color: var(--bs-secondary);
}
.btn-secondary {
    color: var(--bs-light);
    border-color: rgb(var(--bs-secondary-rgb)/var(--bs-opacity-1));
    background-color: var(--bs-secondary);
}
.btn-secondary:active,
.btn-secondary:active:focus,
.btn-secondary:active:hover,
.btn-check:checked+.btn-secondary,
.btn-secondary:hover,
.btn-secondary.active,
.btn-secondary.show,
.btn-secondary:first-child:active,
:not(.btn-check)+.btn-secondary:active,
.btn-secondary:not(:disabled):not(.disabled):active:focus {
    color: var(--bs-white);
    border-color: var(--bs-primary);
    background-color: var(--bs-primary);
}
.btn-tertiary {
    color: var(--bs-light);
    border-color: rgb(var(--bs-tertiary-rgb)/var(--bs-opacity-1));
    background-color: var(--bs-tertiary);
}
.btn-tertiary:active,
.btn-tertiary:active:focus,
.btn-tertiary:active:hover,
.btn-check:checked+.btn-tertiary,
.btn-tertiary:hover,
.btn-tertiary.active,
.btn-tertiary.show,
.btn-tertiary:first-child:active,
:not(.btn-check)+.btn-tertiary:active,
.btn-tertiary:not(:disabled):not(.disabled):active:focus {
    color: var(--bs-white);
    border-color: var(--bs-primary);
    background-color: var(--bs-primary);
}
.btn-white {
    color: var(--bs-dark);
    border-color: var(--bs-light);
    background-color: var(--bs-light);
}
.btn-white:active,
.btn-white:active:focus,
.btn-white:active:hover,
.btn-check:checked+.btn-white,
.btn-white:hover,
.btn-white.active,
.btn-white.show,
.btn-white:first-child:active,
:not(.btn-check)+.btn-white:active,
.btn-white:not(:disabled):not(.disabled):active:focus {
    color: var(--bs-white);
    border-color: var(--bs-dark);
    background-color: var(--bs-dark);
}

.section-padding {
    padding: 100px 0px;
}
.section-title-box {
    margin-bottom: 70px;
}
.section-title-box .section-title {
    font-weight: 500;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--bs-primary);
}
.section-title-box .section-text {
    font-size: 20px;
    color: var(--bs-text);
    margin-bottom: 0px;
}
.section-box-left {
    padding-right: 100px;
}
.section-action {
    text-align: center;
    margin-top: 30px;
}
.table tr th {
    font-weight: 600;
    font-size: 14px;
    color: var(--bs-primary);
    text-transform: uppercase;
}
.table tr td {
    color: var(--bs-text);
}
.table-striped>tbody>tr:nth-of-type(odd)>* {
    background-color: #faf9fc !important;
    box-shadow: none !important;
}
/*-- Form :: Start --*/
.form-label {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 5px;
}
.required {
    font-size: 18px;
    line-height: 1;
    color: #d42020;
}
.form-group {
    margin-bottom: 30px;
}
.form-control {
    font-weight: 300;
    line-height: 2.8;
    padding: .375rem 1rem;
    border-radius: 0px;
    border-color: var(--bs-gray-300);
}
.form-control:focus {
    border-color: var(--bs-primary-300);
    box-shadow: none;
}
.form-control::-webkit-input-placeholder {
    font-weight: 300;
    color: #909090;
}
.form-control::-moz-placeholder {
    font-weight: 300;
    color: #909090;
}
.form-control:-ms-input-placeholder {
    font-weight: 300;
    color: #909090;
}
.form-control:-moz-placeholder {
    font-weight: 300;
    color: #909090;
}
.form-check {
    position: relative;
    padding-left: 60px;
    z-index: 1;
}
.form-group.form-check .form-check-input {
    border-radius: 2px;
    margin-top: 11px;
    margin-left: -41px;
    background-color: #ffffff;
    border-color: #d6d8db;
    cursor: pointer;
}
.form-group.form-check .form-check-input:focus {
    border-color: var(--bs-primary);
    outline: 0;
    box-shadow: none;
}
.form-group.form-check .form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.form-group.form-check .form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url('../images/check-mark.png');
    background-size: 12px;
}
.form-group.form-check .form-check-input ~ .checkmark {
    position: absolute;
    top: 12px;
    left: 20px;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 13px #EEEEEE;
    z-index: -1;
    transition: all .5s ease;
}
.form-group.form-check .form-check-input:checked[type=checkbox] ~ .checkmark {
    box-shadow: 0px 0px 0px 13px rgb(83 153 196 / 15%);
}
.form-group.form-check .form-check-label {
    font-size: 16px;
    line-height: 1.4;
    padding-top: 1px;
    color: var(--bs-text);
}
.form-group.form-check .form-check-input[type=radio] {
    border-radius: 50% !important;
}
.form-check-input {
    margin-top: 3px;
    width: 20px;
    height: 20px;
}
input:-internal-autofill-selected {
    appearance: menulist-button;
    background-image: none !important;
    background-color: #000 !important;
    color: fieldtext !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--bs-light);
    -webkit-box-shadow: 0 0 0px 40rem #000 inset;
}
button:focus{
    outline: none;
    box-shadow: none !important;
}
.form-group.field-error .form-control {
    border-color: #d52424;
    background-color: #fff3f3;
}
.form-group .text-danger {
    font-size: 14px;
}
textarea.form-control {
    line-height: 2;
}


.bootstrap-datetimepicker-widget.dropdown-menu {
    width: 16rem;
    border-radius: 0px;
    border-color: #ddd9e2;
}
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
    text-align: center;
    border-radius: 0px;
}
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.bootstrap-datetimepicker-widget table td span:hover,
.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
    background: #ebe8f0;
}
.bootstrap-datetimepicker-widget .timepicker .timepicker-picker a.btn:hover,
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background-color: var(--bs-primary);
}
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.bootstrap-datetimepicker-widget table td span:hover,
.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
    color: var(--bs-secondary);
    background: var(--bs-primary);
}
.bootstrap-datetimepicker-widget table td span {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-top: 2px;
    margin-bottom: 2px;
    cursor: pointer;
    border-radius: 0px;
}
.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
    background: none;
    color: #c2bfc8;
    cursor: not-allowed;
}
.bootstrap-datetimepicker-widget .btn.btn-primary.disabled {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.bootstrap-datetimepicker-widget .timepicker .timepicker-picker a.btn {
    color: var(--bs-primary);
    border-radius: 0px;
}
.bootstrap-datetimepicker-widget button[data-action] {
    padding: 6px;
    border-radius: 0px;
}
.bootstrap-datetimepicker-widget table td.today:before {
    border-bottom-color: var(--bs-primary);
}
.bootstrap-datetimepicker-widget .timepicker .timepicker-picker a.btn:hover {
    color: var(--bs-white);
}
.form-control.datetimepicker-input {
    padding-right: 40px;
}
.input-group-append {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}
.input-group-append .input-group-text {
    color: #9d9d9d;
    padding: 0px;
    border: 0px;
    background-color: transparent;
}
/*-- Form :: End --*/
/*--- Preloader :: Start ---*/
.preloader {
    align-items: center;
    cursor: default;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
}
.preloader .animation-preloader {
    z-index: 1000;
}
.preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 8px solid var(--bs-gray-400);
    border-top-color: var(--bs-primary);
    margin: 0 auto 40px auto;
    width: 130px;
    height: 130px;
}
.preloader .animation-preloader .txt-loading {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 80px;
    text-align: center;
    user-select: none;
}
.preloader .animation-preloader .txt-loading .letters-loading {
    position: relative;
    color: var(--bs-gray-400);
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
    content: attr(data-text-preloader);
    position: absolute;
    top: -30px;
    left: -6px;
    opacity: 0;
    color: var(--bs-dark);
    transform: rotateY(-90deg);
    animation: letters-loading 4s infinite;
}
.preloader p {
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--bs-dark);
}
.preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}
.preloader .loader .row {
    height: 100%;
}
.preloader .loader .loader-section {
    padding: 0px;
}
.preloader .loader .loader-section .bg {
    background-color: var(--bs-light);
    width: 100%;
    height: 100%;
    left: 0;
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
    width: 0;
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
}
@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}
@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}
@-webkit-keyframes letters-loading {
    0%, 75%, 100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%, 50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}
@keyframes letters-loading {
    0%, 75%, 100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%, 50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}
@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
/*--- Preloader :: End ---*/

/*--- Navbar :: Start ---*/
.main-header {
    -webkit-transition: .3s all ease-out;
    -moz-transition: .3s all ease-out;
    -o-transition: .3s all ease-out;
    -ms-transition: .3s all ease-out;
    transition: .3s all ease-out;
}
.main-header .navbar {
    position: fixed;
    top: 0;
    left: 50%;
    max-width: 1296px;
    border: 0px;
    padding: 0px;
    z-index: 100;
    transition: all 0.3s;
    margin-top: 40px;
    width: calc(100% - 40px);
    transform: translateX(-50%);
    background-color: var(--bs-light);
    box-shadow: 0 22px 51px -9px rgba(0, 0, 31, .06);
}
.main-header .navbar .navbar-brand {
    margin-right: 40px;
}
.main-header .navbar .navbar-brand .logo-img {
    width: 180px;
}
.main-header .navbar .navbar-nav.menu {
    height: 100%;
}
.main-header .menu > .nav-item {
    position: relative;
    transition: all 0.1s linear;
    cursor: pointer;
    margin: 0px 15px;
}
.main-header .menu > .nav-item > .nav-link {
    font-size: 16px;
    color: var(--bs-text);
    padding: 0;
    height: 100%;
    opacity: 1;
    display: flex;
    align-items: center;
    position: relative;
}
.main-header .menu > .nav-item.submenu .dropdown-menu {
    padding: 15px 0px;
    margin: 0px;
    border: 0px;
    border-radius: 8px;
    left: -30px;
    min-width: 200px;
    background-color: var(--bs-light);
    top: 100%;
    box-shadow: 0px 6px 20px 0px rgba(1, 6, 33, 0.08);
}
.main-header .menu > .nav-item.submenu .dropdown-menu .nav-item {
    position: relative;
    display: block;
    width: 100%;
}
.main-header .menu > .nav-item.submenu > .nav-link:after {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    background-color: transparent;
    border: 0px;
    color: var(--bs-primary);
    font-size: 20px;
    right: 0px;
    font-size: 13px;
}
.main-header .menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link {
    font-size: 14px;
    color: var(--bs-text);
    padding: 10px 30px;
    white-space: nowrap;
    transition: color 0.2s linear;
}
.main-header .menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link:after {
    display: none;
}
.main-header .menu > .nav-item.submenu .dropdown-menu .nav-item:hover > .nav-link,
.main-header .menu > .nav-item.submenu .dropdown-menu .nav-item:hover > .mobile_dropdown_icon,
.main-header .menu > .nav-item.submenu .dropdown-menu .nav-item:focus > .nav-link,
.main-header .menu > .nav-item.submenu .dropdown-menu .nav-item:focus > .mobile_dropdown_icon,
.main-header .menu > .nav-item.submenu .dropdown-menu .nav-item.active > .nav-link,
.main-header .menu > .nav-item.submenu .dropdown-menu .nav-item.active > .mobile_dropdown_icon {
    color: var(--bs-primary);
}

.main-header .menu > .nav-item.submenu .dropdown-menu .nav-item > .dropdown-menu {
    transition: transform 0.3s ease-in;
}
.main-header .menu > .nav-item.submenu .dropdown-menu .nav-item > .dropdown-menu:before {
    display: none;
}
.main-header .menu > .nav-item.active > .nav-link {
    color: var(--bs-secondary);
}
.main-header .menu > .nav-item.active > .mobile_dropdown_icon {
    color: var(--bs-primary);
}
.main-header .menu > .nav-item:hover .nav-link,
.main-header .menu > .nav-item:hover > .mobile_dropdown_icon {
    color: var(--bs-primary);
}
.main-header .navbar.navbar-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0px 4px 10px 0px rgba(12, 0, 46, 0.05);
    padding: 0px;
}
.main-header .navbar.navbar-fixed .menu > .nav-item {
    padding-top: 24px;
    padding-bottom: 24px;
    transition: all 0.2s linear;
}
.main-header .navbar.navbar-fixed .menu-toggle .hamburger span {
    background: #091c1e;
}
.main-header .navbar.navbar-fixed .menu-toggle .hamburger-cross span {
    background: #091c1e;
}
.main-header .navbar-toggler {
    position: relative;
    width: 30px;
    height: 20px;
    border-radius: 0px;
    padding: 0px;
    border: 0px;
    margin: 25px 0px;
}
.main-header .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}
.main-header .menu-toggle {
    width: 22px;
    height: 22px;
    position: relative;
    cursor: pointer;
    display: block;
}
.main-header .menu-toggle .hamburger {
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
}
.main-header .menu-toggle .hamburger span {
    width: 0%;
    height: 2px;
    position: relative;
    top: 0;
    left: 0;
    margin: 4px 0;
    display: block;
    background: #091c1e;
    border-radius: 3px;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
.main-header .menu-toggle .hamburger span:nth-child(1) {
    transition-delay: 0s;
}
.main-header .menu-toggle .hamburger span:nth-child(2) {
    transition-delay: 0.125s;
}
.main-header .menu-toggle .hamburger span:nth-child(3) {
    transition-delay: 0.2s;
}
.main-header .menu-toggle .hamburger-cross {
    position: absolute;
    height: 100%;
    width: 100%;
    transform: rotate(45deg);
    display: block;
}
.main-header .menu-toggle .hamburger-cross span {
    display: block;
    background: #091c1e;
    border-radius: 3px;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
.main-header .menu-toggle .hamburger-cross span:nth-child(1) {
    height: 100%;
    width: 2px;
    position: absolute;
    top: 0;
    left: 10px;
    transition-delay: 0.3s;
}
.main-header .menu-toggle .hamburger-cross span:nth-child(2) {
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    top: 10px;
    transition-delay: 0.4s;
}
.main-header .collapsed .menu-toggle .hamburger span {
    width: 100%;
}
.main-header .collapsed .menu-toggle .hamburger span:nth-child(1) {
    transition-delay: 0.3s;
}
.main-header .collapsed .menu-toggle .hamburger span:nth-child(2) {
    transition-delay: 0.4s;
}
.main-header .collapsed .menu-toggle .hamburger span:nth-child(3) {
    transition-delay: 0.5s;
}
.main-header .collapsed .menu-toggle .hamburger-cross span:nth-child(1) {
    height: 0%;
    transition-delay: 0s;
}
.main-header .collapsed .menu-toggle .hamburger-cross span:nth-child(2) {
    width: 0%;
    transition-delay: 0.2s;
}
.main-header .navbar .nav-right .btn {
    border-radius: 0px !important
}
/*--- Navbar :: End ---*/
/*--- Banner :: Start ---*/
.main-banner-area {
    position: relative;
    padding: 220px 0px 120px;
    overflow: hidden;
    z-index: 1;
}
.main-banner-area .main-banner-content {
    padding-right: 50px;
}
.main-banner-area .main-banner-content .banner-title {
    font-weight: 500;
    font-size: 54px;
    color: var(--bs-primary);
    margin-bottom: 20px;
}
.main-banner-area .main-banner-content .banner-text {
    font-size: 20px;
    color: var(--bs-text);
    margin-bottom: 40px;
}
.main-banner-area .main-banner-img {
    position: relative;
    text-align: right;
}
/*--- Banner :: End ---*/
/*--- Home Services :: Start ---*/
.service-item {
    position: relative;
    display: block;
}
.service-item .service-img {
    margin-bottom: 20px;
}
.service-info {
    padding: 15px 20px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    position: absolute;
    background-color: var(--bs-primary);
    transition: ease-in-out 0.5s;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    -ms-transition: ease-in-out 0.5s;
    -o-transition: ease-in-out 0.5s;
}
.service-item .service-title {
    font-size: 18px;
    color: var(--bs-light);
    margin-bottom: 0px;
}
.service-item .service-text {
    color: var(--bs-light);
    margin-top: 10px;
    margin-bottom: 0px;
    display: none;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
}
/*--- Home Services :: End ---*/
.service-detail-section {
    overflow: hidden;
}
.service-detail-item + .service-detail-item {
    margin-top: 100px;
}
.service-detail-item .service-detail-content {
    margin-left: 50px;
}
.flex-row-reverse.service-detail-item .service-detail-content {
    margin-right: 50px;
    margin-left: 0px;
}
.service-detail-title {
    font-weight: 500;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--bs-primary);
}
.service-detail-title-t2 {
    font-weight: 600;
    font-size: 20px;
    margin: 15px 0px 20px;
}
.service-detail-title-t3 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}
.section-detail-hinttext {
    font-size: 20px;
    color: var(--bs-text);
}
.service-detail-img {
    position: relative;
}
.service-detail-img:after {
    content: "";
    position: absolute;
    top: -40px;
    left: -80px;
    background-image: url(../images/patern-bg-02.png);
    background-position: right;
    background-repeat: no-repeat;
    width: 200px;
    height: 100px;
    background-size: 230px;
    z-index: -1;
}
.flex-row-reverse .service-detail-img:after {
    left: auto;
    right: -80px;
}
.service-detail-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 10px;
}
.service-detail-list li:last-child {
    margin-bottom: 0px;
}
.service-detail-list li:before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    font-weight: 500;
    font-size: 11px;
    left: 0px;
    width: 24px;
    height: 24px;
    line-height: 22px;
    border-radius: 50%;
    text-align: center;
    background-color: rgb(var(--bs-primary-rgb) / var(--bs-opacity-1));
    border: 1px solid rgb(var(--bs-primary-rgb) / var(--bs-opacity-1));
}

/*--- About :: Start ---*/
.about-content-box {
    margin-left: 50px;
}
.flex-row-reverse .about-content-box {
    margin-left: 0px;
    margin-right: 50px;
}
/*--- About :: End ---*/
/*--- Our Team :: Start ---*/
.team-item {
    margin-bottom: 30px;
}
.team-item .team-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.team-item .team-img img {
    width: 100%;
    transition: all 0.3s linear;
}
.team-item:hover .team-img img {
    transform: scale(1.1);
}
.team-item .team-img .team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.team-item:hover .team-img .team-social {
    opacity: 1;
}
.team-item .team-img .team-social li {
    display: inline-block;
}
.team-item .team-img .team-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--bs-primary);
    background-color: var(--bs-gray-100);
    border-radius: 50%;
    transition: all 0.3s linear;
    transform: scale(0);
}
.team-item .team-img .team-social li a:hover {
    color: var(--bs-light);
    background-color: var(--bs-primary);
}
.team-item:hover .team-img .team-social li a {
    transform: scale(1);
    opacity: 1;
}
.team-item .team-text {
    padding-top: 25px;
    text-align: center;
}
.team-item .team-text > h5 {
    font-size: 24px;
    margin-bottom: 2px;
}
.team-item .team-text > p {
    margin-bottom: 0px;
}
.goal-text {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 36px;
    line-height: 1.6;
    color: var(--bs-light);
    text-align: center;
    margin: 0px 100px;
}
.about-team-box {
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid var(--bs-secondary-100);
    background-color: var(--bs-secondary-100);
    transition: all 0.3s ease-in-out;
}
.about-team-item {
    display: flex;
    gap: 20px;
}
.about-team-item .about-team-img img {
    max-width: 200px;
}
.about-team-item .about-team-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.about-team-item .about-team-content .about-team-name {
    margin-bottom: 2px;
}
.about-team-item .about-team-content .about-team-text {
    margin-bottom: 0px;
}
.about-team-box .about-team-quote {
    position: relative;
    font-weight: 500;
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    margin: 15px 0px 0px 0px;
    padding: 10px;
    background-color: #f7ead8;
    border: 1px solid #f3e7d6;
    padding: 15px 15px 15px 75px;
    position: relative;
    z-index: 1;
}
.about-team-box .about-team-quote::before {
    content: "";
    width: 37px;
    height: 27px;
    position: absolute;
    background-image: url(../images/blog/quote.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 26px;
    left: 20px;
    z-index: -1;
}
/*--- Our Team :: End ---*/
/*--- Testimonial :: Start ---*/
.testimonial-slider .testimonial-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 340px;
    padding: 30px;
    margin: 30px 10px;
    background-color: var(--bs-light);
    box-shadow: 0px 4px 40px 0px rgba(20, 20, 31, 0.05);
}
.testimonial-slider .testimonial-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    align-items: center;
}
.testimonial-slider .testimonial-head .testimonial-logo img {
    display: block;
    max-width: 100%;
}
.testimonial-slider .testimonial-head .testimonial-rating {
    margin-bottom: 8px;
}
.testimonial-slider .testimonial-head .testimonial-rating i {
    color: #f3c625;
    margin-left: 2px;
}
.testimonial-slider .testimonial-client-info {
    display: flex;
    align-items: center;
    margin-top: auto;
}
.testimonial-slider .testimonial-client-info .testimonial-client-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 15px;
}
.testimonial-slider .testimonial-client-info .testimonial-client-imgtext {
    font-weight: 700;
    font-size: 18px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    text-align: center;
    margin-right: 15px;
    background-color: var(--bs-secondary-500) !important;
    color: var(--bs-primary);
}
.testimonial-slider .testimonial-client-info .testimonial-client-name {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 2px;
}
.testimonial-slider .testimonial-client-info .testimonial-client-position {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 14px;
    color: var(--bs-text);
    margin-bottom: 0px;
}

.testimonial-slider .swiper-action {
    margin: auto;
    display: flex;
    justify-content: center;
}
.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev {
    position: relative;
    left: auto;
    right: auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    line-height: 44px;
    color: var(--bs-primary);
    background-color: transparent;
    border: 1px solid var(--bs-primary);
    margin: 0px 5px;
    transition: all 0.3s linear;
}
.testimonial-slider .swiper-button-next:hover,
.testimonial-slider .swiper-button-prev:hover {
    color: var(--bs-light);
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.testimonial-slider .swiper-button-next:after,
.testimonial-slider .swiper-button-prev:after {
    display: none;
}

.custom-nav {
    text-align: center;
    margin-top: 60px;
}

.custom-nav .swiper-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    line-height: 44px;
    color: var(--bs-primary);
    background-color: transparent;
    border: 1px solid var(--bs-primary);
    margin: 0px 5px;
    transition: all 0.3s linear;
}
.custom-nav .swiper-arrow:hover {
    color: var(--bs-light);
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
/*--- Testimonial :: End ---*/
/*--- Blog :: Start ---*/
.blog-box {
    margin-bottom: 30px;
}
.blog-box .blog-image {
    position: relative;
    overflow: hidden;
}
.blog-box .blog-image>a {
    display: block;
}
.blog-box .blog-tag-list {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
}
.blog-box .blog-tag-list .blog-tag-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--bs-light);
    padding: 6px 16px;
    background-color: var(--bs-gray-900);
    border-radius: 18px;
    transition: .5s;
}
.blog-box .blog-details {
    padding-top: 20px;
}
.blog-box .blog-info {
    display: flex;
    gap: 30px;
    margin-bottom: 10px;
}
.blog-box .blog-info .blog-date, .blog-box .blog-info .blog-author {
    position: relative;
    font-size: 14px;
    color: var(--bs-text);
}
.blog-box .blog-info .blog-author:before {
    content: "";
    position: absolute;
    top: 8px;
    left: -18px;
    width: 6px;
    height: 6px;
    border-radius: 20px;
    background-color: var(--bs-text);
}
.blog-box .blog-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.4;
}
.blog-box .blog-title > a {
    color: var(--bs-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-box .blog-title > a:hover {
    color: var(--bs-secondary);
}
.blog-action {
    margin-top: 10px;
}
.blog-action .btn-link {
    color: var(--bs-primary);
}
.blog-action .btn-link:hover {
    color: var(--bs-secondary);
}
.blog-action .btn-link:before,
.blog-action .btn-link:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--bs-primary);
    transition: all 0.3s linear;
    left: 0;
    right: auto;
    bottom: 0;
}
.blog-action .btn-link:after {
    width: 0;
    right: 0;
    left: auto;
    background: var(--bs-secondary);
    transition: all 0.3s linear 0.1s;
}
.blog-action .btn-link:hover:before {
    width: 0;
    right: 0;
    left: auto;
}
.blog-action .btn-link:hover:after {
    width: 100%;
    right: auto;
    left: 0;
}
.inner-banner-content .blog-info {
    display: flex;
    gap: 30px;
    justify-content: center;
}
.inner-banner-content .blog-info .blog-author {
    position: relative;
}
.inner-banner-content .blog-info .blog-author::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--bs-text);
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 11px;
    left: -15px;
}
.blog-single .blog-content {
    padding-top: 35px;
}
.blog-single .blog-content .blockquote {
    background: #f8f9fc;
    border-radius: 4px;
    padding: 35px 25px 35px 85px;
    position: relative;
    z-index: 1;
}
.blog-single .blog-content .blockquote::before {
    content: "";
    width: 47px;
    height: 37px;
    position: absolute;
    background-image: url('../images/blog/quote.svg');
    background-repeat: no-repeat;
    top: 45px;
    left: 20px;
    z-index: -1;
}
.blog-single .blog-content .blockquote h6 {
    font-size: 20px;
    line-height: 32px;
    font-style: italic;
    font-weight: 600;
}
.blog-single .blog-content h4 {
    font-weight: 500;
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 40px;
}
.blog-single .blog-content p + p {
    margin-bottom: 30px;
}
.tags-lists {
    display: flex;
    flex-flow: wrap;
    gap: 5px;
}
.tags-lists span {
    font-size: 16px;
    line-height: 28px;
    display: inline-block;
    color: var(--bs-primary);
    background: var(--bs-primary-100);
    border-radius: 4px;
    padding: 8px 14px;
    transition: all 0.3s;
}
/*--- Blog :: End ---*/
/*--- Contact :: Start ---*/
.contactform-box {
    padding: 40px;
    background-color: var(--bs-primary-100);
}
.contactform-box input {
    border-color: transparent;
}
.g-recaptcha > div {
    margin: 0px auto;
}
.form-action {
    text-align: center;
}
.form-action .btn {
    padding-left: 80px;
    padding-right: 80px;
}
.contact-info-item {
    display: flex;
    max-width: 400px;
    margin-top: 20px;
}
.contact-info-item .contact-info-icon {
    font-size: 20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    color: var(--bs-light);
    background-color: var(--bs-primary);
}
.contact-info-item .contact-info-text {
    flex: 1;
    text-align: start;
}
.contact-info-item .contact-info-text p {
    display: flex;
    flex-flow: column;
}
.contact-info-item .contact-info-text a {
    color: var(--bs-text);
}
.contact-info-item .contact-info-text a:hover {
    color: var(--bs-secondary);
}
.contact-acton-group {
    display: flex;
    flex-flow: column;
    gap: 20px;
    margin-top: 30px;
}
.contact-acton-group .btn {
    max-width: 380px;
}
.google-map > iframe {
    width: 100%;
    height: 550px;
}
/*--- Contact :: End ---*/
/*--- Faqs :: Start ---*/
.faqs-inner-area {
    margin-bottom: 50px;
}
.row [class*=col-] .faqs-inner-area:last-child {
    margin-bottom: 0px;
}
.faqs-inner-area .faqs-inner-title {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 20px;
}
.custom-accordion.accordion .accordion-item {
    border: 0px;
    border-radius: 0px;
    border-bottom: 1px solid rgba(31, 3, 67, 0.09);
    margin-bottom: 10px;
    background: transparent;
}
.custom-accordion.accordion .accordion-item:last-child {
    margin-bottom: 0px;
}
.custom-accordion.accordion .accordion-item .accordion-header {
    margin-bottom: 0;
}
.custom-accordion.accordion .accordion-item .accordion-header .accordion-button {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 18px;
    border: 0px;
    color: var(--bs-primary);
    padding: 15px 0px 20px;
    background: transparent;
    box-shadow: none;
}
.custom-accordion.accordion .accordion-item .accordion-header .accordion-button::after {
    content: "\f107";
    font-weight: 300;
    font-family: "Font Awesome 6 Pro";
    background-image: none !important;
}
.custom-accordion.accordion .accordion-item .accordion-body {
    padding-top: 0;
    padding-left: 0px;
    padding-bottom: 25px;
}
/*--- Faqs :: End ---*/
/*--- Promo :: Start ---*/
.promo-section .section-title-box {
    margin-bottom: 50px;
}
.promo-content-box {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.promo-content-box .btn {
    width: 400px;
    height: 70px;
}
.promo-content-box .btn.btn-secondary:hover {
    color: var(--bs-dark) !important;
    background-color: var(--bs-light) !important;
}
.promo-content-box .btn.btn-white:hover {
    color: var(--bs-dark) !important;
    background-color: #d9d3e3 !important;
}
/*--- Promo :: End ---*/
/*--- Footer :: Start ---*/
footer .footer-inner {
    padding-top: 100px;
    padding-bottom: 100px;
}
footer .footer-outer {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: var(--bs-primary-100);
}
footer .footer-about {
    margin-right: 50px;
}
footer .footer-about .foot-logo {
    display: inline-block;
    margin-bottom: 20px;
}
footer .footer-about .foot-logo img {
    width: 160px;
}
footer .foot-text .foot-text-link {
    text-decoration: underline;
}
footer .foot-social-list {
    list-style: none;
    padding: 0px !important;
    margin: 0px !important;
    display: flex;
    gap: 10px;
}
footer .foot-social-list .foot-social-link  {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: var(--bs-primary);
    background-color: var(--bs-primary-100);
    border-radius: 50%;
}
footer .foot-social-list .foot-social-link:hover {
    color: var(--bs-light);
    background-color: var(--bs-primary);
}
footer .foot-widget-box .foot-widget-title {
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--bs-primary);
    margin-bottom: 20px;
}
footer .foot-widget-list li {
    margin-bottom: 10px;
}
footer .foot-widget-list .foot-widget-link {
    color: var(--bs-text);
}
footer .foot-widget-list .foot-widget-link:hover {
    color: var(--bs-primary);
}
footer .foot-widget-list li:last-child {
    margin-bottom: 0px;
}
footer .foot-widget-contact .foot-widget-contact-box {
    display: flex;
    gap: 15px;
}
footer .foot-widget-contact .foot-widget-contact-box >  i {
    color: var(--bs-text);
    position: relative;
    top: 4px;
}
footer .foot-widget-contact .foot-widget-contact-link {
    color: var(--bs-text);
    line-height: 1.5;
}
footer .foot-widget-contact a.foot-widget-contact-link:hover {
    color: var(--bs-primary);
}
footer .foot-widget-contact li {
    margin-bottom: 20px;
}
footer .foot-widget-contact li:last-child {
    margin-bottom: 0px;
}
footer .copyright-text {
    text-align: center;
    color: var(--bs-text);
}
/*--- Footer :: End ---*/
/*----------- Scroll To Top :: Start -----------*/
.progress-wrap {
    position: fixed;
    bottom: 70px;
    right: 30px;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    box-shadow: inset 0 0 0 3px rgb(var(--bs-primary-rgb)/var(--bs-opacity-1));
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    font-family: 'Font Awesome 5 Pro';
    content: '\f077';
    text-align: center;
    line-height: 44px;
    font-size: 13px;
    font-weight: 900;
    color: var(--bs-primary);
    left: 0;
    top: 0;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap svg path {
    fill: none;
}
.progress-wrap svg.progress-circle path {
    stroke: var(--bs-primary);
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
/*---- Scroll To Top :: End ---*/

/*--- Inner Page Header :: Start ---*/
.inner-banner-area {
    position: relative;
    z-index: 1;
    padding: 250px 0px 120px;
    overflow: hidden;
}
.cover-background {
    position: relative !important;
    background-size: cover !important;
    overflow: hidden !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
}
.inner-banner-content {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.inner-banner-content.lg-content {
    max-width: 100%;
}
.inner-banner-area .inner-banner-title {
    font-weight: 500;
    font-size: 58px;
    color: var(--bs-primary);
    margin-bottom: 15px;
}
.inner-banner-area .inner-banner-text {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--bs-text);
}
.inner-banner-area .inner-banner-nav.breadcrumb {
    margin-bottom: 0px;
}
.inner-banner-area .inner-banner-nav.breadcrumb li {
    position: relative;
    color: var(--bs-text);
    margin-right: 25px;
}
.inner-banner-area .inner-banner-nav.breadcrumb li + li:before {
    content: "/";
    position: absolute;
    left: -15px;
    color: var(--bs-text);
}
.inner-banner-area .inner-banner-nav.breadcrumb li > a {
    color: var(--bs-text);
}
.inner-banner-area .inner-banner-nav.breadcrumb li > a:hover {
    color: var(--bs-secondary);
}
/*--- Inner Page Header :: End ---*/
/*--- Fun Fact :: Start ---*/
.fun-fact-item {
    position: relative;
    text-align: center;
}
.fun-fact-item:before {
    content: "";
    width: 2px;
    height: 100%;
    background: var(--bs-light);
    position: absolute;
    right: -20px;
}
.fun-fact-section [class*=col-]:last-child .fun-fact-item::before {
    display: none;
}
.fun-fact-item .fun-fact-count {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 42px;
    color: var(--bs-light);
    margin-bottom: 20px;
}
.fun-fact-item .fun-fact-title {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 20px;
    color: var(--bs-light);
    margin-bottom: 0;
}
/*--- Fun Fact :: End ---*/

.lg-backdrop {
    background-color: rgb(0 0 0 / 90%);
}
.gallery-container > a {
    cursor: pointer;
}

/*# sourceMappingURL=style.css.map */
