@import url("linear.css");
@import url("fontawesome.css");
@import url("flaticon.css");

/*-----------------------------------------------
    1. General Style Start
-------------------------------------------------*/

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

body,
html {
    height: 100%;
    margin: 0;
}

body {
    background: var(--bg-primary) none repeat scroll;
    background-position: center;
    background-size: cover;
    font-size: 17px;
    font-weight: 500;
    font-weight: normal;
    font-family: var(--body-font-family);
    color: var(--body-font-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    color: var(--heading-color);
}

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

/* Theme All Transitions
------------------------------- */
a, #mainNav, .navbar .dropdown .dropdown-toggle::after, .theme-btn, button, .owl-carousel button.owl-dot, button {
    transition: all .5s ease-in-out;
}

.fast-transition {
    transition: all .3s ease-in-out;
}

.slow-transition {
    transition: all .7s ease-in-out;
}

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

ul {
    margin: 0;
    padding: 0;
}

a,
a > * {
    outline: none;
    cursor: pointer;
    text-decoration: none;
}

a {
    color: var(--body-font-color);
}

a:hover {
    color: var(--primary-hover-color) !important;
    text-decoration: none;
}

img::selection {
    background: transparent;
}

.page-link:focus {
    box-shadow: none;
}

/*----Form Control Reset CSS----*/
.form-control, .form-select {
    background-color: var(--white-color);
    height: 50px;
    color: var(--body-font-color);
    border: 1px solid var(--border-color-2);
    border-radius: 4px;
    padding: 13px 20px;
    font-size: 14px;
}

.form-control:focus {
    background-color: var(--white-color);
    box-shadow: none;
    border-color: #86b7fe;
}

.form-select:focus {
    border-color: #86b7fe;
    box-shadow: none;
}

.form-control::placeholder {
    color: #9CA3AE;
}

.input-group-text {
    height: 50px;
    line-height: 50px;
    font-size: 14px;
}

textarea {
    min-height: 120px !important;
    height: auto !important;
    border-radius: 13px !important;
}

label {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-close:focus, .form-check-input:focus {
    box-shadow: none;
}

.form-select {
    padding: 7px 32px 7px 20px;
}

/* Custom checkbox Start */
.custom-checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.custom-checkbox label {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
}

.custom-checkbox label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid var(--border-color-2);
    box-shadow: none;
    padding: 7px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 7px;
    border-radius: 2px;
}

.custom-checkbox input:checked + label:before {
    border: 1px solid var(--primary-color);
}

.custom-checkbox input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 6px;
    width: 5px;
    height: 9px;
    border: solid var(--primary-color);
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}

/* Custom checkbox End */

/* Custom Radio Button Start */
.custom-radiobox [type="radio"]:checked,
.custom-radiobox [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.custom-radiobox [type="radio"]:checked + label,
.custom-radiobox [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: var(--body-font-color);
    margin-bottom: 0;
}

.custom-radiobox [type="radio"]:checked + label:before,
.custom-radiobox [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-color-2);
    border-radius: 100%;
    background: var(--white-color);
}

