/*----------------------------------------------
Typography
----------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700;800;900&display=swap");

:root {
    --body-font: "Prompt", sans-serif;
    --heading-font: "Prompt", sans-serif;
    --primary-color: #3368fa;
    --heading-color: #13281E;
    --black: #13281E;
    --grayish-blue: #929cbf;
    --btn-bg1: #3368fa;
    --white: #ffffff;
    --soft-blue: #C1BFFD;
    --grayish-violet: #f5f4f7;
    --soft-green: #ccf888;
    --soft-red: #FE5758;
    --soft-red: #d82a68;
    --lime-green: #40b781;
    --vivid-orange: #fb6116;
    --yellow: #fcc013;
    --primary-color-opacity-low: rgb(51, 104, 250, 0.1);
    --soft-red-opacity-low: rgba(216, 42, 103, 0.1);
    --bg-color1: #F3F4F6;
    --bg-color2: #282c34;
    --bg-color3: #152748;
    --bg-color4: #424449;
    /*--body-color: #707070;*/
    --body-color: #212529;
    --border-color1: #f2f2f2;
    --border-color2: #e1e1e1;
    --border-color3: rgb(51, 104, 250, 0.5);
    --shadow1: 0px 3px 5px 0px rgba(0, 0, 0, 0.10);
    --shadow2: 0px 0px 5px 0px rgba(0, 0, 0, 0.10);
    --shadow3: 5px 5px 20px rgba(54, 97, 252, .15);
    --transition: all .3s ease-in-out;
}

/*----------------------------------------------
Reset section start
----------------------------------------------*/
.rtl {
    direction: rtl;
}

::-moz-selection {
    color: #fff;
    background: var(--primary-color);
}

::selection {
    color: #fff;
    background: var(--primary-color);
}

/*----------------------------------------------
preloader section start
----------------------------------------------*/
#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: var(--bg-color1);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader .loader {
    height: 150px;
    width: 150px;
    border: 15px solid var(--white);
    margin: 200px auto;
    border-radius: 50%;
    border-top: 15px solid var(--primary-color);
    animation: spin 2s linear infinite;
}

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

/*----------------------------------------------
preloader end
----------------------------------------------*/
/*----------------------------------------------
scroll up start
----------------------------------------------*/
.scroll-up {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99999;
}

.rtl .scroll-up {
    left: 50px;
    right: auto;
}

@media (max-width: 767px) {
    .scroll-up {
        bottom: 50px;
        right: 20px;
    }

    .rtl .scroll-up {
        left: 20px;
    }
}

.scroll-up i {
    color: #fff;
    height: 40px;
    width: 40px;
    background: var(--btn-bg1);
    border-radius: 4px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.scroll-up i:hover {
    background: var(--btn-bg2);
}

/*----------------------------------------------
end
----------------------------------------------*/
*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

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

body {
    font-family: var(--body-font);
    line-height: 1.5;
    color: var(--body-color);
    font-size: 16px;
    overflow-x: hidden;
    background-color: var(--white);
}

@media (max-width: 991px) {
    body {
        padding-bottom: 60px;
    }
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

b {
    font-weight: 500;
}

textarea.form-control {
    height: initial;
}

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

.form-select {
    color: var(--body-color);
}

.form-control,
.form-select {
    border-radius: 10px;
    background-color: var(--bg-color1);
    height: 45px;
    border: 1px solid var(--bg-color1);
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 4px rgba(51, 104, 250, 0.1);
    border: 1px solid var(--primary-color);
}

.form-check label,
.form-check-input {
    cursor: pointer;
}

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

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.rtl .form-check {
    padding-right: 1.5em;
}

.rtl .form-check .form-check-input {
    float: right;
    margin-right: -1.5em;
}

.form-select {
    background-image: url(../img/accordion/arrow-down.png);
    background-repeat: no-repeat;
}

.input-group {
    height: 45px;
    box-shadow: var(--shadow2);
    border-radius: 8px;
}

.input-group-text {
    font-size: 22px;
    color: var(--primary-color);
    width: 50px;
    border: none;
    border-radius: 0;
    display: flex;
    justify-content: center;
    background: transparent;
}

/*----------------------------------------------
intlTelInput start
----------------------------------------------*/
.iti {
    display: flex;
}

.iti__country-list {
    box-shadow: var(--shadow1);
    border: 1px solid var(--border-color2);
    border-radius: 5px;
}

.iti-mobile .iti__country-list {
    z-index: 9999;
}

/*----------------------------------------------
intlTelInput end
----------------------------------------------*/
/*----------------------------------------------
Select2 start
----------------------------------------------*/
span.select2.select2-container.select2-container--default {
    width: 100% !important;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
    border: 1px solid transparent;
    height: 40px;
    display: flex;
    align-items: center;
    background: var(--bg-color1);
    font-size: 15px;
    padding: 0.375rem 15px;
}

.select2-container .select2-selection--single:focus,
.select2-container .select2-selection--multiple:focus {
    border: 1px solid var(--primary-color);
}

.select2-container .select2-dropdown {
    border: 1px solid var(--border-color2);
}

.select2-container .select2-dropdown .select2-search__field {
    border-radius: 5px;
    border: 1px solid var(--border-color2);
    outline: 0;
}

.select2-container .select2-dropdown .select2-search__field:focus-visible {
    border-color: var(--primary-color);
}

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

.select2-container--default .select2-results__option--selected {
    background: var(--primary-color);
    color: var(--white);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: var(--primary-color);
}

.select2-container--default .select2-results > .select2-results__options {
    text-transform: capitalize;
    padding: 5px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 0 4px rgba(5, 160, 129, 0.1);
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid var(--border-color2);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--body-color) transparent transparent transparent;
    border-width: 5px 5px 0 5px;
    margin-left: -10px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--primary-color) transparent;
    border-width: 0 5px 5px 5px;
}

.rtl .select2-container--default .select2-selection--single .select2-selection__arrow {
    left: 1px;
}

.rtl .select2-container .select2-selection--single .select2-selection__rendered {
    text-align: right;
}

/*----------------------------------------------
end
----------------------------------------------*/
/*----------------------------------------------
Breadcrumb start
----------------------------------------------*/
.breadcrumb {
    display: inline-flex;
    justify-content: center;
    margin-top: 10px;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "\f105";
    color: var(--black);
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
}

.breadcrumb .breadcrumb-item.active {
    color: var(--primary-color);
    text-transform: capitalize;
}

.rtl .breadcrumb-item + .breadcrumb-item::before {
    float: right;
    padding-left: var(--bs-breadcrumb-item-padding-x);
    transform: rotate(180deg);
}

/*----------------------------------------------
end
----------------------------------------------*/
p {
    color: var(--body-color);
    margin-bottom: 10px;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

button {
    background: none;
    border: none;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--heading-font);
    font-weight: 500;
    line-height: 1.3;
    color: var(--heading-color);
}