.custom-radiobox [type="radio"]:checked + label:after,
.custom-radiobox [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.custom-radiobox [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.custom-radiobox [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* Custom Radio Button End */

/*------------------------------------------
  2. Typography
-------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin: 0;
    color: var(--heading-color);
    font-style: normal;
}

h1 {
    font-weight: 600;
    font-size: 70px;
    line-height: 90px;
}

h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 58px;
}

h3 {
    font-weight: 500;
    font-size: 36px;
    line-height: 42px;
}

h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
}

h5 {
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
}

h6 {
    font-weight: 500;
    font-size: 15px;
    line-height: 27px;
}

.big-para {
    font-size: 18px;
    line-height: 25px;
}

p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    color: var(--body-font-color);
}

figure {
    margin: 0 0 0;
}

/*--------------------------------
  2.1 Theme Color
-----------------------------------*/
:root {
    --navbar-bg: #fff;
    --navbar-bg-dark: #fff;

    --footer-bg: #333;
    --footer-bg-dark: #fff;
    --footer-text-color: #ffffffcc;

    --white-color: #fff;
    --black-color: #000;

    --bg-primary: #fff;
    --bg-primary-dark: #1F2246;
    --bg-secondary: #FAFAFA;
    --bg-secondary-dark: #fff;

    --status-btn-bg: #F5F5F5;
    --status-btn-bg-dark: #24282C;

    --text-gradient-color: linear-gradient(90deg, #2E42F7 11.99%, #FF9243 90.21%);

    --heading-color: #1F2246;
    --heading-color-dark: #fff;
    --body-font-color: #4C4E6B;
    --body-font-color-dark: #fff;

    --border-color: #0000001a;
    --border-color-dark: rgba(255, 255, 255, 0.1);
    --border-color-2: #EDEDED;

    /* --primary-color: #3686FC; */
    /* --primary-hover-color: #0066D9; */

    --theme-btn-outline-font-color: #1F2246;

    /* --blue-color: #3686FC; */
    --blue-color-transparent: #E9F2FF;

    /* --secondary-color: #4831DB; */
    --secondary-hover-color: #4831DB;

    --red-color: #FF3D3D;
    --danger-color: #FF3D3D;
    --red-color-hover: #dc3545;

    --yellow-color: #FBBF37;
    --orange-color: #FF794D;
    --orange-color-transparent: rgba(255, 121, 77, 0.08);

    --green-color: #4FBF67;
    --green-color-hover: #0d943a;
    --green-color-transparent: rgba(30, 189, 83, 0.08);

    --body-font-family: 'Inter', sans-serif;

}

.color-heading {
    color: var(--heading-color);
}

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

.primary-color {
    color: var(--primary-color) !important;
}

.primary-color:hover {
    color: var(--primary-hover-color) !important;
}

.secondary-color {
    color: var(--secondary-color);
}

.theme-text-color {
    color: var(--body-font-color);
}

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

.bg-secondary {
    background-color: var(--bg-secondary) !important;
}

.bg-gradient {
    background-image: var(--bg-gradient) !important;
}

.theme-border {
    border: 1px solid var(--border-color);
}

.border-bottom {
    border-bottom: 1px solid var(--border-color) !important;
}

.border-top {
    border-top: 1px solid var(--border-color) !important;
}

.orange-color {
    color: var(--orange-color);
}

.green-color {
    color: var(--green-color);
}

.red-color, .theme-link-red {
    color: var(--red-color);
}

.red-color:hover, .theme-link-red:hover {
    color: var(--red-color-hover) !important;
}

button.red-color:hover, a.red-color:hover, .theme-link-red:hover {
    color: var(--red-color-hover);
}

.bg-orange {
    background-color: var(--orange-color);
}

.bg-green {
    background-color: var(--green-color);
}

.bg-red {
    background-color: var(--red-color);
}

.bg-red-transparent {
    background-color: rgba(255, 67, 67, 0.1);
}

.bg-green-transparent {
    background-color: var(--green-color-transparent);
}

.bg-blue-transparent {
    background-color: var(--primary-color-transparent);
}

.bg-purple-transparent {
    background-color: #F0EBFF;
}

.bg-orange-transparent {
    background-color: var(--orange-color);
}

.theme-link {
    color: var(--primary-color);
}

.theme-link:hover {
    color: var(--primary-hover-color) !important;
}

.theme-secondary-link {
    color: var(--secondary-color);
}

.theme-secondary-link:hover {
    color: var(--secondary-hover-color) !important;
}

/*--------------------------------
  2.3 Theme padding, margin
-----------------------------------*/
.section-t-space {
    padding-top: 90px;
}

.section-b-space {
    padding-bottom: 120px;
}

.section-t-small-space {
    padding-top: 75px;
}

.section-b-small-space {
    padding-bottom: 75px;
}

.section-t-80-space {
    padding-top: 80px;
}

.section-b-80-space {
    padding-bottom: 80px;
}

.section-t-60-space {
    padding-top: 60px;
}

.section-b-60-space {
    padding-bottom: 60px;
}

.p-30 {
    padding: 30px;
}

.pl-30 {
    padding-left: 30px;
}

.pr-30 {
    padding-right: 30px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-15 {
    padding-bottom: 15px;
}

.p-20 {
    padding: 20px;
}

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

.p-25 {
    padding: 25px;
}

.pb-25 {
    padding-bottom: 25px;
}

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

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mt-25 {
    margin-top: 25px;
}

.mb-25 {
    margin-bottom: 25px;
}

.me-25 {
    margin-right: 25px;
}

.ms-25 {
    margin-left: 25px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mr-30 {
    margin-right: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mr-15 {
    margin-right: 15px;
}

.radius-95 {
    border-radius: 95px;
}

.radius-3 {
    border-radius: 3px;
}

.radius-4 {
    border-radius: 4px;
}

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

.radius-8 {
    border-radius: 8px;
}

.radius-10 {
    border-radius: 10px;
}

.radius-12 {
    border-radius: 12px;
}

.radius-15 {
    border-radius: 15px;
}

.radius-20 {
    border-radius: 20px;
}

.radius-50 {
    border-radius: 50%;
}

.radius-t-r-0 {
    border-top-right-radius: 0 !important;
}

.radius-t-l-0 {
    border-top-left-radius: 0 !important;
}

.radius-b-r-0 {
    border-bottom-right-radius: 0 !important;
}

.radius-b-l-0 {
    border-bottom-left-radius: 0 !important;
}

/*--------------------------------
  2.3 Theme Font Family, Font Size
-----------------------------------*/
.font-normal {
    font-weight: 400;
}

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

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

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

.font-24 {
    font-size: 24px;
    line-height: 31px;
}

.font-20 {
    font-size: 20px;
    line-height: 31px;
}

.font-22 {
    font-size: 22px;
    line-height: 30px;
}

.font-18 {
    font-size: 18px;
    line-height: 150%;
}

.font-17 {
    font-size: 17px;
}

.font-16 {
    font-size: 16px;
}

.font-15 {
    font-size: 15px;
    line-height: 23px;
}

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

.font-13 {
    font-size: 13px;
    line-height: 18px;
}

.font-12 {
    font-size: 12px;
    line-height: 160%;
}

.font-11 {
    font-size: 11px;
    line-height: 12px;
}

/*--------------------------------
 2.4 Template Default CSS
-----------------------------------*/
section {
    position: relative;
}

.section-title {
    width: 70%;
    margin: 0 auto 55px;
    text-align: center;
}

.section-sub-heading {
    font-size: 18px;
    line-height: 28px;
    margin-top: 19px;
}

.section-tag-heading {
    margin-bottom: 16px;
}

.cursor {
    cursor: pointer;
}

.fit-image {
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

/* Avatar CSS */
.avatar-md {
    height: 3.8rem;
    width: 3.8rem;
}

.avatar-xl {
    height: 5.5rem;
    width: 5.5rem;
}

/* Avatar CSS */

/*--------------------------------
 2.5 Template Common CSS
-----------------------------------*/

/*Pagination CSS*/
.pagination {
    margin-top: 25px;
}

.pagination li {
    margin-right: 14px;
    border-radius: 3px;
}

.page-item.active .page-link {
    color: #fff;
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.page-item .page-link .iconify {
    font-size: 19px;
    color: #52526C;
}

.pagination .page-link {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 16px;
    background-color: #fff;
    height: 45px;
    width: 45px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px !important;
    border-radius: 3px;
    border: 1px solid #F2F2F2;
    box-sizing: border-box;
    box-shadow: 0 6px 21px rgba(21, 3, 89, 0.08);
}

/*------------------------------------------
  2.Typography
-------------------------------------------*/

/*--------------------------------------------
  3. Button Style
---------------------------------------------*/
.section-btn {
    margin-top: 42px;
}

.btn {
    padding: 0;
}

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

button {
    background-color: transparent;
}

button:focus {
    outline: 0;
}

/*-----Theme Button Style-----*/
.theme-btn, .theme-btn-outline, .theme-btn-purple, .theme-btn-green, .theme-btn-red, .edit-btn, .theme-btn-back {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    outline: none;
    z-index: 99;
    /* padding: 22px 45px!important; */
    padding: 22px 43px !important;
    justify-content: center;
    color: var(--white-color);
    border: 1px solid transparent;
    font-weight: 500 !important;
    font-size: 20px;
    line-height: 100%;
    border-radius: 195px;
}

.theme-btn:hover, .theme-btn-outline, .theme-btn-purple:hover, .theme-btn-green:hover, .theme-btn-red:hover {
    color: var(--white-color) !important;
}

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

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

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

.theme-btn-outline:hover, .theme-btn-outline.active {
    background-color: var(--primary-color);
    color: var(--white-color) !important;
}

.theme-btn-purple {
    background-color: var(--secondary-color);
}

.theme-btn-purple:hover {
    background-color: var(--secondary-hover-color);
}

.theme-btn-green {
    background-color: var(--green-color);
}

.theme-btn-green:hover {
    background-color: var(--green-color-hover);
}

.theme-btn-red {
    background-color: var(--red-color);
}

.theme-btn-red:hover {
    background-color: var(--red-color-hover);
}

.edit-btn {
    border: 1px solid var(--primary-color);
    color: var(--primary-color) !important;
}

.edit-btn:hover {
    border: 1px solid var(--primary-hover-color) !important;
    color: var(--primary-hover-color) !important;
}

.theme-btn-back {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    color: var(--heading-color);
}

.theme-btn-back:hover {
    background-color: var(--off-white);
}

.status-btn {
    padding: 7px 15px !important;
    /* min-width: 100px; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    min-height: 34px;
    background-color: var(--status-btn-bg);
    color: var(--body-font-color);
}

.table .status-btn {
    min-width: 100px;
}

.status-btn-light {
    background-color: var(--bg-secondary) !important;
    color: var(--black-color) !important;
}

.status-btn-purple {
    background-color: rgba(72, 49, 218, 0.08) !important;
    color: var(--secondary-color) !important;
}

.status-btn-green {
    background-color: var(--green-color-transparent) !important;
    color: var(--green-color) !important;
}

.status-btn-red {
    background-color: rgba(255, 67, 67, 0.1) !important;
    color: var(--red-color) !important;
}

.status-btn-blue {
    background-color: var(--blue-color-transparent) !important;
    color: var(--blue-color);
}

.status-btn-orange {
    background-color: var(--orange-color-transparent) !important;
    color: var(--orange-color) !important;
}

/*--------------------------------------------
  3. Button Style
---------------------------------------------*/

/*-------------------------------------------
  4. Preloader Area Start
-------------------------------------------*/
#preloader {
    background-color: #fff;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999999999999999;
}

#preloaderInner {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/*-------------------------------------------
  4. Preloader Area End
-------------------------------------------*/

/*-------------------------------------------
  5. Common Custom Scrollbar CSS Start
-------------------------------------------*/

/* Custom Scrollbar start */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #D1D6DB #fff;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background-color: #fff;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #D1D6DB;
}

.custom-scrollbar::-webkit-scrollbar-track, .custom-scrollbar::-webkit-scrollbar-thumb {
    border-radius: 7px;
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-track {
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    background-color: #D1D6DB;
}

::-webkit-scrollbar-track, ::-webkit-scrollbar-thumb {
    border-radius: 7px;
}

/* Custom Scrollbar end */

/*-------------------------------------------
  5. Common Custom Scrollbar CSS End
-------------------------------------------*/

/*-------------------------------------------
  6. Navbar Area CSS
-------------------------------------------*/
.container {
    padding: 0;
}

.menu-section-area {
    position: absolute;
    width: 100%;
    padding: 0;
    z-index: 999;
    overflow-x: visible;
}
.menu-section-area:after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both;
}

@media only screen and (min-width: 992px) {
    #mainNav {
        display: block;
    }

    .navbar-expand-lg .navbar-nav {
        align-items: center;
        justify-content: flex-end;
    }
}

@media only screen and (max-width: 991.98px) {
    .navbar-nav {
        width: 100%;
        margin-bottom: 0 !important;
    }
}

/* Main Menu Start */
.navbar-nav-middle {
    justify-content: center;
    /* padding-left: 70px; */
}

.navbar-nav-right {
    justify-content: flex-end;
}

.navbar {
    padding: 0;
}

#mainNav {
    position: absolute;
    display: flex !important;
    transition: all ease .6s;
    background: var(--navbar-bg);
    padding: 0 0;
    align-items: center;
    width: 100%;
    height: 114px;
    top: 0;
}

#mainNav.sticky {
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 90px;
    top: 0;
    background-color: var(--navbar-bg);
    padding: 0 0px;
    box-shadow: 0 10px 15px rgb(25 25 25 / 10%);
    animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
}

#mainNav.sticky .navbar-nav .nav-item .nav-link {
    padding: 10px 0 10px 0;
    margin-right: 36px;
}

#mainNav .navbar-brand {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 0;
    height: 100%;
}

#mainNav .navbar-nav .nav-item .nav-link {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    padding: 10px 0 10px 0;
    margin-right: 33px;
    position: relative;
    color: var(--navbar-font-color);
    display: flex;
    transition: ease all .5s;
    position: relative;
}

#mainNav .navbar-nav .nav-item .nav-link span {
    display: inline-block;
}

#mainNav .navbar-nav .nav-item .nav-link span:after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: opacity 0.3s ease, width 0.3s ease;
    -ms-transition: opacity 0.3s ease, width 0.3s ease;
    position: relative;
    top: 0px;
}