h1 {
    font-size: 58px;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 60px;
}

h2 {
    font-size: 36px;
    text-transform: capitalize;
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--heading-color);
}

@media (max-width: 991px) {
    h2 {
        font-size: 28px;
    }
}

h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 500;
}

@media (max-width: 991px) {
    h3 {
        font-size: 24px;
    }
}

h4 {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 500;
}

@media (max-width: 991px) {
    h4 {
        font-size: 20px;
    }
}

h5 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 500;
}

h6 {
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--heading-color);
}

img {
    max-width: 100%;
    height: auto;
}

figure {
    margin: 0;
}

.logo {
    max-width: 130px;
    min-width: 100px;
}

.footer-logo {
    max-width: 100px;
    min-width: 100px;
}

.cmn-scroll {
    max-height: 255px;
    overflow: scroll;
    padding-right: 5px;
    padding-top: 10px;
}

::-webkit-scrollbar {
    width: 3px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--primary-color);
    visibility: hidden;
    opacity: 0;
}

:hover::-webkit-scrollbar-thumb {
    visibility: visible;
    opacity: 1;
}

body::-webkit-scrollbar {
    width: 5px;
}

body::-webkit-scrollbar-thumb {
    visibility: visible;
    opacity: 1;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 5px;
    background: var(--primary-color);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots span {
    background: var(--primary-color);
    width: 30px;
    height: 5px;
}

.owl-theme .owl-dots .owl-dot span {
    transition: all 0.5s ease-in-out;
}

/*----------------------------------------------
end
----------------------------------------------*/
/*----------------------------------------------
Reuseble style section start
----------------------------------------------*/
.card {
    border: 1px solid var(--border-color1);
    box-shadow: var(--shadow3);

}

/*----------------------------------------------
Offcanvaes section start
----------------------------------------------*/
.offcanvas {
    background: var(--bg-color1);
}

.offcanvas.offcanvas-end {
    border-left: 1px solid var(--border-color1);
}

.offcanvas-backdrop {
    background-color: rgba(228, 235, 248, 0.4784313725);
    -webkit-backdrop-filter: blur(8.8px);
    backdrop-filter: blur(8.8px);
}

.offcanvas-backdrop.show {
    opacity: 1;
}

/*----------------------------------------------
end
----------------------------------------------*/
.animation1 {
    position: relative;
    animation-name: animation1;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes animation1 {
    from {
        top: 0px;
    }
    to {
        top: 20px;
    }
}

.shape {
    position: absolute;
    background-color: var(--white);
    box-shadow: var(--shadow3);
    padding: 15px;
    border-radius: 10px;
    text-transform: capitalize;
    text-align: center;
}

.shape .icon-area {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape .icon-area img {
    width: 50px;
    height: 50px;
}

.shape1 {
    top: 50px;
    left: -70px;
}

.shape2 {
    bottom: 50px;
    right: -70px;
}

.shape2 i {
    color: var(--yellow);
}

@media (max-width: 991px) {
    .shape .icon-area img {
        width: 40px;
        height: 40px;
    }

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

    .shape span {
        font-size: 12px;
    }

    .shape1 {
        left: -25px;
    }

    .shape2 {
        right: -25px;
    }
}

@media (max-width: 370px) {
    .shape1 {
        left: -7px;
    }

    .shape2 {
        right: -7px;
    }
}

.bg-shape {
    width: 500px;
    height: 250px;
    background-color: var(--primary-color-opacity-low);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 0% 100% 0;
    z-index: -1;
}

.bg-shape2 {
    width: 300px;
    height: 400px;
    background-color: var(--primary-color-opacity-low);
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 100% 0 0% 0;
    z-index: -1;
}

.section-header {
    margin-bottom: 30px;
}

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

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

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

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

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

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

.text-gradient {
    background-image: linear-gradient(90deg, #47beb9, #ddcd86);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cmn-btn {
    background: var(--btn-bg1);
    padding: 7px 20px;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--heading-font);
    border: 1px solid var(--primary-color);
}

.cmn-btn:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background-color: var(--white);
}

.cmn-btn2 {
    background: var(--btn-bg3);
    padding: 8px 20px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-transform: capitalize;
}

.cmn-btn2:hover {
    color: var(--white);
    background: var(--btn-bg4);
}

.cmn-btn3 {
    background: var(--white);
    padding: 8px 20px;
    border-radius: 10px;
    transition: var(--transition);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    background-color: var(--bg-color1);
}

.cmn-btn3:hover {
    color: var(--white);
    background: var(--primary-color);
}

.cmn-btn3 img {
    margin-right: 5px;
    width: 16px;
}

.rtl .cmn-btn3 img {
    margin-right: 0;
    margin-left: 5px;
}

.login-btn {
    display: flex;
    padding: 8px 20px;
    transition: var(--transition);
    font-size: 16px;
    color: var(--heading-color);
    font-weight: 700;
    font-family: var(--heading-font);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}

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

.get-start-btn {
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    background: var(--btn-bg1);
    color: var(--white);
    transition: var(--transition);
    font-family: var(--heading-font);
    border: 2px solid var(--primary-color);
    text-transform: capitalize;
}

.get-start-btn:hover {
    color: var(--heading-color);
    background-color: var(--white);
}

/*----------------------------------------------
Alerts section start
----------------------------------------------*/
.alert {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 15px;
    border-left: 15px solid;
    box-shadow: 0px 3px 3px #BABABA;
}

.alert .icon-area i {
    font-size: 30px;
    margin-right: 15px;
}

.alert .title {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
}

.alert .title {
    font-size: 18px;
}

.alert .title,
.alert .description {
    color: var(--heading-color);
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 50%;
    right: 30px;
    z-index: 2;
    transform: translateY(-50%);
    padding: 0;
    background: none;
    height: initial;
    width: initial;
}

.alert-dismissible .btn-close i {
    font-size: 24px;
}

.alert-success {
    color: #3AC279;
    background: #C5F7DC;
    border-color: #C5F7DC;
    border-left-color: #3ac279;
}

.alert-success .btn-close {
    color: #3AC279;
}

.alert-danger {
    color: #E9594C;
    background: #FFCFCB;
    border-color: #FFCFCB;
    border-left-color: #E9594C;
}

.alert-danger .btn-close {
    color: #E9594C;
}

.alert-warning {
    color: #E89F29;
    background: #FFE8C3;
    border-color: #FFE8C3;
    border-left-color: #E89F29;
}

.alert-warning .btn-close {
    color: #E89F29;
}

/*----------------------------------------------
end
----------------------------------------------*/
/*----------------------------------------------
Cmn tab section start
----------------------------------------------*/
.cmn-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.cmn-tabs .nav-pills {
    flex-wrap: initial;
    width: 100%;
    gap: 5px;
    background-color: var(--primary-color-opacity-low);
    padding: 5px 7px;
    border-radius: 5px;
}

.cmn-tabs .nav-pills .nav-item {
    width: 50%;
}

.cmn-tabs .nav-pills .nav-link {
    height: 100%;
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 5px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    border: 1px solid var(--white);
}

.cmn-tabs .nav-pills .nav-link.active, .cmn-tabs .nav-pills .nav-link:hover {
    background-color: var(--white);
}

@media (min-width: 992px) {
    .cmn-tabs .nav-pills {
        width: 90%;
    }
}

/*----------------------------------------------
end
----------------------------------------------*/
/*----------------------------------------------
Cmn tab2 section start
----------------------------------------------*/
.cmn-tabs2 .nav-pills .nav-link {
    color: var(--white);
    opacity: 0.5;
    font-size: 13px;
    transition: var(--transition);
    border-radius: 0;
    border-bottom: 1px solid transparent;
}

.cmn-tabs2 .nav-pills .nav-link.active, .cmn-tabs2 .nav-pills .nav-link:hover {
    opacity: 1;
    background-color: transparent;
    border-bottom: 1px solid var(--primary-color);
}

/*----------------------------------------------
end
----------------------------------------------*/
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-play-btn i {
    color: var(--white);
    background: var(--primary-color);
    height: 75px;
    width: 75px;
    font-size: 25px;
    transition: all 0.3s ease-in;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

section {
    padding: 100px 0;
}

@media (max-width: 991px) {
    section {
        padding: 50px 0;
    }
}

.cmn-para-text {
    max-width: 700px;
    font-size: 16px;
}

.section-title {
    max-width: 500px;
}

.section-subtitle {
    text-transform: capitalize;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 400;
    max-width: 662px;
    position: relative;
    display: inline-block;
    font-family: "Meddon", cursive;
    margin-bottom: 20px;
    padding: 3px 20px;
    border-radius: 15px;
    background-color: var(--primary-color-opacity-low);
}

@media (max-width: 991px) {
    .section-subtitle {
        font-size: 16px;
    }
}

.social-area ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    border-radius: 10px;
    background: var(--white);
    color: var(--heading-color);
    box-shadow: var(--shadow3);
}

.social-area ul li a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.star ul li i {
    color: var(--primary-color);
}

.star_area li .active {
    color: var(--primary-color);
}

.opacity {
    opacity: 0.5;
}

.badge {
    background: var(--secondary-color2);
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 8px;
    padding: 3px;
    border-radius: 3px;
}

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

.rtl .badge {
    margin-right: 8px;
    margin-left: 0;
}

.cmn-hr {
    background-color: transparent;
    background-image: linear-gradient(90deg, rgba(206, 211, 246, 0) 0, #CED3F6 38%, #CED3F6 64%, rgba(206, 211, 246, 0) 99%);
    opacity: 0.3;
    border-top: initial;
    height: 1px;
    margin: 50px 0;
}

hr.divider {
    margin-top: 50px;
    padding: 0;
    overflow: visible;
    border: none;
    border-top: 1px solid var(--border-color2);
    color: #6e6d7a;
    text-align: center;
    opacity: 0.75;
}

hr.divider:after {
    content: "or continue with";
    display: inline-block;
    position: relative;
    top: -12px;
    padding: 0 16px;
    background: var(--white);
    color: var(--heading-color);
}

.dropdown-menu {
    max-height: 30rem;
    min-width: 13rem;
    overflow-y: auto;
    border-radius: 5px;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--border-color1);
    box-shadow: var(--shadow2);
}

.dropdown-menu .dropdown-item {
    border-radius: 5px;
    padding: 3px 8px;
    transition: none !important;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-weight: 500;
}

.dropdown-menu .dropdown-item:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

.title-border {
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    border-radius: 30px;
}

.title-border::before {
    position: absolute;
    content: "";
    top: 50%;
    left: -50px;
    height: 5px;
    width: 70px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    overflow: hidden;
}

.title-border::after {
    position: absolute;
    content: "";
    top: 50%;
    left: -33px;
    height: 5px;
    width: 35px;
    background-color: var(--primary-color);
    animation: divider-effect 5s linear infinite;
}

#slider {
    height: 10px;
}

#slider .noUi-connect {
    background-color: var(--primary-color);
}