#mainNav .navbar-nav .nav-item .nav-link:hover span:after,
#mainNav .navbar-nav .nav-item .nav-link.active span:after {
    width: 100%;
}

#mainNav .navbar-nav .nav-item .nav-link:hover, #mainNav .navbar-nav .nav-item .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav-right .theme-btn-outline {
    /* padding: 15px 40px!important;
    border-radius: 174px; */
}

/* Language Btn */
.language-dropdown, .mode-change, .login-menu-item .nav-link, .user-dropdown {
    margin-right: 25px !important;
}

.language-dropdown .header-item .iconify, .user-dropdown .header-item .iconify {
    font-size: 21px;
    position: relative;
    top: -1px;
    right: -5px;
    color: var(--secondary-color);
    margin-left: -7px;
}

/* Language Btn */

.navbar-nav-right .login-menu-item .nav-link {
    font-size: 20px !important;
    font-weight: 500 !important;
    line-height: 24px !important;
}

/*---- Dropdown Menu CSS ----*/
.dropdown-item.active, .dropdown-item:active {
    color: var(--heading-color);
    /* background-color: #F0FCEC; */
}

.navbar .dropdown .dropdown-toggle:after {
    display: none;
}

.navbar .dropdown-menu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 1.7rem;
    color: var(--para-color);
}

.dropdown-toggle {
    display: flex;
    align-items: center;
}

#mainNav .navbar-nav .nav-item .nav-link svg {
    height: 25px;
    width: 27px;
    padding-top: 2px;
}

#mainNav .navbar-nav .dropdown-menu a, .dropdown-item {
    color: var(--navbar-font-color);
    padding: 8px 20px 8px 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    display: flex;
    align-items: center;
}

.dropdown button {
    color: var(--navbar-font-color);
    font-weight: 500;
}

.navbar .dropdown-menu .dropdown-toggle::after {
    color: var(--para-color);
}

#mainNav .navbar-nav .dropdown-menu a, #mainNav .navbar-nav .dropdown-menu a h6, .navbar .dropdown-menu .dropdown-toggle::after {
    transition: ease all .5s;
}

#mainNav .navbar-nav .dropdown-menu a:hover, #mainNav .navbar-nav .dropdown-menu a:hover h6, .navbar .dropdown-menu .dropdown-toggle:hover::after {
    color: var(--primary-color);
    background-color: transparent;
}

/* Mode Change Dark or Light Start*/
body.light .dark-logo {
    display: none;
}

body.dark .light-logo {
    display: none;
}

.mode-change .header-item .iconify {
    width: 34px;
    height: 34px;
}

/* Mode Change Dark or Light End */

/*Multilevel Dropdown Menu CSS Start*/
/* ============ desktop view ============ */
@media all and (min-width: 992px) {

    /* New */
    .navbar-expand-lg .offcanvas .offcanvas-body {
        align-items: center;
    }

    .navbar-brand.desktop-navbar-brand {
        display: inline-block !important;
    }

    .navbar-brand.mobile-navbar-brand {
        display: none !important;
    }

    .navbar-right-mobile .language-dropdown, .navbar-right-mobile .mode-change, .navbar-right-mobile .user-dropdown {
        display: none !important;
    }

    /* New */
    .navbar-nav .dropdown-menu {
        position: absolute !important;
        border-radius: 0;
        border: 1px solid var(--border-color);
    }

    .dropdown-menu li {
        position: relative;
    }

    .dropdown-menu .submenu {
        display: block;
        visibility: hidden;
        opacity: 0;
        position: absolute;
        left: 100%;
        top: 10px;
    }

    .dropdown-menu .submenu-left {
        right: 100%;
        left: auto;
    }

    .dropdown-menu > li:hover {
        background-color: transparent;
    }

    .dropdown-menu > li:hover > .submenu {
        visibility: visible;
        opacity: 1;
        top: -7px;
    }

    /* Show Dropdown Menu on Hover instead Click Start */
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(20px);
        transition: .2s ease-in;
    }

    .navbar .nav-item:hover > .dropdown-menu {
        display: block;
        transform: scaleY(1);
        opacity: 1;
        visibility: visible;
        transition: .3s ease-out;
        border-radius: 8px;
    }

    .top-menu-item .nav-item .dropdown-menu {
        transform: translateY(20px);
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: .2s ease-in;
    }

    .top-menu-item .nav-item:hover > .dropdown-menu {
        transform: scaleY(1);
        display: block;
        opacity: 1;
        visibility: visible;
        transition: .3s ease-out;
        z-index: 9999;
    }

    .navbar .nav-item .dropdown-menu, .top-menu-item .nav-item .dropdown-menu {
        margin-top: 0;
        box-shadow: 0px 10px 29px rgba(202, 202, 202, 0.25);
        border: 0;
        border-radius: 0;
        padding: 18px 0;
    }

    /* Show Dropdown Menu on Hover instead Click End */
}

/*Menu Mobile Responsive CSS Start*/
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Mobile Menu CSS Start */
@media only screen and (max-width: 1199px) {

    .navbar-nav-middle {
        /* padding-left: 20px; */
    }

    .navbar-nav-right .theme-btn-outline {
        /* height: 50px;
        padding: 10px 27px!important;
        font-size: 16px; */
    }
}

/* Mobile Menu CSS End */

/*Menu Mobile Responsive CSS End*/

/* ============ desktop view .end// ============ */

/* ============ small devices ============ */

@media only screen and (max-width: 1675px) {
    #mainNav .navbar-nav .nav-item .nav-link, #mainNav.sticky .navbar-nav .nav-item .nav-link {
        margin-right: 25px;
    }

    .language-dropdown, .mode-change {
        /* margin-right: 25px; */
    }

    .navbar-nav-right .theme-btn-outline {
        /* height: 48px;
        padding: 15px 25px!important; */
    }

    #mainNav .navbar-nav .nav-item .nav-link, .navbar-nav-right .login-menu-item .nav-link {
        font-size: 16px !important;
    }

    .theme-btn, .theme-btn-outline, .theme-btn-purple, .theme-btn-green, .theme-btn-red, .edit-btn, .theme-btn-back {
        font-size: 16px;
        padding: 22px 30px !important;
    }
}

@media only screen and (max-width: 1399px) {
    #mainNav .navbar-brand img, .offcanvas-header img {
        height: 50px;
    }

    .language-dropdown, .mode-change, .login-menu-item .nav-link, .user-dropdown {
        margin-right: 12px !important;
    }

    .language-dropdown .avatar-md, .user-dropdown .avatar-md, .dropdown-item .avatar-xs {
        height: 1.2rem;
        width: 1.2rem;
    }

    .mode-change .header-item .iconify {
        width: 26px;
        height: 26px;
    }

    #mainNav .navbar-nav .nav-item .nav-link, #mainNav.sticky .navbar-nav .nav-item .nav-link {
        margin-right: 22px;
    }

    .navbar-nav-right .theme-btn-outline {
        /* height: 50px;
        padding: 17px 28px!important;
        font-size: 15px; */
    }
}

@media only screen and (max-width: 1360px) {
    .navbar-nav-right .theme-btn-outline {
        /* height: 48px;
        padding: 14px 23px!important;
        font-size: 14px; */
    }
}

@media only screen and (max-width: 1199px) {
    #mainNav .navbar-brand img, .footer-about img {
        /* height: 28px; */
    }
}