#slider .noUi-handle {
    height: 18px;
    width: 18px;
    top: -5px;
    right: -9px;
    /* half the width */
    border-radius: 9px;
    background-color: var(--primary-color);
}

#slider .noUi-handle::after, #slider .noUi-handle::before {
    background: transparent;
}

.slider-value {
    margin-top: 10px;
    text-align: center;
}

/*----------------------------------------------
Margin top start
----------------------------------------------*/
.mt-10 {
    margin-top: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*----------------------------------------------
end
----------------------------------------------*/
/*----------------------------------------------
Margin bottom start
----------------------------------------------*/
.mb-10 {
    margin-bottom: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*----------------------------------------------
end
----------------------------------------------*/
/*----------------------------------------------
Padding top start
----------------------------------------------*/
.pt-15 {
    padding-top: 15px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*----------------------------------------------
end
----------------------------------------------*/
/*----------------------------------------------
Padding bottom
----------------------------------------------*/
.pb-15 {
    padding-bottom: 15px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/*----------------------------------------------
end
----------------------------------------------*/
/*----------------------------------------------
end
----------------------------------------------*/
/*----------------------------------------------
01. Nav section start
----------------------------------------------*/
.navbar.active {
    background-color: var(--white);
    box-shadow: var(--shadow2);
    z-index: 999;
}

.navbar {
    transition: all 0.5s ease-in-out;
    padding: 0;
    z-index: 9999;
}

.navbar .navbar-toggler {
    background: var(--primary-color);
    color: var(--white);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: none;
}

.navbar .cmn-btn-close {
    font-size: 18px;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: var(--white);
    padding: 0;
    margin: 0;
    opacity: 1;
    box-shadow: none;
}

.navbar .navbar-nav {
    text-align: center;
}

.navbar .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 400;
    color: var(--heading-color);
    text-transform: capitalize;
    padding: 5px 15px;
    font-family: var(--heading-font);
    transition: var(--transition);
    border-radius: 15px;
}

.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar .navbar-nav .nav-link:hover {
    background-color: var(--bg-color1);
}

.navbar .nav-right li:not(:last-child) {
    margin-right: 15px;
}

.navbar .nav-right li .link {
    font-size: 16px;
    font-weight: 400;
    color: var(--heading-color);
    text-transform: capitalize;
    padding: 5px 15px;
    font-family: var(--heading-font);
    display: flex;
    align-items: center;
    border-radius: 15px;
}

.navbar .nav-right li .link:hover, .navbar .nav-right li .link.active {
    color: var(--primary-color);
}

.navbar .nav-right li .link:hover {
    background-color: var(--bg-color1);
}

.navbar .nav-right li .link i {
    margin-right: 5px;
    color: var(--primary-color);
}

.search-area {
    width: 100%;
    max-width: 520px;
    position: relative;
}

.search-area .form-control {
    border-radius: 10px;
}

@media (min-width: 992px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar-expand-lg .navbar-toggler {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .navbar {
        padding: 10px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 15px;
    }

    .navbar .nav-right {
        flex-direction: column;
    }

    .navbar .nav-right li {
        padding: 15px;
    }
}

.rtl .navbar .nav-right li:not(:last-child) {
    margin-right: 0;
    margin-left: 15px;
}

.rtl .navbar .nav-right li .link i {
    margin-right: 0;
    margin-left: 5px;
}

/*----------------------------------------------
Nav end
----------------------------------------------*/
/*----------------------------------------------
02. Bottom Mobile, Tab nav section start
----------------------------------------------*/
.bottom-nav {
    background: var(--white);
    justify-content: space-around;
    box-shadow: var(--shadow2);
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    height: 55px;
    display: flex;
    align-items: center;
}

.bottom-nav .nav-item .nav-link {
    color: var(--heading-color);
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.bottom-nav .nav-item .nav-link.active, .bottom-nav .nav-item .nav-link:hover {
    color: var(--white);
    background: var(--primary-color);
    margin-top: -22px;
}

.bottom-nav .nav-item .nav-link i {
    font-size: 20px;
}

/*----------------------------------------------
Bottom Mobile, Tab nav end
----------------------------------------------*/
/*----------------------------------------------
03. Hero section start
----------------------------------------------*/
.hero-section {
    padding: 200px 0 100px;
    position: relative;
}

.hero-section .hero-para-text {
    font-size: 20px;
}

.hero-section .btn-area {
    margin-top: 30px;
}

.hero-section .hero-thum {
    position: relative;
    max-width: 350px;
    margin: auto;
    background-color: var(--primary-color);
    border-radius: 200px;
}

.hero-section .hero-thum img {
    border-radius: 200px;
}

@media (max-width: 991px) {
    h1 {
        font-size: 42px;
        line-height: 50px;
    }

    .hero-section .hero-para-text {
        font-size: 16px;
    }

    .cmn-para-text {
        font-size: 16px;
    }

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

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

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

@media (max-width: 767px) {
    .hero-section {
        text-align: center;
    }

    .hero-section .hero-thum {
        max-width: 300px;
        margin: auto;
    }

    .hero-section .hero-bottom {
        margin: 50px auto 0;
    }
}

.rtl .hero-section .hero-bottom .fa-angle-right {
    transform: rotate(180deg);
}

/*----------------------------------------------
Hero end
----------------------------------------------*/
/*----------------------------------------------
04. Feature section start
----------------------------------------------*/
.feature-section {
    background-color: var(--bg-color1);
}

.feature-section .feature-mid-section {
    display: flex;
    justify-content: center;
}

.feature-section .feature-mid-section .feature-thum {
    position: absolute;
    bottom: 0;
}

.feature-section .feature-mid-section .feature-thum img {
    max-width: 450px;
}

.feature-box {
    display: flex;
    margin-bottom: 30px;
    background-color: white;
    padding: 10px 15px;
    border-radius: 50px;
    align-items: center;
    max-width: 85%;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    width: 70px;
    min-width: 70px;
    height: 70px;
    box-shadow: var(--shadow3);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 26px;
}

.text-box .highlight {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
}

.feature-box-right {
    flex-direction: row-reverse;
    margin-left: auto;
}

.feature-box-right .icon-box {
    margin-right: 0;
    margin-left: 20px;
}

.feature-box-right .text-box {
    text-align: right;
}

@media (max-width: 991px) {
    .icon-box {
        min-width: 50px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .feature-box {
        max-width: 100%;
    }
}

.rtl .feature-box-right .icon-box {
    margin-right: 20px;
    margin-left: 0;
}

.rtl .feature-box-right .text-box {
    text-align: left;
}

.rtl .icon-box {
    margin-right: 0;
    margin-left: 20px;
}

@media (max-width: 991px) {
    .rtl .feature-box.ms-lg-4 {
        margin-right: 0;
    }
}

/*----------------------------------------------
Feature end
----------------------------------------------*/
/*----------------------------------------------
05. About section start
----------------------------------------------*/
.about-section .about-thum {
    max-width: 400px;
}

.about-section .about-content .btn-area {
    margin-top: 30px;
}

@media (max-width: 767px) {
    .about-section {
        text-align: center;
    }
}

.rtl .about-section .about-content .about-item {
    text-align: right;
}

/*----------------------------------------------
About end
----------------------------------------------*/
/*----------------------------------------------
06. Pricing section start
----------------------------------------------*/
.pricing-section {
    background-color: var(--bg-color1);
}

.pricing-box {
    border-radius: 15px;
    background: var(--white);
    box-shadow: var(--shadow2);
    height: 100%;
}

.pricing-box .section-header {
    background-color: var(--primary-color-opacity-low);
    padding: 25px 15px;
    text-align: center;
    margin-bottom: 0;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    min-height: 182px;
}

.pricing-box .section-header .section-title {
    text-transform: capitalize;
    margin-bottom: 10px;
}

.pricing-box .section-header .plan-description {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
}

.pricing-box .section-body {
    color: var(--heading-color);
    padding: 15px;
}

.pricing-box .section-body .title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

.pricing-box .section-body .plan-thumbs {
    width: 75px;
    margin: auto;
}

.pricing-box .section-body .marketing-campaigns {
    width: 160px;
}

.pricing-box .section-body .btn-area {
    margin: 20px 0 30px;
}

.pricing-box .section-body .btn-area .cmn-btn {
    width: 100%;
}

.pricing-box .section-body .pricing-feature {
    margin-bottom: 20px;
}

.pricing-box .section-body .pricing-feature li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--primary-color-opacity-low);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.pricing-box .section-body .pricing-feature li .close {
    color: var(--soft-red);
    background-color: var(--soft-red-opacity-low);
}

.pricing-box .section-body .pricing-feature li:not(:last-child) {
    margin-bottom: 16px;
}

.pricing-box .section-body .btn-area .cmn-btn2 {
    width: 100%;
}

.pricing-box .btn-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-box.featured {
    border: 1px solid var(--primary-color);
    position: relative;
}

.pricing-box.featured .featured-title {
    position: absolute;
    background: var(--primary-color);
    top: -17px;
    padding: 4px 15px;
    border-radius: 18px;
    color: var(--white);
    text-transform: capitalize;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-box.featured .section-header {
    border-color: var(--primary-color);
}

@media (max-width: 1199px) {
    .prepaid-plan .prepaid-title {
        font-size: 20px;
    }

    .prepaid-plan .prepaid-title sup {
        font-size: 10px;
    }
}

@media (max-width: 991px) {
    .prepaid-plan .price-area .price-title {
        font-size: 28px;
    }

    .prepaid-plan sup {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .cmn-tabs .nav-pills {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cmn-tabs .nav-pills .nav-item {
        width: 100%;
    }
}

.rtl .pricing-box .section-header {
    border-right: none;
    border-left: 1px solid var(--primary-color-opacity-low3);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 0;
}

.rtl .pricing-box .section-body .pricing-feature li i {
    margin-right: 0;
    margin-left: 10px;
}

/*----------------------------------------------
Pricing end
----------------------------------------------*/
/*----------------------------------------------
07. Testimonial section start
----------------------------------------------*/
.testimonial-section .testimonial-box {
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    flex-direction: column;
}

.testimonial-section .testimonial-thumbs {
    border: 1px transparent;
}

.testimonial-section .testimonial-thumbs img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    filter: grayscale(1);
}

.testimonial-section .owl-item.active.center .testimonial-thumbs img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    filter: grayscale(0);
}

.testimonial-section .owl-item.active.center .testimonial-box {
    background-color: var(--bg-color1);
}

.testimonial-section .quote-area {
    width: 25px;
    height: 25px;
}

.testimonial-section .quote-area:last-child {
    display: flex;
    justify-content: end;
}

.testimonial-section .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 50px;
}

/*----------------------------------------------
Testimonial end
----------------------------------------------*/
/*----------------------------------------------
08. How it works section start
----------------------------------------------*/
.how-it-work {
    background-color: var(--bg-color1);
}

.how-it-work .how-it-work-content .btn-area {
    margin-top: 30px;
}

@media (max-width: 767px) {
    .how-it-work .btn-area {
        display: flex;
        justify-content: center;
    }
}

.rtl .how-it-work .how-it-work-wrapper .how-it-work-item .section-header .number {
    margin-right: 0;
    margin-left: 15px;
}

/*----------------------------------------------
How it works end
----------------------------------------------*/
/*----------------------------------------------
09. Faq section start
----------------------------------------------*/
.faq-section .accordion-button {
    color: var(--heading-color);
    font-weight: 500;
    font-size: 18px;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    box-shadow: none;
    background: transparent;
    color: var(--primary-color);
}

.accordion-item {
    margin: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color2);
}

.accordion-item:last-of-type {
    border-radius: 0;
}

.accordion-button {
    background: transparent;
}

.accordion-button::after {
    background: url(../img/accordion/plus.png);
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
}

.accordion-button:not(.collapsed)::after {
    background: url(../img/accordion/minus.png);
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
}

.rtl .accordion-button {
    text-align: right;
    padding: 10px;
}

.rtl .accordion-button::after {
    margin-right: auto;
    margin-left: 0;
}

/*----------------------------------------------
Faq end
----------------------------------------------*/
/*----------------------------------------------
10. Blog section start
----------------------------------------------*/
.blog-section {
    background-color: var(--bg-color1);
}

.pr1-blog-content {
    margin-top: 30px;
}

.blog-box {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow3);
}

.blog-box:hover .img-box {
    overflow: hidden;
}

.blog-box:hover .img-box img {
    transform: scale(1);
}

.blog-box .img-box {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
}

.blog-box .img-box img {
    transition: var(--transition);
    transform: scale(1.1);
    width: 100%;
    height: 15vw;
    max-height: 250px;
}

.blog-box .content-box {
    padding: 20px;
}

.blog-box .content-box .cmn-btn i {
    margin-left: 5px;
}

.blog-box .blog-author {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}

.blog-box .blog-author .author-img {
    margin-right: 10px;
}

.blog-box .blog-author .author-img img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.blog-box .blog-author .author-info h5 {
    margin: 0;
}

.blog-box .blog-title {
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
}

@media (max-width: 991px) {
    h5 {
        font-size: 18px;
    }

    .blog-box .img-box img {
        height: 20vw;
    }

    .blog-box .blog-author .author-info span {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .blog-box .img-box img {
        height: 40vw;
    }
}

@media (max-width: 575px) {
    .blog-box .img-box img {
        height: 55vw;
    }
}

.rtl .blog-box .blog-author .author-img {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .blog-box .content-box .cmn-btn i {
    margin-left: 0;
    margin-right: 5px;
    transform: rotate(180deg);
}

/*----------------------------------------------
Blog end
----------------------------------------------*/
/*----------------------------------------------
11. Footer section start
----------------------------------------------*/
.footer-section {
    background: url(../img/background/bg-2.png);
    background-size: cover;
    background-position: center;
}

.footer-section .footer-widget h5 {
    position: relative;
    margin-bottom: 30px;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 20px;
    font-family: var(--heading-font);
}

.footer-section .footer-widget input[type=email] {
    margin: 30px 0 20px 0;
    border: none;
    border-bottom: 1px solid var(--border-color2);
    background: var(--bg-color1);
    border-radius: 15px;
}

.footer-section .footer-widget input[type=email]:focus {
    border-bottom: 1px solid var(--primary-color);
    box-shadow: none;
}

.footer-widget p {
    font-weight: 400;
}

.footer-widget ul li {
    line-height: 2.5;
}

.footer-widget a {
    font-weight: 400;
    color: var(--heading-color);
}

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

.rtl .footer-section .footer-widget h5::after {
    right: 0;
    left: auto;
}

/*----------------------------------------------
Footer end
----------------------------------------------*/
/*----------------------------------------------
12. Copyright section start
----------------------------------------------*/
.copyright-area p {
    margin-bottom: 0;
    font-weight: 400;
}

.language {
    display: flex;
    justify-content: end;
}

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

.language a:not(:last-child) {
    margin-right: 10px;
}

@media (max-width: 575px) {
    .copyright-area {
        text-align: center;
    }

    .language {
        justify-content: center;
    }
}

.rtl .language a:not(:last-child) {
    margin-right: 0;
    margin-left: 10px;
}

/*----------------------------------------------
Copyright end
----------------------------------------------*/
/*----------------------------------------------
13. Banner section start
----------------------------------------------*/
.banner-nav {
    background: transparent;
}

.banner-area {
    padding-top: 150px;
    padding-bottom: 70px;
    position: relative;
    z-index: 1;
    background: url(../img/background/bg-1.png);
    background-size: cover;
    background-position: center;
}

.banner-area h3 {
    font-size: 40px;
    margin-bottom: 10px;
}

.breadcrumb-area {
    font-size: 18px;
    color: var(--heading-color);
    font-weight: 500;
    text-align: center;
}

.breadcrumb-area h3 {
    text-transform: capitalize;
}

@media (max-width: 991px) {
    .banner-area {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .banner-area h3 {
        font-size: 36px;
    }
}

/*----------------------------------------------
Banner end
----------------------------------------------*/
/*----------------------------------------------
14. Docs banner section start
----------------------------------------------*/
.docs-banner {
    padding: 100px 0 150px;
    background: linear-gradient(rgba(245, 249, 255, 0.9), rgb(220, 234, 255)), url(../img/banner/group-photo-bro.png);
    background-size: cover;
    background-position: top;
}

/*----------------------------------------------
Docs banner end
----------------------------------------------*/
/*----------------------------------------------
15. Developer section start
----------------------------------------------*/
.developer-section .thumbs-area {
    max-width: 500px;
    margin: auto;
}


.docs-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow3);
    transition: var(--transition);
}

.docs-card:hover .title {
    box-shadow: none;
    gap: 20px;
}

.docs-card:hover .title i {
    color: var(--primary-color);
}

.docs-card .docs-header {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 20px;
    background: linear-gradient(rgba(245, 249, 255, 0.9), rgb(220, 234, 255));
}

.docs-header .title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    transition: var(--transition);
}

.docs-header .title i {
    font-size: 18px;
}

.docs-card .docs-body {
    padding: 20px;
}

/*----------------------------------------------
Developer end
----------------------------------------------*/
/*----------------------------------------------
16. Docs section start
----------------------------------------------*/
.docs-nav {
    box-shadow: var(--shadow2);
    background-color: var(--white);
}

.docs-section-title {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color2);
}

.docs-title {
    padding: 20px 0;
}

.docs-section {
    padding: 20px 0;
}

.docs-link {
    text-decoration: underline;
    color: var(--primary-color);
}

.language-bash {
    background-color: var(--bg-color2);
    border-radius: 5px;
    position: relative;
}

.language-bash:hover .copy-code {
    opacity: 1;
    visibility: visible;
}

.language-bash .line-numbers-rows {
    position: absolute;
    color: #9e9e9e;
    left: 0;
    top: 15px;
    border-right: 1px solid #9e9e9e;
    width: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-color2);
    font-size: 14px;
}

.language-bash .line-numbers-rows span {
    display: block;
}

.language-bash .docs-pre {
    padding: 0 0 0 30px;
}

.language-bash .copy-code {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--bg-color4);
    width: 30px;
    height: 30px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 1px solid transparent;
}

.language-bash .copy-code:hover {
    border: 1px solid var(--border-color2);
}

.navbar-toggler {
    background: var(--primary-color);
    color: var(--white);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: none;
}

.cmn-btn-close {
    font-size: 18px;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: var(--white);
    padding: 0;
    margin: 0;
    opacity: 1;
    box-shadow: none;
}

.sidebar-btn {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    color: var(--white);
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-section {
    background-color: var(--white);
    box-shadow: var(--shadow2);
    width: 300px;
    height: 100%;
    padding: 20px;
    position: fixed;
    padding-top: 95px;
    transition: var(--transition);
    z-index: 1;
    border-right: 1px solid var(--1px solid var(--border-color1));
}

.sidebar-section .nav-area {
    overflow-y: auto;
    height: 100%;
}

.sidebar-section .nav-area .nav-item .nav-content {
    margin-left: 30px;
}

.sidebar-section .nav-area .nav-item .nav-content li a {
    padding: 5px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.sidebar-section .nav-area .nav-item .nav-content li a.active {
    color: var(--primary-color);
}

.sidebar-section .nav-area .nav-item .nav-content li a i {
    font-size: 8px;
    margin-right: 5px;
    border-radius: 50%;
}

.sidebar-section .nav-area .nav-link {
    color: var(--heading-color);
    display: flex;
    align-items: center;
    padding: 7px 0;
    font-size: 14px;
}

.sidebar-section .nav-area .nav-link:hover {
    color: var(--primary-color);
}

.sidebar-section .nav-area .nav-link i {
    transition: transform 0.2s ease-in-out;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 5px;
}

.sidebar-section .nav-area .nav-link i.first {
    margin-right: 5px;
}

.sidebar-section .nav-area .nav-link i.last {
    margin-left: auto;
    background-color: var(--bg-color1);
}

.sidebar-section .nav-area .nav-link:not(.collapsed) i.last {
    transform: rotate(180deg);
}

.sidebar-section .toggle-sidebar-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -35px;
    width: 35px;
    height: 35px;
    background-color: var(--bg-color1);
}

.hljs {
    background-color: transparent;
}

main {
    width: calc(100% - 300px);
    margin-left: auto;
}

main .main-inner {
    max-width: 1000px;
    margin: auto;
    padding: 50px;
    margin-top: 75px;
}

main .main-wrapper {
    margin-top: 75px;
    padding: 30px 50px;
}

main .content-side {
    padding: 20px;
    overflow-y: auto;
}

main .editor-side {
    overflow-y: auto;
    background-color: var(--bg-color2);
}

main .editor-side .editor-header {
    background-color: var(--bg-color3);
    position: sticky;
    top: 0;
    z-index: 1;
}

main .editor-side .editor-header .editor-title {
    color: var(--white);
    padding: 20px;
    border-bottom: 1px solid var(--border-color3);
}

main .editor-side .language-bash {
    border-radius: 0;
}

@media (min-width: 1200px) {
    .main-wrapper {
        display: flex;
    }

    .content-side {
        width: 50%;
        height: calc(100vh - 75px);
    }

    .editor-side {
        width: 50%;
        height: calc(100vh - 75px);
    }
}

@media (max-width: 991px) {
    .sidebar-section {
        left: -300px;
    }

    main {
        width: 100%;
    }

    .toggle-sidebar .sidebar-section {
        left: 0;
    }
}

@media (max-width: 575px) {
    main .main-wrapper {
        padding: 30px;
    }

    main .main-inner {
        padding: 20px;
    }
}

.rtl .sidebar-section .nav-area .nav-link i.first {
    margin-right: 0;
    margin-left: 5px;
}

.rtl .sidebar-section .nav-area .nav-link i.last {
    margin-left: 0;
    margin-right: auto;
}

.rtl .sidebar-section .nav-item .nav-content {
    margin-left: 0;
    margin-right: 30px;
}

.rtl .sidebar-section .nav-item .nav-content li a i {
    margin-right: 0;
    margin-left: 5px;
}

.rtl main {
    margin-left: 0;
    margin-right: auto;
}

.rtl .language-bash .docs-pre {
    padding: 0 30px 0 0;
}

.rtl .language-bash .line-numbers-rows {
    left: auto;
    right: 0;
    border-right: none;
    border-left: 1px solid #9e9e9e;
}

.rtl .language-bash .copy-code {
    right: auto;
    left: 15px;
}

/*----------------------------------------------
Docs end
----------------------------------------------*/
/*----------------------------------------------
17. Contact section start
----------------------------------------------*/
.contact-section {
    background-color: var(--bg-color1);
}

.contact-section .contact-inner {
    background-color: var(--white);
    border-radius: 20px;
    padding: 30px;
}

.contact-section .contact-message-area {
    padding: 20px;
}

.contact-section .contact-message-area .form-label {
    text-transform: capitalize;
}

.contact-section .contact-message-area .form-label h5 {
    font-weight: 600;
}

.contact-section .contact-area {
    height: 100%;
    padding: 20px;
    border-radius: 15px;
    background-color: var(--primary-color);
}

.contact-section .contact-area h3,
.contact-section .contact-area h6 {
    color: var(--white);
}

.contact-section .contact-area p {
    color: rgba(255, 255, 255, 0.75);
}

/*----------------------------------------------
Contact end
----------------------------------------------*/
/*----------------------------------------------
18. Login Signup section start
----------------------------------------------*/
.login-signup-page {
    background-color: var(--bg-color1);
}

.login-signup-page .login-signup-form {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
}

.login-signup-page .login-signup-form .cmn-btn {
    height: 45px;
}

.login-signup-page .login-signup-form .cmn-btn2 {
    height: 45px;
    border-radius: 5px;
}

.login-signup-page .login-signup-form .cmn-btn-group .btn img {
    margin-right: 5px;
    width: 16px;
}

.password-box {
    position: relative;
    display: flex;
    align-items: center;
}

.password-box .form-control {
    padding-right: 35px;
}

.password-box .password-icon {
    position: absolute;
    right: 15px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .login-signup-page {
        padding-top: 100px;
    }

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

@media (max-width: 575px) {
    .login-signup-page .login-signup-form {
        padding: 20px;
    }
}

.rtl .login-signup-page .login-signup-form .cmn-btn-group .btn img {
    margin-left: 5px;
    margin-right: 0;
}

.rtl .password-box .form-control {
    padding-right: 0.75rem;
    padding-left: 35px;
}

.rtl .password-box .password-icon {
    right: auto;
    left: 15px;
}

/*----------------------------------------------
Login Signup end
----------------------------------------------*/
/*----------------------------------------------
19. Blog details section start
----------------------------------------------*/
.blog-details-section .blog-details .thum-inner {
    position: relative;
}

.blog-details-section .blog-details .blog-image img {
    width: 100%;
    max-height: 490px;
    border-radius: 10px;
}

.blog-details-section .blog-details .blog-author {
    display: flex;
    align-items: center;
    margin: 30px 0 20px 0;
}

.blog-details-section .blog-details .blog-author .author-img {
    margin-right: 15px;
}

.blog-details-section .blog-details .blog-author .author-img img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.blog-details-section .blog-header {
    margin-bottom: 20px;
}

.blog-details-section .blog-header h3 {
    margin-bottom: 0;
}

.blog-details-section .blog-header span {
    margin-right: 15px;
}

.blog-details-section .blog-header span i {
    margin-right: 10px;
    color: var(--primary-color);
}

.blog-details-section .blog-widget-image {
    width: 30%;
}

.blog-details-section .blog-widget-content {
    margin-left: 15px;
    width: 70%;
}

.blog-details-section .blog-widget-content .blog-title {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    transition: all ease 0.3s;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
    line-height: 1.3;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.blog-details-section .categories-area {
    padding: 20px;
    background: var(--white);
    box-shadow: var(--shadow2);
    border-radius: 8px;
    margin-top: 20px;
}

.blog-details-section .categories-area .categories-header .categories-header {
    margin-bottom: 20px;
}

.blog-details-section .categories-area li {
    border-bottom: 1px solid var(--border-color2);
    padding: 10px 0;
}

.blog-details-section .categories-area li a {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.blog-details-section .categories-area li a:hover {
    color: var(--primary-color);
}

.blog-sidebar {
    padding: 15px;
    border-radius: 8px;
    background: var(--bg-color1);
}

.blog-sidebar .section-header {
    margin-bottom: 30px;
}

.blog-sidebar .input-group-search {
    margin-bottom: 30px;
}

.blog-sidebar .input-group-search .form-control {
    border: 1px solid transparent;
    background-color: var(--white);
}

.blog-sidebar input[type=text]:focus {
    border: 1px solid var(--primary-color);
}

.blog-sidebar .blog-widget-area .blog-widget-item {
    display: flex;
    margin: 20px 0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow2);
    background-color: var(--white);
    transition: var(--transition);
}

.blog-sidebar .blog-widget-area .blog-widget-item:hover .blog-widget-content .blog-title {
    color: var(--primary-color);
}

.blog-sidebar .blog-widget-image img {
    width: 100%;
    height: 85px;
    border-radius: 8px;
}

.blog-date {
    color: var(--primary-color);
    font-size: 14px;
}

.rtl .blog-details-section .blog-widget-content {
    margin-left: 0;
    margin-right: 15px;
}

.rtl .blog-details-section .blog-details .blog-author .author-img {
    margin-right: 0;
    margin-left: 15px;
}

.rtl .blog-details-section .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.rtl .blog-details-section .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.rtl .blog-details-section .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select,
.rtl .blog-details-section .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/*----------------------------------------------
Blog details end
----------------------------------------------*/
/*----------------------------------------------
20. Pagination section start
----------------------------------------------*/
.pagination-section {
    margin-top: 50px;
    display: flex;
    justify-content: end;
}

.pagination-section nav .pagination .page-item .page-link {
    margin: 5px;
    width: 40px;
    height: 40px;
    border-radius: 8px !important;
    color: var(--heading-color);
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color2);
    box-shadow: none;
}

.pagination-section nav .pagination .page-item .page-link:hover, .pagination-section nav .pagination .page-item .page-link:focus {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.pagination-section nav .pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.rtl .pagination-section nav .pagination .page-item .page-link i {
    transform: rotate(180deg);
}

/*----------------------------------------------
Pagination end
----------------------------------------------*/
/*----------------------------------------------
21. Error section start
----------------------------------------------*/
.error-section {
    height: 100vh;
    width: 100vw;
    background-color: var(--bg-color1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-section .error-content {
    color: var(--heading-color);
}

.error-section .error-content .error-title {
    font-size: 150px;
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1;
}

.error-section .error-content .error-info {
    font-size: 40px;
    line-height: 1.3;
}

.error-section .error-content .error-info.font-30 {
    font-size: 30px;
}

.error-section .error-content .btn-area {
    margin-top: 30px;
}

.error-section .error-content .btn-area .cmn-btn {
    text-transform: none;
}

@media (max-width: 991px) {
    .error-section {
        padding: 100px 0;
    }

    .error-section .error-content .error-title {
        font-size: 100px;
    }

    .error-section .error-content .error-info {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .error-section .error-content .error-title {
        font-size: 60px;
    }

    .error-section .error-content .error-info {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .error-section {
        height: 100%;
        width: 100%;
    }
}

/*----------------------------------------------
Error end
Error end
----------------------------------------------*/

.cmn-tabs2 {
    background-color: var(--bg-color3);
}

.editor-content-area {
    background-color: var(--bg-color2);
}

.editor-content-area .language-bash-inner {
    position: relative;
    height: 400px;
    overflow: auto;
}

.badge {
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 5px;
    padding: 3px;
    border-radius: 3px;
}

.badge.text-bg-info {
    color: var(--white) !important;
}

.badge.text-bg-success {
    color: var(--white) !important;
}

#Notiflix-Icon-Success,
#Notiflix-Icon-Failure,
#Notiflix-Icon-Warning,
#Notiflix-Icon-success,
#Notiflix-Icon-failure,
#Notiflix-Icon-warning {
    fill: #fff !important;
}

[v-cloak] {
    display: none;
}

.payment-section {
    background-color: var(--bg-color1);
}

.payment-section .section-title {
    margin-bottom: 20px;
}

.payment-section .btn-area {
    margin-top: 30px;
}

.payment-options {
    height: 260px;
    overflow-y: auto;
    overflow-x: hidden;
}

.payment-options .btn-check + .btn-primary {
    background: var(--bg-color1);
    border: 2px solid var(--border-color1);
    border-radius: 15px;
    padding: 8px;
    color: #212529;
    position: relative;
    transition: 0.4s;
}

.payment-options .btn-check + .btn-primary .check {
    position: absolute;
    left: 15px;
    top: 15px;
    opacity: 0;
    width: 18px;
}

.payment-options .btn-check + .btn-primary::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    top: 0;
    left: 0;
    border-radius: 15px;
}

.dark-theme .payment-options .btn-check + .btn-primary::after {
    background: rgb(0, 0, 0, 0.4);
}

.payment-options .btn-check:checked + .btn-primary .check {
    opacity: 1;
}

.payment-options .btn-check:checked + .btn-primary::after {
    background: none;
}

.payment-options label img {
    border-radius: 6px;
}

.payment-options .btn-check:checked + .btn-primary {
    border: 2px solid var(--primary-color) !important;
}

.payment-summary {
    padding: 20px;
    border-radius: 15px;
    background-color: var(--bg-color1);
    box-shadow: var(--bg-color2);
}

.payment-summary .summary-list li {
    display: flex;
    justify-content: space-between;
    padding: 7px;
    color: var(--heading-color);
}

.payment-summary .summary-list li:not(:last-child) {
    border-bottom: 1px solid var(--border-color1);
}

.wh-200-150 {
    width: 200px !important;
}

.payment-summary .summary-list li:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}

.fileinput .thumbnail {
    display: inline-block;
    margin-bottom: 5px;
    overflow: hidden;
    text-align: left !important;
    vertical-align: middle;
    max-width: 60%;
    max-height: 60%;
    position: relative;
}

.file-upload-top label {
    display: none;
}

.file-upload-top input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}

.info-box {
    border: 1px solid var(--border-color1);
    padding: 20px;
    box-shadow: var(--shadow2);
    border-radius: 5px;
}

.privacy-section {
    position: relative;
    background-image: url(../img/popular-bg.png);
    background-color: var(--bg-color1);
    background-color: var(--white);
    background-size: cover;
    background-position: center;

}

.privacy-section ul, ol {
    padding-left: 2rem;
}

.privacy-section ul {
    list-style: initial;
}

.privacy-section ol {
    list-style: decimal;
}


.privacy-section-inner {
    z-index: 1;
    position: relative;
}


/*---------------------------------------------- Payment section start -----------------------------------------------*/
.payment-container-list {
    margin-top: 20px;
    height: 480px;
    overflow: auto;
    padding: 5px;
}

.payment-container-list .item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.payment-container-list .form-check-label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 15px;
    cursor: pointer;
    box-shadow: var(--shadow2);
    border-radius: 5px;
    transition: var(--transition);
    gap: 15px;
}

.payment-container-list .form-check-label .image-area img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
}

.payment-container-list .form-check-label .content-area {
    max-width: 400px;
    padding-right: 30px;
}

.payment-container-list .form-check-input {
    position: absolute;
    right: 15px;
}

.payment-container-list .form-check-input[type=radio]:checked + .form-check-label {
    background-color: var(--primary-color-opacity-low);
}

.rtl .payment-container-list .form-check-label .content-area {
    padding-right: 0;
    padding-left: 30px;
}

.rtl .payment-container-list .form-check-input {
    left: 15px;
    right: auto;
}

/*---------------------------------------------- Payment section end -----------------------------------------------*/


/*---------------------------------------------------- Transfer section section start ----------------------------------------------------*/
.transfer-section {
    max-width: 560px;
    margin: auto;
}

.tab-section .nav-pills .nav-item {
    width: 50%;
}

.tab-section .nav-pills .nav-link {
    border-bottom: 1px solid var(--border-color2);
    border-radius: 0;
    width: 100%;
    font-size: 18px;
    color: var(--heading-color);
    transition: var(--transition);
}

.tab-section .nav-pills .nav-link.active {
    font-weight: 500;
    background-color: transparent;
    border-bottom: 2px solid var(--primary-color);
}

.transfer-details-section .link {
    color: var(--heading-color);
}

.transfer-list {
    padding: 15px;
    margin-bottom: 20px;
}

.transfer-list h5 {
    margin-bottom: 0;
}

.transfer-list .title:not(:last-child) {
    margin-bottom: 20px;
}

.transfer-list .item {
    display: flex;
    justify-content: space-between;
}

.transfer-list .item:not(:last-child) {
    margin-bottom: 10px;
}

/*---------------------------------------------------- Transfer section section end ----------------------------------------------------*/

.instruction-thumbs {
    border-radius: 10px;
    padding: 10px;
    background-color: var(--white);
    box-shadow: var(--shadow3);
}

.instruction-thumbs img {
    border-radius: 7px;
}

.prepaid-credit-box {
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--border-color1);
    background-color: var(--white);
}

.prepaid-credit-box .title {
    display: flex;
    gap: 8px;
}

.prepaid-credit-box .title i {
    font-size: 20px;
    color: var(--primary-color);
}

.cookies-alert {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    padding: 2rem;
    max-width: 360px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.06);
    text-align: center;
    z-index: 10;
}