@media (max-width: 991px) {
    .offcanvas, .offcanvas-lg, .offcanvas-md, .offcanvas-sm, .offcanvas-xl, .offcanvas-xxl {
        --bs-offcanvas-zindex: 1045;
        --bs-offcanvas-width: 300px;
        --bs-offcanvas-height: 30vh;
        --bs-offcanvas-padding-x: 1rem;
        --bs-offcanvas-padding-y: 1rem;
        --bs-offcanvas-color: ;
        --bs-offcanvas-bg: #fff;
        --bs-offcanvas-border-width: 1px;
        --bs-offcanvas-border-color: var(--bs-border-color-translucent);
        --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    }

    #mainNav, #mainNav.sticky {
        height: 60px;
    }

    .offcanvas-header .btn-close {
        box-shadow: none;
    }

    .navbar-brand.desktop-navbar-brand {
        display: none !important;
    }

    .navbar-brand.mobile-navbar-brand {
        display: flex !important;
    }

    #mainNav .navbar-nav .nav-item .nav-link {
        padding: 8px 0 8px 0;
        line-height: 23px;
        color: var(--black-color);
    }

    .dropdown-menu .dropdown-menu {
        margin-left: 0.7rem;
        margin-right: 0.7rem;
        margin-bottom: .5rem;
    }

    #mainNav .navbar-nav .nav-item .nav-link:hover, #mainNav .navbar-nav .nav-item .nav-link.active {
        color: var(--primary-color) !important;
    }

    .navbar-nav-right .theme-btn-outline {
        border: 1px solid var(--primary-color);
        color: var(--theme-btn-outline-font-color) !important;
        /* margin-top: 10px; */
    }

    .navbar-nav-right .theme-btn-outline:hover {
        /* border: 1px solid var(--secondary-color); */
        background-color: var(--primary-color);
        color: var(--white-color) !important;
        /* margin-top: 20px; */
    }

    #mainNav .navbar-toggler {
        padding: .25rem 0;
        border: none;
        color: var(--body-font-color);
        margin-top: -10px;
    }

    .language-dropdown, .mode-change, .login-menu-item .nav-link, .user-dropdown {
        margin-right: 10px !important;
    }

    .offcanvas .navbar-nav-right .language-dropdown, .offcanvas .navbar-nav-right .mode-change,
    .offcanvas .navbar-nav-right .user-dropdown {
        display: none !important;
    }

}

@media only screen and (max-width: 575px) {
    .language-dropdown .avatar-md, .user-dropdown .avatar-md {
        margin-right: 0 !important;
    }
}

/* ============ small devices .end// ============ */
/*Multilevel Dropdown Menu CSS End*/

/*-------------------------------------------
  6. Navbar Area CSS End
-------------------------------------------*/

/*-------------------------------------------
  7. Scroll To Top Area
-------------------------------------------*/
#scroll {
    position: fixed;
    right: 10px;
    bottom: 40px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: none;
    z-index: 10;
    font-size: 20px;
    text-align: center;
    color: #fff;
    line-height: 48px;
}

/*-------------------------------------------
  7. Scroll To Top Area End
-------------------------------------------*/

/*-------------------------------------------
  8. Header Area
-------------------------------------------*/
.hero-area-top-part {
    background-image: url('../img/hero-dots-bg.svg');
    background-repeat: no-repeat;
    background-position: center;
    /* background-size: contain; */
}

.hero-area-top-part {
    background-color: var(--bg-primary);
    min-height: 1067px;
    padding-top: 110px;
    padding-bottom: 0;
}
.hero-carousel .item {
    position: relative;
    max-height: 90vh;
}
.hero-carousel .item .hero-content {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
}
.hero-carousel .item .hero-main-big-img-wrap:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #333;
    opacity: 0.3;
}

.hero-bg-dots-img {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.hero-main-title {
    font-size: 50px !important;
    color: var(--white-color);
    text-shadow: 1px 1px 1px var(--black-color);
}

.hero-area-bottom-part {
    margin-top: -480px;
}

.hero-sub-title {
    margin: 15px auto 29px;
    width: 75%;
    color: var(--white-color);
    text-shadow: 1px 1px 1px var(--black-color);
}

.hero-content .theme-button {
    margin: 0 12px;
}

/* Hero Area Bottom Floating image css start */
.hero-backdrop-strock-wrap {
    /* position: relative; */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hero-backdrop-strock-wrap::after {
    content: "";
    position: absolute;
    width: 722.4px;
    /* height: 658.09px; */
    height: 630px;

    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    /*background: var(--primary-color);*/
    filter: blur(190.692px);
}

.hero-strock-img {
    /* position: absolute; */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-top: -20px;
}

.hero-bottom-img-left {
    filter: drop-shadow(0px 29.1333px 111.154px rgba(54, 134, 252, 0.17));
    left: 0;
    bottom: 162px;
}

.hero-bottom-img-right {
    filter: drop-shadow(0px 22.4282px 110.372px rgba(54, 134, 252, 0.17));
    right: 0;
    top: 185px;
}

/* Hero Area Bottom Floating image css end */

/*-------------------------------------------
  8. Header Area End
-------------------------------------------*/

/*-------------------------------------------
  9. Features Area Start
-------------------------------------------*/
.generate-content-area {
    padding-bottom: 26px;
}

.generate-content-faq {
    padding-inline-end: 20px;
}

.generate-content-row-wrap {
    margin-top: 50px;
}

.generate-content-faq .accordion-item {
    /* border-radius: 16px!important; */
    background-color: var(--bg-primary);
    padding: 0;
    margin-bottom: 14px;
}

.generate-content-faq .accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.generate-content-faq .accordion-button.collapsed {
    /* font-size: 22px; */
    /* letter-spacing: -0.5px; */
    background-color: var(--bg-primary) !important;
}

.generate-content-faq .accordion-collapse.show .accordion-body {
    background-color: var(--bg-secondary) !important;
}

.generate-content-faq .accordion-button {
    /* font-size: 22px; */
    /* letter-spacing: -0.5px; */
    background-color: var(--bg-secondary) !important;
}

.generate-content-faq .accordion-item:first-of-type {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.generate-content-faq .accordion-item:last-of-type {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.generate-content-faq .accordion-button .iconify {
    margin-right: 12px;
    color: var(--secondary-color);
}

.generate-content-faq .accordion-body {
    /* font-size: 15px;
    line-height: 22px;
    letter-spacing: -0.5px;
    padding: 0 1.50rem 9px 3.8rem; */
    font-weight: 400;
    background-color: var(--bg-secondary) !important;
}

/* Features Right start */
.feature-content-right {
    /* background-image: url('../img/feature-img/feature-right-bg-img.png'); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.feature-main-top-img {
    right: -6%;
    top: -106px;
}

.feature-main-bottom-img {
    left: -6%;
    bottom: -156px;
}

/* Features Right end */

/*-------------------------------------------
  9. Features Area End
-------------------------------------------*/

/*-------------------------------------------
  10. How It Works Area Start
-------------------------------------------*/
/* How it works timeline */
.how-it-works-wrap::after {
    position: absolute;
    content: "";
    /* border: 1.6px dashed var(--border-color); */
    border: 1.6px dashed #e1e2e2;
    height: 75%;
    width: 0px;
    left: 50%;
    top: 62%;
    transform: translate(0%, -50%);
    z-index: -1;
}

.how-it-works-wrap::before {
    position: absolute;
    content: "";
    z-index: 9;
    border: 1.6px dashed var(--border-color);
    height: 25%;
    width: 0px;
    left: 50%;
    top: 13%;
    transform: translate(0%, -50%);
}

.timeline-number {
    width: 67px;
    height: 67px;
    background: #F1F1F1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 24px;
    z-index: 9;
}

/* How it works timeline */

.how-it-works-item-right {
    padding-inline-start: 100px;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

.how-it-works-item-left {
    margin-inline-end: 100px;
}

.how-it-works-wrap .how-it-works-item:nth-child(even) .row {
    flex-direction: row-reverse;
}

.how-it-works-wrap .how-it-works-item:nth-child(even) .row .how-it-works-item-right {
    padding-inline-start: 0;
    padding-inline-end: 100px;
}

.how-it-works-wrap .how-it-works-item:nth-child(even) .row .how-it-works-item-left {
    margin-inline-end: 0;
    margin-inline-start: 100px;
}

/* .how-it-works-wrap .how-it-works-item:last-child .row .how-it-works-item-bg {
  display: none;
} */
.how-it-works-wrap .how-it-works-item:last-child .row .how-it-works-item-right {
    padding-bottom: 0;
}

.how-it-works-wrap .how-it-works-item:nth-child(even) .row .how-it-works-item-left .how-it-works-strock-bg {
    transform: rotate(45deg);
}

.how-it-works-item-title {
    padding-right: 70px;
}

.how-it-works-features .price-check-icon {
    width: 26px;
    height: 26px;
    margin-top: 2px;
    margin-right: 15px !important;
}

.how-it-works-main-img {
    z-index: 9;
}

.how-it-works-strock-bg {
    width: 516.39px;
    height: 457.55px;
    z-index: 9;
    margin: -20px 0 0 25px;
}

.how-it-works-item-left::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 320px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /*background: var(--primary-color);*/
    filter: blur(112.57px);
}

.support-area {
    /*background-color: #160E4D;*/
}

.support-area::after {
    position: absolute;
    width: 307px;
    height: 280px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /*background: var(--primary-color);*/
    filter: blur(116.444px);
    content: "";
    z-index: -1;
}

/* Timeline Scrollbar Start */

/* Timeline Scrollbar End */

/*-------------------------------------------
  10. How It Works Area End
-------------------------------------------*/

/*-------------------------------------------
  11. About Area Start
-------------------------------------------*/
.about-us-area .section-title {
    margin-left: 0;
    text-align: left;
}

.about-us-bg-strock-img {
    left: -94px;
    top: 157px;
    max-width: 1172px;
}

.about-top-img {
    width: 805px;
    right: 30px;
    bottom: 30px;
}

.about-top-content {
    margin-bottom: 51px;
}

.counter-number {
    color: var(--primary-color);
}

.about-bottom-left {
    background-color: var(--footer-bg);
    background-image: url('../img/about-us/about-bottom-left-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.about-bottom-left h4 {
    padding-inline-end: 30px;
}

/*-------------------------------------------
  11. About Area End
-------------------------------------------*/

/*-------------------------------------------
  12. Core Pages Area Start
-------------------------------------------*/
.core-pages-nav-tabs {
    margin-bottom: 96px;
    width: 55%;
    border-bottom: 1.6px solid var(--border-color);
}

.nav-tabs.core-pages-nav-tabs .nav-link {
    font-size: 20px;
    font-weight: 500;
    color: var(--heading-color);
    padding: 0 22px 13px 22px;
    margin: 0 10px;
    background-color: transparent;
    border: none;
    border-bottom: 1.6px solid transparent;
}

.nav-tabs.core-pages-nav-tabs .nav-item.show .nav-link, .nav-tabs.core-pages-nav-tabs .nav-link.active {
    color: var(--primary-color) !important;
    background-color: transparent;
    border-color: var(--primary-color);
}

.core-pages-main-img {
    z-index: 9;
}

.core-pages-strock-bg-img {
    width: 622.16px;
    height: 551.28px;
    margin: -22px 34px;
    z-index: 9;
}

.core-pages-content-left::after {
    content: "";
    position: absolute;
    width: 464px;
    height: 409px;
    /* z-index: -1; */

    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    background: var(--primary-color);
    filter: blur(122.428px);
}

.core-pages-content-right {
    padding-inline-start: 25px;
}

/*-------------------------------------------
  12. Core Pages Area End
-------------------------------------------*/

/*-------------------------------------------
  13. Pricing Plan CSS Start
-------------------------------------------*/
.pricing-top-part-content-wrap {
    /*background-color: var(--footer-bg);*/
    /*background-image: url('../img/pricing-table-bg.png');*/
    /*background-repeat: no-repeat;*/
    /*background-position: center;*/
    /*background-size: cover;*/

    min-height: 491px;
    padding-top: 100px;
    background-color: var(--primary-color);
    background: linear-gradient(180deg, #208388, rgba(3, 33, 39, 0.91));
}

/* Pricing Area Bottom Part Start */
.pricing-area-bottom-part {
    margin-top: -230px;
}

.pricing-plan-area {
    padding: 0 70px;
}
.pricing-plan-area .singlePackage form {
    height: 100%;
}

/* Pricing Area Bottom Part End */

.choose-plan-area-title, .payment-method-area-title {
    margin-bottom: 50px;
}

.price-card-item {
    position: relative;
    border: 0.776515px solid var(--border-color);
    background-color: var(--bg-primary);
    box-shadow: 0px 5px 14px -9px #939393;
}

.price-title {
    display: flex;
    flex-direction: column;
}
.price-title span {
    color: var(--body-font-color);
    letter-spacing: -0.04em;
}

hr {
    border: 1.6px solid rgba(0, 0, 0, 0.1);
}

.pricing-features {
    margin: 18px 0 88px;
}
.pricing-features li {
    font-size: 16px;
}

.price-check-icon {
    width: 22px;
    height: 22px;
}

/* Active Pricing Table Start */
.price-card-item.active {
    background-color: var(--primary-color) !important;
    /*box-shadow: 0px 27px 77px rgba(54, 134, 252, 0.46);*/
}

.price-card-item.active .theme-btn-outline:hover, .price-card-item.active .theme-btn-outline.active {
    background-color: var(--bg-primary) !important;
    color: var(--primary-color) !important;
}

.price-card-item.active h4, .price-card-item.active p, .price-card-item.active h2, .price-card-item.active li,
.price-card-item.active .price-title span {
    color: var(--white-color);
}


.price-card-item .theme-btn-outline {
    position: absolute;
    bottom: 30px;
}

/* Active Pricing Table End */

/*-------------------------------------------
  13. Pricing Plan CSS End
-------------------------------------------*/

/*-------------------------------------------
  14. Integrations Plan CSS Start
-------------------------------------------*/
.integrations-area {
    background-image: url('../img/integrations-img/integrations-dots-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    /* background-size: cover; */
}

.logo-bg img {
    max-height: 60px;
}

.integrations-logo-wrap::before {
    content: "";
    position: absolute;
    width: 748px;
    height: 430px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    filter: blur(170.192px);
}

.integrations-strock-bg {
    /* top: -29px; */
    margin-top: -28px;
}

.integrations-logo-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 951px;
    margin: 0 auto;
    padding-bottom: 0px;
}

/* Integrations Logo Item */
.logo-item {
    /* width: 136px; */
    /* height: 136px; */
    /* background: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(3px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 12.5px; */
}

.logo-bg {
    width: 102.21px;
    height: 89.25px;
    /* background-color: var(--bg-primary); */
    background-image: url('../img/integrations-img/logo-shape-bg.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Integrations Logo Item */

/*-------------------------------------------
  14. Integrations Plan CSS End
-------------------------------------------*/

/*-------------------------------------------
  15. Customer Testimonial Area Start
-------------------------------------------*/
.customer-testimonial-item {
    margin-bottom: 30px;
}

.customer-testimonial-area .section-title {
    width: 46%;
}

.customer-testimonial-img {
    overflow: hidden;
}

.customer-testimonial-img img {
    height: 92px;
    width: 92px !important;
    margin-inline-end: 15px;
}

.testimonial-text-wrap {
    background-image: url('../img/customer-testimonial/testimonial-para-strock.svg');
    background-repeat: no-repeat;
    background-position: center;
    /* background-size: cover; */
    margin-top: -50px;
    margin-inline-start: 10px;
    /* margin-bottom: 18px; */
    padding: 20px;
    width: 100%;
}

.customer-testimonial-text {
    padding: 20px;
}

.customer-testimonial-rating {
    margin-inline-start: 30px;
}

.customer-testimonial-rating .iconify {
    color: #c3c2c2;
    font-size: 20px;
}

.customer-testimonial-rating .iconify.star-filled {
    color: #FFB526;
}

.customer-testimonial-bg-dots {
    top: 14%;
    left: 23%;
}

.testimonial-bottom-line {
    width: 74px;
    height: 0px;
    border: 1px solid var(--bg-secondary);
}

.testimonial-quote .iconify {
    color: var(--primary-color);
    font-size: 57px;
    position: absolute;
    right: -16px;
    top: -13px;
}

.testimonial-quote {
    background: var(--blue-color-transparent);
    height: 45px;
    width: 45px;
    border-radius: 50%;
    position: relative;
}

/* Controls nav */
.customer-testimonial-slider .owl-nav button {
    position: absolute;
    font-size: 32px !important;
    color: var(--white-color) !important;
}

.customer-testimonial-slider .owl-nav button:hover {
    background: transparent !important;
}

.customer-testimonial-slider .owl-nav {
    top: 37%;
}

.customer-testimonial-area .owl-nav .owl-prev {
    left: -30px;
}

.customer-testimonial-area .owl-nav .owl-next {
    right: -30px;
}

.owl-big.owl-theme {
    position: relative;
}

/* Testimonial Dots */
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    height: 24px;
    width: 24px;
    border: 2px solid transparent;
    border-radius: 50%;
    margin: 7px;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--heading-color);
    transition: ease all .5s;
}

.owl-theme .owl-dots .owl-dot.active {
    border: 2px solid var(--heading-color);
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #DCDCDC;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--heading-color);
    border: 2px solid var(--heading-color);
}

/* Testimonial Dots */

/* Customer Testimonial Right Part */

/* Owl Navigation */
.owl-small .owl-nav button {
    height: 50px;
    width: 50px;
    border: 1px solid var(--black-color) !important;
    border-radius: 50% !important;
    background-color: var(--white-color) !important;
}

.owl-small .owl-nav [class*=owl-]:hover {
    color: var(--text-green) !important;
}

.owl-small .owl-dots, .owl-small .owl-nav {
    text-align: left;
}

.owl-small .owl-nav {
    margin-top: 30px;
    margin-left: 43px;
}

/*-------------------------------------------
  15. Customer Testimonial Area End
-------------------------------------------*/

/*-------------------------------------------
  16. FAQS Area Start
-------------------------------------------*/
.faq-floating-bg-img {
    bottom: -227px;
    left: 0;
    width: 100%;
    max-height: 100%;
}

/* Accordion CSS Start */
.accordion-button {
    background-color: var(--bg-primary);
    padding: 24px 43px 24px 30px;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    /* letter-spacing: -0.04em; */
}

.accordion-button.collapsed {
    background: var(--bg-primary);
}

.accordion-button::after {
    position: absolute;
    /* right: 29px; */
    right: 19px;
}

.accordion-button:not(.collapsed) {
    color: var(--heading-color);
    background-color: var(--bg-primary);
}

.accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.accordion-body {
    padding: 0 30px 19px;
    margin: 0;
    color: var(--body-font-color);
    font-weight: 500;
    font-size: 17px;
    line-height: 28px;
}

.accordion-item:first-of-type {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.accordion-item:last-of-type {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
}

.accordion-item {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 5px 0;
    margin-bottom: 25px;
}

.accordion-item:not(:first-of-type) {
    border: 1px solid var(--border-color);
}

.accordion-button::after {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"%3E%3Cpath fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M12 20v-8m0 0V4m0 8h8m-8 0H4"%2F%3E%3C%2Fsvg%3E');
    background-size: 1.1rem;
}

.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"%3E%3Cpath fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M20 12H4"%2F%3E%3C%2Fsvg%3E');
}

/* Accordion CSS End */

/* FAQ Area Floating img Start */
.faq-floating-img {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    margin-top: -58px;
}

.faq-accordion-wrap::after {
    position: absolute;
    width: 307px;
    height: 280px;

    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    /*background: var(--primary-color);*/
    filter: blur(116.444px);
    content: "";
    z-index: -1;
}

/* FAQ Area Floating img End */

/*-------------------------------------------
  16. FAQS Area End
-------------------------------------------*/

/*-------------------------------------------
  17. Footer Area Start
-------------------------------------------*/
.footer-area {
    background-color: var(--footer-bg);
    /*padding: 140px 0 0;*/
}

.footer-top-part {
    padding-bottom: 140px;
}

.footer-bg-img {
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
}

/* Footer Widget */
.footer-widget {
    /*float: right;*/
}

.footer-subscribe-content form input {
    background-color: #343E53;
    border-color: transparent;
    color: var(--white-color);
    min-width: 255px;
}

.footer-subscribe-content form .form-control::placeholder {
    color: var(--white-color);
}

.footer-subscribe-content form .form-control:focus {
    background-color: #343E53;
    color: var(--white-color);
    border-color: transparent;
}

.footer-about img {
    margin-bottom: 17px;
}

.footer-widget > h4 {
    margin-bottom: 41px;
}

.footer-widget .footer-widget-title {
    color: var(--white-color);
}

.footer-widget.footer-about p {
    color: var(--footer-text-color);
}

/*Footer social */
.footer-social ul li a {
    width: 39px;
    height: 39px;
    border: 1px solid var(--white-color);
    display: flex;
    border-radius: 50%;
    font-size: 18px;
    justify-content: center;
    align-items: center;
    margin-inline-end: 15px;
}

.footer-social ul li a:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.footer-social ul li a .iconify {
    color: var(--white-color);
}

.footer-links li a, .footer-links ul li {
    color: var(--footer-text-color);
}

.footer-about address, .footer-subscribe-content p {
    color: var(--footer-text-color);
    margin-bottom: 0;
}

.footer-links li a:hover, .footer-bottom-nav ul li a:hover {
    color: var(--primary-color);
    text-decoration-line: underline;
}

.footer-links ul li {
    padding: 0 0 18px;
}

.footer-links ul li:last-child {
    padding-bottom: 0;
}

.footer-contact-info ul li img {
    margin-right: 22px;
}

.copyright-text {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright-text p, .copyright-text a {
    color: var(--footer-text-color);
    font-size: 15px;
    line-height: 27px;
}

.copyright-text p a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/*-------------------------------------------
  17. Footer Area End
-------------------------------------------*/


/*-------------------------------------------
Section Title Begin
-------------------------------------------*/

.sec-title {
    position: relative;
    margin-bottom: 50px;
    z-index: 2;
}
.sec-title .sub-title {
    position: relative;
    top: -8px;
    font-size: 18px;
    color: #6a6a6a;
    line-height: 1.2em;
    font-weight: 500;
    display: inline-block;
    padding-left: 20px;
}
.sec-title .sub-title:before {
    position: absolute;
    left: 0;
    top: 0;
    letter-spacing: 0.2em;
    content: "//";
    color: var(--primary-color);
}
.sec-title h1 {
    position: relative;
    font-size: 60px;
    line-height: 1em;
    color: #0f0f0f;
    font-weight: 700;
}
.sec-title h2 {
    position: relative;
    font-size: 46px;
    color: #0f0f0f;
    font-weight: 700;
    margin-top: -5px;
    margin-bottom: 0;
}
.sec-title .text {
    margin-top: 30px;
}

.sec-title .row .text {
    max-width: 450px;
    width: 100%;
}

.sec-title.light h3,
.sec-title.light h2,
.sec-title.light h1 {
    color: #fff;
}
.sec-title.light .sub-title,
.sec-title.light .text {
    color: #8f8f8f;
}
/*-------------------------------------------
Section Title End
-------------------------------------------*/


/*-------------------------------------------
        Contact Begin
-------------------------------------------*/

.contact-details__info {
    position: relative;
    display: block;
    margin-top: 41px;
}
.contact-details__info li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.contact-details__info li .icon {
    height: 80px;
    width: 80px;
    min-width: 80px;
    min-height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.contact-details__info li .icon span {
    color: #fff;
    font-size: 25px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.contact-details__info li:hover .icon {
    background-color: #0f0f0f;
}
.contact-details__info li:hover .icon span {
    color: #fff;
}
.contact-details__info li .text {
    margin-left: 30px;
}
.contact-details__info li .text p {
    font-size: 14px;
    line-height: 24px;
}
.contact-details__info li .text a {
    font-size: 18px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.contact-details__info li .text span {
    font-size: 20px;
}
.contact-details__info li + li {
    margin-top: 30px;
}
/*-------------------------------------------
        Contact End
-------------------------------------------*/


/*-------------------------------------------
Social Icon Two Begin
-------------------------------------------*/
.contact-socials-container {
    margin-top: 38px;
    margin-left: 5px;
    border-top: 1px solid #efefef;
    padding-top: 21px;
}
.social-icon-two {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.social-icon-two li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 10px;
}
.social-icon-two li:first-child {
    margin-left: 0;
}
.social-icon-two li a {
    position: relative;
    display: block;
    line-height: 42px;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    border-radius: 50%;
    background-color: var(--primary-color);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.social-icon-two li a:hover {
    color: #ffffff !important;
    background-color: var(--primary-hover-color);
}
/*-------------------------------------------
Social Icon Two End
-------------------------------------------*/

.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    font-size: 16px;
    line-height: 40px;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    background-color: var(--primary-color);
    z-index: 100;
    display: none;
    border-radius: 50%;
    margin: 0 auto;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.scroll-to-top:hover {
    background: var(--primary-hover-color);
}


.modal-content {
    border-radius: 4px;
    background-color: var(--white-color);
    padding: 25px;
}
.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 20px;
}
.modal-title {
    font-size: 18px;
}
.modal .btn-close {
    color: var(--body-font-color) !important;
    background-image: none;
    font-size: 18px;
    position: relative;
    top: -5px;
}
.modal-body {
    padding: 25px 0;
}