.sonny_progressbar {
    margin-bottom: 16px;
}

.sonny_progressbar p.title {
    font-size: 18px;
    line-height: 20px;
    margin: 0;
    padding: 10px 0;
}

.sonny_progressbar .bar-container {
    position: relative;
    height: 40px;
    border-radius: 25px;
}

.sonny_progressbar .bar-container.shadow {
    -moz-box-shadow: 0px 5px 7px -3px rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0px 5px 7px -3px rgba(0, 0, 0, .5);
    box-shadow: 0px 5px 7px -3px rgba(0, 0, 0, .5);
}

.sonny_progressbar .backgroundBar {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.sonny_progressbar .bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 25px;
}

.sonny_progressbar .targetBar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    -webkit-animation: Animation 2s infinite ease-in-out;
    -moz-animation: Animation 2s infinite ease-in-out;
    animation: Animation 2s infinite ease-in-out;
}

.sonny_progressbar .targetBar.loader {
    -webkit-animation: AnimationB 4s infinite ease-in-out;
    -moz-animation: AnimationB 4s infinite ease-in-out;
    animation: AnimationB 4s infinite ease-in-out;
    background-image: url("/assets/css/animated-overlay.gif");
}

.sonny_progressbar .bar-container.border .bar, .sonny_progressbar .bar-container.border .targetBar, .sonny_progressbar .bar-container.border .backgroundBar {
    border-bottom: 3px solid rgba(0, 0, 0, .2);
}

.sonny_progressbar .progress-percent {
    font-size: 20px;
    position: absolute;
    right: 15px;
    top: -24px;
}

@keyframes Animation {
    0% {
        opacity: .4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .4;
    }
}

@-moz-keyframes Animation {
    0% {
        opacity: .4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .4;
    }
}

@-webkit-keyframes Animation {
    0% {
        opacity: .4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .4;
    }
}

@keyframes AnimationB {
    0% {
        opacity: .01;
    }

    50% {
        opacity: .1;
    }

    100% {
        opacity: .01;
    }
}

@-moz-keyframes AnimationB {
    0% {
        opacity: .01;
    }

    50% {
        opacity: .1;
    }

    100% {
        opacity: .01;
    }
}

@-webkit-keyframes AnimationB {
    0% {
        opacity: .01;
    }

    50% {
        opacity: .1;
    }

    100% {
        opacity: .01;
    }
}

@charset "UTF-8";
:root {
    --primary: #eadfa9;
    --secondary: #2c2c2c;
    --black: #000;
    --black-2: #121212;
    --black-3: #555;
    --black-4: #1d1d1d;
    --black-5: #343434;
    --black-6: #262626;
    --black-7: #555555;
    --black-13: #666;
    --white: #fff;
    --white-2: #efefef;
    --white-3: #e9e9e9;
    --white-4: #f0f0f0;
    --white-5: #fbfbfb;
    --white-6: #d7d7d7;
    --gray: #c2c2c2;
    --gray-2: #999;
    --gray-3: #a8a8a8;
    --gray-4: #f6f6f6;
    --gray-5: #bbb;
    --gray-6: #2b2b2b;
    --gray-7: #b9b9b9;
    --gray-8: #8E8E8E;
    --gray-9: #aaa;
    --gray-10: #7c7c7c;
    --gray-11: #D9D9D9;
    --gray-12: #383838;
    --gray-13: #ccc;
    --gray-14: #dfdfdf;
    --gray-15: #C0C0C0;
    --pink: #FAEDE9;
    --pink-2: #FF9776;
    --pink-3: #F3ECEC;
    --pink-4: #FFFAF0;
    --pink-5: #E0E3CC;
    --bg-line: #1e1e1e;
    --d-gray: #6A6A6A;
    --d-black: #1A1A1A;
    --d-black-2: #171717;
    --d-black-3: #1A1A1A;
}

@font-face {
    font-family: newYork;
    src: url("/assets/fonts/newyork/FontsFree-Net-NewYork.ttf");
    font-weight: 400;
}

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

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .pb-100 {
        padding-bottom: 90px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .pb-100 {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-100 {
        padding-bottom: 60px;
    }
}

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

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .pb-110 {
        padding-bottom: 90px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .pb-110 {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-110 {
        padding-bottom: 60px;
    }
}

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

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .pb-120 {
        padding-bottom: 90px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .pb-120 {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-120 {
        padding-bottom: 60px;
    }
}

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

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .pb-130 {
        padding-bottom: 90px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .pb-130 {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-130 {
        padding-bottom: 60px;
    }
}

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

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .pb-140 {
        padding-bottom: 90px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .pb-140 {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-140 {
        padding-bottom: 60px;
    }
}

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

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .pb-150 {
        padding-bottom: 90px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .pb-150 {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-150 {
        padding-bottom: 60px;
    }
}

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

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .pb-200 {
        padding-bottom: 90px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .pb-200 {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-200 {
        padding-bottom: 60px;
    }
}

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

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

@media only screen and (max-width: 767px) {
    .pt-100 {
        padding-top: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .pt-100 {
        padding-top: 80px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .pt-100 {
        padding-top: 90px;
    }
}

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

@media only screen and (max-width: 767px) {
    .pt-110 {
        padding-top: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .pt-110 {
        padding-top: 80px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .pt-110 {
        padding-top: 90px;
    }
}

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

@media only screen and (max-width: 767px) {
    .pt-120 {
        padding-top: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .pt-120 {
        padding-top: 80px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .pt-120 {
        padding-top: 90px;
    }
}

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

@media only screen and (max-width: 767px) {
    .pt-130 {
        padding-top: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .pt-130 {
        padding-top: 80px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .pt-130 {
        padding-top: 90px;
    }
}

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

@media only screen and (max-width: 767px) {
    .pt-140 {
        padding-top: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .pt-140 {
        padding-top: 80px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .pt-140 {
        padding-top: 90px;
    }
}

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

@media only screen and (max-width: 767px) {
    .pt-150 {
        padding-top: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .pt-150 {
        padding-top: 80px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .pt-150 {
        padding-top: 90px;
    }
}

.sp-x {
    padding-left: 100px;
    padding-right: 100px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .sp-x {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .sp-x {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .sp-x {
        padding-left: 10px;
        padding-right: 10px;
    }
}

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

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

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .ht-200 {
        padding-top: 180px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .ht-200 {
        padding-top: 160px;
    }
}

@media only screen and (max-width: 767px) {
    .ht-200 {
        padding-top: 130px;
    }
}

@-webkit-keyframes wcRotate {
    0% {
        -webkit-transform: rotate(0deg) scale(1.1);
        transform: rotate(0deg) scale(1.1);
    }

    50% {
        -webkit-transform: rotate(5deg) scale(1.17);
        transform: rotate(5deg) scale(1.17);
    }

    100% {
        -webkit-transform: rotate(0deg) scale(1.1);
        transform: rotate(0deg) scale(1.1);
    }
}

@keyframes wcRotate {
    0% {
        -webkit-transform: rotate(0deg) scale(1.1);
        transform: rotate(0deg) scale(1.1);
    }

    50% {
        -webkit-transform: rotate(5deg) scale(1.17);
        transform: rotate(5deg) scale(1.17);
    }

    100% {
        -webkit-transform: rotate(0deg) scale(1.1);
        transform: rotate(0deg) scale(1.1);
    }
}

@-webkit-keyframes wcBubble {
    0% {
        scale: 1;
    }

    50% {
        scale: 1.5;
    }

    100% {
        scale: 1;
    }
}

@keyframes wcBubble {
    0% {
        scale: 1;
    }

    50% {
        scale: 1.5;
    }

    100% {
        scale: 1;
    }
}

@-webkit-keyframes wcZoom {
    0% {
        scale: 1;
    }

    50% {
        scale: 0.5;
    }

    100% {
        scale: 1;
    }
}

@keyframes wcZoom {
    0% {
        scale: 1;
    }

    50% {
        scale: 0.5;
    }

    100% {
        scale: 1;
    }
}

@-webkit-keyframes wcSlideBottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes wcSlideBottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes reveal {
    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }
}

@keyframes reveal {
    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }
}

@-webkit-keyframes wcfadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes wcfadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes wcSpinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes wcSpinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Kanit", sans-serif;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    position: relative;
    z-index: 1;
    padding: 0;
    margin: 0;
}

ul, ol {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
    position: relative;
    z-index: 1;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

button {
    background-color: transparent;
    border: 0;
}

p {
    padding: 0;
    margin: 0;
    font-style: normal;
    line-height: 1.5;
    font-weight: 400;
    font-size: 16px;
    color: var(--black-3);
    position: relative;
    z-index: 1;
}

video, iframe, img {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.line {
    position: relative;
}

.line::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--white-4);
}

.line::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    left: calc(50% - 1px);
    top: 0;
    background: var(--white-4);
}

.line-3 {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
    background: var(--white-4);
}

.shape {
    position: absolute;
    left: -90px;
    bottom: -350px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .shape {
        left: 200%;
        bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    .shape {
        left: 70%;
        bottom: 0;
    }
}

.shape .primary {
    width: 54px;
    height: 56px;
    background-color: var(--primary);
    margin-top: -37px;
    margin-left: 24px;
}

.shape .secondary {
    width: 53px;
    height: 56px;
    background-color: var(--secondary);
}

.pos-inherit {
    position: inherit;
}

@media only screen and (max-width: 767px) {
    .g-0 {
        padding-right: 15px;
        padding-left: 15px;
    }

    br {
        display: none;
    }
}

.sec-title-wrapper {
    position: relative;
    z-index: 9;
}

.footer-line {
    position: relative;
}

.footer-line::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 500px;
    left: 0;
    bottom: -400px;
    background: var(--white-4);
}

@media (max-width: 1023px) {
    .footer-line::after {
        height: 0;
    }
}

.scroll-top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9991;
    border-radius: 100px;
    color: var(--white);
    background: var(--white);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: none;
    mix-blend-mode: exclusion;
}

.scroll-top i {
    font-size: 18px;
    color: var(--black-2);
}

.scroll-top:hover {
    color: var(--gray-2);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .scroll-top {
        bottom: 80px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .scroll-top {
        right: 10px;
        bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .scroll-top {
        right: 5px;
        bottom: 55px;
    }
}

.logo-light {
    display: none;
}

.logo-dark {
    display: block;
}

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

.dark {
    background-color: var(--black-2);
}

.dark .logo-light {
    display: block;
}

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

.dark .portfolio__page section {
    margin-top: 0;
}

.dark .portfolio__page .wc-btn-dark:hover {
    color: var(--black-2);
    background-color: var(--white);
    border-color: var(--white);
}

.dark .wc-btn-primary, .dark .wc-btn-black, .dark .wc-btn-light, .dark .wc-btn-pink, .dark .wc-btn-secondary {
    border-color: var(--secondary);
    color: var(--gray-2);
}

.dark .wc-btn-black:hover {
    border-color: var(--white);
    color: var(--black-2);
}

.dark .wc-btn-black:hover span {
    background-color: var(--white);
}

.dark .line::before, .dark .line::after, .dark .line-3 {
    background-color: var(--bg-line);
}

.dark p {
    color: var(--gray-2);
}

.dark .sec-title, .dark .sec-title-2, .dark .sec-title-3, .dark .sec-sub-title {
    color: var(--white);
}

.dark .main-dropdown {
    background-color: var(--white);
}

.dark .main-dropdown .sub-dropdown {
    background-color: var(--white);
}

.dark .main-dropdown li a {
    color: var(--black-2) !important;
}

.dark .main-dropdown li a .menu-text {
    text-shadow: 0 16px 0 var(--black-2) !important;
}

.dark .main-dropdown li a:hover {
    letter-spacing: 1px;
}

.dark .mega-menu, .dark .mega-menu-2 {
    background-color: var(--white);
}

.dark .mega-menu a:not([href]), .dark .mega-menu-2 a:not([href]), .dark .mega-menu a:not([href]):hover {
    color: var(--black-2) !important;
}

.dark .mega-menu li a, .dark .mega-menu-2 li a {
    color: var(--black-2) !important;
}

.dark .mega-menu li a .menu-text, .dark .mega-menu-2 li a .menu-text {
    text-shadow: 0 16px 0 var(--black-2) !important;
}

.dark .mega-menu li a:hover, .dark .mega-menu-2 li a:hover {
    letter-spacing: 1px;
}

.dark .header__area-3.sticky-3 {
    background-color: var(--black-2);
    border-color: var(--secondary);
}

.dark .header__area-5.sticky-5 {
    background-color: var(--black-2);
    border-color: var(--secondary);
}

.dark .hero__area-3 {
    background-color: var(--d-black-2);
}

.dark .hero__area-3::before {
    -webkit-filter: invert(0.9);
    filter: invert(0.9);
}

.dark .hero__area-3 .sec-sub-title, .dark .hero__area-3 .sec-title, .dark .hero__area-3 .intro-title .video-title {
    color: var(--white);
}

.dark .hero__area-3 .scroll-down img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .hero__area-3 .sec-sub-title::after {
    background-color: var(--white);
}

.dark .hero__area-5 {
    background-color: var(--black-2);
}

.dark .hero__area-5 img {
    -webkit-filter: invert(0);
    filter: invert(0);
}

.dark .hero__title-5, .dark .hero__content-5 p {
    color: var(--white);
}

.dark .hero-title {
    color: var(--white);
}

.dark .hero__inner-3 .video-intro-title {
    color: var(--gray-2);
}

.dark .hero__inner-3 .video-intro-title span {
    color: var(--white);
}

.dark .hero__about {
    background-color: var(--d-black-2);
    background-blend-mode: color-burn;
}

.dark .hero__about-award::before {
    background-color: var(--secondary);
}

.dark .hero__about-award img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .about__area {
    background: var(--black-2);
}

.dark .about__area .sec-title {
    color: var(--white);
}

.dark .about__area-2 {
    background-color: var(--d-black-2);
}

.dark .about__content p {
    color: var(--gray-2);
}

.dark .counter__area {
    background-color: var(--black-2);
}

@media (max-width: 1200px) {
    .dark .counter__area-3 {
        background-color: var(--black-2);
    }
}

.dark .counter__area-3 .counter__number {
    color: var(--white);
}

.dark .counter__about {
    background-color: var(--d-black-2);
}

.dark .counter__number {
    color: var(--white);
}

.dark .counter__item {
    border-color: var(--secondary);
}

.dark .counter__item::before {
    background-color: transparent;
}

.dark .counter__item::after {
    background-color: transparent;
}

.dark .counter__img-3 img {
    -webkit-filter: contrast(0.5);
    filter: contrast(0.5);
}

.dark .workflow__area {
    background-color: var(--black-2);
}

.dark .workflow__area .sec-title {
    color: var(--white);
}

.dark .workflow__area-3 {
    background-color: var(--black-2);
}

.dark .workflow__area-6 {
    background-color: var(--d-black-2);
}

.dark .workflow__slide::before {
    background-color: var(--bg-line);
}

.dark .workflow__slide::after {
    border-color: var(--black-2);
}

.dark .workflow__wrapper-6 {
    border-color: var(--secondary);
}

.dark .workflow__number {
    color: var(--d-black-3);
}

.dark .workflow__title {
    color: var(--white);
}

.dark .workflow__title-6 {
    color: var(--white);
}

.dark .workflow__step {
    color: var(--white);
}

.dark .brand__area {
    background-color: var(--black-2);
}

.dark .brand__area .sec-title {
    color: var(--white);
}

.dark .brand__about {
    background-color: var(--d-black-2);
}

.dark .brand__title-3 {
    color: var(--white);
}

.dark .brand__list, .dark .brand__list-3, .dark .brand__list-2 {
    background-color: transparent;
    border-color: var(--bg-line);
}

.dark .brand__item {
    border-color: var(--bg-line);
}

.dark .service__area {
    background-color: var(--d-black-2);
}

.dark .service__area-2 {
    background-color: var(--black-2);
}

.dark .service__area-2.service-v3 {
    background-color: var(--d-black-2);
}

.dark .service__area-2 .sec-text p {
    color: var(--white);
}

.dark .service__area-3 {
    background-color: var(--d-black-2);
}

.dark .service__area-3 .sec-title-wrapper::after {
    background-color: var(--secondary);
}

.dark .service__area-3 .sec-sub-title {
    background-color: var(--d-black-2);
}

.dark .service__area-3 .sec-title {
    background-color: var(--d-black-2);
}

.dark .service__area-6 {
    background-color: var(--d-black-2);
}

.dark .service__item-2::before {
    background-color: var(--secondary);
}

.dark .service__item-2 p, .dark .service__item-2 ul li {
    color: var(--gray-2);
}

.dark .service__item-3, .dark .service__item-3:first-child {
    border-color: var(--secondary);
}

.dark .service__title-3:hover, .dark .service__title-2, .dark .service__title-3 {
    color: var(--white);
}

.dark .service__content-3 ul li {
    color: var(--gray-2);
}

.dark .service__content-3 p {
    color: var(--white);
}

.dark .service__detail {
    background-color: var(--d-black-2);
}

.dark .service-v4.pb-150 {
    padding-bottom: 150px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dark .service-v4.pb-150 {
        padding-bottom: 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dark .service-v4.pb-150 {
        padding-bottom: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .dark .service-v4.pb-150 {
        padding-bottom: 60px;
    }
}

.dark .portfolio__area {
    background-color: var(--d-black-2);
}

.dark .portfolio__area-2 {
    background-color: var(--black-2);
}

.dark .portfolio__area-2::after {
    background: var(--secondary);
}

.dark .portfolio__area-5 {
    background-color: var(--black-2);
    border-color: var(--secondary);
}

.dark .portfolio__area-5::before, .dark .portfolio__area-5::after, .dark .portfolio__area-5 .sec-line-1, .dark .portfolio__area-5 .sec-line-2 {
    -webkit-filter: invert(0);
    filter: invert(0);
}

.dark .portfolio__area-6 {
    background-color: var(--black-2);
}

.dark .portfolio__area-6 .pb-140 {
    padding-bottom: 0;
}

.dark .portfolio__area-6 .sec-title-wrapper p::before {
    background-color: var(--white);
}

.dark .portfolio-v4 {
    background-color: var(--d-black-2);
}

.dark .portfolio__slider-2::after {
    background: var(--secondary);
}

.dark .portfolio__slider-2-pagination .swiper-pagination-bullet {
    border-color: var(--secondary);
}

.dark .portfolio__slider-2-pagination .swiper-pagination-bullet::after {
    background-color: var(--secondary);
}

.dark .portfolio__slider-2-pagination .swiper-pagination-bullet-active, .dark .portfolio__slider-2-pagination .swiper-pagination-bullet:hover {
    border-color: var(--white);
}

.dark .portfolio__slider-2-pagination .swiper-pagination-bullet-active::after, .dark .portfolio__slider-2-pagination .swiper-pagination-bullet:hover::after {
    background-color: var(--white);
}

.dark .portfolio__slide-2 {
    background-color: var(--black-2);
}

.dark .portfolio__slide-2 .sec-title a {
    color: var(--white);
}

.dark .portfolio__slide-2 .btn-common {
    color: var(--gray);
}

.dark .portfolio__slide-2 .btn-common:hover {
    color: var(--white);
}

.dark .portfolio__detail {
    background-color: var(--black-2);
}

.dark .portfolio__detail-info ul li {
    color: var(--gray-2);
}

.dark .portfolio__detail-info ul li a, .dark .portfolio__detail-info ul li span {
    color: var(--gray-2);
}

.dark .portfolio__detail-title {
    color: var(--white);
}

.dark .portfolio__detail-text p, .dark .portfolio__detail-text li {
    color: var(--gray-2);
}

.dark .portfolio__detail-text .fonts img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .portfolio__detail-text .fonts ul .semibold, .dark .portfolio__detail-text .fonts ul .medium {
    color: var(--gray-2);
}

.dark .portfolio__title-6, .dark .portfolio__current {
    color: var(--white);
}

.dark .portfolio__date, .dark .portfolio__pagination-6 {
    color: var(--gray-2);
}

.dark .portfolio__project {
    background-color: var(--black-2);
}

.dark .portfolio__project::after {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .portfolio__project .pp-title, .dark .portfolio__project .pp-slide-title, .dark .portfolio__project .swipper-btn {
    color: var(--white);
}

.dark .portfolio__project .pp-slide-thumb p {
    color: var(--gray-2);
}

.dark .portfolio__project .pp-prev::after, .dark .portfolio__project .pp-next::after {
    background-color: var(--white);
}

.dark .portfolio__footer {
    border-color: var(--secondary);
}

.dark .portfolio__footer-area {
    background-color: var(--black-2);
    background-blend-mode: overlay;
}

.dark .portfolio__footer-area::before {
    -webkit-filter: invert(0.8);
    filter: invert(0.8);
}

.dark .portfolio__footer-area::after {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .portfolio__footer-area .pf-title, .dark .portfolio__footer-area .pf-contact h3, .dark .portfolio__footer-area .pf-contact ul li a, .dark .portfolio__footer-area .pf-social ul li a {
    color: var(--white);
}

.dark .portfolio__footer-area .pf-social ul li a:hover {
    color: var(--black-2);
    background-color: var(--white);
}

.dark .portfolio__service {
    background-color: var(--d-black-2);
    background-blend-mode: overlay;
}

.dark .portfolio__service .sec-text, .dark .portfolio__service-item {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .portfolio__service .ps-btn a {
    color: var(--white);
    border-color: var(--white);
}

.dark .portfolio__hero .title {
    color: var(--white);
}

.dark .portfolio__hero .title.text-stroke {
    -webkit-text-stroke: 1px var(--white);
}

.dark .portfolio__hero .title.shape-circle::after {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .portfolio__hero-area {
    background-color: var(--black-2);
}

.dark .portfolio__hero-area::after {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .portfolio__about {
    background-color: var(--d-black-2);
}

.dark .portfolio__about::after {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .portfolio__about .sec-text p {
    color: var(--gray-2);
}

.dark .portfolio__about .sec-title span::before {
    background-color: var(--white);
}

.dark .portfolio__about-left img {
    -webkit-filter: invert(0.5);
    filter: invert(0.5);
}

.dark .portfolio__about .brand-title {
    color: var(--gray-2);
}

.dark .portfolio__about .about-row, .dark .portfolio__about .brand-title-wrap {
    border-color: var(--secondary);
}

.dark .wc-btn-dark {
    color: var(--white);
    border-color: var(--white);
}

.dark .testimonial__area {
    background-color: var(--black-2);
}

.dark .testimonial__area .sec-title {
    color: var(--white);
}

.dark .testimonial__area-2 {
    background-color: var(--d-black-2);
}

.dark .testimonial__area-3 {
    background-color: var(--d-black-2);
    background-image: none;
}

.dark .testimonial__area-3 p::before {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .testimonial__pagination .next-button, .dark .testimonial__pagination .prev-button {
    border-color: var(--secondary);
}

.dark .testimonial__pagination .next-button i, .dark .testimonial__pagination .prev-button i {
    color: var(--secondary);
}

.dark .testimonial__pagination .next-button:hover, .dark .testimonial__pagination .prev-button:hover {
    border-color: var(--white);
}

.dark .testimonial__pagination .next-button:hover i, .dark .testimonial__pagination .prev-button:hover i {
    color: var(--white);
}

.dark .testimonial__title, .dark .testimonial__title-2, .dark .testimonial__author {
    color: var(--white);
}

.dark .testimonial__img.b-right::after {
    border-color: var(--secondary);
    z-index: 0;
}

.dark .testimonial__img.b-left::before {
    border-color: var(--bg-line);
    z-index: 1;
}

.dark .testimonial__role {
    color: var(--gray-2);
}

.dark .testimonial__slide-3 p {
    color: var(--white);
}

.dark .testimonial__inner-2 {
    background-color: var(--d-black-2);
}

.dark .testimonial__slider-3 .swipper-btn:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-color: var(--white);
}

.dark .client__name-3 {
    color: var(--white);
}

.dark .client__role-3 {
    color: var(--gray-2);
}

.dark .blog__area {
    background-color: var(--black-2);
}

.dark .blog__area.no-pb {
    margin-bottom: -150px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dark .blog__area.no-pb {
        margin-bottom: -90px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dark .blog__area.no-pb {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dark .blog__area.no-pb {
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dark .blog__area .pb-140 {
        padding-bottom: 80px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dark .blog__area .pb-140 {
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dark .blog__area .pb-140 {
        padding-bottom: 0;
    }
}

.dark .blog__area-2, .dark .blog__area-6 {
    background-color: var(--d-black-2);
}

.dark .blog__area .sec-title {
    color: var(--white);
}

.dark .blog__area-3 {
    background-color: var(--d-black-2);
}

.dark .blog__area-3 .sec-sub-title, .dark .blog__area-3 .sec-title {
    background-color: var(--d-black-2);
}

.dark .blog__area-3 .sec-title-wrapper::after {
    background-color: var(--secondary);
}

.dark .blog__info-3 {
    background-color: var(--d-black-2);
}

.dark .blog__title, .dark .blog__title-3, .dark .blog__title-2 {
    color: var(--white);
    border-color: var(--secondary);
}

.dark .blog__title:hover, .dark .blog__title-3:hover, .dark .blog__title-2:hover {
    color: var(--gray-2);
}

.dark .blog__btn {
    color: var(--gray-2);
}

.dark .blog__btn:hover {
    color: var(--white);
}

.dark .blog__meta, .dark .blog__meta-2 {
    color: var(--gray-2);
}

.dark .blog__meta a, .dark .blog__meta-2 a {
    color: var(--gray-2);
}

.dark .blog__meta a:hover, .dark .blog__meta-2 a:hover {
    color: var(--white);
}

.dark .blog__detail {
    background-color: var(--d-black-2);
}

.dark .blog__detail-title, .dark .blog__detail-date {
    color: var(--white);
}

.dark .blog__detail-date span, .dark .blog__detail ul li {
    color: var(--gray-2);
}

.dark .blog__detail-tags p {
    color: var(--white);
}

.dark .blog__detail-tags p a {
    color: var(--gray-2);
}

.dark .blog__detail-content h1, .dark .blog__detail-content h2, .dark .blog__detail-content h3, .dark .blog__detail-content h4, .dark .blog__detail-content h5, .dark .blog__detail-content h6 {
    color: var(--white);
}

.dark .blog__detail-meta p span {
    color: var(--gray-2);
}

.dark .blog__related {
    background-color: var(--d-black-2);
}

.dark .team__area {
    background-color: var(--d-black-2);
}

.dark .team__area-6 {
    background-color: var(--black-2);
    background-blend-mode: color-burn;
}

.dark .team__about {
    background-color: var(--black-2);
}

.dark .team__btm {
    background-color: var(--black-2);
}

.dark .team__join-btn {
    background-color: var(--d-black-2);
}

.dark .team__member-name-6, .dark .team__member-name-7 {
    color: var(--white);
}

.dark .team__member-role-6, .dark .team__member-role-7 {
    color: var(--gray-2);
}

.dark .team__member-role-7 span {
    color: var(--white);
}

.dark .team__member-role-7::after {
    background-color: var(--white);
}

.dark .team__member-work li a {
    color: var(--white);
}

.dark .team__member-work li a:hover {
    color: var(--black-2);
    background-color: var(--white);
}

.dark .team__member-social li a:hover {
    color: var(--white);
}

.dark .team__detail {
    background-color: var(--black-2);
}

.dark .team__detail.pb-140 {
    padding-bottom: 60px;
}

.dark .team__detail-page .line-1, .dark .team__detail-page .line-2, .dark .team__detail-page .line-3 {
    background: var(--bg-line);
}

.dark .team__detail .work-title {
    color: var(--white);
}

.dark .cta__area {
    background-color: var(--black-2);
}

.dark .cta__area .line {
    padding-top: 150px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dark .cta__area .line {
        padding-top: 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dark .cta__area .line {
        padding-top: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .dark .cta__area .line {
        padding-top: 60px;
    }
}

.dark .cta__area .line.no-p {
    padding-top: 100px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dark .cta__area .line.no-p {
        padding-top: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .dark .cta__area .line.no-p {
        padding-top: 60px;
    }
}

.dark .cta__area .dark-p {
    padding-top: 150px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dark .cta__area .dark-p {
        padding-top: 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dark .cta__area .dark-p {
        padding-top: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .dark .cta__area .dark-p {
        padding-top: 60px;
    }
}

.dark .cta__area-2 {
    background-color: var(--black-2);
}

.dark .cta__area-2 .wc-btn-pink {
    color: var(--gray-2);
}

.dark .cta__area-3 {
    background-color: var(--d-black-2);
}

.dark .cta__area-5 {
    background-color: var(--black-2);
    -webkit-filter: invert(0);
    filter: invert(0);
    margin: 0;
}

.dark .cta__title {
    color: var(--white);
}

.dark .cta__title-2 {
    color: var(--white);
}

.dark .cta__sub-title {
    color: var(--white);
}

@media only screen and (max-width: 767px) {
    .dark .cta__content {
        padding-top: 0px;
    }
}

.dark .footer__area {
    background-color: var(--black-2);
}

.dark .footer__area-2 {
    background-color: var(--black-2);
    background-blend-mode: multiply;
    background-position: 100% 1px;
}

.dark .footer__area-5 {
    background-color: var(--black-2);
}

.dark .footer__inner {
    background-color: var(--d-black-2);
}

.dark .footer__middle-2 {
    border-color: var(--secondary);
}

.dark .footer__subscribe-2::before {
    background-color: var(--secondary);
}

.dark .footer__subscribe-2 input {
    color: var(--white);
    border-color: var(--white);
    background-color: transparent;
}

.dark .footer__subscribe-2 input::-webkit-input-placeholder {
    color: var(--white);
}

.dark .footer__subscribe-2 input::-moz-placeholder {
    color: var(--white);
}

.dark .footer__subscribe-2 input:-ms-input-placeholder {
    color: var(--white);
}

.dark .footer__subscribe-2 input::-ms-input-placeholder {
    color: var(--white);
}

.dark .footer__subscribe-2 input::placeholder {
    color: var(--white);
}

.dark .footer__subscribe-2 img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .footer-menu li a, .dark .footer-menu-2 li a {
    color: var(--white);
}

.dark .footer-menu li a .menu-text, .dark .footer-menu-2 li a .menu-text {
    text-shadow: 0 16px 0 var(--white);
}

.dark .footer__copyright-2 p a {
    color: var(--white);
}

.dark .footer__copyright-4 a {
    color: var(--white);
}

.dark .footer-line::after {
    background: var(--bg-line);
}

.dark .footer__location-2 .location h3 {
    color: var(--white);
}

.dark .feature__area-2 {
    background-color: var(--d-black-2);
}

.dark .feature__top {
    border-color: var(--secondary);
}

.dark .feature__item {
    border-color: var(--secondary);
}

.dark .feature__item:nth-child(odd) {
    border-color: var(--secondary);
}

.dark .feature__item img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .feature__item p {
    color: var(--gray-2);
}

.dark .feature__title {
    color: var(--white);
}

.dark .feature__text p {
    color: var(--white);
}

.dark .award__area {
    background-color: var(--d-black-2);
}

.dark .main-menu-3 li a {
    color: var(--white);
}

.dark .main-menu .mega-menu li a, .dark .main-menu .mega-menu-2 li a, .dark .main-menu-4 .mega-menu li a, .dark .main-menu-4 .mega-menu-2 li a {
    color: var(--black-2);
}

.dark .header__nav-icon-3 button {
    color: var(--white);
}

.dark .header__nav-icon-3 img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .choose-title {
    color: var(--white);
}

.dark .research__area {
    background-color: var(--d-black-2);
    background-blend-mode: exclusion;
}

@media (max-width: 1200px) {
    .dark .research__area {
        background-color: var(--black-2);
        padding-bottom: 0;
    }
}

.dark .research__area .sec-sub-title, .dark .research__area .sec-title-wrapper p {
    color: var(--white);
}

@media only screen and (max-width: 767px) {
    .dark .research__list {
        padding-bottom: 0;
    }
}

.dark .research__item p, .dark .research__number span, .dark .research__title {
    color: var(--white);
}

.dark .research__tools li a {
    color: var(--white);
    border-color: var(--white);
}

.dark .research__tools li a:hover {
    color: var(--black-2);
    background-color: var(--white);
}

.dark .price__area {
    background-color: var(--black-2);
}

.dark .price__item:first-child {
    background-color: var(--d-black-2);
}

.dark .story__area {
    background-color: var(--d-black-2);
}

.dark .story__area .line {
    padding-bottom: 120px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dark .story__area .line {
        padding-bottom: 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dark .story__area .line {
        padding-bottom: 90px;
    }
}

.dark .story__text p {
    color: var(--gray-2);
}

.dark .error__page {
    background-color: var(--d-black-2);
}

.dark .error__content h2 {
    color: var(--white);
}

.dark .error__content img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .career__top {
    background-color: var(--black-2);
}

.dark .career__gallery {
    background-color: var(--black-2);
}

.dark .career__gallery ul li {
    color: var(--white);
}

.dark .career__gallery ul li::after {
    background-color: var(--white);
}

.dark .career__gallery p {
    color: var(--gray-2);
}

.dark .career__benefits {
    background-color: var(--black-2);
}

.dark .career__benefits-list li {
    color: var(--white);
    border-color: var(--bg-line);
}

.dark .contact__area-6 {
    background-color: var(--black-2);
}

.dark .contact__form input::-webkit-input-placeholder, .dark .contact__form textarea::-webkit-input-placeholder {
    color: var(--white);
    border-color: var(--bg-line);
}

.dark .contact__form input::-moz-placeholder, .dark .contact__form textarea::-moz-placeholder {
    color: var(--white);
    border-color: var(--bg-line);
}

.dark .contact__form input:-ms-input-placeholder, .dark .contact__form textarea:-ms-input-placeholder {
    color: var(--white);
    border-color: var(--bg-line);
}

.dark .contact__form input::-ms-input-placeholder, .dark .contact__form textarea::-ms-input-placeholder {
    color: var(--white);
    border-color: var(--bg-line);
}

.dark .contact__form textarea, .dark .contact__form input, .dark .contact__form input::placeholder, .dark .contact__form textarea::placeholder {
    color: var(--white);
    border-color: var(--bg-line);
}

.dark .contact__form textarea:focus, .dark .contact__form input:focus {
    border-color: var(--white);
}

.dark .contact__info h3, .dark .contact__info ul li span, .dark .contact__info ul li a {
    color: var(--white);
}

.dark .faq__area {
    background-color: var(--d-black-2);
}

.dark .faq__area-6 {
    background-color: var(--black-2);
}

.dark .faq__btm {
    background-color: var(--black-2);
}

.dark .faq__list .accordion-button, .dark .faq__list-3 .accordion-button, .dark .faq__list-6 .accordion-button {
    color: var(--white);
}

.dark .faq__title {
    color: var(--white);
}

.dark .faq__list .accordion-item, .dark .faq__list-6 .accordion-item, .dark .faq__list-3 .accordion-item {
    background-color: transparent;
}

.dark .faq__list-3 .accordion-item {
    border-color: var(--bg-line);
}

.dark .faq__list-3 .accordion-item:first-child {
    border-color: var(--bg-line);
}

.dark .accordion-item {
    background-color: var(--black-2);
    border-color: var(--bg-line);
}

.dark .service__faq .accordion-item {
    background-color: var(--d-black-2);
}

.dark .job__detail {
    background-color: var(--black-2);
}

.dark .job__detail-top {
    background-color: var(--d-black-2);
}

.dark .job__detail-content {
    border-color: var(--bg-line);
}

.dark .job__detail-content ul li {
    color: var(--gray-2);
}

.dark .job__detail-content h1, .dark .job__detail-content h2, .dark .job__detail-content h3, .dark .job__detail-content h4, .dark .job__detail-content h5, .dark .job__detail-content h6 {
    color: var(--white);
}

.dark .job__detail-meta li {
    color: var(--gray-2);
}

.dark .job__detail-sidebar {
    background-color: var(--d-black-2);
}

.dark .job__detail-sidebar ul li {
    color: var(--gray-2);
}

.dark .development__area {
    background-color: var(--d-black-2);
}

.dark .development__wrapper ul li {
    color: var(--gray-2);
}

.dark .development__content {
    border-color: var(--secondary);
}

.dark .solution__area {
    background-color: var(--black-2);
}

.dark .solution__title {
    color: var(--white);
}

.dark .solution__mid p {
    color: var(--gray-2);
}

.dark .solution__mid p::before {
    background-color: var(--white);
}

.dark .solution__btm li {
    color: var(--white);
}

.dark .solution__img-1::after, .dark .solution__img-2::after, .dark .solution__img-3::after {
    border-color: var(--secondary);
    z-index: 0;
}

.dark .solution__shape .shape-5 {
    z-index: 0;
}

.dark .solution__shape .shape-2 {
    -webkit-filter: invert(1);
    filter: invert(1);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dark .solution__shape .shape-4 {
        top: 55%;
    }
}

.dark .modal__apply {
    background-color: var(--d-black-2);
}

.dark .modal__apply .input-apply p, .dark .modal__apply .form-top p {
    color: var(--white);
}

.dark .modal__apply .input-apply-2 p, .dark .modal__apply .input-apply-2 input[type=file] {
    color: var(--white);
}

.dark .modal__apply .form-top img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .modal .close_btn-2:hover {
    color: var(--white);
}

.dark .modal__close-2:hover {
    color: var(--white);
}

.dark .menu-text-5 {
    color: var(--white);
}

.dark .circle-pagination button.swiper-pagination-bullet {
    border-color: var(--white);
}

.dark .circle-pagination button.swiper-pagination-bullet span {
    background-color: var(--white);
}

.dark .circle-pagination .circle-origin {
    stroke: var(--white);
}

.dark .circle-pagination-2 .swiper-pagination-bullet {
    border-color: var(--white);
}

.dark .circle-pagination-2 .swiper-pagination-bullet::after {
    background-color: var(--white);
}

.dark .bg-white {
    background-color: var(--black-2) !important;
}

.dark .main-menu-3 li a .menu-text {
    text-shadow: 0 16px 0 var(--white);
}

.dark .header__nav-icon-5 img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .menu-text-pp {
    color: var(--white);
}

.dark .job__area {
    background-color: var(--d-black-2);
}

.dark .portfolio__area-5 .sec-line {
    background-color: #D3D3D3;
}

.dark .modal__apply .input-apply textarea, .dark .modal__apply .input-apply-2 input {
    color: var(--white);
    background-color: var(--d-black-2);
    border-color: var(--black-3);
}

.dark .modal__apply .input-apply textarea:focus, .dark .modal__apply .input-apply-2 input:focus {
    border-color: var(--white);
}

.dark .error__content::before {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .sticky-2 .header__nav-icon-5 {
    -webkit-filter: invert(0);
    filter: invert(0);
}

.dark .footer__menu-5 li a .menu-text {
    text-shadow: 0 16px 0 var(--white);
}

.dark .hero__area-3::after {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .service__hero-2 {
    background-color: var(--black-2);
    background-image: none;
}

.dark .service__hero-2 .shape-1 {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .service__hero-right-2 .title {
    color: var(--white);
}

.dark .service__hero-right-2 .scroll {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.wc-btn-primary, .wc-btn-black, .wc-btn-light, .wc-btn-pink, .wc-btn-secondary {
    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;
    width: 170px;
    height: 170px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    text-transform: capitalize;
    color: var(--black-3);
    border: 1px solid var(--gray);
    border-radius: 100%;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (max-width: 767px) {
    .wc-btn-primary, .wc-btn-black, .wc-btn-light, .wc-btn-pink, .wc-btn-secondary {
        padding: 30px;
    }
}

.wc-btn-primary:hover, .wc-btn-black:hover, .wc-btn-light:hover, .wc-btn-pink:hover, .wc-btn-secondary:hover {
    color: var(--black-2);
    border: 1px solid var(--primary);
}

.wc-btn-primary:hover span, .wc-btn-black:hover span, .wc-btn-light:hover span, .wc-btn-pink:hover span, .wc-btn-secondary:hover span {
    width: 350px;
    height: 350px;
}

.wc-btn-primary i, .wc-btn-black i, .wc-btn-light i, .wc-btn-pink i, .wc-btn-secondary i {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    padding-left: 5px;
}

.wc-btn-primary span, .wc-btn-black span, .wc-btn-light span, .wc-btn-pink span, .wc-btn-secondary span


{
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    left: 0;
    top: 0;
    background-color: var(--primary);
    z-index: -1;
    border-radius: 100%;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
/* farraj */
.wc-btn-primary{
    background-color:var(--primary);
    border: 1px solid var(--primary);
    /* color: #fff; */
}

.wc-btn-secondary {
    border: 1px solid var(--secondary);
    color: var(--gray-2);
}

.wc-btn-pink {
    border: 1px solid var(--secondary);
    color: var(--gray-2);
}

.wc-btn-pink:hover {
    border-color: var(--pink-2);
}

.wc-btn-pink span {
    background-color: var(--pink-2);
}

.wc-btn-light {
    border: 1px solid var(--secondary);
    color: var(--gray-2);
}

.wc-btn-light:hover {
    border-color: var(--white);
}

.wc-btn-light span {
    background-color: var(--white);
}

.wc-btn-black:hover {
    color: var(--white);
    border-color: var(--black-2);
}

.wc-btn-black span {
    background-color: var(--black-2);
}

.wc-btn-dark {
    display: inline-block;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
    color: var(--black-2);
    border: 1.3px solid var(--black-2);
    border-radius: 33px;
    padding: 20px 54px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.wc-btn-dark:hover {
    color: var(--black-2);
    background-color: var(--white);
    border-color: var(--white);
}

.btn_wrapper, #btn_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 250px;
    width: 250px;
    border-radius: 100%;
    margin-left: -40px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .btn_wrapper, #btn_wrapper {
        width: 220px;
        height: 220px;
        margin-left: -25px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .btn_wrapper, #btn_wrapper {
        width: 190px;
        height: 190px;
        margin-left: -10px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .btn_wrapper, #btn_wrapper {
        width: 180px;
        height: 180px;
        margin-left: -5px;
    }
}

@media only screen and (max-width: 767px) {
    .btn_wrapper, #btn_wrapper {
        height: 175px;
        width: 175px;
        margin-left: -2.5px;
    }
}

.btn-item {
    position: absolute;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__top-btn .btn_wrapper, .service__top-btn #btn_wrapper {
        width: 170px;
        height: 170px;
    }

    .service__top-btn .btn_wrapper .btn-item, .service__top-btn #btn_wrapper .btn-item {
        top: 0;
        left: 0;
    }
}

.about_btn {
    font-size: 20px !important;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .about_btn {
        font-size: 18px !important;
    }
}

.about_btn::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    bottom: -10px;
    left: 0;
    background-color: var(--black-7);
}

.sec-title {
    font-weight: 500;
    font-size: 60px;
    line-height: 1;
    color: var(--black-2);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .sec-title {
        font-size: 50px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .sec-title {
        font-size: 45px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .sec-title {
        font-size: 36px;
    }
}

@media only screen and (max-width: 767px) {
    .sec-title {
        font-size: 32px;
    }
}

.sec-title-2 {
    font-weight: 500;
    font-size: 120px;
    line-height: 0.9;
    color: var(--black-2);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .sec-title-2 {
        font-size: 100px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .sec-title-2 {
        font-size: 90px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .sec-title-2 {
        font-size: 72px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .sec-title-2 {
        font-size: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .sec-title-2 {
        font-size: 45px;
    }
}

.sec-title-3 {
    font-weight: 500;
    font-size: 130px;
    line-height: 1;
    color: var(--black-2);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .sec-title-3 {
        font-size: 100px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .sec-title-3 {
        font-size: 100px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .sec-title-3 {
        font-size: 80px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .sec-title-3 {
        font-size: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .sec-title-3 {
        font-size: 48px;
    }
}

.sec-title-4 {
    font-size: 150px;
    line-height: 1;
    color: var(--black-2);
    text-transform: uppercase;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .sec-title-4 {
        font-size: 120px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .sec-title-4 {
        font-size: 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .sec-title-4 {
        font-size: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .sec-title-4 {
        font-size: 48px;
    }
}

.sec-title-4 span {
    font-family: "newYork";
    padding-left: 298px;
    display: block;
}

@media only screen and (max-width: 767px) {
    .sec-title-4 span {
        padding-left: 0;
    }
}

.sec-title-4 img {
    margin-top: -30px;
    -webkit-animation: wcSpinner 3s infinite linear;
    animation: wcSpinner 3s infinite linear;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .sec-title-4 img {
        max-width: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .sec-title-4 img {
        display: none;
    }
}

.sec-title-5 {
    padding-left: 98px;
}

@media only screen and (max-width: 767px) {
    .sec-title-5 {
        padding-left: 0;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .sec-title-5 {
        font-size: 120px;
        line-height: 8.3rem;
    }
}

.sec-title-7 {
    padding-left: 185px;
}

.sec-title-8 {
    font-size: 130px;
    line-height: 1;
    font-weight: 500;
    color: var(--black-2);
    text-transform: uppercase;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .sec-title-8 {
        font-size: 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .sec-title-8 {
        font-size: 72px;
    }
}

@media only screen and (max-width: 767px) {
    .sec-title-8 {
        font-size: 60px;
    }
}

.sec-title-8 a {
    font-family: "newYork";
    text-transform: capitalize;
}

.sec-title-16 {
    font-weight: 500;
    font-size: 120px;
    line-height: 0.9;
    color: var(--black-2);
    text-indent: 120px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .sec-title-16 {
        font-size: 100px;
        text-indent: 90px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .sec-title-16 {
        font-size: 90px;
        text-indent: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .sec-title-16 {
        text-indent: 60px;
        font-size: 72px;
    }
}

@media only screen and (max-width: 767px) {
    .sec-title-16 {
        text-indent: 20px;
        font-size: 48px;
    }
}

.sec-title-16 span {
    color: var(--black-2);
    font-family: "newYork";
    position: relative;
}

.sec-title-16 span::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    bottom: 10px;
    left: 0;
    background-color: var(--black-2);
}

@media only screen and (max-width: 767px) {
    .sec-title-16 span::after {
        bottom: 0;
    }
}

.sec-sub-title {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: var(--black-3);
    padding-bottom: 15px;
    text-transform: capitalize;
}

.hero-title {
    font-weight: 500;
    font-size: 80px;
    line-height: 1;
    color: var(--black);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero-title {
        font-size: 60px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero-title {
        font-size: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-title {
        font-size: 36px;
    }
}

.title-line {
    overflow: hidden;
}

@media (min-width: 1200px) {
    .img-anim {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 565px;
    }

    .img-anim img {
        position: absolute;
        bottom: 0;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: 120%;
        margin-left: auto;
        margin-right: auto;
    }
}

.dis_port_4 {
    max-width: 300px;
    text-indent: 90px;
    margin-left: 100px;
    margin-top: 40px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--black-3);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dis_port_4 {
        text-indent: 50px;
        margin-left: 60px;
        margin-top: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dis_port_4 {
        text-indent: 30px;
        margin-left: 20px;
        margin-top: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .dis_port_4 {
        margin-left: 20px;
        text-indent: 30px;
        margin-top: 20px;
    }
}

.section_title_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 130px 50px 0;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .section_title_wrapper {
        padding: 110px 30px 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .section_title_wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 767px) {
    .section_title_wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 120px 15px 0;
    }
}

.section_title_wrapper .title_right {
    padding-top: 150px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .section_title_wrapper .title_right {
        padding-top: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .section_title_wrapper .title_right {
        padding-top: 50px;
    }
}

.section_title_wrapper .title_right__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.section_title_wrapper .title_right__inner__left {
    margin-right: 60px;
}

.section_title_wrapper .title_right__inner__left span {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.7;
    text-align: right;
    color: var(--black-3);
    display: inline-block;
    position: relative;
}

.section_title_wrapper .title_right__inner__left span::before {
    content: "";
    position: absolute;
    right: 80px;
    top: 50%;
    background-color: #D9D9D9;
    width: 1090px;
    height: 1px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .section_title_wrapper .title_right__inner__left span::before {
        width: 600px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .section_title_wrapper .title_right__inner__left span::before {
        width: 500px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .section_title_wrapper .title_right__inner__left span::before {
        width: 300px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .section_title_wrapper .title_right__inner__left span::before {
        width: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .section_title_wrapper .title_right__inner__left span::before {
        display: none;
    }
}

.section_title_wrapper .title_right__inner__right ul li {
    margin-bottom: 10px;
}

.section_title_wrapper .title_right__inner__right ul li a {
    font-size: 18px;
    color: var(--black-13);
    text-transform: capitalize;
}

.section_title_wrapper .title_right__inner__right ul li a:hover {
    letter-spacing: 1px;
    color: var(--black-2);
}

.dark .sec-title-4 {
    color: var(--white);
}

.dark .sec-title-4 img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .sec-title-8 {
    color: var(--white);
}

.dark .sec-title-16 {
    color: var(--white);
}

.dark .sec-title-16 span {
    color: var(--white);
}

.dark .sec-title-16 span::after {
    background-color: var(--white);
}

.dark .section_title_wrapper .title_right__inner__left span {
    color: var(--gray-2);
}

.dark .section_title_wrapper .title_right__inner__left span::before {
    background-color: var(--gray-2);
}

.dark .section_title_wrapper .title_right__inner__right ul li a {
    color: var(--gray-2);
}

.dark .section_title_wrapper .title_right__inner__right ul li a:hover {
    color: var(--white);
}

.main-menu > li, .main-menu-4 > li {
    display: inline-block;
    margin: 0 38px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .main-menu > li, .main-menu-4 > li {
        margin: 0 19px;
    }
}

.main-menu > li.has-megamenu, .main-menu-4 > li.has-megamenu {
    position: static;
}

.main-menu > li:hover .main-dropdown, .main-menu-4 > li:hover .main-dropdown {
    top: 75px;
    opacity: 1;
    visibility: visible;
}

.main-menu > li:hover .mega-menu, .main-menu > li:hover .mega-menu-2, .main-menu-4 > li:hover .mega-menu, .main-menu-4 > li:hover .mega-menu-2 {
    top: 75px;
    opacity: 1;
    visibility: visible;
}

.main-menu > li > a, .main-menu-4 > li > a {
    display: block;
    font-weight: 400;
    font-size: 18px;
    line-height: 16px;
    color: var(--white);
    padding: 29px 0;
    outline: none;
    text-transform: capitalize;
    -webkit-transform: translateY(var(--y)) translateZ(0);
    transform: translateY(var(--y)) translateZ(0);
    -webkit-transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
    transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transition: transform 0.4s ease, box-shadow 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
}

.main-menu > li > a .menu-text, .main-menu-4 > li > a .menu-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    text-shadow: 0 16px 0 var(--white);
}

.main-menu > li > a .menu-text span, .main-menu-4 > li > a .menu-text span {
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-style: normal;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: translateY(var(--m)) translateZ(0);
    transform: translateY(var(--m)) translateZ(0);
}

.main-menu > li > a .menu-text span:nth-child(1), .main-menu-4 > li > a .menu-text span:nth-child(1) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

.main-menu > li > a .menu-text span:nth-child(2), .main-menu-4 > li > a .menu-text span:nth-child(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.main-menu > li > a .menu-text span:nth-child(3), .main-menu-4 > li > a .menu-text span:nth-child(3) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.main-menu > li > a .menu-text span:nth-child(4), .main-menu-4 > li > a .menu-text span:nth-child(4) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.main-menu > li > a .menu-text span:nth-child(5), .main-menu-4 > li > a .menu-text span:nth-child(5) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.main-menu > li > a .menu-text span:nth-child(6), .main-menu-4 > li > a .menu-text span:nth-child(6) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.main-menu > li > a .menu-text span:nth-child(7), .main-menu-4 > li > a .menu-text span:nth-child(7) {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

.main-menu > li > a .menu-text span:nth-child(8), .main-menu-4 > li > a .menu-text span:nth-child(8) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.main-menu > li > a .menu-text span:nth-child(9), .main-menu-4 > li > a .menu-text span:nth-child(9) {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

.main-menu > li > a .menu-text span:nth-child(10), .main-menu-4 > li > a .menu-text span:nth-child(10) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.main-menu > li > a .menu-text span:nth-child(11), .main-menu-4 > li > a .menu-text span:nth-child(11) {
    -webkit-transition-delay: 0.55s;
    transition-delay: 0.55s;
}

.main-menu > li > a .menu-text span:nth-child(12), .main-menu-4 > li > a .menu-text span:nth-child(12) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.main-menu > li > a .menu-text span:nth-child(13), .main-menu-4 > li > a .menu-text span:nth-child(13) {
    -webkit-transition-delay: 0.65s;
    transition-delay: 0.65s;
}

.main-menu > li > a .menu-text span:nth-child(14), .main-menu-4 > li > a .menu-text span:nth-child(14) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.main-menu > li > a .menu-text span:nth-child(15), .main-menu-4 > li > a .menu-text span:nth-child(15) {
    -webkit-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.main-menu > li > a .menu-text span:nth-child(16), .main-menu-4 > li > a .menu-text span:nth-child(16) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

.main-menu > li > a .menu-text span:nth-child(17), .main-menu-4 > li > a .menu-text span:nth-child(17) {
    -webkit-transition-delay: 0.85s;
    transition-delay: 0.85s;
}

.main-menu > li > a .menu-text span:nth-child(18), .main-menu-4 > li > a .menu-text span:nth-child(18) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

.main-menu > li > a .menu-text span:nth-child(19), .main-menu-4 > li > a .menu-text span:nth-child(19) {
    -webkit-transition-delay: 0.95s;
    transition-delay: 0.95s;
}

.main-menu > li > a .menu-text span:nth-child(20), .main-menu-4 > li > a .menu-text span:nth-child(20) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.main-menu > li > a .menu-text span:nth-child(21), .main-menu-4 > li > a .menu-text span:nth-child(21) {
    -webkit-transition-delay: 1.05s;
    transition-delay: 1.05s;
}

.main-menu > li > a .menu-text span:nth-child(22), .main-menu-4 > li > a .menu-text span:nth-child(22) {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
}

.main-menu > li > a .menu-text span:nth-child(23), .main-menu-4 > li > a .menu-text span:nth-child(23) {
    -webkit-transition-delay: 1.15s;
    transition-delay: 1.15s;
}

.main-menu > li > a .menu-text span:nth-child(24), .main-menu-4 > li > a .menu-text span:nth-child(24) {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
}

.main-menu > li > a .menu-text span:nth-child(25), .main-menu-4 > li > a .menu-text span:nth-child(25) {
    -webkit-transition-delay: 1.25s;
    transition-delay: 1.25s;
}

.main-menu > li > a .menu-text span:nth-child(26), .main-menu-4 > li > a .menu-text span:nth-child(26) {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
}

.main-menu > li > a .menu-text span:nth-child(27), .main-menu-4 > li > a .menu-text span:nth-child(27) {
    -webkit-transition-delay: 1.35s;
    transition-delay: 1.35s;
}

.main-menu > li > a .menu-text span:nth-child(28), .main-menu-4 > li > a .menu-text span:nth-child(28) {
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
}

.main-menu > li > a .menu-text span:nth-child(29), .main-menu-4 > li > a .menu-text span:nth-child(29) {
    -webkit-transition-delay: 1.45s;
    transition-delay: 1.45s;
}

.main-menu > li > a .menu-text span:nth-child(30), .main-menu-4 > li > a .menu-text span:nth-child(30) {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
}

.main-menu > li > a .menu-text span:nth-child(31), .main-menu-4 > li > a .menu-text span:nth-child(31) {
    -webkit-transition-delay: 1.55s;
    transition-delay: 1.55s;
}

.main-menu > li > a .menu-text span:nth-child(32), .main-menu-4 > li > a .menu-text span:nth-child(32) {
    -webkit-transition-delay: 1.6s;
    transition-delay: 1.6s;
}

.main-menu > li > a .menu-text span:nth-child(33), .main-menu-4 > li > a .menu-text span:nth-child(33) {
    -webkit-transition-delay: 1.65s;
    transition-delay: 1.65s;
}

.main-menu > li > a .menu-text span:nth-child(34), .main-menu-4 > li > a .menu-text span:nth-child(34) {
    -webkit-transition-delay: 1.7s;
    transition-delay: 1.7s;
}

.main-menu > li > a .menu-text span:nth-child(35), .main-menu-4 > li > a .menu-text span:nth-child(35) {
    -webkit-transition-delay: 1.75s;
    transition-delay: 1.75s;
}

.main-menu > li > a .menu-text span:nth-child(36), .main-menu-4 > li > a .menu-text span:nth-child(36) {
    -webkit-transition-delay: 1.8s;
    transition-delay: 1.8s;
}

.main-menu > li > a .menu-text span:nth-child(37), .main-menu-4 > li > a .menu-text span:nth-child(37) {
    -webkit-transition-delay: 1.85s;
    transition-delay: 1.85s;
}

.main-menu > li > a .menu-text span:nth-child(38), .main-menu-4 > li > a .menu-text span:nth-child(38) {
    -webkit-transition-delay: 1.9s;
    transition-delay: 1.9s;
}

.main-menu > li > a .menu-text span:nth-child(39), .main-menu-4 > li > a .menu-text span:nth-child(39) {
    -webkit-transition-delay: 1.95s;
    transition-delay: 1.95s;
}

.main-menu > li > a .menu-text span:nth-child(40), .main-menu-4 > li > a .menu-text span:nth-child(40) {
    -webkit-transition-delay: 2s;
    transition-delay: 2s;
}

.main-menu > li > a .menu-text span:nth-child(41), .main-menu-4 > li > a .menu-text span:nth-child(41) {
    -webkit-transition-delay: 2.05s;
    transition-delay: 2.05s;
}

.main-menu > li > a .menu-text span:nth-child(42), .main-menu-4 > li > a .menu-text span:nth-child(42) {
    -webkit-transition-delay: 2.1s;
    transition-delay: 2.1s;
}

.main-menu > li > a .menu-text span:nth-child(43), .main-menu-4 > li > a .menu-text span:nth-child(43) {
    -webkit-transition-delay: 2.15s;
    transition-delay: 2.15s;
}

.main-menu > li > a .menu-text span:nth-child(44), .main-menu-4 > li > a .menu-text span:nth-child(44) {
    -webkit-transition-delay: 2.2s;
    transition-delay: 2.2s;
}

.main-menu > li > a .menu-text span:nth-child(45), .main-menu-4 > li > a .menu-text span:nth-child(45) {
    -webkit-transition-delay: 2.25s;
    transition-delay: 2.25s;
}

.main-menu > li > a .menu-text span:nth-child(46), .main-menu-4 > li > a .menu-text span:nth-child(46) {
    -webkit-transition-delay: 2.3s;
    transition-delay: 2.3s;
}

.main-menu > li > a .menu-text span:nth-child(47), .main-menu-4 > li > a .menu-text span:nth-child(47) {
    -webkit-transition-delay: 2.35s;
    transition-delay: 2.35s;
}

.main-menu > li > a .menu-text span:nth-child(48), .main-menu-4 > li > a .menu-text span:nth-child(48) {
    -webkit-transition-delay: 2.4s;
    transition-delay: 2.4s;
}

.main-menu > li > a .menu-text span:nth-child(49), .main-menu-4 > li > a .menu-text span:nth-child(49) {
    -webkit-transition-delay: 2.45s;
    transition-delay: 2.45s;
}

.main-menu > li > a:hover, .main-menu-4 > li > a:hover {
    --y: -4px;
}

.main-menu > li > a:hover span, .main-menu-4 > li > a:hover span {
    --m: calc(16px * -1);
}

.main-menu-3 {
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .main-menu-3 {
        display: none;
    }
}

.main-menu-3 > li {
    display: inline-block;
    padding: 0 40px;
    margin: 0;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .main-menu-3 > li {
        padding: 25px 0;
    }
}

.main-menu-3 > li.has-megamenu {
    position: static;
}

.main-menu-3 > li:hover .main-dropdown {
    top: 80px;
    opacity: 1;
    visibility: visible;
}

.main-menu-3 > li:hover .mega-menu, .main-menu-3 > li:hover .mega-menu-2 {
    top: 80px;
    opacity: 1;
    visibility: visible;
}

.main-menu-3 > li > a {
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--black-2);
    padding: 27px 0;
    outline: none;
    text-transform: capitalize;
    -webkit-transform: translateY(var(--y)) translateZ(0);
    transform: translateY(var(--y)) translateZ(0);
    -webkit-transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
    transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transition: transform 0.4s ease, box-shadow 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
}

.main-menu-3 > li > a .menu-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    text-shadow: 0 16px 0 var(--black-2);
}

.main-menu-3 > li > a .menu-text span {
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-style: normal;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: translateY(var(--m)) translateZ(0);
    transform: translateY(var(--m)) translateZ(0);
}

.main-menu-3 > li > a .menu-text span:nth-child(1) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

.main-menu-3 > li > a .menu-text span:nth-child(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.main-menu-3 > li > a .menu-text span:nth-child(3) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.main-menu-3 > li > a .menu-text span:nth-child(4) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.main-menu-3 > li > a .menu-text span:nth-child(5) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.main-menu-3 > li > a .menu-text span:nth-child(6) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.main-menu-3 > li > a .menu-text span:nth-child(7) {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

.main-menu-3 > li > a .menu-text span:nth-child(8) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.main-menu-3 > li > a .menu-text span:nth-child(9) {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

.main-menu-3 > li > a .menu-text span:nth-child(10) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.main-menu-3 > li > a .menu-text span:nth-child(11) {
    -webkit-transition-delay: 0.55s;
    transition-delay: 0.55s;
}

.main-menu-3 > li > a .menu-text span:nth-child(12) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.main-menu-3 > li > a .menu-text span:nth-child(13) {
    -webkit-transition-delay: 0.65s;
    transition-delay: 0.65s;
}

.main-menu-3 > li > a .menu-text span:nth-child(14) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.main-menu-3 > li > a .menu-text span:nth-child(15) {
    -webkit-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.main-menu-3 > li > a .menu-text span:nth-child(16) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

.main-menu-3 > li > a .menu-text span:nth-child(17) {
    -webkit-transition-delay: 0.85s;
    transition-delay: 0.85s;
}

.main-menu-3 > li > a .menu-text span:nth-child(18) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

.main-menu-3 > li > a .menu-text span:nth-child(19) {
    -webkit-transition-delay: 0.95s;
    transition-delay: 0.95s;
}

.main-menu-3 > li > a .menu-text span:nth-child(20) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.main-menu-3 > li > a .menu-text span:nth-child(21) {
    -webkit-transition-delay: 1.05s;
    transition-delay: 1.05s;
}

.main-menu-3 > li > a .menu-text span:nth-child(22) {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
}

.main-menu-3 > li > a .menu-text span:nth-child(23) {
    -webkit-transition-delay: 1.15s;
    transition-delay: 1.15s;
}

.main-menu-3 > li > a .menu-text span:nth-child(24) {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
}

.main-menu-3 > li > a .menu-text span:nth-child(25) {
    -webkit-transition-delay: 1.25s;
    transition-delay: 1.25s;
}

.main-menu-3 > li > a .menu-text span:nth-child(26) {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
}

.main-menu-3 > li > a .menu-text span:nth-child(27) {
    -webkit-transition-delay: 1.35s;
    transition-delay: 1.35s;
}

.main-menu-3 > li > a .menu-text span:nth-child(28) {
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
}

.main-menu-3 > li > a .menu-text span:nth-child(29) {
    -webkit-transition-delay: 1.45s;
    transition-delay: 1.45s;
}

.main-menu-3 > li > a .menu-text span:nth-child(30) {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
}

.main-menu-3 > li > a .menu-text span:nth-child(31) {
    -webkit-transition-delay: 1.55s;
    transition-delay: 1.55s;
}

.main-menu-3 > li > a .menu-text span:nth-child(32) {
    -webkit-transition-delay: 1.6s;
    transition-delay: 1.6s;
}

.main-menu-3 > li > a .menu-text span:nth-child(33) {
    -webkit-transition-delay: 1.65s;
    transition-delay: 1.65s;
}

.main-menu-3 > li > a .menu-text span:nth-child(34) {
    -webkit-transition-delay: 1.7s;
    transition-delay: 1.7s;
}

.main-menu-3 > li > a .menu-text span:nth-child(35) {
    -webkit-transition-delay: 1.75s;
    transition-delay: 1.75s;
}

.main-menu-3 > li > a .menu-text span:nth-child(36) {
    -webkit-transition-delay: 1.8s;
    transition-delay: 1.8s;
}

.main-menu-3 > li > a .menu-text span:nth-child(37) {
    -webkit-transition-delay: 1.85s;
    transition-delay: 1.85s;
}

.main-menu-3 > li > a .menu-text span:nth-child(38) {
    -webkit-transition-delay: 1.9s;
    transition-delay: 1.9s;
}

.main-menu-3 > li > a .menu-text span:nth-child(39) {
    -webkit-transition-delay: 1.95s;
    transition-delay: 1.95s;
}

.main-menu-3 > li > a .menu-text span:nth-child(40) {
    -webkit-transition-delay: 2s;
    transition-delay: 2s;
}

.main-menu-3 > li > a .menu-text span:nth-child(41) {
    -webkit-transition-delay: 2.05s;
    transition-delay: 2.05s;
}

.main-menu-3 > li > a .menu-text span:nth-child(42) {
    -webkit-transition-delay: 2.1s;
    transition-delay: 2.1s;
}

.main-menu-3 > li > a .menu-text span:nth-child(43) {
    -webkit-transition-delay: 2.15s;
    transition-delay: 2.15s;
}

.main-menu-3 > li > a .menu-text span:nth-child(44) {
    -webkit-transition-delay: 2.2s;
    transition-delay: 2.2s;
}

.main-menu-3 > li > a .menu-text span:nth-child(45) {
    -webkit-transition-delay: 2.25s;
    transition-delay: 2.25s;
}

.main-menu-3 > li > a .menu-text span:nth-child(46) {
    -webkit-transition-delay: 2.3s;
    transition-delay: 2.3s;
}

.main-menu-3 > li > a .menu-text span:nth-child(47) {
    -webkit-transition-delay: 2.35s;
    transition-delay: 2.35s;
}

.main-menu-3 > li > a .menu-text span:nth-child(48) {
    -webkit-transition-delay: 2.4s;
    transition-delay: 2.4s;
}

.main-menu-3 > li > a .menu-text span:nth-child(49) {
    -webkit-transition-delay: 2.45s;
    transition-delay: 2.45s;
}

.main-menu-3 > li > a:hover {
    --y: -4px;
}

.main-menu-3 > li > a:hover span {
    --m: calc(16px * -1);
}

.main-menu-4 > li > a {
    color: var(--black-2);
}

.main-menu-4 > li > a .menu-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    text-shadow: 0 16px 0 var(--black-2);
}

.main-menu-4 > li > a .menu-text span {
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-style: normal;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: translateY(var(--m)) translateZ(0);
    transform: translateY(var(--m)) translateZ(0);
}

.main-menu-4 > li > a .menu-text span:nth-child(1) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

.main-menu-4 > li > a .menu-text span:nth-child(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.main-menu-4 > li > a .menu-text span:nth-child(3) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.main-menu-4 > li > a .menu-text span:nth-child(4) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.main-menu-4 > li > a .menu-text span:nth-child(5) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.main-menu-4 > li > a .menu-text span:nth-child(6) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.main-menu-4 > li > a .menu-text span:nth-child(7) {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

.main-menu-4 > li > a .menu-text span:nth-child(8) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.main-menu-4 > li > a .menu-text span:nth-child(9) {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

.main-menu-4 > li > a .menu-text span:nth-child(10) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.main-menu-4 > li > a .menu-text span:nth-child(11) {
    -webkit-transition-delay: 0.55s;
    transition-delay: 0.55s;
}

.main-menu-4 > li > a .menu-text span:nth-child(12) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.main-menu-4 > li > a .menu-text span:nth-child(13) {
    -webkit-transition-delay: 0.65s;
    transition-delay: 0.65s;
}

.main-menu-4 > li > a .menu-text span:nth-child(14) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.main-menu-4 > li > a .menu-text span:nth-child(15) {
    -webkit-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.main-menu-4 > li > a .menu-text span:nth-child(16) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

.main-menu-4 > li > a .menu-text span:nth-child(17) {
    -webkit-transition-delay: 0.85s;
    transition-delay: 0.85s;
}

.main-menu-4 > li > a .menu-text span:nth-child(18) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

.main-menu-4 > li > a .menu-text span:nth-child(19) {
    -webkit-transition-delay: 0.95s;
    transition-delay: 0.95s;
}

.main-menu-4 > li > a .menu-text span:nth-child(20) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.main-menu-4 > li > a .menu-text span:nth-child(21) {
    -webkit-transition-delay: 1.05s;
    transition-delay: 1.05s;
}

.main-menu-4 > li > a .menu-text span:nth-child(22) {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
}

.main-menu-4 > li > a .menu-text span:nth-child(23) {
    -webkit-transition-delay: 1.15s;
    transition-delay: 1.15s;
}

.main-menu-4 > li > a .menu-text span:nth-child(24) {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
}

.main-menu-4 > li > a .menu-text span:nth-child(25) {
    -webkit-transition-delay: 1.25s;
    transition-delay: 1.25s;
}

.main-menu-4 > li > a .menu-text span:nth-child(26) {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
}

.main-menu-4 > li > a .menu-text span:nth-child(27) {
    -webkit-transition-delay: 1.35s;
    transition-delay: 1.35s;
}

.main-menu-4 > li > a .menu-text span:nth-child(28) {
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
}

.main-menu-4 > li > a .menu-text span:nth-child(29) {
    -webkit-transition-delay: 1.45s;
    transition-delay: 1.45s;
}

.main-menu-4 > li > a .menu-text span:nth-child(30) {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
}

.main-menu-4 > li > a .menu-text span:nth-child(31) {
    -webkit-transition-delay: 1.55s;
    transition-delay: 1.55s;
}

.main-menu-4 > li > a .menu-text span:nth-child(32) {
    -webkit-transition-delay: 1.6s;
    transition-delay: 1.6s;
}

.main-menu-4 > li > a .menu-text span:nth-child(33) {
    -webkit-transition-delay: 1.65s;
    transition-delay: 1.65s;
}

.main-menu-4 > li > a .menu-text span:nth-child(34) {
    -webkit-transition-delay: 1.7s;
    transition-delay: 1.7s;
}

.main-menu-4 > li > a .menu-text span:nth-child(35) {
    -webkit-transition-delay: 1.75s;
    transition-delay: 1.75s;
}

.main-menu-4 > li > a .menu-text span:nth-child(36) {
    -webkit-transition-delay: 1.8s;
    transition-delay: 1.8s;
}

.main-menu-4 > li > a .menu-text span:nth-child(37) {
    -webkit-transition-delay: 1.85s;
    transition-delay: 1.85s;
}

.main-menu-4 > li > a .menu-text span:nth-child(38) {
    -webkit-transition-delay: 1.9s;
    transition-delay: 1.9s;
}

.main-menu-4 > li > a .menu-text span:nth-child(39) {
    -webkit-transition-delay: 1.95s;
    transition-delay: 1.95s;
}

.main-menu-4 > li > a .menu-text span:nth-child(40) {
    -webkit-transition-delay: 2s;
    transition-delay: 2s;
}

.main-menu-4 > li > a .menu-text span:nth-child(41) {
    -webkit-transition-delay: 2.05s;
    transition-delay: 2.05s;
}

.main-menu-4 > li > a .menu-text span:nth-child(42) {
    -webkit-transition-delay: 2.1s;
    transition-delay: 2.1s;
}

.main-menu-4 > li > a .menu-text span:nth-child(43) {
    -webkit-transition-delay: 2.15s;
    transition-delay: 2.15s;
}

.main-menu-4 > li > a .menu-text span:nth-child(44) {
    -webkit-transition-delay: 2.2s;
    transition-delay: 2.2s;
}

.main-menu-4 > li > a .menu-text span:nth-child(45) {
    -webkit-transition-delay: 2.25s;
    transition-delay: 2.25s;
}

.main-menu-4 > li > a .menu-text span:nth-child(46) {
    -webkit-transition-delay: 2.3s;
    transition-delay: 2.3s;
}

.main-menu-4 > li > a .menu-text span:nth-child(47) {
    -webkit-transition-delay: 2.35s;
    transition-delay: 2.35s;
}

.main-menu-4 > li > a .menu-text span:nth-child(48) {
    -webkit-transition-delay: 2.4s;
    transition-delay: 2.4s;
}

.main-menu-4 > li > a .menu-text span:nth-child(49) {
    -webkit-transition-delay: 2.45s;
    transition-delay: 2.45s;
}

.main-menu-4 > li > a:hover {
    --y: -4px;
}

.main-menu-4 > li > a:hover span {
    --m: calc(16px * -1);
}

.main-menu .mega-menu li a, .main-menu .mega-menu-2 li a, .main-menu-4 .mega-menu li a, .main-menu-4 .mega-menu-2 li a {
    color: var(--white);
}

.main-dropdown {
    position: absolute;
    width: 300px;
    left: 0;
    top: 85px;
    z-index: 9;
    background-color: var(--black-2);
    text-align: left;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.main-dropdown .sub-dropdown {
    position: absolute;
    width: 300px;
    left: 100%;
    top: 0;
    z-index: 9;
    background-color: var(--black-2);
    text-align: left;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.main-dropdown li {
    display: block;
    margin: 0;
    padding: 0;
}

.main-dropdown li:hover .sub-dropdown {
    opacity: 1;
    visibility: visible;
}

.main-dropdown li a {
    color: var(--white);
    display: block;
    padding: 10px 20px;
    text-transform: capitalize;
}

.main-dropdown li a .menu-text {
    text-shadow: 0 16px 0 var(--white);
}

.main-dropdown li a:hover {
    letter-spacing: 1px;
}

.mega-menu, .mega-menu-2 {
    position: absolute;
    width: 100%;
    left: 0;
    top: 90px;
    z-index: 9;
    background-color: var(--black-2);
    text-align: left;
    padding: 40px 200px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .mega-menu, .mega-menu-2 {
        padding: 40px 100px;
    }
}

.mega-menu li, .mega-menu-2 li {
    padding: 0;
    margin: 0;
}

.mega-menu li a, .mega-menu-2 li a {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    padding: 10px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.mega-menu li a .menu-text, .mega-menu-2 li a .menu-text {
    text-shadow: 0 16px 0 var(--white);
}

.mega-menu li a:hover, .mega-menu-2 li a:hover {
    letter-spacing: 1px;
}

.mega-menu li a:not([href]):not([class]), .mega-menu-2 li a:not([href]):not([class]) {
    color: var(--white);
}

.mega-menu li a:not([href]):not([class]):hover, .mega-menu-2 li a:not([href]):not([class]):hover {
    letter-spacing: 0;
    background-color: transparent;
}

.mega-menu li ul, .mega-menu-2 li ul {
    text-align: left;
}

.mega-menu li ul li, .mega-menu-2 li ul li {
    display: block;
    margin: 0;
}

.mega-menu li ul li a, .mega-menu-2 li ul li a {
    font-weight: 400;
    font-size: 16px;
    padding: 10px 12px;
    display: block;
    margin-bottom: 0;
    text-transform: capitalize;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .mega-menu li ul li a, .mega-menu-2 li ul li a {
        padding: 6px 12px;
    }
}

.mega-menu-2 {
    width: 1160px;
    padding: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(4, 1fr);
}

.menu-heading {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    padding-bottom: 10px;
    text-transform: capitalize;
}

.footer-menu, .footer-menu-2 {
    text-align: right;
}

@media only screen and (max-width: 767px) {
    .footer-menu, .footer-menu-2 {
        text-align: center;
    }
}

.footer-menu li, .footer-menu-2 li {
    display: inline-block;
    padding-left: 80px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .footer-menu li, .footer-menu-2 li {
        padding-left: 60px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer-menu li, .footer-menu-2 li {
        padding-left: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer-menu li, .footer-menu-2 li {
        padding-left: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-menu li, .footer-menu-2 li {
        padding-left: 8px;
        padding-right: 8px;
    }
}

.footer-menu li a, .footer-menu-2 li a {
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: var(--black-2);
    text-transform: capitalize;
}

.footer-menu li a .menu-text, .footer-menu-2 li a .menu-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    text-shadow: 0 16px 0 var(--black-2);
}

.footer-menu li a .menu-text span, .footer-menu-2 li a .menu-text span {
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-style: normal;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: translateY(var(--m)) translateZ(0);
    transform: translateY(var(--m)) translateZ(0);
}

.footer-menu li a .menu-text span:nth-child(1), .footer-menu-2 li a .menu-text span:nth-child(1) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

.footer-menu li a .menu-text span:nth-child(2), .footer-menu-2 li a .menu-text span:nth-child(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.footer-menu li a .menu-text span:nth-child(3), .footer-menu-2 li a .menu-text span:nth-child(3) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.footer-menu li a .menu-text span:nth-child(4), .footer-menu-2 li a .menu-text span:nth-child(4) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.footer-menu li a .menu-text span:nth-child(5), .footer-menu-2 li a .menu-text span:nth-child(5) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.footer-menu li a .menu-text span:nth-child(6), .footer-menu-2 li a .menu-text span:nth-child(6) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.footer-menu li a .menu-text span:nth-child(7), .footer-menu-2 li a .menu-text span:nth-child(7) {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

.footer-menu li a .menu-text span:nth-child(8), .footer-menu-2 li a .menu-text span:nth-child(8) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.footer-menu li a .menu-text span:nth-child(9), .footer-menu-2 li a .menu-text span:nth-child(9) {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

.footer-menu li a .menu-text span:nth-child(10), .footer-menu-2 li a .menu-text span:nth-child(10) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.footer-menu li a .menu-text span:nth-child(11), .footer-menu-2 li a .menu-text span:nth-child(11) {
    -webkit-transition-delay: 0.55s;
    transition-delay: 0.55s;
}

.footer-menu li a .menu-text span:nth-child(12), .footer-menu-2 li a .menu-text span:nth-child(12) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.footer-menu li a .menu-text span:nth-child(13), .footer-menu-2 li a .menu-text span:nth-child(13) {
    -webkit-transition-delay: 0.65s;
    transition-delay: 0.65s;
}

.footer-menu li a .menu-text span:nth-child(14), .footer-menu-2 li a .menu-text span:nth-child(14) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.footer-menu li a .menu-text span:nth-child(15), .footer-menu-2 li a .menu-text span:nth-child(15) {
    -webkit-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.footer-menu li a .menu-text span:nth-child(16), .footer-menu-2 li a .menu-text span:nth-child(16) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

.footer-menu li a .menu-text span:nth-child(17), .footer-menu-2 li a .menu-text span:nth-child(17) {
    -webkit-transition-delay: 0.85s;
    transition-delay: 0.85s;
}

.footer-menu li a .menu-text span:nth-child(18), .footer-menu-2 li a .menu-text span:nth-child(18) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

.footer-menu li a .menu-text span:nth-child(19), .footer-menu-2 li a .menu-text span:nth-child(19) {
    -webkit-transition-delay: 0.95s;
    transition-delay: 0.95s;
}

.footer-menu li a .menu-text span:nth-child(20), .footer-menu-2 li a .menu-text span:nth-child(20) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.footer-menu li a .menu-text span:nth-child(21), .footer-menu-2 li a .menu-text span:nth-child(21) {
    -webkit-transition-delay: 1.05s;
    transition-delay: 1.05s;
}

.footer-menu li a .menu-text span:nth-child(22), .footer-menu-2 li a .menu-text span:nth-child(22) {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
}

.footer-menu li a .menu-text span:nth-child(23), .footer-menu-2 li a .menu-text span:nth-child(23) {
    -webkit-transition-delay: 1.15s;
    transition-delay: 1.15s;
}

.footer-menu li a .menu-text span:nth-child(24), .footer-menu-2 li a .menu-text span:nth-child(24) {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
}

.footer-menu li a .menu-text span:nth-child(25), .footer-menu-2 li a .menu-text span:nth-child(25) {
    -webkit-transition-delay: 1.25s;
    transition-delay: 1.25s;
}

.footer-menu li a .menu-text span:nth-child(26), .footer-menu-2 li a .menu-text span:nth-child(26) {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
}

.footer-menu li a .menu-text span:nth-child(27), .footer-menu-2 li a .menu-text span:nth-child(27) {
    -webkit-transition-delay: 1.35s;
    transition-delay: 1.35s;
}

.footer-menu li a .menu-text span:nth-child(28), .footer-menu-2 li a .menu-text span:nth-child(28) {
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
}

.footer-menu li a .menu-text span:nth-child(29), .footer-menu-2 li a .menu-text span:nth-child(29) {
    -webkit-transition-delay: 1.45s;
    transition-delay: 1.45s;
}

.footer-menu li a .menu-text span:nth-child(30), .footer-menu-2 li a .menu-text span:nth-child(30) {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
}

.footer-menu li a .menu-text span:nth-child(31), .footer-menu-2 li a .menu-text span:nth-child(31) {
    -webkit-transition-delay: 1.55s;
    transition-delay: 1.55s;
}

.footer-menu li a .menu-text span:nth-child(32), .footer-menu-2 li a .menu-text span:nth-child(32) {
    -webkit-transition-delay: 1.6s;
    transition-delay: 1.6s;
}

.footer-menu li a .menu-text span:nth-child(33), .footer-menu-2 li a .menu-text span:nth-child(33) {
    -webkit-transition-delay: 1.65s;
    transition-delay: 1.65s;
}

.footer-menu li a .menu-text span:nth-child(34), .footer-menu-2 li a .menu-text span:nth-child(34) {
    -webkit-transition-delay: 1.7s;
    transition-delay: 1.7s;
}

.footer-menu li a .menu-text span:nth-child(35), .footer-menu-2 li a .menu-text span:nth-child(35) {
    -webkit-transition-delay: 1.75s;
    transition-delay: 1.75s;
}

.footer-menu li a .menu-text span:nth-child(36), .footer-menu-2 li a .menu-text span:nth-child(36) {
    -webkit-transition-delay: 1.8s;
    transition-delay: 1.8s;
}

.footer-menu li a .menu-text span:nth-child(37), .footer-menu-2 li a .menu-text span:nth-child(37) {
    -webkit-transition-delay: 1.85s;
    transition-delay: 1.85s;
}

.footer-menu li a .menu-text span:nth-child(38), .footer-menu-2 li a .menu-text span:nth-child(38) {
    -webkit-transition-delay: 1.9s;
    transition-delay: 1.9s;
}

.footer-menu li a .menu-text span:nth-child(39), .footer-menu-2 li a .menu-text span:nth-child(39) {
    -webkit-transition-delay: 1.95s;
    transition-delay: 1.95s;
}

.footer-menu li a .menu-text span:nth-child(40), .footer-menu-2 li a .menu-text span:nth-child(40) {
    -webkit-transition-delay: 2s;
    transition-delay: 2s;
}

.footer-menu li a .menu-text span:nth-child(41), .footer-menu-2 li a .menu-text span:nth-child(41) {
    -webkit-transition-delay: 2.05s;
    transition-delay: 2.05s;
}

.footer-menu li a .menu-text span:nth-child(42), .footer-menu-2 li a .menu-text span:nth-child(42) {
    -webkit-transition-delay: 2.1s;
    transition-delay: 2.1s;
}

.footer-menu li a .menu-text span:nth-child(43), .footer-menu-2 li a .menu-text span:nth-child(43) {
    -webkit-transition-delay: 2.15s;
    transition-delay: 2.15s;
}

.footer-menu li a .menu-text span:nth-child(44), .footer-menu-2 li a .menu-text span:nth-child(44) {
    -webkit-transition-delay: 2.2s;
    transition-delay: 2.2s;
}

.footer-menu li a .menu-text span:nth-child(45), .footer-menu-2 li a .menu-text span:nth-child(45) {
    -webkit-transition-delay: 2.25s;
    transition-delay: 2.25s;
}

.footer-menu li a .menu-text span:nth-child(46), .footer-menu-2 li a .menu-text span:nth-child(46) {
    -webkit-transition-delay: 2.3s;
    transition-delay: 2.3s;
}

.footer-menu li a .menu-text span:nth-child(47), .footer-menu-2 li a .menu-text span:nth-child(47) {
    -webkit-transition-delay: 2.35s;
    transition-delay: 2.35s;
}

.footer-menu li a .menu-text span:nth-child(48), .footer-menu-2 li a .menu-text span:nth-child(48) {
    -webkit-transition-delay: 2.4s;
    transition-delay: 2.4s;
}

.footer-menu li a .menu-text span:nth-child(49), .footer-menu-2 li a .menu-text span:nth-child(49) {
    -webkit-transition-delay: 2.45s;
    transition-delay: 2.45s;
}

.footer-menu li a:hover, .footer-menu-2 li a:hover {
    --y: -4px;
}

.footer-menu li a:hover span, .footer-menu-2 li a:hover span {
    --m: calc(16px * -1);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer-menu-2 {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-menu-2 {
        margin-bottom: 30px;
    }
}

.footer-menu-2 li a {
    color: var(--white);
    text-transform: uppercase;
}

.footer-menu-2 li a .menu-text {
    text-shadow: 0 16px 0 var(--white);
}

.offcanvas__menu-wrapper.mean-container {
    padding-top: 160px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .offcanvas__menu-wrapper.mean-container {
        padding-top: 142px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .offcanvas__menu-wrapper.mean-container {
        padding-top: 93px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .offcanvas__menu-wrapper.mean-container {
        padding-top: 93px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .offcanvas__menu-wrapper.mean-container {
        padding-top: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .offcanvas__menu-wrapper.mean-container {
        padding-top: 40px;
    }
}

.offcanvas__menu-wrapper.mean-container .mean-nav > ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.offcanvas__menu-wrapper.mean-container .mean-nav > ul > li:last-child > a {
    border-bottom: 1px solid var(--black-4);
}

.offcanvas__menu-wrapper.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 20px 0 20px 100px;
    font-weight: 400;
    font-size: 80px;
    line-height: 1;
    color: var(--white);
    text-transform: capitalize;
    border-top: 1px solid var(--black-4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    outline: none;
    -webkit-transform: translateY(var(--y)) translateZ(0);
    transform: translateY(var(--y)) translateZ(0);
    -webkit-transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
    transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transition: transform 0.4s ease, box-shadow 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    text-shadow: 0 80px 0 var(--white);
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span {
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-style: normal;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: translateY(var(--m)) translateZ(0);
    transform: translateY(var(--m)) translateZ(0);
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(1) {
    -webkit-transition-delay: 0.0333333333s;
    transition-delay: 0.0333333333s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(2) {
    -webkit-transition-delay: 0.0666666667s;
    transition-delay: 0.0666666667s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(3) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(4) {
    -webkit-transition-delay: 0.1333333333s;
    transition-delay: 0.1333333333s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(5) {
    -webkit-transition-delay: 0.1666666667s;
    transition-delay: 0.1666666667s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(6) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(7) {
    -webkit-transition-delay: 0.2333333333s;
    transition-delay: 0.2333333333s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(8) {
    -webkit-transition-delay: 0.2666666667s;
    transition-delay: 0.2666666667s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(9) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(10) {
    -webkit-transition-delay: 0.3333333333s;
    transition-delay: 0.3333333333s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(11) {
    -webkit-transition-delay: 0.3666666667s;
    transition-delay: 0.3666666667s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(12) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(13) {
    -webkit-transition-delay: 0.4333333333s;
    transition-delay: 0.4333333333s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(14) {
    -webkit-transition-delay: 0.4666666667s;
    transition-delay: 0.4666666667s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(15) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(16) {
    -webkit-transition-delay: 0.5333333333s;
    transition-delay: 0.5333333333s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(17) {
    -webkit-transition-delay: 0.5666666667s;
    transition-delay: 0.5666666667s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(18) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(19) {
    -webkit-transition-delay: 0.6333333333s;
    transition-delay: 0.6333333333s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(20) {
    -webkit-transition-delay: 0.6666666667s;
    transition-delay: 0.6666666667s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(21) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(22) {
    -webkit-transition-delay: 0.7333333333s;
    transition-delay: 0.7333333333s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(23) {
    -webkit-transition-delay: 0.7666666667s;
    transition-delay: 0.7666666667s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(24) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(25) {
    -webkit-transition-delay: 0.8333333333s;
    transition-delay: 0.8333333333s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(26) {
    -webkit-transition-delay: 0.8666666667s;
    transition-delay: 0.8666666667s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(27) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(28) {
    -webkit-transition-delay: 0.9333333333s;
    transition-delay: 0.9333333333s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(29) {
    -webkit-transition-delay: 0.9666666667s;
    transition-delay: 0.9666666667s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(30) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(31) {
    -webkit-transition-delay: 1.0333333333s;
    transition-delay: 1.0333333333s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(32) {
    -webkit-transition-delay: 1.0666666667s;
    transition-delay: 1.0666666667s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(33) {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(34) {
    -webkit-transition-delay: 1.1333333333s;
    transition-delay: 1.1333333333s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(35) {
    -webkit-transition-delay: 1.1666666667s;
    transition-delay: 1.1666666667s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(36) {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(37) {
    -webkit-transition-delay: 1.2333333333s;
    transition-delay: 1.2333333333s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(38) {
    -webkit-transition-delay: 1.2666666667s;
    transition-delay: 1.2666666667s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(39) {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(40) {
    -webkit-transition-delay: 1.3333333333s;
    transition-delay: 1.3333333333s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(41) {
    -webkit-transition-delay: 1.3666666667s;
    transition-delay: 1.3666666667s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(42) {
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(43) {
    -webkit-transition-delay: 1.4333333333s;
    transition-delay: 1.4333333333s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(44) {
    -webkit-transition-delay: 1.4666666667s;
    transition-delay: 1.4666666667s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(45) {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(46) {
    -webkit-transition-delay: 1.5333333333s;
    transition-delay: 1.5333333333s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(47) {
    -webkit-transition-delay: 1.5666666667s;
    transition-delay: 1.5666666667s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(48) {
    -webkit-transition-delay: 1.6s;
    transition-delay: 1.6s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span:nth-child(49) {
    -webkit-transition-delay: 1.6333333333s;
    transition-delay: 1.6333333333s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a:hover {
    --y: -0px;
    background-color: transparent;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a:hover span {
    --m: calc(80px * -1);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
        font-size: 60px;
        padding-left: 60px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
        font-size: 48px;
        padding-left: 50px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
        font-size: 40px;
        padding-left: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
        font-size: 30px;
        padding-left: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
        font-size: 20px;
        padding-left: 15px;
    }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
    width: 60px;
    height: 96px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 300;
    border: none !important;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
        height: 76px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
        height: 64px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
        height: 57px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
        height: 46px;
        width: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
        height: 36px;
        width: 36px;
        padding: 11px 12px 13px !important;
    }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand:hover {
    background: var(--secondary);
    opacity: 1;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li:first-child {
    border-top: 1px solid var(--black-4);
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
    font-size: 24px;
    text-transform: capitalize;
    border-top: none !important;
    padding: 20px 0 20px 150px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li a:hover {
    letter-spacing: 1px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
        padding-left: 90px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
        padding-left: 80px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
        padding-left: 60px;
        font-size: 24px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
        font-size: 20px;
        padding: 15px 0 15px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
        font-size: 18px;
        padding: 15px 0 15px 30px;
    }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
    height: 40px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
        height: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
        height: 23px;
    }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li li:last-child {
    border-bottom: 1px solid var(--black-4);
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li li a {
    padding-left: 180px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li li li a {
        padding-left: 120px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li li li a {
        padding-left: 40px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li li li a {
        padding-left: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li li li a {
        padding-left: 30px;
    }
}

.offcanvas__menu-wrapper.mean-container .mean-bar {
    padding: 0;
    background: none;
}

.offcanvas__menu-wrapper.mean-container a.meanmenu-reveal {
    display: none !important;
}

.header__area-2 .main-dropdown {
    background-color: var(--white);
}

.header__area-2 .main-dropdown li a {
    color: var(--black-2);
}

.header__area-2 .main-dropdown li a:hover {
    letter-spacing: 1px;
}

.header__area-2 .main-dropdown li a .menu-text {
    text-shadow: 0 16px 0 var(--black-2);
}

.header__area-2 .main-dropdown .sub-dropdown {
    background-color: var(--white);
}

.header__area-2 .mega-menu, .header__area-2 .mega-menu-2 {
    background-color: var(--white);
}

.header__area-2 .mega-menu li a, .header__area-2 .mega-menu-2 li a {
    color: var(--black-2);
}

.header__area-2 .mega-menu li a:hover, .header__area-2 .mega-menu-2 li a:hover {
    letter-spacing: 1px;
}

.header__area-2 .mega-menu li a:not([href]):not([class]), .header__area-2 .mega-menu-2 li a:not([href]):not([class]) {
    color: var(--black-2);
}

.header__area-2 .mega-menu li a .menu-text, .header__area-2 .mega-menu-2 li a .menu-text {
    text-shadow: 0 16px 0 var(--black-2);
}

.dark .menu-heading {
    color: var(--black-2);
}

.modal__testimonial {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    z-index: 9991;
    -webkit-transition: visibility 0s linear 0.25s, opacity 0.25s 0s, -webkit-transform 0.25s;
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, -webkit-transform 0.25s;
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s, -webkit-transform 0.25s;
}

.modal__testimonial-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: var(--white);
    border-radius: 5px;
    width: 760px;
    height: 500px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .modal__testimonial-content {
        width: 700px;
        height: 480px;
    }
}

@media only screen and (max-width: 767px) {
    .modal__testimonial-content {
        width: 320px;
        height: 300px;
    }
}

.modal__testimonial-content iframe {
    width: 100%;
    height: 100%;
}

.modal__close {
    background: var(--secondary);
    color: var(--white);
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 100%;
    font-size: 18px;
    position: absolute;
    right: -15px;
    top: -15px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 9;
    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;
}

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

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

.modal__close-2 {
    background-color: transparent;
    color: var(--black-3);
    width: 30px;
    height: 30px;
    border: none;
    font-size: 24px;
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (max-width: 767px) {
    .modal__close-2 {
        right: 20px;
        top: 15px;
    }
}

.modal__close-2:hover {
    color: var(--black-2);
}

.modal__application {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: visibility 0s linear 0.25s, opacity 0.25s 0s, -webkit-transform 0.25s;
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, -webkit-transform 0.25s;
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s, -webkit-transform 0.25s;
    z-index: 9991;
}

.modal__apply {
    padding: 100px 50px;
    max-width: 1130px;
    height: 96vh;
    margin: 0 auto;
    margin-top: 2vh;
    overflow-y: auto;
    position: relative;
    background-color: var(--white);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .modal__apply {
        max-width: 960px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .modal__apply {
        max-width: 720px;
    }
}

@media only screen and (max-width: 767px) {
    .modal__apply {
        padding: 50px 20px;
        margin-top: 0;
        height: 100vh;
    }
}

.modal__apply .wc-btn-primary, .modal__apply .wc-btn-secondary, .modal__apply .wc-btn-pink, .modal__apply .wc-btn-light, .modal__apply .wc-btn-black {
    width: 120px;
    height: 120px;
}

.modal__apply .form-top {
    text-align: center;
    padding-bottom: 50px;
}

.modal__apply .form-top img {
    margin-bottom: 40px;
}

.modal__apply .form-top p {
    font-size: 18px;
    color: var(--black-2);
    border: 1px solid var(--black-3);
    border-radius: 30px;
    display: inline-block;
    padding: 5px 35px;
    margin-top: 20px;
}

.modal__apply .input-apply {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 90px 2.2fr;
    grid-template-columns: 1fr 2.2fr;
    grid-gap: 90px;
    margin-bottom: 20px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .modal__apply .input-apply {
        -ms-grid-columns: 1fr 30px 2fr;
        grid-template-columns: 1fr 2fr;
        grid-gap: 30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .modal__apply .input-apply {
        -ms-grid-columns: 1fr 30px 2fr;
        grid-template-columns: 1fr 2fr;
        grid-gap: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .modal__apply .input-apply {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 10px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .modal__apply .input-apply {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 10px;
        margin-bottom: 30px;
    }
}

.modal__apply .input-apply-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 4fr;
    grid-template-columns: 1fr 4fr;
    grid-gap: 50px;
    margin-bottom: 20px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .modal__apply .input-apply-2 {
        -ms-grid-columns: 1fr 30px 2fr;
        grid-template-columns: 1fr 2fr;
        grid-gap: 30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .modal__apply .input-apply-2 {
        -ms-grid-columns: 1fr 30px 2fr;
        grid-template-columns: 1fr 2fr;
        grid-gap: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .modal__apply .input-apply-2 {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 10px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .modal__apply .input-apply-2 {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 10px;
        margin-bottom: 30px;
    }
}

.modal__apply .input-apply-2 p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--black);
}

.modal__apply .input-apply-2 input {
    width: 100%;
    border: 1px solid var(--white-4);
    outline: none;
    padding: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.modal__apply .input-apply-2 input:focus {
    border: 1px solid var(--black-3);
}

.modal__apply .input-apply p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--black);
}

.modal__apply .input-apply textarea {
    width: 100%;
    height: 125px;
    border: 1px solid var(--white-4);
    outline: none;
    padding: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .modal__apply .input-apply textarea {
        height: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .modal__apply .input-apply textarea {
        height: 90px;
    }
}

.modal__apply .input-apply textarea:focus {
    border: 1px solid var(--black-3);
}

.modal__apply .form-btn button {
    margin-left: auto;
    margin-top: 30px;
    background-color: transparent;
    z-index: 1;
}

.modal__apply .form-btn-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 20px;
}

.modal__apply .form-btn-2 button {
    background-color: transparent;
    z-index: 1;
}

.modal-show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: visibility 0s linear 0s, opacity 0.25s 0s, -webkit-transform 0.25s;
    transition: visibility 0s linear 0s, opacity 0.25s 0s, -webkit-transform 0.25s;
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s, -webkit-transform 0.25s;
}

.cursor {
    position: fixed;
    left: 0;
    pointer-events: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    color: var(--white);
    background: var(--black-2);
    text-transform: capitalize;
    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;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 999;
    opacity: 0;
    mix-blend-mode: hard-light;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.cursor.large {
    width: 180px;
    height: 180px;
    text-align: center;
    font-size: 19px;
    font-weight: 400;
}

.cursor1 {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.15s;
    transition: 0.15s;
    z-index: 999;
    mix-blend-mode: difference;
}

@media (max-width: 1200px) {
    .cursor1 {
        display: none;
    }
}

.cursor1.hide {
    opacity: 0;
    visibility: hidden;
}

.cursor2 {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: 999;
    mix-blend-mode: difference;
}

@media (max-width: 1200px) {
    .cursor2 {
        display: none;
    }
}

.cursor2.hide {
    opacity: 0;
    visibility: hidden;
}

.cursor2.circle {
    width: 60px;
    height: 60px;
}

.cursor-testi {
    position: fixed;
    width: 80px;
    height: 80px;
    background-color: var(--black-2);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: 999;
}

@media (max-width: 1200px) {
    .cursor-testi {
        display: none;
    }
}

.cursor-testi.hide {
    opacity: 0;
    visibility: hidden;
}

.cursor-testi.play {
    width: 100px;
    height: 100px;
    mix-blend-mode: unset;
    background-color: var(--black-2);
}

.cursor-testi.play::after {
    position: absolute;
    content: "Play";
    color: var(--white);
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#featured_cursor {
    background: var(--white);
    color: var(--black-2);
}

@media (max-width: 1200px) {
    #client_cursor {
        display: none;
    }
}

.switcher__area {
    position: relative;
    direction: ltr;
}

@media only screen and (max-width: 767px) {
    .switcher__area {
        display: none;
    }
}

.switcher__icon {
    position: fixed;
    width: 50px;
    height: 50px;
    background: var(--white);
    right: 0;
    top: 40%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 999;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    mix-blend-mode: exclusion;
}

.switcher__icon button {
    font-size: 24px;
    color: var(--black-2);
    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;
    height: 100%;
    width: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.switcher__icon button:hover {
    color: var(--gray-2);
}

.switcher__icon button#switcher_open {
    -webkit-animation: wcSpinner 5s infinite linear;
    animation: wcSpinner 5s infinite linear;
}

.switcher__items {
    width: 280px;
    padding: 50px 30px;
    background: var(--black-2);
    position: fixed;
    right: -280px;
    top: 40%;
    z-index: 99;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Kanit", sans-serif;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.switcher__items .wc-col-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.switcher__item {
    margin-bottom: 30px;
}

.switcher__item:nth-child(2) {
    margin-bottom: 0;
}

.switcher__item:last-child {
    margin-bottom: 0;
    display: none;
}

.switcher__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: var(--white);
    text-transform: capitalize;
    padding-bottom: 10px;
}

.switcher__btn button {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-2);
    background: #2B2B2F;
    border-radius: 4px;
    padding: 10px 15px;
    text-transform: capitalize;
}

.switcher__btn button:hover, .switcher__btn button.active {
    color: var(--white);
}

.switcher__btn select {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-2);
    width: 100%;
    border: none;
    padding: 9px 10px;
    border-radius: 4px;
    background: #2B2B2F;
    text-transform: capitalize;
    outline: none;
    cursor: pointer;
}

#switcher_close {
    display: none;
}

.header__area {
    position: fixed;
    width: 100px;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9991;
    border-right: 1px solid rgba(240, 240, 240, 0.07);
    mix-blend-mode: exclusion;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .header__area {
        width: 62px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .header__area {
        width: 62px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .header__area {
        padding: 0 15px;
        width: 100%;
        height: auto;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .header__area {
        padding: 0 15px;
        width: 100%;
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    .header__area {
        padding: 0 15px;
        width: 100%;
        height: auto;
    }
}

.header__area button {
    display: block;
    margin-top: -58px;
    padding: 20px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .header__area button {
        margin-top: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .header__area button {
        margin-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .header__area button {
        margin-top: 0;
    }
}

.header__area-2 {
    padding: 3px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
}

.header__area-3 {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
}

.header__area-3.sticky-3 {
    background-color: var(--white);
    border-bottom: 1px solid var(--white-2);
}

.header__area-7 {
    padding: 3px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
}

.header__inner {
    padding: 50px 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 9;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .header__inner {
        padding: 10px 0;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns:(1fr) [12];
        grid-template-columns: repeat(12, 1fr);
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .header__inner {
        padding: 10px 0;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns:(1fr) [12];
        grid-template-columns: repeat(12, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .header__inner {
        padding: 5px 0;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns:(1fr) [12];
        grid-template-columns: repeat(12, 1fr);
    }
}

.header__inner-2, .header__inner-3 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 150px auto 150px;
    grid-template-columns: 150px auto 150px;
    padding: 0 30px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .header__inner-2, .header__inner-3 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .header__inner-2, .header__inner-3 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .header__inner-2, .header__inner-3 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 20px 15px;
    }
}

.header__inner-3 {
    padding: 10px 50px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .header__inner-3 {
        padding: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .header__inner-3 {
        padding: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .header__inner-3 {
        padding: 20px 15px;
    }
}

.header__nav-2 {
    text-align: right;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .header__nav-2 {
        display: none;
    }
}

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

@media only screen and (max-width: 767px) {
    .header__nav-2 {
        display: none;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .header__nav-icon {
        grid-column: -1;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .header__nav-icon {
        grid-column: -1;
    }
}

@media only screen and (max-width: 767px) {
    .header__nav-icon {
        grid-column: -1;
    }
}

.header__nav-icon-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 100%;
}

.header__nav-icon-2 .menu-icon-2::after {
    position: absolute;
    content: "";
    width: 180px;
    height: 180px;
    right: -60px;
    top: -60px;
    border: 1px solid var(--black-4);
    border-radius: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.header__nav-icon-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 100%;
}

.header__nav-icon-3 .search-icon {
    padding-top: 3px;
    padding-right: 50px;
    position: relative;
    font-size: 18px;
}

.header__nav-icon-3 .search-icon::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 20px;
    right: 25px;
    top: 5px;
    background-color: var(--white-2);
}

.header__nav-icon-3 #search_close {
    display: none;
    padding-right: 55px;
}

.header__nav-icon-3 img {
    margin-top: -5px;
}

.header__nav-icon-7 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 100%;
}

.header__nav-icon-7 .menu-icon-2::after {
    position: absolute;
    content: "";
    width: 180px;
    height: 180px;
    right: -60px;
    top: -60px;
    border: 1px solid var(--gray);
    border-radius: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.header__search {
    position: fixed;
    width: 300px;
    right: 60px;
    top: 90px;
    padding: 15px;
    background-color: var(--white-4);
    border-radius: 3px;
    z-index: 99991;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (max-width: 767px) {
    .header__search {
        right: 10px;
        top: 100px;
    }
}

.header__search.open-search {
    opacity: 1;
    visibility: visible;
    top: 70px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .header__search.open-search {
        top: 85px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .header__search.open-search {
        top: 85px;
    }
}

@media only screen and (max-width: 767px) {
    .header__search.open-search {
        top: 85px;
    }
}

.header__search input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--white-2);
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .header__support {
        -ms-grid-column: 11;
        grid-column: 11/11;
        -ms-grid-row: 1;
        grid-row: 1;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .header__support {
        -ms-grid-column: 11;
        grid-column: 11/11;
        -ms-grid-row: 1;
        grid-row: 1;
    }
}

@media only screen and (max-width: 767px) {
    .header__support {
        display: none;
    }
}

.header__support p {
    width: 215px;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.3;
    color: var(--gray-2);
    text-align: right;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .header__support p {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .header__support p {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@media only screen and (max-width: 767px) {
    .header__support p {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.header__support p a {
    display: inline-block;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    color: var(--white);
}

.header__logo-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sticky-2 .header__nav-icon-2 .menu-icon-2::after {
    width: 100px;
    height: 100px;
    right: -20px;
    top: -30px;
}

.sticky-2 .header__logo-5 img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.sticky-2 .header__nav-icon-5 {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.sticky-7 .header__nav-icon-7 .menu-icon-2::after {
    width: 100px;
    height: 100px;
    right: -20px;
    top: -30px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .logo-primary {
        display: none;
    }
}

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

@media only screen and (max-width: 767px) {
    .logo-primary {
        display: none;
    }
}

.logo-secondary {
    display: none;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .logo-secondary {
        display: block;
    }
}

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

@media only screen and (max-width: 767px) {
    .logo-secondary {
        display: block;
    }
}

.dark .menu-icon img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.offcanvas__area {
    background-color: var(--black-2);
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.offcanvas__body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 0.9fr 3fr 1.3fr;
    grid-template-columns: 0.9fr 3fr 1.3fr;
    height: 100%;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .offcanvas__body {
        -ms-grid-columns: 1.2fr 3fr 1.5fr;
        grid-template-columns: 1.2fr 3fr 1.5fr;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .offcanvas__body {
        -ms-grid-columns: 1.2fr 2fr 1.5fr;
        grid-template-columns: 1.2fr 2fr 1.5fr;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .offcanvas__body {
        -ms-grid-columns: 1.2fr 2.3fr 1.8fr;
        grid-template-columns: 1.2fr 2.3fr 1.8fr;
    }
}

@media only screen and (max-width: 767px) {
    .offcanvas__body {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.offcanvas__left {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 0.5fr 2.1fr 1fr;
    grid-template-rows: 0.5fr 2.1fr 1fr;
    border-right: 1px solid var(--black-4);
}

@media only screen and (max-width: 767px) {
    .offcanvas__left {
        display: none;
    }
}

.offcanvas__mid {
    overflow: hidden;
    overflow-y: auto;
}

@media only screen and (max-width: 767px) {
    .offcanvas__mid {
        margin-top: 75px;
    }
}

.offcanvas__mid::-webkit-scrollbar {
    width: 5px;
}

.offcanvas__mid::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px var(--black);
    box-shadow: inset 0 0 5px var(--black);
    border-radius: 10px;
}

.offcanvas__mid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.offcanvas__right {
    background-color: var(--black-4);
    padding: 0 50px;
    position: relative;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .offcanvas__right {
        padding: 0 30px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .offcanvas__right {
        padding: 0 30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .offcanvas__right {
        padding: 0 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .offcanvas__right {
        padding: 0 15px;
    }
}

@media only screen and (max-width: 767px) {
    .offcanvas__right {
        display: none;
    }
}

.offcanvas__right .shape-1 {
    position: absolute;
    bottom: 0;
    left: 125px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .offcanvas__right .shape-1 {
        left: 20px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .offcanvas__right .shape-1 {
        left: 0;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .offcanvas__right .shape-1 {
        left: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .offcanvas__right .shape-1 {
        left: 0;
    }
}

.offcanvas__right .shape-2 {
    position: absolute;
    bottom: 90px;
    right: 110px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .offcanvas__right .shape-2 {
        right: 30px;
    }
}

.offcanvas__logo {
    padding: 55px 0 55px 50px;
    border-bottom: 1px solid var(--black-4);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .offcanvas__logo {
        padding: 30px 0 30px 50px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .offcanvas__logo {
        padding: 30px 0 30px 15px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .offcanvas__logo {
        padding: 30px 0 30px 15px;
    }
}

.offcanvas__social {
    padding-left: 50px;
    padding-top: 220px;
    border-bottom: 1px solid var(--black-4);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .offcanvas__social {
        padding-left: 50px;
        padding-top: 30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .offcanvas__social {
        padding-left: 30px;
        padding-top: 50px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .offcanvas__social {
        padding-left: 15px;
        padding-top: 50px;
    }
}

.offcanvas__social .social-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5;
    color: var(--white);
    padding-bottom: 20px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .offcanvas__social .social-title {
        font-size: 20px;
    }
}

.offcanvas__social ul li {
    padding-bottom: 2px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .offcanvas__social ul li {
        padding-bottom: 5px;
    }
}

.offcanvas__social ul li a {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--white);
}

.offcanvas__social ul li a:hover {
    color: var(--gray-2);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .offcanvas__social ul li a {
        font-size: 16px;
    }
}

.offcanvas__links {
    padding-left: 50px;
    padding-top: 110px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .offcanvas__links {
        padding-left: 30px;
        padding-top: 30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .offcanvas__links {
        padding-left: 30px;
        padding-top: 40px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .offcanvas__links {
        padding-left: 15px;
        padding-top: 40px;
    }
}

.offcanvas__links ul li {
    padding-bottom: 2px;
}

.offcanvas__links ul li a {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--white);
}

.offcanvas__links ul li a:hover {
    color: var(--gray-2);
}

.offcanvas__close {
    position: absolute;
    right: 40px;
    top: 30px;
}

@media only screen and (max-width: 767px) {
    .offcanvas__close {
        right: 15px;
        top: 15px;
    }
}

.offcanvas__close button {
    font-size: 30px;
    width: 60px;
    height: 60px;
    color: var(--white);
    background: #232323;
    border-radius: 100%;
    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 0.3s;
    transition: all 0.3s;
}

.offcanvas__close button:hover {
    color: var(--gray-2);
}

@media only screen and (max-width: 767px) {
    .offcanvas__close button {
        font-size: 24px;
        width: 48px;
        height: 48px;
    }
}

.offcanvas__search {
    padding-top: 190px;
    padding-bottom: 140px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .offcanvas__search {
        padding-top: 140px;
        padding-bottom: 60px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .offcanvas__search {
        padding-top: 140px;
        padding-bottom: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .offcanvas__search {
        padding-top: 140px;
        padding-bottom: 60px;
    }
}

.offcanvas__search form {
    position: relative;
}

.offcanvas__search input {
    color: #585858;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    padding: 20px 45px 20px 20px;
    border-radius: 30px;
    border: 1px solid #3C3C3C;
    background-color: transparent;
    outline: none;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .offcanvas__search input {
        padding: 15px 40px 15px 15px;
    }
}

.offcanvas__search input::-webkit-input-placeholder {
    opacity: 1;
    color: #585858;
}

.offcanvas__search input::-moz-placeholder {
    opacity: 1;
    color: #585858;
}

.offcanvas__search input:-ms-input-placeholder {
    opacity: 1;
    color: #585858;
}

.offcanvas__search input::-ms-input-placeholder {
    opacity: 1;
    color: #585858;
}

.offcanvas__search input::placeholder {
    opacity: 1;
    color: #585858;
}

.offcanvas__search button {
    color: var(--white);
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 100%;
    border-radius: 0 100% 100% 0;
}

.offcanvas__contact h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5;
    color: var(--white);
    padding-bottom: 20px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .offcanvas__contact h3 {
        font-size: 20px;
    }
}

.offcanvas__contact li {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--white);
    padding-bottom: 7px;
    max-width: 260px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .offcanvas__contact li {
        font-size: 16px;
    }
}

.offcanvas__contact li a {
    color: var(--white);
}

.offcanvas__contact li a:hover {
    color: var(--gray-2);
}

.hero__area {
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.hero__area::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.hero__area .hero1_bg {
    position: absolute;
    bottom: 0;
    z-index: 0;
    left: 0;
    width: 100%;
    height: auto;
    -webkit-animation: wcRotate 18s infinite linear;
    animation: wcRotate 18s infinite linear;
}

.hero__area-2 {
    background-image: url("/assets/imgs/bg/lines.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--black-2);
    overflow: hidden;
    position: relative;
}

.hero__area-2 .hero2-shape {
    position: absolute;
    left: 30%;
    top: 41%;
    max-width: 41%;
    overflow: hidden;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__area-2 .hero2-shape {
        top: 37%;
        left: 33%;
        max-width: 36%;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__area-2 .hero2-shape {
        top: 32%;
        left: 31%;
        max-width: 40%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__area-2 .hero2-shape {
        left: 30%;
        top: 34%;
        max-width: 40%;
    }
}

@media only screen and (max-width: 767px) {
    .hero__area-2 .hero2-shape {
        left: 5%;
        top: 30%;
        max-width: 90%;
    }
}

.hero__area-2 .hero2-shape img {
    max-width: 100%;
}

.hero__area-2 .sec-title-3 {
    color: var(--white);
    padding-right: 30px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__area-2 .sec-title-3 {
        padding-top: 7px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__area-2 .sec-title-3 {
        padding-bottom: 40px;
        padding-right: 75px;
    }
}

.hero__area-2 .sec-title-3:last-child {
    text-align: right;
    padding-top: 110px;
    padding-right: 0;
    margin-top: 30px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .hero__area-2 .sec-title-3:last-child {
        padding-top: 90px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__area-2 .sec-title-3:last-child {
        padding-top: 90px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__area-2 .sec-title-3:last-child {
        padding-top: 50px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__area-2 .sec-title-3:last-child {
        padding-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__area-2 .sec-title-3:last-child {
        padding-top: 0;
    }
}

.hero__area-2 .sec-title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .hero__area-2 .sec-title-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.hero__area-2 .sec-title-wrapper .bg-shape {
    background-image: url("/assets/imgs/shape/10.png");
    background-repeat: no-repeat;
    background-position: right top;
}

.hero__area-3 {
    padding-top: 190px;
    padding-bottom: 125px;
    position: relative;
    overflow: hidden;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .hero__area-3 {
        padding-top: 160px;
        padding-bottom: 110px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__area-3 {
        padding-top: 140px;
        padding-bottom: 110px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__area-3 {
        padding-bottom: 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__area-3 {
        padding-top: 140px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__area-3 {
        padding-top: 130px;
        padding-bottom: 0;
    }
}

.hero__area-3::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url("/assets/imgs/shape/5.png");
    background-repeat: no-repeat;
    background-position: left;
    z-index: -1;
}

.hero__area-3::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    right: 50px;
    top: 140px;
    background-image: url("/assets/imgs/shape/6.png");
    background-repeat: no-repeat;
    background-position: right top;
}

.hero__area-3 .hero3-img {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .hero__area-3 .hero3-img {
        max-width: 1000px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__area-3 .hero3-img {
        max-width: 1000px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__area-3 .hero3-img {
        max-width: 800px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__area-3 .hero3-img {
        max-width: 760px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__area-3 .hero3-img {
        position: unset;
    }
}

.hero__area-3 .hero3-img-anim {
    overflow: hidden;
    position: relative;
    width: 350px;
    height: 100%;
}

.hero__area-3 .hero3-img-anim img {
    position: absolute;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 150%;
    margin-left: auto;
    margin-right: auto;
}

.hero__area-3 .sec-title-wrapper {
    display: inline-block;
    position: unset;
}

.hero__area-3 .sec-sub-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-2);
    position: relative;
    display: inline-block;
    padding-right: 30px;
    padding-bottom: 0px;
    text-transform: uppercase;
    z-index: 2;
}

@media only screen and (max-width: 767px) {
    .hero__area-3 .sec-sub-title {
        padding-bottom: 15px;
    }
}

.hero__area-3 .sec-sub-title::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 1px;
    left: 100%;
    top: 12px;
    background-color: var(--black-2);
}

.hero__area-3 .sec-title {
    z-index: 2;
    font-weight: 600;
    font-size: 306px;
    line-height: 0.82;
    text-transform: uppercase;
    color: var(--black-2);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .hero__area-3 .sec-title {
        font-size: 260px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__area-3 .sec-title {
        font-size: 260px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__area-3 .sec-title {
        font-size: 180px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__area-3 .sec-title {
        font-size: 130px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__area-3 .sec-title {
        font-size: 90px;
    }
}

.hero__area-3 .title-right {
    position: absolute;
    right: 0;
}

.hero__area-3 .wrapper {
    --clip-path: circle(65px at left);
    --clip-path-hover: circle(70px at left);
    --clip-path-clicked: circle(100vw at left);
    --duration: .4s;
    --timing-function: ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__area-3 .wrapper {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .hero__area-3 .wrapper {
        display: none;
    }
}

.hero__area-3 .video-info {
    width: 300px;
    position: relative;
    left: 500px;
    top: -115px;
    height: 200px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__area-3 .video-info {
        left: 200px;
        top: -50px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__area-3 .video-info {
        left: 280px;
        top: -235px;
    }
}

.hero__area-3 .video {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-clip-path: var(--clip-path);
    clip-path: var(--clip-path);
    -webkit-transition: -webkit-clip-path var(--duration) var(--timing-function);
    transition: -webkit-clip-path var(--duration) var(--timing-function);
    transition: clip-path var(--duration) var(--timing-function);
    transition: clip-path var(--duration) var(--timing-function), -webkit-clip-path var(--duration) var(--timing-function);
    position: relative;
    top: 55px;
    left: 100px;
}

.hero__area-3 .video::before {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    background: url("/assets/imgs/icon/play-icon.png");
    content: "";
    z-index: 999999999999;
    background-size: 100%;
}

.hero__area-3 .video video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: auto;
    width: auto;
    height: auto;
}

.hero__area-3 .intro-title {
    position: relative;
    left: 175px;
    top: 70px;
}

.hero__area-3 .intro-title .video-title {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.3;
}

.hero__area-3 .intro-title .video-title span {
    display: block;
    font-size: 18px;
}

.hero__area-3 .intro-title .video-title.close-video-title {
    display: none;
}

.hero__area-3 #video_check {
    width: 200px;
    height: 200px;
    margin: auto;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    border-radius: 40px;
    outline: none;
    z-index: 2;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    z-index: 9999999;
}

.hero__area-3 #video_check:focus {
    outline: 0;
}

.hero__area-3 #video_check:hover ~ .video {
    -webkit-clip-path: var(--clip-path-hover);
    clip-path: var(--clip-path-hover);
}

.hero__area-3 #video_check:hover ~ .text::before {
    --r: 25px;
    --opacity: 1;
}

.hero__area-3 #video_check:hover ~ .text::after {
    -webkit-clip-path: var(--clip-path-hover);
    clip-path: var(--clip-path-hover);
}

.hero__area-3 #video_check:hover ~ .text > span::after {
    -webkit-clip-path: var(--clip-path-hover);
    clip-path: var(--clip-path-hover);
}

.hero__area-3 #video_check:checked {
    width: 100%;
    height: 100%;
    border-radius: 0;
    top: 0;
    left: 0;
    bottom: 0;
}

.hero__area-3 #video_check:checked ~ .video {
    -webkit-clip-path: var(--clip-path-clicked);
    clip-path: var(--clip-path-clicked);
}

.hero__area-3 #video_check:checked ~ .text {
    --opacity: 0;
    -webkit-transition: opacity 0.3s var(--timing-function);
    transition: opacity 0.3s var(--timing-function);
}

.hero__area-3 #video_check:checked ~ .text::after {
    -webkit-clip-path: var(--clip-path-clicked);
    clip-path: var(--clip-path-clicked);
}

.hero__area-3 #video_check:checked ~ .text > span::after {
    -webkit-clip-path: var(--clip-path-clicked);
    clip-path: var(--clip-path-clicked);
}

.hero__area-3.start-video .hero3-img {
    opacity: 0;
}

.hero__area-3.start-video .sec-title, .hero__area-3.start-video .sec-sub-title, .hero__area-3.start-video .hero__text-3 p, .hero__area-3.start-video .intro-title .video-title {
    color: var(--white-4);
}

.hero__area-3.start-video .sec-sub-title::after {
    background-color: var(--white);
}

.hero__area-4 {
    padding-top: 110px;
    height: 100%;
}

@media only screen and (min-width: 1920px) {
    .hero__area-4 {
        height: 100vh;
    }
}

@media only screen and (max-width: 767px) {
    .hero__area-4 {
        padding-top: 60px;
    }
}

.hero__area-10 {
    height: 100vh;
    padding: 90px 30px 0;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .hero__area-10 {
        padding: 120px 30px 0;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__area-10 {
        padding: 100px 30px 0;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__area-10 {
        padding: 100px 20px 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__area-10 {
        padding: 100px 20px 0;
    }
}

@media only screen and (max-width: 767px) {
    .hero__area-10 {
        padding: 100px 15px 0;
    }
}

.hero__content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100vw;
    height: 100vh;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 0;
    z-index: 1;
}

.hero__content-wrapper .text {
    mix-blend-mode: difference;
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.hero__plane {
    width: 100%;
    height: 100vh;
}

.hero__plane img {
    display: none;
}

.hero__inner-2 {
    padding: 220px 100px 0;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__inner-2 {
        padding: 140px 100px 0;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__inner-2 {
        padding: 120px 50px 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__inner-2 {
        padding: 160px 30px 60px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__inner-2 {
        padding: 120px 15px 60px;
    }
}

.hero__inner-3 {
    position: relative;
}

.hero__inner-3 .scroll-down {
    margin-top: 100px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__inner-3 .scroll-down {
        margin-top: 40px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__inner-3 .scroll-down {
        margin-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .hero__inner-3 .scroll-down {
        display: none;
    }
}

.hero__inner-3 .scroll-down button {
    border: 1px solid var(--gray-3);
    padding: 25px 10px;
    border-radius: 30px;
    -webkit-animation: wcSlideBottom 7s infinite linear;
    animation: wcSlideBottom 7s infinite linear;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__inner-3 .scroll-down button {
        border-color: var(--white);
    }

    .hero__inner-3 .scroll-down button img {
        -webkit-filter: invert(1);
        filter: invert(1);
    }
}

.hero__text-2 {
    background-image: url("/assets/imgs/icon/7.png");
    background-repeat: no-repeat;
    background-position: 64% 58%;
    padding-left: 32%;
    -webkit-transform: translateY(-30%);
    transform: translateY(-30%);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .hero__text-2 {
        padding-left: 30%;
        -webkit-transform: translateY(-30%);
        transform: translateY(-30%);
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__text-2 {
        padding-left: 20%;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__text-2 {
        padding-left: 15%;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__text-2 {
        padding-left: 5%;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@media only screen and (max-width: 767px) {
    .hero__text-2 {
        padding-left: 0;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.hero__text-2 p {
    max-width: 330px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--white);
    padding-bottom: 5px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__text-2 p {
        max-width: 380px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__text-2 p {
        padding-bottom: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__text-2 p {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__text-2 p {
        padding-bottom: 40px;
    }
}

.hero__text-3 {
    max-width: 320px;
    padding-top: 90px;
    position: relative;
    z-index: 9;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .hero__text-3 {
        -webkit-transform: translateY(-30%);
        transform: translateY(-30%);
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__text-3 {
        padding-top: 50px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__text-3 {
        padding-top: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__text-3 {
        padding-bottom: 80px;
        padding-top: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__text-3 {
        padding-bottom: 30px;
    }
}

.hero__text-3 p {
    font-size: 18px;
    line-height: 1.4;
}

.hero__content {
    padding-top: 200px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .hero__content {
        padding-top: 80px;
        padding-bottom: 50px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__content {
        padding-top: 80px;
        padding-bottom: 50px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__content {
        padding-top: 120px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__content {
        padding-top: 125px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__content {
        padding-top: 150px;
    }
}

.hero__content a {
    display: inline-block;
    max-width: 300px;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: var(--white);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--white);
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
}

.hero__content a:hover i {
    -webkit-transform: translate(20px, -20px) rotate(-45deg);
    transform: translate(20px, -20px) rotate(-45deg);
}

.hero__content a:hover span::after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(20px, -20px) rotate(-45deg);
    transform: translate(20px, -20px) rotate(-45deg);
}

.hero__content a span {
    position: absolute;
    top: 0;
    right: 0;
}

.hero__content a span i {
    -webkit-transform: translate(0, 0) rotate(-45deg);
    transform: translate(0, 0) rotate(-45deg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.hero__content a span::after {
    position: absolute;
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    left: -20px;
    bottom: -20px;
    -webkit-transform: translate(0, 0) rotate(-45deg);
    transform: translate(0, 0) rotate(-45deg);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__content img {
        max-width: 120px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__content img {
        max-width: 120px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__content img {
        max-width: 60px;
    }
}

.hero__content .experience {
    position: absolute;
    right: 30px;
    bottom: 70px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__content .experience {
        bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__content .experience {
        position: unset;
    }
}

.hero__content .experience .title {
    font-weight: 400;
    font-size: 50px;
    line-height: 1.3;
    color: var(--white);
}

.hero__content .experience p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--white);
}

.hero__title {
    font-weight: 500;
    font-size: 150px;
    line-height: 1;
    color: var(--white);
    margin-top: 55px;
    position: relative;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__title {
        font-size: 100px;
        line-height: 0.9;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__title {
        font-size: 100px;
        line-height: 0.9;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__title {
        font-size: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__title {
        font-size: 48px;
    }
}

.hero__title::after {
    position: absolute;
    content: "Pro";
    width: 70px;
    height: 45px;
    right: -80px;
    top: 70px;
    border: 2px solid var(--white);
    border-radius: 15px;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    color: var(--white);
    text-align: center;
    padding-top: 4px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__title::after {
        right: -30px;
        top: 35px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__title::after {
        right: 60px;
        top: 35px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__title::after {
        right: 95px;
        top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__title::after {
        right: 0;
        top: -40px;
    }
}

.hero__title-wrapper {
    max-width: 990px;
    position: relative;
    margin-bottom: 105px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__title-wrapper {
        max-width: 700px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__title-wrapper {
        max-width: 800px;
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__title-wrapper {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__title-wrapper {
        margin-bottom: 0;
    }
}

.hero__sub-title {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--gray-3);
    max-width: 410px;
    position: absolute;
    right: 60px;
    bottom: 15px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__sub-title {
        bottom: -10px;
        right: -30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__sub-title {
        bottom: -10px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__sub-title {
        font-size: 16px;
        bottom: -10px;
        right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__sub-title {
        position: unset;
        padding-top: 15px;
    }
}

.hero__sub-title span {
    color: var(--white);
}

.hero__about {
    background-image: url("/assets/imgs/about/about-bg.png");
    background-repeat: no-repeat;
    background-position: top right;
    overflow: hidden;
}

.hero__about-content {
    padding-top: 170px;
}

@media only screen and (max-width: 767px) {
    .hero__about-content {
        padding-top: 250px;
    }
}

.hero__about-content .hero-title {
    padding-bottom: 60px;
}

@media only screen and (max-width: 767px) {
    .hero__about-content .hero-title {
        padding-bottom: 30px;
    }
}

.hero__about-info {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 2.5fr 30px 2.5fr;
    grid-template-columns: 1fr 2.5fr 2.5fr;
    padding-bottom: 80px;
    grid-gap: 30px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__about-info {
        -ms-grid-columns: 1fr 30px 2.5fr 30px 2fr;
        grid-template-columns: 1fr 2.5fr 2fr;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__about-info {
        -ms-grid-columns: 1fr 20px 2.5fr 20px 1fr;
        grid-template-columns: 1fr 2.5fr 1fr;
        grid-gap: 20px;
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__about-info {
        padding-bottom: 60px;
    }
}

.hero__about-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .hero__about-text {
        grid-column: 1/-1;
        -ms-grid-row: 1;
        grid-row: 1;
        margin-bottom: 20px;
    }
}

.hero__about-text p {
    font-size: 18px;
    line-height: 1.4;
    padding-left: 80px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__about-text p {
        padding-left: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__about-text p {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .hero__about-text p {
        padding-left: 0;
    }
}

.hero__about-award {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.hero__about-award::before {
    position: absolute;
    content: "";
    left: 75px;
    top: 50%;
    width: 250px;
    height: 1px;
    background-color: var(--white-4);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__about-award::before {
        left: 30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__about-award::before {
        width: 150px;
        left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .hero__about-award {
        position: absolute;
        top: 150px;
    }
}

.hero__about-video {
    margin-bottom: -10px;
    height: 800px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .hero__about-video {
        height: 700px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__about-video {
        height: 650px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__about-video {
        height: 600px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__about-video {
        height: 470px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__about-video {
        height: auto;
    }
}

.hero__about-video iframe, .hero__about-video video {
    width: 100%;
    height: auto;
}

.hero__about-row {
    position: inherit;
    margin-right: -310px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .hero__about-row {
        margin-right: -50px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__about-row {
        margin-right: -150px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__about-row {
        margin-right: -150px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__about-row {
        margin-right: -120px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__about-row {
        margin-right: calc(-0.5 * var(--bs-gutter-x));
    }
}

.hero__link {
    display: inline-block;
    max-width: 300px;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: var(--white);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--white);
    position: absolute;
    top: 190px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
}

.hero__link:hover i {
    -webkit-transform: translate(20px, -20px) rotate(-45deg);
    transform: translate(20px, -20px) rotate(-45deg);
}

.hero__link:hover span::after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(20px, -20px) rotate(-45deg);
    transform: translate(20px, -20px) rotate(-45deg);
}

.hero__link span {
    position: absolute;
    top: 0;
    right: 0;
}

.hero__link span i {
    -webkit-transform: translate(0, 0) rotate(-45deg);
    transform: translate(0, 0) rotate(-45deg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.hero__link span::after {
    position: absolute;
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    left: -20px;
    bottom: -20px;
    -webkit-transform: translate(0, 0) rotate(-45deg);
    transform: translate(0, 0) rotate(-45deg);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#hero_texture {
    position: relative;
}

#hero_canvas {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hero__content-8 {
    padding-top: 80px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__content-8 {
        padding-top: 50px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__content-8 {
        padding-top: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__content-8 {
        padding-top: 80px;
        text-align: center;
    }
}

.hero__content-8 .discription {
    padding-top: 40px;
    font-size: 18px;
    max-width: 330px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__content-8 .discription {
        padding-top: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__content-8 .discription {
        padding-top: 30px;
        padding-bottom: 30px;
        max-width: 100%;
    }
}

.hero__content-8 .scroll-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 300px auto;
    grid-template-columns: 300px auto;
}

@media only screen and (max-width: 767px) {
    .hero__content-8 .scroll-wrapper {
        display: block;
    }
}

.hero__content-8 .scroll-down {
    position: relative;
    padding-left: 100px;
    margin-top: 30px;
}

@media only screen and (max-width: 767px) {
    .hero__content-8 .scroll-down {
        display: none;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__content-8 .scroll-down {
        padding-left: 120px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__content-8 .scroll-down {
        padding-left: 120px;
    }
}

.hero__content-8 .scroll-down span {
    position: absolute;
    left: 105px;
    top: -45px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    font-size: 14px;
    text-transform: uppercase;
}

.hero__content-8 .scroll-down img {
    -webkit-animation: wcSlideBottom 3s infinite;
    animation: wcSlideBottom 3s infinite;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__content-8 .scroll-down img {
        max-height: 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__content-8 .scroll-down img {
        max-height: 100px;
    }
}

.portfolio__big {
    text-align: center;
    padding-bottom: 395px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__big {
        padding-bottom: 200px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__big {
        padding-bottom: 120px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__big {
        padding-bottom: 120px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__big {
        padding-bottom: 60px;
    }
}

.portfolio__big img {
    margin-top: -90px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__big img {
        margin-top: 90px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__big img {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__big img {
        margin-top: 0;
    }
}

.portfolio__big-inner {
    background-position: center center;
    background-size: cover;
    height: calc(100vh - 80px);
    width: 600px;
    overflow: hidden;
    margin: 0 auto;
    margin-top: -100px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__big-inner {
        margin-top: 50px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__big-inner {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__big-inner {
        margin-top: 10px;
    }
}

.portfolio__big-inner img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.bodypadding {
    padding: 110px 100px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .bodypadding {
        padding: 70px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .bodypadding {
        padding: 30px 15px;
    }
}

.bodypadding-2 {
    padding: 120px 50px;
}

@media only screen and (max-width: 767px) {
    .bodypadding-2 {
        padding: 30px 15px;
    }
}

.dark .hero__content-8 .scroll-down img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .hero__content-8 .scroll-down span {
    color: var(--white);
}

.roll__area {
    background-color: var(--primary);
    padding: 31px 10px;
}

.roll__area-2 {
    padding: 31px 10px;
    background-color: var(--black-2);
}

.roll__area-2 .roll__slide h2 {
    color: var(--white);
}

.roll__area-3 {
    padding: 31px 10px;
    background-color: var(--pink-2);
}

.roll__area-3 .roll__slide h2 {
    color: var(--black-2);
}

.roll__wrapper {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.roll__slide {
    text-align: center;
}

.roll__slide h2 {
    font-weight: 400;
    font-size: 26px;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--black);
}

.contact_wrap {
    position: relative;
}

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

.contact_wrap:hover .link {
    opacity: 1;
    visibility: visible;
}

.contact_wrap .link {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 18px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: var(--black-2);
    border-radius: 100%;
    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;
    color: var(--white);
    text-transform: capitalize;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 1365px) {
    .contact_wrap .link {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 1365px) {
    .contact_wrap .link {
        opacity: 1;
        visibility: visible;
    }
}

.rollslide_wrap {
    text-align: center;
    overflow: hidden;
    margin-bottom: -10px;
}

.rollslide_title {
    color: var(--black-2);
    font-size: 250px;
    line-height: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-transform: uppercase;
}

.rollslide_title-1 {
    color: var(--black-2);
    font-size: 245px;
    line-height: 0.75;
    text-transform: uppercase;
}

.rollslide_title-1 span {
    font-family: "newYork";
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .rollslide_title-1 {
        font-size: 160px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .rollslide_title-1 {
        font-size: 120px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1600px) {
    .rollslide_title-1 {
        font-size: 150px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .rollslide_title-1 {
        font-size: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .rollslide_title-1 {
        font-size: 48px;
    }
}

.rollslide_title:hover {
    color: var(--black-3);
}

.rollslide_title span {
    font-weight: 400;
    font-family: "newYork";
}

@media only screen and (max-width: 767px) {
    .rollslide_title {
        font-size: 48px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .rollslide_title {
        font-size: 100px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .rollslide_title {
        font-size: 120px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1600px) {
    .rollslide_title {
        font-size: 180px;
    }
}

@media only screen and (max-width: 767px) {
    footer .contact_wrap {
        margin-top: 40px;
    }
}

.dark .rollslide_title-1 {
    color: var(--white);
}

.dark .contact_wrap:hover .link {
    color: var(--black-2);
    background-color: var(--white);
}

@media (max-width: 1365px) {
    .dark .contact_wrap .link {
        color: var(--black-2);
        background-color: var(--white);
    }
}

.about__area {
    overflow: hidden;
    background-color: var(--white);
}

.about__area .sec-title {
    max-width: 770px;
    position: relative;
    z-index: 9;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about__area .sec-title {
        max-width: 660px;
    }
}

.about__area-2 {
    overflow: hidden;
    background-color: var(--black-2);
    background-image: url("/assets/imgs/shape/2.png");
    background-repeat: no-repeat;
    background-position: 0 31%;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .about__area-2 {
        background-position: 0 40%;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .about__area-2 {
        background-position: 0 37%;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .about__area-2 {
        background-position: 0 39%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about__area-2 {
        background-position: -15% 47%;
    }
}

@media only screen and (max-width: 767px) {
    .about__area-2 {
        background-size: 0;
    }
}

.about__area-2 .sec-title {
    color: var(--white);
}

.about__area-2 .sec-title-wrapper {
    max-width: 770px;
    padding-bottom: 70px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .about__area-2 .sec-title-wrapper {
        max-width: 600px;
    }
}

@media only screen and (max-width: 767px) {
    .about__area-2 .sec-title-wrapper {
        padding-bottom: 50px;
    }
}

.about__area-2 .sec-text {
    max-width: 440px;
}

@media only screen and (max-width: 767px) {
    .about__area-2 .sec-text {
        padding-bottom: 40px;
    }
}

.about__area-2 .sec-text p {
    font-size: 18px;
    line-height: 1.4;
    color: var(--gray-2);
}

.about__area-2 .sec-text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    gap: 215px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .about__area-2 .sec-text-wrapper {
        gap: 50px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about__area-2 .sec-text-wrapper {
        gap: 50px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 767px) {
    .about__area-2 .sec-text-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 50px;
    }
}

.about__area-2 #btn_wrapper, .about__area-2 .btn_wrapper {
    margin-left: 0;
    margin-right: -40px;
    margin-top: -50px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about__area-2 #btn_wrapper, .about__area-2 .btn_wrapper {
        margin-left: auto;
        margin-right: 0;
        margin-top: -20px;
    }
}

.about__area-3 {
    background-image: url("/assets/imgs/shape/7.png");
    background-repeat: no-repeat;
    background-position: 100% 30%;
    background-color: var(--black-2);
    position: relative;
}

.about__area-3::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    left: 60%;
    bottom: 0px;
    background-color: var(--black-5);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .about__area-3::after {
        left: 55%;
    }
}

@media only screen and (max-width: 767px) {
    .about__area-3::after {
        width: 0;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .about__area-3 .pt-140 {
        padding-top: 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about__area-3 .pt-140 {
        padding-top: 90px;
    }
}

.about__area-3 .sec-title {
    color: var(--white);
    text-transform: uppercase;
    padding-bottom: 40px;
    background-color: var(--black-2);
}

.about__area-3 .sec-sub-title {
    color: var(--white);
    text-transform: uppercase;
    padding-top: 45px;
    background-color: var(--black-2);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about__area-3 .sec-sub-title {
        padding-top: 0;
    }
}

.about__area-3 .sec-text p {
    max-width: 410px;
    font-size: 18px;
    line-height: 1.4;
    color: var(--gray-2);
    padding-bottom: 22px;
}

@media only screen and (max-width: 767px) {
    .about__area-3 .sec-text p {
        padding-bottom: 50px;
    }
}

.about__area-3 .sec-text-wrapper {
    padding-left: 210px;
    padding-top: 45px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .about__area-3 .sec-text-wrapper {
        padding-left: 160px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .about__area-3 .sec-text-wrapper {
        padding-left: 160px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .about__area-3 .sec-text-wrapper {
        padding-left: 65px;
        padding-top: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about__area-3 .sec-text-wrapper {
        padding-left: 0;
        padding-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .about__area-3 .sec-text-wrapper {
        padding-left: 0;
        padding-top: 15px;
    }
}

.about__area-8 .about-sub-right {
    color: var(--black-7);
    padding-bottom: 10px;
}

.about__title-wrapper {
    padding-left: 190px;
    padding-bottom: 60px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about__title-wrapper {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .about__title-wrapper {
        padding-left: 0;
    }
}

.about__content {
    padding-top: 65px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about__content {
        padding-top: 5px;
    }
}

@media only screen and (max-width: 767px) {
    .about__content {
        padding-top: 50px;
    }
}

.about__content p {
    max-width: 440px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--black-3);
    margin-bottom: 60px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .about__content p {
        max-width: 90%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about__content p {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .about__content p {
        margin-bottom: 30px;
    }
}

.about__content-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 80px 1.8fr;
    grid-template-columns: 1fr 1.8fr;
    grid-gap: 80px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .about__content-wrapper {
        grid-gap: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about__content-wrapper {
        -ms-grid-columns: 1fr 30px 1.5fr;
        grid-template-columns: 1fr 1.5fr;
        grid-gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .about__content-wrapper {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
}

.about__img img {
    width: 100%;
    overflow: hidden;
}

.about__img-right {
    position: absolute;
    right: 0;
    top: 280px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about__img-right {
        position: relative;
        top: 30px;
        right: unset;
    }
}

@media only screen and (max-width: 767px) {
    .about__img-right {
        position: relative;
        top: 30px;
        right: unset;
    }
}

.about__img-right img {
    width: auto;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .about__img-right img {
        display: none;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about__img-right img {
        display: none;
    }
}

.about__img-2 {
    max-width: 1720px;
    margin: 0 auto;
    overflow: hidden;
    max-height: 800px;
    margin-bottom: 140px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .about__img-2 {
        margin-bottom: 35px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about__img-2 {
        margin-bottom: 22px;
    }
}

@media only screen and (max-width: 767px) {
    .about__img-2 {
        margin-bottom: 0;
    }
}

.about__img-2 img {
    width: 100%;
}

.about__img-3 {
    overflow: hidden;
    position: relative;
    width: calc(100% - 85px);
    height: 770px;
}

.about__img-3 img {
    position: absolute;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 110%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .about__img-3 {
        overflow: hidden;
        position: relative;
        width: calc(100% - 40px);
        height: 660px;
    }

    .about__img-3 img {
        position: absolute;
        bottom: 0;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: 120%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .about__img-3 {
        width: 100%;
        height: unset;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about__img-3 {
        width: 100%;
        height: unset;
    }
}

@media only screen and (max-width: 767px) {
    .about__img-3 {
        width: 100%;
        height: unset;
    }
}

.about__img-3 img {
    width: 100%;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .about__img-3 img {
        position: unset;
        height: auto;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about__img-3 img {
        position: unset;
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    .about__img-3 img {
        position: unset;
        height: auto;
    }
}

.portfolio__item {
    -webkit-transform: perspective(4000px) rotateX(90deg);
    transform: perspective(4000px) rotateX(90deg);
}

.section_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: capitalize;
    position: relative;
    margin-top: -25px;
    margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
    .section_wrapper {
        margin-bottom: 30px;
    }
}

.section_wrapper::before {
    content: "";
    position: absolute;
    bottom: 48%;
    left: 60px;
    height: 1px;
    width: calc(100% - 60px);
    background-color: var(--gray-11);
}

@media only screen and (max-width: 767px) {
    .section_wrapper::before {
        left: 48px;
        width: calc(100% - 48px);
    }
}

.react_border {
    position: relative;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    display: inline-block;
    background-color: transparent;
    border: 1px solid var(--gray-11);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media only screen and (max-width: 767px) {
    .react_border {
        height: 40px;
        width: 40px;
        line-height: 36px;
    }
}

.react_border span {
    font-weight: 400;
    font-size: 16px;
    color: var(--black-2);
    display: inline-block;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.about8__title {
    text-indent: 105px;
    font-weight: 500;
    font-size: 80px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--black-2);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .about8__title {
        font-size: 72px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .about8__title {
        font-size: 60px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .about8__title {
        font-size: 48px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about8__title {
        font-size: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .about8__title {
        font-size: 36px;
        text-indent: 50px;
    }
}

.about8__title a {
    color: var(--black-2);
    font-family: "newYork";
    position: relative;
}

.about8__title a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 10px;
    background-color: var(--black-2);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about8__title a::after {
        bottom: 3px;
    }
}

@media only screen and (max-width: 767px) {
    .about8__title a::after {
        bottom: 3px;
    }
}

.about8__content {
    float: right;
}

.about8__content p {
    line-height: 1.3;
    max-width: 515px;
    text-indent: 65px;
    font-size: 24px;
    margin-bottom: 60px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .about8__content p {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about8__content p {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .about8__content p {
        font-size: 18px;
        margin-bottom: 30px;
        line-height: 1.5;
    }
}

.workitems {
    display: -ms-grid;
    display: grid;
    grid-gap: 50px;
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .workitems {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .workitems {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .workitems {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.work8:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 100px;
}

@media only screen and (max-width: 767px) {
    .work8:nth-child(2) {
        margin-top: 0;
    }
}

.work8:nth-child(3) {
    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;
}

.work8:nth-child(4) {
    margin-left: 50px;
    margin-bottom: 100px;
}

@media only screen and (max-width: 767px) {
    .work8:nth-child(4) {
        margin: 0;
    }
}

.work8:nth-child(5) {
    margin-top: 100px;
}

@media only screen and (max-width: 767px) {
    .work8:nth-child(5) {
        margin: 0;
    }
}

.work8:nth-child(6) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

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

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .work8 {
        margin-bottom: 50px;
    }
}

.work8 img {
    max-width: 100%;
}

.work8__title {
    width: 320px;
    margin-bottom: 120px;
    padding-top: 90px;
    margin-left: 440px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .work8__title {
        margin-bottom: 90px;
        padding-top: 70px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .work8__title {
        margin-left: 165px;
        margin-bottom: 90px;
        padding-top: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .work8__title {
        margin-left: 40px;
        margin-bottom: 90px;
        padding-top: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .work8__title {
        margin-bottom: 40px;
        margin-left: 20px;
        padding-top: 40px;
    }
}

.work8__title p {
    font-size: 18px;
    text-indent: 65px;
    font-weight: 400;
    color: var(--black-2);
}

.work8__content {
    padding-top: 30px;
}

@media only screen and (max-width: 767px) {
    .work8__content {
        padding-top: 20px;
    }
}

.work8__content p {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--black-3);
}

.work8__content__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--black-2);
    padding-bottom: 5px;
}

.work8__content__title span {
    font-family: "newYork";
}

.work8__btn {
    text-align: center;
    margin-top: 115px;
    margin-bottom: 160px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .work8__btn {
        margin-top: 60px;
        margin-bottom: 120px;
    }
}

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

@media only screen and (max-width: 767px) {
    .work8__btn {
        margin-top: 50px;
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .work__area-8 {
        margin-bottom: 50px;
    }
}

.about__area-8 {
    padding-bottom: 170px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .about__area-8 {
        padding-bottom: 90px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about__area-8 {
        padding-bottom: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .about__area-8 {
        padding-bottom: 80px;
    }
}

.dark .react_border span {
    color: var(--white);
}

.dark .about8__title, .dark .about8__title a, .dark .work8__title p, .dark .work8__content__title, .dark .about__area-8 .about-sub-right {
    color: var(--white);
}

.dark .work8__content p {
    color: var(--gray-2);
}

.service__area {
    background-color: var(--black-2);
    overflow: hidden;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__area.pb-150 {
        padding-bottom: 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__area.pb-150 {
        padding-bottom: 90px;
    }
}

.service__area a:first-child .service__item {
    border-top: 1px solid var(--secondary);
}

.service__area .sec-title, .service__area .sec-sub-title {
    color: var(--white);
}

.service__area .sec-title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.service__area-2 {
    background-color: var(--pink);
}

@media only screen and (max-width: 767px) {
    .service__area-2 {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .service__area-2 .sec-text {
        padding-bottom: 30px;
    }
}

.service__area-2 .sec-text p {
    font-size: 18px;
    line-height: 1.4;
    color: var(--black-2);
    max-width: 410px;
}

.service__area-3 {
    overflow: hidden;
}

.service__area-3 .sec-title {
    padding-bottom: 40px;
    text-transform: uppercase;
    background-color: var(--white);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__area-3 .sec-title {
        padding-bottom: 0;
    }
}

.service__area-3 .sec-title-wrapper {
    position: relative;
    padding-left: 330px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__area-3 .sec-title-wrapper {
        padding-left: 200px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__area-3 .sec-title-wrapper {
        padding-left: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .service__area-3 .sec-title-wrapper {
        padding-left: 0;
    }
}

.service__area-3 .sec-title-wrapper::after {
    position: absolute;
    content: "";
    left: 40%;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: var(--white-2);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__area-3 .sec-title-wrapper::after {
        left: 30%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__area-3 .sec-title-wrapper::after {
        left: 30%;
    }
}

@media only screen and (max-width: 767px) {
    .service__area-3 .sec-title-wrapper::after {
        width: 0;
    }
}

.service__area-3 .sec-title-wrapper p {
    padding-top: 70px;
    padding-bottom: 60px;
    max-width: 410px;
    font-size: 18px;
    line-height: 1.4;
    margin-left: 220px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__area-3 .sec-title-wrapper p {
        margin-left: 120px;
        padding-top: 30px;
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__area-3 .sec-title-wrapper p {
        margin-left: 120px;
    }
}

@media only screen and (max-width: 767px) {
    .service__area-3 .sec-title-wrapper p {
        margin-left: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.service__area-3 .sec-sub-title {
    padding-top: 50px;
    text-transform: uppercase;
    background-color: var(--white);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__area-3 .sec-sub-title {
        padding-top: 5px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__area-3 .sec-sub-title {
        padding-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .service__area-3 .sec-sub-title {
        padding-top: 0;
    }
}

.service__area-6 {
    padding-left: 100px;
    background-color: var(--black-2);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .service__area-6 {
        padding-left: 70px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__area-6 {
        padding-top: 100px;
        padding-left: 88px;
        padding-bottom: 40px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__area-6 {
        padding-top: 90px;
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .service__area-6 {
        padding-bottom: 0;
        padding-left: 0;
    }
}

.service__area-6 .inherit-row {
    margin-left: -180px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .service__area-6 .inherit-row {
        margin-left: calc(-0.5 * var(--bs-gutter-x));
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .service__area-6 .inherit-row {
        margin-left: calc(-0.5 * var(--bs-gutter-x));
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__area-6 .inherit-row {
        margin-left: calc(-0.5 * var(--bs-gutter-x));
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__area-6 .inherit-row {
        margin-left: calc(-0.5 * var(--bs-gutter-x));
    }
}

@media only screen and (max-width: 767px) {
    .service__area-6 .inherit-row {
        margin-left: calc(-0.5 * var(--bs-gutter-x));
    }
}

.service__area-6 .content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 767px) {
    .service__area-6 .content-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.service__area-6 .left-content {
    width: 20%;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__area-6 .left-content {
        width: 35%;
        padding-left: 50px;
        display: none;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__area-6 .left-content {
        width: 30%;
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .service__area-6 .left-content {
        display: none;
    }
}

.service__area-6 .right-content {
    width: 40%;
    padding-left: 80px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .service__area-6 .right-content {
        padding-left: 40px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .service__area-6 .right-content {
        padding-left: 0;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__area-6 .right-content {
        width: 100%;
        padding-left: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__area-6 .right-content {
        width: 100%;
        padding-left: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .service__area-6 .right-content {
        width: 100%;
        padding-left: 0;
    }
}

.service__area-6 .mid-content {
    width: 40%;
    height: 100vh;
    position: relative;
}

.service__area-6 .mid-content .service__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service__area-6 .mid-content .service__image img {
    width: auto;
    height: 100vh;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__area-6 .mid-content {
        display: none;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__area-6 .mid-content {
        display: none;
    }
}

.service__area-6 .mid-content #img1 {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 767px) {
    .service__area-6 .mid-content {
        display: none;
    }

    .service__area-6 .right-content {
        padding-left: 0;
    }
}

.service__top-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.service__top-text p {
    max-width: 505px;
    color: var(--gray-2);
    font-weight: 300;
    font-size: 20px;
    line-height: 1.4;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .service__top-text p {
        font-size: 18px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__top-text p {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .service__top-text p {
        font-size: 18px;
        margin: 30px 0;
    }
}

.service__top-text p span {
    color: var(--white);
}

.service__top-btn #btn_wrapper, .service__top-btn .btn_wrapper {
    margin-left: auto;
    margin-right: -40px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__top-btn #btn_wrapper, .service__top-btn .btn_wrapper {
        margin-right: -10px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__top-btn #btn_wrapper, .service__top-btn .btn_wrapper {
        margin-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .service__top-btn #btn_wrapper, .service__top-btn .btn_wrapper {
        margin-right: 0;
        margin-left: 0;
    }
}

.service__list-wrapper {
    margin-top: 40px;
}

.service__img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
    position: absolute;
    -webkit-transform: rotate(0deg) translateX(-100px);
    transform: rotate(0deg) translateX(-100px);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .service__img {
        max-width: 260px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__img {
        max-width: 200px;
    }
}

.service__img.active {
    opacity: 1;
    -webkit-transform: rotate(15deg) translateX(60px) translateY(30px);
    transform: rotate(15deg) translateX(60px) translateY(30px);
}

.service__img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__img-wrapper {
        display: none;
    }
}

.service__img-wrapper span {
    position: absolute;
    width: 175px;
    height: 70px;
    background-color: var(--primary);
    bottom: 0;
    left: 0;
    -webkit-transform: rotate(-26deg) translate(-100%, -100%);
    transform: rotate(-26deg) translate(-100%, -100%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    z-index: 1;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__img-wrapper span {
        bottom: 260px;
        height: 40px;
        width: 120px;
    }
}

.service__img-wrapper span.current {
    -webkit-transform: rotate(-26deg) translate(120px, -100%);
    transform: rotate(-26deg) translate(120px, -100%);
}

.service__img-3 {
    position: relative;
}

.service__img-3 img {
    top: -95px;
    position: absolute;
    -webkit-transform: translateY(-30%);
    transform: translateY(-30%);
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.service__img-6 img {
    max-width: 100%;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__items-6 {
        padding-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .service__items-6 {
        padding-top: 60px;
    }
}

.service__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 0.7fr 2fr 2.5fr 1fr;
    grid-template-columns: 0.7fr 2fr 2.5fr 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 35px 0;
    border-bottom: 1px solid var(--secondary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__item {
        gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .service__item {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        padding: 25px 0 10px;
    }
}

.service__item:hover .service__number span, .service__item:hover .service a {
    color: var(--white);
}

.service__item:hover .service__title {
    color: var(--white);
}

.service__item:hover .service__link p {
    color: var(--white);
}

.service__item:hover .service__link p i {
    -webkit-transform: translate(60px, -60px) rotate(-45deg);
    transform: translate(60px, -60px) rotate(-45deg);
}

.service__item:hover .service__link p::after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(20px, -20px) rotate(-45deg);
    transform: translate(20px, -20px) rotate(-45deg);
}

.service__item-2 {
    position: relative;
}

.service__item-2::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    left: -90px;
    top: 0;
    background-color: var(--black-2);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__item-2::before {
        left: -40px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__item-2::before {
        left: -20px;
    }
}

.service__item-2:nth-child(3n + 1)::before {
    position: unset;
}

.service__item-2 img {
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .service__item-2 img {
        margin-bottom: 20px;
    }
}

.service__item-2 p {
    color: var(--black-2);
    padding-bottom: 25px;
}

.service__item-2 ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--black-2);
}

.service__item-3 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 30% 45% 25%;
    grid-template-columns: 30% 45% 25%;
    border-bottom: 1px solid var(--white-2);
    padding: 55px 0 50px;
    position: relative;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .service__item-3 {
        -ms-grid-columns: 30% 50% 20%;
        grid-template-columns: 30% 50% 20%;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__item-3 {
        -ms-grid-columns: 30% 50% 20%;
        grid-template-columns: 30% 50% 20%;
        padding: 30px 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__item-3 {
        -ms-grid-columns: 30% 2% 40% 2% 24%;
        grid-template-columns: 30% 40% 24%;
        gap: 2%;
        padding: 50px 0;
    }
}

@media only screen and (max-width: 767px) {
    .service__item-3 {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        padding: 40px 0;
    }
}

.service__item-3:first-child {
    border-top: 1px solid var(--white-2);
}

.service__item-3:hover .service__hover-3 {
    opacity: 1;
}

.service__item-6 {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.service__item-6 .image-tab {
    display: none;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__item-6 {
        height: auto;
        -webkit-box-orient: unset;
        -webkit-box-direction: unset;
        -ms-flex-direction: unset;
        flex-direction: unset;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 2fr 30px 3fr;
        grid-template-columns: 2fr 3fr;
        grid-column-gap: 30px;
        margin-bottom: 60px;
    }

    .service__item-6 .image-tab {
        display: block;
    }

    .service__item-6 .image-tab img {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__item-6 {
        height: auto;
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .service__item-6 {
        height: auto;
        padding-bottom: 50px;
    }
}

.service__item-6 p {
    max-width: 550px;
    font-size: 18px;
    line-height: 1.4;
    color: var(--gray-2);
    padding-bottom: 30px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .service__item-6 p {
        padding-bottom: 20px;
    }
}

.service__item-6 ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 240px auto;
    grid-template-columns: 240px auto;
    padding-bottom: 80px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__item-6 ul {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 767px) {
    .service__item-6 ul {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        padding-bottom: 20px;
    }
}

.service__item-6 ul li {
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--white);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .service__item-6 ul li {
        font-size: 16px;
        padding-bottom: 5px;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .service__item-6 ul {
        padding-bottom: 30px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .service__item-6 ul {
        padding-bottom: 20px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__item-6 ul {
        padding-bottom: 40px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__item-6 ul {
        padding-bottom: 50px;
        -ms-grid-columns: 240px auto;
        grid-template-columns: 240px auto;
    }
}

.service__hover-3 {
    width: 300px;
    height: 400px;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 75%;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    margin: -200px 0 0 -150px;
    overflow: hidden;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .service__hover-3 {
        width: 0;
        display: none;
    }
}

.service__number span {
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2;
    color: var(--gray-2);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.service__title {
    display: block;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.3;
    color: var(--gray-2);
}

.service__title:hover {
    color: var(--white);
}

@media only screen and (max-width: 767px) {
    .service__title {
        padding: 10px 0 20px;
    }

    .service__title br {
        display: none;
    }
}

.service__title-2, .service__title-3 {
    font-weight: 500;
    font-size: 36px;
    line-height: 1.3;
    color: var(--black-2);
    padding-bottom: 25px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__title-2, .service__title-3 {
        font-size: 24px;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .service__title-2, .service__title-3 {
        padding-bottom: 15px;
    }
}

.service__title-3 {
    text-transform: uppercase;
}

.service__title-3:hover {
    color: var(--black-2);
}

@media only screen and (max-width: 767px) {
    .service__title-3 {
        display: block;
        font-size: 30px;
        padding-bottom: 20px;
    }
}

.service__title-6 {
    font-weight: 500;
    font-size: 40px;
    line-height: 1.1;
    color: var(--white);
    padding-bottom: 20px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .service__title-6 {
        font-size: 32px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__title-6 {
        font-size: 32px;
        padding-top: 15px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__title-6 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .service__title-6 {
        font-size: 30px;
    }
}

.service__text {
    max-width: 320px;
}

.service__text p {
    color: var(--gray-2);
}

.service__link {
    text-align: right;
    overflow: hidden;
}

.service__link p {
    display: inline-block;
    font-size: 48px;
    color: var(--gray-2);
}

.service__link p i {
    -webkit-transform: translate(0, 0) rotate(-45deg);
    transform: translate(0, 0) rotate(-45deg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.service__link p::after {
    position: absolute;
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    left: -20px;
    bottom: -20px;
    -webkit-transform: translate(0, 0) rotate(-45deg);
    transform: translate(0, 0) rotate(-45deg);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.service__btn-2 a {
    color: var(--black-2);
    border-color: var(--black-2);
}

.service__btn-2#btn_wrapper, .service__btn-2.btn_wrapper {
    margin: 0 auto;
    margin-top: 100px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__btn-2#btn_wrapper, .service__btn-2.btn_wrapper {
        margin-top: 80px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__btn-2#btn_wrapper, .service__btn-2.btn_wrapper {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .service__btn-2#btn_wrapper, .service__btn-2.btn_wrapper {
        margin: 0;
        margin-top: 60px;
    }
}

.service__btn-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .service__btn-3 {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-top: 30px;
    }
}

.service__btn-3 #btn_wrapper, .service__btn-3 .btn_wrapper {
    width: 200px;
    height: 200px;
    margin-right: -15px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__btn-3 #btn_wrapper, .service__btn-3 .btn_wrapper {
        margin-left: auto;
        margin-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .service__btn-3 #btn_wrapper, .service__btn-3 .btn_wrapper {
        margin-left: -15px;
    }
}

.service__list .active .service__number span, .service__list .active .service__title, .service__list .active .service__link p {
    color: var(--white);
}

.service__list-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 120px 1fr 120px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 120px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__list-2 {
        gap: 100px 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__list-2 {
        gap: 90px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .service__list-2 {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 60px;
    }
}

.service__list-3 {
    padding-top: 70px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .service__list-3 {
        padding-top: 40px;
    }
}

.service__list-6 {
    padding-top: 160px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .service__list-6 {
        padding-top: 80px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .service__list-6 {
        padding-top: 80px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__list-6 {
        padding-top: 60px;
        position: sticky;
        top: 40px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__list-6 {
        padding-top: 60px;
        position: sticky;
        top: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .service__list-6 {
        padding-top: 60px;
    }
}

.service__list-6 li {
    padding-bottom: 40px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .service__list-6 li {
        padding-bottom: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__list-6 li {
        padding-bottom: 20px;
    }
}

.service__list-6 li.active a {
    color: var(--white);
}

@media only screen and (max-width: 767px) {
    .service__list-6 li {
        padding-bottom: 20px;
    }
}

.service__list-6 li a {
    font-weight: 400;
    font-size: 22px;
    line-height: 1.5;
    color: var(--gray-2);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .service__list-6 li a {
        line-height: 1.4;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__list-6 li a {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .service__list-6 li a {
        font-size: 20px;
    }
}

.service__content-3 {
    max-width: 340px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__content-3 {
        padding-left: 30px;
    }
}

.service__content-3 p {
    font-size: 18px;
    line-height: 1.4;
    color: var(--black-2);
}

.service__content-3 ul {
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

.service__content-3 ul li {
    font-size: 18px;
    color: var(--black-2);
}

.service3__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.service3__img-wrap {
    width: 20vw;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
    padding-bottom: 25vw;
}

@media only screen and (max-width: 767px) {
    .service3__img-wrap {
        display: none;
        position: unset;
    }
}

.service__detail {
    overflow: hidden;
}

.service__detail .sec-title {
    max-width: 630px;
    font-size: 36px;
    line-height: 1.3;
    padding-bottom: 90px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__detail .sec-title {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .service__detail .sec-title {
        font-size: 30px;
        padding-bottom: 30px;
    }
}

.service__detail-circle {
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .service__detail-circle {
        display: none;
    }
}

.service__detail-circle span {
    position: relative;
    display: block;
    width: 136px;
    height: 136px;
    background-color: var(--primary);
    border-radius: 100%;
}

.service__detail-circle span::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    left: calc(50% - 3px);
    top: calc(50% - 3px);
    background-color: var(--black-2);
    border-radius: 100%;
}

.service__detail-circle span::after {
    position: absolute;
    content: "";
    width: 170px;
    height: 2px;
    left: 50%;
    top: calc(50% - 1px);
    background-color: var(--black-2);
    border-radius: 100%;
}

.service__detail-img {
    padding-right: 1px;
    position: relative;
    margin-bottom: 60px;
    z-index: 9;
}

@media only screen and (max-width: 767px) {
    .service__detail-img {
        margin-top: 30px;
    }
}

.service__detail-img img {
    width: 100%;
}

.service__detail-img img.sd-shape {
    width: auto;
    position: absolute;
    bottom: -15px;
    right: 20px;
}

@media only screen and (max-width: 767px) {
    .service__detail-img img.sd-shape {
        right: 5px;
        bottom: -30px;
    }
}

.service__detail-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 80px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 80px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .service__detail-content {
        grid-gap: 40px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__detail-content {
        grid-gap: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__detail-content {
        grid-gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .service__detail-content {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
}

.service__detail-content p {
    font-size: 18px;
    line-height: 1.4;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service-v2.pt-110 {
        padding-top: 150px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service-v2.pt-110 {
        padding-top: 130px;
    }
}

@media only screen and (max-width: 767px) {
    .service-v2.pt-110 {
        padding-top: 120px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service-v3.pt-130 {
        padding-top: 150px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service-v3.pt-130 {
        padding-top: 130px;
    }
}

@media only screen and (max-width: 767px) {
    .service-v3.pt-130 {
        padding-top: 120px;
    }
}

.service-v4.pb-150 {
    padding-bottom: 0;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service-v4 .pt-130 {
        padding-top: 150px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service-v4 .pt-130 {
        padding-top: 130px;
    }
}

@media only screen and (max-width: 767px) {
    .service-v4 .pt-130 {
        padding-top: 120px;
    }
}

.service-v5 .portfolio__service-item, .service-v5.portfolio__service .sec-title, .service-v5.portfolio__service .sec-text, .service-v5.portfolio__service .sec-text p {
    opacity: 1;
}

.service-v5 .portfolio__service-item {
    margin-bottom: 25px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service-v5.pt-140 {
        padding-top: 150px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service-v5.pt-140 {
        padding-top: 130px;
    }
}

@media only screen and (max-width: 767px) {
    .service-v5.pt-140 {
        padding-top: 120px;
        padding-bottom: 40px;
    }
}

.service-v5.portfolio__service .sec-title {
    text-indent: 0;
}

.service__list-6 li a.active {
    color: red;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.service__area-6 .mid-content .service__image:nth-child(1) {
    z-index: 9;
}

.service__image:nth-child(2) {
    z-index: 8;
}

.service__image:nth-child(3) {
    z-index: 7;
}

.service__image:nth-child(4) {
    z-index: 6;
}

.service__image:nth-child(5) {
    z-index: 5;
}

.service__image:nth-child(6) {
    z-index: 4;
}

.service__image:nth-child(7) {
    z-index: 3;
}

.service__image:nth-child(8) {
    z-index: 2;
}

.service__image:nth-child(9) {
    z-index: 1;
}

.service__hero-2 {
    padding-top: 150px;
    padding-bottom: 150px;
    background-image: url("/assets/imgs/home-7/sh-bg.png");
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__hero-2 {
        padding-bottom: 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__hero-2 {
        padding-bottom: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .service__hero-2 {
        padding-bottom: 60px;
    }
}

.service__hero-2 .shape-1 {
    position: absolute;
    width: 132px;
    height: auto;
    right: 165px;
    top: 275px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .service__hero-2 .shape-1 {
        right: 100px;
        top: 180px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__hero-2 .shape-1 {
        right: 30px;
        top: 200px;
        width: 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__hero-2 .shape-1 {
        max-width: 80px;
        right: 10px;
        top: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .service__hero-2 .shape-1 {
        width: 75px;
        right: 6px;
        top: 130px;
    }
}

.service__hero-inner-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 3fr;
    grid-template-columns: 1fr 3fr;
}

@media only screen and (max-width: 767px) {
    .service__hero-inner-2 {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.service__hero-left-2 {
    position: relative;
}

@media only screen and (max-width: 767px) {
    .service__hero-left-2 {
        -ms-grid-row: 2;
        grid-row: 2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 15px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 30px;
    }
}

.service__hero-left-2 img {
    margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__hero-left-2 img {
        max-width: 200px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__hero-left-2 img {
        max-width: 150px;
    }
}

@media only screen and (max-width: 767px) {
    .service__hero-left-2 img {
        max-width: 160px;
        margin: 0;
    }
}

.service__hero-left-2 .image-1, .service__hero-left-2 .image-3 {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .service__hero-left-2 .image-1, .service__hero-left-2 .image-3 {
        -webkit-transform: translateX(-40px);
        transform: translateX(-40px);
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__hero-left-2 .image-1, .service__hero-left-2 .image-3 {
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__hero-left-2 .image-1, .service__hero-left-2 .image-3 {
        -webkit-transform: translateX(-25px);
        transform: translateX(-25px);
    }
}

@media only screen and (max-width: 767px) {
    .service__hero-left-2 .image-1, .service__hero-left-2 .image-3 {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.service__hero-left-2 .image-2 {
    -webkit-transform: translateX(62px);
    transform: translateX(62px);
}

@media only screen and (max-width: 767px) {
    .service__hero-left-2 .image-2 {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.service__hero-left-2 .image-4 {
    position: absolute;
    left: 318px;
    bottom: 80px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__hero-left-2 .image-4 {
        left: 278px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__hero-left-2 .image-4 {
        left: 225px;
        bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .service__hero-left-2 .image-4 {
        position: unset;
    }
}

@media only screen and (max-width: 767px) {
    .service__hero-right-2 {
        -ms-grid-row: 1;
        grid-row: 1;
    }
}

.service__hero-right-2 .title {
    font-weight: 500;
    font-size: 130px;
    line-height: 1;
    color: var(--black);
    text-transform: capitalize;
    padding-bottom: 40px;
    padding-top: 80px;
    padding-left: 20px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__hero-right-2 .title {
        font-size: 110px;
        padding-top: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__hero-right-2 .title {
        font-size: 90px;
        padding-bottom: 30px;
        padding-top: 30px;
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .service__hero-right-2 .title {
        font-size: 60px;
        padding-bottom: 20px;
        padding-top: 0;
        padding-left: 0;
    }
}

.service__hero-right-2 .title span {
    display: block;
    padding-left: 170px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__hero-right-2 .title span {
        padding-left: 120px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__hero-right-2 .title span {
        padding-left: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .service__hero-right-2 .title span {
        padding-left: 60px;
    }
}

.service__hero-right-2 p {
    font-size: 18px;
    max-width: 340px;
    margin-left: 350px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__hero-right-2 p {
        margin-left: 300px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__hero-right-2 p {
        margin-left: 220px;
    }
}

@media only screen and (max-width: 767px) {
    .service__hero-right-2 p {
        font-size: 16px;
        margin-left: 65px;
    }
}

.service__hero-right-2 .scroll {
    margin-left: 350px;
    margin-top: 95px;
    -webkit-animation: wcSlideBottom 5s infinite linear;
    animation: wcSlideBottom 5s infinite linear;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__hero-right-2 .scroll {
        margin-left: 300px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__hero-right-2 .scroll {
        margin-left: 220px;
        margin-top: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .service__hero-right-2 .scroll {
        margin-left: 65px;
        margin-top: 40px;
    }
}

.counter__area {
    overflow: hidden;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .counter__area .pt-150 {
        padding-top: 100px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .counter__area-3 {
        background-color: var(--pink-4);
        padding: 100px 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .counter__area-3 {
        background-color: var(--pink-4);
        padding: 90px 0;
    }
}

@media only screen and (max-width: 767px) {
    .counter__area-3 {
        background-color: var(--pink-4);
        padding: 60px 0;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .counter__area-3 .sec-title-wrapper {
        padding-top: 120px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .counter__area-3 .sec-title-wrapper {
        padding-top: 120px;
    }
}

.counter__area-3 .sec-sub-title {
    font-weight: 500;
    color: var(--black);
    text-transform: uppercase;
    padding-bottom: 150px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .counter__area-3 .sec-sub-title {
        padding-bottom: 60px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .counter__area-3 .sec-sub-title {
        padding-bottom: 20px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .counter__area-3 .sec-sub-title {
        display: none;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .counter__area-3 .sec-sub-title {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .counter__area-3 .sec-sub-title {
        display: none;
    }
}

.counter__area-3 .counter__number {
    color: var(--black-2);
    font-weight: 400;
    padding-bottom: 10px;
}

.counter__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 767px) {
    .counter__wrapper {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 30px 10px;
    }
}

.counter__wrapper-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [4];
    grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 767px) {
    .counter__wrapper-2 {
        -ms-grid-columns: 1fr 50px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

.counter__wrapper-3 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .counter__wrapper-3 {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 50px 40px;
    }
}

.counter__item {
    width: 380px;
    height: 380px;
    border: 1px solid var(--white-2);
    border-radius: 100%;
    margin-left: -67px;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .counter__item {
        margin-left: -60px;
        width: 330px;
        height: 330px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .counter__item {
        margin-left: -25px;
        width: 259px;
        height: 259px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .counter__item {
        margin-left: -27px;
        width: 200px;
        height: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .counter__item {
        margin-left: 0;
        width: 160px;
        height: 160px;
    }
}

.counter__item:first-child {
    margin-left: 0;
}

.counter__item p {
    font-size: 20px;
    text-align: center;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .counter__item p {
        font-size: 18px;
        line-height: 1.2;
    }
}

@media only screen and (max-width: 767px) {
    .counter__item p {
        font-size: 16px;
        line-height: 1.3;
        padding: 0 7px;
    }
}

.counter__item-2 {
    text-align: center;
}

.counter__item-2 p {
    font-size: 20px;
    line-height: 1.3;
}

.counter__item-3 {
    padding-bottom: 80px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .counter__item-3 {
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .counter__item-3 {
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .counter__item-3 {
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    .counter__item-3 {
        padding-bottom: 0;
        text-align: center;
    }
}

.counter__item-3 p {
    font-size: 20px;
}

@media only screen and (max-width: 767px) {
    .counter__item-3 p {
        line-height: 1.2;
    }
}

.counter__number {
    font-weight: 300;
    font-size: 100px;
    line-height: 1.1;
    color: var(--secondary);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .counter__number {
        font-size: 72px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .counter__number {
        font-size: 48px;
    }
}

@media only screen and (max-width: 767px) {
    .counter__number {
        font-size: 40px;
    }
}

.counter__img-3 {
    margin-top: 80px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .counter__img-3 {
        margin-top: 0;
        text-align: right;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .counter__img-3 {
        margin-top: 0;
        text-align: right;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .counter__img-3 {
        margin-top: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .counter__img-3 {
        margin-top: 0;
    }
}

.counter__img-3 img {
    width: 100%;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .counter__img-3 img {
        width: 80%;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .counter__img-3 img {
        width: 75%;
    }
}

.workflow__area {
    overflow: hidden;
}

.workflow__area .sec-title-wrapper {
    text-align: center;
    padding-bottom: 60px;
}

.workflow__area-3 {
    overflow: hidden;
    background-color: var(--pink-4);
    padding-top: 60px;
    direction: ltr;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .workflow__area-3 {
        padding-top: 90px;
        background-color: var(--pink-3);
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .workflow__area-3 {
        padding-top: 80px;
        background-color: var(--pink-3);
    }
}

@media only screen and (max-width: 767px) {
    .workflow__area-3 {
        padding-top: 60px;
        background-color: var(--pink-3);
    }
}

.workflow__area-3 .wf_panel {
    width: 100%;
    height: 100%;
    will-change: transform;
    opacity: 1 !important;
}

.workflow__area-6 {
    overflow: hidden;
    padding-top: 5px;
}

@media only screen and (max-width: 767px) {
    .workflow__area-6 .pb-130 {
        padding-bottom: 20px;
    }
}

.workflow__wrapper-3 {
    width: 400%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: no-wrap;
    flex-wrap: no-wrap;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .workflow__wrapper-3 {
        width: 100%;
        height: auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .workflow__wrapper-3 {
        width: 100%;
        height: auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 767px) {
    .workflow__wrapper-3 {
        width: 100%;
        height: auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.workflow__wrapper-6 {
    border-top: 1px solid var(--white-4);
    padding-top: 50px;
}

@media only screen and (max-width: 767px) {
    .workflow__wrapper-6 {
        border-top: none;
        padding-top: 0;
    }
}

.workflow__slide {
    text-align: center;
    position: relative;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .workflow__slide {
        padding: 0 10px;
    }
}

.workflow__slide::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    top: 58px;
    background-color: var(--black-2);
}

.workflow__slide::after {
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    left: calc(50% - 9px);
    top: 50px;
    background-color: var(--primary);
    border: 3px solid var(--white);
    border-radius: 100%;
    -webkit-animation: wcBubble 1.5s 1s infinite;
    animation: wcBubble 1.5s 1s infinite;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.workflow__slide p {
    max-width: 230px;
    margin: 0 auto;
}

.workflow__slide-6 {
    max-width: 270px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .workflow__slide-6 {
        max-width: 100%;
        padding-bottom: 40px;
    }
}

.workflow__slide-6::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    left: 0;
    top: -54px;
    background-color: var(--black);
    border: 1px solid var(--white);
    border-radius: 100%;
    -webkit-animation: wcBubble 1.5s 1s infinite;
    animation: wcBubble 1.5s 1s infinite;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (max-width: 767px) {
    .workflow__slide-6::before {
        width: 0;
        height: 0;
    }
}

.workflow__step {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3;
    color: var(--black-2);
    text-transform: capitalize;
    padding-bottom: 50px;
}

.workflow__number {
    font-size: 85px;
    font-weight: 500;
    color: var(--gray-4);
}

.workflow__title {
    font-weight: 500;
    font-size: 26px;
    line-height: 1.2;
    color: var(--black-2);
    padding-bottom: 15px;
}

.workflow__title-6 {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.25;
    color: var(--black);
    padding-bottom: 15px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .workflow__title-6 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .workflow__title-6 {
        padding-bottom: 10px;
    }
}

.choose-title {
    font-weight: 500;
    font-size: 200px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--black);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .choose-title {
        font-size: 160px;
        margin-top: -100px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .choose-title {
        font-size: 48px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .choose-title {
        font-size: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .choose-title {
        font-size: 40px;
    }
}

.choose-title-wrapper {
    text-align: center;
}

.choose-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.research__area {
    background-color: var(--pink-3);
    background-image: url("/assets/imgs/shape/8.png");
    background-repeat: no-repeat;
    background-position: 200px calc(100% - 150px);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .research__area {
        background-position: 20px calc(100% - 230px);
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .research__area {
        background-position: 20px calc(100% - 220px);
    }

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

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .research__area {
        background-position: 20px calc(100% - 100px);
        padding-bottom: 50px;
    }

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

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .research__area {
        padding-bottom: 40px;
        background-position: 0 210px;
        background-size: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .research__area {
        background-size: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .research__area.pt-150 {
        padding-top: 60px;
    }
}

.research__area .sec-title {
    text-transform: uppercase;
    padding-bottom: 50px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .research__area .sec-title {
        padding-bottom: 20px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .research__area .sec-title {
        font-size: 40px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .research__area .sec-title {
        padding-bottom: 30px;
    }
}

.research__area .sec-title-wrapper {
    padding-right: 80px;
    padding-bottom: 100px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .research__area .sec-title-wrapper {
        padding-right: 40px;
        padding-bottom: 50px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .research__area .sec-title-wrapper {
        padding-bottom: 40px;
        padding-right: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .research__area .sec-title-wrapper {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .research__area .sec-title-wrapper {
        padding-right: 0;
        padding-bottom: 40px;
        text-align: center;
    }
}

.research__area .sec-title-wrapper p {
    max-width: 360px;
    font-size: 18px;
    line-height: 1.4;
    color: var(--black-2);
    margin-left: 80px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .research__area .sec-title-wrapper p {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .research__area .sec-title-wrapper p {
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .research__area .sec-title-wrapper p {
        margin: 0 auto;
    }
}

.research__area .sec-sub-title {
    font-weight: 500;
    text-transform: uppercase;
    color: var(--black);
    padding-bottom: 140px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .research__area .sec-sub-title {
        padding-bottom: 50px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .research__area .sec-sub-title {
        padding-bottom: 40px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .research__area .sec-sub-title {
        display: none;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .research__area .sec-sub-title {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .research__area .sec-sub-title {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .research__list {
        padding-bottom: 35px;
    }
}

.research__tools {
    padding-left: 80px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .research__tools {
        padding-left: 0;
        padding-bottom: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .research__tools {
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .research__tools {
        padding-left: 0;
        padding-bottom: 40px;
        text-align: center;
    }
}

.research__tools li {
    display: inline-block;
}

.research__tools li a {
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--black);
    border: 1px solid var(--black);
    border-radius: 30px;
    padding: 2px 15px;
}

.research__tools li a:hover {
    color: var(--white);
    background-color: var(--black-2);
}

.research__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    padding-bottom: 50px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .research__item {
        padding-bottom: 30px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .research__item {
        padding-bottom: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .research__item {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.research__item:nth-child(odd) {
    padding-left: 100px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .research__item:nth-child(odd) {
        padding-left: 80px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .research__item:nth-child(odd) {
        padding-left: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .research__item:nth-child(odd) {
        padding-left: 0;
    }
}

.research__item p {
    max-width: 255px;
    color: var(--black-2);
}

.research__number span {
    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;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--black-2);
    width: 190px;
    height: 190px;
    border: 3px solid;
    border-radius: 100%;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .research__number span {
        width: 160px;
        height: 160px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .research__number span {
        width: 160px;
        height: 160px;
    }
}

@media only screen and (max-width: 767px) {
    .research__number span {
        width: 130px;
        height: 130px;
        font-size: 36px;
    }
}

.research__title {
    font-weight: 500;
    font-size: 26px;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--black-2);
    padding-bottom: 15px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .research__title {
        padding-bottom: 5px;
    }
}

.brand__area {
    overflow: hidden;
}

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

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .brand__area .pb-100 {
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    .brand__area .pb-100 {
        padding-bottom: 0;
    }
}

.brand__area .sec-title-wrapper {
    padding-bottom: 60px;
}

.brand__list, .brand__list-3, .brand__list-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [6];
    grid-template-columns: repeat(6, 1fr);
    background-color: var(--white);
    border-bottom: 1px solid var(--white-3);
    position: relative;
    z-index: 1;
    margin-left: 1px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .brand__list, .brand__list-3, .brand__list-2 {
        -ms-grid-columns:(1fr) [4];
        grid-template-columns: repeat(4, 1fr);
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .brand__list, .brand__list-3, .brand__list-2 {
        -ms-grid-columns:(1fr) [3];
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .brand__list, .brand__list-3, .brand__list-2 {
        -ms-grid-columns:(1fr) [2];
        grid-template-columns: repeat(2, 1fr);
        margin-left: 0;
    }
}

.brand__list-2 {
    gap: 40px;
    background-color: transparent;
    border-bottom: none;
    margin-left: 0;
}

.brand__list-3 {
    background-color: transparent;
    border-bottom: none;
    margin-left: 0;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .brand__list-3 {
        gap: 50px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .brand__list-3 {
        gap: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .brand__list-3 {
        gap: 50px;
    }
}

.brand__item {
    padding: 40px;
    text-align: center;
    border-top: 1px solid var(--white-3);
    border-right: 1px solid var(--white-3);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .brand__item {
        padding: 35px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .brand__item {
        padding: 30px 25px;
    }
}

@media only screen and (max-width: 767px) {
    .brand__item {
        padding: 30px 0;
        border-left: 1px solid var(--white-3);
    }

    .brand__item:nth-child(even) {
        border-left: none;
    }
}

.brand__item-2 {
    text-align: center;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .brand__item-2 {
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .brand__item-2 {
        padding-bottom: 20px;
    }
}

.brand__title-2 {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    color: var(--white);
    padding-bottom: 50px;
    text-align: center;
}

.brand__title-3 {
    font-size: 18px;
    line-height: 1.4;
    color: var(--black-2);
    text-align: center;
    padding-bottom: 65px;
    font-weight: 400;
    text-transform: uppercase;
}

.brand-gap {
    gap: 50px 0;
    border: none;
    background-color: transparent;
}

.testimonial__area {
    overflow: hidden;
}

.testimonial__area .sec-title-wrapper {
    max-width: 330px;
    padding-top: 120px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .testimonial__area .sec-title-wrapper {
        width: 100%;
        padding-top: 60px;
        padding-left: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .testimonial__area .sec-title-wrapper {
        padding-top: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial__area .sec-title-wrapper {
        padding-top: 0px;
    }
}

.testimonial__area p {
    padding-top: 30px;
    font-size: 18px;
    line-height: 1.4;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .testimonial__area p {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial__area p {
        padding-bottom: 20px;
    }
}

.testimonial__area-2 .line-3 {
    z-index: 5;
}

@media only screen and (max-width: 767px) {
    .testimonial__area-2 .g-0 {
        padding-right: 8px;
        padding-left: 8px;
    }
}

.testimonial__area-3 {
    background-image: url("/assets/imgs/testimonial/3/bg.png");
    background-repeat: no-repeat;
    background-position: 0 150px;
    position: relative;
    padding-top: 410px;
    padding-bottom: 330px;
    overflow: hidden;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .testimonial__area-3 {
        padding-top: 300px;
        padding-bottom: 250px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .testimonial__area-3 {
        padding-top: 300px;
        padding-bottom: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial__area-3 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .testimonial__area-3 img {
        display: none;
    }
}

@media (max-width: 1023px) {
    .testimonial__area .cursor {
        display: none;
    }
}

.testimonial__slider-3 {
    padding-top: 120px;
    padding-bottom: 120px;
    max-width: 660px;
}

@media only screen and (max-width: 767px) {
    .testimonial__slider-3 {
        padding-top: 80px;
    }
}

.testimonial__slider-3 .swipper-btn {
    width: 50px;
    height: 50px;
    border: 1px solid;
    border-radius: 100%;
    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;
    position: absolute;
    bottom: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.testimonial__slider-3 .swipper-btn:hover {
    background-color: var(--black-2);
}

.testimonial__slider-3 .swipper-btn:hover i {
    color: var(--white);
}

.testimonial__slider-3 .swipper-btn i {
    font-size: 18px;
    color: var(--black-3);
}

.testimonial__slider-3 .next-button {
    right: calc(50% + 10px);
}

.testimonial__slider-3 .prev-button {
    left: calc(50% + 10px);
}

.testimonial__slide {
    margin-left: -3px;
}

.testimonial__slide-3 {
    text-align: center;
}

.testimonial__slide-3 p {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    color: var(--black-2);
    font-style: italic;
    max-width: 630px;
    margin: 0 auto;
    position: relative;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .testimonial__slide-3 p {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial__slide-3 p {
        font-size: 20px;
        padding: 0 10px;
    }
}

.testimonial__slide-3 p::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: -100px;
    left: calc(50% - 23px);
    background-image: url("/assets/imgs/icon/quote.png");
    background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
    .testimonial__slide-3 p::before {
        top: -80px;
    }
}

.testimonial__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .testimonial__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.testimonial__wrapper-2 {
    position: relative;
}

@media only screen and (max-width: 767px) {
    .testimonial__item {
        padding-bottom: 30px;
    }
}

.testimonial__item .button {
    display: inline-block;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .testimonial__item.item-1 {
        text-align: center;
        margin: 0 50px;
    }

    .testimonial__item.item-1 img {
        width: 100%;
    }
}

.testimonial__item.item-2 {
    padding-top: 20px;
    text-align: center;
}

.testimonial__item.item-3 {
    padding-top: 220px;
    text-align: right;
}

@media only screen and (max-width: 767px) {
    .testimonial__item.item-3 {
        text-align: center;
        padding-top: 30px;
    }
}

.testimonial__img {
    position: relative;
    margin-bottom: 20px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .testimonial__img img {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .testimonial__img img {
        width: 100%;
    }
}

.testimonial__img.b-right::after {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 30px);
    left: 30px;
    top: 0;
    border: 1px solid var(--white-6);
    border-radius: 180px 180px 0 0;
    z-index: -1;
}

.testimonial__img.b-left::before {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 30px);
    left: -30px;
    top: 0;
    border: 1px solid var(--white-6);
    border-radius: 180px 180px 0 0;
    z-index: -1;
}

.testimonial__title {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    color: var(--black);
    text-transform: capitalize;
}

.testimonial__title-2 {
    font-weight: 500;
    font-size: 60px;
    line-height: 1;
    color: var(--black);
    font-style: italic;
    padding: 100px 100px 20px 0;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .testimonial__title-2 {
        font-size: 48px;
        padding-top: 80px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .testimonial__title-2 {
        font-size: 48px;
        padding-right: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .testimonial__title-2 {
        font-size: 36px;
        padding-right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial__title-2 {
        font-size: 36px;
        padding: 20px 0;
    }
}

.testimonial__role {
    font-size: 14px;
    color: var(--black-3);
    line-height: 1.3;
    font-weight: 400;
    text-transform: capitalize;
}

.testimonial__role-2 {
    font-weight: 400;
    font-size: 14px;
    line-height: 12px;
    color: var(--black-3);
}

.testimonial__text-2 {
    font-weight: 300;
    font-size: 22px;
    line-height: 1.4;
    color: var(--black-3);
    padding-right: 40px;
    padding-bottom: 50px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .testimonial__text-2 {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .testimonial__text-2 {
        padding-right: 0;
        padding-bottom: 30px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial__text-2 {
        font-size: 18px;
        padding-right: 0;
        padding-bottom: 30px;
    }
}

.testimonial__inner-2 {
    background-color: var(--white);
    padding: 80px;
    margin-top: 140px;
    background-image: url("/assets/imgs/icon/quote-primary.png");
    background-repeat: no-repeat;
    background-position: 80px 80px;
    margin-right: 2px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .testimonial__inner-2 {
        padding: 80px 30px;
        margin-top: 185px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .testimonial__inner-2 {
        padding: 60px 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .testimonial__inner-2 {
        padding: 60px 30px;
        margin-top: 136px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial__inner-2 {
        text-align: center;
        padding: 0;
        padding-top: 60px;
        margin-top: 30px;
        background-position: 50% 0;
    }
}

.testimonial__video {
    margin-right: -112px;
    max-height: 785px;
    overflow: hidden;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .testimonial__video {
        max-height: 740px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .testimonial__video {
        max-height: 700px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial__video {
        margin-right: 0;
        max-height: unset;
    }
}

.testimonial__video video {
    width: 100%;
}

.testimonial__author {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    color: var(--black-2);
    padding-bottom: 5px;
}

.testimonial__pagination {
    position: absolute;
    right: 0;
    top: calc(50% - 105px);
    -webkit-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .testimonial__pagination {
        -webkit-transform: unset;
        transform: unset;
        z-index: 9;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .testimonial__pagination {
        -webkit-transform: unset;
        transform: unset;
        top: unset;
        bottom: 110px;
        z-index: 9;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .testimonial__pagination {
        -webkit-transform: unset;
        transform: unset;
        top: unset;
        bottom: 60px;
        z-index: 9;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .testimonial__pagination {
        -webkit-transform: unset;
        transform: unset;
        top: unset;
        bottom: 60px;
        z-index: 9;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial__pagination {
        display: none;
    }
}

.testimonial__pagination .next-button, .testimonial__pagination .prev-button {
    width: 60px;
    height: 60px;
    border: 1px solid var(--gray-7);
    color: var(--gray-7);
    border-radius: 100%;
    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;
    margin: 30px 35px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .testimonial__pagination .next-button, .testimonial__pagination .prev-button {
        margin: 20px;
    }
}

.testimonial__pagination .next-button::after, .testimonial__pagination .prev-button::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

.testimonial__pagination .next-button:hover, .testimonial__pagination .prev-button:hover {
    border-color: var(--black-2);
}

.testimonial__pagination .next-button:hover i, .testimonial__pagination .prev-button:hover i {
    color: var(--black-2);
}

.testimonial3__img {
    position: absolute;
    top: 170px;
    left: 25%;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .testimonial3__img {
        top: 100px;
        left: 15%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .testimonial3__img {
        top: 60px;
        left: 10%;
    }
}

.testimonial3__img-2 {
    position: absolute;
    top: 230px;
    right: 28%;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .testimonial3__img-2 {
        top: 180px;
        right: 15%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .testimonial3__img-2 {
        top: 130px;
        right: 15%;
    }
}

.testimonial3__img-3 {
    position: absolute;
    top: 40%;
    left: 50px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .testimonial3__img-3 {
        top: 78%;
        left: 60px;
        z-index: 9;
    }
}

.testimonial3__img-4 {
    position: absolute;
    bottom: 150px;
    left: 170px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .testimonial3__img-4 {
        left: 80px;
        max-width: 250px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .testimonial3__img-4 {
        left: 70px;
        max-width: 220px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .testimonial3__img-4 {
        bottom: 70px;
        left: 70px;
        max-width: 200px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .testimonial3__img-4 {
        bottom: 180px;
        left: 0;
        max-width: 160px;
    }
}

.testimonial3__img-5 {
    position: absolute;
    top: 43%;
    right: 70px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .testimonial3__img-5 {
        right: 10px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .testimonial3__img-5 {
        top: 62%;
        right: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .testimonial3__img-5 {
        top: 60%;
        right: 0;
        width: 150px;
    }
}

.testimonial3__img-6 {
    position: absolute;
    right: 280px;
    top: 58%;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .testimonial3__img-6 {
        right: 200px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .testimonial3__img-6 {
        top: 75%;
        right: 200px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .testimonial3__img-6 {
        top: 70%;
        right: 60px;
    }
}

.client__name-3 {
    font-weight: 500;
    font-size: 28px;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--black-2);
    padding-top: 50px;
    padding-bottom: 10px;
}

.client__role-3 {
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--black-3);
}

.portfolio__text {
    text-align: center;
    font-size: 150px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    padding: 120px 0 50px;
    opacity: 1;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__text {
        font-size: 110px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__text {
        font-size: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__text {
        font-size: 45px;
        padding: 50px 0;
    }
}

.portfolio__area {
    position: relative;
    background-color: var(--black-2);
    overflow: hidden;
}

.portfolio__area-2 {
    overflow: hidden;
    position: relative;
}

.portfolio__area-2::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    left: 84.6%;
    top: 0;
    background: var(--white-4);
}

@media only screen and (max-width: 767px) {
    .portfolio__area-2 {
        padding-bottom: 15px;
    }
}

.portfolio__area-2::after {
    z-index: 9;
}

@media only screen and (max-width: 767px) {
    .portfolio__area-2::after {
        z-index: unset;
    }
}

.portfolio__area-2 .swiper-slide-active .sec-title {
    -webkit-animation: wcfadeUp 1s 0.5s forwards;
    animation: wcfadeUp 1s 0.5s forwards;
}

.portfolio__area-2 .swiper-slide-active p {
    -webkit-animation: wcfadeUp 1s 0.7s forwards;
    animation: wcfadeUp 1s 0.7s forwards;
}

.portfolio__area-2 .swiper-slide-active .btn-common-wrap {
    -webkit-animation: wcfadeUp 1s 0.9s forwards;
    animation: wcfadeUp 1s 0.9s forwards;
}

.portfolio__area-2 .sec-title-wrapper {
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .portfolio__area-2 .sec-title-wrapper {
        text-align: left;
    }
}

.portfolio__area-2 .sec-title-wrapper .sec-text {
    font-size: 24px;
    max-width: 410px;
    text-align: left;
}

@media only screen and (max-width: 767px) {
    .portfolio__area-2 .sec-title-wrapper .sec-text {
        font-size: 20px;
    }
}

.portfolio__area-2 .sec-title-3 {
    font-weight: 400;
    background-image: url("/assets/imgs/shape/1.png");
    background-repeat: no-repeat;
    background-position: 70% 25px;
    display: inline-block;
    padding-bottom: 120px;
    padding-right: 320px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__area-2 .sec-title-3 {
        background-size: 260px;
        background-position: 70% 20px;
        padding-right: 200px;
        padding-bottom: 90px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__area-2 .sec-title-3 {
        background-size: 200px;
        background-position: 95% 0;
        padding-right: 100px;
        padding-bottom: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__area-2 .sec-title-3 {
        background-size: 150px;
        background-position: 60% 0;
        padding-left: 0;
        padding-bottom: 45px;
        padding-right: 0px;
    }
}

.portfolio__area-2 .sec-title-3 span {
    display: block;
    padding-left: 450px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__area-2 .sec-title-3 span {
        padding-right: 0;
        padding-left: 300px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__area-2 .sec-title-3 span {
        padding-right: 0;
        padding-left: 150px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__area-2 .sec-title-3 span {
        padding-right: 0;
        padding-left: 85px;
    }
}

.portfolio__area-3 {
    background-color: var(--black-2);
}

.portfolio__area-3 .sec-sub-title {
    text-transform: uppercase;
    color: var(--white);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__area-3 .sec-sub-title {
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__area-3 .sec-sub-title {
        padding-bottom: 45px;
    }
}

.portfolio__area-3 .swiper-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}

.portfolio__area-3 .swiper-btn div {
    font-size: 20px;
    color: var(--white);
    border: 1px solid var(--white);
    width: 50px;
    height: 50px;
    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;
    border-radius: 50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    top: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 9;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 1365px) {
    .portfolio__area-3 .swiper-btn div {
        opacity: 1;
        visibility: visible;
        top: calc(50% - 100px);
    }
}

@media (max-width: 1023px) {
    .portfolio__area-3 .swiper-btn div {
        opacity: 1;
        visibility: visible;
        top: calc(50% - 25px);
    }
}

.portfolio__area-3 .swiper-btn div:hover {
    color: var(--black-2);
    background-color: var(--white);
}

.portfolio__area-3 .swiper-btn div.pp-prev {
    left: 26px;
}

.portfolio__area-3 .swiper-btn div.pp-next {
    right: 0;
}

@media (max-width: 1365px) {
    .portfolio__area-3 .swiper-btn div.pp-next {
        right: -24px;
    }
}

.portfolio__area-3 .swiper-pagination {
    width: 120px;
    left: 370px;
    top: 0;
    bottom: unset;
    font-weight: 400;
    font-size: 60px;
    line-height: 1;
    color: var(--white);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__area-3 .swiper-pagination {
        left: 300px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__area-3 .swiper-pagination {
        left: 180px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__area-3 .swiper-pagination {
        left: -22px;
        padding-top: 10px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__area-3 .swiper-pagination {
        left: 0;
    }
}

.portfolio__area-3 .swiper-pagination-total {
    font-size: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: -50px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__area-6 .line {
        padding-top: 160px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__area-6 .line {
        padding-top: 0;
    }
}

.portfolio__area-6 .zi-9 {
    position: relative;
    z-index: 9;
}

.portfolio__area-6 .sec-title {
    font-size: 120px;
    padding-bottom: 20px;
}

.portfolio__area-6 .sec-title-wrapper {
    position: sticky;
    top: 130px;
}

.portfolio__area-6 .sec-title-wrapper p {
    font-size: 18px;
    line-height: 1.4;
    padding-left: 110px;
    position: relative;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__area-6 .sec-title-wrapper p {
        padding-left: 60px;
        padding-right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__area-6 .sec-title-wrapper p {
        padding-left: 60px;
    }
}

.portfolio__area-6 .sec-title-wrapper p::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 1px;
    background-color: var(--black-2);
    left: 0;
    top: 8px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__area-6 .sec-title-wrapper p::before {
        width: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__area-6 .sec-title-wrapper p::before {
        width: 50px;
    }
}

.portfolio__area-6 .sec-sub-title {
    font-size: 24px;
    padding-bottom: 0;
}

.portfolio__slider-2 {
    position: relative;
    height: 100vh;
}

.portfolio__slider-2::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
    background: var(--white-4);
}

.portfolio__slider-2::after {
    z-index: 9;
}

@media only screen and (max-width: 767px) {
    .portfolio__slider-2::after {
        z-index: unset;
    }
}

@media (max-width: 1400px) {
    .portfolio__slider-2 {
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__slider-2-pagination {
        display: none;
    }
}

.portfolio__slider-2-pagination .swiper-pagination-bullets {
    left: calc(100% - 135px);
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0);
    transform: translate3d(0px, -50%, 0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__slider-2-pagination .swiper-pagination-bullets {
        left: calc(100% - 60px);
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__slider-2-pagination .swiper-pagination-bullets {
        left: calc(100% - 45px);
    }
}

.portfolio__slider-2-pagination .swiper-pagination-bullet {
    display: block;
    margin: 15px 10px !important;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid #D6D6D6;
    opacity: 1;
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .portfolio__slider-2-pagination .swiper-pagination-bullet {
        margin: 10px !important;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__slider-2-pagination .swiper-pagination-bullet {
        margin: 10px !important;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__slider-2-pagination .swiper-pagination-bullet {
        width: 30px;
        height: 30px;
        margin: 10px !important;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__slider-2-pagination .swiper-pagination-bullet {
        width: 25px;
        height: 25px;
        margin: 5px !important;
    }
}

.portfolio__slider-2-pagination .swiper-pagination-bullet::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    left: 50%;
    top: 50%;
    border-radius: 50px;
    background-color: #D6D6D6;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.portfolio__slider-2-pagination .swiper-pagination-bullet-active, .portfolio__slider-2-pagination .swiper-pagination-bullet:hover {
    border-color: var(--black-2);
}

.portfolio__slider-2-pagination .swiper-pagination-bullet-active::after, .portfolio__slider-2-pagination .swiper-pagination-bullet:hover::after {
    background-color: var(--black-2);
}

.portfolio__slider-3 {
    position: relative;
}

.portfolio__slider-3:hover .swiper-btn div {
    opacity: 1;
    visibility: visible;
}

.portfolio__slide-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--white);
}

@media only screen and (max-width: 767px) {
    .portfolio__slide-2 {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.portfolio__slide-2 .sec-title {
    line-height: 1.1;
    padding-bottom: 30px;
    padding-left: 10px;
    opacity: 0;
}

.portfolio__slide-2 .sec-title a {
    color: var(--black-2);
    text-transform: capitalize;
}

.portfolio__slide-2 .sec-title span {
    display: block;
    padding-left: 60px;
    position: relative;
}

.portfolio__slide-2 .sec-title span::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 1px;
    left: -10px;
    top: 50%;
    background-color: var(--black-2);
}

.portfolio__slide-2 .slide-img {
    padding-right: 15px;
}

@media only screen and (max-width: 767px) {
    .portfolio__slide-2 .slide-img {
        padding-right: 0;
    }
}

.portfolio__slide-2 .slide-img img {
    width: 100%;
}

.portfolio__slide-2 .slide-content {
    padding-left: 100px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__slide-2 .slide-content {
        padding-left: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__slide-2 .slide-content {
        padding-left: 0;
        padding-right: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__slide-2 .slide-content {
        padding: 30px 15px 50px;
    }
}

.portfolio__slide-2 p {
    max-width: 330px;
    font-size: 18px;
    line-height: 1.4;
    padding-bottom: 50px;
    opacity: 0;
}

@media only screen and (max-width: 767px) {
    .portfolio__slide-2 p {
        padding-bottom: 30px;
    }
}

.portfolio__slide-2 .btn-common {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--black-2);
}

.portfolio__slide-2 .btn-common:hover {
    color: var(--black-3);
}

.portfolio__slide-2 .btn-common i {
    padding-left: 5px;
}

.portfolio__slide-2 .btn-common-wrap {
    opacity: 0;
}

.portfolio__slide-3 {
    text-align: right;
    padding-right: 110px;
}

.portfolio__slide-3 a {
    display: block;
    color: var(--white);
}

.portfolio__slide-3 a:hover span {
    color: var(--white);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__slide-3 {
        padding-right: 0;
    }

    .portfolio__slide-3 img {
        width: 60%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__slide-3 {
        padding-right: 0;
    }

    .portfolio__slide-3 img {
        width: 60%;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__slide-3 {
        padding-right: 0;
    }

    .portfolio__slide-3 img {
        width: 100%;
    }
}

.portfolio__wrapper-6 {
    padding-left: 100px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__wrapper-6 {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__wrapper-6 {
        padding-left: 0;
        padding-top: 180px;
    }
}

.portfolio__item {
    padding-bottom: 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    scale: 0.5;
    opacity: 0;
}

.portfolio__item:nth-child(even) {
    top: 50%;
}

@media only screen and (max-width: 767px) {
    .portfolio__item:nth-child(even) {
        top: 0%;
    }
}

.portfolio__item:hover .portfolio__info {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.portfolio__item .img-box {
    height: 100%;
}

.portfolio__item img {
    width: 100%;
}

.portfolio__item-6 {
    position: relative;
    padding-bottom: 80px;
    overflow: hidden;
}

.portfolio__item-6 img {
    max-width: 100%;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__item-6 {
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__item-6 {
        padding-bottom: 50px;
    }
}

.portfolio__item-6:hover .portfolio__content-6 {
    right: 0%;
    opacity: 1;
    visibility: visible;
}

.portfolio__info {
    width: 175px;
    padding: 15px;
    border-radius: 5px;
    background-color: var(--primary);
    position: absolute;
    right: 0;
    bottom: 50px;
    z-index: 1;
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__info {
        opacity: 1;
        visibility: visible;
        right: 45px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__info {
        opacity: 1;
        visibility: visible;
        right: 45px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__info {
        opacity: 1;
        visibility: visible;
        right: 60px;
    }
}

.portfolio__info p {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    color: var(--black-2);
}

.portfolio__title {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    color: var(--black-2);
    padding-bottom: 3px;
}

.portfolio__title-3 {
    font-weight: 500;
    font-size: 180px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--white);
    text-align: left;
    padding-top: 80px;
    position: absolute;
    z-index: 5;
    opacity: 0;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__title-3 {
        font-size: 130px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__title-3 {
        font-size: 120px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__title-3 {
        font-size: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__title-3 {
        font-size: 60px;
        padding-top: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.portfolio__title-3 span {
    display: block;
    padding-left: 200px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__title-3 span {
        padding-left: 120px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__title-3 span {
        padding-left: 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__title-3 span {
        padding-left: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__title-3 span {
        padding-left: 60px;
    }
}

.portfolio__title-6 {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: var(--white);
    padding-bottom: 5px;
}

.portfolio__date {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    color: var(--white);
}

.portfolio__list-1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 0px 30px;
    position: relative;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .portfolio__list-1 {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 0px;
    }
}

.portfolio__list-6 {
    overflow-x: hidden;
    overflow: hidden;
}

.portfolio__pagination-6 {
    padding-top: 430px;
    padding-left: 110px;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.1;
    color: var(--black-3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .portfolio__pagination-6 {
        padding-top: 330px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__pagination-6 {
        padding-top: 130px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__pagination-6 {
        padding-top: 180px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__pagination-6 {
        padding-top: 180px;
        padding-left: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__pagination-6 {
        padding-top: 80px;
        padding-left: 0;
    }
}

.portfolio__current {
    font-weight: 300;
    font-size: 60px;
    line-height: 1.1;
    color: var(--black);
}

.portfolio__btn {
    margin-top: 40px;
}

.portfolio__btn#btn_wrapper, .portfolio__btn.btn_wrapper {
    margin: 0 auto;
}

.portfolio__content-6 {
    position: absolute;
    top: 0%;
    right: 5%;
    background-color: var(--black-2);
    z-index: 9;
    padding: 20px 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 1200px) {
    .portfolio__content-6 {
        opacity: 1;
        visibility: visible;
        right: 0;
    }
}

.portfolio__detail {
    overflow: hidden;
}

.portfolio__detail img {
    width: 100%;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__detail-top .pt-110 {
        padding-top: 140px;
    }
}

.portfolio__detail-top .sec-title {
    font-size: 120px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__detail-top .sec-title {
        font-size: 90px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__detail-top .sec-title {
        font-size: 72px;
        padding-top: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__detail-top .sec-title {
        font-size: 60px;
        padding-bottom: 50px;
        padding-top: 90px;
    }
}

.portfolio__detail-info {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.portfolio__detail-info ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 80px auto;
    grid-template-columns: auto auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    grid-gap: 25px 80px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__detail-info ul {
        -ms-grid-columns: 1fr 50px 1fr;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px 50px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__detail-info ul {
        grid-gap: 20px 50px;
    }
}

.portfolio__detail-info ul li {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-8);
    text-transform: capitalize;
}

.portfolio__detail-info ul li span, .portfolio__detail-info ul li a {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: var(--black-3);
    text-transform: capitalize;
}

.portfolio__detail-thumb {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 70vh;
}

.portfolio__detail-thumb img {
    position: absolute;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 130%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 1920px) {
    .portfolio__detail-thumb {
        padding-left: 100px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__detail-thumb {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: auto;
        position: unset;
    }

    .portfolio__detail-thumb img {
        position: absolute;
        bottom: 0;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .portfolio__detail-thumb img {
        position: unset;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__detail-thumb {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: auto;
        position: unset;
    }

    .portfolio__detail-thumb img {
        position: absolute;
        bottom: 0;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .portfolio__detail-thumb img {
        position: unset;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__detail-thumb {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: auto;
        position: unset;
    }

    .portfolio__detail-thumb img {
        position: absolute;
        bottom: 0;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .portfolio__detail-thumb img {
        position: unset;
    }
}

.portfolio__detail-title {
    max-width: 350px;
    font-weight: 500;
    font-size: 36px;
    line-height: 1.1;
    color: var(--black-2);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__detail-title {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__detail-title {
        max-width: 500px;
        padding-bottom: 30px;
    }
}

.portfolio__detail-text {
    padding-bottom: 60px;
}

.portfolio__detail-text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--black-3);
    padding-bottom: 15px;
}

.portfolio__detail-text li {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--black-2);
    padding-bottom: 5px;
}

.portfolio__detail-text .fonts {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 70px 3.5fr;
    grid-template-columns: 2fr 3.5fr;
    gap: 70px;
    padding-top: 60px;
    padding-bottom: 85px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__detail-text .fonts {
        -ms-grid-columns: 1fr 30px 2fr;
        grid-template-columns: 1fr 2fr;
        gap: 30px;
        padding-bottom: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__detail-text .fonts {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 40px;
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__detail-text .fonts {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 40px;
        padding-bottom: 0;
    }
}

.portfolio__detail-text .fonts img {
    width: auto;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__detail-text .fonts img {
        width: 100%;
    }
}

.portfolio__detail-text .fonts ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.portfolio__detail-text .fonts ul li {
    font-weight: 500;
    text-transform: capitalize;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2fr;
    grid-template-columns: 1fr 2fr;
}

.portfolio__detail-text .fonts ul .regular {
    font-weight: 400;
    color: var(--gray-9);
}

.portfolio__detail-text .fonts ul .medium {
    color: var(--gray-10);
}

.portfolio__detail-text .fonts ul .semibold {
    color: var(--black-3);
}

.portfolio__detail .block-thumb {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 65vh;
    z-index: 9;
    margin-bottom: 20px;
}

.portfolio__detail .block-thumb img {
    position: absolute;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 120%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__detail .block-thumb {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: auto;
    }

    .portfolio__detail .block-thumb img {
        position: absolute;
        bottom: 0;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .portfolio__detail .block-thumb img {
        position: unset;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__detail .block-thumb {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: auto;
    }

    .portfolio__detail .block-thumb img {
        position: absolute;
        bottom: 0;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .portfolio__detail .block-thumb img {
        position: unset;
    }
}

.portfolio__detail .block-gallery {
    overflow: hidden;
}

.portfolio__detail .block-gallery img {
    width: 50%;
    float: left;
    padding-bottom: 20px;
}

.portfolio__detail .block-gallery img:nth-child(odd) {
    padding-right: 10px;
}

.portfolio__detail .block-gallery img:nth-child(even) {
    padding-left: 10px;
}

.portfolio__detail .block-img-text {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr 20px 1.3fr;
    grid-template-columns: 1fr 1fr 1.3fr;
    grid-gap: 20px;
}

@media only screen and (max-width: 767px) {
    .portfolio__detail .block-img-text {
        -ms-grid-columns: 1fr 20px 1fr;
        grid-template-columns: repeat(2, 1fr);
    }
}

.portfolio__detail .block-img-text p {
    font-size: 18px;
    line-height: 1.4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 60px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__detail .block-img-text p {
        padding-left: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__detail .block-img-text p {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__detail .block-img-text p {
        grid-column: 1/-1;
        padding-left: 0;
    }
}

.portfolio__detail .block-content {
    position: relative;
    z-index: 1;
}

.portfolio__detail-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.portfolio__detail-btns a {
    margin: 0 -10px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio-v2.pt-150 {
        padding-top: 150px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio-v2.pt-150 {
        padding-top: 130px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio-v2.pt-150 {
        padding-top: 130px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio-v3 .pt-100 {
        padding-top: 150px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio-v3 .pt-100 {
        padding-top: 130px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio-v3 .pt-100 {
        padding-top: 120px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio-v4 .pt-100 {
        padding-top: 150px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio-v4 .pt-100 {
        padding-top: 130px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio-v4 .pt-100 {
        padding-top: 130px;
    }
}

.portfolio-v4 .sec-title-2 {
    color: var(--white);
}

.portfolio-v4 .blog__text p {
    color: var(--gray-2);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio-v5 .pt-100 {
        padding-top: 150px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio-v5 .pt-100 {
        padding-top: 130px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio-v5 .pt-100 {
        padding-top: 130px;
    }
}

.portfolio-v5 .pb-100 {
    padding-bottom: 60px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio-v5 .pb-100 {
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio-v5 .pb-100 {
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio-v5 .pb-100 {
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio-v5 .pb-100 {
        padding-bottom: 0;
    }
}

.portfolio-v5.portfolio__project {
    padding: 0;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio-v5.portfolio__project .line {
        padding-top: 70px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio-v5.portfolio__project .line {
        padding-top: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio-v5.portfolio__project .line {
        padding-top: 60px;
    }
}

.portfolio-v5.portfolio__project .pp-slider-wrapper, .portfolio-v5.portfolio__project .pp-slide-thumb, .portfolio-v5.portfolio__project .pp-next, .portfolio-v5.portfolio__project .pp-prev {
    opacity: 1;
}

.swiper-slide-active .portfolio__title-3 {
    -webkit-animation: wcfadeUp 1s 0.7s forwards;
    animation: wcfadeUp 1s 0.7s forwards;
}

.bg_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.bg_image::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    content: "";
}

.bg_image img {
    width: 120%;
}

.row_bottom {
    margin-top: 80vh;
}

@media only screen and (max-width: 767px) {
    .row_bottom {
        margin-top: 30px;
    }
}

:root {
    --pink-6: #EEE5DC;
    --purple: #D9DBEB;
    --purple-2: #CCCEDE;
    --green: #81C3A3;
    --green-2: #DCE4E0;
}

@keyframes wcSpinner {
    from {
        -webkit-transform: rotate(0turn);
        transform: rotate(0turn);
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

.portfolio__hero {
    position: relative;
    padding-bottom: 60px;
}

@media only screen and (max-width: 767px) {
    .portfolio__hero {
        padding-bottom: 40px;
    }
}

.portfolio__hero .title {
    font-weight: 600;
    font-size: 230px;
    line-height: 0.9;
    text-align: center;
    text-transform: uppercase;
    color: var(--black-2);
    opacity: 0;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .portfolio__hero .title {
        font-size: 180px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__hero .title {
        font-size: 160px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__hero .title {
        font-size: 140px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__hero .title {
        font-size: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__hero .title {
        font-size: 52px;
    }
}

.portfolio__hero .title.shape-circle {
    position: relative;
    opacity: 0;
}

.portfolio__hero .title.shape-circle::after {
    position: absolute;
    content: "";
    width: 62px;
    height: 62px;
    right: -50px;
    top: 75px;
    background-image: url("/assets/imgs/shape/13.png");
    background-repeat: no-repeat;
    background-position: right;
    -webkit-animation: wcSpinner 3s infinite linear;
    animation: wcSpinner 3s infinite linear;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__hero .title.shape-circle::after {
        top: 60px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__hero .title.shape-circle::after {
        right: -10px;
        top: 35px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__hero .title.shape-circle::after {
        top: 12px;
        right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__hero .title.shape-circle::after {
        top: -60px;
        right: 0;
    }
}

.portfolio__hero .title.text-stroke {
    -webkit-text-stroke: 1px var(--black-2);
    color: transparent;
    margin: 0 -140px;
    opacity: 0;
}

.portfolio__hero .pp-thumb {
    max-width: 100%;
    position: absolute;
    bottom: 0;
    left: 14%;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__hero .pp-thumb {
        max-width: 780px;
        left: 17%;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__hero .pp-thumb {
        max-width: 600px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__hero .pp-thumb {
        max-width: 500px;
        left: 10%;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__hero .pp-thumb {
        left: 0;
    }
}

.portfolio__hero .btn-wrapper {
    text-align: center;
    position: relative;
    z-index: 9;
    margin-top: 30px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__hero .btn-wrapper {
        margin-top: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__hero .btn-wrapper {
        margin-top: 120px;
    }
}

.portfolio__hero-area {
    overflow: hidden;
    position: relative;
    padding-top: 200px;
    background-color: var(--pink-6);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__hero-area {
        padding-top: 160px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__hero-area {
        padding-top: 160px;
    }
}

.portfolio__hero-area::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 100px;
    left: 80px;
    bottom: 50px;
    background-image: url("/assets/imgs/shape/15.png");
    background-repeat: no-repeat;
    -webkit-animation: wcZoom 3s infinite linear;
    animation: wcZoom 3s infinite linear;
}

@media only screen and (max-width: 767px) {
    .portfolio__hero-area::after {
        left: 0;
        bottom: 45px;
    }
}

.portfolio__about {
    background-color: var(--purple);
    position: relative;
    overflow: hidden;
}

.portfolio__about::after {
    position: absolute;
    content: "ABOUT";
    width: 200px;
    height: 100%;
    right: 0px;
    top: -60px;
    font-weight: 700;
    font-size: 250px;
    line-height: 1;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.03);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__about::after {
        font-size: 230px;
        top: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__about::after {
        font-size: 200px;
    }
}

.portfolio__about-left {
    position: relative;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .portfolio__about-left {
        padding-bottom: 30px;
    }
}

.portfolio__about-left img {
    position: absolute;
    right: 100px;
    bottom: 0;
    opacity: 0;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__about-left img {
        right: 0;
        max-width: 180px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__about-left img {
        display: none;
    }
}

.portfolio__about .about-row {
    margin-top: 150px;
    border-top: 1px solid var(--purple-2);
    border-bottom: 1px solid var(--purple-2);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__about .about-row {
        margin-top: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__about .about-row {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__about .about-row {
        margin-top: 60px;
        border: none;
    }
}

.portfolio__about .sec-title {
    max-width: 715px;
    text-transform: uppercase;
    opacity: 0;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__about .sec-title {
        padding-bottom: 40px;
    }
}

.portfolio__about .sec-title span {
    display: block;
    padding-left: 120px;
    position: relative;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__about .sec-title span {
        padding-left: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__about .sec-title span {
        padding-left: 0;
    }
}

.portfolio__about .sec-title span::before {
    position: absolute;
    content: "";
    width: 90px;
    height: 1px;
    left: 0;
    top: 30px;
    background-color: var(--black-2);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__about .sec-title span::before {
        top: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__about .sec-title span::before {
        width: 0;
    }
}

.portfolio__about .sec-text p {
    font-size: 18px;
    line-height: 1.4;
    color: var(--black-2);
    padding-bottom: 70px;
    opacity: 0;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__about .sec-text p {
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__about .sec-text p {
        padding-bottom: 50px;
    }
}

.portfolio__about .brand-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--black-2);
    max-width: 220px;
    opacity: 0;
}

@media only screen and (max-width: 767px) {
    .portfolio__about .brand-title {
        max-width: 400px;
    }
}

.portfolio__about .brand-title-wrap {
    padding: 40px 0;
    border-right: 1px solid var(--purple-2);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__about .brand-title-wrap {
        padding: 25px 0;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__about .brand-title-wrap {
        border: none;
    }
}

.portfolio__about .brand-logo img {
    opacity: 0;
}

.portfolio__about .brand-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 80px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__about .brand-list {
        padding-left: 40px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__about .brand-list {
        padding-left: 0px;
        gap: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__about .brand-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-left: 0;
        gap: 40px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__about .brand-logo img {
        max-width: 80px;
    }
}

.portfolio__project {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__project {
        padding-top: 120px;
    }
}

.portfolio__project::after {
    position: absolute;
    content: "work";
    width: 200px;
    height: 100%;
    right: 0px;
    top: -100px;
    font-weight: 700;
    font-size: 250px;
    line-height: 1;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.03);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__project::after {
        top: -60px;
        font-size: 230px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__project::after {
        font-size: 200px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__project::after {
        font-size: 180px;
        top: -50px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__project::after {
        font-size: 180px;
    }
}

.portfolio__project .pp-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--black);
    opacity: 0;
}

.portfolio__project .pp-slider-wrapper {
    padding-left: 200px;
    padding-right: 100px;
    position: relative;
    opacity: 0;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__project .pp-slider-wrapper {
        padding-left: 160px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__project .pp-slider-wrapper {
        padding-left: 160px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__project .pp-slider-wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__project .pp-slider-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
}

.portfolio__project .pp-slide {
    overflow: hidden;
    padding: 80px 0 80px 80px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__project .pp-slide {
        padding: 80px 0 80px 120px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__project .pp-slide {
        padding: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__project .pp-slide {
        padding: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__project .pp-slide {
        padding: 60px;
    }
}

.portfolio__project .pp-slide-img {
    background-color: var(--green);
    max-width: 470px;
    max-height: 650px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .portfolio__project .pp-slide-img {
        max-width: 430px;
        max-height: 600px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__project .pp-slide-img {
        max-width: 330px;
        max-height: 450px;
    }
}

.portfolio__project .pp-slide-img img {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
    max-width: 100%;
}

.portfolio__project .swipper-btn {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--black-2);
    position: relative;
}

.portfolio__project .pp-prev {
    position: absolute;
    top: calc(50% - 12px);
    right: 0;
    z-index: 9;
    opacity: 0;
}

@media only screen and (max-width: 767px) {
    .portfolio__project .pp-prev {
        top: 95%;
    }
}

.portfolio__project .pp-prev::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    top: 13px;
    left: -55px;
    background-color: var(--black-2);
}

.portfolio__project .pp-next {
    position: absolute;
    top: calc(50% - 12px);
    left: 60px;
    z-index: 9;
    opacity: 0;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__project .pp-next {
        left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__project .pp-next {
        top: 95%;
        left: 0;
    }
}

.portfolio__project .pp-next::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    top: 13px;
    left: 45px;
    background-color: var(--black-2);
}

.portfolio__project .pp-slide-title {
    font-weight: 500;
    font-size: 36px;
    line-height: 1.3;
    text-align: right;
    text-transform: uppercase;
    color: var(--black-2);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__project .pp-slide-title {
        font-size: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__project .pp-slide-title {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__project .pp-slide-title {
        font-size: 24px;
    }
}

.portfolio__project .pp-slide-thumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 300px;
    margin-left: auto;
    opacity: 0;
}

.portfolio__project .pp-slide-thumb p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    text-align: right;
    text-transform: uppercase;
    color: var(--black-3);
    padding-top: 15px;
}

.portfolio__project-thumbs {
    height: 100%;
    margin-right: -150px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .portfolio__project-thumbs {
        margin-right: -50px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__project-thumbs {
        margin-right: -50px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__project-thumbs {
        margin-right: -20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__project-thumbs {
        margin-right: -10px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__project-thumbs {
        margin-right: 0;
        margin-top: 30px;
    }
}

.portfolio__service {
    background-color: var(--green-2);
    background-image: url("/assets/imgs/shape/17.png");
    background-repeat: no-repeat;
    background-position: bottom right;
}

.portfolio__service .sec-title {
    max-width: 350px;
    text-indent: 80px;
    text-transform: uppercase;
    opacity: 0;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__service .sec-title {
        text-indent: 40px;
        max-width: 400px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__service .sec-title {
        text-indent: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__service .sec-title {
        text-indent: 20px;
    }
}

.portfolio__service .sec-text {
    background-image: url("/assets/imgs/shape/14.png");
    background-repeat: no-repeat;
    background-position: 0 80px;
    opacity: 0;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__service .sec-text {
        background-position: 0 20px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__service .sec-text {
        background-size: 100%;
        background-position: 0 40px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__service .sec-text {
        background-position: 0 30px;
        background-size: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__service .sec-text {
        background-position: 0 30px;
        background-size: 100%;
    }
}

.portfolio__service .sec-text p {
    max-width: 320px;
    font-size: 18px;
    line-height: 1.4;
    color: var(--black-13);
    padding-top: 150px;
    opacity: 0;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__service .sec-text p {
        padding-top: 60px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__service .sec-text p {
        padding-top: 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__service .sec-text p {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__service .sec-text p {
        padding-top: 70px;
    }
}

.portfolio__service-list {
    padding-top: 62px;
}

.portfolio__service-item {
    padding: 40px;
    border: 1.3px solid var(--black-2);
    border-radius: 21px;
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__service-item {
        padding: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__service-item {
        margin-bottom: 20px;
    }
}

.portfolio__service-item::after {
    position: absolute;
    content: "";
    width: 23px;
    height: 76px;
    right: -2px;
    top: calc(50% - 38px);
    background: var(--black-2);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 15px 0px 0px 15px;
}

.portfolio__service-item:hover .ps-title, .portfolio__service-item:hover ul li {
    color: var(--white);
}

.portfolio__service-item:hover::after {
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    right: -1px;
    top: 0;
    border-radius: 15px;
}

.portfolio__service-item .ps-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--black-2);
    padding-bottom: 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__service-item .ps-title {
        font-size: 20px;
        line-height: 1.3;
    }
}

.portfolio__service-item ul {
    padding-left: 50px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__service-item ul {
        padding-left: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__service-item ul {
        padding-left: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__service-item ul {
        padding-left: 20px;
    }
}

.portfolio__service-item ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--black-2);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.portfolio__service .ps-btn {
    text-align: center;
}

.portfolio__service .ps-btn a {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5;
    color: var(--black-2);
    border: 1.3px solid var(--black-2);
    border-radius: 35px;
    display: inline-block;
    padding: 10px 40px;
    margin-top: 70px;
    opacity: 0;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__service .ps-btn a {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__service .ps-btn a {
        margin-top: 30px;
    }
}

.portfolio__service .ps-btn a strong {
    font-weight: 400;
    text-transform: capitalize;
}

.portfolio__footer {
    margin-top: 150px;
    border-top: 1px solid #E2E2E2;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__footer {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__footer {
        margin-top: 60px;
    }
}

.portfolio__footer-area {
    background-color: #F7F7F7;
    background-image: url("/assets/imgs/shape/18.png");
    background-repeat: no-repeat;
    background-position: top right;
    position: relative;
}

.portfolio__footer-area::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 100px;
    left: 50px;
    bottom: 20px;
    background-image: url("/assets/imgs/shape/15.png");
    background-repeat: no-repeat;
    -webkit-animation: wcZoom 3s infinite linear;
    animation: wcZoom 3s infinite linear;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__footer-area::after {
        bottom: 120px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__footer-area::after {
        bottom: 120px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__footer-area::after {
        left: 10px;
        bottom: 100px;
    }
}

.portfolio__footer-area::before {
    position: absolute;
    content: "";
    width: 156px;
    height: 156px;
    left: calc(50% - 78px);
    bottom: 2px;
    background-image: url("/assets/imgs/shape/19.png");
    background-repeat: no-repeat;
    background-position: right;
    -webkit-animation: wcSpinner 3s infinite linear;
    animation: wcSpinner 3s infinite linear;
}

@media only screen and (max-width: 767px) {
    .portfolio__footer-area::before {
        bottom: 50px;
    }
}

.portfolio__footer-area .pf-btm {
    padding: 20px 0;
}

.portfolio__footer-area .pf-title {
    font-weight: 500;
    font-size: 100px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--black-2);
    padding-bottom: 70px;
    opacity: 0;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__footer-area .pf-title {
        font-size: 72px;
        padding-bottom: 30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__footer-area .pf-title {
        font-size: 72px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__footer-area .pf-title {
        font-size: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__footer-area .pf-title {
        font-size: 60px;
        padding-bottom: 0;
    }
}

.portfolio__footer-area .pf-contact {
    padding-bottom: 35px;
}

@media only screen and (max-width: 767px) {
    .portfolio__footer-area .pf-contact {
        padding-top: 30px;
    }
}

.portfolio__footer-area .pf-contact h3 {
    font-weight: 500;
    font-size: 26px;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--black-2);
    padding-bottom: 25px;
    opacity: 0;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__footer-area .pf-contact h3 {
        font-size: 22px;
    }
}

.portfolio__footer-area .pf-contact ul li {
    padding-bottom: 8px;
    opacity: 0;
}

.portfolio__footer-area .pf-contact ul li a {
    font-size: 18px;
    line-height: 26px;
    text-decoration-line: underline;
    color: var(--black-2);
}

@media only screen and (max-width: 767px) {
    .portfolio__footer-area .pf-social {
        margin-bottom: 40px;
    }
}

.portfolio__footer-area .pf-social h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--black-2);
    position: relative;
    display: inline-block;
    padding-bottom: 30px;
    opacity: 0;
}

.portfolio__footer-area .pf-social h3::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    top: 15px;
    right: -60px;
    background-color: var(--black-2);
}

.portfolio__footer-area .pf-social ul li {
    display: inline-block;
    opacity: 0;
}

.portfolio__footer-area .pf-social ul li a {
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--black-2);
    border: 1px solid var(--gray);
    padding: 8px 21px;
    border-radius: 18px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__footer-area .pf-social ul li a {
        padding: 7px 18px;
        margin-bottom: 7px;
    }
}

.portfolio__footer-area .pf-social ul li a:hover {
    color: var(--white);
    background-color: var(--black-2);
}

.portfolio__footer-area .pc-btn {
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .portfolio__footer .pf-btm .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .portfolio__main-wrapper .pp-title-wrap {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
}

@media (max-width: 1300px) {
    .portfolio__main-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.portfolio-section {
    height: 100vh;
}

@media (max-width: 1300px) {
    .portfolio-section {
        height: auto;
    }
}

.portfolio__page .wc-btn-dark, .portfolio__page .contact__text, .portfolio__page .contact__form, .portfolio__page .footer-menu, .portfolio__page .footer-menu-2, .portfolio__page .footer__copyright-2 p {
    opacity: 0;
}

.portfolio__page .swiper-slide-active .wc-btn-dark {
    -webkit-animation: wcfadeUp 1s 0.7s forwards;
    animation: wcfadeUp 1s 0.7s forwards;
}

.portfolio__page .swiper-slide-active .title {
    -webkit-animation: wcfadeUp 1s 0.6s forwards;
    animation: wcfadeUp 1s 0.6s forwards;
}

.portfolio__page .swiper-slide-active .shape-circle {
    -webkit-animation: wcfadeUp 1s 0.2s forwards;
    animation: wcfadeUp 1s 0.2s forwards;
}

.portfolio__page .swiper-slide-active .text-stroke {
    -webkit-animation: wcfadeUp 1s 0.4s forwards;
    animation: wcfadeUp 1s 0.4s forwards;
}

.portfolio__page .swiper-slide-active .sec-title {
    -webkit-animation: wcfadeUp 1s 0.2s forwards;
    animation: wcfadeUp 1s 0.2s forwards;
}

.portfolio__page .swiper-slide-active .sec-text p {
    -webkit-animation: wcfadeUp 1s 0.4s forwards;
    animation: wcfadeUp 1s 0.4s forwards;
}

.portfolio__page .swiper-slide-active .portfolio__service .sec-text {
    -webkit-animation: wcfadeUp 1s 0.4s forwards;
    animation: wcfadeUp 1s 0.4s forwards;
}

.portfolio__page .swiper-slide-active .brand-title {
    -webkit-animation: wcfadeUp 1s 0.4s forwards;
    animation: wcfadeUp 1s 0.4s forwards;
}

.portfolio__page .swiper-slide-active .brand-logo img {
    -webkit-animation: wcfadeUp 1s 0.6s forwards;
    animation: wcfadeUp 1s 0.6s forwards;
}

.portfolio__page .swiper-slide-active .pp-title {
    -webkit-animation: wcfadeUp 1s 0.2s forwards;
    animation: wcfadeUp 1s 0.2s forwards;
}

.portfolio__page .swiper-slide-active .pp-next {
    -webkit-animation: wcfadeUp 1s 0.4s forwards;
    animation: wcfadeUp 1s 0.4s forwards;
}

.portfolio__page .swiper-slide-active .pp-prev {
    -webkit-animation: wcfadeUp 1s 0.6s forwards;
    animation: wcfadeUp 1s 0.6s forwards;
}

.portfolio__page .swiper-slide-active .portfolio__service-item {
    -webkit-animation: wcfadeUp 1s 0.6s forwards;
    animation: wcfadeUp 1s 0.6s forwards;
}

.portfolio__page .swiper-slide-active .ps-btn a {
    -webkit-animation: wcfadeUp 1s 0.8s forwards;
    animation: wcfadeUp 1s 0.8s forwards;
}

.portfolio__page .swiper-slide-active .pf-title {
    -webkit-animation: wcfadeUp 1s 0.2s forwards;
    animation: wcfadeUp 1s 0.2s forwards;
}

.portfolio__page .swiper-slide-active .contact__text {
    -webkit-animation: wcfadeUp 1s 0.4s forwards;
    animation: wcfadeUp 1s 0.4s forwards;
}

.portfolio__page .swiper-slide-active .pf-contact h3 {
    -webkit-animation: wcfadeUp 1s 0.4s forwards;
    animation: wcfadeUp 1s 0.4s forwards;
}

.portfolio__page .swiper-slide-active .pf-contact ul li {
    -webkit-animation: wcfadeUp 1s 0.6s forwards;
    animation: wcfadeUp 1s 0.6s forwards;
}

.portfolio__page .swiper-slide-active .pf-social h3 {
    -webkit-animation: wcfadeUp 1s 0.8s forwards;
    animation: wcfadeUp 1s 0.8s forwards;
}

.portfolio__page .swiper-slide-active .pf-social ul li {
    -webkit-animation: wcfadeUp 1s 1s forwards;
    animation: wcfadeUp 1s 1s forwards;
}

.portfolio__page .swiper-slide-active .contact__form {
    -webkit-animation: wcfadeUp 1s 0.6s forwards;
    animation: wcfadeUp 1s 0.6s forwards;
}

.portfolio__page .swiper-slide-active .portfolio__about-left img {
    -webkit-animation: wcfadeUp 1s 0.4s forwards;
    animation: wcfadeUp 1s 0.4s forwards;
}

.portfolio__page .swiper-slide-active .portfolio__project .pp-slider-wrapper {
    -webkit-animation: wcfadeUp 1s 0.4s forwards;
    animation: wcfadeUp 1s 0.4s forwards;
}

.portfolio__page .swiper-slide-active .portfolio__project .pp-slide-thumb {
    -webkit-animation: wcfadeUp 1s 0.6s forwards;
    animation: wcfadeUp 1s 0.6s forwards;
}

.portfolio__page .swiper-slide-active .footer__copyright-2 p {
    -webkit-animation: wcfadeUp 1s 1.2s forwards;
    animation: wcfadeUp 1s 1.2s forwards;
}

.portfolio__page .swiper-slide-active .footer-menu, .portfolio__page .swiper-slide-active .footer-menu-2 {
    -webkit-animation: wcfadeUp 1s 1.3s forwards;
    animation: wcfadeUp 1s 1.3s forwards;
}

.portfolio__page .wc-btn-dark:hover {
    color: var(--white);
    background-color: var(--black-2);
    border-color: var(--black-2);
}

@media (max-width: 1300px) {
    .swiper-slide .wc-btn-dark {
        -webkit-animation: wcfadeUp 1s 0.7s forwards;
        animation: wcfadeUp 1s 0.7s forwards;
    }

    .swiper-slide .title {
        -webkit-animation: wcfadeUp 1s 0.6s forwards;
        animation: wcfadeUp 1s 0.6s forwards;
    }

    .swiper-slide .shape-circle {
        -webkit-animation: wcfadeUp 1s 0.2s forwards;
        animation: wcfadeUp 1s 0.2s forwards;
    }

    .swiper-slide .text-stroke {
        -webkit-animation: wcfadeUp 1s 0.4s forwards;
        animation: wcfadeUp 1s 0.4s forwards;
    }

    .swiper-slide .sec-title {
        -webkit-animation: wcfadeUp 1s 0.2s forwards;
        animation: wcfadeUp 1s 0.2s forwards;
    }

    .swiper-slide .sec-text p {
        -webkit-animation: wcfadeUp 1s 0.4s forwards;
        animation: wcfadeUp 1s 0.4s forwards;
    }

    .swiper-slide .portfolio__service .sec-text {
        -webkit-animation: wcfadeUp 1s 0.4s forwards;
        animation: wcfadeUp 1s 0.4s forwards;
    }

    .swiper-slide .brand-title {
        -webkit-animation: wcfadeUp 1s 0.4s forwards;
        animation: wcfadeUp 1s 0.4s forwards;
    }

    .swiper-slide .brand-logo img {
        -webkit-animation: wcfadeUp 1s 0.6s forwards;
        animation: wcfadeUp 1s 0.6s forwards;
    }

    .swiper-slide .pp-title {
        -webkit-animation: wcfadeUp 1s 0.2s forwards;
        animation: wcfadeUp 1s 0.2s forwards;
    }

    .swiper-slide .pp-next {
        -webkit-animation: wcfadeUp 1s 0.4s forwards;
        animation: wcfadeUp 1s 0.4s forwards;
    }

    .swiper-slide .pp-prev {
        -webkit-animation: wcfadeUp 1s 0.6s forwards;
        animation: wcfadeUp 1s 0.6s forwards;
    }

    .swiper-slide .portfolio__service-item {
        -webkit-animation: wcfadeUp 1s 0.6s forwards;
        animation: wcfadeUp 1s 0.6s forwards;
    }

    .swiper-slide .ps-btn a {
        -webkit-animation: wcfadeUp 1s 0.8s forwards;
        animation: wcfadeUp 1s 0.8s forwards;
    }

    .swiper-slide .pf-title {
        -webkit-animation: wcfadeUp 1s 0.2s forwards;
        animation: wcfadeUp 1s 0.2s forwards;
    }

    .swiper-slide .contact__text {
        -webkit-animation: wcfadeUp 1s 0.4s forwards;
        animation: wcfadeUp 1s 0.4s forwards;
    }

    .swiper-slide .pf-contact h3 {
        -webkit-animation: wcfadeUp 1s 0.4s forwards;
        animation: wcfadeUp 1s 0.4s forwards;
    }

    .swiper-slide .pf-contact ul li {
        -webkit-animation: wcfadeUp 1s 0.6s forwards;
        animation: wcfadeUp 1s 0.6s forwards;
    }

    .swiper-slide .pf-social h3 {
        -webkit-animation: wcfadeUp 1s 0.8s forwards;
        animation: wcfadeUp 1s 0.8s forwards;
    }

    .swiper-slide .pf-social ul li {
        -webkit-animation: wcfadeUp 1s 1s forwards;
        animation: wcfadeUp 1s 1s forwards;
    }

    .swiper-slide .contact__form {
        -webkit-animation: wcfadeUp 1s 0.6s forwards;
        animation: wcfadeUp 1s 0.6s forwards;
    }

    .swiper-slide .portfolio__about-left img {
        -webkit-animation: wcfadeUp 1s 0.4s forwards;
        animation: wcfadeUp 1s 0.4s forwards;
    }

    .swiper-slide .portfolio__project .pp-slider-wrapper {
        -webkit-animation: wcfadeUp 1s 0.4s forwards;
        animation: wcfadeUp 1s 0.4s forwards;
    }

    .swiper-slide .portfolio__project .pp-slide-thumb {
        -webkit-animation: wcfadeUp 1s 0.6s forwards;
        animation: wcfadeUp 1s 0.6s forwards;
    }

    .swiper-slide .footer__copyright-2 p {
        -webkit-animation: wcfadeUp 1s 1.2s forwards;
        animation: wcfadeUp 1s 1.2s forwards;
    }

    .swiper-slide .footer-menu, .swiper-slide .footer-menu-2 {
        -webkit-animation: wcfadeUp 1s 1.3s forwards;
        animation: wcfadeUp 1s 1.3s forwards;
    }
}

.menu-text-pp {
    color: var(--black-2);
}

.circle-pagination {
    width: 90px !important;
    bottom: unset !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
    .circle-pagination {
        display: none;
    }
}

.circle-pagination.left {
    left: 50px !important;
}

.circle-pagination.right {
    left: calc(100% - 135px) !important;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .circle-pagination.right {
        left: calc(100% - 90px) !important;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .circle-pagination.right {
        left: calc(100% - 80px) !important;
    }
}

.circle-pagination button.swiper-pagination-bullet {
    position: relative;
    width: auto;
    height: auto;
    margin: 10px 0 !important;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .circle-pagination button.swiper-pagination-bullet {
        margin: 5px 0 !important;
    }
}

.circle-pagination .swiper-pagination-bullet span {
    position: absolute;
    width: 6px;
    height: 6px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: var(--black-2);
    border-radius: 100%;
}

.circle-pagination .circle-progress {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    width: 50px;
    height: 50px;
}

.circle-pagination .circle-origin {
    fill: transparent;
    stroke: var(--black-2);
    stroke-width: 1;
    stroke-linecap: round;
    stroke-dasharray: 156px;
    stroke-dashoffset: 156px;
}

.circle-pagination .swiper-pagination-bullet-active .circle-origin {
    -webkit-animation: progress 5s backwards;
    animation: progress 5s backwards;
}

@-webkit-keyframes progress {
    0% {
        stroke-dashoffset: 156px;
    }

    90% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -156px;
    }
}

@keyframes progress {
    0% {
        stroke-dashoffset: 156px;
    }

    90% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -156px;
    }
}

.circle-pagination-2 {
    width: 90px !important;
    top: 50%;
    bottom: unset !important;
    left: 30px !important;
    -webkit-transform: translateY(-45%);
    transform: translateY(-45%);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .circle-pagination-2 {
        left: 0 !important;
        width: 63px !important;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .circle-pagination-2 {
        left: 0 !important;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .circle-pagination-2 {
        left: 0 !important;
    }
}

.circle-pagination-2 .swiper-pagination-bullet {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 1px solid var(--black-2);
    position: relative;
    margin: 10px 0 !important;
}

.circle-pagination-2 .swiper-pagination-bullet::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--black-2);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 100%;
}

.blog__area {
    overflow: hidden;
}

.blog__area .row {
    --bs-gutter-x: 60px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .blog__area .row {
        --bs-gutter-x: 40px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .blog__area .row {
        --bs-gutter-x: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog__area .row {
        --bs-gutter-x: 20px;
    }
}

.blog__area .sec-title-wrapper {
    text-align: center;
    padding-bottom: 60px;
}

.blog__area-2 {
    overflow: hidden;
    background-color: var(--black-2);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .blog__area-2 .pt-150 {
        padding-top: 150px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .blog__area-2 .pb-110 {
        padding-bottom: 65px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog__area-2 .pb-110 {
        padding-bottom: 55px;
    }
}

@media only screen and (max-width: 767px) {
    .blog__area-2 .pb-110 {
        padding-bottom: 0;
    }
}

.blog__area-2 .row {
    --bs-gutter-x: 60px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .blog__area-2 .row {
        --bs-gutter-x: 40px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .blog__area-2 .row {
        --bs-gutter-x: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog__area-2 .row {
        --bs-gutter-x: 20px;
    }
}

.blog__area-2 #btn_wrapper, .blog__area-2 .btn_wrapper {
    margin-left: auto;
    margin-right: -40px;
    margin-top: -60px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .blog__area-2 #btn_wrapper, .blog__area-2 .btn_wrapper {
        margin-right: -10px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog__area-2 #btn_wrapper, .blog__area-2 .btn_wrapper {
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .blog__area-2 #btn_wrapper, .blog__area-2 .btn_wrapper {
        margin: 0;
        margin-top: 30px;
        margin-bottom: 50px;
    }
}

.blog__area-2 .sec-title {
    color: var(--white);
    padding-top: 10px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog__area-2 .sec-title {
        padding-top: 45px;
    }
}

.blog__area-2 .sec-text {
    padding-top: 30px;
}

.blog__area-2 .sec-text p {
    max-width: 340px;
    font-size: 18px;
    line-height: 1.4;
    color: var(--gray-2);
}

.blog__area-2 .sec-btn {
    margin-bottom: 30px;
}

.blog__area-2 .sec-btn a {
    margin-left: auto;
}

@media only screen and (max-width: 767px) {
    .blog__area-2 .sec-btn a {
        margin-left: 0;
    }
}

.blog__area-3 {
    overflow: hidden;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog__area-3.pb-140 {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .blog__area-3.pb-140 {
        padding-bottom: 20px;
    }
}

.blog__area-3 .sec-title {
    padding-bottom: 40px;
    text-transform: uppercase;
    background-color: var(--white);
}

.blog__area-3 .sec-title-wrapper {
    position: relative;
    padding-left: 330px;
    margin-bottom: 60px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog__area-3 .sec-title-wrapper {
        padding-left: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .blog__area-3 .sec-title-wrapper {
        padding-left: 0;
    }
}

.blog__area-3 .sec-title-wrapper::after {
    position: absolute;
    content: "";
    left: 39%;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: var(--white-2);
}

.blog__area-3 .sec-title-wrapper p {
    padding-top: 70px;
    padding-bottom: 60px;
    max-width: 330px;
    font-size: 18px;
    line-height: 1.4;
    margin-left: 220px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .blog__area-3 .sec-title-wrapper p {
        margin-left: 100px;
        padding-top: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog__area-3 .sec-title-wrapper p {
        margin-left: 100px;
        padding-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .blog__area-3 .sec-title-wrapper p {
        margin-left: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.blog__area-3 .sec-sub-title {
    padding-top: 50px;
    text-transform: uppercase;
    background-color: var(--white);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog__area-3 .sec-sub-title {
        padding-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .blog__area-3 .sec-sub-title {
        padding-top: 0;
    }
}

.blog__area-6 {
    overflow: hidden;
}

.blog__area-6 .pb-110 {
    padding-bottom: 90px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog__area-6 .pb-110 {
        padding-bottom: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .blog__area-6 .pb-110 {
        padding-bottom: 15px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog__area-6 .sec-title-wrapper {
        padding-top: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .blog__area-6 .sec-title-wrapper {
        padding-top: 60px;
    }
}

.blog__area-6 .blog__item, .blog__area-6 .blog__item-2 {
    padding-bottom: 55px;
    position: relative;
    z-index: 1;
}

.blog__item, .blog__item-2 {
    position: relative;
    z-index: 5;
}

@media only screen and (max-width: 767px) {
    .blog__item, .blog__item-2 {
        padding-bottom: 50px;
    }
}

.blog__item:hover .blog__img, .blog__item-2:hover .blog__img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.blog__item-2 {
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .blog__item-2 {
        padding-bottom: 30px;
    }
}

.blog__item-3 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .blog__item-3 {
        -ms-grid-columns: 2.5fr 1fr;
        grid-template-columns: 2.5fr 1fr;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog__item-3 {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .blog__item-3 {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        margin-bottom: 50px;
    }
}

.blog__info-3 {
    position: absolute;
    width: 63%;
    bottom: -1px;
    right: 0;
    margin-left: -50px;
    background: var(--white);
    z-index: 1;
    padding: 40px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .blog__info-3 {
        width: 70%;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .blog__info-3 {
        width: 80%;
    }
}

@media only screen and (max-width: 767px) {
    .blog__info-3 {
        width: 90%;
        margin-left: 0;
        padding: 30px 20px;
        border-top-left-radius: 5px;
    }
}

.blog__img {
    width: 100%;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.blog__img-3 {
    width: 100%;
}

.blog__img-wrapper {
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
    z-index: 9;
}

.blog__meta, .blog__meta-2 {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3;
    color: var(--black-3);
    margin-bottom: 10px;
}

.blog__meta a, .blog__meta-2 a {
    color: var(--black-3);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.blog__meta a:hover, .blog__meta-2 a:hover {
    color: var(--secondary);
}

.blog__meta-2 {
    color: var(--gray-2);
}

.blog__meta-2 a {
    color: var(--gray-2);
}

.blog__meta-2 a:hover {
    color: var(--white);
}

.blog__title, .blog__title-3, .blog__title-2 {
    display: block;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.2;
    color: var(--black-2);
    border-bottom: 1px solid var(--gray-5);
    margin-bottom: 10px;
    padding-bottom: 20px;
}

.blog__title:hover, .blog__title-3:hover, .blog__title-2:hover {
    color: var(--black-3);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .blog__title, .blog__title-3, .blog__title-2 {
        font-size: 22px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog__title, .blog__title-3, .blog__title-2 {
        font-size: 20px;
    }
}

.blog__title-2 {
    color: var(--white);
    border-bottom: 0;
}

.blog__title-2:hover {
    color: var(--gray-2);
}

.blog__title-3 {
    padding-bottom: 50px;
}

.blog__btn {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: var(--black-3);
    text-transform: capitalize;
}

.blog__btn span {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: -28px;
}

.blog__btn span i {
    -webkit-transform: translate(0, 0) rotate(-45deg);
    transform: translate(0, 0) rotate(-45deg);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.blog__btn span::after {
    position: absolute;
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    left: -20px;
    bottom: -20px;
    -webkit-transform: translate(0, 0) rotate(-45deg);
    transform: translate(0, 0) rotate(-45deg);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

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

.blog__btn:hover i {
    -webkit-transform: translate(20px, -20px) rotate(-45deg);
    transform: translate(20px, -20px) rotate(-45deg);
}

.blog__btn:hover span::after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(20px, -20px) rotate(-45deg);
    transform: translate(20px, -20px) rotate(-45deg);
}

.blog__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.blog__text p {
    font-size: 18px;
    line-height: 1.4;
}

@media only screen and (max-width: 767px) {
    .blog__text p {
        padding-top: 30px;
    }
}

.blog__detail {
    overflow: hidden;
}

.blog__detail-top {
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog__detail-top {
        padding-top: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .blog__detail-top {
        padding-top: 60px;
    }
}

.blog__detail-date {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--black-2);
    padding-bottom: 15px;
}

.blog__detail-date span {
    color: var(--black-3);
    position: relative;
    padding-left: 25px;
}

.blog__detail-date span::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    top: 11px;
    left: 8px;
    background-color: var(--gray-5);
    border-radius: 50px;
}

.blog__detail-title {
    font-weight: 500;
    font-size: 80px;
    line-height: 1;
    color: var(--black-2);
    padding-bottom: 35px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .blog__detail-title {
        font-size: 60px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .blog__detail-title {
        font-size: 60px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .blog__detail-title {
        font-size: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog__detail-title {
        font-size: 48px;
    }
}

@media only screen and (max-width: 767px) {
    .blog__detail-title {
        font-size: 36px;
    }
}

.blog__detail-metalist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
    padding-bottom: 50px;
}

.blog__detail-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.blog__detail-meta p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-8);
}

.blog__detail-meta p span {
    display: block;
    color: var(--black-3);
    font-size: 16px;
    font-weight: 500;
}

.blog__detail-thumb {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 70vh;
}

.blog__detail-thumb img {
    position: absolute;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 120%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 767px) {
    .blog__detail-thumb {
        padding-bottom: 40px;
    }
}

.blog__detail-thumb img {
    width: 100%;
}

.blog__detail-content {
    padding-top: 55px;
    padding-bottom: 30px;
}

.blog__detail-content p {
    font-size: 18px;
    line-height: 1.4;
    padding-bottom: 25px;
}

.blog__detail-content img {
    margin-bottom: 30px;
    max-width: 100%;
}

.blog__detail-content h1, .blog__detail-content h2 {
    font-weight: 500;
    font-size: 36px;
    line-height: 1.2;
    color: var(--black);
    padding-bottom: 15px;
    padding-top: 10px;
}

.blog__detail-content h3 {
    font-weight: 500;
    font-size: 30px;
    line-height: 1.2;
    color: var(--black);
    padding-bottom: 15px;
    padding-top: 10px;
}

.blog__detail-content h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    color: var(--black);
    padding-bottom: 15px;
    padding-top: 10px;
}

.blog__detail-content h5 {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: var(--black);
    padding-bottom: 10px;
    padding-top: 10px;
}

.blog__detail-content h6 {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: var(--black);
    padding-bottom: 10px;
    padding-top: 10px;
}

.blog__detail-content ul, .blog__detail-content ol {
    padding-bottom: 25px;
}

.blog__detail-content ul li, .blog__detail-content ol li {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--black-2);
    padding-bottom: 5px;
    padding-left: 25px;
    position: relative;
}

.blog__detail-content ul li::before, .blog__detail-content ol li::before {
    position: absolute;
    content: "+";
    left: 0;
    font-size: 20px;
}

.blog__detail-tags p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--black-2);
    text-transform: capitalize;
}

.blog__detail-tags p a {
    color: var(--black-3);
    text-transform: lowercase;
    text-decoration-line: underline;
}

.blog__related {
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .blog__related .pb-140 {
        padding-bottom: 0;
    }
}

.blog__related .sec-title-wrapper {
    padding-bottom: 60px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .blog__related .pb-130 {
        padding-bottom: 40px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog__related .pb-130 {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .blog__related .pb-130 {
        padding-bottom: 0;
    }
}

.blog-v2 {
    padding-bottom: 80px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog-v2 {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-v2 {
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog-v2 .pt-150 {
        padding-top: 130px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-v2 .pt-150 {
        padding-top: 130px;
    }
}

.blog-v2 .sec-text p {
    padding-bottom: 70px;
    margin-left: auto;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog-v2 .sec-text p {
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-v2 .sec-text p {
        padding-bottom: 40px;
    }
}

.blog-v2 .blog__item-2 {
    margin-bottom: 50px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog-v2 .blog__item-2 {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-v2 .blog__item-2 {
        margin-bottom: 0;
    }
}

.blog-v3.blog__area-3 .sec-title-wrapper::after {
    position: unset;
}

.blog-v3 .line {
    padding-bottom: 70px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .blog-v3 .line {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog-v3 .line {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-v3 .line {
        padding-top: 50px;
        padding-bottom: 30px;
    }
}

.blog-v3 .blog__item-3 {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog-v3 .blog__item-3 {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-v3 .blog__item-3 {
        margin-bottom: 50px;
    }
}

.img-box {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .img-box {
        height: 425px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .img-box {
        height: 340px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .img-box {
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    .img-box {
        height: auto;
    }
}

.img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-size: cover;
}

@media (max-width: 1023px) {
    .img-box img {
        position: unset;
        width: 100%;
        height: auto;
    }
}

.img-box img:nth-child(1) {
    -webkit-transform: translatex(50%) scalex(2);
    transform: translatex(50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

@media (max-width: 1023px) {
    .img-box img:nth-child(1) {
        display: none;
    }
}

.img-box:hover img:nth-child(2) {
    -webkit-transform: translatex(-50%) scalex(2);
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

@media (max-width: 1023px) {
    .img-box:hover img:nth-child(2) {
        opacity: 1;
    }
}

.img-box:hover img:nth-child(1) {
    -webkit-transform: translatex(0) scalex(1);
    transform: translatex(0) scalex(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.row.reset-grid {
    --bs-gutter-x: 60px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .row.reset-grid {
        --bs-gutter-x: 40px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .row.reset-grid {
        --bs-gutter-x: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .row.reset-grid {
        --bs-gutter-x: 20px;
    }
}

.cta__area {
    overflow: hidden;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .cta__area-2 .pb-120 {
        padding-bottom: 126px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .cta__area-2 .pb-120 {
        padding-bottom: 115px;
    }
}

@media only screen and (max-width: 767px) {
    .cta__area-2 .pb-120 {
        padding-bottom: 70px;
    }
}

.cta__area-2 .wc-btn-pink {
    color: var(--black-3);
}

.cta__area-2 .wc-btn-pink:hover {
    color: var(--black-2);
}

.cta__area-3 {
    background-color: var(--pink-5);
}

@media only screen and (min-width: 1920px) {
    .cta__area-3 {
        padding-top: 60px;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .cta__area-3 {
        padding-top: 20px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .cta__area-3 .pt-150 {
        padding-top: 125px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .cta__area-3 {
        background-color: var(--white);
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .cta__area-3 {
        background-color: var(--white);
        padding-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .cta__area-3 {
        background-color: var(--white);
        padding-bottom: 10px;
    }
}

.cta__content {
    width: 50%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .cta__content {
        width: 80%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .cta__content {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .cta__content {
        width: 100%;
    }
}

.cta__content #btn_wrapper, .cta__content .btn_wrapper {
    margin: 0 auto;
}

.cta__content-2, .cta__content-3 {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .cta__content-2, .cta__content-3 {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .cta__content-2, .cta__content-3 {
        width: 100%;
    }
}

.cta__content-2 #btn_wrapper, .cta__content-3 #btn_wrapper, .cta__content-2 .btn_wrapper, .cta__content-3 .btn_wrapper {
    position: relative;
    z-index: 1;
    width: 350px;
    height: 350px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .cta__content-2 #btn_wrapper, .cta__content-3 #btn_wrapper, .cta__content-2 .btn_wrapper, .cta__content-3 .btn_wrapper {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 1200px) {
    .cta__content-2 #btn_wrapper, .cta__content-3 #btn_wrapper, .cta__content-2 .btn_wrapper, .cta__content-3 .btn_wrapper {
        width: 200px;
        height: 200px;
    }
}

.cta__content-2 #btn_wrapper .btn-item, .cta__content-3 #btn_wrapper .btn-item, .cta__content-2 .btn_wrapper .btn-item, .cta__content-3 .btn_wrapper .btn-item {
    top: 25px;
}

@media only screen and (max-width: 767px) {
    .cta__content-2 #btn_wrapper .btn-item, .cta__content-3 #btn_wrapper .btn-item, .cta__content-2 .btn_wrapper .btn-item, .cta__content-3 .btn_wrapper .btn-item {
        top: 0;
    }
}

.cta__content-2 a, .cta__content-3 a {
    width: 300px;
    height: 300px;
    font-size: 24px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .cta__content-2 a, .cta__content-3 a {
        width: 220px;
        height: 220px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .cta__content-2 a, .cta__content-3 a {
        width: 200px;
        height: 200px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .cta__content-2 a, .cta__content-3 a {
        width: 200px;
        height: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .cta__content-2 a, .cta__content-3 a {
        width: 200px;
        height: 200px;
        font-size: 20px;
    }
}

.cta__content-2 a:hover span, .cta__content-3 a:hover span {
    width: 800px;
    height: 800px;
}

.cta__content-2 a i, .cta__content-3 a i {
    font-size: 30px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    padding-left: 20px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .cta__content-3 a {
        width: 220px;
        height: 220px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .cta__content-3 #btn_wrapper .btn-item, .cta__content-3 .btn_wrapper .btn-item {
        top: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .cta__content-3 #btn_wrapper .btn-item, .cta__content-3 .btn_wrapper .btn-item {
        top: 0;
    }
}

.cta__content-3 a {
    border-color: var(--black-2);
}

.cta__sub-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--black-3);
    border: 1px solid var(--gray);
    display: inline-block;
    padding: 5px 17px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.cta__sub-title-2 {
    font-weight: 300;
    font-size: 28px;
    line-height: 1.3;
    color: var(--black-2);
    padding-bottom: 25px;
}

.cta__title {
    font-weight: 400;
    font-size: 50px;
    line-height: 1;
    color: var(--black-2);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .cta__title {
        padding-bottom: 40px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .cta__title {
        padding-bottom: 40px;
    }
}

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

@media only screen and (max-width: 767px) {
    .cta__title {
        font-size: 36px;
        padding-bottom: 40px;
    }
}

.cta__title-2 {
    font-weight: 300;
    font-size: 100px;
    line-height: 1;
    color: var(--black-2);
    padding-bottom: 60px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .cta__title-2 {
        font-size: 75px;
        padding-bottom: 30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .cta__title-2 {
        font-size: 70px;
        padding-bottom: 40px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .cta__title-2 {
        font-size: 60px;
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .cta__title-2 {
        font-size: 48px;
    }
}

.story__area {
    overflow: hidden;
}

.story__area .sec-title-wrapper {
    padding-bottom: 40px;
}

.story__area .from-text {
    position: absolute;
    top: -140px;
    right: -220px;
    width: 160px;
    height: 90px;
    background-color: var(--primary);
    padding: 20px 30px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.1;
    color: var(--black-2);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .story__area .from-text {
        right: 0;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .story__area .from-text {
        right: 0;
        top: -89px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .story__area .from-text {
        right: -20px;
        top: -80px;
    }
}

@media only screen and (max-width: 767px) {
    .story__area .from-text {
        width: 120px;
        right: 0;
        top: -60px;
    }
}

.story__area .from-text span {
    display: block;
    font-size: 36px;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .story__area .from-text span {
        font-size: 30px;
    }
}

.story__text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--black-3);
    padding-bottom: 20px;
}

@media (max-height: 1365px) {
    .story__text p {
        padding-top: 30px;
        padding-bottom: 0;
    }
}

.story__img-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 700px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .story__img-wrapper {
        height: 650px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .story__img-wrapper {
        height: 580px;
    }
}

@media (max-width: 1200px) {
    .story__img-wrapper {
        height: 100%;
    }
}

.story__img-wrapper img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 30px;
    max-width: 100%;
}

@media only screen and (max-width: 767px) {
    .story__img-wrapper img {
        margin-bottom: 20px;
    }
}

.team__area {
    background-color: var(--black-2);
    overflow: hidden;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .team__area {
        padding-left: 62px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .team__area {
        padding-left: 62px;
    }
}

.team__area .sec-title {
    color: var(--white);
}

.team__area .sec-title-wrapper {
    text-align: center;
    padding-bottom: 60px;
}

.team__area .sec-sub-title {
    color: var(--white);
}

.team__area-6 {
    background-image: url("/assets/imgs/bg/shape.png");
    background-repeat: no-repeat;
    background-position: 100px 180px;
    overflow: hidden;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .team__area-6 {
        background-position: 0 180px;
        padding-left: 62px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .team__area-6 {
        background-position: 0 180px;
        padding-left: 62px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .team__area-6 {
        background-position: 0 180px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .team__area-6 .line {
        padding-top: 150px;
    }
}

.team__area-6 .sec-title {
    line-height: 0.9;
    font-size: 120px;
    padding-bottom: 30px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .team__area-6 .sec-title {
        font-size: 90px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .team__area-6 .sec-title {
        font-size: 72px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .team__area-6 .sec-title {
        font-size: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .team__area-6 .sec-title {
        font-size: 48px;
        padding-top: 90px;
    }
}

.team__area-6 .sec-title-wrapper {
    max-width: 520px;
    padding-bottom: 60px;
}

.team__area-6 .sec-title-wrapper p {
    font-size: 18px;
    line-height: 1.4;
}

@media only screen and (min-width: 1920px) {
    .team__slider {
        margin-left: 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .team__slider {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .team__slide {
        padding: 0 20px;
    }
}

.team__slide:nth-child(even) {
    padding-top: 100px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .team__slide:nth-child(even) {
        padding-top: 50px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .team__slide:nth-child(even) {
        padding-top: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .team__slide:nth-child(even) {
        padding-top: 0;
    }
}

.team__slide img {
    width: 100%;
}

.team__member-name, .team__member-name-6 {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3;
    color: var(--white);
    padding-top: 20px;
}

.team__member-name-6 {
    color: var(--black-2);
}

.team__member-name-7 {
    font-weight: 500;
    font-size: 80px;
    line-height: 1;
    color: var(--black-2);
    padding-bottom: 30px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .team__member-name-7 {
        font-size: 60px;
        padding-bottom: 20px;
    }

    .team__member-name-7 br {
        display: none;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .team__member-name-7 {
        font-size: 60px;
        padding-bottom: 20px;
    }

    .team__member-name-7 br {
        display: none;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .team__member-name-7 {
        font-size: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .team__member-name-7 {
        font-size: 48px;
    }

    .team__member-name-7 br {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .team__member-name-7 {
        font-size: 36px;
        padding-bottom: 20px;
    }
}

.team__member-role, .team__member-role-6 {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: var(--gray-2);
}

.team__member-role-6 {
    color: var(--black-3);
}

.team__member-role-7 {
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    color: var(--black-3);
    font-style: italic;
    padding-bottom: 15px;
    margin-bottom: 40px;
    position: relative;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .team__member-role-7 {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .team__member-role-7 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .team__member-role-7 {
        font-size: 18px;
    }
}

.team__member-role-7::after {
    position: absolute;
    content: "";
    width: 150px;
    height: 1px;
    left: 0;
    bottom: 0;
    background-color: var(--black-2);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .team__member-role-7::after {
        left: calc(50% - 75px);
    }
}

@media only screen and (max-width: 767px) {
    .team__member-role-7::after {
        left: calc(50% - 75px);
    }
}

.team__member-role-7 span {
    color: var(--black-2);
    font-weight: 500;
}

.team__join-btn {
    background-color: var(--black-2);
    padding: 300px 0;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .team__join-btn {
        padding: 200px 0;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .team__join-btn {
        padding: 100px 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .team__join-btn {
        padding: 90px 0;
    }
}

@media only screen and (max-width: 767px) {
    .team__join-btn {
        padding: 60px 0;
    }
}

.team__join-btn #btn_wrapper, .team__join-btn .btn_wrapper {
    width: 360px;
    height: 360px;
    margin: 0 auto;
}

.team__join-btn a {
    position: relative;
    color: var(--gray-2);
    font-size: 20px;
    width: 342px;
    height: 342px;
    margin: 0 auto;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .team__join-btn a {
        width: 300px;
        height: 300px;
        padding: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .team__join-btn a {
        width: 220px;
        height: 220px;
        padding: 35px;
    }
}

.team__join-btn a:hover span {
    width: 800px;
    height: 800px;
}

.team__join-btn a i {
    position: absolute;
    right: 130px;
    top: 150px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .team__join-btn a i {
        top: 130px;
        right: 88px;
    }
}

@media only screen and (max-width: 767px) {
    .team__join-btn a i {
        right: 50px;
        top: 90px;
    }
}

.team__btm {
    overflow: hidden;
}

.team__btm .sec-title-wrapper {
    padding-left: 48%;
    background-image: url("/assets/imgs/bg/snake.png");
    background-repeat: no-repeat;
    background-position: 1px -150px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .team__btm .sec-title-wrapper {
        background-size: 42%;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .team__btm .sec-title-wrapper {
        background-size: 400px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .team__btm .sec-title-wrapper {
        padding-left: 30%;
        background-size: 200px;
        background-position: 1px -50px;
    }
}

@media only screen and (max-width: 767px) {
    .team__btm .sec-title-wrapper {
        background-size: 0px;
        padding-left: 0;
        padding-bottom: 0;
    }
}

.team__btm p {
    font-size: 22px;
    padding-top: 30px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .team__btm p {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .team__btm p {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .team__btm p {
        font-size: 18px;
    }
}

.team__detail {
    overflow: hidden;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .team__detail .pb-140 {
        padding-bottom: 40px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .team__detail .pb-140 {
        padding-bottom: 40px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .team__detail {
        padding-top: 120px;
        position: relative;
    }

    .team__detail .pb-140 {
        padding-bottom: 10px;
    }
}

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

    .team__detail .pb-140 {
        padding-bottom: 10px;
    }
}

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

    .team__detail .pb-140 {
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .team__detail .pt-120 {
        padding-top: 60px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .team__detail .pt-120 {
        padding-top: 10px;
    }
}

.team__detail p {
    font-size: 18px;
    line-height: 1.4;
    padding-bottom: 20px;
}

.team__detail .work-title {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--black-2);
    padding-bottom: 20px;
}

.team__detail-page {
    position: relative;
}

.team__member-img {
    overflow: hidden;
    position: absolute;
    width: 770px;
    height: 100vh;
    left: -192px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .team__member-img {
        left: 0;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .team__member-img {
        left: 0;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .team__member-img {
        position: unset;
        width: 100%;
        height: auto;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .team__member-img {
        position: relative;
        width: 100%;
        height: auto;
        left: 0;
        z-index: 1;
        margin-top: 150px;
    }
}

@media only screen and (max-width: 767px) {
    .team__member-img {
        position: relative;
        width: 100%;
        height: auto;
        left: 0;
        z-index: 1;
        margin-top: 150px;
    }
}

.team__member-img img {
    position: absolute;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 102%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .team__member-img img {
        left: 0;
        max-width: 80%;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .team__member-img img {
        left: 0;
        max-width: 70%;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .team__member-img img {
        position: unset;
        max-width: 100%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .team__member-img img {
        position: unset;
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .team__member-img img {
        position: unset;
        max-width: 100%;
    }
}

.team__member-work {
    padding-top: 40px;
}

.team__member-work li {
    display: inline-block;
    padding-right: 10px;
}

.team__member-work li a {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--black-2);
    padding: 5px 12px;
    border: 1px solid var(--white-4);
    border-radius: 30px;
    -webkit-transition: all 0.3;
    transition: all 0.3;
}

.team__member-work li a:hover {
    background-color: var(--black-2);
    color: var(--white);
}

.team__member-social {
    padding-top: 40px;
}

.team__member-social li {
    display: inline-block;
    padding-right: 15px;
}

.team__member-social li a {
    font-size: 18px;
    color: var(--gray-15);
}

.team__member-social li a:hover {
    color: var(--black-2);
}

.solution__area {
    padding-left: 100px;
    position: relative;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .solution__area {
        padding-left: 10px;
        padding-top: 150px;
    }
}

@media only screen and (max-width: 767px) {
    .solution__area {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 90px;
    }
}

.solution__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.3fr 1.7fr 1fr;
    grid-template-columns: 1.3fr 1.7fr 1fr;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .solution__wrapper {
        -ms-grid-columns:(1fr) [12];
        grid-template-columns: repeat(12, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .solution__wrapper {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .solution__left {
        -ms-grid-column: 1;
        -ms-grid-column-span: 6;
        grid-column: 1/7;
    }
}

.solution__mid {
    padding-left: 80px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .solution__mid {
        padding-left: 50px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .solution__mid {
        padding-left: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .solution__mid {
        padding-left: 0;
        grid-column: 7/-1;
        -ms-grid-row: 1;
        grid-row: 1;
    }
}

@media only screen and (max-width: 767px) {
    .solution__mid {
        padding-left: 0;
        -ms-grid-row: 1;
        grid-row: 1;
    }
}

.solution__mid p {
    max-width: 580px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--black-3);
    padding-left: 190px;
    position: relative;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .solution__mid p {
        padding-left: 110px;
        max-width: 480px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .solution__mid p {
        padding-left: 80px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .solution__mid p {
        padding-left: 50px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .solution__mid p {
        padding-left: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .solution__mid p {
        padding-left: 80px;
        padding-bottom: 50px;
    }
}

.solution__mid p::before {
    position: absolute;
    content: "";
    width: 140px;
    height: 1px;
    left: 0;
    top: 10px;
    background-color: var(--black-2);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .solution__mid p::before {
        width: 100px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .solution__mid p::before {
        width: 70px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .solution__mid p::before {
        width: 40px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .solution__mid p::before {
        width: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .solution__mid p::before {
        width: 70px;
    }
}

.solution__right {
    padding-top: 260px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .solution__right {
        padding-top: 0;
        grid-column: 1/-1;
        -ms-grid-row: 2;
        grid-row: 2;
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .solution__right {
        padding-top: 60px;
    }
}

.solution__title {
    font-weight: 600;
    font-size: 150px;
    line-height: 1;
    color: var(--black-2);
    padding-top: 280px;
    padding-bottom: 20px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .solution__title {
        font-size: 120px;
        padding-top: 200px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .solution__title {
        padding-top: 80px;
        font-size: 100px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .solution__title {
        padding-top: 80px;
        font-size: 72px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .solution__title {
        padding-top: 60px;
        font-size: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .solution__title {
        padding-top: 30px;
        font-size: 36px;
    }
}

.solution__img-1 {
    display: inline-block;
    position: relative;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .solution__img-1 {
        margin-left: 30px;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .solution__img-1 img {
        max-width: 400px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .solution__img-1 img {
        max-width: 300px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .solution__img-1 img {
        max-width: 240px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .solution__img-1 img {
        max-width: 260px;
    }
}

@media only screen and (max-width: 767px) {
    .solution__img-1 img {
        max-width: 300px;
    }
}

.solution__img-1::after {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% + 10px);
    left: 40px;
    top: 0;
    border: 1px solid var(--white-6);
    border-radius: 0 0 290px 230px;
    z-index: -1;
}

@media only screen and (max-width: 767px) {
    .solution__img-1::after {
        left: 20px;
    }
}

.solution__img-2 {
    position: relative;
    float: right;
    margin-top: 60px;
}

.solution__img-2::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    right: 30px;
    top: 0;
    border: 1px solid var(--white-6);
    border-radius: 200px;
    z-index: -1;
}

.solution__img-3 {
    position: relative;
    float: right;
    margin-top: 60px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .solution__img-3 img {
        max-width: 360px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .solution__img-3 img {
        max-width: 300px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .solution__img-3 img {
        max-width: 220px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .solution__img-3 img {
        max-width: 260px;
    }
}

@media only screen and (max-width: 767px) {
    .solution__img-3 img {
        max-width: 300px;
    }
}

.solution__img-3::after {
    position: absolute;
    content: "";
    width: calc(100% + 20px);
    height: 100%;
    right: 0;
    top: -30px;
    border: 1px solid var(--white-6);
    border-radius: 280px 0 0 200px;
    z-index: -1;
}

@media only screen and (max-width: 767px) {
    .solution__btm {
        padding-top: 40px;
    }
}

.solution__btm ul {
    text-align: right;
}

.solution__btm li {
    display: inline;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--black-2);
    padding-right: 40px;
    position: relative;
}

.solution__btm li:last-child {
    padding-right: 0;
}

@media only screen and (max-width: 767px) {
    .solution__btm li {
        padding-right: 30px;
    }
}

.solution__btm li::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    left: -20px;
    top: 12px;
    background-color: var(--black-2);
}

.solution__btm li:first-child::after {
    position: unset;
}

.solution__shape img {
    position: absolute;
}

.solution__shape .shape-1 {
    left: 80%;
    top: 25%;
}

.solution__shape .shape-2 {
    left: 10%;
    top: 75%;
}

.solution__shape .shape-3 {
    left: 33%;
    top: 45%;
}

.solution__shape .shape-4 {
    left: 72%;
    top: 70%;
}

.solution__shape .shape-5 {
    top: 42%;
    left: 68%;
    z-index: -1;
}

.development__area {
    overflow: hidden;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .development__area .pt-130 {
        padding-top: 150px;
    }
}

@media only screen and (max-width: 767px) {
    .development__area .pt-130 {
        padding-top: 120px;
    }
}

@media only screen and (max-width: 767px) {
    .development__area .pb-150 {
        padding-bottom: 40px;
    }
}

.development__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 80px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 80px;
    padding-bottom: 35px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--black-3);
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .development__content {
        grid-gap: 40px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .development__content {
        grid-gap: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .development__content {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .development__content {
        padding-top: 30px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
}

.development__content p {
    font-size: 18px;
    line-height: 1.4;
}

.development__wrapper {
    padding-bottom: 55px;
}

@media only screen and (max-width: 767px) {
    .development__wrapper {
        padding-bottom: 15px;
    }
}

.development__wrapper ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 240px auto;
    grid-template-columns: 240px auto;
    -ms-grid-columns: 310px auto;
    grid-template-columns: 310px auto;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .development__wrapper ul {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 767px) {
    .development__wrapper ul {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        padding-bottom: 20px;
    }
}

.development__wrapper ul li {
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--black-2);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .development__wrapper ul li {
        font-size: 16px;
        padding-bottom: 5px;
    }
}

.development__img {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 400px;
    z-index: 9;
}

.development__img img {
    position: absolute;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 150%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .development__img {
        padding-bottom: 15px;
        overflow: hidden;
        position: relative;
        width: 100%;
        height: auto;
    }

    .development__img img {
        position: absolute;
        bottom: 0;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .development__img img {
        position: unset;
    }
}

@media only screen and (max-width: 767px) {
    .development__img {
        padding-bottom: 15px;
        overflow: hidden;
        position: relative;
        width: 100%;
        height: auto;
    }

    .development__img img {
        position: absolute;
        bottom: 0;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .development__img img {
        position: unset;
    }
}

.development__img img {
    width: 100%;
}

.award__area {
    background-color: var(--black-2);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .award__area.pb-140 {
        padding-bottom: 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .award__area.pb-140 {
        padding-bottom: 90px;
    }
}

.award__area .sec-title {
    max-width: 850px;
    color: var(--white);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .award__area .sec-title {
        max-width: 700px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .award__area .sec-title {
        max-width: 550px;
    }
}

.award__area-8 {
    position: relative;
}

.award__left {
    height: 100%;
    margin-top: 100px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .award__left {
        margin-top: 50px;
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
    }
}

.award__left img {
    position: absolute;
    bottom: 40%;
    right: 30%;
}

@media only screen and (max-width: 767px) {
    .award__left img {
        bottom: -40px;
    }
}

.award__text, .award__text-2 {
    font-size: 160px;
    color: var(--white);
    font-weight: 600;
    -webkit-transform: rotate(-43deg);
    transform: rotate(-43deg);
    text-transform: uppercase;
    letter-spacing: -3px;
    position: absolute;
    top: 130px;
    left: 0;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .award__text, .award__text-2 {
        font-size: 130px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .award__text, .award__text-2 {
        font-size: 120px;
        top: 120px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .award__text, .award__text-2 {
        font-size: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .award__text, .award__text-2 {
        position: unset;
        font-size: 100px;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        line-height: 0.5;
    }
}

.award__text-2 {
    -webkit-text-stroke: 1px #3A3A3A;
    color: transparent;
    top: 0;
    left: 30px;
}

.award__text-8 {
    position: absolute;
    width: 300px;
    right: 50px;
    bottom: 50px;
    z-index: 9;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .award__text-8 {
        width: 260px;
    }
}

@media only screen and (max-width: 767px) {
    .award__text-8 {
        width: 220px;
        right: 10px;
        bottom: 10px;
    }
}

.award__text-8 a {
    display: block;
    max-width: 100%;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: var(--white);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--white);
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .award__text-8 a {
        padding-bottom: 5px;
    }
}

.award__text-8 a:hover i {
    -webkit-transform: translate(20px, -20px) rotate(-45deg);
    transform: translate(20px, -20px) rotate(-45deg);
}

.award__text-8 a:hover span::after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(20px, -20px) rotate(-45deg);
    transform: translate(20px, -20px) rotate(-45deg);
}

.award__text-8 a span {
    position: absolute;
    top: 0;
    right: 0;
}

.award__text-8 a span i {
    -webkit-transform: translate(0, 0) rotate(-45deg);
    transform: translate(0, 0) rotate(-45deg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.award__text-8 a span::after {
    position: absolute;
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    left: -20px;
    bottom: -20px;
    -webkit-transform: translate(0, 0) rotate(-45deg);
    transform: translate(0, 0) rotate(-45deg);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.award__text-8 .title {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: var(--white);
}

@media only screen and (max-width: 767px) {
    .award__text-8 .title {
        font-size: 16px;
    }
}

.award__right > p {
    max-width: 390px;
    margin-left: 100px;
    font-size: 18px;
    line-height: 1.4;
    color: var(--gray-2);
    margin-bottom: 90px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .award__right > p {
        margin-left: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .award__right > p {
        margin-left: 0;
        margin-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .award__right > p {
        margin-left: 0;
        -webkit-transform: translateY(-160%);
        transform: translateY(-160%);
    }
}

.award__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.5fr 0.5fr;
    grid-template-columns: 1fr 0.5fr 0.5fr;
    border-bottom: 1px solid var(--gray-12);
    padding: 20px 0;
}

.award__item:first-child {
    border-top: 1px solid var(--gray-12);
}

.award__item p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--white);
}

.award__item p:last-child {
    text-align: right;
}

.award__video-8 {
    height: 800px;
    overflow: hidden;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .award__video-8 {
        height: 575px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .award__video-8 {
        height: 430px;
    }
}

@media only screen and (max-width: 767px) {
    .award__video-8 {
        height: 210px;
    }
}

.award__video-8 video {
    width: 100%;
}

.awards__area-8 .about-sub-right {
    font-weight: 400;
    color: var(--black-3);
    padding-bottom: 10px;
    text-transform: capitalize;
}

.awards__wrapper {
    padding-top: 15px;
    padding-left: 50px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .awards__wrapper {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .awards__wrapper {
        padding-left: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .awards__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.awards__content__title {
    color: var(--black-2);
    font-size: 80px;
    text-transform: uppercase;
    margin-bottom: 55px;
    line-height: 1;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .awards__content__title {
        font-size: 60px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .awards__content__title {
        font-size: 48px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .awards__content__title {
        font-size: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .awards__content__title {
        font-size: 36px;
        margin-bottom: 30px;
    }
}

.awards__content__title a {
    color: var(--black-2);
    font-family: "newYork";
    position: relative;
}

.awards__content__title a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 10px;
    background-color: var(--black-2);
}

@media only screen and (max-width: 767px) {
    .awards__content__title a::after {
        bottom: 3px;
    }
}

.awards__content p {
    font-size: 18px;
    width: 240px;
    margin-left: 170px;
    color: var(--black-2);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .awards__content p {
        margin-left: 130px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .awards__content p {
        margin-left: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .awards__content p {
        margin-left: 60px;
        padding-bottom: 30px;
    }
}

.awards__items {
    display: -ms-grid;
    display: grid;
    grid-gap: 30px;
    -ms-grid-columns: 1.2fr 30px 3fr 30px 1.5fr 30px 0.5fr;
    grid-template-columns: 1.2fr 3fr 1.5fr 0.5fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-11);
    margin-bottom: 20px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .awards__items {
        -ms-grid-columns: 0.3fr 30px 2fr 30px 1fr 30px 0.5fr;
        grid-template-columns: 0.3fr 2fr 1fr 0.5fr;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .awards__items {
        -ms-grid-columns: 0.5fr 30px 2fr 30px 1fr 30px 0.5fr;
        grid-template-columns: 0.5fr 2fr 1fr 0.5fr;
    }
}

@media only screen and (max-width: 767px) {
    .awards__items {
        grid-gap: 15px;
        -ms-grid-columns: 0.3fr 15px 2fr 15px 1fr 15px 0.5fr;
        grid-template-columns: 0.3fr 2fr 1fr 0.5fr;
    }
}

.awards__items .number {
    color: var(--black-7);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.awards__items .title {
    color: var(--black-2);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

@media only screen and (max-width: 767px) {
    .awards__items .title {
        font-size: 16px;
    }
}

.awards__items img {
    max-width: 100px;
}

@media only screen and (max-width: 767px) {
    .awards__items img {
        max-width: 60px;
    }
}

.awards__items .date {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    text-align: right;
    color: var(--black-7);
}

@media only screen and (max-width: 767px) {
    .awards__items .date {
        font-size: 16px;
    }
}

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

.dark .awards__content p, .dark .awards__items .title, .dark .awards__content__title a, .dark .awards__content__title, .dark .awards__area-8 .about-sub-right {
    color: var(--white);
}

.dark .awards__items .number, .dark .awards__items .date {
    color: var(--gray-2);
}

.dark .awards__content__title a::after {
    background-color: var(--white);
}

.faq__area {
    overflow: hidden;
}

.faq__area-6 {
    overflow: hidden;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .faq__area-6 .line {
        padding-top: 150px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .faq__area-6 .line {
        padding-top: 130px;
    }
}

@media only screen and (max-width: 767px) {
    .faq__area-6 .line {
        padding-top: 120px;
    }
}

.faq__area-6 .sec-title-wrapper {
    padding-bottom: 60px;
}

@media only screen and (max-width: 767px) {
    .faq__area-6 .sec-title-wrapper {
        padding-bottom: 40px;
    }
}

.faq__area-6 .sec-title-wrapper p {
    padding-left: 60px;
    font-size: 18px;
    padding-top: 20px;
    line-height: 1.4;
}

@media only screen and (max-width: 767px) {
    .faq__area-6 .sec-title-wrapper p {
        padding-left: 30px;
    }
}

.faq__img {
    padding-right: 85px;
    overflow: hidden;
    position: relative;
    width: calc(100% - 85px);
    height: 630px;
    z-index: 1;
}

.faq__img img {
    position: absolute;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 120%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .faq__img {
        padding-right: 30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .faq__img {
        padding-right: 0;
        overflow: hidden;
        position: relative;
        width: calc(100% - 30px);
        height: auto;
    }

    .faq__img img {
        position: absolute;
        bottom: 0;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .faq__img img {
        position: unset;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .faq__img {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: auto;
        padding-right: 0;
    }

    .faq__img img {
        position: absolute;
        bottom: 0;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .faq__img img {
        position: unset;
    }
}

@media only screen and (max-width: 767px) {
    .faq__img {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: auto;
        padding-right: 0;
    }

    .faq__img img {
        position: absolute;
        bottom: 0;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .faq__img img {
        position: unset;
    }
}

.faq__img img {
    width: 100%;
}

.faq__content {
    padding-left: 85px;
    padding-top: 60px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .faq__content {
        padding-left: 30px;
        padding-top: 30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .faq__content {
        padding-left: 0;
        padding-top: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .faq__content {
        padding-left: 0;
        padding-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .faq__content {
        padding-left: 0;
    }
}

.faq__title {
    font-weight: 500;
    font-size: 36px;
    line-height: 1.1;
    color: var(--black-2);
    max-width: 315px;
    margin-bottom: 25px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .faq__title {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .faq__title {
        font-size: 30px;
    }
}

.faq__list, .faq__list-6, .faq__list-3 {
    padding-right: 1px;
}

.faq__list .accordion-body, .faq__list-6 .accordion-body, .faq__list-3 .accordion-body {
    padding-left: 0;
    min-height: 160px;
}

.faq__list .accordion-item, .faq__list-6 .accordion-item, .faq__list-3 .accordion-item {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}

.faq__list .accordion-button, .faq__list-6 .accordion-button, .faq__list-3 .accordion-button {
    background-color: transparent;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: var(--black-2);
    padding-left: 0;
    padding-right: 10px;
    border-radius: 0;
}

.faq__list .accordion-button.collapsed::after, .faq__list-6 .accordion-button.collapsed::after, .faq__list-3 .accordion-button.collapsed::after {
    background-image: none;
    content: "+";
    font-weight: 300;
    font-size: 30px;
    top: 6px;
    position: absolute;
    right: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.faq__list .accordion-button:not(.collapsed), .faq__list-6 .accordion-button:not(.collapsed), .faq__list-3 .accordion-button:not(.collapsed) {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
}

.faq__list .accordion-button:not(.collapsed)::after, .faq__list-6 .accordion-button:not(.collapsed)::after, .faq__list-3 .accordion-button:not(.collapsed)::after {
    background-image: none;
    content: "-";
    font-weight: 300;
    font-size: 30px;
    top: 6px;
    position: absolute;
    right: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.faq__list .accordion-button:focus, .faq__list-6 .accordion-button:focus, .faq__list-3 .accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.faq__list-3 {
    padding-right: 80px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .faq__list-3 {
        padding-right: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .faq__list-3 {
        padding-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .faq__list-3 {
        padding-right: 0;
    }
}

.faq__list-3 .accordion-item {
    background-color: transparent;
    border-bottom: 1px solid var(--black-2);
}

.faq__list-3 .accordion-item:first-child {
    border-top: 1px solid var(--black-2);
}

.faq__list-6 {
    padding-left: 1px;
}

.faq__list-6 .accordion-button {
    font-size: 20px;
}

.faq__list-6 .accordion-button.collapsed::after, .faq__list-6 .accordion-button:not(.collapsed)::after {
    font-size: 50px;
    top: -10px;
}

.faq__list-6 .accordion-body p {
    font-size: 18px;
    line-height: 1.4;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .faq__list-6 .accordion-header {
        padding-right: 10px;
    }
}

.faq__btm {
    text-align: center;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .faq__btm .pb-130 {
        padding-bottom: 120px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .faq__btm .pb-130 {
        padding-bottom: 120px;
    }
}

.faq__btm p {
    padding-top: 15px;
    font-size: 18px;
    line-height: 1.4;
}

.faq__btm a {
    margin: 0 auto;
    margin-top: 60px;
}

@media only screen and (max-width: 767px) {
    .faq__btm a {
        margin-top: 0;
    }
}

.faq__btm #btn_wrapper, .faq__btm .btn_wrapper {
    margin: 0 auto;
}

@media only screen and (max-width: 767px) {
    .faq__btm #btn_wrapper, .faq__btm .btn_wrapper {
        margin-top: 40px;
    }
}

.header__area-9 {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9;
}

.hero_layer_9 {
    position: relative;
}

#main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.content {
    color: #fff;
    position: absolute;
    bottom: 120px;
    text-align: center;
    left: 50px;
    z-index: 99;
    font-size: 0.8em;
    text-transform: uppercase;
}

.content p {
    color: var(--white);
}

.hero9_title {
    font-size: 80px;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero9_title span {
    font-family: "newYork";
    position: relative;
    padding-left: 30px;
}

.hero9_title span::before {
    position: absolute;
    content: "";
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -20%;
    height: 2px;
    width: 70px;
    background-color: var(--white);
}

.content a {
    color: rgba(227, 227, 227, 0.78);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.content a:hover {
    padding-bottom: 1px;
}

.buttons {
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 99;
}

.buttons button {
    border: none;
    background-size: contain;
    background: url("https://raw.githubusercontent.com/Rajacharles/GSAP-Fullscreen-Slider/master/images/down-arrow.png") no-repeat;
    background-position: center;
    width: 10px;
    height: 30px;
    display: block;
    margin: 20px 0;
    padding: 0 15px;
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

.buttons button.next {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
}

.buttons button.next:active {
    -webkit-transform: scaleY(-1) translateY(8px);
    transform: scaleY(-1) translateY(8px);
}

.buttons button.prev:active {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
}

#main .part {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

#main .part .section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#main .part .section img {
    width: 100vw;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    left: var(--x);
    pointer-events: none;
}

.section {
    display: block;
    width: 100%;
    height: 100%;
}

.part:first-child h2 {
    display: block;
    top: 45% !important;
    left: 49% !important;
    position: absolute;
    z-index: 9999999999999 !important;
    width: 500px;
    background: transparent;
    height: 400px;
}

#header_10 {
    position: static;
    background: transparent;
}

#home10_menu li > a {
    color: var(--black);
}

.hero__area-10 .swiper.hero10_activition {
    padding-bottom: 110px;
}

.hero__area-10 .swiper-button-prev.hero_prev {
    color: var(--black-3);
    text-transform: uppercase;
    bottom: 40px;
    position: absolute;
    top: unset;
    width: 85px;
    left: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 1365px) {
    .hero__area-10 .swiper-button-prev.hero_prev img {
        margin-left: 0;
    }
}

.hero__area-10 .swiper-button-prev.hero_prev:hover {
    color: var(--black-2);
}

.hero__area-10 .swiper-button-prev.hero_prev:hover img {
    margin-left: 10px;
}

@media (max-width: 1365px) {
    .hero__area-10 .swiper-button-prev.hero_prev:hover img {
        margin-left: 0;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .hero__area-10 .swiper-button-prev.hero_prev {
        bottom: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__area-10 .swiper-button-prev.hero_prev {
        width: 75px;
    }
}

.hero__area-10 .swiper-button-prev.hero_prev img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    max-width: 100%;
}

.hero__area-10 .swiper-button-next.hero_next {
    text-transform: uppercase;
    bottom: 40px;
    position: absolute;
    top: unset;
    right: 0;
    width: 85px;
    color: var(--black-3);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 1365px) {
    .hero__area-10 .swiper-button-next.hero_next img {
        margin-right: 0;
    }
}

.hero__area-10 .swiper-button-next.hero_next:hover {
    color: var(--black-2);
}

.hero__area-10 .swiper-button-next.hero_next:hover img {
    margin-right: 10px;
}

@media (max-width: 1365px) {
    .hero__area-10 .swiper-button-next.hero_next:hover img {
        margin-right: 0;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .hero__area-10 .swiper-button-next.hero_next {
        bottom: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__area-10 .swiper-button-next.hero_next {
        width: 75px;
    }
}

.hero__area-10 .swiper-button-next.hero_next img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    max-width: 100%;
}

.hero__area-10 .swiper-button-prev:after, .hero__area-10 .swiper-rtl .swiper-button-next:after {
    display: none;
}

.hero__area-10 .swiper-button-next:after, .hero__area-10 .swiper-rtl .swiper-button-prev:after {
    display: none;
}

.hero__area-10 .increase-dash {
    font-size: 6px;
    width: 90px;
    background: var(--black);
    height: 1px;
    color: #1C1D20;
}

@media only screen and (max-width: 767px) {
    .hero__area-10 .increase-dash {
        width: 50px;
    }
}

.hero__area-10 .hero10_activition {
    position: relative;
}

.hero__area-10 .hero10_activition .swiper-pagination-current {
    position: relative;
    display: inline-block;
    width: 22px;
}

@media only screen and (max-width: 767px) {
    .hero__area-10 .hero10_activition .swiper-pagination-current {
        margin-left: 22px;
    }
}

.hero__area-10 .hero10_activition .swiper-pagination-current::before {
    content: "0";
    position: absolute;
    left: -5px;
}

.hero__area-10 .hero10_activition .swiper-pagination-total {
    position: relative;
    display: inline-block;
    width: 48px;
}

.hero__area-10 .hero10_activition .swiper-pagination-total::before {
    content: "0";
    position: absolute;
    left: 8px;
}

.hero__area-10 .hero10_activition .swiper-pagination {
    color: var(--black);
    width: 190px;
    left: 50%;
    bottom: 50px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .hero__area-10 .hero10_activition .swiper-pagination {
        bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__area-10 .hero10_activition .swiper-pagination {
        width: 160px;
    }
}

.hero10 {
    position: relative;
    overflow: hidden;
    z-index: 2;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.hero10::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background: rgba(0, 0, 0, 0.3);
}

.hero10:hover::after {
    opacity: 1;
    visibility: visible;
}

.hero10:hover .hero10__content i {
    opacity: 1;
    -webkit-transform: translateY(-50px) rotate(-45deg);
    transform: translateY(-50px) rotate(-45deg);
}

.hero10:hover .hero10__content__title {
    opacity: 1;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}

.hero10:hover .hero10__content__name {
    opacity: 1;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}

.hero10:hover .hero10__thumb img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero10__thumb {
        height: 470px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero10__thumb {
        height: 470px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero10__thumb {
        height: 470px;
    }
}

@media only screen and (max-width: 767px) {
    .hero10__thumb {
        height: 70vh;
    }
}

.hero10__thumb img {
    width: 100%;
    -webkit-transition: all 5s;
    transition: all 5s;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.hero10__content {
    color: var(--white);
    position: absolute;
    left: 40px;
    z-index: 9;
    bottom: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.hero10__content i {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 35px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 1365px) {
    .hero10__content i {
        opacity: 1;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

@media only screen and (max-width: 767px) {
    .hero10__content i {
        margin-bottom: 20px;
    }
}

.hero10__content__title {
    font-weight: 500;
    font-size: 45px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}

@media (max-width: 1365px) {
    .hero10__content__title {
        font-size: 36px;
        opacity: 1;
    }
}

@media only screen and (max-width: 767px) {
    .hero10__content__title {
        font-size: 30px;
    }
}

.hero10__content__title span {
    display: block;
    font-weight: 400;
    font-family: "newYork";
}

.hero10__content__name {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 7px;
    display: inline-block;
    text-transform: uppercase;
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 1365px) {
    .hero10__content__name {
        opacity: 1;
    }
}

.hero10__content__date {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.showcase4 {
    margin-bottom: 90px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .showcase4 {
        margin-bottom: 50px;
    }
}

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

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

.showcase4 .showcase5_content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: var(--white);
}

.showcase4__thumb {
    position: relative;
    display: inline-block;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 500px;
}

.showcase4__thumb img {
    position: absolute;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 130%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .showcase4__thumb {
        height: 400px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .showcase4__thumb {
        height: 400px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .showcase4__thumb {
        height: unset;
    }

    .showcase4__thumb img {
        position: unset;
        height: auto;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .showcase4__thumb {
        height: unset;
    }

    .showcase4__thumb img {
        position: unset;
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    .showcase4__thumb {
        height: unset;
    }

    .showcase4__thumb img {
        position: unset;
        height: auto;
    }
}

.showcase4__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
}

@media only screen and (max-width: 767px) {
    .showcase4__content br {
        display: block;
    }
}

.showcase4__content h2 {
    color: var(--black-2);
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
}

.showcase4__content h2 span {
    color: var(--black-2);
    padding-left: 35px;
    font-family: "newYork";
    position: relative;
}

.showcase4__content h2 span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 1px;
    width: 30px;
    background-color: var(--black-13);
}

.showcase4__content h2 span.before_content_two {
    padding-left: 65px;
    color: var(--white);
}

.showcase4__content h2 span.before_content_two::before {
    width: 55px;
    background-color: var(--white);
}

.showcase4__content span {
    text-transform: uppercase;
    color: var(--black-13);
}

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

.work12__title {
    margin: 0 auto 80px;
    margin-right: 0;
}

.hero__area-12 {
    overflow: hidden;
    height: 100%;
    padding: 100px 30px 0;
}

.hero__area-12 .swiper-horizontal > .swiper-pagination-bullets, .hero__area-12 .swiper-pagination-bullets.swiper-pagination-horizontal, .hero__area-12 .swiper-pagination-custom, .hero__area-12 .swiper-pagination-fraction {
    bottom: 81px;
    left: 0;
    width: 100%;
}

.hero__area-12 .swiper-pagination-bullet-active {
    outline: 1px solid #121212;
    outline-offset: 4px;
    background: #121212;
}

.hero__area-12 .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .hero__area-12 .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 11px;
}

.hero__area-12 .gallery-slider {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 80px;
}

.hero__area-12 .gallery-thumbs {
    position: absolute;
    width: 300px;
    height: 100%;
    top: 0;
    right: 0;
}

.hero__area-12 .gallery-thumbs .swiper-slide-active {
    opacity: 1;
}

.hero__area-12 .gallery-thumbs .swiper-slide img {
    width: 150px;
}

.hero__area-12 .gallery-slider .swiper-slide {
    width: auto;
}

.gallary12 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-position: center;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .gallary12 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.gallary12__thumb {
    height: 575px;
    max-width: 865px;
}

.gallary12__thumb img {
    width: 100%;
    height: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .gallary12__thumb {
        max-width: 850px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .gallary12__thumb {
        height: 520px;
        max-width: 750px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .gallary12__thumb {
        height: 460px;
        max-width: 560px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .gallary12__thumb {
        height: 380px;
        max-width: 570px;
    }
}

@media only screen and (max-width: 767px) {
    .gallary12__thumb {
        max-width: 100%;
        height: 55vh;
    }
}

.gallary12__content {
    text-transform: uppercase;
    -ms-flex-preferred-size: 28%;
    flex-basis: 28%;
    opacity: 0;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .gallary12__content {
        -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .gallary12__content {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .gallary12__content {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .gallary12__content {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin-bottom: 20px;
    }
}

.gallary12__content img {
    display: block;
    text-align: left;
    margin-bottom: 40px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .gallary12__content img {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .gallary12__content img {
        margin-bottom: 20px;
    }
}

.gallary12__content__title {
    font-size: 60px;
    color: var(--black-2);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .gallary12__content__title {
        font-size: 48px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .gallary12__content__title {
        font-size: 36px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .gallary12__content__title {
        font-size: 30px;
    }

    .gallary12__content__title br {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .gallary12__content__title {
        font-size: 24px;
    }
}

.gallary12__content__title span {
    font-family: "newYork";
}

.gallary12__content__name {
    color: var(--black-2);
}

.title_right.w-300 {
    width: 300px;
}

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

.showcase5_title {
    font-size: 80px !important;
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .showcase5_title {
        font-size: 30px !important;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .showcase5_title {
        font-size: 20px !important;
        margin-bottom: 20px;
    }
}

.showcase5_bottom {
    padding-left: 38px;
    position: relative;
    z-index: 2;
}

.showcase5_bottom span {
    color: var(--white);
}

@media only screen and (max-width: 767px) {
    .section_title_wrapperr {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .section_title_wrapperr {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
}

.showcase5__content img {
    margin-bottom: 35px;
}

.showcase5__content p {
    font-weight: 400;
    font-size: 32px;
    line-height: 1.3;
    text-align: center;
    color: var(--black-3);
    position: relative;
    padding-bottom: 190px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .showcase5__content p {
        font-size: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .showcase5__content p {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .showcase5__content p {
        font-size: 20px;
        padding-bottom: 100px;
    }
}

.showcase5__content p::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100px;
    bottom: 0px;
    left: 50%;
    background-color: var(--black-2);
}

@media only screen and (max-width: 767px) {
    .showcase5__content p::after {
        height: 50px;
    }
}

.logos_wrapper li {
    margin-bottom: 10px;
}

.logos_wrapper li a {
    text-transform: capitalize;
    color: var(--black-2);
    font-weight: 500;
}

.logo17 {
    margin-bottom: 90px;
}

.hero__area-15 {
    padding: 0 30px;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .hero__area-15 {
        padding: 0 15px;
    }
}

.hero__area-15::before {
    content: "";
    display: table;
}

.hero__area-15::after {
    content: "";
    display: table;
    clear: both;
}

.hero__area-15 .swiper-container {
    width: calc(100% - 160px);
    height: calc(100vh - 120px);
    float: left;
    -webkit-transition: opacity 0.6s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.6s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.6s ease, transform 0.3s ease;
    transition: opacity 0.6s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__area-15 .swiper-container {
        height: calc(100vh - 80px);
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__area-15 .swiper-container {
        width: calc(100% - 130px);
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__area-15 .swiper-container {
        height: calc(100vh - 60px);
        width: calc(100% - 90px);
    }
}

@media only screen and (max-width: 767px) {
    .hero__area-15 .swiper-container {
        width: 100%;
        height: calc(100vh - 60px);
    }
}

.hero__area-15 .main-slider {
    padding-top: 160px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__area-15 .main-slider {
        padding-top: 120px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__area-15 .main-slider {
        padding-top: 120px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__area-15 .main-slider {
        padding-top: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__area-15 .main-slider {
        padding-top: 120px;
    }
}

.hero__area-15 .main-slider .swiper-image {
    width: 100%;
    height: 100%;
}

.hero__area-15 .main-slider .swiper-pagination {
    bottom: 60px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .hero__area-15 .main-slider .swiper-pagination {
        bottom: -40px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__area-15 .main-slider .swiper-pagination {
        bottom: -40px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__area-15 .main-slider .swiper-pagination {
        bottom: -40px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__area-15 .main-slider .swiper-pagination {
        bottom: -40px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__area-15 .main-slider .swiper-pagination {
        bottom: -40px;
    }
}

.hero__area-15 .main-slider .swiper-pagination-bullet {
    margin: 0 10px;
    width: 6px;
    height: 6px;
}

.hero__area-15 .main-slider .swiper-pagination-bullet-active {
    outline: 1px solid var(--black-2);
    background: var(--black-2);
    outline-offset: 6px;
}

.hero__area-15 .swiper-slide {
    overflow: hidden;
}

.hero__area-15 .swiper-slide.swiper-slide-active .gallary__thumb {
    background-color: transparent;
}

.hero__area-15 .swiper-slide.swiper-slide-active .gallary12__content {
    opacity: 1;
}

.hero__area-15 .gallary__thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background-position: center;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: hue;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    padding: 10px 20px;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    text-transform: uppercase;
}

.hero__area-15 .swiper-container.thumb-slider {
    width: 160px;
    overflow: hidden;
    height: calc(100vh - 220px);
    margin-top: 120px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__area-15 .swiper-container.thumb-slider {
        width: 130px;
        margin-top: 110px;
        height: calc(100vh - 180px);
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__area-15 .swiper-container.thumb-slider {
        width: 130px;
        margin-top: 100px;
        height: calc(100vh - 180px);
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__area-15 .swiper-container.thumb-slider {
        width: 90px;
        margin-top: 110px;
        height: calc(100vh - 180px);
    }
}

@media only screen and (max-width: 767px) {
    .hero__area-15 .swiper-container.thumb-slider {
        width: 100%;
        margin-top: 30px;
        height: 200px;
        display: none;
    }
}

.hero__area-15 .swiper-container.thumb-slider .swiper-slide {
    cursor: pointer;
}

.hero__area-15 .gallary12 {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__area-15 .gallary12 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media only screen and (max-width: 767px) {
    .hero__area-15 .gallary12 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.showcase__top-16 {
    padding: 200px 30px 65px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .showcase__top-16 {
        padding: 160px 30px 65px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .showcase__top-16 {
        padding: 160px 30px 65px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .showcase__top-16 {
        padding: 160px 30px 65px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .showcase__top-16 {
        padding: 160px 30px 60px;
    }
}

@media only screen and (max-width: 767px) {
    .showcase__top-16 {
        padding: 140px 30px 40px;
    }
}

.showcase__top-16 .title-right {
    max-width: 296px;
    margin-left: auto;
    padding-top: 50px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .showcase__top-16 .title-right {
        padding-top: 40px;
    }
}

.showcase__top-16 .title-right p {
    font-size: 18px;
}

.showcase__content-16 a {
    position: relative;
    display: inline-block;
}

.showcase__content-16 img {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
}

.showcase__info-16 {
    position: absolute;
    bottom: 50px;
    left: 50px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .showcase__info-16 {
        bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .showcase__info-16 {
        bottom: 20px;
        left: 20px;
    }
}

.showcase__title-16 {
    font-weight: 500;
    font-size: 80px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--white);
    padding-bottom: 35px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .showcase__title-16 {
        font-size: 60px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .showcase__title-16 {
        font-size: 48px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .showcase__title-16 {
        font-size: 36px;
    }
}

@media only screen and (max-width: 767px) {
    .showcase__title-16 {
        font-size: 30px;
        padding-bottom: 10px;
    }

    .showcase__title-16 br {
        display: block;
    }
}

.showcase__title-16 span {
    display: inline-block;
    text-indent: 100px;
    font-family: "newYork";
    position: relative;
}

@media only screen and (max-width: 767px) {
    .showcase__title-16 span {
        text-indent: 30px;
    }
}

.showcase__title-16 span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 2px;
    width: 70px;
    background-color: var(--white);
}

@media only screen and (max-width: 767px) {
    .showcase__title-16 span::before {
        width: 20px;
    }
}

.showcase__sub-title-16 {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: var(--white);
    padding-left: 100px;
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    .showcase__sub-title-16 {
        padding-left: 30px;
    }
}

.showcase_info {
    display: block;
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 9999;
    background-color: var(--white);
    margin-bottom: -3px;
}

.showcase__info-16 {
    position: absolute;
    bottom: 30%;
    left: 50px;
}

.showcase__image-16 {
    overflow: hidden;
    height: 100vh;
}

.showcase__content-16 {
    position: relative;
    height: 100vh;
    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;
}

.showcase__content-16 .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.wc-tilt {
    display: inline-block;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.wc-tilt-2 {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.dark .hero__area-10 .hero10_activition .swiper-pagination-current {
    color: var(--white);
}

.dark .hero__area-10 .hero10_activition .swiper-pagination-total {
    color: var(--white);
}

.dark .hero__area-10 .swiper-button-prev.hero_prev {
    color: var(--white);
}

.dark .hero__area-10 .swiper-button-prev.hero_prev:hover {
    color: var(--gray-3);
}

.dark .hero__area-10 .swiper-button-prev.hero_prev img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .hero__area-10 .swiper-button-next.hero_next {
    color: var(--white);
}

.dark .hero__area-10 .swiper-button-next.hero_next:hover {
    color: var(--gray-3);
}

.dark .hero__area-10 .swiper-button-next.hero_next img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .hero__area-10 .increase-dash {
    background-color: var(--white);
}

.dark .showcase4__content h2 {
    color: var(--white);
}

.dark .showcase4__content h2 span {
    color: var(--white);
}

.dark .showcase4__content span {
    color: var(--gray-2);
}

.dark .showcase5__content p {
    color: var(--gray-3);
}

.dark .showcase5__content p::after {
    background-color: var(--white);
}

.dark .showcase5__content img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .showcase_info {
    background-color: var(--black-2);
}

.dark .gallary12__content__title, .dark .gallary12__content__name {
    color: var(--white);
}

.dark .gallary12__content img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .hero__area-15 .main-slider .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
}

.dark .hero__area-15 .main-slider .swiper-pagination-bullet-active {
    outline: 1px solid var(--white);
    background: var(--white);
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .video7_layer .video-container video {
        height: 300px;
    }
}

.video_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    max-width: 540px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    z-index: 3;
    right: 100px;
    z-index: -2;
    bottom: 60px;
}

.video_text::before {
    content: "";
    position: absolute;
    bottom: -23%;
    left: 0;
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
}

.video_text__left {
    margin-right: 30px;
}

@media only screen and (max-width: 767px) {
    .video_text {
        top: 0;
        right: 0;
    }
}

.video_text .video_title_7 {
    font-size: 20px;
    color: var(--white);
    font-family: "newYork";
}

@media only screen and (max-width: 767px) {
    .video_text .video_title_7 {
        font-size: 40px;
    }
}

.video_text .video_dis_7 {
    font-size: 18px;
    color: var(--white);
    text-indent: 30px;
}

.nominated_title_7 {
    font-family: "newYork";
    font-weight: 400;
    font-size: 100px;
    color: var(--white);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .nominated_title_7 {
        font-size: 50px;
    }
}

.contactrow {
    padding-left: 450px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .contactrow {
        padding-left: 0;
    }
}

.nominateparagraph {
    max-width: 440px;
    margin: auto;
}

.nominateparagraph p {
    font-size: 18px;
    text-indent: 60px;
}

.overlay_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 75px;
    left: 80px;
    z-index: 9;
    color: var(--white);
    font-size: 14px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid var(--white);
    padding-bottom: 30px;
}

.overlay_text h4 {
    margin-right: 30px;
}

.tech_title {
    font-weight: 400;
    font-size: 80px;
    line-height: 1;
    color: var(--black-2);
    padding-bottom: 45px;
    text-transform: uppercase;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .tech_title {
        font-size: 60px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .tech_title {
        font-size: 48px;
        padding-bottom: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .tech_title {
        font-size: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .tech_title {
        font-size: 30px;
        line-height: 1.3;
        padding-bottom: 30px;
    }
}

.tech_title a {
    color: var(--black-2);
    font-family: "newYork";
    position: relative;
}

.tech_title a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 10px;
    background-color: var(--black-2);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .tech_title a::after {
        bottom: 7px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .tech_title a::after {
        bottom: 5px;
    }
}

@media only screen and (max-width: 767px) {
    .tech_title a::after {
        bottom: 3px;
    }
}

.tech_title span {
    font-family: "newYork";
}

.single_dis {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    color: var(--black-3);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .single_dis {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .single_dis {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .single_dis {
        font-size: 18px;
    }
}

.single__thumb {
    position: relative;
}

.single__thumb img {
    max-width: 100%;
}

.single__thumb video {
    width: 100%;
}

.single__thumb .video-frame {
    position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    height: 100%;
    -webkit-filter: brightness(25);
    filter: brightness(25);
}

.single__thumb .shape-2 {
    position: absolute;
    bottom: -30px;
    left: 60%;
}

@media only screen and (max-width: 767px) {
    .single__thumb .shape-2 {
        bottom: -20px;
        max-width: 40px;
    }
}

.single__thumb .svgstar {
    position: absolute;
    left: 25%;
    top: 18%;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .single__thumb .svgstar {
        left: 24%;
        top: 15%;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .single__thumb .svgstar {
        left: 23%;
        top: 15%;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .single__thumb .svgstar {
        max-width: 90px;
        left: 23%;
        top: 15%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .single__thumb .svgstar {
        max-width: 70px;
        left: 24%;
        top: 16%;
    }
}

@media only screen and (max-width: 767px) {
    .single__thumb .svgstar {
        max-width: 40px;
        left: 23%;
        top: 15%;
    }
}

.dark .tech_title, .dark .tech_title a {
    color: var(--white);
}

.dark .tech_title a::after {
    background-color: var(--white);
}

.dark .single__thumb .shape-2, .dark .single__thumb .svgstar {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .single__thumb .video-frame {
    -webkit-filter: unset;
    filter: unset;
}

.client__area-8 {
    background-color: var(--black-2);
    background-image: url("/assets/imgs/essential-img/bg-axtra.png");
    padding-top: 150px;
    padding-bottom: 140px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .client__area-8 {
        padding-top: 110px;
        padding-bottom: 110px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .client__area-8 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .client__area-8 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.client__area-8 .section_wrapper::before {
    background-color: #313131;
}

.client__area-8 .about-sub-right {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--white);
    padding-bottom: 10px;
}

.client__area-8 .react_border {
    border-color: #313131;
}

.client__area-8 .react_border span {
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 16px;
    color: var(--white);
    display: inline-block;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.client__section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    margin-bottom: 110px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .client__section {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 50px;
    }
}

.client__section__title {
    color: var(--white);
    font-size: 80px;
    line-height: 1;
    text-transform: uppercase;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .client__section__title {
        font-size: 60px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .client__section__title {
        font-size: 48px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .client__section__title {
        font-size: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .client__section__title {
        font-size: 40px;
    }
}

.client__section__title span {
    font-family: "newYork";
}

.client__section__dis {
    max-width: 240px;
    color: var(--gray-2);
    font-size: 18px;
    line-height: 1.5;
}

@media only screen and (max-width: 767px) {
    .client__section__dis {
        max-width: 100%;
    }
}

.client__logo {
    display: -ms-grid;
    display: grid;
    grid-gap: 120px 60px;
    -ms-grid-columns: 1fr 60px 1fr 60px 1fr 60px 1fr 60px 1fr 60px 1fr;
    grid-template-columns: repeat(6, 1fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .client__logo {
        grid-gap: 80px 40px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .client__logo {
        grid-gap: 60px 40px;
        -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
        grid-template-columns: repeat(4, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .client__logo {
        grid-gap: 50px;
        -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
        grid-template-columns: repeat(3, 1fr);
    }
}

.client__logo img {
    max-width: 100%;
}

.career__top .sec-title-wrapper {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.career__top-title {
    background-color: var(--black-2);
    padding-bottom: 500px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .career__top-title {
        padding-bottom: 470px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .career__top-title {
        padding-bottom: 470px;
        padding-top: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .career__top-title {
        padding-bottom: 30px;
        padding-top: 80px;
    }
}

.career__top-title .btn-item {
    width: 200px;
    height: 200px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .career__top-title .btn-item {
        width: 170px;
        height: 170px;
    }
}

@media only screen and (max-width: 767px) {
    .career__top-title .btn-item {
        width: 170px;
        height: 170px;
    }
}

.career__top .sec-title-2 {
    color: var(--white);
}

@media only screen and (max-width: 767px) {
    .career__top .sec-title-2 {
        margin-bottom: 50px;
    }
}

.career__top-img {
    height: 800px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .career__top-img {
        height: 700px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .career__top-img {
        height: 560px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .career__top-img {
        height: 500px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .career__top-img {
        height: 480px;
    }
}

@media only screen and (max-width: 767px) {
    .career__top-img {
        height: auto;
    }
}

.career__top-img iframe, .career__top-img video {
    width: 100%;
}

.career__thumb {
    margin-top: -500px;
    overflow: hidden;
}

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

@media only screen and (max-width: 767px) {
    .career__thumb {
        margin-top: -50px;
    }
}

.career__thumb .inherit {
    margin-right: -320px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .career__thumb .inherit {
        margin-right: -80px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .career__thumb .inherit {
        margin-right: -130px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .career__thumb .inherit {
        margin-right: -50px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .career__thumb .inherit {
        margin-right: -40px;
    }
}

@media only screen and (max-width: 767px) {
    .career__thumb .inherit {
        margin-right: calc(-0.5 * var(--bs-gutter-x));
    }
}

.career__gallery {
    overflow: hidden;
}

.career__gallery ul {
    text-align: center;
    margin-bottom: 20px;
}

.career__gallery ul li {
    display: inline-block;
    font-weight: 400;
    font-size: 36px;
    line-height: 1;
    color: var(--black-2);
    position: relative;
    padding-right: 20px;
    margin-right: 20px;
}

@media only screen and (max-width: 767px) {
    .career__gallery ul li {
        font-size: 24px;
        padding-right: 10px;
        margin-right: 10px;
    }
}

.career__gallery ul li::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 3px;
    right: 0;
    bottom: 10px;
    background-color: var(--black-2);
}

.career__gallery ul li:last-child::after {
    position: unset;
}

.career__gallery-img {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: self-start;
    -ms-flex-align: self-start;
    align-items: self-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 700px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .career__gallery-img {
        height: 650px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .career__gallery-img {
        height: 580px;
    }
}

@media (max-width: 1200px) {
    .career__gallery-img {
        height: 100%;
    }
}

.career__gallery-img:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}

@media only screen and (max-width: 767px) {
    .career__gallery-img:last-child {
        gap: 0;
    }
}

.career__gallery-img img {
    max-width: 100%;
}

@media only screen and (max-width: 767px) {
    .career__gallery-img img {
        margin: 0 auto;
        margin-bottom: 20px;
    }
}

.career__gallery p {
    max-width: 850px;
    margin: 0 auto;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.3;
    color: var(--black-3);
    text-align: center;
    padding-bottom: 60px;
    position: relative;
    z-index: 3;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .career__gallery p {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .career__gallery p {
        font-size: 20px;
    }
}

.career__benefits {
    overflow: hidden;
}

.career__benefits .sec-title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}

.career__benefits .sec-title-wrapper p {
    font-size: 18px;
    line-height: 1.4;
    padding-right: 10px;
    padding-top: 40px;
}

@media only screen and (max-width: 767px) {
    .career__benefits .sec-title-wrapper p {
        padding-right: 0;
        padding-top: 30px;
    }
}

.career__benefits-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

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

@media only screen and (max-width: 767px) {
    .career__benefits-list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 50px;
    }
}

.career__benefits-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 240px;
    height: 240px;
    text-align: center;
    border: 1px solid #C8C7C7;
    border-radius: 100%;
    margin-left: -30px;
    margin-top: -30px;
    font-weight: 400;
    font-size: 18px;
    color: var(--black-2);
}

@media only screen and (min-width: 1920px) {
    .career__benefits-list li:nth-child(3n + 1) {
        margin-left: 0;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .career__benefits-list li:nth-child(3n + 1) {
        margin-left: 0;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .career__benefits-list li {
        width: 210px;
        height: 210px;
        margin-left: -20px;
        margin-top: -20px;
        padding: 20px;
    }

    .career__benefits-list li:nth-child(3n + 1) {
        margin-left: 0;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .career__benefits-list li {
        width: 240px;
        height: 240px;
        margin-left: -20px;
        margin-top: -20px;
        padding: 20px;
    }

    .career__benefits-list li:nth-child(2n + 1) {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .career__benefits-list li {
        width: 260px;
        height: 260px;
    }

    .career__benefits-list li:nth-child(3n + 1) {
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .career__benefits-list li {
        width: 175px;
        height: 175px;
        margin-left: -10px;
        margin-top: -10px;
        padding: 20px;
        font-size: 16px;
    }

    .career__benefits-list li:nth-child(2n + 1) {
        margin-left: 0;
    }
}

.job__area {
    background-color: var(--black-2);
    overflow: hidden;
}

.job__area .sec-title {
    color: var(--white);
}

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

@media (max-width: 1400px) {
    .job__apply {
        margin-top: 0;
    }
}

.job__list {
    padding-top: 60px;
}

.job__list a:first-child .job__item {
    border-top: 1px solid var(--secondary);
}

.job__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 5fr 5fr 1fr;
    grid-template-columns: 1fr 5fr 5fr 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid var(--secondary);
    padding: 35px 0;
}

@media only screen and (max-width: 767px) {
    .job__item {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        padding: 35px 0 20px;
    }
}

.job__item:hover .job__title {
    color: var(--white);
}

.job__item:hover .job__link i {
    -webkit-transform: rotate(-45deg) translate(60px, 2px);
    transform: rotate(-45deg) translate(60px, 2px);
    color: var(--white);
}

.job__item:hover .job__link span::after {
    right: 0;
    bottom: 0;
    opacity: 1;
    visibility: visible;
    color: var(--white);
}

.job__no, .job__open {
    font-weight: 300;
    font-size: 24px;
    line-height: 1.3;
    color: var(--gray-3);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .job__no, .job__open {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .job__no, .job__open {
        font-size: 18px;
    }
}

.job__title {
    font-weight: 400;
    font-size: 36px;
    line-height: 1.5;
    color: var(--gray-3);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .job__title {
        font-size: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .job__title {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .job__title {
        font-size: 24px;
    }
}

.job__link {
    text-align: right;
    overflow: hidden;
    position: relative;
}

.job__link span::after {
    position: absolute;
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    right: 45px;
    bottom: -35px;
    -webkit-transform: translate(0, 0) rotate(-45deg);
    transform: translate(0, 0) rotate(-45deg);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.job__link i, .job__link span {
    font-size: 30px;
    color: var(--gray-3);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.job__detail {
    overflow: hidden;
}

.job__detail-top {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 690px;
}

.job__detail-top img {
    position: absolute;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 120%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 1920px) {
    .job__detail-top {
        padding-left: 100px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .job__detail-top {
        padding-left: 0;
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 500px;
    }

    .job__detail-top img {
        position: absolute;
        bottom: 0;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: 120%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .job__detail-top {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: auto;
        position: unset;
    }

    .job__detail-top img {
        position: absolute;
        bottom: 0;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .job__detail-top {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: auto;
        position: unset;
    }

    .job__detail-top img {
        position: absolute;
        bottom: 0;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (max-width: 767px) {
    .job__detail-top {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: auto;
        position: unset;
        padding-top: 73px;
    }

    .job__detail-top img {
        position: absolute;
        bottom: 0;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
}

.job__detail-top img {
    width: 100%;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .job__detail-top img {
        position: unset;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .job__detail-top img {
        position: unset;
    }
}

@media only screen and (max-width: 767px) {
    .job__detail-top img {
        position: unset;
    }
}

.job__detail-wrapper {
    padding-top: 60px;
    padding-right: 120px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .job__detail-wrapper {
        padding-right: 30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .job__detail-wrapper {
        padding-right: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .job__detail-wrapper {
        padding-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .job__detail-wrapper {
        padding-right: 0;
    }
}

.job__detail-meta {
    padding-top: 35px;
    padding-bottom: 35px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .job__detail-meta {
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .job__detail-meta {
        padding-bottom: 20px;
    }
}

.job__detail-meta li {
    display: inline-block;
    padding-right: 70px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: var(--black-3);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .job__detail-meta li {
        display: block;
        padding-right: 0;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .job__detail-meta li {
        display: block;
        padding-right: 0;
        padding-bottom: 20px;
    }
}

.job__detail-meta li span {
    color: var(--gray-8);
    font-size: 14px;
    font-weight: 400;
    display: block;
}

.job__detail-content {
    border-top: 1px solid var(--white-4);
    padding-top: 35px;
}

.job__detail-content p {
    font-size: 18px;
    line-height: 1.4;
    padding-bottom: 40px;
}

.job__detail-content h1, .job__detail-content h2 {
    font-weight: 500;
    font-size: 24px;
    line-height: 1;
    color: var(--black-2);
    padding-bottom: 20px;
}

.job__detail-content h3 {
    font-weight: 500;
    font-size: 22px;
    line-height: 1;
    color: var(--black-2);
    padding-bottom: 20px;
}

.job__detail-content h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    color: var(--black-2);
    padding-bottom: 20px;
}

.job__detail-content h5, .job__detail-content h6 {
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: var(--black-2);
    padding-bottom: 20px;
}

.job__detail-content ul, .job__detail-content ol {
    padding-bottom: 35px;
    padding-left: 30px;
}

@media only screen and (max-width: 767px) {
    .job__detail-content ul, .job__detail-content ol {
        padding-left: 20px;
        padding-bottom: 30px;
    }
}

.job__detail-content ul li, .job__detail-content ol li {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--black-3);
    padding-bottom: 5px;
    position: relative;
}

.job__detail-content ul li::before, .job__detail-content ol li::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    left: -18px;
    top: 12px;
    background-color: var(--black-3);
    border-radius: 30px;
}

.job__detail-sidebar {
    margin-top: 70px;
    background: #F9F9F9;
    padding: 40px 30px;
    position: sticky;
    top: 70px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .job__detail-sidebar {
        padding: 30px 20px;
    }
}

.job__detail-sidebar ul li {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: var(--black-3);
    padding-bottom: 20px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .job__detail-sidebar ul li {
        font-size: 14px;
    }
}

.job__detail-sidebar ul li:last-child {
    padding-bottom: 0;
}

.job__detail-sidebar ul li span {
    color: var(--gray-8);
    font-size: 14px;
    font-weight: 400;
    display: block;
}

.feature__area-2 {
    background-color: var(--pink);
}

.feature__top {
    padding-bottom: 65px;
    border-bottom: 1px solid var(--black);
}

@media only screen and (max-width: 767px) {
    .feature__top {
        border-bottom: none;
    }
}

@media only screen and (max-width: 767px) {
    .feature__btm {
        padding-bottom: 15px;
    }
}

.feature__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding-left: 85px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .feature__text {
        padding-left: 70px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .feature__text {
        padding-left: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .feature__text {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .feature__text {
        padding-left: 0;
        padding-top: 30px;
    }
}

.feature__text p {
    font-size: 18px;
    line-height: 1.4;
    color: var(--black-2);
}

.feature__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 15px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .feature__list {
        -ms-grid-columns: 1fr 0 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
}

@media only screen and (max-width: 767px) {
    .feature__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.feature__item {
    border-right: 1px solid var(--black-2);
    padding: 145px 30px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .feature__item {
        padding: 90px 20px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .feature__item {
        padding: 90px 10px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .feature__item {
        padding: 50px 30px;
        border-right: none;
    }
}

@media only screen and (max-width: 767px) {
    .feature__item {
        border-right: none;
        padding: 0 0 50px 0;
    }
}

.feature__item:first-child {
    padding-left: 0;
}

.feature__item:last-child {
    border-right: 0;
    padding-right: 0;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .feature__item:nth-child(odd) {
        border-right: 1px solid var(--black-2);
    }
}

.feature__item img {
    margin-bottom: 35px;
}

.feature__item p {
    color: var(--black-2);
}

.feature__title {
    font-weight: 500;
    font-size: 26px;
    line-height: 1.4;
    color: var(--black-2);
    padding-bottom: 12px;
}

.contact__area-6 {
    overflow: hidden;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .contact__area-6 .line {
        padding-top: 150px;
    }
}

@media only screen and (max-width: 767px) {
    .contact__area-6 .line {
        padding-top: 130px;
    }
}

.contact__text {
    max-width: 330px;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .contact__text {
        padding-top: 30px;
    }
}

.contact__text p {
    font-size: 18px;
    line-height: 1.4;
}

.contact__btm {
    padding-top: 65px;
}

@media only screen and (max-width: 767px) {
    .contact__btm {
        padding-top: 50px;
    }
}

.contact__info {
    padding-top: 15px;
}

@media only screen and (max-width: 767px) {
    .contact__info {
        padding-bottom: 50px;
    }
}

.contact__info h3 {
    font-weight: 500;
    font-size: 26px;
    line-height: 1.2;
    color: var(--black-2);
    padding-bottom: 30px;
}

.contact__info ul li a {
    text-decoration-line: underline;
}

.contact__info ul li a, .contact__info ul li span {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5;
    color: var(--black-2);
    display: block;
    margin-bottom: 10px;
}

.contact__form {
    position: relative;
    z-index: 9;
}

.contact__form input, .contact__form textarea {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--black-2);
    border: none;
    border-bottom: 1px solid var(--gray);
    padding: 15px 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    outline: 0;
    position: relative;
    z-index: 1;
    background: transparent;
    margin-bottom: 35px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .contact__form input, .contact__form textarea {
        padding: 10px 0;
        margin-bottom: 25px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .contact__form input, .contact__form textarea {
        padding: 10px 0;
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .contact__form input, .contact__form textarea {
        margin-bottom: 20px;
    }
}

.contact__form input:focus, .contact__form textarea:focus {
    border-bottom: 1px solid var(--black-2);
}

.contact__form input::-webkit-input-placeholder, .contact__form textarea::-webkit-input-placeholder {
    color: var(--black-2);
    opacity: 1;
}

.contact__form input::-moz-placeholder, .contact__form textarea::-moz-placeholder {
    color: var(--black-2);
    opacity: 1;
}

.contact__form input:-ms-input-placeholder, .contact__form textarea:-ms-input-placeholder {
    color: var(--black-2);
    opacity: 1;
}

.contact__form input::-ms-input-placeholder, .contact__form textarea::-ms-input-placeholder {
    color: var(--black-2);
    opacity: 1;
}

.contact__form input::placeholder, .contact__form textarea::placeholder {
    color: var(--black-2);
    opacity: 1;
}

.contact__form textarea {
    height: 55px;
}

.contact__form #btn_wrapper, .contact__form .btn_wrapper {
    margin-top: -20px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .contact__form #btn_wrapper, .contact__form .btn_wrapper {
        margin-top: -10px;
    }
}

@media (max-width: 1200px) {
    .contact__form #btn_wrapper, .contact__form .btn_wrapper {
        margin-top: 10px;
    }
}

.price__area {
    background-color: var(--pink-3);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .price__area.pb-140 {
        padding-bottom: 100px;
    }
}

.price__area .sec-title {
    text-transform: uppercase;
    padding-bottom: 60px;
}

@media only screen and (max-width: 767px) {
    .price__area .sec-title {
        padding-bottom: 40px;
    }
}

.price__area .sec-sub-title {
    text-transform: uppercase;
}

.price__table {
    margin-top: 80px;
}

.price__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    background: var(--white);
    padding: 40px 30px;
    margin-bottom: 20px;
    border-radius: 9px;
    position: relative;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .price__item {
        gap: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .price__item {
        gap: 30px;
    }
}

.price__item:first-child {
    background-color: var(--black-2);
}

.price__item:first-child .price__icon span {
    color: var(--black-2);
    border-color: var(--pink-2);
    background-color: var(--pink-2);
}

.price__item:first-child .price__type {
    color: var(--gray-2);
    border: 1px solid var(--gray-14);
}

.price__item:first-child .price__title {
    color: var(--white);
}

.price__item:first-child .price__info p {
    color: var(--gray-2);
}

.price__item:first-child .price__amount p {
    color: var(--white);
}

.price__item .best-value {
    font-weight: 500;
    font-size: 12px;
    line-height: 10px;
    color: var(--white);
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 5px;
    background-color: var(--pink-2);
    position: absolute;
    top: -15px;
}

.price__icon {
    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;
}

.price__icon span {
    display: block;
    width: 40px;
    height: 40px;
    color: var(--gray-2);
    border-radius: 5px;
    border: 2px solid var(--gray-13);
    background-color: var(--white);
    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;
}

.price__icon span i {
    font-size: 20px;
}

.price__type {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--black-6);
    border: 1px solid var(--black-6);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.price__title {
    font-weight: 500;
    font-size: 26px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--black-2);
    padding-bottom: 5px;
}

.price__info p {
    color: var(--black-6);
}

@media only screen and (max-width: 767px) {
    .price__amount {
        position: absolute;
        top: 0;
        right: 30px;
        padding-top: 30px;
    }
}

.price__amount p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.3;
    color: var(--black-2);
}

.price__amount p span {
    font-size: 16px;
}

.price__btn {
    padding-top: 50px;
}

@media only screen and (max-width: 767px) {
    .price__btn {
        padding-top: 0;
        margin-top: 40px;
    }
}

.price__btn a {
    margin: 0 auto;
    border-color: var(--black-2);
}

.error__content {
    padding-top: 80px;
    height: 100vh;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .error__content {
        padding-top: 100px;
    }
}

.error__content::before {
    position: absolute;
    content: "";
    width: 38px;
    height: 38px;
    top: 70%;
    left: 10%;
    background-image: url("/assets/imgs/icon/6.png");
    background-repeat: no-repeat;
    -webkit-animation: wcZoom 2s infinite;
    animation: wcZoom 2s infinite;
}

.error__content::after {
    position: absolute;
    content: "";
    width: 38px;
    height: 38px;
    top: 10%;
    right: 10%;
    background-image: url("/assets/imgs/icon/3.png");
    background-repeat: no-repeat;
    -webkit-animation: wcZoom 2s infinite;
    animation: wcZoom 2s infinite;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .error__content::after {
        top: 20%;
    }
}

@media only screen and (max-width: 767px) {
    .error__content::after {
        top: 15%;
    }
}

.error__content h2 {
    font-weight: 500;
    font-size: 36px;
    line-height: 1.5;
    color: var(--black-2);
    padding-top: 25px;
    padding-bottom: 10px;
}

@media only screen and (max-width: 767px) {
    .error__content h2 {
        font-size: 30px;
        line-height: 1.3;
    }
}

.error__content p {
    max-width: 340px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.4;
    padding-bottom: 50px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .error__content p {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .error__content p {
        padding-bottom: 30px;
    }
}

.error__content a {
    margin: 0 auto;
}

.error__content img {
    max-width: 100%;
}

.error__content #btn_wrapper, .error__content .btn_wrapper {
    margin-left: 0;
    margin-top: -40px;
}

@media (max-width: 1400px) {
    .error__content #btn_wrapper, .error__content .btn_wrapper {
        margin-top: 0;
    }
}

:root {
    --white-6: #d7d7d7;
    --white-7: #B7B7C5;
    --black-14: #323438;
    --lime: #745EFF;
    --lime-2: #5547F5;
    --gray-16: #6B6B6B;
    --gray-17: #F7F7FC;
    --gray-18: #999999;
    --gray-20: #D7D7D7;
    --gray-21: #F2F2F8;
    --gray-22: #FCFCFE;
    --gray-23: #ECECF3;
    --gray-24: #ECECF4;
    --gray-25: #D3D3D3;
}

.btn-together {
    font-weight: 400;
    line-height: 1.3;
    color: var(--white);
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 18px;
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    .btn-together {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .btn-together {
        font-size: 15px;
    }
}

.btn-together i {
    padding-left: 10px;
}

.btn-together::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--white);
    content: "";
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.btn-together:hover::after {
    left: 0;
    width: 1%;
}

.btn-together:hover {
    color: var(--gray);
}

.header__inner-5 {
    padding: 25px 50px 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (max-width: 767px) {
    .header__inner-5 {
        padding: 20px 15px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .header__inner-5 {
        padding: 25px 15px 22px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .header__inner-5 {
        padding: 25px 15px 22px;
    }
}

.header__area-5 {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}

.header__area-5.sticky-5 {
    background-color: var(--white);
    border-bottom: 1px solid var(--white-2);
}

.header__area-5.sticky-5 .header__inner-5 {
    padding: 20px 50px;
}

@media (max-width: 1200px) {
    .header__area-5.sticky-5 .header__inner-5 {
        padding: 20px 15px;
    }
}

.menu-text-5 {
    color: var(--black-2);
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    padding-right: 10px;
}

.menu-text-pp {
    color: var(--black-2);
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    padding-right: 10px;
}

.hero__area-5 {
    padding: 190px 35px 113px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .hero__area-5 {
        padding: 135px 0px 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__area-5 {
        padding: 145px 0px 60px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__area-5 {
        padding: 155px 0px 70px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__area-5 {
        padding: 166px 0px 80px;
        background-size: 90%;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .hero__area-5 {
        padding: 185px 0px 80px;
        background-size: 90%;
    }
}

.hero__area-5 img {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-filter: invert(1);
    filter: invert(1);
    z-index: 0;
}

.hero__content-5 p {
    font-size: 18px;
    color: var(--black-2);
    font-weight: 400;
    line-height: 1.4;
    max-width: 330px;
}

@media only screen and (max-width: 767px) {
    .hero__content-5 p {
        font-size: 16px;
    }
}

.hero__text-5 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-top: 25px;
}

.hero__title-5 {
    font-size: 80px;
    font-weight: 500;
    line-height: 1;
    color: var(--black-2);
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    .hero__title-5 {
        font-size: 30px;
        line-height: 1.2;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__title-5 {
        font-size: 36px;
        line-height: 1.2;
        padding-bottom: 20px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__title-5 {
        font-size: 40px;
        line-height: 1.4;
        padding-bottom: 20px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__title-5 {
        font-size: 45px;
        line-height: 1.4;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .hero__title-5 {
        font-size: 50px;
        line-height: 1.4;
    }
}

.portfolio__area-5 {
    border-top: 1px solid var(--gray-25);
    border-bottom: 1px solid var(--gray-25);
    padding: 56px 45px;
    position: relative;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .portfolio__area-5 {
        padding: 56px 0px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__area-5 {
        padding: 56px 0px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__area-5 {
        padding: 56px 0px;
    }
}

.portfolio__area-5::before {
    position: absolute;
    left: 33.3%;
    top: 0;
    width: 1px;
    height: 100%;
    content: "";
    background-color: var(--secondary);
    -webkit-filter: invert(1);
    filter: invert(1);
}

.portfolio__area-5::after {
    position: absolute;
    left: 66.6%;
    top: 0;
    width: 1px;
    height: 100%;
    content: "";
    background-color: var(--secondary);
    -webkit-filter: invert(1);
    filter: invert(1);
}

.portfolio__area-5 .sec-line {
    position: absolute;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 1px;
    content: "";
    background-color: var(--secondary);
    -webkit-filter: invert(1);
    filter: invert(1);
}

.portfolio__inner-5 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 110px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
    .portfolio__inner-5 {
        gap: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__inner-5 {
        gap: 20px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__inner-5 {
        gap: 40px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__inner-5 {
        gap: 70px;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .portfolio__inner-5 {
        gap: 80px;
    }
}

.portfolio__item-5 {
    width: 29%;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media only screen and (max-width: 767px) {
    .portfolio__item-5 {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__item-5 {
        width: 48.5%;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__item-5 {
        width: 48%;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__item-5 {
        width: 28%;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .portfolio__item-5 {
        width: 28%;
    }
}

.portfolio__item-5:hover .portfolio__content-5 {
    opacity: 1;
    right: -50px;
}

.portfolio__item-5 img {
    width: 100%;
    max-width: 100%;
}

.portfolio__content-5 {
    background-color: var(--black-2);
    padding: 20px 30px 22px 30px;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: -70px;
    z-index: 9;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media only screen and (max-width: 767px) {
    .portfolio__content-5 {
        right: 0;
        opacity: 1;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__content-5 {
        right: 0;
        opacity: 1;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__content-5 {
        right: -70px;
    }
}

.portfolio__name-5 {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    padding-bottom: 2px;
    color: var(--white);
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    .portfolio__name-5 {
        font-size: 12px;
    }
}

.portfolio__title-5 {
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    .portfolio__title-5 {
        font-size: 18px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__title-5 {
        font-size: 18px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__title-5 {
        font-size: 20px;
    }
}

.cta__area-5 {
    position: relative;
    border-bottom: 1px solid var(--secondary);
    -webkit-filter: invert(1);
    filter: invert(1);
}

.cta__area-5::before {
    position: absolute;
    top: 0;
    left: 57%;
    width: 1px;
    height: 100%;
    content: "";
    background-color: var(--secondary);
}

.cta__inner-5 {
    max-width: 1410px;
    margin: 0 auto;
}

.cta__title-5 {
    font-size: 60px;
    color: var(--white);
    font-weight: 500;
    line-height: 1.2;
    padding-bottom: 28px;
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    .cta__title-5 {
        font-size: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .cta__title-5 {
        font-size: 36px;
    }

    .cta__title-5 br {
        display: none;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .cta__title-5 {
        font-size: 40px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .cta__title-5 {
        font-size: 45px;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .cta__title-5 {
        font-size: 50px;
    }
}

.cta__list-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 230px 30px auto;
    grid-template-columns: 230px auto;
    gap: 30px;
}

@media only screen and (max-width: 767px) {
    .cta__list-wrapper {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        margin-bottom: 50px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .cta__list-wrapper {
        -ms-grid-columns: 180px 20px auto;
        grid-template-columns: 180px auto;
        gap: 20px;
    }
}

.cta__list-left {
    padding-left: 15px;
}

.cta__list-left li {
    position: relative;
}

.cta__list-left li::before {
    position: absolute;
    top: 0;
    left: -15px;
    width: auto;
    height: auto;
    content: "+";
}

.cta__item-5 h3 {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    padding-bottom: 10px;
    text-transform: uppercase;
}

.cta__item-5 li {
    font-size: 18px;
    color: var(--gray-2);
    line-height: 1.5;
    font-weight: 400;
}

@media only screen and (max-width: 767px) {
    .cta__item-5 li {
        font-size: 16px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .cta__item-5 li {
        font-size: 16px;
    }
}

.cta__btn-5 {
    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;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .cta__btn-5 {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.footer__area-5 {
    padding: 79px 0px 72px;
    text-align: center;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer__area-5 {
        padding: 60px 0px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__area-5 {
        padding: 50px 0px;
    }
}

@media only screen and (max-width: 767px) {
    .footer__area-5 {
        padding: 50px 0px;
    }
}

.footer__menu-5 {
    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;
    gap: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
    .footer__menu-5 {
        gap: 25px;
    }
}

.footer__menu-5 li a {
    color: var(--gray-2);
    font-size: 15px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.footer__menu-5 li a .menu-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    text-shadow: 0 16px 0 var(--black-2);
}

.footer__menu-5 li a .menu-text span {
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-style: normal;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: translateY(var(--m)) translateZ(0);
    transform: translateY(var(--m)) translateZ(0);
}

.footer__menu-5 li a .menu-text span:nth-child(1) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

.footer__menu-5 li a .menu-text span:nth-child(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.footer__menu-5 li a .menu-text span:nth-child(3) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.footer__menu-5 li a .menu-text span:nth-child(4) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.footer__menu-5 li a .menu-text span:nth-child(5) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.footer__menu-5 li a .menu-text span:nth-child(6) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.footer__menu-5 li a .menu-text span:nth-child(7) {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

.footer__menu-5 li a .menu-text span:nth-child(8) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.footer__menu-5 li a .menu-text span:nth-child(9) {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

.footer__menu-5 li a .menu-text span:nth-child(10) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.footer__menu-5 li a .menu-text span:nth-child(11) {
    -webkit-transition-delay: 0.55s;
    transition-delay: 0.55s;
}

.footer__menu-5 li a .menu-text span:nth-child(12) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.footer__menu-5 li a .menu-text span:nth-child(13) {
    -webkit-transition-delay: 0.65s;
    transition-delay: 0.65s;
}

.footer__menu-5 li a .menu-text span:nth-child(14) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.footer__menu-5 li a .menu-text span:nth-child(15) {
    -webkit-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.footer__menu-5 li a .menu-text span:nth-child(16) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

.footer__menu-5 li a .menu-text span:nth-child(17) {
    -webkit-transition-delay: 0.85s;
    transition-delay: 0.85s;
}

.footer__menu-5 li a .menu-text span:nth-child(18) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

.footer__menu-5 li a .menu-text span:nth-child(19) {
    -webkit-transition-delay: 0.95s;
    transition-delay: 0.95s;
}

.footer__menu-5 li a .menu-text span:nth-child(20) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.footer__menu-5 li a .menu-text span:nth-child(21) {
    -webkit-transition-delay: 1.05s;
    transition-delay: 1.05s;
}

.footer__menu-5 li a .menu-text span:nth-child(22) {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
}

.footer__menu-5 li a .menu-text span:nth-child(23) {
    -webkit-transition-delay: 1.15s;
    transition-delay: 1.15s;
}

.footer__menu-5 li a .menu-text span:nth-child(24) {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
}

.footer__menu-5 li a .menu-text span:nth-child(25) {
    -webkit-transition-delay: 1.25s;
    transition-delay: 1.25s;
}

.footer__menu-5 li a .menu-text span:nth-child(26) {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
}

.footer__menu-5 li a .menu-text span:nth-child(27) {
    -webkit-transition-delay: 1.35s;
    transition-delay: 1.35s;
}

.footer__menu-5 li a .menu-text span:nth-child(28) {
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
}

.footer__menu-5 li a .menu-text span:nth-child(29) {
    -webkit-transition-delay: 1.45s;
    transition-delay: 1.45s;
}

.footer__menu-5 li a .menu-text span:nth-child(30) {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
}

.footer__menu-5 li a .menu-text span:nth-child(31) {
    -webkit-transition-delay: 1.55s;
    transition-delay: 1.55s;
}

.footer__menu-5 li a .menu-text span:nth-child(32) {
    -webkit-transition-delay: 1.6s;
    transition-delay: 1.6s;
}

.footer__menu-5 li a .menu-text span:nth-child(33) {
    -webkit-transition-delay: 1.65s;
    transition-delay: 1.65s;
}

.footer__menu-5 li a .menu-text span:nth-child(34) {
    -webkit-transition-delay: 1.7s;
    transition-delay: 1.7s;
}

.footer__menu-5 li a .menu-text span:nth-child(35) {
    -webkit-transition-delay: 1.75s;
    transition-delay: 1.75s;
}

.footer__menu-5 li a .menu-text span:nth-child(36) {
    -webkit-transition-delay: 1.8s;
    transition-delay: 1.8s;
}

.footer__menu-5 li a .menu-text span:nth-child(37) {
    -webkit-transition-delay: 1.85s;
    transition-delay: 1.85s;
}

.footer__menu-5 li a .menu-text span:nth-child(38) {
    -webkit-transition-delay: 1.9s;
    transition-delay: 1.9s;
}

.footer__menu-5 li a .menu-text span:nth-child(39) {
    -webkit-transition-delay: 1.95s;
    transition-delay: 1.95s;
}

.footer__menu-5 li a .menu-text span:nth-child(40) {
    -webkit-transition-delay: 2s;
    transition-delay: 2s;
}

.footer__menu-5 li a .menu-text span:nth-child(41) {
    -webkit-transition-delay: 2.05s;
    transition-delay: 2.05s;
}

.footer__menu-5 li a .menu-text span:nth-child(42) {
    -webkit-transition-delay: 2.1s;
    transition-delay: 2.1s;
}

.footer__menu-5 li a .menu-text span:nth-child(43) {
    -webkit-transition-delay: 2.15s;
    transition-delay: 2.15s;
}

.footer__menu-5 li a .menu-text span:nth-child(44) {
    -webkit-transition-delay: 2.2s;
    transition-delay: 2.2s;
}

.footer__menu-5 li a .menu-text span:nth-child(45) {
    -webkit-transition-delay: 2.25s;
    transition-delay: 2.25s;
}

.footer__menu-5 li a .menu-text span:nth-child(46) {
    -webkit-transition-delay: 2.3s;
    transition-delay: 2.3s;
}

.footer__menu-5 li a .menu-text span:nth-child(47) {
    -webkit-transition-delay: 2.35s;
    transition-delay: 2.35s;
}

.footer__menu-5 li a .menu-text span:nth-child(48) {
    -webkit-transition-delay: 2.4s;
    transition-delay: 2.4s;
}

.footer__menu-5 li a .menu-text span:nth-child(49) {
    -webkit-transition-delay: 2.45s;
    transition-delay: 2.45s;
}

.footer__menu-5 li a:hover {
    --y: -4px;
}

.footer__menu-5 li a:hover span {
    --m: calc(16px * -1);
}

.footer__copyright-4 {
    color: var(--gray-2);
    font-size: 16px;
    font-weight: 400;
}

.footer__copyright-4 a {
    color: var(--black-2);
}

.footer__copyright-4 a:hover {
    color: var(--gray);
}

.footer__area {
    overflow: hidden;
}

.footer__area-2 {
    background-image: url("/assets/imgs/shape/4.png");
    background-repeat: no-repeat;
    background-position: top right;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer__area-2 {
        background-size: 380px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__area-2 {
        background-size: 350px;
    }
}

@media only screen and (max-width: 767px) {
    .footer__area-2 {
        background-size: 200px;
    }
}

.footer__area-3 {
    background-color: var(--black-2);
}

.footer__row {
    margin-left: -500px;
}

@media only screen and (max-width: 767px) {
    .footer__row {
        margin-left: 0;
        margin-right: 0;
    }
}

.footer__top {
    text-align: right;
}

.footer__top img {
    margin-bottom: -380px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer__top img {
        margin-bottom: -300px;
        width: 90%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__top img {
        margin-bottom: -250px;
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .footer__top img {
        margin-bottom: 0;
        width: 100%;
    }
}

.footer__top-2 {
    padding-bottom: 70px;
}

@media only screen and (max-width: 767px) {
    .footer__top-2 {
        padding-bottom: 50px;
    }
}

.footer__top-3 {
    border-bottom: 1px solid var(--black-6);
}

.footer__top-wrapper-3 {
    padding: 0 50px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 30% 10% auto;
    grid-template-columns: 30% 10% auto;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .footer__top-wrapper-3 {
        -ms-grid-columns: 35% 20px 15% 20px auto;
        grid-template-columns: 35% 15% auto;
        gap: 20px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer__top-wrapper-3 {
        -ms-grid-columns: 35% 20px 20% 20px auto;
        grid-template-columns: 35% 20% auto;
        gap: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__top-wrapper-3 {
        -ms-grid-columns: 35% 25% auto;
        grid-template-columns: 35% 25% auto;
    }
}

@media only screen and (max-width: 767px) {
    .footer__top-wrapper-3 {
        padding: 0 15px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.footer__middle-2 {
    border-top: 1px solid var(--white-2);
    border-bottom: 1px solid var(--white-2);
    padding: 95px 0;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__middle-2 {
        padding: 60px 0;
    }
}

@media only screen and (max-width: 767px) {
    .footer__middle-2 {
        padding: 50px 0;
    }
}

.footer__location-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 100px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer__location-2 {
        gap: 50px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__location-2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .footer__location-2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
    }
}

.footer__location-2 .location h3 {
    font-weight: 400;
    font-size: 22px;
    line-height: 1.5;
    color: var(--black-2);
    padding-bottom: 10px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .footer__btm {
        padding-left: 55px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer__btm {
        padding-left: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .footer__btm {
        background-color: var(--black-2);
    }

    .footer__btm .container {
        padding: 0;
        background-color: var(--black-2);
    }
}

.footer__btm-2 {
    padding: 50px 0;
}

@media only screen and (max-width: 767px) {
    .footer__btm-2 {
        padding: 30px 0;
    }

    .footer__btm-2 .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.footer__btm-3 {
    padding: 50px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer__btm-3 {
        padding: 40px 15px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__btm-3 {
        padding: 40px 15px;
    }

    .footer__btm-3 .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

@media only screen and (max-width: 767px) {
    .footer__btm-3 {
        padding: 30px 10px;
    }

    .footer__btm-3 .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.footer__inner {
    background-color: var(--black-2);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [12];
    grid-template-columns: repeat(12, 1fr);
    padding-left: 350px;
    position: relative;
    z-index: 9;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .footer__inner {
        padding-left: 512px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .footer__inner {
        padding-left: 450px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer__inner {
        padding-top: 100px;
        padding-left: 410px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__inner {
        padding-left: 470px;
        padding-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .footer__inner {
        background-color: transparent;
        padding-left: 0;
        padding-top: 60px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.footer__logo {
    margin-bottom: 30px;
}

.footer__logo-3 img {
    margin-bottom: 30px;
}

.footer__logo-3 p {
    max-width: 310px;
    color: var(--gray-2);
}

.footer__sub-title {
    max-width: 850px;
    font-weight: 300;
    font-size: 36px;
    line-height: 1.3;
    color: var(--black-3);
    padding-top: 10px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__sub-title {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .footer__sub-title {
        font-size: 24px;
    }
}

.footer__widget {
    -ms-grid-column-span: 4;
    grid-column: span 4;
    padding: 140px 0 130px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer__widget {
        -ms-grid-column: 1;
        -ms-grid-column-span: 4;
        grid-column: 1/5;
        padding: 0 0 50px 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__widget {
        -ms-grid-column: 1;
        -ms-grid-column-span: 5;
        grid-column: 1/6;
        padding: 0 0 50px 0;
    }
}

@media only screen and (max-width: 767px) {
    .footer__widget {
        padding: 0 0 50px 0;
        -ms-grid-column-span: 4;
        grid-column: span 4;
    }
}

.footer__widget p {
    max-width: 310px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray-2);
    margin-bottom: 30px;
}

.footer__widget-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: var(--white);
    padding-bottom: 20px;
}

.footer__widget-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    padding: 140px 0 130px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer__widget-2 {
        -ms-grid-column: 6;
        -ms-grid-column-span: 3;
        grid-column: 6/9;
        padding: 0 0 50px 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__widget-2 {
        grid-column: 7/-1;
        padding: 0 0 50px 0;
    }
}

@media only screen and (max-width: 767px) {
    .footer__widget-2 {
        padding: 0 0 50px 0;
        -ms-grid-column-span: 4;
        grid-column: span 4;
    }
}

.footer__widget-3 {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    padding: 140px 0 130px;
    margin-right: -30px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer__widget-3 {
        grid-column: 9/-1;
        padding: 0 50px 50px 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__widget-3 {
        -ms-grid-column-span: 6;
        grid-column: span 6;
        padding: 50px 60px 0 0;
    }
}

@media only screen and (max-width: 767px) {
    .footer__widget-3 {
        padding: 0 0 50px 0;
    }
}

.footer__widget-4 {
    -ms-grid-column-span: 4;
    grid-column: span 4;
    -ms-grid-row-span: 2;
    grid-row: span 2;
    background-color: var(--black-4);
    padding: 135px 70px 30px;
    text-align: center;
    margin-left: 60px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .footer__widget-4 {
        padding: 130px 30px 30px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .footer__widget-4 {
        padding: 130px 40px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer__widget-4 {
        grid-column: 7/-1;
        padding: 50px;
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__widget-4 {
        -ms-grid-column-span: 6;
        grid-column: span 6;
        padding: 50px 30px;
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .footer__widget-4 {
        padding: 30px;
        margin-left: 0;
    }
}

.footer__widget-4 .project-title {
    font-weight: 400;
    font-size: 36px;
    line-height: 1.3;
    color: var(--white);
    padding-bottom: 25px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .footer__widget-4 .project-title {
        font-size: 30px;
    }
}

.footer__widget-4 a {
    color: var(--gray-2);
    border-color: var(--secondary);
    margin: 0 auto;
    margin-bottom: 20px;
}

.footer__widget-4 .contact-time {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    color: var(--white);
    padding-bottom: 3px;
}

.footer__widget-4 .contact-day {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: var(--gray-2);
}

.footer__social li {
    display: inline-block;
    padding-right: 15px;
}

.footer__social li a {
    display: inline-block;
    color: var(--gray-2);
    font-size: 20px;
}

.footer__social li a:hover {
    color: var(--white);
}

.footer__social-3 {
    border-left: 1px solid var(--black-6);
    border-right: 1px solid var(--black-6);
}

@media only screen and (max-width: 767px) {
    .footer__social-3 {
        margin-top: 50px;
        border-top: 1px solid var(--black-6);
        border-bottom: 1px solid var(--black-6);
    }
}

.footer__social-3 li {
    display: block;
    border-bottom: 1px solid var(--black-6);
}

.footer__social-3 li:last-child {
    border-bottom: 0;
}

.footer__social-3 li a {
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    padding: 38px 0;
    background-color: transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer__social-3 li a {
        padding: 30px 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__social-3 li a {
        padding: 30px 0;
    }
}

@media only screen and (max-width: 767px) {
    .footer__social-3 li a {
        padding: 30px 0;
    }
}

.footer__social-3 li a:hover {
    color: var(--black-2);
    background-color: var(--white);
}

.footer__link li {
    display: block;
    padding-bottom: 15px;
}

.footer__link li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--gray-2);
    line-height: 18px;
    text-transform: capitalize;
}

.footer__link li a:hover {
    color: var(--white);
}

.footer__contact {
    display: block;
    padding-bottom: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--gray-2);
}

.footer__contact li {
    padding-bottom: 15px;
}

.footer__contact li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--gray-2);
}

.footer__contact li a.phone {
    color: var(--white);
    position: relative;
}

.footer__contact li a.phone::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0px;
    background-color: var(--white);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.footer__contact li a.phone:hover::after {
    width: 0%;
}

.footer__contact li a:hover {
    color: var(--white);
}

.footer__contact-3 {
    text-align: right;
    padding-top: 90px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .footer__contact-3 {
        padding-top: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer__contact-3 {
        padding-top: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__contact-3 {
        padding-top: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

@media only screen and (max-width: 767px) {
    .footer__contact-3 {
        text-align: center;
        margin-bottom: 50px;
        padding-top: 60px;
    }
}

.footer__contact-3 a {
    font-weight: 400;
    font-size: 180px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .footer__contact-3 a {
        font-size: 140px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .footer__contact-3 a {
        font-size: 90px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer__contact-3 a {
        font-size: 72px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__contact-3 a {
        font-size: 48px;
    }
}

@media only screen and (max-width: 767px) {
    .footer__contact-3 a {
        font-size: 50px;
    }
}

.footer__copyright {
    -ms-grid-column-span: 4;
    grid-column: span 4;
    border-top: 1px solid var(--gray-6);
    margin-left: -66px;
    padding: 35px 0 35px 66px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .footer__copyright {
        margin-left: -35px;
        padding: 35px 0 35px 35px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .footer__copyright {
        margin-left: -54px;
        padding: 35px 0 35px 54px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer__copyright {
        border-top: 0;
        margin-left: 0;
        -ms-grid-column: 1;
        -ms-grid-column-span: 4;
        grid-column: 1/5;
        padding: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__copyright {
        grid-column: 1/-1;
        text-align: center;
        border-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .footer__copyright {
        grid-column: 1/-1;
        -ms-grid-row: 7;
        grid-row: 7;
        text-align: center;
        border-top: 0;
        padding-top: 0;
    }
}

.footer__copyright p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--gray-2);
    max-width: 233px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__copyright p {
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .footer__copyright p {
        max-width: 100%;
    }
}

.footer__copyright p a {
    color: var(--white);
}

.footer__copyright p a:hover {
    color: var(--gray);
}

.footer__copyright-2 p {
    max-width: 235px;
}

@media only screen and (max-width: 767px) {
    .footer__copyright-2 p {
        max-width: 100%;
        padding-top: 50px;
        text-align: center;
    }
}

.footer__copyright-2 p a {
    color: var(--black-2);
}

.footer__copyright-2 p a:hover {
    color: var(--gray-2);
}

.footer__copyright-3 p {
    color: var(--white);
    max-width: 235px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__copyright-3 p {
        max-width: 100%;
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    .footer__copyright-3 p {
        max-width: 100%;
        text-align: center;
    }
}

.footer__copyright-3 p a {
    color: var(--white);
}

.footer__copyright-3 p a:hover {
    color: var(--gray-2);
}

.footer__copyright-8 {
    padding: 20px 100px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .footer__copyright-8 {
        padding: 20px 50px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .footer__copyright-8 {
        padding: 20px 30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer__copyright-8 {
        padding: 20px 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__copyright-8 {
        padding: 20px 15px;
    }
}

.footer__copyright-8 p {
    max-width: 235px;
    line-height: 1.4;
}

@media only screen and (max-width: 767px) {
    .footer__copyright-8 p {
        max-width: 100%;
        text-align: center;
    }
}

.footer__copyright-8 p a {
    color: var(--black-2);
}

.footer__copyright-8 p a:hover {
    color: var(--gray-2);
}

.footer__nav {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media only screen and (max-width: 767px) {
    .footer__nav {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.footer__nav-2 {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__nav-2 {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media only screen and (max-width: 767px) {
    .footer__nav-2 {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.footer__subscribe {
    -ms-grid-column-span: 4;
    grid-column: span 4;
    border-top: 1px solid var(--gray-6);
    padding: 35px 0;
    margin-right: -60px;
    padding-right: 30px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer__subscribe {
        -ms-grid-column: 1;
        -ms-grid-column-span: 6;
        grid-column: 1/7;
        -ms-grid-row: 2;
        grid-row: 2;
        padding: 0 40px 0 0;
        border-top: 0;
        margin-right: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__subscribe {
        -ms-grid-column-span: 6;
        grid-column: span 6;
        -ms-grid-row: 3;
        grid-row: 3;
        border-top: 0;
        padding: 0 20px 0 0;
        margin-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .footer__subscribe {
        margin-right: 0;
        padding-right: 0;
        border-top: 0;
    }
}

.footer__subscribe form {
    position: relative;
    max-width: 450px;
    width: 100%;
    margin-left: auto;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__subscribe form {
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .footer__subscribe form {
        max-width: 100%;
    }
}

.footer__subscribe input {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    color: var(--gray-2);
    background-color: var(--black-4);
    width: 100%;
    border: none;
    border-radius: 0;
    outline: none;
    padding: 21px 50px 21px 15px;
}

.footer__subscribe input::-webkit-input-placeholder {
    opacity: 1;
    color: var(--gray-2);
}

.footer__subscribe input::-moz-placeholder {
    opacity: 1;
    color: var(--gray-2);
}

.footer__subscribe input:-ms-input-placeholder {
    opacity: 1;
    color: var(--gray-2);
}

.footer__subscribe input::-ms-input-placeholder {
    opacity: 1;
    color: var(--gray-2);
}

.footer__subscribe input::placeholder {
    opacity: 1;
    color: var(--gray-2);
}

.footer__subscribe .subs-btn {
    position: absolute;
    right: 20px;
    top: 16px;
    background-color: transparent;
    border: none;
    color: var(--white);
}

.footer__subscribe-2 {
    position: relative;
    padding-left: 90px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__subscribe-2 {
        padding-left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .footer__subscribe-2 {
        padding-left: 0;
        margin-top: 50px;
    }
}

.footer__subscribe-2::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 120px;
    left: -20px;
    top: -15px;
    background-color: var(--white-2);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__subscribe-2::before {
        height: 100%;
        top: 0;
    }
}

.footer__subscribe-2 input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--black-2);
    font-weight: 300;
    font-size: 24px;
    line-height: 1.5;
    color: var(--black-2);
    padding: 20px 80px 20px 0;
    outline: none;
}

@media only screen and (max-width: 767px) {
    .footer__subscribe-2 input {
        font-size: 18px;
    }
}

.footer__subscribe-2 input::-webkit-input-placeholder {
    color: var(--black-2);
    opacity: 1;
}

.footer__subscribe-2 input::-moz-placeholder {
    color: var(--black-2);
    opacity: 1;
}

.footer__subscribe-2 input:-ms-input-placeholder {
    color: var(--black-2);
    opacity: 1;
}

.footer__subscribe-2 input::-ms-input-placeholder {
    color: var(--black-2);
    opacity: 1;
}

.footer__subscribe-2 input::placeholder {
    color: var(--black-2);
    opacity: 1;
}

.footer__subscribe-2 form {
    position: relative;
}

.footer__subscribe-2 .submit {
    position: absolute;
    right: 0;
    top: 10px;
    background: transparent;
    border: none;
}

@media only screen and (max-width: 767px) {
    .footer__subscribe-2 .submit {
        top: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .footer__subscribe-2 .submit img {
        width: 45px;
    }
}

footer #btn_wrapper, footer .btn_wrapper {
    margin: 0 auto;
}

.contact_title span {
    padding-left: 30px;
}

.footer_categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-11);
    padding-bottom: 58px;
    margin: 0 100px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .footer_categories {
        margin: 0 50px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .footer_categories {
        margin: 0 30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer_categories {
        margin: 0 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer_categories {
        margin: 0 15px;
    }
}

@media only screen and (max-width: 767px) {
    .footer_categories {
        margin: 0;
        padding-left: 15px;
        padding-right: 15px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.footer_categories::before {
    content: "";
    position: absolute;
    top: 12%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gray-11);
}

@media only screen and (max-width: 767px) {
    .footer_categories::before {
        top: 14%;
    }
}

.footer_categories h4 {
    font-size: 16px;
    color: var(--black-2);
    text-transform: capitalize;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .categories_item {
        width: 100%;
    }
}

.categories_item .cat_title {
    margin-bottom: 74px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .categories_item .cat_title {
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .categories_item .cat_title {
        margin-bottom: 50px;
        margin-top: 30px;
    }
}

.categories_item input {
    background-color: transparent;
    padding: 5px 80px 20px 0;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .categories_item input {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .categories_item input {
        padding: 15px 80px 15px 0;
    }
}

.categories_item .footer__subscribe-2 {
    padding-left: 0;
}

@media only screen and (max-width: 767px) {
    .categories_item .footer__subscribe-2 {
        margin-top: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .categories_item .footer__subscribe-2 input {
        width: inherit;
    }
}

.categories_item .footer__subscribe-2::before {
    display: none;
}

.cat_links li {
    padding-bottom: 12px;
}

.cat_links li a {
    display: inline-block;
    padding: 1px 0;
    font-size: 24px;
    line-height: 16px;
    color: var(--black-2);
    text-transform: uppercase;
}

.cat_links li a .menu-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    text-shadow: 0 16px 0 var(--black-3);
}

.cat_links li a .menu-text span {
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-style: normal;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: translateY(var(--m)) translateZ(0);
    transform: translateY(var(--m)) translateZ(0);
}

.cat_links li a .menu-text span:nth-child(1) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

.cat_links li a .menu-text span:nth-child(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.cat_links li a .menu-text span:nth-child(3) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.cat_links li a .menu-text span:nth-child(4) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.cat_links li a .menu-text span:nth-child(5) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.cat_links li a .menu-text span:nth-child(6) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.cat_links li a .menu-text span:nth-child(7) {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

.cat_links li a .menu-text span:nth-child(8) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.cat_links li a .menu-text span:nth-child(9) {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

.cat_links li a .menu-text span:nth-child(10) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.cat_links li a .menu-text span:nth-child(11) {
    -webkit-transition-delay: 0.55s;
    transition-delay: 0.55s;
}

.cat_links li a .menu-text span:nth-child(12) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.cat_links li a .menu-text span:nth-child(13) {
    -webkit-transition-delay: 0.65s;
    transition-delay: 0.65s;
}

.cat_links li a .menu-text span:nth-child(14) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.cat_links li a .menu-text span:nth-child(15) {
    -webkit-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.cat_links li a .menu-text span:nth-child(16) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

.cat_links li a .menu-text span:nth-child(17) {
    -webkit-transition-delay: 0.85s;
    transition-delay: 0.85s;
}

.cat_links li a .menu-text span:nth-child(18) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

.cat_links li a .menu-text span:nth-child(19) {
    -webkit-transition-delay: 0.95s;
    transition-delay: 0.95s;
}

.cat_links li a .menu-text span:nth-child(20) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.cat_links li a .menu-text span:nth-child(21) {
    -webkit-transition-delay: 1.05s;
    transition-delay: 1.05s;
}

.cat_links li a .menu-text span:nth-child(22) {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
}

.cat_links li a .menu-text span:nth-child(23) {
    -webkit-transition-delay: 1.15s;
    transition-delay: 1.15s;
}

.cat_links li a .menu-text span:nth-child(24) {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
}

.cat_links li a .menu-text span:nth-child(25) {
    -webkit-transition-delay: 1.25s;
    transition-delay: 1.25s;
}

.cat_links li a .menu-text span:nth-child(26) {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
}

.cat_links li a .menu-text span:nth-child(27) {
    -webkit-transition-delay: 1.35s;
    transition-delay: 1.35s;
}

.cat_links li a .menu-text span:nth-child(28) {
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
}

.cat_links li a .menu-text span:nth-child(29) {
    -webkit-transition-delay: 1.45s;
    transition-delay: 1.45s;
}

.cat_links li a .menu-text span:nth-child(30) {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
}

.cat_links li a .menu-text span:nth-child(31) {
    -webkit-transition-delay: 1.55s;
    transition-delay: 1.55s;
}

.cat_links li a .menu-text span:nth-child(32) {
    -webkit-transition-delay: 1.6s;
    transition-delay: 1.6s;
}

.cat_links li a .menu-text span:nth-child(33) {
    -webkit-transition-delay: 1.65s;
    transition-delay: 1.65s;
}

.cat_links li a .menu-text span:nth-child(34) {
    -webkit-transition-delay: 1.7s;
    transition-delay: 1.7s;
}

.cat_links li a .menu-text span:nth-child(35) {
    -webkit-transition-delay: 1.75s;
    transition-delay: 1.75s;
}

.cat_links li a .menu-text span:nth-child(36) {
    -webkit-transition-delay: 1.8s;
    transition-delay: 1.8s;
}

.cat_links li a .menu-text span:nth-child(37) {
    -webkit-transition-delay: 1.85s;
    transition-delay: 1.85s;
}

.cat_links li a .menu-text span:nth-child(38) {
    -webkit-transition-delay: 1.9s;
    transition-delay: 1.9s;
}

.cat_links li a .menu-text span:nth-child(39) {
    -webkit-transition-delay: 1.95s;
    transition-delay: 1.95s;
}

.cat_links li a .menu-text span:nth-child(40) {
    -webkit-transition-delay: 2s;
    transition-delay: 2s;
}

.cat_links li a .menu-text span:nth-child(41) {
    -webkit-transition-delay: 2.05s;
    transition-delay: 2.05s;
}

.cat_links li a .menu-text span:nth-child(42) {
    -webkit-transition-delay: 2.1s;
    transition-delay: 2.1s;
}

.cat_links li a .menu-text span:nth-child(43) {
    -webkit-transition-delay: 2.15s;
    transition-delay: 2.15s;
}

.cat_links li a .menu-text span:nth-child(44) {
    -webkit-transition-delay: 2.2s;
    transition-delay: 2.2s;
}

.cat_links li a .menu-text span:nth-child(45) {
    -webkit-transition-delay: 2.25s;
    transition-delay: 2.25s;
}

.cat_links li a .menu-text span:nth-child(46) {
    -webkit-transition-delay: 2.3s;
    transition-delay: 2.3s;
}

.cat_links li a .menu-text span:nth-child(47) {
    -webkit-transition-delay: 2.35s;
    transition-delay: 2.35s;
}

.cat_links li a .menu-text span:nth-child(48) {
    -webkit-transition-delay: 2.4s;
    transition-delay: 2.4s;
}

.cat_links li a .menu-text span:nth-child(49) {
    -webkit-transition-delay: 2.45s;
    transition-delay: 2.45s;
}

.cat_links li a:hover {
    --y: -4px;
}

.cat_links li a:hover span {
    --m: calc(16px * -1);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .cat_links li a {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .cat_links li a {
        font-size: 16px;
    }
}

.categories_item.l_item {
    -ms-flex-preferred-size: 36%;
    flex-basis: 36%;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .categories_item.l_item .cat_title {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    .categories_item.l_item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }

    .categories_item.l_item .cat_title {
        margin-top: 50px;
        margin-bottom: 0;
    }
}

@-webkit-keyframes wcLoading {
    0% {
        -webkit-transform: scaleY(0.1);
        transform: scaleY(0.1);
        background: var(--white);
    }

    50% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        background: var(--primary);
    }

    100% {
        -webkit-transform: scaleY(0.1);
        transform: scaleY(0.1);
        background: transparent;
    }
}

@keyframes wcLoading {
    0% {
        -webkit-transform: scaleY(0.1);
        transform: scaleY(0.1);
        background: var(--white);
    }

    50% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        background: var(--primary);
    }

    100% {
        -webkit-transform: scaleY(0.1);
        transform: scaleY(0.1);
        background: transparent;
    }
}

.preloader {
    width: 100%;
    height: 100vh;
    background-color: var(--black-2);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99999;
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.loading .bar {
    width: 6px;
    height: 60px;
    background: var(--white);
    display: inline-block;
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-animation: wcLoading 1.5s ease-in-out infinite;
    animation: wcLoading 1.5s ease-in-out infinite;
}

.loading .bar1 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.loading .bar2 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.loading .bar3 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.loading .bar4 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.loading .bar5 {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.loading .bar6 {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.loading .bar7 {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.loading .bar8 {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

:root {
    --white-6: #d7d7d7;
    --white-7: #B7B7C5;
    --black-14: #323438;
    --black-15: #2C2C2C;
    --lime: #745EFF;
    --lime-2: #5547F5;
    --gray-16: #6B6B6B;
    --gray-17: #F7F7FC;
    --gray-18: #999999;
    --gray-20: #D7D7D7;
    --gray-21: #F2F2F8;
    --gray-22: #FCFCFE;
    --gray-23: #ECECF3;
    --gray-24: #ECECF4;
}

main {
    overflow: hidden;
}

.line_4 {
    position: relative;
}

.line-col-4 div {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--white-2);
}

.line-col-4 div:nth-child(2) {
    left: 33.33%;
}

.line-col-4 div:nth-child(3) {
    left: 66.66%;
}

.line-col-4 div:nth-child(4) {
    left: 100%;
}

.portfolio6__line .line-col-4 div {
    height: 1000px;
    top: unset;
    bottom: 0;
}

.btn-started {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    padding: 17px 36px 16px;
    color: var(--white);
    border-radius: 5px;
    background: var(--lime);
    display: inline-block;
}

.btn-started i {
    padding-left: 10px;
}

.btn-started:hover {
    color: var(--white);
    background-color: #FF977B;
}

.btn-view {
    font-weight: 500;
    line-height: 1.3;
    color: var(--black-2);
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.btn-view i {
    padding-left: 10px;
}

.btn-view::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--black-2);
    content: "";
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.btn-view:hover::after {
    left: 0;
    width: 1%;
}

.btn-view:hover {
    color: var(--lime-2);
}

.btn-extra {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.3;
    padding: 9px 14px 11px;
    border-radius: 5px;
    background-color: var(--black-2);
    border: 1px solid var(--black-2);
}

.btn-extra:hover {
    color: var(--black);
    background-color: transparent;
}

.title-wrapper-6 p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--black-3);
}

@media only screen and (max-width: 767px) {
    .title-wrapper-6 p {
        font-size: 16px;
    }
}

.sec-subtile-6 {
    font-size: 16px;
    color: var(--black-2);
    line-height: 1.3;
    padding: 2px 14px 3px;
    font-weight: 400;
    border-radius: 16px;
    border: 1px solid var(--gray-16);
    display: inline-block;
    margin-bottom: 17px;
}

@media only screen and (max-width: 767px) {
    .sec-subtile-6 {
        margin-bottom: 10px;
    }
}

.sec-title-6 {
    font-size: 50px;
    color: var(--black-2);
    font-weight: 500;
    line-height: 1.13;
    padding-bottom: 15px;
}

@media only screen and (max-width: 767px) {
    .sec-title-6 {
        font-size: 30px;
        padding-bottom: 10px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .sec-title-6 {
        font-size: 30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .sec-title-6 {
        font-size: 36px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .sec-title-6 {
        font-size: 45px;
    }
}

.hero__area-6 {
    position: relative;
}

.hero__area-6 .shape-4 {
    position: absolute;
    bottom: -60px;
    left: 180px;
    z-index: 0;
}

@media only screen and (max-width: 767px) {
    .hero__area-6 .shape-4 {
        max-width: 260px;
        left: 0;
    }
}

.hero__title-6 {
    font-size: 100px;
    line-height: 1;
    font-weight: 600;
    color: var(--black-2);
    padding-bottom: 24px;
}

@media only screen and (max-width: 767px) {
    .hero__title-6 {
        font-size: 40px;
        padding-bottom: 15px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__title-6 {
        font-size: 45px;
        padding-bottom: 15px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__title-6 {
        font-size: 60px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__title-6 {
        font-size: 80px;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .hero__title-6 {
        font-size: 80px;
    }
}

.hero__arrow-icon {
    position: absolute;
    right: 0;
}

@media only screen and (max-width: 767px) {
    .hero__arrow-icon {
        top: 83%;
        right: 10%;
        -webkit-transform: rotate(62deg);
        transform: rotate(62deg);
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__arrow-icon {
        right: -15%;
    }
}

.hero__content-6 {
    padding-top: 260px;
    position: relative;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__content-6 {
        padding-top: 210px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__content-6 {
        padding-top: 130px;
    }
}

.hero__content-6 p {
    font-size: 20px;
    padding-bottom: 48px;
    line-height: 1.5;
    font-weight: 400;
}

@media only screen and (max-width: 767px) {
    .hero__content-6 p {
        font-size: 16px;
        padding-bottom: 40px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__content-6 p br {
        display: none;
    }
}

.hero__right-6 {
    padding-top: 130px;
}

@media only screen and (max-width: 767px) {
    .hero__right-6 {
        padding-top: 40px;
    }
}

.hero__right-6 img {
    margin-left: 3px;
    max-width: inherit;
}

@media (max-width: 1365px) {
    .hero__right-6 img {
        max-width: 100%;
    }
}

.hero__shape {
    position: absolute;
    top: 22%;
    left: 0;
}

@media only screen and (max-width: 767px) {
    .hero__shape {
        display: none;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__shape {
        top: 13%;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__shape {
        top: 9%;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .hero__shape {
        top: 10%;
    }
}

.hero__shape-2 {
    position: absolute;
    right: 7%;
    bottom: 30%;
}

@media only screen and (max-width: 767px) {
    .hero__shape-2 {
        display: none;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__shape-2 {
        bottom: 0;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__shape-2 {
        bottom: -8%;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__shape-2 {
        right: 3%;
        bottom: 7%;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .hero__shape-2 {
        bottom: -7%;
        right: 7%;
    }
}

.hero__shape-3 {
    position: absolute;
    left: 4%;
    bottom: 7%;
}

@media only screen and (max-width: 767px) {
    .hero__shape-3 {
        display: none;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__shape-3 {
        left: 7%;
        bottom: -20%;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__shape-3 {
        bottom: -13%;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .hero__shape-3 {
        left: 7%;
        bottom: 7%;
    }
}

.workflow__area-4 {
    overflow: hidden;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .workflow__area-4 .pb-1230 {
        padding-bottom: 60px;
    }
}

.workflow__item-4 {
    padding-top: 64px;
}

@media only screen and (max-width: 767px) {
    .workflow__item-4 {
        padding-top: 60px;
    }
}

.workflow__item-4 img {
    padding-bottom: 30px;
}

.workflow__item-4 p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--black-3);
    padding: 0px 55px;
}

@media only screen and (max-width: 767px) {
    .workflow__item-4 p {
        padding: 0px;
        font-size: 16px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .workflow__item-4 p {
        padding: 0px;
        font-size: 16px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .workflow__item-4 p {
        padding: 0px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .workflow__item-4 p {
        padding: 0px;
    }
}

.workflow__title-4 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--black);
    padding-bottom: 19px;
}

@media only screen and (max-width: 767px) {
    .workflow__title-4 {
        font-size: 20px;
        padding-bottom: 15px;
    }
}

.feature__area-6 {
    overflow: hidden;
    background-color: var(--gray-17);
}

.feature__content img {
    margin-top: -90px;
}

@media only screen and (max-width: 767px) {
    .feature__content img {
        margin-top: 0;
        width: 100%;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .feature__content img {
        width: 100%;
    }
}

.feature__content-right {
    background-color: #1E2024;
    padding: 143px 60px 0px 110px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .feature__content-right {
        padding: 20px;
        margin-top: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .feature__content-right {
        padding: 80px 20px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .feature__content-right {
        padding: 100px 20px 0px 25px;
    }
}

.feature__content-right p {
    font-size: 18px;
    color: var(--gray-18);
    line-height: 1.5;
    padding-bottom: 25px;
    padding-right: 242px;
}

@media only screen and (max-width: 767px) {
    .feature__content-right p {
        padding-right: 0;
        padding-bottom: 15px;
        font-size: 16px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .feature__content-right p {
        padding-right: 0;
        padding-bottom: 15px;
        font-size: 16px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .feature__content-right p {
        padding-right: 140px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .feature__content-right p {
        padding-right: 145px;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .feature__content-right p {
        padding-right: 225px;
    }
}

.feature__content-right p span {
    color: var(--white);
}

.feature__content-left {
    padding-top: 143px;
}

@media only screen and (max-width: 767px) {
    .feature__content-left {
        padding-top: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .feature__content-left {
        padding-top: 80px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .feature__content-left {
        padding-top: 100px;
    }
}

.feature__title-6 {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.3;
    color: var(--white);
    padding-bottom: 22px;
    padding-left: 60px;
}

.feature__title-6::before {
    position: absolute;
    top: 13px;
    left: 0;
    width: 50px;
    height: 1px;
    content: "";
    background: var(--white);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .feature__content img {
        width: 100%;
        margin-top: 0;
    }
}

.feature__content-btm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 114px;
    height: 100%;
    margin-left: 110px;
}

@media only screen and (max-width: 767px) {
    .feature__content-btm {
        gap: 20px;
        margin-left: 0;
        padding: 30px 0px 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .feature__content-btm {
        gap: 20px;
        margin-left: 0;
        padding: 30px 0px 60px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .feature__content-btm {
        gap: 20px;
        margin-left: 40px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .feature__content-btm {
        gap: 20px;
    }
}

.feature__content-item img {
    padding-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .feature__content-item img {
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .feature__content-item img {
        max-width: 100%;
    }
}

.feature__content-item h5 {
    font-size: 18px;
    color: var(--black-2);
    font-weight: 500;
    line-height: 1.4;
    padding-bottom: 15px;
}

.feature__content-item p {
    font-weight: 300;
    color: var(--black-3);
}

.feature__img-1 {
    position: absolute;
    top: 22%;
    right: 10%;
}

@media only screen and (max-width: 767px) {
    .feature__img-1 {
        display: none;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .feature__img-1 {
        display: none;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .feature__img-1 {
        top: 9%;
        right: 4%;
    }
}

.feature__img-2 {
    margin-left: 100px;
}

@media only screen and (max-width: 767px) {
    .feature__img-2 {
        display: none;
    }
}

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

.feature__img-3 {
    position: absolute;
    right: 6%;
    bottom: 5%;
}

@media only screen and (max-width: 767px) {
    .feature__img-3 {
        display: none;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .feature__img-3 {
        display: none;
    }
}

.service__title-wrapper-4 {
    width: 75%;
}

.service__right-4 p {
    font-size: 18px;
    color: var(--black-3);
    padding-bottom: 30px;
    padding-right: 195px;
}

@media only screen and (max-width: 767px) {
    .service__right-4 p {
        font-size: 16px;
        padding-right: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__right-4 p {
        padding-right: 0;
        padding-bottom: 15px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__right-4 p {
        padding-right: 30px;
    }
}

.service__right-4 p span {
    color: var(--black-2);
}

.service__img-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .service__img-left img {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__img-left img {
        width: 100%;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__img-left img {
        width: 100%;
    }
}

.service__inner-4 {
    margin-top: -20px;
}

@media only screen and (max-width: 767px) {
    .service__inner-4 {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__inner-4 {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__inner-4 {
        margin-top: 40px;
    }
}

.service__item-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 62px;
    padding: 12px 0px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-bottom: 1px solid var(--gray-20);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__item-4 {
        gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .service__item-4 {
        gap: 20px;
    }
}

.service__item-4:first-child {
    border-top: 1px solid var(--gray-20);
}

.service__item-4:hover .service__item-icon {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 1;
    visibility: visible;
}

.service__item-4:hover .service__item-title {
    color: var(--lime);
}

.service__item-number {
    font-size: 18px;
    font-weight: 300;
    color: var(--lime-2);
}

.service__item-title {
    font-size: 60px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--black-2);
}

@media only screen and (max-width: 767px) {
    .service__item-title {
        font-size: 24px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__item-title {
        font-size: 24px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__item-title {
        font-size: 36px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .service__item-title {
        font-size: 40px;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .service__item-title {
        font-size: 50px;
    }
}

.service__item-icon {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media only screen and (max-width: 767px) {
    .service__item-icon {
        opacity: 1;
    }
}

.service__item-icon i {
    font-size: 23px;
    color: var(--black-2);
}

.faq__area-4 {
    background-image: url("/assets/imgs/bg/4/s1.png");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    overflow: hidden;
    background-color: #1E2024;
}

.faq__area-4 .sec-title-6 {
    color: var(--white);
    max-width: 630px;
    line-height: 1.15;
}

.faq__area-4 .sec-subtile-6 {
    color: var(--white);
}

.faq__list-4 {
    padding-top: 30px;
}

.faq__list-4 .accordion-body {
    padding-left: 0;
    min-height: 100px;
}

.faq__list-4 .accordion-body p {
    color: var(--gray-2);
    font-size: 18px;
}

@media (max-width: 1023px) {
    .faq__list-4 .accordion-body p {
        font-size: 16px;
    }
}

.faq__list-4 .accordion-body p span {
    color: var(--white);
}

.faq__list-4 .accordion-item {
    border: none;
    border-radius: 0;
    background-color: transparent;
}

.faq__list-4 .accordion-button {
    background-color: transparent;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: var(--white);
    border-radius: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.faq__list-4 .accordion-button.collapsed::after {
    background-image: none;
    content: "+";
    font-weight: 300;
    font-size: 30px;
    top: 1px;
    position: absolute;
    left: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.faq__list-4 .accordion-button:not(.collapsed) {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
}

.faq__list-4 .accordion-button:not(.collapsed)::after {
    background-image: none;
    content: "-";
    font-weight: 300;
    font-size: 30px;
    top: 1px;
    position: absolute;
    left: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.faq__list-4 .accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.faq__sec-title p {
    font-size: 18px;
    color: var(--gray-2);
    padding-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .faq__sec-title p {
        font-size: 16px;
    }
}

.faq__sec-title .btn-view {
    color: var(--white);
}

.faq__sec-title .btn-view::after {
    background-color: var(--white);
}

.faq__sec-title-title-4 {
    padding-right: 105px;
}

.faq__img6-1 {
    position: absolute;
    bottom: 0;
    left: 35%;
    z-index: 0;
}

.faq__img6-2 {
    position: absolute;
    top: 0;
    left: 51px;
    z-index: 0;
}

@media only screen and (max-width: 767px) {
    .faq__img6-2 {
        display: none;
    }
}

.solution__area-4 {
    overflow: hidden;
    background-color: #1E2024;
    background-image: url("/assets/imgs/bg/4/solution-bg.png");
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 179px 0px 170px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .solution__area-4 {
        padding: 60px 0px;
    }

    .solution__area-4::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--black-2);
        opacity: 0.6;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .solution__area-4 {
        padding: 80px 0px;
        background-size: 380px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .solution__area-4 {
        padding: 120px 0px;
        background-size: 500px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .solution__area-4 {
        padding: 90px 0px;
        background-size: 52%;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .solution__area-4 {
        padding: 150px 0px 110px;
        background-size: 55%;
    }
}

.solution__content .sec-title-6 {
    color: var(--white);
}

.solution__content .sec-subtile-6 {
    color: var(--white);
}

.solution__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 270px auto;
    grid-template-columns: 270px auto;
    border-top: 1px solid var(--black-14);
    margin-top: 16px;
    padding-top: 24px;
}

@media only screen and (max-width: 767px) {
    .solution__list {
        -ms-grid-columns: 180px auto;
        grid-template-columns: 180px auto;
        border-top: 1px solid var(--white-6);
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .solution__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        border-top: 1px solid var(--white-6);
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .solution__list {
        -ms-grid-columns: 250px 300px;
        grid-template-columns: 250px 300px;
        border-top: 1px solid var(--white-6);
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .solution__list {
        -ms-grid-columns: 250px 300px;
        grid-template-columns: 250px 300px;
        border-top: 1px solid var(--white-6);
    }
}

.solution__list li {
    font-size: 18px;
    color: var(--white);
    font-weight: 400;
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
    .solution__list li {
        font-size: 14px;
    }
}

.solution__list li::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    content: "+";
}

.blog__area-4 {
    overflow: hidden;
}

.blog__area-4 .sec-title-wrapper p {
    font-size: 18px;
    color: var(--black-13);
    padding-right: 80px;
    display: inline-block;
    margin-bottom: 55px;
}

@media only screen and (max-width: 767px) {
    .blog__area-4 .sec-title-wrapper p {
        font-size: 16px;
        margin-bottom: 20px;
        padding-right: 0px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog__area-4 .sec-title-wrapper p {
        font-size: 16px;
        margin-bottom: 20px;
        padding-right: 0px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .blog__area-4 .sec-title-wrapper p {
        padding-right: 30px;
    }
}

.blog__img-4 img {
    width: 100%;
}

.blog__meta-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    padding-top: 35px;
}

.blog__meta-4 a {
    font-size: 14px;
    color: var(--black-2);
    line-height: 1.3;
    padding: 3px 8px;
    background-color: var(--gray-21);
    font-weight: 400;
}

.blog__meta-4 a:hover {
    color: var(--lime);
}

.blog__meta-4 span {
    font-size: 14px;
    color: var(--black-2);
    line-height: 1.3;
    padding: 3px 8px;
    background-color: var(--gray-21);
    font-weight: 400;
}

@media only screen and (max-width: 767px) {
    .blog__item-4 {
        margin-top: 50px;
    }
}

.blog__btn-4 {
    font-weight: 500;
    line-height: 1.3;
    color: var(--black-2);
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.blog__btn-4 i {
    padding-left: 10px;
}

.blog__btn-4::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--black-2);
    content: "";
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.blog__btn-4:hover::after {
    left: 0;
    width: 1%;
}

.blog__btn-4:hover {
    color: var(--lime-2);
}

.blog__title-4 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--black-2);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    padding: 10px 0px 20px;
    display: inline-block;
}

@media only screen and (max-width: 767px) {
    .blog__title-4 {
        font-size: 23px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .blog__title-4 {
        font-size: 16px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .blog__title-4 {
        font-size: 20px;
    }
}

.blog__title-4:hover {
    color: var(--lime-2);
}

.cta__area-4 {
    overflow: hidden;
}

.cta__area-4 .btn-started {
    padding: 16px 28px;
}

.cta__inner-4 {
    background-color: #F1E9E3;
    padding: 66px 60px 0px 60px;
    position: relative;
    border-radius: 10px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .cta__inner-4 {
        padding: 60px 30px 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .cta__inner-4 {
        padding: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .cta__inner-4 {
        padding: 40px 20px;
    }
}

.cta__inner-4 img {
    max-width: 100%;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .cta__inner-4 img {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .cta__inner-4 img {
        max-width: 80%;
    }
}

.cta__inner-4 .cta-shape {
    position: absolute;
    bottom: 0;
    right: 460px;
    z-index: 0;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .cta__inner-4 .cta-shape {
        bottom: 30px;
        right: 250px;
        max-width: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .cta__inner-4 .cta-shape {
        bottom: 30px;
        right: 20px;
        max-width: 100px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .cta__inner-4 .cta-shape {
        max-width: 120px;
        right: 360px;
    }
}

.cta__inner-4 .cta-shape-2 {
    position: absolute;
    bottom: 60px;
    right: 110px;
    z-index: 0;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .cta__inner-4 .cta-shape-2 {
        right: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .cta__inner-4 .cta-shape-2 {
        right: 10px;
        bottom: 120px;
    }
}

.cta__content-4 {
    height: 100%;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .cta__content-4 img {
        width: 100%;
    }
}

.cta__content-4 p {
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 34px;
    margin-top: 15px;
    color: var(--black-2);
}

@media only screen and (max-width: 767px) {
    .cta__content-4 p {
        font-size: 16px;
        padding-bottom: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .cta__content-4 p {
        font-size: 16px;
        padding-bottom: 20px;
    }
}

.cta__title-4 {
    font-size: 50px;
    font-weight: 500;
    color: var(--black-2);
    line-height: 1.2;
    padding-top: 10px;
}

@media only screen and (max-width: 767px) {
    .cta__title-4 {
        font-size: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .cta__title-4 {
        padding-top: 30px;
        font-size: 28px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .cta__title-4 {
        font-size: 36px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .cta__title-4 {
        font-size: 40px;
    }
}

.portfolio__area-4 {
    padding: 0px 45px;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .portfolio__area-4 {
        padding: 0px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__area-4 {
        padding: 0px 15px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__area-4 {
        padding: 0px 31px;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .portfolio__area-4 {
        padding: 0px 60px;
    }
}

.portfolio__area-4 .cursor {
    position: absolute;
}

.portfolio__area-4 .cursor.large {
    width: 120px;
    height: 120px;
    font-size: 14px;
}

.portfolio__wrapper-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
}

@media only screen and (max-width: 767px) {
    .portfolio__wrapper-4 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__wrapper-4 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.portfolio__item-4 img {
    width: 100%;
}

.portfolio__item-4:hover .portfolio__icon-link {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.portfolio__icon-link {
    font-size: 23px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.portfolio__item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 20px;
}

.portfolio__title-4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--black-2);
    padding-bottom: 5px;
}

.portfolio__subtitle-4 {
    font-size: 14px;
    color: var(--black-3);
    font-weight: 400;
}

.portfolio__icon-4 {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 23px;
    color: var(--black-2);
}

.portfolio__sec-title {
    position: absolute;
    bottom: 140px;
}

@media only screen and (max-width: 767px) {
    .portfolio__sec-title {
        position: unset;
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__sec-title {
        position: unset;
    }
}

.portfolio__sec-title p {
    font-size: 18px;
    color: var(--black-3);
    max-width: 300px;
}

.testimonial__area-4 {
    overflow: hidden;
    text-align: center;
}

.testimonial__sec-title {
    padding-bottom: 60px;
}

.testimonial__sec-title p {
    font-size: 18px;
    color: var(--black-3);
    max-width: 500px;
    margin: 0 auto;
}

@media only screen and (max-width: 767px) {
    .testimonial__sec-title p {
        width: 100%;
        font-size: 16px;
    }
}

.testimonial__slide-4 {
    background-color: var(--gray-22);
    padding: 50px 50px 44px 50px;
    text-align: left;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .testimonial__slide-4 {
        padding: 35px 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .testimonial__slide-4 {
        padding: 35px 30px 30px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial__slide-4 {
        padding: 35px 30px;
    }
}

.testimonial__slider-4 {
    padding-bottom: 150px;
    height: 100%;
    width: 98%;
    margin-left: 11px;
}

.testimonial__slider-4 .prev-button:hover, .testimonial__slider-4 .next-button:hover {
    color: var(--lime);
}

@media only screen and (max-width: 767px) {
    .testimonial__slider-4 {
        width: 93%;
        padding-bottom: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .testimonial__slider-4 {
        width: 97%;
        padding-bottom: 80px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .testimonial__slider-4 {
        padding-bottom: 100px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .testimonial__slider-4 {
        padding-bottom: 110px;
    }
}

.testimonial__img-4 {
    margin-bottom: 42px;
    border-radius: 100px;
    width: 85px;
    height: auto;
}

.testimonial__feedback-4 {
    font-size: 14px;
    font-weight: 400;
    color: var(--black-2);
    border-radius: 5px;
    padding: 3px 10px;
    margin-bottom: 18px;
    display: inline-block;
    line-height: 1.3;
    background-color: var(--gray-23);
}

.testimonial__info-4 p {
    color: var(--black-3);
    font-weight: 400;
    line-height: 1.5;
    padding-bottom: 19px;
    text-align: left;
}

.testimonial__name-4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.3;
}

.testimonial__role-4 {
    font-size: 14px;
    color: var(--black-3);
    font-weight: 400;
}

.testimonial__btn-4 {
    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;
    gap: 160px;
    padding-top: 68px;
    position: relative;
    z-index: 999;
}

@media only screen and (max-width: 767px) {
    .testimonial__btn-4 {
        padding-top: 35px;
    }
}

.testimonial__btn-4 i {
    font-size: 18px;
}

.testimonial__pagination-4 {
    position: absolute;
    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;
    gap: 30px;
    bottom: 1px;
    z-index: -1;
}

.footer__area-6 {
    overflow: hidden;
    background-color: var(--gray-17);
}

.footer__top-6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .footer__top-6 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 25px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__top-6 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 5px;
    }
}

.footer__social-6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}

.footer__social-6 li a {
    color: var(--gray-2);
    font-size: 18px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.footer__social-6 li a:hover {
    color: var(--black-2);
}

.footer__info-6 li {
    color: var(--black-13);
    font-size: 16px;
    margin-bottom: 15px;
}

.footer__info-6 li a {
    color: var(--black-13);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.footer__info-6 li a:hover {
    color: var(--black-2);
}

.footer__info-6 li a.phone {
    color: var(--black-2);
    position: relative;
}

.footer__info-6 li a.phone::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0px;
    background-color: var(--white);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.footer__info-6 li a.phone:hover::after {
    width: 0%;
}

.footer__info-6 li a.phone::after {
    background-color: var(--black-2);
}

.footer__link-6 li {
    margin-bottom: 8px;
}

.footer__link-6 li a {
    color: var(--black-13);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.footer__link-6 li a:hover {
    color: var(--black-2);
}

.footer__item-title {
    font-size: 20px;
    color: var(--black-2);
    font-weight: 600;
    line-height: 1.3;
    padding-bottom: 20px;
    text-transform: capitalize;
}

@media only screen and (max-width: 767px) {
    .footer__item-6 {
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__item-6 {
        margin-bottom: 50px;
    }
}

.footer__item-6:nth-child(1) {
    width: 25%;
}

@media only screen and (max-width: 767px) {
    .footer__item-6:nth-child(1) {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__item-6:nth-child(1) {
        width: 50%;
        padding-right: 30px;
    }
}

.footer__item-6:nth-child(2) {
    width: 14%;
}

@media only screen and (max-width: 767px) {
    .footer__item-6:nth-child(2) {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__item-6:nth-child(2) {
        width: 50%;
    }
}

.footer__item-6:nth-child(3) {
    width: 20%;
}

@media only screen and (max-width: 767px) {
    .footer__item-6:nth-child(3) {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__item-6:nth-child(3) {
        width: 50%;
        padding-right: 30px;
    }
}

.footer__item-6:nth-child(4) {
    width: 28%;
}

@media only screen and (max-width: 767px) {
    .footer__item-6:nth-child(4) {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .footer__item-6:nth-child(4) {
        width: 50%;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer__item-6:nth-child(4) {
        width: 33%;
    }
}

.footer__item-6 p {
    padding-bottom: 20px;
    color: var(--gray-2);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .footer__item-6 p br {
        display: none;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .footer__item-6 p br {
        display: none;
    }
}

.footer__item-6-social a:hover {
    color: var(--black-2);
}

.footer__btm-6 {
    border-top: 1px solid var(--gray-24);
    padding-top: 40px;
    padding-bottom: 43px;
}

.footer__newsletter-6 {
    background-color: var(--gray-24);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 5px;
    position: relative;
}

.footer__newsletter-6 input {
    width: 100%;
    background-color: transparent;
    border: 0;
    outline: 0;
    padding: 16px 50px 16px 20px;
}

.footer__newsletter-6 input::-webkit-input-placeholder {
    font-size: 14px;
    color: var(--white-7);
    font-weight: 400;
}

.footer__newsletter-6 input::-moz-placeholder {
    font-size: 14px;
    color: var(--white-7);
    font-weight: 400;
}

.footer__newsletter-6 input:-ms-input-placeholder {
    font-size: 14px;
    color: var(--white-7);
    font-weight: 400;
}

.footer__newsletter-6 input::-ms-input-placeholder {
    font-size: 14px;
    color: var(--white-7);
    font-weight: 400;
}

.footer__newsletter-6 input::placeholder {
    font-size: 14px;
    color: var(--white-7);
    font-weight: 400;
}

.footer__newsletter-6 button {
    position: absolute;
    right: 20px;
    top: 15px;
}

.footer__copyright-6 {
    color: var(--black-13);
}

.footer__copyright-6 p a {
    color: var(--black-2);
}

.footer__copyright-6 p a:hover {
    color: var(--lime);
}

.footer__chekbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    margin-top: 18px;
}

.footer__chekbox input {
    width: 30px;
    height: 30px;
}

.footer__chekbox label {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--black-3);
}

@-webkit-keyframes leftmove {
    0% {
        margin-left: 0;
    }

    50% {
        margin-left: -20px;
    }

    100% {
        margin-left: 0;
    }
}

@keyframes leftmove {
    0% {
        margin-left: 0;
    }

    50% {
        margin-left: -20px;
    }

    100% {
        margin-left: 0;
    }
}

@-webkit-keyframes rightmove {
    0% {
        margin-right: 0;
    }

    50% {
        margin-right: 30px;
    }

    100% {
        margin-right: 0;
    }
}

@keyframes rightmove {
    0% {
        margin-right: 0;
    }

    50% {
        margin-right: 30px;
    }

    100% {
        margin-right: 0;
    }
}

@-webkit-keyframes move {
    0% {
        margin-bottom: 0;
    }

    50% {
        margin-bottom: -20px;
    }

    100% {
        margin-bottom: 0;
    }
}

@keyframes move {
    0% {
        margin-bottom: 0;
    }

    50% {
        margin-bottom: -20px;
    }

    100% {
        margin-bottom: 0;
    }
}

@keyframes move {
    0% {
        margin-top: 0;
    }

    50% {
        margin-top: -20px;
    }

    100% {
        margin-top: 0;
    }
}

@-webkit-keyframes rotate-icon {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate-icon {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.hero__shape {
    -webkit-animation-name: leftmove;
    animation-name: leftmove;
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
    -webkit-animation: leftmove infinite 4s;
    animation: leftmove infinite 4s;
}

.hero__arrow-icon {
    -webkit-animation-name: rightmove;
    animation-name: rightmove;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation: rightmove infinite 3s;
    animation: rightmove infinite 3s;
}

.hero__shape-2 {
    -webkit-animation-name: move;
    animation-name: move;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation: move infinite 4s;
    animation: move infinite 4s;
}

.hero__shape-3 {
    -webkit-animation: rotate-icon 5s linear 0s infinite normal;
    animation: rotate-icon 5s linear 0s infinite normal;
}

.faq__img6-1 {
    -webkit-animation-name: move;
    animation-name: move;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation: move infinite 4s;
    animation: move infinite 4s;
}

.faq__img6-2 {
    -webkit-animation-name: move;
    animation-name: move;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation: move infinite 4s;
    animation: move infinite 4s;
}

.dark .line-col-4 div {
    background: var(--bg-line);
}

.dark .btn-view {
    color: var(--white);
}

.dark .btn-view::after {
    background-color: var(--white);
}

.dark .sec-subtile-6, .dark .sec-title-6, .dark .workflow__title-4, .dark .feature__content-item h5, .dark .service__item-title, .dark .service__right-4 p span, .dark .portfolio__title-4, .dark .portfolio__icon-4, .dark .testimonial__name-4, .dark .footer__item-title, .dark .footer__newsletter-6 button {
    color: var(--white);
}

.dark .title-wrapper-6 p, .dark .workflow__item-4 p, .dark .feature__content-item p, .dark .service__right-4 p, .dark .portfolio__subtitle-4, .dark .portfolio__sec-title p, .dark .testimonial__sec-title p, .dark .blog__area-4 .sec-title-wrapper p, .dark .testimonial__info-4 p, .dark .testimonial__role-4, .dark .footer__info-6 li, .dark .footer__chekbox label {
    color: var(--gray-2);
}

.dark .hero__area-6 .shape-4 {
    -webkit-filter: invert(0.93);
    filter: invert(0.93);
}

.dark .hero__title-6 {
    color: var(--white);
}

.dark .feature__area-6 {
    background-color: var(--d-black-2);
}

.dark .testimonial__slider-4 {
    color: var(--white);
}

.dark .solution__area-4 {
    overflow: hidden;
    background-color: var(--d-black-2);
}

.dark .blog__title-4 {
    color: var(--white);
}

.dark .blog__title-4:hover {
    color: var(--lime);
}

.dark .blog__btn-4 {
    color: var(--white);
}

.dark .blog__btn-4:hover {
    color: var(--lime);
}

.dark .blog__btn-4::after {
    background-color: var(--white);
}

.dark .testimonial__slide-4 {
    background: var(--d-black-2);
}

.dark .testimonial__feedback-4 {
    color: var(--gray-2);
    background-color: var(--black-2);
}

.dark .blog__meta-4 span {
    color: var(--white-6);
    background-color: var(--bg-line);
}

.dark .blog__meta-4 a {
    color: var(--white-6);
    background-color: var(--bg-line);
}

.dark .blog__meta-4 a:hover {
    color: var(--lime);
}

.dark .footer__area-6 {
    background-color: var(--d-black-2);
}

.dark .footer__link-6 li a {
    color: var(--gray-2);
}

.dark .footer__link-6 li a:hover {
    color: var(--white);
}

.dark .footer__info-6 li a {
    color: var(--gray-2);
}

.dark .footer__info-6 li a:hover {
    color: var(--white);
}

.dark .footer__info-6 li a.phone {
    color: var(--white);
}

.dark .footer__info-6 li a.phone::after {
    background-color: var(--white);
}

.dark .footer__newsletter-6 input {
    color: var(--white-2);
    background-color: var(--black-2);
}

.dark .footer__btm-6 {
    border-color: var(--bg-line);
}

.dark .footer__copyright-6 p a {
    color: var(--white);
}

.dark .footer__copyright-6 p a:hover {
    color: var(--lime);
}

.dark .service__item-4 {
    border-color: var(--bg-line);
}

.dark .service__item-4:first-child {
    border-color: var(--bg-line);
}

.dark .service__item-icon i {
    color: var(--white);
}

.header__area-7.sticky-7 {
    background: var(--white);
    border-bottom: 1px solid var(--white-2);
}

.hero__area-7 {
    padding-top: 180px;
    padding-bottom: 140px;
    background-image: url("/assets/imgs/home-7/hero-bg.png");
    background-repeat: repeat;
    position: relative;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__area-7 {
        padding-top: 140px;
        padding-bottom: 100px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__area-7 {
        padding-top: 140px;
        padding-bottom: 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__area-7 {
        padding-top: 160px;
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__area-7 {
        padding-top: 160px;
        padding-bottom: 60px;
    }
}

.hero__area-7 .shape-1 {
    position: absolute;
    right: 100px;
    bottom: 200px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__area-7 .shape-1 {
        right: 60px;
        max-width: 260px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__area-7 .shape-1 {
        max-width: 240px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__area-7 .shape-1 {
        max-width: 200px;
        right: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__area-7 .shape-1 {
        max-width: 120px;
        bottom: unset;
        top: 330px;
        right: 0;
    }
}

.hero__title-7 {
    font-weight: 500;
    font-size: 130px;
    line-height: 1;
    color: var(--black-2);
    max-width: 1060px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .hero__title-7 {
        font-size: 110px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .hero__title-7 {
        font-size: 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__title-7 {
        font-size: 70px;
    }

    .hero__title-7 img {
        max-width: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__title-7 {
        font-size: 48px;
    }

    .hero__title-7 img {
        max-width: 60px;
    }
}

.hero__text-7 {
    margin-left: 210px;
    margin-top: 60px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 200px 20px auto;
    grid-template-columns: 200px auto;
    grid-gap: 20px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .hero__text-7 {
        margin-left: 60px;
        -ms-grid-columns: 160px 20px auto;
        grid-template-columns: 160px auto;
    }
}

@media only screen and (max-width: 767px) {
    .hero__text-7 {
        margin-left: 0;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.hero__text-7 .about {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--black-2);
    position: relative;
    text-transform: capitalize;
}

.hero__text-7 .about::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 1px;
    top: 14px;
    left: 60px;
    background-color: var(--black-2);
    padding-left: 9px;
}

.hero__text-7 p {
    max-width: 350px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--black-3);
}

.video__area img {
    width: 100%;
    height: auto;
}

@media only screen and (min-width: 1920px) {
    .video__area img {
        height: 800px;
    }
}

.video__area.about__img-2 {
    margin-bottom: 0;
    max-width: 100%;
    width: 100%;
}

.about__area-7 {
    position: relative;
}

.about__area-7 .sec-title-wrapper {
    text-align: center;
    padding-bottom: 70px;
}

.about__area-7 .shape-1 {
    position: absolute;
    left: 100px;
    top: 280px;
}

.about__left-7 {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 520px;
}

.about__left-7 img {
    position: absolute;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 120%;
    margin-left: auto;
    margin-right: auto;
}

.about__left-7 img {
    max-width: 100%;
}

.about__mid-7 {
    padding-left: 80px;
    padding-top: 60px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .about__mid-7 {
        padding-left: 30px;
        padding-top: 20px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .about__mid-7 {
        padding-left: 10px;
        padding-top: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about__mid-7 {
        padding: 0;
    }
}

@media only screen and (max-width: 767px) {
    .about__mid-7 {
        padding-left: 0;
        padding-top: 40px;
    }
}

.about__mid-7 p {
    max-width: 440px;
    font-size: 18px;
    line-height: 1.4;
    color: var(--black-3);
    padding-bottom: 30px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .about__mid-7 p {
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .about__mid-7 p {
        font-size: 16px;
    }
}

.about__mid-7 img {
    display: block;
}

.about__mid-7 .signature {
    margin-top: 30px;
}

.about__mid-7 .image-1 {
    margin-left: auto;
    margin-top: 35px;
    -webkit-transform: translateX(25px);
    transform: translateX(25px);
}

@media only screen and (max-width: 767px) {
    .about__mid-7 .image-1 {
        margin-left: 0;
    }
}

.about__right-7 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 140px;
}

@media only screen and (max-width: 767px) {
    .about__right-7 {
        margin-top: 10px;
        padding-bottom: 10px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.about__right-7 img {
    max-width: 100%;
}

.award__area-7 {
    background-color: #F9F9F9;
}

.award__area-7 .inherit_row {
    margin-left: -350px;
}

.award__area-7 .award-video-7 video {
    width: 100%;
}

.award__top-7 {
    position: relative;
}

.award__counter {
    width: 330px;
    height: 330px;
    background: var(--black-2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 6px;
    z-index: 9;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .award__counter {
        width: 260px;
        height: 260px;
    }
}

@media only screen and (max-width: 767px) {
    .award__counter {
        width: 150px;
        height: 150px;
    }
}

.award__counter .counter__number {
    font-weight: 500;
    font-size: 100px;
    line-height: 1;
    color: var(--white);
}

@media only screen and (max-width: 767px) {
    .award__counter .counter__number {
        font-size: 50px;
    }
}

.award__counter p {
    font-size: 20px;
    line-height: 1.4;
    color: var(--white);
    padding-top: 15px;
}

@media only screen and (max-width: 767px) {
    .award__counter p {
        font-size: 16px;
        padding-top: 5px;
    }
}

.award__mid-7 p {
    font-size: 18px;
    color: var(--black-2);
    max-width: 300px;
    margin-left: 30px;
}

@media only screen and (max-width: 767px) {
    .award__mid-7 p {
        font-size: 16px;
        margin-left: 15px;
        padding-top: 15px;
        padding-bottom: 40px;
    }
}

.award__btm-7 {
    background-color: #EEE5E2;
    position: relative;
    padding-left: 110px;
    padding-bottom: 70px;
    padding-top: 420px;
    margin-top: -330px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .award__btm-7 {
        padding-left: 90px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .award__btm-7 {
        padding-left: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .award__btm-7 {
        padding-left: 30px;
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .award__btm-7 {
        padding-left: 30px;
        padding-bottom: 40px;
        padding-top: 370px;
    }
}

.award__btm-7::before {
    position: absolute;
    content: "";
    width: 500px;
    height: 100%;
    right: 100%;
    top: 0;
    background-color: var(--white);
}

.award__btm-7::after {
    position: absolute;
    content: "";
    width: 500px;
    height: 100%;
    left: 99%;
    top: 0;
    background-color: #EEE5E2;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .award__right-7 {
        padding-top: 60px;
    }
}

.award__list-7 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .award__list-7 {
        grid-gap: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .award__list-7 {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.award__item-7 {
    text-align: center;
    margin-bottom: 20px;
}

.award__item-7 img {
    max-width: 100%;
    margin-bottom: 20px;
}

.award__item-7 .title {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--black-2);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .award__item-7 .title {
        font-size: 14px;
    }
}

.team__area-7 .sec-text {
    padding-left: 60%;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .team__area-7 .sec-text {
        padding-left: 45%;
    }
}

@media only screen and (max-width: 767px) {
    .team__area-7 .sec-text {
        padding-left: 60px;
        padding-top: 20px;
    }
}

.team__area-7 .sec-text p {
    max-width: 300px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--black-3);
}

@media only screen and (max-width: 767px) {
    .team__area-7 .sec-text p {
        font-size: 16px;
    }
}

.team__title-7 {
    font-weight: 500;
    font-size: 700px;
    line-height: 0.9;
    text-align: center;
    color: var(--black-2);
    text-transform: uppercase;
    position: relative;
    z-index: 0;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .team__title-7 {
        font-size: 520px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .team__title-7 {
        font-size: 500px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .team__title-7 {
        font-size: 360px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .team__title-7 {
        font-size: 260px;
    }
}

@media only screen and (max-width: 767px) {
    .team__title-7 {
        font-size: 120px;
    }
}

.team__items-7 a {
    display: block;
    border-bottom: 1px solid var(--white-6);
}

.team__items-7 a:first-child {
    border-top: 1px solid var(--white-6);
}

.team__item-7 {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 0.9fr 1fr 0.1fr;
    grid-template-columns: 0.9fr 1fr 0.1fr;
    padding: 18px 0;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .team__item-7 {
        -ms-grid-columns: 1.5fr 1fr 0.1fr;
        grid-template-columns: 1.5fr 1fr 0.1fr;
    }
}

@media only screen and (max-width: 767px) {
    .team__item-7 {
        padding: 12px 0;
        -ms-grid-columns: 1.5fr 1fr 0.1fr;
        grid-template-columns: 1.5fr 1fr 0.1fr;
    }
}

.team__item-7:hover .team__hover-7 {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .team__item-7:hover .team__hover-7 {
        opacity: 0;
    }
}

.team__item-7:hover .tm-serial {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .team__item-7:hover .tm-serial {
        opacity: 0;
    }
}

.team__item-7:hover .tm-name {
    padding-left: 90px;
}

@media only screen and (max-width: 767px) {
    .team__item-7:hover .tm-name {
        padding-left: 0;
    }
}

.team__item-7:hover .tm-name::after {
    width: 50px;
}

@media only screen and (max-width: 767px) {
    .team__item-7:hover .tm-name::after {
        width: 0;
    }
}

.team__item-7:hover .tm-link i {
    color: var(--black-2);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.team__item-7 .tm-name {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3;
    color: var(--black-2);
    text-transform: capitalize;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .team__item-7 .tm-name {
        font-size: 20px;
    }
}

.team__item-7 .tm-name::after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    left: 25px;
    top: 18px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background-color: var(--black-2);
}

.team__item-7 .tm-serial {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 24px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.team__item-7 .tm-role {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.7;
    color: var(--black-3);
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    .team__item-7 .tm-role br {
        display: block;
    }
}

.team__item-7 .tm-link {
    color: var(--gray-2);
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.team__item-7 .tm-link i {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.team7__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.team7__img-wrap {
    width: 20vw;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
    padding-bottom: 25vw;
}

@media only screen and (max-width: 767px) {
    .team7__img-wrap {
        display: none;
        position: unset;
    }
}

.team__hover-7 {
    width: 300px;
    height: 400px;
    position: absolute;
    top: 0;
    left: 60%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 75%;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    margin: -200px 0 0 -150px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 1200px) {
    .team__hover-7 {
        width: 0;
        display: none;
    }
}

.service__area-7 {
    background-color: #F9F9F9;
    padding-bottom: 50px;
    position: relative;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__area-7 {
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__area-7 {
        padding-bottom: 0;
    }
}

.service__area-7::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    left: 36%;
    bottom: 0;
    background: var(--white-6);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .service__area-7::before {
        left: 32%;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .service__area-7::before {
        left: 35%;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__area-7::before {
        left: 33%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__area-7::before {
        left: 34%;
    }
}

@media only screen and (max-width: 767px) {
    .service__area-7::before {
        display: none;
    }
}

.service__area-7::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    left: 59%;
    bottom: 0;
    background: var(--white-6);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .service__area-7::after {
        left: 62%;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .service__area-7::after {
        left: 62%;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__area-7::after {
        left: 63%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__area-7::after {
        left: 64%;
    }
}

@media only screen and (max-width: 767px) {
    .service__area-7::after {
        display: none;
    }
}

.service__items-7 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [3];
    grid-template-columns: repeat(3, 1fr);
}

@media only screen and (max-width: 767px) {
    .service__items-7 {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.service__item-7 {
    padding-bottom: 90px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__item-7 {
        padding-right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .service__item-7 {
        padding-bottom: 60px;
    }
}

.service__item-7::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 35px;
    background: var(--white-6);
}

@media only screen and (max-width: 767px) {
    .service__item-7::after {
        bottom: 25px;
    }
}

.service__item-7:nth-last-child(-n + 3)::after {
    position: unset;
}

@media only screen and (max-width: 767px) {
    .service__item-7:nth-last-child(-n + 3)::after {
        position: absolute;
    }
}

.service__item-7 p {
    max-width: 340px;
    font-size: 18px;
    padding-bottom: 20px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__item-7 p {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .service__item-7 p {
        font-size: 16px;
    }
}

.service__item-7 ul li {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--black-2);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__item-7 ul li {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .service__item-7 ul li {
        font-size: 16px;
    }
}

.service__title-7 {
    font-weight: 500;
    font-size: 36px;
    line-height: 1.3;
    color: var(--black-2);
    padding-bottom: 25px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-transform: capitalize;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .service__title-7 {
        font-size: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .service__title-7 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .service__title-7 {
        font-size: 30px;
    }
}

.service__title-7:hover span {
    padding-left: 0;
}

@media only screen and (max-width: 767px) {
    .service__title-7:hover span {
        padding-left: 50px;
    }
}

.service__title-7:hover span::before {
    width: 0;
}

.service__title-7 span {
    display: block;
    position: relative;
    padding-left: 50px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.service__title-7 span::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 1px;
    left: 0;
    top: 25px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background-color: var(--black-2);
}

.portfolio__area-7 {
    margin-bottom: 120px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__area-7 .pb-140 {
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__area-7 {
        margin-bottom: 90px;
    }
}

.portfolio__area-7 .sec-title {
    padding-bottom: 50px;
    text-transform: capitalize;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__area-7 .sec-title {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__area-7 .sec-title {
        padding-bottom: 30px;
    }
}

.portfolio__area-7 p {
    font-size: 18px;
    max-width: 300px;
}

@media only screen and (max-width: 767px) {
    .portfolio__area-7 p {
        font-size: 16px;
    }
}

.portfolio__slider-7 {
    margin-right: -320px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__slider-7 {
        margin-right: -200px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__slider-7 {
        margin-right: -130px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__slider-7 {
        margin-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__slider-7 {
        margin-right: 0;
    }
}

.portfolio__slide-7 {
    text-align: center;
}

.portfolio__slide-7:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.portfolio__slide-7 .slide-img {
    overflow: hidden;
    margin-bottom: 20px;
}

.portfolio__slide-7 img {
    width: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.portfolio__slide-7 .title {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: var(--black-2);
    padding-bottom: 5px;
}

.portfolio__slide-7 .date {
    font-size: 14px;
    color: var(--black-3);
    font-weight: 400;
    line-height: 1.5;
}

.cta__area-7 {
    background-color: var(--black-2);
}

.cta__area-7 .cta__sub-title {
    color: var(--gray-2);
}

.cta__area-7 .cta__title {
    color: var(--white);
}

.cta__area-7 .wc-btn-primary, .cta__area-7 .wc-btn-secondary, .cta__area-7 .wc-btn-pink, .cta__area-7 .wc-btn-light, .cta__area-7 .wc-btn-black {
    border-color: var(--secondary);
    color: var(--gray-2);
}

.cta__area-7 .wc-btn-primary:hover, .cta__area-7 .wc-btn-secondary:hover, .cta__area-7 .wc-btn-pink:hover, .cta__area-7 .wc-btn-light:hover, .cta__area-7 .wc-btn-black:hover {
    color: var(--black-2);
}

.blog__area-7 .sec-title-wrapper {
    padding-bottom: 60px;
}

@media only screen and (max-width: 767px) {
    .blog__area-7 .sec-title-wrapper {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .blog__area-7 .pb-140 {
        padding-bottom: 20px;
    }
}

.dark .header__area-7.sticky-7 {
    border-color: var(--secondary);
}

.dark .award__left-7 .sec-title {
    color: var(--black-2);
}

.dark .main-menu-4 li a {
    color: var(--white);
}

.dark .main-menu-4 li a .menu-text {
    text-shadow: 0 16px 0 var(--white);
}

.dark .header__nav-icon-7 img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .header__area-7.sticky-7 {
    background: var(--black-2);
}

.dark .hero__area-7 {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .about__mid-7 p, .dark .service__item-7 ul li {
    color: var(--gray-2);
}

.dark .service__area-7 {
    background-color: var(--d-black-2);
}

.dark .service__area-7::before, .dark .service__area-7::after {
    background-color: var(--secondary);
}

.dark .service__item-7::after {
    background-color: var(--secondary);
}

.dark .service__title-7 {
    color: var(--white);
}

.dark .service__title-7 span::before {
    background-color: var(--white);
}

.dark .award__area-7 {
    background-color: var(--d-black-2);
}

.dark .award__btm-7::before {
    background-color: var(--black-2);
}

.dark .award__counter {
    background-color: var(--d-black-2);
}

.dark .portfolio__slide-7 .date {
    color: var(--gray-2);
}

.dark .portfolio__slide-7 .title {
    color: var(--white);
}

.dark .team__area-7 .sec-text p {
    color: var(--gray-2);
}

.dark .team__title-7 {
    color: var(--white);
}

.dark .team__items-7 a {
    border-color: var(--secondary);
}

.dark .team__item-7:hover .tm-link i {
    color: var(--white);
}

.dark .team__item-7 .tm-name {
    color: var(--white);
}

.dark .team__item-7 .tm-name::after {
    background-color: var(--white);
}

.dark .team__item-7 .tm-role {
    color: var(--gray-2);
}

.dark .cta__area-7 {
    background-color: var(--d-black-2);
}

.portfolio__area-11 {
    text-align: center;
    position: relative;
}

.portfolio__area-12 {
    padding: 180px 35px 110px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__area-12 {
        padding-top: 150px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__area-12 {
        padding-top: 150px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__area-12 {
        padding: 150px 15px 80px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__area-12 {
        padding: 130px 0 40px;
    }
}

.portfolio__area-12 .sec-title-wrapper .sub-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--black-2);
    position: relative;
}

.portfolio__area-12 .sec-title-wrapper .sub-title::after {
    position: absolute;
    content: "";
    width: 150px;
    height: 1px;
    background-color: var(--black-2);
    top: 13px;
    margin-left: 10px;
}

@media only screen and (max-width: 767px) {
    .portfolio__area-12 .sec-title-wrapper .sub-title::after {
        width: 70px;
    }
}

.portfolio__area-12 .sec-title-wrapper .title {
    font-weight: 500;
    font-size: 350px;
    line-height: 0.7;
    text-transform: uppercase;
    color: var(--black-2);
    padding-bottom: 60px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__area-12 .sec-title-wrapper .title {
        font-size: 260px;
        padding-bottom: 45px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__area-12 .sec-title-wrapper .title {
        font-size: 220px;
        padding-bottom: 45px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__area-12 .sec-title-wrapper .title {
        font-size: 150px;
        line-height: 0.9;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__area-12 .sec-title-wrapper .title {
        font-size: 60px;
        line-height: 1;
        padding-bottom: 20px;
    }
}

.portfolio__area-12 .sec-title-wrapper .title span {
    color: transparent;
    -webkit-text-stroke: 2px var(--black-2);
}

.portfolio__area-12 .sec-title-wrapper p {
    max-width: 320px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    text-indent: 60px;
    color: var(--black-2);
    margin-left: 500px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__area-12 .sec-title-wrapper p {
        margin-left: 300px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__area-12 .sec-title-wrapper p {
        margin-left: 300px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__area-12 .sec-title-wrapper p {
        margin-left: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__area-12 .sec-title-wrapper p {
        text-indent: 30px;
        margin-left: 30px;
    }
}

.portfolio__slider-11 img {
    height: 100vh;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.portfolio__slider-11-title {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    text-align: center;
    pointer-events: none;
}

.portfolio__slider-11-title .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.portfolio__slider-11-title .swiper-slide-thumb-active .portfolio__title-11 {
    font-size: 150px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__slider-11-title .swiper-slide-thumb-active .portfolio__title-11 {
        font-size: 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__slider-11-title .swiper-slide-thumb-active .portfolio__title-11 {
        font-size: 72px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__slider-11-title .swiper-slide-thumb-active .portfolio__title-11 {
        font-size: 36px;
    }
}

.portfolio__title-11 {
    font-weight: 500;
    font-size: 50px;
    line-height: 1.1;
    color: var(--white);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding-bottom: 10px;
    text-transform: uppercase;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__title-11 {
        font-size: 40px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__title-11 {
        font-size: 36px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__title-11 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__title-11 {
        font-size: 24px;
    }
}

.portfolio__title-11 span {
    font-weight: 400;
    font-family: "newYork";
}

.portfolio__title-12 {
    font-weight: 500;
    font-size: 150px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--black-2);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.portfolio__title-12 span {
    font-weight: 400;
    font-family: "newYork";
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .portfolio__title-12 {
        font-size: 110px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__title-12 {
        font-size: 100px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__title-12 {
        font-size: 72px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__title-12 {
        font-size: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__title-12 {
        font-size: 36px;
    }
}

.portfolio__sub-title-11 {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--white);
}

.portfolio__list-12 {
    padding-top: 140px;
    border-bottom: 1px solid var(--gray-11);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .portfolio__list-12 {
        padding-top: 120px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__list-12 {
        padding-top: 90px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__list-12 {
        padding-top: 90px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__list-12 {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__list-12 {
        padding-top: 60px;
    }
}

.portfolio__item-12 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 160px auto 200px;
    grid-template-columns: 160px auto 200px;
    padding: 55px 0 50px;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-top: 1px solid var(--gray-11);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .portfolio__item-12 {
        -ms-grid-columns: 130px auto 120px;
        grid-template-columns: 130px auto 120px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__item-12 {
        padding: 40px 0;
        -ms-grid-columns: 100px auto 100px;
        grid-template-columns: 100px auto 100px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__item-12 {
        -ms-grid-columns: 90px auto 90px;
        grid-template-columns: 90px auto 90px;
        padding: 30px 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__item-12 {
        -ms-grid-columns: 40px 20px auto 20px 80px;
        grid-template-columns: 40px auto 80px;
        gap: 20px;
        padding: 30px 0;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__item-12 {
        padding: 20px 0;
        grid-gap: 15px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.portfolio__item-12:hover .portfolio__title-12 {
    letter-spacing: 1px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.portfolio__item-12:hover .portfolio__hover-12 {
    opacity: 1;
}

.portfolio__item-12 p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: var(--black-3);
    text-transform: uppercase;
}

.portfolio__hover-12 {
    width: 300px;
    height: 400px;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 75%;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    margin: -200px 0 0 -150px;
    overflow: hidden;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .portfolio__hover-12 {
        width: 0;
        display: none;
    }
}

.portfolio__no-12 {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    text-transform: uppercase;
    color: var(--black-3);
}

.portfolio__nitems {
    display: block;
}

.portfolio__wrapper-11 {
    height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
    padding-top: 70px;
}

.portfolio__wrapper-11::-webkit-scrollbar {
    width: 0px;
}

.portfolio__nitem.active .portfolio__title-11 {
    font-size: 150px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .portfolio__nitem.active .portfolio__title-11 {
        font-size: 120px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__nitem.active .portfolio__title-11 {
        font-size: 100px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__nitem.active .portfolio__title-11 {
        font-size: 50px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__nitem.active .portfolio__title-11 {
        font-size: 36px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__nitem.active .portfolio__title-11 {
        font-size: 30px;
    }
}

.portfolio__nitem.active .pitem-bg {
    opacity: 1;
    visibility: visible;
}

.portfolio__nitem a {
    padding: 30px 0;
    display: inline-block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (max-width: 767px) {
    .portfolio__nitem a {
        padding: 20px 0;
    }
}

.portfolio__nitem .pitem-bg {
    background-position: center;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 1s;
    transition: all 1s;
}

.hover_img {
    width: 300px;
    height: 400px;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 75%;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    margin: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

@media (max-width: 1200px) {
    .hover_img {
        width: 0;
        display: none;
    }
}

.hover_wrap {
    position: relative;
}

.hover_wrap:hover .hover_img {
    opacity: 1;
}

.hover_8_wrap {
    position: relative;
}

.hover_8_img, .hover_8_img_2 {
    width: 300px;
    height: 400px;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
    margin-left: -250px;
    opacity: 0;
}

.hover_8_img.active, .active.hover_8_img_2 {
    opacity: 1;
}

@media (max-width: 1200px) {
    .hover_8_img, .hover_8_img_2 {
        width: 0;
        display: none;
    }
}

.hover_8_img_2 {
    top: 100px;
}

.work__area-8 .about-sub-right {
    color: var(--black-3);
    padding-bottom: 10px;
}

.scroll-top-2 {
    width: 115px;
    position: fixed;
    right: 100px;
    bottom: 20px;
    z-index: 9991;
    padding: 10px;
    cursor: pointer;
    display: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.scroll-top-2 i {
    font-size: 18px;
    color: var(--black-2);
}

.scroll-top-2:hover {
    color: var(--gray-2);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .scroll-top-2 {
        right: 50px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .scroll-top-2 {
        right: 30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .scroll-top-2 {
        right: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .scroll-top-2 {
        right: 10px;
        bottom: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .scroll-top-2 {
        right: 10px;
        bottom: 15px;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        padding: 5px;
        background-color: var(--white);
        mix-blend-mode: exclusion;
    }
}

.scroll-top-2 p {
    color: var(--black-2);
    text-align: left;
}

.scroll-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .scroll-inner {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .scroll-inner p {
        display: none;
    }

    .scroll-inner img {
        max-width: 100%;
        height: 30px;
    }
}

#main .part .section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.part p {
    opacity: 0;
}

.part h2 {
    opacity: 0;
}

.part.showed h2 {
    opacity: 1;
    padding-left: 30px;
    padding-bottom: 30px;
    font-weight: 500;
    font-size: 36px;
    line-height: 1.3;
    color: var(--white);
    text-transform: uppercase;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .part.showed h2 {
        font-size: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .part.showed h2 {
        font-size: 30px;
        padding-left: 20px;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .part.showed h2 {
        font-size: 24px;
        padding-left: 15px;
        padding-bottom: 20px;
    }
}

.part.showed h2 span {
    display: block;
    position: relative;
    padding-left: 90px;
    font-family: "newYork";
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .part.showed h2 span {
        padding-left: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .part.showed h2 span {
        padding-left: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .part.showed h2 span {
        padding-left: 30px;
    }
}

.part.showed h2 span::before {
    position: absolute;
    content: "";
    width: 70px;
    height: 2px;
    left: 0;
    top: 22px;
    background-color: var(--white);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .part.showed h2 span::before {
        width: 40px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .part.showed h2 span::before {
        width: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .part.showed h2 span::before {
        width: 25px;
    }
}

.part.showed p {
    opacity: 1;
    padding-left: 120px;
    padding-bottom: 60px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--white);
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .part.showed p {
        padding-left: 90px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .part.showed p {
        padding-left: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .part.showed p {
        padding-left: 20px;
    }
}

.showcase__area-4 {
    padding: 130px 50px 110px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .showcase__area-4 {
        padding: 120px 50px 100px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .showcase__area-4 {
        padding: 90px 50px 100px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .showcase__area-4 {
        padding: 80px 30px 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .showcase__area-4 {
        padding: 80px 20px 60px;
    }
}

@media only screen and (max-width: 767px) {
    .showcase__area-4 {
        padding: 60px 0 80px;
    }
}

.showcase__area-4 .row {
    --bs-gutter-x: 120px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .showcase__area-4 .row {
        --bs-gutter-x: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .showcase__area-4 .row {
        --bs-gutter-x: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .showcase__area-4 .row {
        --bs-gutter-x: 30px;
    }
}

.showcase__items-4 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 90px 1fr 90px 1fr 90px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 90px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .showcase__items-4 {
        grid-gap: 30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .showcase__items-4 {
        grid-gap: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .showcase__items-4 {
        grid-gap: 15px;
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .showcase__items-4 {
        grid-gap: 15px;
        -ms-grid-columns: 1fr 15px 1fr;
        grid-template-columns: repeat(2, 1fr);
    }
}

.showcase__item-4 {
    overflow: hidden;
}

.showcase__item-4:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.showcase__item-4 img {
    -webkit-transition: all 3s;
    transition: all 3s;
    max-width: 100%;
}

.showcase__menu-4 {
    gap: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 30px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .showcase__menu-4 {
        display: inline-block;
        z-index: 9;
        text-align: center;
        position: relative;
        background-color: var(--white);
    }
}

.showcase__menu-4 button {
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--black);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-transform: capitalize;
}

.showcase__menu-4 button:hover {
    letter-spacing: 1px;
    color: var(--black-2);
}

@media only screen and (max-width: 767px) {
    .showcase__menu-4 button {
        margin: 0 5px 10px 0;
    }
}

.showcase5__content img {
    -webkit-animation: wcSpinner 5s infinite linear;
    animation: wcSpinner 5s infinite linear;
}

.showcase_16_hover {
    width: 300px;
    height: 400px;
    position: absolute;
    top: 100px;
    left: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 75%;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
}

.showcase_16_hover.active {
    opacity: 1;
}

@media (max-width: 1365px) {
    .showcase_16_hover {
        display: none;
    }
}

.mixtup_btn#btn_wrapper, .mixtup_btn.btn_wrapper {
    margin: 0 auto;
}

.mixtup_btn .wc-btn {
    display: inline-block;
    width: 170px;
    height: 170px;
    border: 1px solid #C2C2C2;
    border-radius: 100%;
    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;
    color: #555555;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (max-width: 1365px) {
    .mixtup_btn .wc-btn {
        width: 150px;
        height: 150px;
    }
}

.mixtup_btn .wc-btn span {
    display: block;
    font-size: 18px;
    margin-bottom: -15px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media only screen and (max-width: 767px) {
    .mixtup_btn .wc-btn span {
        margin-bottom: -5px;
    }
}

.mixtup_btn .wc-btn:hover {
    color: var(--white);
    background-color: var(--black-2);
}

@media (max-width: 1365px) {
    .mixtup_btn {
        opacity: 1;
        visibility: visible;
    }
}

@media only screen and (max-width: 767px) {
    .mixtup_btn {
        margin-bottom: 30px;
    }
}

.dark .portfolio__area-12 .sec-title-wrapper .title {
    color: var(--white);
}

.dark .portfolio__area-12 .sec-title-wrapper .title span {
    -webkit-text-stroke: 2px var(--white);
}

.dark .portfolio__area-12 .sec-title-wrapper .sub-title {
    color: var(--white);
}

.dark .portfolio__area-12 .sec-title-wrapper .sub-title::after {
    background-color: var(--white);
}

.dark .portfolio__area-12 .sec-title-wrapper p {
    color: var(--white);
}

.dark .portfolio__title-12, .dark .showcase__menu-4 button {
    color: var(--white);
}

.dark .rollslide_title {
    color: var(--white);
}

.dark .rollslide_title:hover {
    color: var(--black-3);
}

.dark .cat_links li a, .dark .work__area-8 .about-sub-right, .dark .footer__copyright-8 p a {
    color: var(--white);
}

.dark .cat_links li a:hover, .dark .work__area-8 .about-sub-right:hover, .dark .footer__copyright-8 p a:hover {
    color: var(--black-3);
}

.dark .scroll-top-2 {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark .portfolio__item-12 p, .dark .portfolio__no-12 {
    color: var(--gray);
}

.dark .portfolio__list-12, .dark .portfolio__item-12, .dark .footer_categories, .dark .footer__subscribe-2 input {
    border-color: var(--black-3);
}

.dark .footer_categories::before {
    background-color: var(--black-3);
}

.dark .mixtup_btn .wc-btn {
    color: var(--white);
    border-color: var(--secondary);
}

.dark .mixtup_btn .wc-btn:hover {
    color: var(--black-2);
    background-color: var(--white);
}

@media only screen and (max-width: 767px) {
    .dark .showcase__menu-4 {
        background-color: var(--black-2);
    }
}

body {
    position: relative;
}

.body-bg {
    position: fixed;
    z-index: 99999;
    pointer-events: none;
    top: 0;
    opacity: 1;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-repeat: repeat;
    background-position: top left;
    background-image: url("/assets/imgs/essential-img/bg-axtra.png");
}

.portfolio__area-11 {
    overflow: hidden;
}

.portfolio__area-11 .gallary11__thumb {
    height: 100%;
}

.portfolio__area-11 .gallary11__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.portfolio__area-11 .gallary11__thumb img:hover {
    -webkit-transform: scale(1.07);
    transform: scale(1.07);
    -webkit-transition: all 10s;
    transition: all 10s;
}

.portfolio__area-11 .swiper-container {
    width: 100%;
    height: 100vh;
    float: left;
    -webkit-transition: opacity 0.6s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.6s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.6s ease, transform 0.3s ease;
    transition: opacity 0.6s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.portfolio__area-11 .main-slider11 .swiper-image {
    width: 100%;
    height: 100%;
}

.portfolio__area-11 .swiper-slide {
    overflow: hidden;
    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;
}

.portfolio__area-11 .swiper-slide.swiper-slide-active .gallary__thumb .portfolio__title-11 {
    font-size: 150px;
    line-height: 0.9;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .portfolio__area-11 .swiper-slide.swiper-slide-active .gallary__thumb .portfolio__title-11 {
        font-size: 100px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__area-11 .swiper-slide.swiper-slide-active .gallary__thumb .portfolio__title-11 {
        font-size: 90px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__area-11 .swiper-slide.swiper-slide-active .gallary__thumb .portfolio__title-11 {
        font-size: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__area-11 .swiper-slide.swiper-slide-active .gallary__thumb .portfolio__title-11 {
        font-size: 48px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__area-11 .swiper-slide.swiper-slide-active .gallary__thumb .portfolio__title-11 {
        font-size: 30px;
    }
}

.portfolio__area-11 .swiper-container.thumb-slider11 {
    width: 100%;
    position: absolute;
    overflow: hidden;
    height: 100vh;
    pointer-events: none;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__area-11 .swiper-container.thumb-slider11 {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__area-11 .swiper-container.thumb-slider11 {
        margin-top: 80px;
    }
}

.portfolio__area-11 .swiper-container.thumb-slider11 .swiper-slide {
    cursor: pointer;
}

.portfolio__area-11 .swiper-container.thumb-slider11 .swiper-slide-active {
    height: 175px !important;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .portfolio__area-11 .swiper-container.thumb-slider11 .swiper-slide-active {
        height: 160px !important;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio__area-11 .swiper-container.thumb-slider11 .swiper-slide-active {
        height: 150px !important;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__area-11 .swiper-container.thumb-slider11 .swiper-slide-active {
        height: 125px !important;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__area-11 .swiper-container.thumb-slider11 .swiper-slide-active {
        height: 100px !important;
    }
}

.portfolio__area-11 .gallary12 {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .portfolio__area-11 .gallary12 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__area-11 .gallary12 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.dir-rtl {
    direction: rtl;
}

.dir-rtl li {
    text-align: right;
}

.dir-rtl .scroll-top {
    right: unset;
    left: 20px;
}

.dir-rtl .wc-btn-primary i, .dir-rtl .wc-btn-black i, .dir-rtl .wc-btn-light i, .dir-rtl .wc-btn-pink i, .dir-rtl .wc-btn-secondary i {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
}

.dir-rtl .shape {
    left: 0;
    right: -90px;
}

.dir-rtl .shape .primary {
    margin-left: 0;
    margin-right: 24px;
}

.dir-rtl .btn-view i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dir-rtl .sec-title-4 span {
    padding-left: 0;
    padding-right: 298px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .sec-title-4 span {
        padding-right: 0;
    }
}

.dir-rtl .sec-title-5 {
    padding-left: 0;
    padding-right: 98px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .sec-title-5 {
        padding-right: 0;
    }
}

.dir-rtl .menu-text-pp {
    padding-right: 0;
    padding-left: 10px;
}

.dir-rtl .circle-pagination-2 {
    left: unset !important;
    right: 20px !important;
}

@media (max-width: 1919px) {
    .dir-rtl .circle-pagination-2 {
        right: 0 !important;
    }
}

.dir-rtl .menu-text-5 {
    padding-right: 0;
    padding-left: 10px;
}

.dir-rtl .btn-together i {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.dir-rtl .header__area {
    right: 0;
    left: unset;
    border: none;
    border-left: 1px solid rgba(240, 240, 240, 0.07);
}

.dir-rtl .header__search {
    right: unset;
    left: 60px;
}

.dir-rtl .header__nav-2 {
    text-align: left;
}

.dir-rtl .header__nav-icon-7 .menu-icon-2::after {
    left: -60px;
    right: unset;
}

.dir-rtl .offcanvas__close {
    right: unset;
    left: 40px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .offcanvas__close {
        left: 15px;
    }
}

.dir-rtl .offcanvas__logo {
    padding: 55px 50px 55px 0;
}

.dir-rtl .offcanvas__social {
    padding-left: 0;
    padding-right: 50px;
}

.dir-rtl .offcanvas__links {
    padding-left: unset;
    padding-right: 50px;
}

.dir-rtl .offcanvas__left {
    border: none;
    border-left: 1px solid var(--black-4);
}

.dir-rtl .offcanvas__search button {
    right: unset;
    left: 0;
}

.dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 100px 20px 0;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
        padding-right: 60px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
        padding-right: 50px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
        padding-right: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
        padding-right: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
        padding-right: 20px;
    }
}

.dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
    left: 0;
    right: unset;
    height: 120px;
    width: 84px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
        height: 100px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
        height: 88px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
        width: 70px;
        height: 80px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
        width: 60px;
        height: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
        width: 60px;
        height: 60px;
    }
}

.dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
    padding: 20px 150px 20px 0;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
        padding-right: 90px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
        padding-right: 80px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
        padding-right: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
        padding-right: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
        padding-right: 40px;
    }
}

.dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
    height: 63px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
        height: 59px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
        height: 57px;
    }
}

.dir-rtl .hero__area-3::after {
    right: unset;
    left: 50px;
}

.dir-rtl .hero__area-3::before {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.dir-rtl .hero__area-3 .hero3-img {
    right: unset;
    left: 0;
}

.dir-rtl .hero__area-3 .video-info {
    left: unset;
    right: 500px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .hero__area-3 .video-info {
        right: 330px;
    }
}

.dir-rtl .hero__area-3 .intro-title {
    left: 0;
}

.dir-rtl .hero__area-3 .title-right {
    right: unset;
    left: 0;
}

.dir-rtl .hero__area-3 .sec-sub-title {
    padding-right: 0;
    padding-left: 30px;
}

.dir-rtl .hero__area-3 .sec-sub-title::after {
    left: unset;
    right: 100%;
}

.dir-rtl .hero__area-2 .hero2-shape {
    max-width: 38%;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .hero__area-2 .hero2-shape {
        max-width: 35%;
    }
}

@media (max-width: 1400px) {
    .dir-rtl .hero__area-2 .hero2-shape {
        max-width: 30%;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .hero__area-2 .hero2-shape {
        max-width: 90%;
    }
}

.dir-rtl .hero__area-2 .sec-title-3:last-child {
    text-align: left;
    padding-top: 110px;
    padding-right: 0;
    margin-top: 30px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .hero__area-2 .sec-title-3:last-child {
        padding-top: 90px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .hero__area-2 .sec-title-3:last-child {
        padding-top: 90px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .hero__area-2 .sec-title-3:last-child {
        padding-top: 50px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .hero__area-2 .sec-title-3:last-child {
        padding-top: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .hero__area-2 .sec-title-3:last-child {
        padding-top: 0;
    }
}

.dir-rtl .hero__area-7 .shape-1 {
    right: unset;
    left: 100px;
}

.dir-rtl .hero__area-10 .hero10_activition .swiper-pagination-total {
    width: 30px;
    margin-right: 10px;
}

.dir-rtl .hero__area-10 .hero10_activition .swiper-pagination-total::before {
    left: 20px;
}

.dir-rtl .hero__area-10 .hero10_activition .swiper-pagination-current {
    width: 30px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .hero__area-10 .hero10_activition .swiper-pagination-current {
        margin-left: 0;
    }
}

.dir-rtl .hero__area-10 .hero10_activition .swiper-pagination-current::before {
    left: 20px;
}

.dir-rtl .hero__area-10 .hero10_activition .swiper-button-next.hero_next {
    left: 0;
    right: unset;
}

.dir-rtl .hero__area-10 .hero10_activition .swiper-button-next.hero_next img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dir-rtl .hero__area-15 .swiper-container {
    float: right;
}

.dir-rtl .hero__sub-title {
    left: 60px;
    right: unset;
}

.dir-rtl .hero__text-2 {
    padding-left: 0;
    padding-right: 32%;
    background-position: 35% 58%;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .hero__text-2 {
        padding-right: 30%;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .hero__text-2 {
        padding-right: 20%;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .hero__text-2 {
        padding-right: 15%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .hero__text-2 {
        padding-right: 5%;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .hero__text-2 {
        padding-right: 0%;
    }
}

.dir-rtl .hero__content .experience {
    right: unset;
    left: 30px;
}

.dir-rtl .hero__content a:hover i {
    -webkit-transform: translate(-18px, -18px) rotate(-135deg);
    transform: translate(-18px, -18px) rotate(-135deg);
}

.dir-rtl .hero__content a:hover span::after {
    -webkit-transform: translate(20px, -20px) rotate(-135deg);
    transform: translate(20px, -20px) rotate(-135deg);
}

.dir-rtl .hero__content a span {
    right: unset;
    left: 0;
}

.dir-rtl .hero__content a span i {
    -webkit-transform: translate(0, 0) rotate(-135deg);
    transform: translate(0, 0) rotate(-135deg);
}

.dir-rtl .hero__content a span::after {
    left: -20px;
    -webkit-transform: translate(45px, 5px) rotate(-135deg);
    transform: translate(45px, 5px) rotate(-135deg);
}

.dir-rtl .hero__content-8 .scroll-down {
    padding-left: unset;
    padding-right: 140px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .hero__content-8 .scroll-down {
        padding-right: 160px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .hero__content-8 .scroll-down {
        padding-right: 160px;
    }
}

.dir-rtl .hero__title::after {
    right: unset;
    left: -80px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .hero__title::after {
        left: -30px;
    }
}

.dir-rtl .hero__arrow-icon {
    right: 95%;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .hero__arrow-icon {
        right: 70%;
    }
}

.dir-rtl .hero__about-text p {
    padding-left: 0;
    padding-right: 80px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .hero__about-text p {
        padding-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .hero__about-text p {
        padding-right: 0;
    }
}

.dir-rtl .hero__about-award::before {
    left: unset;
    right: 75px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .hero__about-award::before {
        right: 30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .hero__about-award::before {
        right: 20px;
    }
}

.dir-rtl .hero__about-row {
    position: inherit;
    margin-right: initial;
    margin-left: -310px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .hero__about-row {
        margin-left: -150px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .hero__about-row {
        margin-left: -120px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .hero__about-row {
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .hero__about-row {
        margin-left: 0;
    }
}

.dir-rtl .hero__text-7 {
    margin-left: 0;
    margin-right: 210px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .hero__text-7 {
        margin-right: 60px;
        grid-gap: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .hero__text-7 {
        margin-right: 0;
    }
}

.dir-rtl .hero__text-7 .about::after {
    left: 40px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .hero__text-7 .about::after {
        left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .hero__text-7 .about::after {
        left: 54%;
    }
}

.dir-rtl .hero__area-10 .swiper-button-prev.hero_prev img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dir-rtl .header__nav-icon-3 .search-icon {
    padding-left: 50px;
}

.dir-rtl .header__nav-icon-3 .search-icon::after {
    right: unset;
    left: 25px;
}

.dir-rtl .story__area .from-text {
    right: unset;
    left: -220px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .story__area .from-text {
        left: -50px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .story__area .from-text {
        left: -100px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .story__area .from-text {
        left: -10px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .story__area .from-text {
        left: -10px;
    }
}

.dir-rtl .feature__content-right {
    padding: 143px 110px 0px 60px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .feature__content-right {
        padding: 60px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .feature__content-right {
        padding: 20px;
    }
}

.dir-rtl .feature__content-right p {
    padding-right: 0;
    padding-left: 242px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .feature__content-right p {
        padding-left: 225px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .feature__content-right p {
        padding-left: 145px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .feature__content-right p {
        padding-left: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .feature__content-right p {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .feature__content-right p {
        padding-left: 0;
    }
}

.dir-rtl .feature__content-btm {
    margin-left: 0;
    margin-right: 110px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .feature__content-btm {
        margin-right: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .feature__content-btm {
        margin-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .feature__content-btm {
        margin-right: 0;
    }
}

.dir-rtl .feature__text {
    padding-left: 0;
    padding-right: 85px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .feature__text {
        padding-right: 70px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .feature__text {
        padding-right: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .feature__text {
        padding-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .feature__text {
        padding-right: 0;
    }
}

.dir-rtl .feature__title-6 {
    padding-left: 0;
    padding-right: 60px;
}

.dir-rtl .feature__title-6::before {
    left: unset;
    right: 0;
}

.dir-rtl .feature__img-1 {
    right: unset;
    left: 10%;
}

.dir-rtl .feature__img-3 {
    right: unset;
    left: 6%;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .feature__item {
        border-right: 1px solid var(--black-2);
    }

    .dir-rtl .feature__item:nth-child(odd) {
        border-right: 0;
    }
}

.dir-rtl .feature__item:first-child {
    border-right: none;
}

.dir-rtl .feature__item:last-child {
    padding: 145px 30px;
    border-right: 1px solid var(--black-2);
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .feature__item:last-child {
        padding: 90px 20px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .feature__item:last-child {
        padding: 90px 10px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .feature__item:last-child {
        padding: 50px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .feature__item:last-child {
        padding: 0;
        border: 0;
        padding-bottom: 40px;
    }
}

.dir-rtl .about__area-3::after {
    left: 40%;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .about__area-3::after {
        left: 45%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .about__area-3::after {
        left: 50%;
    }
}

.dir-rtl .about__area-3 .sec-text-wrapper {
    padding-right: 210px;
    padding-left: 0;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .about__area-3 .sec-text-wrapper {
        padding-right: 160px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .about__area-3 .sec-text-wrapper {
        padding-right: 160px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .about__area-3 .sec-text-wrapper {
        padding-right: 65px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .about__area-3 .sec-text-wrapper {
        padding-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .about__area-3 .sec-text-wrapper {
        padding-right: 0;
    }
}

.dir-rtl .about__area-2 .sec-text-wrapper {
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
}

.dir-rtl .about__area-8 .about-sub-right {
    text-align: left !important;
}

.dir-rtl .about__title-wrapper {
    padding-left: 0;
    padding-right: 190px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .about__title-wrapper {
        padding-right: 0;
    }
}

.dir-rtl .about__img-right {
    right: unset;
    left: 0;
}

.dir-rtl .about__mid-7 {
    padding-left: 0;
    padding-right: 80px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .about__mid-7 {
        padding-right: 30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .about__mid-7 {
        padding-right: 10px;
    }
}

@media (max-width: 1023px) {
    .dir-rtl .about__mid-7 {
        padding-right: 0;
    }
}

.dir-rtl .about__mid-7 .image-1 {
    margin-left: 0;
    margin-right: auto;
}

.dir-rtl .about8__content {
    float: left;
}

.dir-rtl .work__area-8 .about-sub-right {
    text-align: left !important;
}

.dir-rtl .work8__title {
    margin-left: 0;
    margin-right: 440px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .work8__title {
        margin-right: 20px;
    }
}

.dir-rtl .service__area-3 .sec-title-wrapper {
    padding-left: 0;
    padding-right: 330px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .service__area-3 .sec-title-wrapper {
        padding-right: 200px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .service__area-3 .sec-title-wrapper {
        padding-right: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .service__area-3 .sec-title-wrapper {
        padding-right: 0;
    }
}

.dir-rtl .service__area-3 .sec-title-wrapper::after {
    left: 62%;
}

.dir-rtl .service__area-3 .sec-title-wrapper p {
    margin-left: 0;
    margin-right: 220px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .service__area-3 .sec-title-wrapper p {
        margin-right: 120px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .service__area-3 .sec-title-wrapper p {
        margin-right: 120px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .service__area-3 .sec-title-wrapper p {
        margin-right: 20px;
    }
}

.dir-rtl .service__area-6 {
    padding-left: 0;
}

.dir-rtl .service__area-6 .inherit-row {
    margin-right: -180px;
    margin-left: 0;
}

@media (max-width: 1919px) {
    .dir-rtl .service__area-6 .inherit-row {
        margin-right: calc(-0.5 * var(--bs-gutter-x));
    }
}

.dir-rtl .service__area-6 .right-content {
    padding-left: 0;
    padding-right: 80px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .service__area-6 .right-content {
        padding-right: 40px;
    }
}

@media (max-width: 1400px) {
    .dir-rtl .service__area-6 .right-content {
        padding-right: 0;
    }
}

.dir-rtl .service__area-7::before {
    left: 42%;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .service__area-7::before {
        left: 39%;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .service__area-7::before {
        left: 38%;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .service__area-7::before {
        left: 34%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .service__area-7::before {
        left: 36%;
    }
}

.dir-rtl .service__area-7::after {
    left: 64%;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .service__area-7::after {
        left: 69%;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .service__area-7::after {
        left: 65%;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .service__area-7::after {
        left: 66%;
    }
}

.dir-rtl .service__top-btn #btn_wrapper, .dir-rtl .service__top-btn .btn_wrapper {
    margin-left: -40px;
    margin-right: auto;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .service__top-btn #btn_wrapper, .dir-rtl .service__top-btn .btn_wrapper {
        margin-left: -20px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .service__top-btn #btn_wrapper, .dir-rtl .service__top-btn .btn_wrapper {
        margin-left: auto;
        margin-right: 0;
    }
}

.dir-rtl .service__link {
    text-align: left;
}

.dir-rtl .service__link p::after {
    -webkit-transform: translate(80px, 34px) rotate(-135deg);
    transform: translate(80px, 34px) rotate(-135deg);
}

.dir-rtl .service__link i {
    -webkit-transform: translate(0, 0) rotate(-135deg);
    transform: translate(0, 0) rotate(-135deg);
}

.dir-rtl .service__item-icon i {
    font-size: 23px;
    color: var(--black-2);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dir-rtl .service__item:hover .service__link p::after {
    -webkit-transform: translate(30px, -20px) rotate(-135deg);
    transform: translate(30px, -20px) rotate(-135deg);
}

.dir-rtl .service__item:hover .service__link i {
    -webkit-transform: translate(-38px, -40px) rotate(-135deg);
    transform: translate(-38px, -40px) rotate(-135deg);
}

.dir-rtl .service__item-2::before {
    left: -30px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .service__item-2::before {
        left: 0;
    }
}

.dir-rtl .service__item-2:nth-child(3n + 1)::before {
    position: absolute;
}

.dir-rtl .service__item-2:last-child::before {
    position: unset;
}

.dir-rtl .service__item-2:nth-child(3)::before {
    position: unset;
}

.dir-rtl .service__item-4:hover .service__item-icon {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.dir-rtl .service__img {
    -webkit-transform: rotate(0deg) translateX(100px);
    transform: rotate(0deg) translateX(100px);
}

.dir-rtl .service__img.active {
    -webkit-transform: rotate(-15deg) translateX(-60px) translateY(30px);
    transform: rotate(-15deg) translateX(-60px) translateY(30px);
}

.dir-rtl .service__img-wrapper span {
    left: unset;
    right: 0;
    -webkit-transform: rotate(26deg) translate(-100%, -100%);
    transform: rotate(26deg) translate(-100%, -100%);
}

.dir-rtl .service__img-wrapper span.current {
    -webkit-transform: rotate(26deg) translate(170px, -100%);
    transform: rotate(26deg) translate(170px, -100%);
}

.dir-rtl .service__right-4 p {
    padding-right: 0;
    padding-left: 195px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .service__right-4 p {
        padding-left: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .service__right-4 p {
        padding-left: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .service__right-4 p {
        padding-left: 0;
    }
}

.dir-rtl .service__hero-2 .shape-1 {
    right: unset;
    left: 165px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .service__hero-2 .shape-1 {
        left: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .service__hero-2 .shape-1 {
        left: 5px;
    }
}

.dir-rtl .service__hero-left-2 .image-1, .dir-rtl .service__hero-left-2 .image-3 {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .service__hero-left-2 .image-1, .dir-rtl .service__hero-left-2 .image-3 {
        -webkit-transform: translateX(40px);
        transform: translateX(40px);
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .service__hero-left-2 .image-1, .dir-rtl .service__hero-left-2 .image-3 {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .service__hero-left-2 .image-1, .dir-rtl .service__hero-left-2 .image-3 {
        -webkit-transform: translateX(25px);
        transform: translateX(25px);
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .service__hero-left-2 .image-1, .dir-rtl .service__hero-left-2 .image-3 {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.dir-rtl .service__hero-left-2 .image-2 {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
}

@media only screen and (max-width: 767px) {
    .dir-rtl .service__hero-left-2 .image-2 {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.dir-rtl .service__hero-left-2 .image-4 {
    right: 318px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .service__hero-left-2 .image-4 {
        right: 300px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .service__hero-left-2 .image-4 {
        right: 268px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .service__hero-left-2 .image-4 {
        right: 215px;
    }
}

.dir-rtl .service__hero-right-2 p {
    margin-left: 0;
    margin-right: 350px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .service__hero-right-2 p {
        margin-right: 300px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .service__hero-right-2 p {
        margin-right: 220px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .service__hero-right-2 p {
        margin-right: 30px;
    }
}

.dir-rtl .service__hero-right-2 .title span {
    padding-left: 0;
    padding-right: 170px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .service__hero-right-2 .title span {
        padding-right: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .service__hero-right-2 .title span {
        padding-right: 40px;
    }
}

.dir-rtl .service__hero-right-2 .scroll {
    margin-left: 0;
    margin-right: 350px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .service__hero-right-2 .scroll {
        margin-right: 30px;
    }
}

.dir-rtl .service__title-7:hover span {
    padding-right: 0;
}

.dir-rtl .service__title-7 span {
    padding-left: 0;
    padding-right: 50px;
}

.dir-rtl .service__title-7 span::before {
    left: unset;
    right: 0;
}

.dir-rtl .service__detail-circle span::after {
    left: unset;
    right: 50%;
}

.dir-rtl .accordion-button {
    text-align: right;
}

.dir-rtl .faq__list-4 .accordion-button.collapsed::after {
    left: unset;
    right: 0;
}

.dir-rtl .faq__list-4 .accordion-button:not(.collapsed)::after {
    left: unset;
    right: 0;
}

.dir-rtl .faq__img6-2 {
    left: unset;
    right: 51px;
}

.dir-rtl .faq__img {
    padding-right: 0;
    padding-left: 85px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .faq__img {
        padding-left: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .faq__img {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .faq__img {
        padding-left: 0;
    }
}

.dir-rtl .award__right > p {
    margin-left: 0;
    margin-right: 100px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .award__right > p {
        margin-right: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .award__right > p {
        margin-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .award__right > p {
        margin-right: 0;
    }
}

.dir-rtl .award__text-8 {
    right: unset;
    left: 50px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .award__text-8 {
        left: 10px;
    }
}

.dir-rtl .award__text-8 a:hover i {
    -webkit-transform: translate(-20px, -20px) rotate(-135deg);
    transform: translate(-20px, -20px) rotate(-135deg);
}

.dir-rtl .award__text-8 a:hover span::after {
    -webkit-transform: translate(20px, -20px) rotate(-135deg);
    transform: translate(20px, -20px) rotate(-135deg);
}

.dir-rtl .award__text-8 a span {
    right: unset;
    left: 0;
}

.dir-rtl .award__text-8 a span i {
    -webkit-transform: translate(0, 0) rotate(-135deg);
    transform: translate(0, 0) rotate(-135deg);
}

.dir-rtl .award__text-8 a span::after {
    -webkit-transform: translate(40px, 0) rotate(-135deg);
    transform: translate(40px, 0) rotate(-135deg);
}

.dir-rtl .award__item p:last-child {
    text-align: left;
}

.dir-rtl .award__mid-7 p {
    margin-left: 0;
    margin-right: 30px;
}

.dir-rtl .award__area-7 .inherit_row {
    margin-left: 0;
    margin-right: -350px;
}

.dir-rtl .award__counter {
    right: unset;
    left: 0;
}

.dir-rtl .award__btm-7 {
    padding-left: 0;
    padding-right: 110px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .award__btm-7 {
        padding-right: 90px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .award__btm-7 {
        padding-right: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .award__btm-7 {
        padding-right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .award__btm-7 {
        padding-right: 30px;
    }
}

.dir-rtl .award__btm-7::after {
    left: unset;
    right: 99%;
}

.dir-rtl .award__btm-7::before {
    right: unset;
    left: 100%;
}

.dir-rtl .awards__area-8 .about-sub-right {
    text-align: left !important;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .team__area {
        padding-left: 0;
        padding-right: 62px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .team__area {
        padding-left: 0;
        padding-right: 62px;
    }
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .team__area-6 {
        padding-left: 0;
        padding-right: 62px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .team__area-6 {
        padding-left: 0;
        padding-right: 62px;
    }
}

.dir-rtl .team__area-7 .sec-text {
    padding-left: 0;
    padding-right: 60%;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .team__area-7 .sec-text {
        padding-right: 60px;
    }
}

.dir-rtl .team__item-7:hover .tm-name {
    padding-left: 0;
    padding-right: 90px;
}

.dir-rtl .team__item-7:hover .tm-link i {
    -webkit-transform: rotate(215deg);
    transform: rotate(215deg);
}

.dir-rtl .team__item-7 .tm-serial {
    left: unset;
    right: 0;
}

.dir-rtl .team__item-7 .tm-name::after {
    left: unset;
    right: 25px;
}

.dir-rtl .team__item-7 .tm-link i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dir-rtl .team__hover-7 {
    left: -60%;
}

.dir-rtl .team__join-btn a i {
    right: unset;
    left: 130px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .team__join-btn a i {
        left: 50px;
    }
}

.dir-rtl .team__member-img {
    left: unset;
    right: -192px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .team__member-img {
        right: -150px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .team__member-img {
        right: -228px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .team__member-img {
        right: 50%;
        -webkit-transform: translateX(25%);
        transform: translateX(25%);
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .team__member-img {
        right: 0;
    }
}

.dir-rtl .team__member-role-7::after {
    left: unset;
    right: 0;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .team__member-role-7::after {
        right: calc(50% - 75px);
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .team__member-role-7::after {
        right: calc(50% - 75px);
    }
}

.dir-rtl .cta__area-3 .wc-btn-black {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.dir-rtl .cta__area-3 .wc-btn-black i {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.dir-rtl .circle-pagination.right {
    left: unset;
    right: calc(100% - 135px) !important;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .circle-pagination.right {
        right: calc(100% - 90px) !important;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .circle-pagination.right {
        right: calc(100% - 75px) !important;
    }
}

.dir-rtl .portfolio__area-2::after {
    left: 15.3%;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .portfolio__area-2 .line::before {
        left: unset;
        right: 0;
    }
}

.dir-rtl .portfolio__area-2 .sec-title-3 {
    padding-right: 0;
    padding-left: 320px;
    background-position: 25% 25px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .portfolio__area-2 .sec-title-3 {
        padding-left: 0;
    }
}

.dir-rtl .portfolio__area-2 .sec-title-3 span {
    padding-left: 0;
    padding-right: 450px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .portfolio__area-2 .sec-title-3 span {
        padding-right: 300px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .portfolio__area-2 .sec-title-3 span {
        padding-right: 150px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .portfolio__area-2 .sec-title-3 span {
        padding-right: 0;
    }
}

.dir-rtl .portfolio__area-2 .sec-title-wrapper .sec-text {
    text-align: right;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .portfolio__area-3 .swiper-pagination {
        left: 10px;
    }
}

.dir-rtl .portfolio__area-6 .sec-title-wrapper p {
    padding-left: 0;
    padding-right: 110px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .portfolio__area-6 .sec-title-wrapper p {
        padding-right: 70px;
    }
}

.dir-rtl .portfolio__area-6 .sec-title-wrapper p::before {
    left: unset;
    right: 0;
}

.dir-rtl .portfolio__area-12 .sec-title-wrapper .sub-title::after {
    margin-left: unset;
    margin-right: 10px;
}

.dir-rtl .portfolio__area-12 .sec-title-wrapper p {
    margin-left: 0;
    margin-right: 500px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .portfolio__area-12 .sec-title-wrapper p {
        margin-right: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .portfolio__area-12 .sec-title-wrapper p {
        margin-right: 20px;
    }
}

.dir-rtl .portfolio__slide-3 {
    text-align: left;
    padding-right: 0;
    padding-left: 110px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .portfolio__slide-3 {
        padding-left: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .portfolio__slide-3 {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .portfolio__slide-3 {
        padding-left: 0;
    }
}

.dir-rtl .portfolio__slide-2 .sec-title span {
    padding-left: 0;
    padding-right: 60px;
}

.dir-rtl .portfolio__slide-2 .sec-title span::before {
    left: unset;
    right: -10px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .portfolio__slide-2 .sec-title span::before {
        right: 0;
        width: 40px;
    }
}

.dir-rtl .portfolio__slide-2 .slide-img {
    padding-right: 0;
    padding-left: 15px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .portfolio__slide-2 .slide-img {
        padding-left: 0;
    }
}

.dir-rtl .portfolio__slide-2 .slide-content {
    padding-left: 0;
    padding-right: 100px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .portfolio__slide-2 .slide-content {
        padding-right: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .portfolio__slide-2 .slide-content {
        padding-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .portfolio__slide-2 .slide-content {
        padding-right: 40px;
    }
}

.dir-rtl .portfolio__slide-2 .btn-common i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dir-rtl .portfolio__title-3 {
    text-align: right;
}

.dir-rtl .portfolio__title-3 span {
    padding-left: 0;
    padding-right: 200px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .portfolio__title-3 span {
        padding-right: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .portfolio__title-3 span {
        padding-right: 60px;
    }
}

.dir-rtl .portfolio__hero-area::after {
    left: unset;
}

.dir-rtl .portfolio__about .sec-title span {
    padding-left: 0;
    padding-right: 120px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .portfolio__about .sec-title span {
        display: inline-block;
        padding-right: 0;
    }
}

.dir-rtl .portfolio__about .sec-title span::before {
    left: unset;
    right: 0;
}

.dir-rtl .portfolio__about .brand-title-wrap {
    border: none;
    border-left: 1px solid var(--purple-2);
}

@media only screen and (max-width: 767px) {
    .dir-rtl .portfolio__about .brand-title-wrap {
        border: none;
    }
}

.dir-rtl .portfolio__about .brand-list {
    padding-left: 0;
    padding-right: 80px;
}

@media (max-width: 1023px) {
    .dir-rtl .portfolio__about .brand-list {
        padding-right: 0;
    }
}

.dir-rtl .portfolio__about-left img {
    right: unset;
    left: 100px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .portfolio__about-left img {
        display: none;
    }
}

.dir-rtl .portfolio__page .swiper-slide-active .portfolio__about-left img {
    -webkit-transform: rotateY(180deg) !important;
    transform: rotateY(180deg) !important;
}

.dir-rtl .portfolio__project::after {
    top: 100px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .portfolio__project .pp-prev {
        right: 40px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .portfolio__project .pp-prev {
        right: 60px;
    }
}

.dir-rtl .portfolio__project .pp-slider-wrapper {
    padding-left: 100px;
    padding-right: 150px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .portfolio__project .pp-slider-wrapper {
        padding-left: 140px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .portfolio__project .pp-slider-wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .portfolio__project .pp-slider-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
}

.dir-rtl .portfolio__project .pp-slide-thumb {
    margin-left: unset;
    margin-right: auto;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .portfolio__project .pp-slide-thumb {
        margin-right: 20px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .portfolio__project .pp-slide-thumb {
        margin-right: 20px;
    }
}

.dir-rtl .portfolio__project .pp-slide-thumb p {
    text-align: left;
}

.dir-rtl .portfolio__project .pp-slide-img img {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
}

.dir-rtl .portfolio__project .pp-slide-title {
    text-align: left;
}

.dir-rtl .portfolio__project-thumbs {
    margin-right: 0;
    margin-left: -150px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .portfolio__project-thumbs {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .portfolio__project-thumbs {
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .portfolio__project-thumbs {
        margin-left: 0;
    }
}

.dir-rtl .portfolio__project .pp-slide {
    padding: 80px 80px 80px 0px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .portfolio__project .pp-slide {
        padding: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .portfolio__project .pp-slide {
        padding: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .portfolio__project .pp-slide {
        padding: 60px;
    }
}

.dir-rtl .portfolio__hero .title.shape-circle::after {
    left: -50px;
    right: unset;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .portfolio__hero .title.shape-circle::after {
        left: -10px;
    }
}

@media (max-width: 1023px) {
    .dir-rtl .portfolio__hero .title.shape-circle::after {
        left: 0;
    }
}

.dir-rtl .portfolio__service .sec-text {
    background-image: url("/assets/imgs/shape/25.png");
    background-position: right 80px;
}

@media (max-width: 1400px) {
    .dir-rtl .portfolio__service .sec-text {
        background-position: right 0;
    }
}

.dir-rtl .portfolio__footer-area::after {
    left: unset;
    right: 50px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .portfolio__footer-area::after {
        right: 20px;
    }
}

.dir-rtl .portfolio__footer-area .pf-social h3::after {
    right: unset;
    left: -60px;
}

.dir-rtl .portfolio__icon-link {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dir-rtl .portfolio__item-4:hover .portfolio__icon-link {
    -webkit-transform: rotate(215deg);
    transform: rotate(215deg);
}

.dir-rtl .portfolio__item-12 p {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .portfolio__item-12 p {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.dir-rtl .portfolio__detail .block-img-text p {
    padding-left: 0;
    padding-right: 60px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .portfolio__detail .block-img-text p {
        padding-right: 0;
    }
}

.dir-rtl .portfolio__wrapper-6 {
    padding-left: 0;
    padding-right: 100px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .portfolio__wrapper-6 {
        padding-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .portfolio__wrapper-6 {
        padding-right: 0;
    }
}

.dir-rtl .testimonial__item.item-3 {
    text-align: left;
}

.dir-rtl .testimonial__slide {
    margin-left: -1px;
}

.dir-rtl .testimonial__slide-4 {
    text-align: right;
}

.dir-rtl .testimonial__img.b-left::before {
    left: 30px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .testimonial__img.b-left::before {
        left: 20px;
    }
}

.dir-rtl .testimonial__title-2 {
    padding: 100px 0px 20px 100px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .testimonial__title-2 {
        padding: 20px 0;
    }
}

.dir-rtl .testimonial__text-2 {
    padding-right: 0;
    padding-left: 40px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .testimonial__text-2 {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .testimonial__text-2 {
        padding-left: 0;
    }
}

.dir-rtl .testimonial__info-4 p {
    text-align: right;
}

.dir-rtl .testimonial__btn-4 i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dir-rtl .testimonial__video {
    margin-right: 0;
    margin-left: -112px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .testimonial__video {
        margin-left: 0;
    }
}

.dir-rtl .testimonial__pagination {
    left: 0;
    right: unset;
    -webkit-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .testimonial__pagination {
        -webkit-transform: translate(-60%, -50%);
        transform: translate(-60%, -50%);
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .testimonial__pagination {
        -webkit-transform: translate(-48%, -50%);
        transform: translate(-48%, -50%);
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .testimonial__pagination {
        -webkit-transform: translate(-40%, -50%);
        transform: translate(-40%, -50%);
    }
}

.dir-rtl .testimonial__inner-2 {
    background-position: 89% 80px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .testimonial__inner-2 {
        background-position: 50% 10px;
    }
}

.dir-rtl .testimonial__img.b-right::after {
    left: unset;
    right: 30px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .testimonial__img.b-right::after {
        right: 20px;
    }
}

.dir-rtl .price__icon span i {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

@media only screen and (max-width: 767px) {
    .dir-rtl .price__amount {
        right: unset;
        left: 30px;
    }
}

.dir-rtl .solution__area {
    padding-left: 0;
    padding-right: 100px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .solution__area {
        padding-right: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .solution__area {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.dir-rtl .solution__shape .shape-3 {
    left: 20%;
    top: 20%;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .solution__shape .shape-3 {
        left: 5%;
        top: 15%;
    }
}

.dir-rtl .solution__list li {
    padding-left: 0;
    padding-right: 15px;
}

.dir-rtl .solution__list li::after {
    left: unset;
    right: 0;
}

.dir-rtl .solution__mid p {
    padding-left: 0;
    padding-right: 190px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .solution__mid p {
        padding-right: 80px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .solution__mid p {
        padding-right: 50px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .solution__mid p {
        padding-right: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .solution__mid p {
        padding-right: 80px;
    }
}

.dir-rtl .solution__mid p::before {
    left: unset;
    right: 0;
}

.dir-rtl .solution__img-1::after {
    left: unset;
    right: 40px;
}

.dir-rtl .solution__img-3 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .solution__img-3 {
        float: left;
        -webkit-transform: rotate(180deg) translateY(60px);
        transform: rotate(180deg) translateY(60px);
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .solution__img-3 {
        float: left;
        -webkit-transform: rotate(180deg) translateY(60px);
        transform: rotate(180deg) translateY(60px);
    }
}

.dir-rtl .solution__btm ul {
    text-align: left;
}

.dir-rtl .brand__list-1 {
    border-left: 1px solid var(--white-3);
}

.dir-rtl .brand__list-2, .dir-rtl .brand__list-3 {
    border: none;
}

.dir-rtl .research__area {
    background-position: calc(100% - 300px) calc(100% - 220px);
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .research__area {
        background-position: calc(100% - 140px) calc(100% - 220px);
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .research__area {
        background-position: calc(100% - 100px) calc(100% - 140px);
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .research__area {
        background-position: calc(100% - 100px) calc(100% - 140px);
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .research__area {
        background-position: 98% 250px;
    }
}

.dir-rtl .research__area .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.dir-rtl .research__area .sec-title-wrapper {
    text-align: right;
}

.dir-rtl .research__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.dir-rtl .research__item:nth-child(odd) {
    padding-left: 0;
    padding-right: 100px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .research__item:nth-child(odd) {
        padding-right: 0;
    }
}

.dir-rtl .research__info {
    text-align: right;
}

.dir-rtl .research__tools {
    padding-left: 0;
    text-align: right;
    padding-right: 200px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .research__tools {
        padding-right: 108px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .research__tools {
        padding-right: 90px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .research__tools {
        padding-right: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .research__tools {
        padding-right: 0;
    }
}

.dir-rtl .counter__area-3 .sec-title-wrapper {
    text-align: right;
}

.dir-rtl .counter__wrapper-3 {
    padding-right: 30px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .counter__wrapper-3 {
        padding-right: 0;
    }
}

.dir-rtl .counter__item-3 {
    text-align: right;
}

.dir-rtl .counter__item {
    margin-left: 0;
    margin-right: -67px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .counter__item {
        margin-right: -60px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .counter__item {
        margin-right: -25px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .counter__item {
        margin-right: -27px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .counter__item {
        margin-right: 0;
    }
}

.dir-rtl .counter__item:first-child {
    margin-right: 0;
}

.dir-rtl .faq__list .accordion-button:not(.collapsed)::after, .dir-rtl .faq__list-3 .accordion-button:not(.collapsed)::after, .dir-rtl .faq__list-6 .accordion-button:not(.collapsed)::after, .dir-rtl .faq__list .accordion-button.collapsed::after, .dir-rtl .faq__list-3 .accordion-button.collapsed::after, .dir-rtl .faq__list-6 .accordion-button.collapsed::after {
    right: unset;
    left: 0;
}

.dir-rtl .faq__list-3 {
    padding-right: 0;
    padding-left: 80px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .faq__list-3 {
        padding-left: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .faq__list-3 {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .faq__list-3 {
        padding-left: 0;
    }
}

.dir-rtl .faq__list-3 .accordion-button:not(.collapsed)::after, .dir-rtl .faq__list-3 .accordion-button.collapsed::after {
    right: unset;
    left: 0;
}

.dir-rtl .faq__list-6 .accordion-button:not(.collapsed)::after, .dir-rtl .faq__list-6 .accordion-button.collapsed::after {
    right: unset;
    left: 0;
}

.dir-rtl .blog__area-2 #btn_wrapper, .dir-rtl .blog__area-2 .btn_wrapper {
    margin-left: 0;
    margin-right: auto;
}

.dir-rtl .blog__area-3 .sec-title-wrapper {
    padding-left: 0;
    padding-right: 330px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .blog__area-3 .sec-title-wrapper {
        padding-right: 180px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .blog__area-3 .sec-title-wrapper {
        padding-right: 0;
    }
}

.dir-rtl .blog__area-3 .sec-title-wrapper::after {
    left: 62%;
}

.dir-rtl .blog__area-3 .sec-title-wrapper p {
    margin-left: 0;
    margin-right: 220px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .blog__area-3 .sec-title-wrapper p {
        margin-right: 100px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .blog__area-3 .sec-title-wrapper p {
        margin-right: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .blog__area-3 .sec-title-wrapper p {
        margin-right: 0;
    }
}

.dir-rtl .blog__area-4 .sec-title-wrapper p {
    padding-right: 0;
    padding-left: 80px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .blog__area-4 .sec-title-wrapper p {
        padding-left: 30px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .blog__area-4 .sec-title-wrapper p {
        padding-left: 0;
    }
}

.dir-rtl .blog__detail-content ul li, .dir-rtl .blog__detail-content ol li {
    padding-left: 0;
    padding-right: 25px;
}

.dir-rtl .blog__info-3 {
    width: 63%;
    left: 0;
    right: unset;
    margin-left: 0px;
    margin-right: -50px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .blog__info-3 {
        width: 80%;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .blog__info-3 {
        width: 90%;
    }
}

.dir-rtl .blog__btn span {
    left: -28px;
    right: unset;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.dir-rtl .blog__detail-content ul li::before, .dir-rtl .blog__detail-content ol li::before {
    left: unset;
    right: 0;
}

.dir-rtl .blog__detail-date span {
    padding-left: 0;
    padding-right: 25px;
}

.dir-rtl .blog__detail-date span::before {
    left: 0;
    right: 8px;
}

.dir-rtl .btn-started i, .dir-rtl .blog__btn-4 i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dir-rtl .cta__list-left {
    padding-left: 0;
    padding-right: 15px;
}

.dir-rtl .cta__list-left li::before {
    left: unset;
    right: -15px;
}

.dir-rtl .cta__area-5::before {
    left: 43%;
}

.dir-rtl .footer__area-2 {
    background-image: unset;
    position: relative;
}

.dir-rtl .footer__area-2::before {
    position: absolute;
    content: "";
    height: 508px;
    width: 500px;
    left: 0px;
    top: 0;
    background-image: url("/assets/imgs/shape/4.png");
    background-repeat: no-repeat;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .footer__widget-3 {
        padding: 50px 30px 0 0;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .footer__widget-3 {
        margin-right: 0;
    }
}

.dir-rtl .footer__contact-3 {
    text-align: left;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .footer__contact-3 {
        text-align: center;
    }
}

.dir-rtl .footer__subscribe {
    margin-right: 0;
    margin-left: -60px;
    padding-right: 0;
    padding-left: 30px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .footer__subscribe {
        margin-left: -15px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .footer__subscribe {
        margin-left: -30px;
    }
}

.dir-rtl .footer__subscribe input {
    padding: 21px 15px 21px 50px;
}

.dir-rtl .footer__subscribe .subs-btn {
    right: unset;
    left: 20px;
}

.dir-rtl .footer__subscribe .subs-btn i {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.dir-rtl .footer__subscribe-2 {
    padding-left: 0;
    padding-right: 90px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .footer__subscribe-2 {
        padding-right: 40px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .footer__subscribe-2 {
        padding-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .footer__subscribe-2 {
        padding-right: 0;
    }
}

.dir-rtl .footer__subscribe-2::before {
    right: -20px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .footer__subscribe-2::before {
        right: -80px;
    }
}

.dir-rtl .footer__subscribe-2 input {
    padding: 20px 0 20px 80px;
}

.dir-rtl .footer__subscribe-2 .submit {
    left: 0;
    right: unset;
}

.dir-rtl .footer__subscribe-2 .submit img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dir-rtl .footer-line::after {
    right: 0;
    left: unset;
}

.dir-rtl .footer__inner {
    padding-left: 0;
    padding-right: 350px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .footer__inner {
        padding-right: 0;
    }
}

.dir-rtl .footer__top {
    text-align: left;
}

.dir-rtl .footer__row {
    margin-left: 0;
    margin-right: -500px;
}

@media only screen and (min-width: 1400px) and(max-width: 1919px) {
    .dir-rtl .footer__row {
        margin-right: -305px;
    }
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .footer__row {
        margin-right: -330px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .footer__row {
        margin-right: -340px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .footer__row {
        margin-right: -375px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .footer__row {
        margin-right: 0;
    }
}

.dir-rtl .footer__copyright {
    margin-left: 0;
    margin-right: -67px;
    padding: 35px 66px 35px 0;
}

.dir-rtl .footer__newsletter-6 button {
    right: unset;
    left: 20px;
}

.dir-rtl .footer__newsletter-6 button i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dir-rtl .footer__newsletter-6 input {
    padding: 16px 20px 16px 50px;
}

.dir-rtl .footer__widget-4 {
    margin-left: 0;
    margin-right: 60px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .footer__widget-4 {
        margin-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .footer__widget-4 {
        margin-right: 0;
    }
}

.dir-rtl .footer-menu li, .dir-rtl .footer-menu-2 li {
    padding-left: 0;
    padding-right: 80px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .footer-menu li, .dir-rtl .footer-menu-2 li {
        padding-right: 20px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .footer-menu li, .dir-rtl .footer-menu-2 li {
        padding-right: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .footer-menu li, .dir-rtl .footer-menu-2 li {
        padding-right: 8px;
        padding-left: 8px;
    }
}

.dir-rtl .section_wrapper::before {
    left: unset;
    right: 60px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .section_wrapper::before {
        right: 48px;
    }
}

.dir-rtl .hover_img {
    left: unset;
    right: 100%;
}

.dir-rtl .awards__items .date {
    text-align: left;
}

.dir-rtl .awards__content p {
    margin-left: 0;
    margin-right: 170px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .awards__content p {
        margin-right: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .awards__content p {
        margin-right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .awards__content p {
        margin-right: 0;
    }
}

.dir-rtl .client__area-8 .about-sub-right {
    text-align: left !important;
}

.dir-rtl .hero10:hover .hero10__content i {
    -webkit-transform: translateY(-50px) rotate(-135deg);
    transform: translateY(-50px) rotate(-135deg);
}

.dir-rtl .hero10__content {
    left: unset;
    right: 40px;
}

.dir-rtl .hero10__content i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media (max-width: 1365px) {
    .dir-rtl .hero10__content i {
        -webkit-transform: rotate(215deg);
        transform: rotate(215deg);
    }
}

.dir-rtl .scroll-top-2 {
    right: unset;
    left: 100px;
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .scroll-top-2 {
        left: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .scroll-top-2 {
        left: 20px;
    }
}

.dir-rtl .dis_port_4 {
    margin-left: 0;
    margin-right: 100px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .dis_port_4 {
        margin-right: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .dis_port_4 {
        margin-right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .dis_port_4 {
        margin-right: 20px;
    }
}

.dir-rtl .section_title_wrapper .title_right__inner__left {
    margin-right: 0;
    margin-left: 60px;
}

.dir-rtl .section_title_wrapper .title_right__inner__left span::before {
    right: unset;
    left: 80px;
}

.dir-rtl .gallary12__content img {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.dir-rtl .showcase__top-16 .title-right {
    margin-left: 0;
    margin-right: auto;
}

.dir-rtl .showcase__info-16 {
    left: unset;
    right: 50px;
}

.dir-rtl .showcase__title-16 span::before {
    left: unset;
    right: 0;
}

.dir-rtl .showcase__sub-title-16 {
    padding-left: unset;
    padding-right: 100px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .showcase__sub-title-16 {
        padding-right: 30px;
    }
}

.dir-rtl .mixtup_btn .wc-btn span {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

@media only screen and (min-width: 1920px) {
    .dir-rtl .team__slider {
        margin-left: 0;
        margin-right: 100px;
    }
}

.dir-rtl .job__detail-wrapper {
    padding-right: 0;
    padding-left: 120px;
}

@media only screen and (min-width: 1200px) and(max-width: 1399px) {
    .dir-rtl .job__detail-wrapper {
        padding-left: 30px;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .job__detail-wrapper {
        padding-left: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .job__detail-wrapper {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .job__detail-wrapper {
        padding-left: 0;
    }
}

.dir-rtl .job__detail-meta li {
    padding-right: 0;
    padding-left: 70px;
}

.dir-rtl .job__detail-content ul, .dir-rtl .job__detail-content ol {
    padding-left: 0;
    padding-right: 30px;
}

.dir-rtl .job__detail-content ul li::before, .dir-rtl .job__detail-content ol li::before {
    left: unset;
    right: -18px;
}

.dir-rtl .job__link {
    text-align: left;
}

.dir-rtl .job__link span::after {
    right: unset;
    left: 45px;
    -webkit-transform: translate(0, 0) rotate(215deg);
    transform: translate(0, 0) rotate(215deg);
}

.dir-rtl .job__link i, .dir-rtl .job__link span {
    -webkit-transform: rotate(215deg);
    transform: rotate(215deg);
}

.dir-rtl .job__item:hover .job__link i {
    -webkit-transform: rotate(215deg) translate(60px, 2px);
    transform: rotate(215deg) translate(60px, 2px);
}

.dir-rtl .job__item:hover .job__link span::after {
    right: unset;
    left: 0;
}

.dir-rtl .modal__apply .form-btn button {
    margin-left: inherit;
    margin-right: auto;
}

.dir-rtl .modal__close-2 {
    right: unset;
    left: 30px;
}

.dir-rtl .career__thumb .inherit {
    margin-right: 0;
    margin-left: -320px;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .career__thumb .inherit {
        margin-left: calc(-0.5 * var(--bs-gutter-x));
    }
}

.dir-rtl .career__benefits-list li {
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .dir-rtl .career__benefits-list li {
        margin-left: 0;
        margin-right: -10px;
    }

    .dir-rtl .career__benefits-list li:nth-child(2n + 1) {
        margin-right: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .career__benefits-list li:nth-child(3n + 1) {
        margin-left: -30px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .about__area-2 #btn_wrapper, .dir-rtl .about__area-2 .btn_wrapper {
        margin-right: 0;
    }

    .dir-rtl .section_title_wrapper .title_right {
        margin-right: auto;
    }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .career__benefits-list li:nth-child(2n + 1) {
        margin-left: -20px;
    }
}

.dir-rtl .faq__content {
    padding-left: 0;
    padding-right: 85px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .faq__content {
        padding-right: 0;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .faq__content {
        padding-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .faq__content {
        padding-right: 0;
    }
}

.dir-rtl .img-box img {
    left: unset;
    right: 0;
}

.dir-rtl .hero_layer_9 {
    direction: ltr;
}

.dir-rtl .part.showed {
    direction: rtl;
}

.dir-rtl .part.showed p {
    padding-left: 0;
    padding-right: 120px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .part.showed p {
        padding-right: 70px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .part.showed p {
        padding-right: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .part.showed p {
        padding-right: 45px;
    }
}

.dir-rtl .part.showed h2 span {
    padding-left: 0;
    padding-right: 90px;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .dir-rtl .part.showed h2 span {
        padding-right: 60px;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .dir-rtl .part.showed h2 span {
        padding-right: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .dir-rtl .part.showed h2 span {
        padding-right: 35px;
    }
}

.dir-rtl .part.showed h2 span::before {
    left: unset;
    right: 0;
}

.dir-rtl .roll__area-2 {
    direction: ltr;
}

.dir-rtl .switcher__icon, .dir-rtl .switcher__items {
    z-index: 9999;
}

.dark.dir-rtl .portfolio__about .brand-title-wrap {
    border-left: 1px solid var(--secondary);
}

@charset "UTF-8";
.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-range::-moz-focus-outer {
    border: 0;
}

.form-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    -webkit-appearance: none;
    appearance: none;
    background-color: #0d6efd;
    border: 0;
    border-radius: 1rem;
    -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none;
    }
}

.form-range::-webkit-slider-thumb:active {
    background-color: #b6d4fe;
}

.form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: var(--bs-secondary-bg);
    border-color: transparent;
    border-radius: 1rem;
}

.form-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    -moz-appearance: none;
    appearance: none;
    background-color: #0d6efd;
    border: 0;
    border-radius: 1rem;
    -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none;
    }
}

.form-range::-moz-range-thumb:active {
    background-color: #b6d4fe;
}

.form-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: var(--bs-secondary-bg);
    border-color: transparent;
    border-radius: 1rem;
}

.form-range:disabled {
    pointer-events: none;
}

.form-range:disabled::-webkit-slider-thumb {
    background-color: var(--bs-secondary-color);
}

.form-range:disabled::-moz-range-thumb {
    background-color: var(--bs-secondary-color);
}

.form-floating {
    position: relative;
}

.form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select {
    height: calc(3.5rem + calc(var(--bs-border-width) * 2));
    min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
    line-height: 1.25;
}

.form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    padding: 1rem 0.75rem;
    overflow: hidden;
    text-align: start;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    border: var(--bs-border-width) solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-floating > label {
        transition: none;
    }
}

.form-floating > .form-control, .form-floating > .form-control-plaintext {
    padding: 1rem 0.75rem;
}

.form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
    color: transparent;
}

.form-floating > .form-control::placeholder, .form-floating > .form-control-plaintext::placeholder {
    color: transparent;
}

.form-floating > .form-control:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown), .form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > .form-control:-webkit-autofill, .form-floating > .form-control-plaintext:-webkit-autofill {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
    color: rgba(var(--bs-body-color-rgb), 0.65);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-control-plaintext ~ label, .form-floating > .form-select ~ label {
    color: rgba(var(--bs-body-color-rgb), 0.65);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after {
    position: absolute;
    inset: 1rem 0.375rem;
    z-index: -1;
    height: 1.5em;
    content: "";
    background-color: var(--bs-body-bg);
    border-radius: var(--bs-border-radius);
}

.form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-select ~ label::after {
    position: absolute;
    inset: 1rem 0.375rem;
    z-index: -1;
    height: 1.5em;
    content: "";
    background-color: var(--bs-body-bg);
    border-radius: var(--bs-border-radius);
}

.form-floating > .form-control:-webkit-autofill ~ label {
    color: rgba(var(--bs-body-color-rgb), 0.65);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control-plaintext ~ label {
    border-width: var(--bs-border-width) 0;
}

.form-floating > :disabled ~ label, .form-floating > .form-control:disabled ~ label {
    color: #6c757d;
}

.form-floating > :disabled ~ label::after, .form-floating > .form-control:disabled ~ label::after {
    background-color: var(--bs-secondary-bg);
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group > .form-control, .input-group > .form-select, .input-group > .form-floating {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.input-group > .form-control:focus, .input-group > .form-select:focus, .input-group > .form-floating:focus-within {
    z-index: 5;
}

.input-group .btn {
    position: relative;
    z-index: 2;
}

.input-group .btn:focus {
    z-index: 5;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    text-align: center;
    white-space: nowrap;
    background-color: var(--bs-tertiary-bg);
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
}

.input-group-lg > .form-control, .input-group-lg > .form-select, .input-group-lg > .input-group-text, .input-group-lg > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: var(--bs-border-radius-lg);
}

.input-group-sm > .form-control, .input-group-sm > .form-select, .input-group-sm > .input-group-text, .input-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: var(--bs-border-radius-sm);
}

.input-group-lg > .form-select, .input-group-sm > .form-select {
    padding-right: 3rem;
}

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

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

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: calc(var(--bs-border-width) * -1);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group > .form-floating:not(:first-child) > .form-control, .input-group > .form-floating:not(:first-child) > .form-select {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: var(--bs-form-valid-color);
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    color: #fff;
    background-color: var(--bs-success);
    border-radius: var(--bs-border-radius);
}

.was-validated :valid ~ .valid-feedback, .was-validated :valid ~ .valid-tooltip, .is-valid ~ .valid-feedback, .is-valid ~ .valid-tooltip {
    display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
    border-color: var(--bs-form-valid-border-color);
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
    border-color: var(--bs-form-valid-border-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
    border-color: var(--bs-form-valid-border-color);
}

.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
    --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    padding-right: 4.125rem;
    background-position: right 0.75rem center, center right 2.25rem;
    background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
    border-color: var(--bs-form-valid-border-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.was-validated .form-control-color:valid, .form-control-color.is-valid {
    width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
    border-color: var(--bs-form-valid-border-color);
}

.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
    background-color: var(--bs-form-valid-color);
}

.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
    color: var(--bs-form-valid-color);
}

.form-check-inline .form-check-input ~ .valid-feedback {
    margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid, .was-validated .input-group > .form-select:not(:focus):valid, .input-group > .form-select:not(:focus).is-valid, .was-validated .input-group > .form-floating:not(:focus-within):valid, .input-group > .form-floating:not(:focus-within).is-valid {
    z-index: 3;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: var(--bs-form-invalid-color);
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    color: #fff;
    background-color: var(--bs-danger);
    border-radius: var(--bs-border-radius);
}

.was-validated :invalid ~ .invalid-feedback, .was-validated :invalid ~ .invalid-tooltip, .is-invalid ~ .invalid-feedback, .is-invalid ~ .invalid-tooltip {
    display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
    border-color: var(--bs-form-invalid-border-color);
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
    border-color: var(--bs-form-invalid-border-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
    border-color: var(--bs-form-invalid-border-color);
}

.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
    --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    padding-right: 4.125rem;
    background-position: right 0.75rem center, center right 2.25rem;
    background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
    border-color: var(--bs-form-invalid-border-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
    width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
    border-color: var(--bs-form-invalid-border-color);
}

.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
    background-color: var(--bs-form-invalid-color);
}

.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
    color: var(--bs-form-invalid-color);
}

.form-check-inline .form-check-input ~ .invalid-feedback {
    margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid, .was-validated .input-group > .form-select:not(:focus):invalid, .input-group > .form-select:not(:focus).is-invalid, .was-validated .input-group > .form-floating:not(:focus-within):invalid, .input-group > .form-floating:not(:focus-within).is-invalid {
    z-index: 4;
}

.btn {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family:;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: var(--bs-body-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-width: var(--bs-border-width);
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: var(--bs-border-radius);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
}

.btn-check + .btn:hover {
    color: var(--bs-btn-color);
    background-color: var(--bs-btn-bg);
    border-color: var(--bs-btn-border-color);
}

.btn:focus-visible {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
    outline: 0;
    box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn-check:focus-visible + .btn {
    border-color: var(--bs-btn-hover-border-color);
    outline: 0;
    box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
    color: var(--bs-btn-active-color);
    background-color: var(--bs-btn-active-bg);
    border-color: var(--bs-btn-active-border-color);
}

.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
    box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn:disabled, .btn.disabled, fieldset:disabled .btn {
    color: var(--bs-btn-disabled-color);
    pointer-events: none;
    background-color: var(--bs-btn-disabled-bg);
    border-color: var(--bs-btn-disabled-border-color);
    opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0d6efd;
    --bs-btn-border-color: #0d6efd;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}

.btn-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #6c757d;
    --bs-btn-border-color: #6c757d;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #5c636a;
    --bs-btn-hover-border-color: #565e64;
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #565e64;
    --bs-btn-active-border-color: #51585e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #6c757d;
    --bs-btn-disabled-border-color: #6c757d;
}

.btn-success {
    --bs-btn-color: #fff;
    --bs-btn-bg: #198754;
    --bs-btn-border-color: #198754;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #157347;
    --bs-btn-hover-border-color: #146c43;
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #146c43;
    --bs-btn-active-border-color: #13653f;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #198754;
    --bs-btn-disabled-border-color: #198754;
}

.btn-info {
    --bs-btn-color: #000;
    --bs-btn-bg: #0dcaf0;
    --bs-btn-border-color: #0dcaf0;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #31d2f2;
    --bs-btn-hover-border-color: #25cff2;
    --bs-btn-focus-shadow-rgb: 11, 172, 204;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #3dd5f3;
    --bs-btn-active-border-color: #25cff2;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #0dcaf0;
    --bs-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
    --bs-btn-color: #000;
    --bs-btn-bg: #ffc107;
    --bs-btn-border-color: #ffc107;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #ffca2c;
    --bs-btn-hover-border-color: #ffc720;
    --bs-btn-focus-shadow-rgb: 217, 164, 6;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ffcd39;
    --bs-btn-active-border-color: #ffc720;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #ffc107;
    --bs-btn-disabled-border-color: #ffc107;
}

.btn-danger {
    --bs-btn-color: #fff;
    --bs-btn-bg: #dc3545;
    --bs-btn-border-color: #dc3545;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #bb2d3b;
    --bs-btn-hover-border-color: #b02a37;
    --bs-btn-focus-shadow-rgb: 225, 83, 97;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #b02a37;
    --bs-btn-active-border-color: #a52834;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #dc3545;
    --bs-btn-disabled-border-color: #dc3545;
}

.btn-light {
    --bs-btn-color: #000;
    --bs-btn-bg: #f8f9fa;
    --bs-btn-border-color: #f8f9fa;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #d3d4d5;
    --bs-btn-hover-border-color: #c6c7c8;
    --bs-btn-focus-shadow-rgb: 211, 212, 213;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #c6c7c8;
    --bs-btn-active-border-color: #babbbc;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #f8f9fa;
    --bs-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
    --bs-btn-color: #fff;
    --bs-btn-bg: #212529;
    --bs-btn-border-color: #212529;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #424649;
    --bs-btn-hover-border-color: #373b3e;
    --bs-btn-focus-shadow-rgb: 66, 70, 73;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #4d5154;
    --bs-btn-active-border-color: #373b3e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #212529;
    --bs-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
    --bs-btn-color: #0d6efd;
    --bs-btn-border-color: #0d6efd;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0d6efd;
    --bs-btn-hover-border-color: #0d6efd;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0d6efd;
    --bs-btn-active-border-color: #0d6efd;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0d6efd;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0d6efd;
    --bs-gradient: none;
}

.btn-outline-secondary {
    --bs-btn-color: #6c757d;
    --bs-btn-border-color: #6c757d;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #6c757d;
    --bs-btn-hover-border-color: #6c757d;
    --bs-btn-focus-shadow-rgb: 108, 117, 125;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #6c757d;
    --bs-btn-active-border-color: #6c757d;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #6c757d;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #6c757d;
    --bs-gradient: none;
}

.btn-outline-success {
    --bs-btn-color: #198754;
    --bs-btn-border-color: #198754;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #198754;
    --bs-btn-hover-border-color: #198754;
    --bs-btn-focus-shadow-rgb: 25, 135, 84;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #198754;
    --bs-btn-active-border-color: #198754;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #198754;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #198754;
    --bs-gradient: none;
}

.btn-outline-info {
    --bs-btn-color: #0dcaf0;
    --bs-btn-border-color: #0dcaf0;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #0dcaf0;
    --bs-btn-hover-border-color: #0dcaf0;
    --bs-btn-focus-shadow-rgb: 13, 202, 240;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #0dcaf0;
    --bs-btn-active-border-color: #0dcaf0;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0dcaf0;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0dcaf0;
    --bs-gradient: none;
}

.btn-outline-warning {
    --bs-btn-color: #ffc107;
    --bs-btn-border-color: #ffc107;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #ffc107;
    --bs-btn-hover-border-color: #ffc107;
    --bs-btn-focus-shadow-rgb: 255, 193, 7;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ffc107;
    --bs-btn-active-border-color: #ffc107;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #ffc107;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #ffc107;
    --bs-gradient: none;
}

.btn-outline-danger {
    --bs-btn-color: #dc3545;
    --bs-btn-border-color: #dc3545;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #dc3545;
    --bs-btn-hover-border-color: #dc3545;
    --bs-btn-focus-shadow-rgb: 220, 53, 69;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #dc3545;
    --bs-btn-active-border-color: #dc3545;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #dc3545;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #dc3545;
    --bs-gradient: none;
}

.btn-outline-light {
    --bs-btn-color: #f8f9fa;
    --bs-btn-border-color: #f8f9fa;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #f8f9fa;
    --bs-btn-hover-border-color: #f8f9fa;
    --bs-btn-focus-shadow-rgb: 248, 249, 250;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #f8f9fa;
    --bs-btn-active-border-color: #f8f9fa;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #f8f9fa;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #f8f9fa;
    --bs-gradient: none;
}

.btn-outline-dark {
    --bs-btn-color: #212529;
    --bs-btn-border-color: #212529;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #212529;
    --bs-btn-hover-border-color: #212529;
    --bs-btn-focus-shadow-rgb: 33, 37, 41;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #212529;
    --bs-btn-active-border-color: #212529;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #212529;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #212529;
    --bs-gradient: none;
}

.btn-link {
    --bs-btn-font-weight: 400;
    --bs-btn-color: var(--bs-link-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: var(--bs-link-hover-color);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-active-color: var(--bs-link-hover-color);
    --bs-btn-active-border-color: transparent;
    --bs-btn-disabled-color: #6c757d;
    --bs-btn-disabled-border-color: transparent;
    --bs-btn-box-shadow: 0 0 0 #000;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    text-decoration: underline;
}

.btn-link:focus-visible {
    color: var(--bs-btn-color);
}

.btn-link:hover {
    color: var(--bs-btn-hover-color);
}

.btn-lg, .btn-group-lg > .btn {
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-padding-x: 1rem;
    --bs-btn-font-size: 1.25rem;
    --bs-btn-border-radius: var(--bs-border-radius-lg);
}

.btn-sm, .btn-group-sm > .btn {
    --bs-btn-padding-y: 0.25rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-font-size: 0.875rem;
    --bs-btn-border-radius: var(--bs-border-radius-sm);
}

.fade {
    transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    }
}

.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none;
    }
}

.collapsing.collapse-horizontal {
    width: 0;
    height: auto;
    transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
    .collapsing.collapse-horizontal {
        transition: none;
    }
}

.dropup, .dropend, .dropdown, .dropstart, .dropup-center, .dropdown-center {
    position: relative;
}

.dropdown-toggle {
    white-space: nowrap;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropdown-menu {
    --bs-dropdown-zindex: 1000;
    --bs-dropdown-min-width: 10rem;
    --bs-dropdown-padding-x: 0;
    --bs-dropdown-padding-y: 0.5rem;
    --bs-dropdown-spacer: 0.125rem;
    --bs-dropdown-font-size: 1rem;
    --bs-dropdown-color: var(--bs-body-color);
    --bs-dropdown-bg: var(--bs-body-bg);
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-border-radius: var(--bs-border-radius);
    --bs-dropdown-border-width: var(--bs-border-width);
    --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-divider-margin-y: 0.5rem;
    --bs-dropdown-box-shadow: var(--bs-box-shadow);
    --bs-dropdown-link-color: var(--bs-body-color);
    --bs-dropdown-link-hover-color: var(--bs-body-color);
    --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #0d6efd;
    --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-item-padding-y: 0.25rem;
    --bs-dropdown-header-color: #6c757d;
    --bs-dropdown-header-padding-x: 1rem;
    --bs-dropdown-header-padding-y: 0.5rem;
    position: absolute;
    z-index: var(--bs-dropdown-zindex);
    display: none;
    min-width: var(--bs-dropdown-min-width);
    padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
    margin: 0;
    font-size: var(--bs-dropdown-font-size);
    color: var(--bs-dropdown-color);
    text-align: left;
    list-style: none;
    background-color: var(--bs-dropdown-bg);
    background-clip: padding-box;
    border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
    border-radius: var(--bs-dropdown-border-radius);
}

.dropdown-menu[data-bs-popper] {
    top: 100%;
    left: 0;
    margin-top: var(--bs-dropdown-spacer);
}

.dropdown-menu-start {
    --bs-position: start;
}

.dropdown-menu-start[data-bs-popper] {
    right: auto;
    left: 0;
}

.dropdown-menu-end {
    --bs-position: end;
}

.dropdown-menu-end[data-bs-popper] {
    right: 0;
    left: auto;
}

@media (min-width: 576px) {
    .dropdown-menu-sm-start {
        --bs-position: start;
    }

    .dropdown-menu-sm-start[data-bs-popper] {
        right: auto;
        left: 0;
    }

    .dropdown-menu-sm-end {
        --bs-position: end;
    }

    .dropdown-menu-sm-end[data-bs-popper] {
        right: 0;
        left: auto;
    }
}

@media (min-width: 768px) {
    .dropdown-menu-md-start {
        --bs-position: start;
    }

    .dropdown-menu-md-start[data-bs-popper] {
        right: auto;
        left: 0;
    }

    .dropdown-menu-md-end {
        --bs-position: end;
    }

    .dropdown-menu-md-end[data-bs-popper] {
        right: 0;
        left: auto;
    }
}

@media (min-width: 992px) {
    .dropdown-menu-lg-start {
        --bs-position: start;
    }

    .dropdown-menu-lg-start[data-bs-popper] {
        right: auto;
        left: 0;
    }

    .dropdown-menu-lg-end {
        --bs-position: end;
    }

    .dropdown-menu-lg-end[data-bs-popper] {
        right: 0;
        left: auto;
    }
}

@media (min-width: 1200px) {
    .dropdown-menu-xl-start {
        --bs-position: start;
    }

    .dropdown-menu-xl-start[data-bs-popper] {
        right: auto;
        left: 0;
    }

    .dropdown-menu-xl-end {
        --bs-position: end;
    }

    .dropdown-menu-xl-end[data-bs-popper] {
        right: 0;
        left: auto;
    }
}

@media (min-width: 1400px) {
    .dropdown-menu-xxl-start {
        --bs-position: start;
    }

    .dropdown-menu-xxl-start[data-bs-popper] {
        right: auto;
        left: 0;
    }

    .dropdown-menu-xxl-end {
        --bs-position: end;
    }

    .dropdown-menu-xxl-end[data-bs-popper] {
        right: 0;
        left: auto;
    }
}

.dropup .dropdown-menu[data-bs-popper] {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: var(--bs-dropdown-spacer);
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: var(--bs-dropdown-spacer);
}

.dropend .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
}

.dropend .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropend .dropdown-toggle::after {
    vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: var(--bs-dropdown-spacer);
}

.dropstart .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
}

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

.dropstart .dropdown-toggle::before {
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0.3em solid;
    border-bottom: 0.3em solid transparent;
}

.dropstart .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropstart .dropdown-toggle::before {
    vertical-align: 0;
}

.dropdown-divider {
    height: 0;
    margin: var(--bs-dropdown-divider-margin-y) 0;
    overflow: hidden;
    border-top: 1px solid var(--bs-dropdown-divider-bg);
    opacity: 1;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: var(--bs-dropdown-item-border-radius, 0);
}

.dropdown-item:hover, .dropdown-item:focus {
    color: var(--bs-dropdown-link-hover-color);
    background-color: var(--bs-dropdown-link-hover-bg);
}

.dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--bs-dropdown-link-active-bg);
}

.dropdown-item.disabled, .dropdown-item:disabled {
    color: var(--bs-dropdown-link-disabled-color);
    pointer-events: none;
    background-color: transparent;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-header {
    display: block;
    padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--bs-dropdown-header-color);
    white-space: nowrap;
}

.dropdown-item-text {
    display: block;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    color: var(--bs-dropdown-link-color);
}

.dropdown-menu-dark {
    --bs-dropdown-color: #dee2e6;
    --bs-dropdown-bg: #343a40;
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-box-shadow:;
    --bs-dropdown-link-color: #dee2e6;
    --bs-dropdown-link-hover-color: #fff;
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #0d6efd;
    --bs-dropdown-link-disabled-color: #adb5bd;
    --bs-dropdown-header-color: #adb5bd;
}

.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}

.btn-group > .btn, .btn-group-vertical > .btn {
    position: relative;
    flex: 1 1 auto;
}

.btn-group > .btn-check:checked + .btn, .btn-group > .btn-check:focus + .btn, .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn-check:checked + .btn, .btn-group-vertical > .btn-check:focus + .btn, .btn-group-vertical > .btn:hover, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn.active {
    z-index: 1;
}

.btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-toolbar .input-group {
    width: auto;
}

.btn-group {
    border-radius: var(--bs-border-radius);
}

.btn-group > :not(.btn-check:first-child) + .btn, .btn-group > .btn-group:not(:first-child) {
    margin-left: calc(var(--bs-border-width) * -1);
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle), .btn-group > .btn.dropdown-toggle-split:first-child, .btn-group > .btn-group:not(:last-child) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-group > .btn:nth-child(n + 3), .btn-group > :not(.btn-check) + .btn, .btn-group > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
    padding-right: 0.5625rem;
    padding-left: 0.5625rem;
}

.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
    margin-left: 0;
}

.dropstart .dropdown-toggle-split::before {
    margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
    padding-right: 0.375rem;
    padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.btn-group-vertical {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group {
    width: 100%;
}

.btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .btn-group:not(:first-child) {
    margin-top: calc(var(--bs-border-width) * -1);
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn ~ .btn, .btn-group-vertical > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.nav {
    --bs-nav-link-padding-x: 1rem;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight:;
    --bs-nav-link-color: var(--bs-link-color);
    --bs-nav-link-hover-color: var(--bs-link-hover-color);
    --bs-nav-link-disabled-color: var(--bs-secondary-color);
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: var(--bs-nav-link-color);
    text-decoration: none;
    background: none;
    border: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .nav-link {
        transition: none;
    }
}

.nav-link:hover, .nav-link:focus {
    color: var(--bs-nav-link-hover-color);
}

.nav-link:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.nav-link.disabled, .nav-link:disabled {
    color: var(--bs-nav-link-disabled-color);
    pointer-events: none;
    cursor: default;
}

.nav-tabs {
    --bs-nav-tabs-border-width: var(--bs-border-width);
    --bs-nav-tabs-border-color: var(--bs-border-color);
    --bs-nav-tabs-border-radius: var(--bs-border-radius);
    --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
    --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
    --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
    --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
    border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}

.nav-tabs .nav-link {
    margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
    border: var(--bs-nav-tabs-border-width) solid transparent;
    border-top-left-radius: var(--bs-nav-tabs-border-radius);
    border-top-right-radius: var(--bs-nav-tabs-border-radius);
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
    isolation: isolate;
    border-color: var(--bs-nav-tabs-link-hover-border-color);
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: var(--bs-nav-tabs-link-active-color);
    background-color: var(--bs-nav-tabs-link-active-bg);
    border-color: var(--bs-nav-tabs-link-active-border-color);
}

.nav-tabs .dropdown-menu {
    margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.nav-pills {
    --bs-nav-pills-border-radius: var(--bs-border-radius);
    --bs-nav-pills-link-active-color: #fff;
    --bs-nav-pills-link-active-bg: #0d6efd;
}

.nav-pills .nav-link {
    border-radius: var(--bs-nav-pills-border-radius);
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-underline {
    --bs-nav-underline-gap: 1rem;
    --bs-nav-underline-border-width: 0.125rem;
    --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
    gap: var(--bs-nav-underline-gap);
}

.nav-underline .nav-link {
    padding-right: 0;
    padding-left: 0;
    border-bottom: var(--bs-nav-underline-border-width) solid transparent;
}

.nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
    border-bottom-color: currentcolor;
}

.nav-underline .nav-link.active, .nav-underline .show > .nav-link {
    font-weight: 700;
    color: var(--bs-nav-underline-link-active-color);
    border-bottom-color: currentcolor;
}

.nav-fill > .nav-link, .nav-fill .nav-item {
    flex: 1 1 auto;
    text-align: center;
}

.nav-justified > .nav-link, .nav-justified .nav-item {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center;
}

.nav-fill .nav-item .nav-link, .nav-justified .nav-item .nav-link {
    width: 100%;
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.navbar {
    --bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 0.5rem;
    --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
    --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
    --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
    --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
    --bs-navbar-brand-padding-y: 0.3125rem;
    --bs-navbar-brand-margin-end: 1rem;
    --bs-navbar-brand-font-size: 1.25rem;
    --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
    --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
    --bs-navbar-nav-link-padding-x: 0.5rem;
    --bs-navbar-toggler-padding-y: 0.25rem;
    --bs-navbar-toggler-padding-x: 0.75rem;
    --bs-navbar-toggler-font-size: 1.25rem;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
    --bs-navbar-toggler-border-radius: var(--bs-border-radius);
    --bs-navbar-toggler-focus-width: 0.25rem;
    --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}

.navbar > .container, .navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    padding-top: var(--bs-navbar-brand-padding-y);
    padding-bottom: var(--bs-navbar-brand-padding-y);
    margin-right: var(--bs-navbar-brand-margin-end);
    font-size: var(--bs-navbar-brand-font-size);
    color: var(--bs-navbar-brand-color);
    text-decoration: none;
    white-space: nowrap;
}

.navbar-brand:hover, .navbar-brand:focus {
    color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight:;
    --bs-nav-link-color: var(--bs-navbar-color);
    --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
    --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--bs-navbar-active-color);
}

.navbar-nav .dropdown-menu {
    position: static;
}

.navbar-text {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: var(--bs-navbar-color);
}

.navbar-text a, .navbar-text a:hover, .navbar-text a:focus {
    color: var(--bs-navbar-active-color);
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: transparent;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}

@media (prefers-reduced-motion: reduce) {
    .navbar-toggler {
        transition: none;
    }
}

.navbar-toggler:hover {
    text-decoration: none;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-nav-scroll {
    max-height: var(--bs-scroll-height, 75vh);
    overflow-y: auto;
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-sm .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
    }

    .navbar-expand-sm .navbar-nav-scroll {
        overflow: visible;
    }

    .navbar-expand-sm .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand-sm .navbar-toggler {
        display: none;
    }

    .navbar-expand-sm .offcanvas {
        position: static;
        z-index: auto;
        flex-grow: 1;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        background-color: transparent !important;
        border: 0 !important;
        transform: none !important;
        transition: none;
    }

    .navbar-expand-sm .offcanvas .offcanvas-header {
        display: none;
    }

    .navbar-expand-sm .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }
}

@media (min-width: 768px) {
    .navbar-expand-md {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-md .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
    }

    .navbar-expand-md .navbar-nav-scroll {
        overflow: visible;
    }

    .navbar-expand-md .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand-md .navbar-toggler {
        display: none;
    }

    .navbar-expand-md .offcanvas {
        position: static;
        z-index: auto;
        flex-grow: 1;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        background-color: transparent !important;
        border: 0 !important;
        transform: none !important;
        transition: none;
    }

    .navbar-expand-md .offcanvas .offcanvas-header {
        display: none;
    }

    .navbar-expand-md .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
    }

    .navbar-expand-lg .navbar-nav-scroll {
        overflow: visible;
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

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

    .navbar-expand-lg .offcanvas {
        position: static;
        z-index: auto;
        flex-grow: 1;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        background-color: transparent !important;
        border: 0 !important;
        transform: none !important;
        transition: none;
    }

    .navbar-expand-lg .offcanvas .offcanvas-header {
        display: none;
    }

    .navbar-expand-lg .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }
}

@media (min-width: 1200px) {
    .navbar-expand-xl {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-xl .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
    }

    .navbar-expand-xl .navbar-nav-scroll {
        overflow: visible;
    }

    .navbar-expand-xl .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand-xl .navbar-toggler {
        display: none;
    }

    .navbar-expand-xl .offcanvas {
        position: static;
        z-index: auto;
        flex-grow: 1;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        background-color: transparent !important;
        border: 0 !important;
        transform: none !important;
        transition: none;
    }

    .navbar-expand-xl .offcanvas .offcanvas-header {
        display: none;
    }

    .navbar-expand-xl .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }
}

@media (min-width: 1400px) {
    .navbar-expand-xxl {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-xxl .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-xxl .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar-expand-xxl .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
    }

    .navbar-expand-xxl .navbar-nav-scroll {
        overflow: visible;
    }

    .navbar-expand-xxl .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand-xxl .navbar-toggler {
        display: none;
    }

    .navbar-expand-xxl .offcanvas {
        position: static;
        z-index: auto;
        flex-grow: 1;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        background-color: transparent !important;
        border: 0 !important;
        transform: none !important;
        transition: none;
    }

    .navbar-expand-xxl .offcanvas .offcanvas-header {
        display: none;
    }

    .navbar-expand-xxl .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }
}

.navbar-expand {
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.navbar-expand .navbar-nav {
    flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
}

.navbar-expand .navbar-nav-scroll {
    overflow: visible;
}

.navbar-expand .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
}

.navbar-expand .navbar-toggler {
    display: none;
}

.navbar-expand .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
}

.navbar-expand .offcanvas .offcanvas-header {
    display: none;
}

.navbar-expand .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
}

.navbar-dark, .navbar[data-bs-theme=dark] {
    --bs-navbar-color: rgba(255, 255, 255, 0.55);
    --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
    --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
    --bs-navbar-active-color: #fff;
    --bs-navbar-brand-color: #fff;
    --bs-navbar-brand-hover-color: #fff;
    --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

[data-bs-theme=dark] .navbar-toggler-icon {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.card {
    --bs-card-spacer-y: 1rem;
    --bs-card-spacer-x: 1rem;
    --bs-card-title-spacer-y: 0.5rem;
    --bs-card-title-color:;
    --bs-card-subtitle-color:;
    --bs-card-border-width: var(--bs-border-width);
    --bs-card-border-color: var(--bs-border-color-translucent);
    --bs-card-border-radius: var(--bs-border-radius);
    --bs-card-box-shadow:;
    --bs-card-inner-border-radius: calc(var(--bs-border-radius) -(var(--bs-border-width)));
    --bs-card-cap-padding-y: 0.5rem;
    --bs-card-cap-padding-x: 1rem;
    --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
    --bs-card-cap-color:;
    --bs-card-height:;
    --bs-card-color:;
    --bs-card-bg: var(--bs-body-bg);
    --bs-card-img-overlay-padding: 1rem;
    --bs-card-group-margin: 0.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: var(--bs-card-height);
    color: var(--bs-body-color);
    word-wrap: break-word;
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    border-radius: var(--bs-card-border-radius);
}

.card > hr {
    margin-right: 0;
    margin-left: 0;
}

.card > .list-group {
    border-top: inherit;
    border-bottom: inherit;
}

.card > .list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: var(--bs-card-inner-border-radius);
    border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card > .list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: var(--bs-card-inner-border-radius);
    border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card > .card-header + .list-group, .card > .list-group + .card-footer {
    border-top: 0;
}

.card-body {
    flex: 1 1 auto;
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
    color: var(--bs-card-color);
}

.card-title {
    margin-bottom: var(--bs-card-title-spacer-y);
    color: var(--bs-card-title-color);
}

.card-subtitle {
    margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
    margin-bottom: 0;
    color: var(--bs-card-subtitle-color);
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link + .card-link {
    margin-left: var(--bs-card-spacer-x);
}

.card-header {
    padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
    margin-bottom: 0;
    color: var(--bs-card-cap-color);
    background-color: var(--bs-card-cap-bg);
    border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.card-header:first-child {
    border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.card-footer {
    padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
    color: var(--bs-card-cap-color);
    background-color: var(--bs-card-cap-bg);
    border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.card-footer:last-child {
    border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.card-header-tabs {
    margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
    margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
    margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
    border-bottom: 0;
}

.card-header-tabs .nav-link.active {
    background-color: var(--bs-card-bg);
    border-bottom-color: var(--bs-card-bg);
}

.card-header-pills {
    margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
    margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: var(--bs-card-img-overlay-padding);
    border-radius: var(--bs-card-inner-border-radius);
}

.card-img, .card-img-top, .card-img-bottom {
    width: 100%;
}

.card-img, .card-img-top {
    border-top-left-radius: var(--bs-card-inner-border-radius);
    border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card-img, .card-img-bottom {
    border-bottom-right-radius: var(--bs-card-inner-border-radius);
    border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card-group > .card {
    margin-bottom: var(--bs-card-group-margin);
}

@media (min-width: 576px) {
    .card-group {
        display: flex;
        flex-flow: row wrap;
    }

    .card-group > .card {
        flex: 1 0 0%;
        margin-bottom: 0;
    }

    .card-group > .card + .card {
        margin-left: 0;
        border-left: 0;
    }

    .card-group > .card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .card-group > .card:not(:last-child) .card-img-top, .card-group > .card:not(:last-child) .card-header {
        border-top-right-radius: 0;
    }

    .card-group > .card:not(:last-child) .card-img-bottom, .card-group > .card:not(:last-child) .card-footer {
        border-bottom-right-radius: 0;
    }

    .card-group > .card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .card-group > .card:not(:first-child) .card-img-top, .card-group > .card:not(:first-child) .card-header {
        border-top-left-radius: 0;
    }

    .card-group > .card:not(:first-child) .card-img-bottom, .card-group > .card:not(:first-child) .card-footer {
        border-bottom-left-radius: 0;
    }
}

.accordion {
    --bs-accordion-color: var(--bs-body-color);
    --bs-accordion-bg: var(--bs-body-bg);
    --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
    --bs-accordion-border-color: var(--cnvs-contrast-300);
    --bs-accordion-border-width: var(--bs-border-width);
    --bs-accordion-border-radius: var(--bs-border-radius);
    --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) -(var(--bs-border-width)));
    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-btn-color: var(--bs-body-color);
    --bs-accordion-btn-bg: var(--bs-accordion-bg);
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-focus-border-color: #86b7fe;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: var(--bs-primary-text-emphasis);
    --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
    font-size: 1rem;
    color: var(--bs-accordion-btn-color);
    text-align: left;
    background-color: var(--bs-accordion-btn-bg);
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: var(--bs-accordion-transition);
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button {
        transition: none;
    }
}

.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: var(--bs-accordion-active-bg);
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button::after {
        transition: none;
    }
}

.accordion-button:hover {
    z-index: 2;
}

.accordion-button:focus {
    z-index: 3;
    border-color: var(--bs-accordion-btn-focus-border-color);
    outline: 0;
    box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-item {
    color: var(--bs-accordion-color);
    background-color: var(--bs-accordion-bg);
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.accordion-item:first-of-type {
    border-top-left-radius: var(--bs-accordion-border-radius);
    border-top-right-radius: var(--bs-accordion-border-radius);
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: var(--bs-accordion-inner-border-radius);
    border-top-right-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-item:not(:first-of-type) {
    border-top: 0;
}

.accordion-item:last-of-type {
    border-bottom-right-radius: var(--bs-accordion-border-radius);
    border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
    border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-item:last-of-type .accordion-collapse {
    border-bottom-right-radius: var(--bs-accordion-border-radius);
    border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
    padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush .accordion-collapse {
    border-width: 0;
}

.accordion-flush .accordion-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.accordion-flush .accordion-item:first-child {
    border-top: 0;
}

.accordion-flush .accordion-item:last-child {
    border-bottom: 0;
}

.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 0;
}

[data-bs-theme=dark] .accordion-button::after {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.breadcrumb {
    --bs-breadcrumb-padding-x: 0;
    --bs-breadcrumb-padding-y: 0;
    --bs-breadcrumb-margin-bottom: 1rem;
    --bs-breadcrumb-bg:;
    --bs-breadcrumb-border-radius:;
    --bs-breadcrumb-divider-color: var(--bs-secondary-color);
    --bs-breadcrumb-item-padding-x: 0.5rem;
    --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
    display: flex;
    flex-wrap: wrap;
    padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
    margin-bottom: var(--bs-breadcrumb-margin-bottom);
    font-size: var(--bs-breadcrumb-font-size);
    list-style: none;
    background-color: var(--bs-breadcrumb-bg);
    border-radius: var(--bs-breadcrumb-border-radius);
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: var(--bs-breadcrumb-item-padding-x);
}

.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: var(--bs-breadcrumb-divider-color);
    content: var(--bs-breadcrumb-divider, "/");
}

.breadcrumb-item.active {
    color: var(--bs-breadcrumb-item-active-color);
}

.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--bs-link-color);
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: var(--bs-border-width);
    --bs-pagination-border-color: var(--bs-border-color);
    --bs-pagination-border-radius: var(--bs-border-radius);
    --bs-pagination-hover-color: var(--bs-link-hover-color);
    --bs-pagination-hover-bg: var(--bs-tertiary-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: var(--bs-link-hover-color);
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: #0d6efd;
    --bs-pagination-active-border-color: #0d6efd;
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    display: flex;
    padding-left: 0;
    list-style: none;
}

.page-link {
    position: relative;
    display: block;
    padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
    font-size: var(--bs-pagination-font-size);
    color: var(--bs-pagination-color);
    text-decoration: none;
    background-color: var(--bs-pagination-bg);
    border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .page-link {
        transition: none;
    }
}

.page-link:hover {
    z-index: 2;
    color: var(--bs-pagination-hover-color);
    background-color: var(--bs-pagination-hover-bg);
    border-color: var(--bs-pagination-hover-border-color);
}

.page-link:focus {
    z-index: 3;
    color: var(--bs-pagination-focus-color);
    background-color: var(--bs-pagination-focus-bg);
    outline: 0;
    box-shadow: var(--bs-pagination-focus-box-shadow);
}

.page-link.active, .active > .page-link {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: var(--bs-pagination-active-bg);
    border-color: var(--bs-pagination-active-border-color);
}

.page-link.disabled, .disabled > .page-link {
    color: var(--bs-pagination-disabled-color);
    pointer-events: none;
    background-color: var(--bs-pagination-disabled-bg);
    border-color: var(--bs-pagination-disabled-border-color);
}

.page-item:not(:first-child) .page-link {
    margin-left: calc(var(--bs-border-width) * -1);
}

.page-item:first-child .page-link {
    border-top-left-radius: var(--bs-pagination-border-radius);
    border-bottom-left-radius: var(--bs-pagination-border-radius);
}

.page-item:last-child .page-link {
    border-top-right-radius: var(--bs-pagination-border-radius);
    border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.pagination-lg {
    --bs-pagination-padding-x: 1.5rem;
    --bs-pagination-padding-y: 0.75rem;
    --bs-pagination-font-size: 1.25rem;
    --bs-pagination-border-radius: var(--bs-border-radius-lg);
}

.pagination-sm {
    --bs-pagination-padding-x: 0.5rem;
    --bs-pagination-padding-y: 0.25rem;
    --bs-pagination-font-size: 0.875rem;
    --bs-pagination-border-radius: var(--bs-border-radius-sm);
}

.badge {
    --bs-badge-padding-x: 0.65em;
    --bs-badge-padding-y: 0.35em;
    --bs-badge-font-size: 0.75em;
    --bs-badge-font-weight: 700;
    --bs-badge-color: #fff;
    --bs-badge-border-radius: var(--bs-border-radius);
    display: inline-block;
    padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
    font-size: var(--bs-badge-font-size);
    font-weight: var(--bs-badge-font-weight);
    line-height: 1;
    color: var(--bs-badge-color);
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: var(--bs-badge-border-radius);
}

.badge:empty {
    display: none;
}

.btn .badge {
    position: relative;
    top: -1px;
}

.alert {
    --bs-alert-bg: transparent;
    --bs-alert-padding-x: 1rem;
    --bs-alert-padding-y: 1rem;
    --bs-alert-margin-bottom: 1rem;
    --bs-alert-color: inherit;
    --bs-alert-border-color: transparent;
    --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
    --bs-alert-border-radius: var(--bs-border-radius);
    --bs-alert-link-color: inherit;
    position: relative;
    padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
    margin-bottom: var(--bs-alert-margin-bottom);
    color: var(--bs-alert-color);
    background-color: var(--bs-alert-bg);
    border: var(--bs-alert-border);
    border-radius: var(--bs-alert-border-radius);
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
    color: var(--bs-alert-link-color);
}

.alert-dismissible {
    padding-right: 3rem;
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 1.25rem 1rem;
}

.alert-primary {
    --bs-alert-color: var(--bs-primary-text-emphasis);
    --bs-alert-bg: var(--bs-primary-bg-subtle);
    --bs-alert-border-color: var(--bs-primary-border-subtle);
    --bs-alert-link-color: var(--bs-primary-text-emphasis);
}

.alert-secondary {
    --bs-alert-color: var(--bs-secondary-text-emphasis);
    --bs-alert-bg: var(--bs-secondary-bg-subtle);
    --bs-alert-border-color: var(--bs-secondary-border-subtle);
    --bs-alert-link-color: var(--bs-secondary-text-emphasis);
}

.alert-success {
    --bs-alert-color: var(--bs-success-text-emphasis);
    --bs-alert-bg: var(--bs-success-bg-subtle);
    --bs-alert-border-color: var(--bs-success-border-subtle);
    --bs-alert-link-color: var(--bs-success-text-emphasis);
}

.alert-info {
    --bs-alert-color: var(--bs-info-text-emphasis);
    --bs-alert-bg: var(--bs-info-bg-subtle);
    --bs-alert-border-color: var(--bs-info-border-subtle);
    --bs-alert-link-color: var(--bs-info-text-emphasis);
}

.alert-warning {
    --bs-alert-color: var(--bs-warning-text-emphasis);
    --bs-alert-bg: var(--bs-warning-bg-subtle);
    --bs-alert-border-color: var(--bs-warning-border-subtle);
    --bs-alert-link-color: var(--bs-warning-text-emphasis);
}

.alert-danger {
    --bs-alert-color: var(--bs-danger-text-emphasis);
    --bs-alert-bg: var(--bs-danger-bg-subtle);
    --bs-alert-border-color: var(--bs-danger-border-subtle);
    --bs-alert-link-color: var(--bs-danger-text-emphasis);
}

.alert-light {
    --bs-alert-color: var(--bs-light-text-emphasis);
    --bs-alert-bg: var(--bs-light-bg-subtle);
    --bs-alert-border-color: var(--bs-light-border-subtle);
    --bs-alert-link-color: var(--bs-light-text-emphasis);
}

.alert-dark {
    --bs-alert-color: var(--bs-dark-text-emphasis);
    --bs-alert-bg: var(--bs-dark-bg-subtle);
    --bs-alert-border-color: var(--bs-dark-border-subtle);
    --bs-alert-link-color: var(--bs-dark-text-emphasis);
}

@keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem;
    }
}

.progress, .progress-stacked {
    --bs-progress-height: 1rem;
    --bs-progress-font-size: 0.75rem;
    --bs-progress-bg: var(--bs-secondary-bg);
    --bs-progress-border-radius: var(--bs-border-radius);
    --bs-progress-box-shadow: var(--bs-box-shadow-inset);
    --bs-progress-bar-color: #fff;
    --bs-progress-bar-bg: #0d6efd;
    --bs-progress-bar-transition: width 0.6s ease;
    display: flex;
    height: var(--bs-progress-height);
    overflow: hidden;
    font-size: var(--bs-progress-font-size);
    background-color: var(--bs-progress-bg);
    border-radius: var(--bs-progress-border-radius);
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: var(--bs-progress-bar-color);
    text-align: center;
    white-space: nowrap;
    background-color: var(--bs-progress-bar-bg);
    transition: var(--bs-progress-bar-transition);
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar {
        transition: none;
    }
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: var(--bs-progress-height) var(--bs-progress-height);
}

.progress-stacked > .progress {
    overflow: visible;
}

.progress-stacked > .progress > .progress-bar {
    width: 100%;
}

.progress-bar-animated {
    animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
        animation: none;
    }
}

.list-group {
    --bs-list-group-color: var(--bs-body-color);
    --bs-list-group-bg: var(--bs-body-bg);
    --bs-list-group-border-color: var(--bs-border-color);
    --bs-list-group-border-width: var(--bs-border-width);
    --bs-list-group-border-radius: var(--bs-border-radius);
    --bs-list-group-item-padding-x: 1rem;
    --bs-list-group-item-padding-y: 0.5rem;
    --bs-list-group-action-color: var(--bs-secondary-color);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
    --bs-list-group-action-active-color: var(--bs-body-color);
    --bs-list-group-action-active-bg: var(--bs-secondary-bg);
    --bs-list-group-disabled-color: var(--bs-secondary-color);
    --bs-list-group-disabled-bg: var(--bs-body-bg);
    --bs-list-group-active-color: #fff;
    --bs-list-group-active-bg: #0d6efd;
    --bs-list-group-active-border-color: #0d6efd;
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: var(--bs-list-group-border-radius);
}

.list-group-numbered {
    list-style-type: none;
    counter-reset: section;
}

.list-group-numbered > .list-group-item::before {
    content: counters(section, ".") ". ";
    counter-increment: section;
}

.list-group-item-action {
    width: 100%;
    color: var(--bs-list-group-action-color);
    text-align: inherit;
}

.list-group-item-action:hover, .list-group-item-action:focus {
    z-index: 1;
    color: var(--bs-list-group-action-hover-color);
    text-decoration: none;
    background-color: var(--bs-list-group-action-hover-bg);
}

.list-group-item-action:active {
    color: var(--bs-list-group-action-active-color);
    background-color: var(--bs-list-group-action-active-bg);
}

.list-group-item {
    position: relative;
    display: block;
    padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
    color: var(--bs-list-group-color);
    text-decoration: none;
    background-color: var(--bs-list-group-bg);
    border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}

.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit;
}

.list-group-item.disabled, .list-group-item:disabled {
    color: var(--bs-list-group-disabled-color);
    pointer-events: none;
    background-color: var(--bs-list-group-disabled-bg);
}

.list-group-item.active {
    z-index: 2;
    color: var(--bs-list-group-active-color);
    background-color: var(--bs-list-group-active-bg);
    border-color: var(--bs-list-group-active-border-color);
}

.list-group-item + .list-group-item {
    border-top-width: 0;
}

.list-group-item + .list-group-item.active {
    margin-top: calc(-1 * var(--bs-list-group-border-width));
    border-top-width: var(--bs-list-group-border-width);
}

.list-group-horizontal {
    flex-direction: row;
}

.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
}

.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
}

.list-group-horizontal > .list-group-item.active {
    margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
}

@media (min-width: 576px) {
    .list-group-horizontal-sm {
        flex-direction: row;
    }

    .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
        border-bottom-left-radius: var(--bs-list-group-border-radius);
        border-top-right-radius: 0;
    }

    .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
        border-top-right-radius: var(--bs-list-group-border-radius);
        border-bottom-left-radius: 0;
    }

    .list-group-horizontal-sm > .list-group-item.active {
        margin-top: 0;
    }

    .list-group-horizontal-sm > .list-group-item + .list-group-item {
        border-top-width: var(--bs-list-group-border-width);
        border-left-width: 0;
    }

    .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
        margin-left: calc(-1 * var(--bs-list-group-border-width));
        border-left-width: var(--bs-list-group-border-width);
    }
}

@media (min-width: 768px) {
    .list-group-horizontal-md {
        flex-direction: row;
    }

    .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
        border-bottom-left-radius: var(--bs-list-group-border-radius);
        border-top-right-radius: 0;
    }

    .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
        border-top-right-radius: var(--bs-list-group-border-radius);
        border-bottom-left-radius: 0;
    }

    .list-group-horizontal-md > .list-group-item.active {
        margin-top: 0;
    }

    .list-group-horizontal-md > .list-group-item + .list-group-item {
        border-top-width: var(--bs-list-group-border-width);
        border-left-width: 0;
    }

    .list-group-horizontal-md > .list-group-item + .list-group-item.active {
        margin-left: calc(-1 * var(--bs-list-group-border-width));
        border-left-width: var(--bs-list-group-border-width);
    }
}

@media (min-width: 992px) {
    .list-group-horizontal-lg {
        flex-direction: row;
    }

    .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
        border-bottom-left-radius: var(--bs-list-group-border-radius);
        border-top-right-radius: 0;
    }

    .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
        border-top-right-radius: var(--bs-list-group-border-radius);
        border-bottom-left-radius: 0;
    }

    .list-group-horizontal-lg > .list-group-item.active {
        margin-top: 0;
    }

    .list-group-horizontal-lg > .list-group-item + .list-group-item {
        border-top-width: var(--bs-list-group-border-width);
        border-left-width: 0;
    }

    .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
        margin-left: calc(-1 * var(--bs-list-group-border-width));
        border-left-width: var(--bs-list-group-border-width);
    }
}

@media (min-width: 1200px) {
    .list-group-horizontal-xl {
        flex-direction: row;
    }

    .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
        border-bottom-left-radius: var(--bs-list-group-border-radius);
        border-top-right-radius: 0;
    }

    .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
        border-top-right-radius: var(--bs-list-group-border-radius);
        border-bottom-left-radius: 0;
    }

    .list-group-horizontal-xl > .list-group-item.active {
        margin-top: 0;
    }

    .list-group-horizontal-xl > .list-group-item + .list-group-item {
        border-top-width: var(--bs-list-group-border-width);
        border-left-width: 0;
    }

    .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
        margin-left: calc(-1 * var(--bs-list-group-border-width));
        border-left-width: var(--bs-list-group-border-width);
    }
}

@media (min-width: 1400px) {
    .list-group-horizontal-xxl {
        flex-direction: row;
    }

    .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
        border-bottom-left-radius: var(--bs-list-group-border-radius);
        border-top-right-radius: 0;
    }

    .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
        border-top-right-radius: var(--bs-list-group-border-radius);
        border-bottom-left-radius: 0;
    }

    .list-group-horizontal-xxl > .list-group-item.active {
        margin-top: 0;
    }

    .list-group-horizontal-xxl > .list-group-item + .list-group-item {
        border-top-width: var(--bs-list-group-border-width);
        border-left-width: 0;
    }

    .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
        margin-left: calc(-1 * var(--bs-list-group-border-width));
        border-left-width: var(--bs-list-group-border-width);
    }
}

.list-group-flush {
    border-radius: 0;
}

.list-group-flush > .list-group-item {
    border-width: 0 0 var(--bs-list-group-border-width);
}

.list-group-flush > .list-group-item:last-child {
    border-bottom-width: 0;
}

.list-group-item-primary {
    --bs-list-group-color: var(--bs-primary-text-emphasis);
    --bs-list-group-bg: var(--bs-primary-bg-subtle);
    --bs-list-group-border-color: var(--bs-primary-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
    --bs-list-group-active-color: var(--bs-primary-bg-subtle);
    --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-primary-text-emphasis);
}

.list-group-item-secondary {
    --bs-list-group-color: var(--bs-secondary-text-emphasis);
    --bs-list-group-bg: var(--bs-secondary-bg-subtle);
    --bs-list-group-border-color: var(--bs-secondary-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
    --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
    --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis);
}

.list-group-item-success {
    --bs-list-group-color: var(--bs-success-text-emphasis);
    --bs-list-group-bg: var(--bs-success-bg-subtle);
    --bs-list-group-border-color: var(--bs-success-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
    --bs-list-group-active-color: var(--bs-success-bg-subtle);
    --bs-list-group-active-bg: var(--bs-success-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-success-text-emphasis);
}

.list-group-item-info {
    --bs-list-group-color: var(--bs-info-text-emphasis);
    --bs-list-group-bg: var(--bs-info-bg-subtle);
    --bs-list-group-border-color: var(--bs-info-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
    --bs-list-group-active-color: var(--bs-info-bg-subtle);
    --bs-list-group-active-bg: var(--bs-info-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-info-text-emphasis);
}

.list-group-item-warning {
    --bs-list-group-color: var(--bs-warning-text-emphasis);
    --bs-list-group-bg: var(--bs-warning-bg-subtle);
    --bs-list-group-border-color: var(--bs-warning-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
    --bs-list-group-active-color: var(--bs-warning-bg-subtle);
    --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-warning-text-emphasis);
}

.list-group-item-danger {
    --bs-list-group-color: var(--bs-danger-text-emphasis);
    --bs-list-group-bg: var(--bs-danger-bg-subtle);
    --bs-list-group-border-color: var(--bs-danger-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
    --bs-list-group-active-color: var(--bs-danger-bg-subtle);
    --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-danger-text-emphasis);
}

.list-group-item-light {
    --bs-list-group-color: var(--bs-light-text-emphasis);
    --bs-list-group-bg: var(--bs-light-bg-subtle);
    --bs-list-group-border-color: var(--bs-light-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
    --bs-list-group-active-color: var(--bs-light-bg-subtle);
    --bs-list-group-active-bg: var(--bs-light-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-light-text-emphasis);
}

.list-group-item-dark {
    --bs-list-group-color: var(--bs-dark-text-emphasis);
    --bs-list-group-bg: var(--bs-dark-bg-subtle);
    --bs-list-group-border-color: var(--bs-dark-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
    --bs-list-group-active-color: var(--bs-dark-bg-subtle);
    --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-dark-text-emphasis);
}

.btn-close {
    --bs-btn-close-color: #000;
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    --bs-btn-close-opacity: 0.5;
    --bs-btn-close-hover-opacity: 0.75;
    --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-btn-close-focus-opacity: 1;
    --bs-btn-close-disabled-opacity: 0.25;
    --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: var(--bs-btn-close-color);
    background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
    border: 0;
    border-radius: 0.375rem;
    opacity: var(--bs-btn-close-opacity);
}

.btn-close:hover {
    color: var(--bs-btn-close-color);
    text-decoration: none;
    opacity: var(--bs-btn-close-hover-opacity);
}

.btn-close:focus {
    outline: 0;
    box-shadow: var(--bs-btn-close-focus-shadow);
    opacity: var(--bs-btn-close-focus-opacity);
}

.btn-close:disabled, .btn-close.disabled {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    opacity: var(--bs-btn-close-disabled-opacity);
}

.btn-close-white {
    filter: var(--bs-btn-close-white-filter);
}

[data-bs-theme=dark] .btn-close {
    filter: var(--bs-btn-close-white-filter);
}

.toast {
    --bs-toast-zindex: 1090;
    --bs-toast-padding-x: 0.75rem;
    --bs-toast-padding-y: 0.5rem;
    --bs-toast-spacing: 1.5rem;
    --bs-toast-max-width: 350px;
    --bs-toast-font-size: 0.875rem;
    --bs-toast-color:;
    --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85);
    --bs-toast-border-width: var(--bs-border-width);
    --bs-toast-border-color: var(--bs-border-color-translucent);
    --bs-toast-border-radius: var(--bs-border-radius);
    --bs-toast-box-shadow: var(--bs-box-shadow);
    --bs-toast-header-color: var(--bs-secondary-color);
    --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85);
    --bs-toast-header-border-color: var(--bs-border-color-translucent);
    width: var(--bs-toast-max-width);
    max-width: 100%;
    font-size: var(--bs-toast-font-size);
    color: var(--bs-toast-color);
    pointer-events: auto;
    background-color: var(--bs-toast-bg);
    background-clip: padding-box;
    border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
    box-shadow: var(--bs-toast-box-shadow);
    border-radius: var(--bs-toast-border-radius);
}

.toast.showing {
    opacity: 0;
}

.toast:not(.show) {
    display: none;
}

.toast-container {
    --bs-toast-zindex: 1090;
    position: absolute;
    z-index: var(--bs-toast-zindex);
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    pointer-events: none;
}

.toast-container > :not(:last-child) {
    margin-bottom: var(--bs-toast-spacing);
}

.toast-header {
    display: flex;
    align-items: center;
    padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
    color: var(--bs-toast-header-color);
    background-color: var(--bs-toast-header-bg);
    background-clip: padding-box;
    border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
    border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
    border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
}

.toast-header .btn-close {
    margin-right: calc(-0.5 * var(--bs-toast-padding-x));
    margin-left: var(--bs-toast-padding-x);
}

.toast-body {
    padding: var(--bs-toast-padding-x);
    word-wrap: break-word;
}

.modal {
    --bs-modal-zindex: 1055;
    --bs-modal-width: 500px;
    --bs-modal-padding: 1rem;
    --bs-modal-margin: 0.5rem;
    --bs-modal-color:;
    --bs-modal-bg: var(--bs-body-bg);
    --bs-modal-border-color: var(--bs-border-color-translucent);
    --bs-modal-border-width: var(--bs-border-width);
    --bs-modal-border-radius: var(--bs-border-radius-lg);
    --bs-modal-box-shadow: var(--bs-box-shadow-sm);
    --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) -(var(--bs-border-width)));
    --bs-modal-header-padding-x: 1rem;
    --bs-modal-header-padding-y: 1rem;
    --bs-modal-header-padding: 1rem 1rem;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: var(--bs-border-width);
    --bs-modal-title-line-height: 1.5;
    --bs-modal-footer-gap: 0.5rem;
    --bs-modal-footer-bg:;
    --bs-modal-footer-border-color: var(--bs-border-color);
    --bs-modal-footer-border-width: var(--bs-border-width);
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: var(--bs-modal-margin);
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}

.modal.show .modal-dialog {
    transform: none;
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02);
}

.modal-dialog-scrollable {
    height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
}

.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: var(--bs-backdrop-opacity);
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius);
}

.modal-header .btn-close {
    padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
    margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}

.modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height);
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding);
}

.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}

.modal-footer > * {
    margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
    .modal {
        --bs-modal-margin: 1.75rem;
        --bs-modal-box-shadow: var(--bs-box-shadow);
    }

    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto;
    }

    .modal-sm {
        --bs-modal-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        --bs-modal-width: 800px;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        --bs-modal-width: 1140px;
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}

.modal-fullscreen .modal-header, .modal-fullscreen .modal-footer {
    border-radius: 0;
}

.modal-fullscreen .modal-body {
    overflow-y: auto;
}

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-sm-down .modal-header, .modal-fullscreen-sm-down .modal-footer {
        border-radius: 0;
    }

    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto;
    }
}

@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-md-down .modal-header, .modal-fullscreen-md-down .modal-footer {
        border-radius: 0;
    }

    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto;
    }
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-lg-down .modal-header, .modal-fullscreen-lg-down .modal-footer {
        border-radius: 0;
    }

    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto;
    }
}

@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-xl-down .modal-header, .modal-fullscreen-xl-down .modal-footer {
        border-radius: 0;
    }

    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto;
    }
}

@media (max-width: 1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-xxl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-xxl-down .modal-header, .modal-fullscreen-xxl-down .modal-footer {
        border-radius: 0;
    }

    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto;
    }
}

.tooltip {
    --bs-tooltip-zindex: 1080;
    --bs-tooltip-max-width: 200px;
    --bs-tooltip-padding-x: 0.5rem;
    --bs-tooltip-padding-y: 0.25rem;
    --bs-tooltip-margin:;
    --bs-tooltip-font-size: 0.875rem;
    --bs-tooltip-color: var(--bs-body-bg);
    --bs-tooltip-bg: var(--bs-emphasis-color);
    --bs-tooltip-border-radius: var(--bs-border-radius);
    --bs-tooltip-opacity: 0.9;
    --bs-tooltip-arrow-width: 0.8rem;
    --bs-tooltip-arrow-height: 0.4rem;
    z-index: var(--bs-tooltip-zindex);
    display: block;
    margin: var(--bs-tooltip-margin);
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    white-space: normal;
    word-spacing: normal;
    line-break: auto;
    font-size: var(--bs-tooltip-font-size);
    word-wrap: break-word;
    opacity: 0;
}

.tooltip.show {
    opacity: var(--bs-tooltip-opacity);
}

.tooltip .tooltip-arrow {
    display: block;
    width: var(--bs-tooltip-arrow-width);
    height: var(--bs-tooltip-arrow-height);
}

.tooltip .tooltip-arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
    bottom: calc(-1 * var(--bs-tooltip-arrow-height));
}

.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
    top: -1px;
    border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
    border-top-color: var(--bs-tooltip-bg);
}

.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
    left: calc(-1 * var(--bs-tooltip-arrow-height));
    width: var(--bs-tooltip-arrow-height);
    height: var(--bs-tooltip-arrow-width);
}

.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
    right: -1px;
    border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
    border-right-color: var(--bs-tooltip-bg);
}

.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
    top: calc(-1 * var(--bs-tooltip-arrow-height));
}

.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
    bottom: -1px;
    border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
    border-bottom-color: var(--bs-tooltip-bg);
}

.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
    right: calc(-1 * var(--bs-tooltip-arrow-height));
    width: var(--bs-tooltip-arrow-height);
    height: var(--bs-tooltip-arrow-width);
}

.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
    left: -1px;
    border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
    border-left-color: var(--bs-tooltip-bg);
}

.tooltip-inner {
    max-width: var(--bs-tooltip-max-width);
    padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
    color: var(--bs-tooltip-color);
    text-align: center;
    background-color: var(--bs-tooltip-bg);
    border-radius: var(--bs-tooltip-border-radius);
}

.popover {
    --bs-popover-zindex: 1070;
    --bs-popover-max-width: 276px;
    --bs-popover-font-size: 0.875rem;
    --bs-popover-bg: var(--bs-body-bg);
    --bs-popover-border-width: var(--bs-border-width);
    --bs-popover-border-color: var(--bs-border-color-translucent);
    --bs-popover-border-radius: var(--bs-border-radius-lg);
    --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
    --bs-popover-box-shadow: var(--bs-box-shadow);
    --bs-popover-header-padding-x: 1rem;
    --bs-popover-header-padding-y: 0.5rem;
    --bs-popover-header-font-size: 1rem;
    --bs-popover-header-color: inherit;
    --bs-popover-header-bg: var(--bs-secondary-bg);
    --bs-popover-body-padding-x: 1rem;
    --bs-popover-body-padding-y: 1rem;
    --bs-popover-body-color: var(--bs-body-color);
    --bs-popover-arrow-width: 1rem;
    --bs-popover-arrow-height: 0.5rem;
    --bs-popover-arrow-border: var(--bs-popover-border-color);
    z-index: var(--bs-popover-zindex);
    display: block;
    max-width: var(--bs-popover-max-width);
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    white-space: normal;
    word-spacing: normal;
    line-break: auto;
    font-size: var(--bs-popover-font-size);
    word-wrap: break-word;
    background-color: var(--bs-popover-bg);
    background-clip: padding-box;
    border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
    border-radius: var(--bs-popover-border-radius);
}

.popover .popover-arrow {
    display: block;
    width: var(--bs-popover-arrow-width);
    height: var(--bs-popover-arrow-height);
}

.popover .popover-arrow::before, .popover .popover-arrow::after {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid;
    border-width: 0;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
    bottom: calc(-1 *(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}

.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
    border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}

.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
    bottom: 0;
    border-top-color: var(--bs-popover-arrow-border);
}

.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
    bottom: var(--bs-popover-border-width);
    border-top-color: var(--bs-popover-bg);
}

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
    left: calc(-1 *(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
    width: var(--bs-popover-arrow-height);
    height: var(--bs-popover-arrow-width);
}

.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
    border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}

.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
    left: 0;
    border-right-color: var(--bs-popover-arrow-border);
}

.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
    left: var(--bs-popover-border-width);
    border-right-color: var(--bs-popover-bg);
}

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
    top: calc(-1 *(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}

.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
    border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}

.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
    top: 0;
    border-bottom-color: var(--bs-popover-arrow-border);
}

.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
    top: var(--bs-popover-border-width);
    border-bottom-color: var(--bs-popover-bg);
}

.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: var(--bs-popover-arrow-width);
    margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
    content: "";
    border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
}

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
    right: calc(-1 *(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
    width: var(--bs-popover-arrow-height);
    height: var(--bs-popover-arrow-width);
}

.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
    border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}

.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
    right: 0;
    border-left-color: var(--bs-popover-arrow-border);
}

.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
    right: var(--bs-popover-border-width);
    border-left-color: var(--bs-popover-bg);
}

.popover-header {
    padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
    margin-bottom: 0;
    font-size: var(--bs-popover-header-font-size);
    color: var(--bs-popover-header-color);
    background-color: var(--bs-popover-header-bg);
    border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
    border-top-left-radius: var(--bs-popover-inner-border-radius);
    border-top-right-radius: var(--bs-popover-inner-border-radius);
}

.popover-header:empty {
    display: none;
}

.popover-body {
    padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
    color: var(--bs-popover-body-color);
}

.carousel {
    position: relative;
}

.carousel.pointer-event {
    touch-action: pan-y;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner::after {
    display: block;
    clear: both;
    content: "";
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        transition: none;
    }
}

.carousel-item.active, .carousel-item-next, .carousel-item-prev {
    display: block;
}

.carousel-item-next:not(.carousel-item-start), .active.carousel-item-end {
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end), .active.carousel-item-start {
    transform: translateX(-100%);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active, .carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end {
    z-index: 1;
    opacity: 1;
}

.carousel-fade .active.carousel-item-start, .carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-fade .active.carousel-item-start, .carousel-fade .active.carousel-item-end {
        transition: none;
    }
}

.carousel-control-prev, .carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: none;
    border: 0;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-control-prev, .carousel-control-next {
        transition: none;
    }
}

.carousel-control-prev:hover, .carousel-control-prev:focus, .carousel-control-next:hover, .carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-indicators [data-bs-target] {
        transition: none;
    }
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}

.carousel-dark .carousel-control-prev-icon, .carousel-dark .carousel-control-next-icon {
    filter: invert(1) grayscale(100);
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #000;
}

.carousel-dark .carousel-caption {
    color: #000;
}

[data-bs-theme=dark] .carousel .carousel-control-prev-icon, [data-bs-theme=dark] .carousel .carousel-control-next-icon, [data-bs-theme=dark].carousel .carousel-control-prev-icon, [data-bs-theme=dark].carousel .carousel-control-next-icon {
    filter: invert(1) grayscale(100);
}

[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target], [data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] {
    background-color: #000;
}

[data-bs-theme=dark] .carousel .carousel-caption, [data-bs-theme=dark].carousel .carousel-caption {
    color: #000;
}

.spinner-grow, .spinner-border {
    display: inline-block;
    width: var(--bs-spinner-width);
    height: var(--bs-spinner-height);
    vertical-align: var(--bs-spinner-vertical-align);
    border-radius: 50%;
    animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.spinner-border {
    --bs-spinner-width: 2rem;
    --bs-spinner-height: 2rem;
    --bs-spinner-vertical-align: -0.125em;
    --bs-spinner-border-width: 0.25em;
    --bs-spinner-animation-speed: 0.75s;
    --bs-spinner-animation-name: spinner-border;
    border: var(--bs-spinner-border-width) solid currentcolor;
    border-right-color: transparent;
}

.spinner-border-sm {
    --bs-spinner-width: 1rem;
    --bs-spinner-height: 1rem;
    --bs-spinner-border-width: 0.2em;
}

@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: none;
    }
}

.spinner-grow {
    --bs-spinner-width: 2rem;
    --bs-spinner-height: 2rem;
    --bs-spinner-vertical-align: -0.125em;
    --bs-spinner-animation-speed: 0.75s;
    --bs-spinner-animation-name: spinner-grow;
    background-color: currentcolor;
    opacity: 0;
}

.spinner-grow-sm {
    --bs-spinner-width: 1rem;
    --bs-spinner-height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    .spinner-border, .spinner-grow {
        --bs-spinner-animation-speed: 1.5s;
    }
}

.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
    --bs-offcanvas-zindex: 1045;
    --bs-offcanvas-width: 400px;
    --bs-offcanvas-height: 30vh;
    --bs-offcanvas-padding-x: 1rem;
    --bs-offcanvas-padding-y: 1rem;
    --bs-offcanvas-color: var(--bs-body-color);
    --bs-offcanvas-bg: var(--bs-body-bg);
    --bs-offcanvas-border-width: var(--bs-border-width);
    --bs-offcanvas-border-color: var(--bs-border-color-translucent);
    --bs-offcanvas-box-shadow: var(--bs-box-shadow-sm);
    --bs-offcanvas-transition: transform 0.3s ease-in-out;
    --bs-offcanvas-title-line-height: 1.5;
}

@media (max-width: 575.98px) {
    .offcanvas-sm {
        position: fixed;
        bottom: 0;
        z-index: var(--bs-offcanvas-zindex);
        display: flex;
        flex-direction: column;
        max-width: 100%;
        color: var(--bs-offcanvas-color);
        visibility: hidden;
        background-color: var(--bs-offcanvas-bg);
        background-clip: padding-box;
        outline: 0;
        transition: var(--bs-offcanvas-transition);
    }
}

@media (max-width: 575.98px) and(prefers-reduced-motion: reduce) {
    .offcanvas-sm {
        transition: none;
    }
}

@media (max-width: 575.98px) {
    .offcanvas-sm.offcanvas-start {
        top: 0;
        left: 0;
        width: var(--bs-offcanvas-width);
        border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(-100%);
    }

    .offcanvas-sm.offcanvas-end {
        top: 0;
        right: 0;
        width: var(--bs-offcanvas-width);
        border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(100%);
    }

    .offcanvas-sm.offcanvas-top {
        top: 0;
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(-100%);
    }

    .offcanvas-sm.offcanvas-bottom {
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(100%);
    }

    .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
        transform: none;
    }

    .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
        visibility: visible;
    }
}

@media (min-width: 576px) {
    .offcanvas-sm {
        --bs-offcanvas-height: auto;
        --bs-offcanvas-border-width: 0;
        background-color: transparent !important;
    }

    .offcanvas-sm .offcanvas-header {
        display: none;
    }

    .offcanvas-sm .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
        background-color: transparent !important;
    }
}

@media (max-width: 767.98px) {
    .offcanvas-md {
        position: fixed;
        bottom: 0;
        z-index: var(--bs-offcanvas-zindex);
        display: flex;
        flex-direction: column;
        max-width: 100%;
        color: var(--bs-offcanvas-color);
        visibility: hidden;
        background-color: var(--bs-offcanvas-bg);
        background-clip: padding-box;
        outline: 0;
        transition: var(--bs-offcanvas-transition);
    }
}

@media (max-width: 767.98px) and(prefers-reduced-motion: reduce) {
    .offcanvas-md {
        transition: none;
    }
}

@media (max-width: 767.98px) {
    .offcanvas-md.offcanvas-start {
        top: 0;
        left: 0;
        width: var(--bs-offcanvas-width);
        border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(-100%);
    }

    .offcanvas-md.offcanvas-end {
        top: 0;
        right: 0;
        width: var(--bs-offcanvas-width);
        border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(100%);
    }

    .offcanvas-md.offcanvas-top {
        top: 0;
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(-100%);
    }

    .offcanvas-md.offcanvas-bottom {
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(100%);
    }

    .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
        transform: none;
    }

    .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
        visibility: visible;
    }
}

@media (min-width: 768px) {
    .offcanvas-md {
        --bs-offcanvas-height: auto;
        --bs-offcanvas-border-width: 0;
        background-color: transparent !important;
    }

    .offcanvas-md .offcanvas-header {
        display: none;
    }

    .offcanvas-md .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
        background-color: transparent !important;
    }
}

@media (max-width: 991.98px) {
    .offcanvas-lg {
        position: fixed;
        bottom: 0;
        z-index: var(--bs-offcanvas-zindex);
        display: flex;
        flex-direction: column;
        max-width: 100%;
        color: var(--bs-offcanvas-color);
        visibility: hidden;
        background-color: var(--bs-offcanvas-bg);
        background-clip: padding-box;
        outline: 0;
        transition: var(--bs-offcanvas-transition);
    }
}

@media (max-width: 991.98px) and(prefers-reduced-motion: reduce) {
    .offcanvas-lg {
        transition: none;
    }
}

@media (max-width: 991.98px) {
    .offcanvas-lg.offcanvas-start {
        top: 0;
        left: 0;
        width: var(--bs-offcanvas-width);
        border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(-100%);
    }

    .offcanvas-lg.offcanvas-end {
        top: 0;
        right: 0;
        width: var(--bs-offcanvas-width);
        border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(100%);
    }

    .offcanvas-lg.offcanvas-top {
        top: 0;
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(-100%);
    }

    .offcanvas-lg.offcanvas-bottom {
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(100%);
    }

    .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
        transform: none;
    }

    .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
        visibility: visible;
    }
}

@media (min-width: 992px) {
    .offcanvas-lg {
        --bs-offcanvas-height: auto;
        --bs-offcanvas-border-width: 0;
        background-color: transparent !important;
    }

    .offcanvas-lg .offcanvas-header {
        display: none;
    }

    .offcanvas-lg .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
        background-color: transparent !important;
    }
}

@media (max-width: 1199.98px) {
    .offcanvas-xl {
        position: fixed;
        bottom: 0;
        z-index: var(--bs-offcanvas-zindex);
        display: flex;
        flex-direction: column;
        max-width: 100%;
        color: var(--bs-offcanvas-color);
        visibility: hidden;
        background-color: var(--bs-offcanvas-bg);
        background-clip: padding-box;
        outline: 0;
        transition: var(--bs-offcanvas-transition);
    }
}

@media (max-width: 1199.98px) and(prefers-reduced-motion: reduce) {
    .offcanvas-xl {
        transition: none;
    }
}

@media (max-width: 1199.98px) {
    .offcanvas-xl.offcanvas-start {
        top: 0;
        left: 0;
        width: var(--bs-offcanvas-width);
        border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(-100%);
    }

    .offcanvas-xl.offcanvas-end {
        top: 0;
        right: 0;
        width: var(--bs-offcanvas-width);
        border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(100%);
    }

    .offcanvas-xl.offcanvas-top {
        top: 0;
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(-100%);
    }

    .offcanvas-xl.offcanvas-bottom {
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(100%);
    }

    .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
        transform: none;
    }

    .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
        visibility: visible;
    }
}

@media (min-width: 1200px) {
    .offcanvas-xl {
        --bs-offcanvas-height: auto;
        --bs-offcanvas-border-width: 0;
        background-color: transparent !important;
    }

    .offcanvas-xl .offcanvas-header {
        display: none;
    }

    .offcanvas-xl .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
        background-color: transparent !important;
    }
}

@media (max-width: 1399.98px) {
    .offcanvas-xxl {
        position: fixed;
        bottom: 0;
        z-index: var(--bs-offcanvas-zindex);
        display: flex;
        flex-direction: column;
        max-width: 100%;
        color: var(--bs-offcanvas-color);
        visibility: hidden;
        background-color: var(--bs-offcanvas-bg);
        background-clip: padding-box;
        outline: 0;
        transition: var(--bs-offcanvas-transition);
    }
}

@media (max-width: 1399.98px) and(prefers-reduced-motion: reduce) {
    .offcanvas-xxl {
        transition: none;
    }
}

@media (max-width: 1399.98px) {
    .offcanvas-xxl.offcanvas-start {
        top: 0;
        left: 0;
        width: var(--bs-offcanvas-width);
        border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(-100%);
    }

    .offcanvas-xxl.offcanvas-end {
        top: 0;
        right: 0;
        width: var(--bs-offcanvas-width);
        border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(100%);
    }

    .offcanvas-xxl.offcanvas-top {
        top: 0;
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(-100%);
    }

    .offcanvas-xxl.offcanvas-bottom {
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(100%);
    }

    .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
        transform: none;
    }

    .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
        visibility: visible;
    }
}

@media (min-width: 1400px) {
    .offcanvas-xxl {
        --bs-offcanvas-height: auto;
        --bs-offcanvas-border-width: 0;
        background-color: transparent !important;
    }

    .offcanvas-xxl .offcanvas-header {
        display: none;
    }

    .offcanvas-xxl .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
        background-color: transparent !important;
    }
}

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
}

@media (prefers-reduced-motion: reduce) {
    .offcanvas {
        transition: none;
    }
}

.offcanvas.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
}

.offcanvas.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
}

.offcanvas.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
}

.offcanvas.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
}

.offcanvas.showing, .offcanvas.show:not(.hiding) {
    transform: none;
}

.offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
    visibility: visible;
}

.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.offcanvas-backdrop.fade {
    opacity: 0;
}

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

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}

.offcanvas-header .btn-close {
    padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
    margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
    margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
    margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
}

.offcanvas-title {
    margin-bottom: 0;
    line-height: var(--bs-offcanvas-title-line-height);
}

.offcanvas-body {
    flex-grow: 1;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
    overflow-y: auto;
}

.placeholder {
    display: inline-block;
    min-height: 1em;
    vertical-align: middle;
    cursor: wait;
    background-color: currentcolor;
    opacity: 0.5;
}

.placeholder.btn::before {
    display: inline-block;
    content: "";
}

.placeholder-xs {
    min-height: 0.6em;
}

.placeholder-sm {
    min-height: 0.8em;
}

.placeholder-lg {
    min-height: 1.2em;
}

.placeholder-glow .placeholder {
    animation: placeholder-glow 2s ease-in-out infinite;
}

@keyframes placeholder-glow {
    50% {
        opacity: 0.2;
    }
}

.placeholder-wave {
    -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
    mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
    -webkit-mask-size: 200% 100%;
    mask-size: 200% 100%;
    animation: placeholder-wave 2s linear infinite;
}

@keyframes placeholder-wave {
    100% {
        -webkit-mask-position: -200% 0%;
        mask-position: -200% 0%;
    }
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.text-bg-primary {
    color: #fff !important;
    background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
    color: #fff !important;
    background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
    color: #fff !important;
    background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
    color: #000 !important;
    background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
    color: #000 !important;
    background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
    color: #fff !important;
    background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
    color: #000 !important;
    background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
    color: #fff !important;
    background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
    color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-primary:hover, .link-primary:focus {
    color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
}

.link-secondary {
    color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-secondary:hover, .link-secondary:focus {
    color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
}

.link-success {
    color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-success:hover, .link-success:focus {
    color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
}

.link-info {
    color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-info:hover, .link-info:focus {
    color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
}

.link-warning {
    color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-warning:hover, .link-warning:focus {
    color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
}

.link-danger {
    color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-danger:hover, .link-danger:focus {
    color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
}

.link-light {
    color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-light:hover, .link-light:focus {
    color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
}

.link-dark {
    color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-dark:hover, .link-dark:focus {
    color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
}

.link-body-emphasis {
    color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-body-emphasis:hover, .link-body-emphasis:focus {
    color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
    text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
}

.focus-ring:focus {
    outline: 0;
    box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
}

.icon-link {
    display: inline-flex;
    gap: 0.375rem;
    align-items: center;
    text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
    text-underline-offset: 0.25em;
    backface-visibility: hidden;
}

.icon-link > .bi {
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    fill: currentcolor;
    transition: 0.2s ease-in-out transform;
}

@media (prefers-reduced-motion: reduce) {
    .icon-link > .bi {
        transition: none;
    }
}

.icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
    transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}

.ratio {
    position: relative;
    width: 100%;
}

.ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: "";
}

.ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ratio-1x1 {
    --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
    --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
    --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
    --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

.sticky-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
}

@media (min-width: 576px) {
    .sticky-sm-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .sticky-sm-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}

@media (min-width: 768px) {
    .sticky-md-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .sticky-md-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}

@media (min-width: 992px) {
    .sticky-lg-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .sticky-lg-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}

@media (min-width: 1200px) {
    .sticky-xl-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .sticky-xl-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}

@media (min-width: 1400px) {
    .sticky-xxl-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .sticky-xxl-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}

.hstack {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
}

.vstack {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-self: stretch;
}

.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.visually-hidden:not(caption), .visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
    position: absolute !important;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vr {
    display: inline-block;
    align-self: stretch;
    width: var(--bs-border-width);
    min-height: 1em;
    background-color: currentcolor;
    opacity: 0.25;
}

.align-baseline {
    vertical-align: baseline !important;
}

.align-top {
    vertical-align: top !important;
}

.align-middle {
    vertical-align: middle !important;
}

.align-bottom {
    vertical-align: bottom !important;
}

.align-text-bottom {
    vertical-align: text-bottom !important;
}

.align-text-top {
    vertical-align: text-top !important;
}

.float-start {
    float: left !important;
}

.float-end {
    float: right !important;
}

.float-none {
    float: none !important;
}

.object-fit-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
}

.object-fit-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
}

.object-fit-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
}

.object-fit-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
}

.object-fit-none {
    -o-object-fit: none !important;
    object-fit: none !important;
}

.opacity-0 {
    opacity: 0 !important;
}

.opacity-25 {
    opacity: 0.25 !important;
}

.opacity-50 {
    opacity: 0.5 !important;
}

.opacity-75 {
    opacity: 0.75 !important;
}

.opacity-100 {
    opacity: 1 !important;
}

.overflow-auto {
    overflow: auto !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.overflow-visible {
    overflow: visible !important;
}

.overflow-scroll {
    overflow: scroll !important;
}

.overflow-x-auto {
    overflow-x: auto !important;
}

.overflow-x-hidden {
    overflow-x: hidden !important;
}

.overflow-x-visible {
    overflow-x: visible !important;
}

.overflow-x-scroll {
    overflow-x: scroll !important;
}

.overflow-y-auto {
    overflow-y: auto !important;
}

.overflow-y-hidden {
    overflow-y: hidden !important;
}

.overflow-y-visible {
    overflow-y: visible !important;
}

.overflow-y-scroll {
    overflow-y: scroll !important;
}

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

.d-inline-block {
    display: inline-block !important;
}

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

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

.d-inline-grid {
    display: inline-grid !important;
}

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

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

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

.d-inline-flex {
    display: inline-flex !important;
}

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

.shadow {
    box-shadow: var(--bs-box-shadow) !important;
}

.shadow-sm {
    box-shadow: var(--bs-box-shadow-sm) !important;
}

.shadow-lg {
    box-shadow: var(--bs-box-shadow-lg) !important;
}

.shadow-none {
    box-shadow: none !important;
}

.focus-ring-primary {
    --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-secondary {
    --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-success {
    --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-info {
    --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-warning {
    --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-danger {
    --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-light {
    --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-dark {
    --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: sticky !important;
}

.top-0 {
    top: 0 !important;
}

.top-50 {
    top: 50% !important;
}

.top-100 {
    top: 100% !important;
}

.bottom-0 {
    bottom: 0 !important;
}

.bottom-50 {
    bottom: 50% !important;
}

.bottom-100 {
    bottom: 100% !important;
}

.start-0 {
    left: 0 !important;
}

.start-50 {
    left: 50% !important;
}

.start-100 {
    left: 100% !important;
}

.end-0 {
    right: 0 !important;
}

.end-50 {
    right: 50% !important;
}

.end-100 {
    right: 100% !important;
}

.translate-middle {
    transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
    transform: translateX(-50%) !important;
}

.translate-middle-y {
    transform: translateY(-50%) !important;
}

.border {
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-0 {
    border: 0 !important;
}

.border-top {
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-end {
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-end-0 {
    border-right: 0 !important;
}

.border-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-start {
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-start-0 {
    border-left: 0 !important;
}

.border-primary {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-black {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

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

.border-secondary-subtle {
    border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
    border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
    border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
    border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
    border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
    border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
    border-color: var(--bs-dark-border-subtle) !important;
}

.border-1 {
    border-width: 1px !important;
}

.border-2 {
    border-width: 2px !important;
}

.border-3 {
    border-width: 3px !important;
}

.border-4 {
    border-width: 4px !important;
}

.border-5 {
    border-width: 5px !important;
}

.border-opacity-10 {
    --bs-border-opacity: 0.1;
}

.border-opacity-25 {
    --bs-border-opacity: 0.25;
}

.border-opacity-50 {
    --bs-border-opacity: 0.5;
}

.border-opacity-75 {
    --bs-border-opacity: 0.75;
}

.border-opacity-100 {
    --bs-border-opacity: 1;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.mw-100 {
    max-width: 100% !important;
}

.vw-100 {
    width: 100vw !important;
}

.min-vw-100 {
    min-width: 100vw !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.h-auto {
    height: auto !important;
}

.mh-100 {
    max-height: 100% !important;
}

.vh-100 {
    height: 100vh !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.flex-fill {
    flex: 1 1 auto !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

.flex-grow-0 {
    flex-grow: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    flex-shrink: 1 !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.justify-content-evenly {
    justify-content: space-evenly !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-content-start {
    align-content: flex-start !important;
}

.align-content-end {
    align-content: flex-end !important;
}

.align-content-center {
    align-content: center !important;
}

.align-content-between {
    align-content: space-between !important;
}

.align-content-around {
    align-content: space-around !important;
}

.align-content-stretch {
    align-content: stretch !important;
}

.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-baseline {
    align-self: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
}

.order-first {
    order: -1 !important;
}

.order-0 {
    order: 0 !important;
}

.order-1 {
    order: 1 !important;
}

.order-2 {
    order: 2 !important;
}

.order-3 {
    order: 3 !important;
}

.order-4 {
    order: 4 !important;
}

.order-5 {
    order: 5 !important;
}

.order-last {
    order: 6 !important;
}

.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.m-6 {
    margin: 5rem !important;
}

.m-auto {
    margin: auto !important;
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
}

.mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
}

.mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}

.mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
}

.mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
}

.mx-6 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.my-6 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mt-6 {
    margin-top: 5rem !important;
}

.mt-auto {
    margin-top: auto !important;
}

.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.me-5 {
    margin-right: 3rem !important;
}

.me-6 {
    margin-right: 5rem !important;
}

.me-auto {
    margin-right: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mb-6 {
    margin-bottom: 5rem !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.ms-4 {
    margin-left: 1.5rem !important;
}

.ms-5 {
    margin-left: 3rem !important;
}

.ms-6 {
    margin-left: 5rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

.m-n1 {
    margin: -0.25rem !important;
}

.m-n2 {
    margin: -0.5rem !important;
}

.m-n3 {
    margin: -1rem !important;
}

.m-n4 {
    margin: -1.5rem !important;
}

.m-n5 {
    margin: -3rem !important;
}

.m-n6 {
    margin: -5rem !important;
}

.mx-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
}

.mx-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
}

.mx-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
}

.mx-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
}

.mx-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
}

.mx-n6 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
}

.my-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
}

.my-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
}

.my-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
}

.my-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
}

.my-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
}

.my-n6 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
}

.mt-n1 {
    margin-top: -0.25rem !important;
}

.mt-n2 {
    margin-top: -0.5rem !important;
}

.mt-n3 {
    margin-top: -1rem !important;
}

.mt-n4 {
    margin-top: -1.5rem !important;
}

.mt-n5 {
    margin-top: -3rem !important;
}

.mt-n6 {
    margin-top: -5rem !important;
}

.me-n1 {
    margin-right: -0.25rem !important;
}

.me-n2 {
    margin-right: -0.5rem !important;
}

.me-n3 {
    margin-right: -1rem !important;
}

.me-n4 {
    margin-right: -1.5rem !important;
}

.me-n5 {
    margin-right: -3rem !important;
}

.me-n6 {
    margin-right: -5rem !important;
}

.mb-n1 {
    margin-bottom: -0.25rem !important;
}

.mb-n2 {
    margin-bottom: -0.5rem !important;
}

.mb-n3 {
    margin-bottom: -1rem !important;
}

.mb-n4 {
    margin-bottom: -1.5rem !important;
}

.mb-n5 {
    margin-bottom: -3rem !important;
}

.mb-n6 {
    margin-bottom: -5rem !important;
}

.ms-n1 {
    margin-left: -0.25rem !important;
}

.ms-n2 {
    margin-left: -0.5rem !important;
}

.ms-n3 {
    margin-left: -1rem !important;
}

.ms-n4 {
    margin-left: -1.5rem !important;
}

.ms-n5 {
    margin-left: -3rem !important;
}

.ms-n6 {
    margin-left: -5rem !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.p-6 {
    padding: 5rem !important;
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
}

.px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}

.px-6 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.py-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pt-6 {
    padding-top: 5rem !important;
}

.pe-0 {
    padding-right: 0 !important;
}

.pe-1 {
    padding-right: 0.25rem !important;
}

.pe-2 {
    padding-right: 0.5rem !important;
}

.pe-3 {
    padding-right: 1rem !important;
}

.pe-4 {
    padding-right: 1.5rem !important;
}

.pe-5 {
    padding-right: 3rem !important;
}

.pe-6 {
    padding-right: 5rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.pb-6 {
    padding-bottom: 5rem !important;
}

.ps-0 {
    padding-left: 0 !important;
}

.ps-1 {
    padding-left: 0.25rem !important;
}

.ps-2 {
    padding-left: 0.5rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.ps-4 {
    padding-left: 1.5rem !important;
}

.ps-5 {
    padding-left: 3rem !important;
}

.ps-6 {
    padding-left: 5rem !important;
}

.gap-0 {
    gap: 0 !important;
}

.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}

.gap-6 {
    gap: 5rem !important;
}

.row-gap-0 {
    row-gap: 0 !important;
}

.row-gap-1 {
    row-gap: 0.25rem !important;
}

.row-gap-2 {
    row-gap: 0.5rem !important;
}

.row-gap-3 {
    row-gap: 1rem !important;
}

.row-gap-4 {
    row-gap: 1.5rem !important;
}

.row-gap-5 {
    row-gap: 3rem !important;
}

.row-gap-6 {
    row-gap: 5rem !important;
}

.column-gap-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
}

.column-gap-1 {
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
}

.column-gap-2 {
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
}

.column-gap-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
}

.column-gap-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
}

.column-gap-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
}

.column-gap-6 {
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
}

.font-monospace {
    font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
    font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
    font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
    font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
    font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

.fs-6 {
    font-size: 1rem !important;
}

.fst-italic {
    font-style: italic !important;
}

.fst-normal {
    font-style: normal !important;
}

.fw-lighter {
    font-weight: lighter !important;
}

.fw-light {
    font-weight: 300 !important;
}

.fw-normal {
    font-weight: 400 !important;
}

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

.fw-semibold {
    font-weight: 600 !important;
}

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

.fw-bolder {
    font-weight: bolder !important;
}

.lh-1 {
    line-height: 1 !important;
}

.lh-sm {
    line-height: 1.25 !important;
}

.lh-base {
    line-height: 1.5 !important;
}

.lh-lg {
    line-height: 2 !important;
}

.text-start {
    text-align: left !important;
}

.text-end {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-decoration-underline {
    text-decoration: underline !important;
}

.text-decoration-line-through {
    text-decoration: line-through !important;
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.text-wrap {
    white-space: normal !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-break {
    word-wrap: break-word !important;
    word-break: break-word !important;
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
    --bs-text-opacity: 1;
    color: var(--bs-secondary-color) !important;
}

.text-black-50 {
    --bs-text-opacity: 1;
    color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
    --bs-text-opacity: 1;
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-body-secondary {
    --bs-text-opacity: 1;
    color: var(--bs-secondary-color) !important;
}

.text-body-tertiary {
    --bs-text-opacity: 1;
    color: var(--bs-tertiary-color) !important;
}

.text-body-emphasis {
    --bs-text-opacity: 1;
    color: var(--bs-emphasis-color) !important;
}

.text-reset {
    --bs-text-opacity: 1;
    color: inherit !important;
}

.text-opacity-25 {
    --bs-text-opacity: 0.25;
}

.text-opacity-50 {
    --bs-text-opacity: 0.5;
}

.text-opacity-75 {
    --bs-text-opacity: 0.75;
}

.text-opacity-100 {
    --bs-text-opacity: 1;
}

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

.text-secondary-emphasis {
    color: var(--bs-secondary-text-emphasis) !important;
}

.text-success-emphasis {
    color: var(--bs-success-text-emphasis) !important;
}

.text-info-emphasis {
    color: var(--bs-info-text-emphasis) !important;
}

.text-warning-emphasis {
    color: var(--bs-warning-text-emphasis) !important;
}

.text-danger-emphasis {
    color: var(--bs-danger-text-emphasis) !important;
}

.text-light-emphasis {
    color: var(--bs-light-text-emphasis) !important;
}

.text-dark-emphasis {
    color: var(--bs-dark-text-emphasis) !important;
}

.link-opacity-10 {
    --bs-link-opacity: 0.1;
}

.link-opacity-10-hover:hover {
    --bs-link-opacity: 0.1;
}

.link-opacity-25 {
    --bs-link-opacity: 0.25;
}

.link-opacity-25-hover:hover {
    --bs-link-opacity: 0.25;
}

.link-opacity-50 {
    --bs-link-opacity: 0.5;
}

.link-opacity-50-hover:hover {
    --bs-link-opacity: 0.5;
}

.link-opacity-75 {
    --bs-link-opacity: 0.75;
}

.link-opacity-75-hover:hover {
    --bs-link-opacity: 0.75;
}

.link-opacity-100 {
    --bs-link-opacity: 1;
}

.link-opacity-100-hover:hover {
    --bs-link-opacity: 1;
}

.link-offset-1 {
    text-underline-offset: 0.125em !important;
}

.link-offset-1-hover:hover {
    text-underline-offset: 0.125em !important;
}

.link-offset-2 {
    text-underline-offset: 0.25em !important;
}

.link-offset-2-hover:hover {
    text-underline-offset: 0.25em !important;
}

.link-offset-3 {
    text-underline-offset: 0.375em !important;
}

.link-offset-3-hover:hover {
    text-underline-offset: 0.375em !important;
}

.link-underline-primary {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-secondary {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-success {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-info {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-warning {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-danger {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-light {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-dark {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-underline-opacity-0 {
    --bs-link-underline-opacity: 0;
}

.link-underline-opacity-0-hover:hover {
    --bs-link-underline-opacity: 0;
}

.link-underline-opacity-10 {
    --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-10-hover:hover {
    --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-25 {
    --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-25-hover:hover {
    --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-50 {
    --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-50-hover:hover {
    --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-75 {
    --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-75-hover:hover {
    --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-100 {
    --bs-link-underline-opacity: 1;
}

.link-underline-opacity-100-hover:hover {
    --bs-link-underline-opacity: 1;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
    --bs-bg-opacity: 1;
    background-color: transparent !important;
}

.bg-body-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-opacity-10 {
    --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
    --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
    --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
    --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
    --bs-bg-opacity: 1;
}

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

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

.bg-success-subtle {
    background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
    background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
    background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
    background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
    background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
    background-color: var(--bs-dark-bg-subtle) !important;
}

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

.user-select-all {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    user-select: all !important;
}

.user-select-auto {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    user-select: auto !important;
}

.user-select-none {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important;
}

.pe-none {
    pointer-events: none !important;
}

.pe-auto {
    pointer-events: auto !important;
}

.rounded {
    border-radius: var(--bs-border-radius) !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.rounded-1 {
    border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
    border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
    border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
    border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
    border-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-pill {
    border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
    border-top-left-radius: var(--bs-border-radius) !important;
    border-top-right-radius: var(--bs-border-radius) !important;
}

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

.rounded-top-1 {
    border-top-left-radius: var(--bs-border-radius-sm) !important;
    border-top-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-top-2 {
    border-top-left-radius: var(--bs-border-radius) !important;
    border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-3 {
    border-top-left-radius: var(--bs-border-radius-lg) !important;
    border-top-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-top-4 {
    border-top-left-radius: var(--bs-border-radius-xl) !important;
    border-top-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-top-5 {
    border-top-left-radius: var(--bs-border-radius-xxl) !important;
    border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-top-circle {
    border-top-left-radius: 50% !important;
    border-top-right-radius: 50% !important;
}

.rounded-top-pill {
    border-top-left-radius: var(--bs-border-radius-pill) !important;
    border-top-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-end {
    border-top-right-radius: var(--bs-border-radius) !important;
    border-bottom-right-radius: var(--bs-border-radius) !important;
}

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

.rounded-end-1 {
    border-top-right-radius: var(--bs-border-radius-sm) !important;
    border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-end-2 {
    border-top-right-radius: var(--bs-border-radius) !important;
    border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-3 {
    border-top-right-radius: var(--bs-border-radius-lg) !important;
    border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-end-4 {
    border-top-right-radius: var(--bs-border-radius-xl) !important;
    border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-end-5 {
    border-top-right-radius: var(--bs-border-radius-xxl) !important;
    border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-end-circle {
    border-top-right-radius: 50% !important;
    border-bottom-right-radius: 50% !important;
}

.rounded-end-pill {
    border-top-right-radius: var(--bs-border-radius-pill) !important;
    border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-bottom {
    border-bottom-right-radius: var(--bs-border-radius) !important;
    border-bottom-left-radius: var(--bs-border-radius) !important;
}

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

.rounded-bottom-1 {
    border-bottom-right-radius: var(--bs-border-radius-sm) !important;
    border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-bottom-2 {
    border-bottom-right-radius: var(--bs-border-radius) !important;
    border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-3 {
    border-bottom-right-radius: var(--bs-border-radius-lg) !important;
    border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-bottom-4 {
    border-bottom-right-radius: var(--bs-border-radius-xl) !important;
    border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-bottom-5 {
    border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
    border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-bottom-circle {
    border-bottom-right-radius: 50% !important;
    border-bottom-left-radius: 50% !important;
}

.rounded-bottom-pill {
    border-bottom-right-radius: var(--bs-border-radius-pill) !important;
    border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}

.rounded-start {
    border-bottom-left-radius: var(--bs-border-radius) !important;
    border-top-left-radius: var(--bs-border-radius) !important;
}

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

.rounded-start-1 {
    border-bottom-left-radius: var(--bs-border-radius-sm) !important;
    border-top-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-start-2 {
    border-bottom-left-radius: var(--bs-border-radius) !important;
    border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-3 {
    border-bottom-left-radius: var(--bs-border-radius-lg) !important;
    border-top-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-start-4 {
    border-bottom-left-radius: var(--bs-border-radius-xl) !important;
    border-top-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-start-5 {
    border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
    border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-start-circle {
    border-bottom-left-radius: 50% !important;
    border-top-left-radius: 50% !important;
}

.rounded-start-pill {
    border-bottom-left-radius: var(--bs-border-radius-pill) !important;
    border-top-left-radius: var(--bs-border-radius-pill) !important;
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

.z-n1 {
    z-index: -1 !important;
}

.z-0 {
    z-index: 0 !important;
}

.z-1 {
    z-index: 1 !important;
}

.z-2 {
    z-index: 2 !important;
}

.z-3 {
    z-index: 3 !important;
}

.bg-opacity-20 {
    --bs-bg-opacity: 0.2;
}

.bg-opacity-40 {
    --bs-bg-opacity: 0.4;
}

.bg-opacity-60 {
    --bs-bg-opacity: 0.6;
}

.bg-opacity-90 {
    --bs-bg-opacity: 0.9;
}

@media (min-width: 576px) {
    .float-sm-start {
        float: left !important;
    }

    .float-sm-end {
        float: right !important;
    }

    .float-sm-none {
        float: none !important;
    }

    .object-fit-sm-contain {
        -o-object-fit: contain !important;
        object-fit: contain !important;
    }

    .object-fit-sm-cover {
        -o-object-fit: cover !important;
        object-fit: cover !important;
    }

    .object-fit-sm-fill {
        -o-object-fit: fill !important;
        object-fit: fill !important;
    }

    .object-fit-sm-scale {
        -o-object-fit: scale-down !important;
        object-fit: scale-down !important;
    }

    .object-fit-sm-none {
        -o-object-fit: none !important;
        object-fit: none !important;
    }

    .d-sm-inline {
        display: inline !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-grid {
        display: grid !important;
    }

    .d-sm-inline-grid {
        display: inline-grid !important;
    }

    .d-sm-table {
        display: table !important;
    }

    .d-sm-table-row {
        display: table-row !important;
    }

    .d-sm-table-cell {
        display: table-cell !important;
    }

    .d-sm-flex {
        display: flex !important;
    }

    .d-sm-inline-flex {
        display: inline-flex !important;
    }

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

    .flex-sm-fill {
        flex: 1 1 auto !important;
    }

    .flex-sm-row {
        flex-direction: row !important;
    }

    .flex-sm-column {
        flex-direction: column !important;
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-sm-start {
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        justify-content: center !important;
    }

    .justify-content-sm-between {
        justify-content: space-between !important;
    }

    .justify-content-sm-around {
        justify-content: space-around !important;
    }

    .justify-content-sm-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-sm-start {
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        align-items: center !important;
    }

    .align-items-sm-baseline {
        align-items: baseline !important;
    }

    .align-items-sm-stretch {
        align-items: stretch !important;
    }

    .align-content-sm-start {
        align-content: flex-start !important;
    }

    .align-content-sm-end {
        align-content: flex-end !important;
    }

    .align-content-sm-center {
        align-content: center !important;
    }

    .align-content-sm-between {
        align-content: space-between !important;
    }

    .align-content-sm-around {
        align-content: space-around !important;
    }

    .align-content-sm-stretch {
        align-content: stretch !important;
    }

    .align-self-sm-auto {
        align-self: auto !important;
    }

    .align-self-sm-start {
        align-self: flex-start !important;
    }

    .align-self-sm-end {
        align-self: flex-end !important;
    }

    .align-self-sm-center {
        align-self: center !important;
    }

    .align-self-sm-baseline {
        align-self: baseline !important;
    }

    .align-self-sm-stretch {
        align-self: stretch !important;
    }

    .order-sm-first {
        order: -1 !important;
    }

    .order-sm-0 {
        order: 0 !important;
    }

    .order-sm-1 {
        order: 1 !important;
    }

    .order-sm-2 {
        order: 2 !important;
    }

    .order-sm-3 {
        order: 3 !important;
    }

    .order-sm-4 {
        order: 4 !important;
    }

    .order-sm-5 {
        order: 5 !important;
    }

    .order-sm-last {
        order: 6 !important;
    }

    .m-sm-0 {
        margin: 0 !important;
    }

    .m-sm-1 {
        margin: 0.25rem !important;
    }

    .m-sm-2 {
        margin: 0.5rem !important;
    }

    .m-sm-3 {
        margin: 1rem !important;
    }

    .m-sm-4 {
        margin: 1.5rem !important;
    }

    .m-sm-5 {
        margin: 3rem !important;
    }

    .m-sm-6 {
        margin: 5rem !important;
    }

    .m-sm-auto {
        margin: auto !important;
    }

    .mx-sm-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-sm-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-sm-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-sm-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-sm-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-sm-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-sm-6 {
        margin-right: 5rem !important;
        margin-left: 5rem !important;
    }

    .mx-sm-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-sm-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-sm-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-sm-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-sm-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-sm-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-sm-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-sm-6 {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important;
    }

    .my-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-sm-0 {
        margin-top: 0 !important;
    }

    .mt-sm-1 {
        margin-top: 0.25rem !important;
    }

    .mt-sm-2 {
        margin-top: 0.5rem !important;
    }

    .mt-sm-3 {
        margin-top: 1rem !important;
    }

    .mt-sm-4 {
        margin-top: 1.5rem !important;
    }

    .mt-sm-5 {
        margin-top: 3rem !important;
    }

    .mt-sm-6 {
        margin-top: 5rem !important;
    }

    .mt-sm-auto {
        margin-top: auto !important;
    }

    .me-sm-0 {
        margin-right: 0 !important;
    }

    .me-sm-1 {
        margin-right: 0.25rem !important;
    }

    .me-sm-2 {
        margin-right: 0.5rem !important;
    }

    .me-sm-3 {
        margin-right: 1rem !important;
    }

    .me-sm-4 {
        margin-right: 1.5rem !important;
    }

    .me-sm-5 {
        margin-right: 3rem !important;
    }

    .me-sm-6 {
        margin-right: 5rem !important;
    }

    .me-sm-auto {
        margin-right: auto !important;
    }

    .mb-sm-0 {
        margin-bottom: 0 !important;
    }

    .mb-sm-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-sm-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-sm-3 {
        margin-bottom: 1rem !important;
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-sm-5 {
        margin-bottom: 3rem !important;
    }

    .mb-sm-6 {
        margin-bottom: 5rem !important;
    }

    .mb-sm-auto {
        margin-bottom: auto !important;
    }

    .ms-sm-0 {
        margin-left: 0 !important;
    }

    .ms-sm-1 {
        margin-left: 0.25rem !important;
    }

    .ms-sm-2 {
        margin-left: 0.5rem !important;
    }

    .ms-sm-3 {
        margin-left: 1rem !important;
    }

    .ms-sm-4 {
        margin-left: 1.5rem !important;
    }

    .ms-sm-5 {
        margin-left: 3rem !important;
    }

    .ms-sm-6 {
        margin-left: 5rem !important;
    }

    .ms-sm-auto {
        margin-left: auto !important;
    }

    .m-sm-n1 {
        margin: -0.25rem !important;
    }

    .m-sm-n2 {
        margin: -0.5rem !important;
    }

    .m-sm-n3 {
        margin: -1rem !important;
    }

    .m-sm-n4 {
        margin: -1.5rem !important;
    }

    .m-sm-n5 {
        margin: -3rem !important;
    }

    .m-sm-n6 {
        margin: -5rem !important;
    }

    .mx-sm-n1 {
        margin-right: -0.25rem !important;
        margin-left: -0.25rem !important;
    }

    .mx-sm-n2 {
        margin-right: -0.5rem !important;
        margin-left: -0.5rem !important;
    }

    .mx-sm-n3 {
        margin-right: -1rem !important;
        margin-left: -1rem !important;
    }

    .mx-sm-n4 {
        margin-right: -1.5rem !important;
        margin-left: -1.5rem !important;
    }

    .mx-sm-n5 {
        margin-right: -3rem !important;
        margin-left: -3rem !important;
    }

    .mx-sm-n6 {
        margin-right: -5rem !important;
        margin-left: -5rem !important;
    }

    .my-sm-n1 {
        margin-top: -0.25rem !important;
        margin-bottom: -0.25rem !important;
    }

    .my-sm-n2 {
        margin-top: -0.5rem !important;
        margin-bottom: -0.5rem !important;
    }

    .my-sm-n3 {
        margin-top: -1rem !important;
        margin-bottom: -1rem !important;
    }

    .my-sm-n4 {
        margin-top: -1.5rem !important;
        margin-bottom: -1.5rem !important;
    }

    .my-sm-n5 {
        margin-top: -3rem !important;
        margin-bottom: -3rem !important;
    }

    .my-sm-n6 {
        margin-top: -5rem !important;
        margin-bottom: -5rem !important;
    }

    .mt-sm-n1 {
        margin-top: -0.25rem !important;
    }

    .mt-sm-n2 {
        margin-top: -0.5rem !important;
    }

    .mt-sm-n3 {
        margin-top: -1rem !important;
    }

    .mt-sm-n4 {
        margin-top: -1.5rem !important;
    }

    .mt-sm-n5 {
        margin-top: -3rem !important;
    }

    .mt-sm-n6 {
        margin-top: -5rem !important;
    }

    .me-sm-n1 {
        margin-right: -0.25rem !important;
    }

    .me-sm-n2 {
        margin-right: -0.5rem !important;
    }

    .me-sm-n3 {
        margin-right: -1rem !important;
    }

    .me-sm-n4 {
        margin-right: -1.5rem !important;
    }

    .me-sm-n5 {
        margin-right: -3rem !important;
    }

    .me-sm-n6 {
        margin-right: -5rem !important;
    }

    .mb-sm-n1 {
        margin-bottom: -0.25rem !important;
    }

    .mb-sm-n2 {
        margin-bottom: -0.5rem !important;
    }

    .mb-sm-n3 {
        margin-bottom: -1rem !important;
    }

    .mb-sm-n4 {
        margin-bottom: -1.5rem !important;
    }

    .mb-sm-n5 {
        margin-bottom: -3rem !important;
    }

    .mb-sm-n6 {
        margin-bottom: -5rem !important;
    }

    .ms-sm-n1 {
        margin-left: -0.25rem !important;
    }

    .ms-sm-n2 {
        margin-left: -0.5rem !important;
    }

    .ms-sm-n3 {
        margin-left: -1rem !important;
    }

    .ms-sm-n4 {
        margin-left: -1.5rem !important;
    }

    .ms-sm-n5 {
        margin-left: -3rem !important;
    }

    .ms-sm-n6 {
        margin-left: -5rem !important;
    }

    .p-sm-0 {
        padding: 0 !important;
    }

    .p-sm-1 {
        padding: 0.25rem !important;
    }

    .p-sm-2 {
        padding: 0.5rem !important;
    }

    .p-sm-3 {
        padding: 1rem !important;
    }

    .p-sm-4 {
        padding: 1.5rem !important;
    }

    .p-sm-5 {
        padding: 3rem !important;
    }

    .p-sm-6 {
        padding: 5rem !important;
    }

    .px-sm-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-sm-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-sm-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-sm-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-sm-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-sm-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .px-sm-6 {
        padding-right: 5rem !important;
        padding-left: 5rem !important;
    }

    .py-sm-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-sm-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-sm-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-sm-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-sm-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-sm-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .py-sm-6 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    .pt-sm-0 {
        padding-top: 0 !important;
    }

    .pt-sm-1 {
        padding-top: 0.25rem !important;
    }

    .pt-sm-2 {
        padding-top: 0.5rem !important;
    }

    .pt-sm-3 {
        padding-top: 1rem !important;
    }

    .pt-sm-4 {
        padding-top: 1.5rem !important;
    }

    .pt-sm-5 {
        padding-top: 3rem !important;
    }

    .pt-sm-6 {
        padding-top: 5rem !important;
    }

    .pe-sm-0 {
        padding-right: 0 !important;
    }

    .pe-sm-1 {
        padding-right: 0.25rem !important;
    }

    .pe-sm-2 {
        padding-right: 0.5rem !important;
    }

    .pe-sm-3 {
        padding-right: 1rem !important;
    }

    .pe-sm-4 {
        padding-right: 1.5rem !important;
    }

    .pe-sm-5 {
        padding-right: 3rem !important;
    }

    .pe-sm-6 {
        padding-right: 5rem !important;
    }

    .pb-sm-0 {
        padding-bottom: 0 !important;
    }

    .pb-sm-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-sm-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-sm-3 {
        padding-bottom: 1rem !important;
    }

    .pb-sm-4 {
        padding-bottom: 1.5rem !important;
    }

    .pb-sm-5 {
        padding-bottom: 3rem !important;
    }

    .pb-sm-6 {
        padding-bottom: 5rem !important;
    }

    .ps-sm-0 {
        padding-left: 0 !important;
    }

    .ps-sm-1 {
        padding-left: 0.25rem !important;
    }

    .ps-sm-2 {
        padding-left: 0.5rem !important;
    }

    .ps-sm-3 {
        padding-left: 1rem !important;
    }

    .ps-sm-4 {
        padding-left: 1.5rem !important;
    }

    .ps-sm-5 {
        padding-left: 3rem !important;
    }

    .ps-sm-6 {
        padding-left: 5rem !important;
    }

    .gap-sm-0 {
        gap: 0 !important;
    }

    .gap-sm-1 {
        gap: 0.25rem !important;
    }

    .gap-sm-2 {
        gap: 0.5rem !important;
    }

    .gap-sm-3 {
        gap: 1rem !important;
    }

    .gap-sm-4 {
        gap: 1.5rem !important;
    }

    .gap-sm-5 {
        gap: 3rem !important;
    }

    .gap-sm-6 {
        gap: 5rem !important;
    }

    .row-gap-sm-0 {
        row-gap: 0 !important;
    }

    .row-gap-sm-1 {
        row-gap: 0.25rem !important;
    }

    .row-gap-sm-2 {
        row-gap: 0.5rem !important;
    }

    .row-gap-sm-3 {
        row-gap: 1rem !important;
    }

    .row-gap-sm-4 {
        row-gap: 1.5rem !important;
    }

    .row-gap-sm-5 {
        row-gap: 3rem !important;
    }

    .row-gap-sm-6 {
        row-gap: 5rem !important;
    }

    .column-gap-sm-0 {
        -moz-column-gap: 0 !important;
        column-gap: 0 !important;
    }

    .column-gap-sm-1 {
        -moz-column-gap: 0.25rem !important;
        column-gap: 0.25rem !important;
    }

    .column-gap-sm-2 {
        -moz-column-gap: 0.5rem !important;
        column-gap: 0.5rem !important;
    }

    .column-gap-sm-3 {
        -moz-column-gap: 1rem !important;
        column-gap: 1rem !important;
    }

    .column-gap-sm-4 {
        -moz-column-gap: 1.5rem !important;
        column-gap: 1.5rem !important;
    }

    .column-gap-sm-5 {
        -moz-column-gap: 3rem !important;
        column-gap: 3rem !important;
    }

    .column-gap-sm-6 {
        -moz-column-gap: 5rem !important;
        column-gap: 5rem !important;
    }

    .text-sm-start {
        text-align: left !important;
    }

    .text-sm-end {
        text-align: right !important;
    }

    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 768px) {
    .float-md-start {
        float: left !important;
    }

    .float-md-end {
        float: right !important;
    }

    .float-md-none {
        float: none !important;
    }

    .object-fit-md-contain {
        -o-object-fit: contain !important;
        object-fit: contain !important;
    }

    .object-fit-md-cover {
        -o-object-fit: cover !important;
        object-fit: cover !important;
    }

    .object-fit-md-fill {
        -o-object-fit: fill !important;
        object-fit: fill !important;
    }

    .object-fit-md-scale {
        -o-object-fit: scale-down !important;
        object-fit: scale-down !important;
    }

    .object-fit-md-none {
        -o-object-fit: none !important;
        object-fit: none !important;
    }

    .d-md-inline {
        display: inline !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-grid {
        display: grid !important;
    }

    .d-md-inline-grid {
        display: inline-grid !important;
    }

    .d-md-table {
        display: table !important;
    }

    .d-md-table-row {
        display: table-row !important;
    }

    .d-md-table-cell {
        display: table-cell !important;
    }

    .d-md-flex {
        display: flex !important;
    }

    .d-md-inline-flex {
        display: inline-flex !important;
    }

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

    .flex-md-fill {
        flex: 1 1 auto !important;
    }

    .flex-md-row {
        flex-direction: row !important;
    }

    .flex-md-column {
        flex-direction: column !important;
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-md-wrap {
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-md-start {
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        justify-content: center !important;
    }

    .justify-content-md-between {
        justify-content: space-between !important;
    }

    .justify-content-md-around {
        justify-content: space-around !important;
    }

    .justify-content-md-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-md-start {
        align-items: flex-start !important;
    }

    .align-items-md-end {
        align-items: flex-end !important;
    }

    .align-items-md-center {
        align-items: center !important;
    }

    .align-items-md-baseline {
        align-items: baseline !important;
    }

    .align-items-md-stretch {
        align-items: stretch !important;
    }

    .align-content-md-start {
        align-content: flex-start !important;
    }

    .align-content-md-end {
        align-content: flex-end !important;
    }

    .align-content-md-center {
        align-content: center !important;
    }

    .align-content-md-between {
        align-content: space-between !important;
    }

    .align-content-md-around {
        align-content: space-around !important;
    }

    .align-content-md-stretch {
        align-content: stretch !important;
    }

    .align-self-md-auto {
        align-self: auto !important;
    }

    .align-self-md-start {
        align-self: flex-start !important;
    }

    .align-self-md-end {
        align-self: flex-end !important;
    }

    .align-self-md-center {
        align-self: center !important;
    }

    .align-self-md-baseline {
        align-self: baseline !important;
    }

    .align-self-md-stretch {
        align-self: stretch !important;
    }

    .order-md-first {
        order: -1 !important;
    }

    .order-md-0 {
        order: 0 !important;
    }

    .order-md-1 {
        order: 1 !important;
    }

    .order-md-2 {
        order: 2 !important;
    }

    .order-md-3 {
        order: 3 !important;
    }

    .order-md-4 {
        order: 4 !important;
    }

    .order-md-5 {
        order: 5 !important;
    }

    .order-md-last {
        order: 6 !important;
    }

    .m-md-0 {
        margin: 0 !important;
    }

    .m-md-1 {
        margin: 0.25rem !important;
    }

    .m-md-2 {
        margin: 0.5rem !important;
    }

    .m-md-3 {
        margin: 1rem !important;
    }

    .m-md-4 {
        margin: 1.5rem !important;
    }

    .m-md-5 {
        margin: 3rem !important;
    }

    .m-md-6 {
        margin: 5rem !important;
    }

    .m-md-auto {
        margin: auto !important;
    }

    .mx-md-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-md-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-md-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-md-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-md-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-md-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-md-6 {
        margin-right: 5rem !important;
        margin-left: 5rem !important;
    }

    .mx-md-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-md-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-md-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-md-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-md-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-md-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-md-6 {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important;
    }

    .my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-md-0 {
        margin-top: 0 !important;
    }

    .mt-md-1 {
        margin-top: 0.25rem !important;
    }

    .mt-md-2 {
        margin-top: 0.5rem !important;
    }

    .mt-md-3 {
        margin-top: 1rem !important;
    }

    .mt-md-4 {
        margin-top: 1.5rem !important;
    }

    .mt-md-5 {
        margin-top: 3rem !important;
    }

    .mt-md-6 {
        margin-top: 5rem !important;
    }

    .mt-md-auto {
        margin-top: auto !important;
    }

    .me-md-0 {
        margin-right: 0 !important;
    }

    .me-md-1 {
        margin-right: 0.25rem !important;
    }

    .me-md-2 {
        margin-right: 0.5rem !important;
    }

    .me-md-3 {
        margin-right: 1rem !important;
    }

    .me-md-4 {
        margin-right: 1.5rem !important;
    }

    .me-md-5 {
        margin-right: 3rem !important;
    }

    .me-md-6 {
        margin-right: 5rem !important;
    }

    .me-md-auto {
        margin-right: auto !important;
    }

    .mb-md-0 {
        margin-bottom: 0 !important;
    }

    .mb-md-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-md-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-md-3 {
        margin-bottom: 1rem !important;
    }

    .mb-md-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-md-5 {
        margin-bottom: 3rem !important;
    }

    .mb-md-6 {
        margin-bottom: 5rem !important;
    }

    .mb-md-auto {
        margin-bottom: auto !important;
    }

    .ms-md-0 {
        margin-left: 0 !important;
    }

    .ms-md-1 {
        margin-left: 0.25rem !important;
    }

    .ms-md-2 {
        margin-left: 0.5rem !important;
    }

    .ms-md-3 {
        margin-left: 1rem !important;
    }

    .ms-md-4 {
        margin-left: 1.5rem !important;
    }

    .ms-md-5 {
        margin-left: 3rem !important;
    }

    .ms-md-6 {
        margin-left: 5rem !important;
    }

    .ms-md-auto {
        margin-left: auto !important;
    }

    .m-md-n1 {
        margin: -0.25rem !important;
    }

    .m-md-n2 {
        margin: -0.5rem !important;
    }

    .m-md-n3 {
        margin: -1rem !important;
    }

    .m-md-n4 {
        margin: -1.5rem !important;
    }

    .m-md-n5 {
        margin: -3rem !important;
    }

    .m-md-n6 {
        margin: -5rem !important;
    }

    .mx-md-n1 {
        margin-right: -0.25rem !important;
        margin-left: -0.25rem !important;
    }

    .mx-md-n2 {
        margin-right: -0.5rem !important;
        margin-left: -0.5rem !important;
    }

    .mx-md-n3 {
        margin-right: -1rem !important;
        margin-left: -1rem !important;
    }

    .mx-md-n4 {
        margin-right: -1.5rem !important;
        margin-left: -1.5rem !important;
    }

    .mx-md-n5 {
        margin-right: -3rem !important;
        margin-left: -3rem !important;
    }

    .mx-md-n6 {
        margin-right: -5rem !important;
        margin-left: -5rem !important;
    }

    .my-md-n1 {
        margin-top: -0.25rem !important;
        margin-bottom: -0.25rem !important;
    }

    .my-md-n2 {
        margin-top: -0.5rem !important;
        margin-bottom: -0.5rem !important;
    }

    .my-md-n3 {
        margin-top: -1rem !important;
        margin-bottom: -1rem !important;
    }

    .my-md-n4 {
        margin-top: -1.5rem !important;
        margin-bottom: -1.5rem !important;
    }

    .my-md-n5 {
        margin-top: -3rem !important;
        margin-bottom: -3rem !important;
    }

    .my-md-n6 {
        margin-top: -5rem !important;
        margin-bottom: -5rem !important;
    }

    .mt-md-n1 {
        margin-top: -0.25rem !important;
    }

    .mt-md-n2 {
        margin-top: -0.5rem !important;
    }

    .mt-md-n3 {
        margin-top: -1rem !important;
    }

    .mt-md-n4 {
        margin-top: -1.5rem !important;
    }

    .mt-md-n5 {
        margin-top: -3rem !important;
    }

    .mt-md-n6 {
        margin-top: -5rem !important;
    }

    .me-md-n1 {
        margin-right: -0.25rem !important;
    }

    .me-md-n2 {
        margin-right: -0.5rem !important;
    }

    .me-md-n3 {
        margin-right: -1rem !important;
    }

    .me-md-n4 {
        margin-right: -1.5rem !important;
    }

    .me-md-n5 {
        margin-right: -3rem !important;
    }

    .me-md-n6 {
        margin-right: -5rem !important;
    }

    .mb-md-n1 {
        margin-bottom: -0.25rem !important;
    }

    .mb-md-n2 {
        margin-bottom: -0.5rem !important;
    }

    .mb-md-n3 {
        margin-bottom: -1rem !important;
    }

    .mb-md-n4 {
        margin-bottom: -1.5rem !important;
    }

    .mb-md-n5 {
        margin-bottom: -3rem !important;
    }

    .mb-md-n6 {
        margin-bottom: -5rem !important;
    }

    .ms-md-n1 {
        margin-left: -0.25rem !important;
    }

    .ms-md-n2 {
        margin-left: -0.5rem !important;
    }

    .ms-md-n3 {
        margin-left: -1rem !important;
    }

    .ms-md-n4 {
        margin-left: -1.5rem !important;
    }

    .ms-md-n5 {
        margin-left: -3rem !important;
    }

    .ms-md-n6 {
        margin-left: -5rem !important;
    }

    .p-md-0 {
        padding: 0 !important;
    }

    .p-md-1 {
        padding: 0.25rem !important;
    }

    .p-md-2 {
        padding: 0.5rem !important;
    }

    .p-md-3 {
        padding: 1rem !important;
    }

    .p-md-4 {
        padding: 1.5rem !important;
    }

    .p-md-5 {
        padding: 3rem !important;
    }

    .p-md-6 {
        padding: 5rem !important;
    }

    .px-md-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-md-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-md-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-md-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-md-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-md-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .px-md-6 {
        padding-right: 5rem !important;
        padding-left: 5rem !important;
    }

    .py-md-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-md-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-md-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-md-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-md-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-md-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .py-md-6 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    .pt-md-0 {
        padding-top: 0 !important;
    }

    .pt-md-1 {
        padding-top: 0.25rem !important;
    }

    .pt-md-2 {
        padding-top: 0.5rem !important;
    }

    .pt-md-3 {
        padding-top: 1rem !important;
    }

    .pt-md-4 {
        padding-top: 1.5rem !important;
    }

    .pt-md-5 {
        padding-top: 3rem !important;
    }

    .pt-md-6 {
        padding-top: 5rem !important;
    }

    .pe-md-0 {
        padding-right: 0 !important;
    }

    .pe-md-1 {
        padding-right: 0.25rem !important;
    }

    .pe-md-2 {
        padding-right: 0.5rem !important;
    }

    .pe-md-3 {
        padding-right: 1rem !important;
    }

    .pe-md-4 {
        padding-right: 1.5rem !important;
    }

    .pe-md-5 {
        padding-right: 3rem !important;
    }

    .pe-md-6 {
        padding-right: 5rem !important;
    }

    .pb-md-0 {
        padding-bottom: 0 !important;
    }

    .pb-md-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-md-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-md-3 {
        padding-bottom: 1rem !important;
    }

    .pb-md-4 {
        padding-bottom: 1.5rem !important;
    }

    .pb-md-5 {
        padding-bottom: 3rem !important;
    }

    .pb-md-6 {
        padding-bottom: 5rem !important;
    }

    .ps-md-0 {
        padding-left: 0 !important;
    }

    .ps-md-1 {
        padding-left: 0.25rem !important;
    }

    .ps-md-2 {
        padding-left: 0.5rem !important;
    }

    .ps-md-3 {
        padding-left: 1rem !important;
    }

    .ps-md-4 {
        padding-left: 1.5rem !important;
    }

    .ps-md-5 {
        padding-left: 3rem !important;
    }

    .ps-md-6 {
        padding-left: 5rem !important;
    }

    .gap-md-0 {
        gap: 0 !important;
    }

    .gap-md-1 {
        gap: 0.25rem !important;
    }

    .gap-md-2 {
        gap: 0.5rem !important;
    }

    .gap-md-3 {
        gap: 1rem !important;
    }

    .gap-md-4 {
        gap: 1.5rem !important;
    }

    .gap-md-5 {
        gap: 3rem !important;
    }

    .gap-md-6 {
        gap: 5rem !important;
    }

    .row-gap-md-0 {
        row-gap: 0 !important;
    }

    .row-gap-md-1 {
        row-gap: 0.25rem !important;
    }

    .row-gap-md-2 {
        row-gap: 0.5rem !important;
    }

    .row-gap-md-3 {
        row-gap: 1rem !important;
    }

    .row-gap-md-4 {
        row-gap: 1.5rem !important;
    }

    .row-gap-md-5 {
        row-gap: 3rem !important;
    }

    .row-gap-md-6 {
        row-gap: 5rem !important;
    }

    .column-gap-md-0 {
        -moz-column-gap: 0 !important;
        column-gap: 0 !important;
    }

    .column-gap-md-1 {
        -moz-column-gap: 0.25rem !important;
        column-gap: 0.25rem !important;
    }

    .column-gap-md-2 {
        -moz-column-gap: 0.5rem !important;
        column-gap: 0.5rem !important;
    }

    .column-gap-md-3 {
        -moz-column-gap: 1rem !important;
        column-gap: 1rem !important;
    }

    .column-gap-md-4 {
        -moz-column-gap: 1.5rem !important;
        column-gap: 1.5rem !important;
    }

    .column-gap-md-5 {
        -moz-column-gap: 3rem !important;
        column-gap: 3rem !important;
    }

    .column-gap-md-6 {
        -moz-column-gap: 5rem !important;
        column-gap: 5rem !important;
    }

    .text-md-start {
        text-align: left !important;
    }

    .text-md-end {
        text-align: right !important;
    }

    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width: 992px) {
    .float-lg-start {
        float: left !important;
    }

    .float-lg-end {
        float: right !important;
    }

    .float-lg-none {
        float: none !important;
    }

    .object-fit-lg-contain {
        -o-object-fit: contain !important;
        object-fit: contain !important;
    }

    .object-fit-lg-cover {
        -o-object-fit: cover !important;
        object-fit: cover !important;
    }

    .object-fit-lg-fill {
        -o-object-fit: fill !important;
        object-fit: fill !important;
    }

    .object-fit-lg-scale {
        -o-object-fit: scale-down !important;
        object-fit: scale-down !important;
    }

    .object-fit-lg-none {
        -o-object-fit: none !important;
        object-fit: none !important;
    }

    .d-lg-inline {
        display: inline !important;
    }

    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-grid {
        display: grid !important;
    }

    .d-lg-inline-grid {
        display: inline-grid !important;
    }

    .d-lg-table {
        display: table !important;
    }

    .d-lg-table-row {
        display: table-row !important;
    }

    .d-lg-table-cell {
        display: table-cell !important;
    }

    .d-lg-flex {
        display: flex !important;
    }

    .d-lg-inline-flex {
        display: inline-flex !important;
    }

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

    .flex-lg-fill {
        flex: 1 1 auto !important;
    }

    .flex-lg-row {
        flex-direction: row !important;
    }

    .flex-lg-column {
        flex-direction: column !important;
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-lg-start {
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        justify-content: center !important;
    }

    .justify-content-lg-between {
        justify-content: space-between !important;
    }

    .justify-content-lg-around {
        justify-content: space-around !important;
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-lg-start {
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        align-items: center !important;
    }

    .align-items-lg-baseline {
        align-items: baseline !important;
    }

    .align-items-lg-stretch {
        align-items: stretch !important;
    }

    .align-content-lg-start {
        align-content: flex-start !important;
    }

    .align-content-lg-end {
        align-content: flex-end !important;
    }

    .align-content-lg-center {
        align-content: center !important;
    }

    .align-content-lg-between {
        align-content: space-between !important;
    }

    .align-content-lg-around {
        align-content: space-around !important;
    }

    .align-content-lg-stretch {
        align-content: stretch !important;
    }

    .align-self-lg-auto {
        align-self: auto !important;
    }

    .align-self-lg-start {
        align-self: flex-start !important;
    }

    .align-self-lg-end {
        align-self: flex-end !important;
    }

    .align-self-lg-center {
        align-self: center !important;
    }

    .align-self-lg-baseline {
        align-self: baseline !important;
    }

    .align-self-lg-stretch {
        align-self: stretch !important;
    }

    .order-lg-first {
        order: -1 !important;
    }

    .order-lg-0 {
        order: 0 !important;
    }

    .order-lg-1 {
        order: 1 !important;
    }

    .order-lg-2 {
        order: 2 !important;
    }

    .order-lg-3 {
        order: 3 !important;
    }

    .order-lg-4 {
        order: 4 !important;
    }

    .order-lg-5 {
        order: 5 !important;
    }

    .order-lg-last {
        order: 6 !important;
    }

    .m-lg-0 {
        margin: 0 !important;
    }

    .m-lg-1 {
        margin: 0.25rem !important;
    }

    .m-lg-2 {
        margin: 0.5rem !important;
    }

    .m-lg-3 {
        margin: 1rem !important;
    }

    .m-lg-4 {
        margin: 1.5rem !important;
    }

    .m-lg-5 {
        margin: 3rem !important;
    }

    .m-lg-6 {
        margin: 5rem !important;
    }

    .m-lg-auto {
        margin: auto !important;
    }

    .mx-lg-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-lg-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-lg-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-lg-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-lg-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-lg-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-lg-6 {
        margin-right: 5rem !important;
        margin-left: 5rem !important;
    }

    .mx-lg-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-lg-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-lg-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-lg-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-lg-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-lg-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-lg-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-lg-6 {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important;
    }

    .my-lg-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-lg-0 {
        margin-top: 0 !important;
    }

    .mt-lg-1 {
        margin-top: 0.25rem !important;
    }

    .mt-lg-2 {
        margin-top: 0.5rem !important;
    }

    .mt-lg-3 {
        margin-top: 1rem !important;
    }

    .mt-lg-4 {
        margin-top: 1.5rem !important;
    }

    .mt-lg-5 {
        margin-top: 3rem !important;
    }

    .mt-lg-6 {
        margin-top: 5rem !important;
    }

    .mt-lg-auto {
        margin-top: auto !important;
    }

    .me-lg-0 {
        margin-right: 0 !important;
    }

    .me-lg-1 {
        margin-right: 0.25rem !important;
    }

    .me-lg-2 {
        margin-right: 0.5rem !important;
    }

    .me-lg-3 {
        margin-right: 1rem !important;
    }

    .me-lg-4 {
        margin-right: 1.5rem !important;
    }

    .me-lg-5 {
        margin-right: 3rem !important;
    }

    .me-lg-6 {
        margin-right: 5rem !important;
    }

    .me-lg-auto {
        margin-right: auto !important;
    }

    .mb-lg-0 {
        margin-bottom: 0 !important;
    }

    .mb-lg-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-lg-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-lg-3 {
        margin-bottom: 1rem !important;
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-lg-5 {
        margin-bottom: 3rem !important;
    }

    .mb-lg-6 {
        margin-bottom: 5rem !important;
    }

    .mb-lg-auto {
        margin-bottom: auto !important;
    }

    .ms-lg-0 {
        margin-left: 0 !important;
    }

    .ms-lg-1 {
        margin-left: 0.25rem !important;
    }

    .ms-lg-2 {
        margin-left: 0.5rem !important;
    }

    .ms-lg-3 {
        margin-left: 1rem !important;
    }

    .ms-lg-4 {
        margin-left: 1.5rem !important;
    }

    .ms-lg-5 {
        margin-left: 3rem !important;
    }

    .ms-lg-6 {
        margin-left: 5rem !important;
    }

    .ms-lg-auto {
        margin-left: auto !important;
    }

    .m-lg-n1 {
        margin: -0.25rem !important;
    }

    .m-lg-n2 {
        margin: -0.5rem !important;
    }

    .m-lg-n3 {
        margin: -1rem !important;
    }

    .m-lg-n4 {
        margin: -1.5rem !important;
    }

    .m-lg-n5 {
        margin: -3rem !important;
    }

    .m-lg-n6 {
        margin: -5rem !important;
    }

    .mx-lg-n1 {
        margin-right: -0.25rem !important;
        margin-left: -0.25rem !important;
    }

    .mx-lg-n2 {
        margin-right: -0.5rem !important;
        margin-left: -0.5rem !important;
    }

    .mx-lg-n3 {
        margin-right: -1rem !important;
        margin-left: -1rem !important;
    }

    .mx-lg-n4 {
        margin-right: -1.5rem !important;
        margin-left: -1.5rem !important;
    }

    .mx-lg-n5 {
        margin-right: -3rem !important;
        margin-left: -3rem !important;
    }

    .mx-lg-n6 {
        margin-right: -5rem !important;
        margin-left: -5rem !important;
    }

    .my-lg-n1 {
        margin-top: -0.25rem !important;
        margin-bottom: -0.25rem !important;
    }

    .my-lg-n2 {
        margin-top: -0.5rem !important;
        margin-bottom: -0.5rem !important;
    }

    .my-lg-n3 {
        margin-top: -1rem !important;
        margin-bottom: -1rem !important;
    }

    .my-lg-n4 {
        margin-top: -1.5rem !important;
        margin-bottom: -1.5rem !important;
    }

    .my-lg-n5 {
        margin-top: -3rem !important;
        margin-bottom: -3rem !important;
    }

    .my-lg-n6 {
        margin-top: -5rem !important;
        margin-bottom: -5rem !important;
    }

    .mt-lg-n1 {
        margin-top: -0.25rem !important;
    }

    .mt-lg-n2 {
        margin-top: -0.5rem !important;
    }

    .mt-lg-n3 {
        margin-top: -1rem !important;
    }

    .mt-lg-n4 {
        margin-top: -1.5rem !important;
    }

    .mt-lg-n5 {
        margin-top: -3rem !important;
    }

    .mt-lg-n6 {
        margin-top: -5rem !important;
    }

    .me-lg-n1 {
        margin-right: -0.25rem !important;
    }

    .me-lg-n2 {
        margin-right: -0.5rem !important;
    }

    .me-lg-n3 {
        margin-right: -1rem !important;
    }

    .me-lg-n4 {
        margin-right: -1.5rem !important;
    }

    .me-lg-n5 {
        margin-right: -3rem !important;
    }

    .me-lg-n6 {
        margin-right: -5rem !important;
    }

    .mb-lg-n1 {
        margin-bottom: -0.25rem !important;
    }

    .mb-lg-n2 {
        margin-bottom: -0.5rem !important;
    }

    .mb-lg-n3 {
        margin-bottom: -1rem !important;
    }

    .mb-lg-n4 {
        margin-bottom: -1.5rem !important;
    }

    .mb-lg-n5 {
        margin-bottom: -3rem !important;
    }

    .mb-lg-n6 {
        margin-bottom: -5rem !important;
    }

    .ms-lg-n1 {
        margin-left: -0.25rem !important;
    }

    .ms-lg-n2 {
        margin-left: -0.5rem !important;
    }

    .ms-lg-n3 {
        margin-left: -1rem !important;
    }

    .ms-lg-n4 {
        margin-left: -1.5rem !important;
    }

    .ms-lg-n5 {
        margin-left: -3rem !important;
    }

    .ms-lg-n6 {
        margin-left: -5rem !important;
    }

    .p-lg-0 {
        padding: 0 !important;
    }

    .p-lg-1 {
        padding: 0.25rem !important;
    }

    .p-lg-2 {
        padding: 0.5rem !important;
    }

    .p-lg-3 {
        padding: 1rem !important;
    }

    .p-lg-4 {
        padding: 1.5rem !important;
    }

    .p-lg-5 {
        padding: 3rem !important;
    }

    .p-lg-6 {
        padding: 5rem !important;
    }

    .px-lg-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-lg-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-lg-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-lg-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-lg-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-lg-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .px-lg-6 {
        padding-right: 5rem !important;
        padding-left: 5rem !important;
    }

    .py-lg-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-lg-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-lg-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-lg-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-lg-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-lg-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .py-lg-6 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    .pt-lg-0 {
        padding-top: 0 !important;
    }

    .pt-lg-1 {
        padding-top: 0.25rem !important;
    }

    .pt-lg-2 {
        padding-top: 0.5rem !important;
    }

    .pt-lg-3 {
        padding-top: 1rem !important;
    }

    .pt-lg-4 {
        padding-top: 1.5rem !important;
    }

    .pt-lg-5 {
        padding-top: 3rem !important;
    }

    .pt-lg-6 {
        padding-top: 5rem !important;
    }

    .pe-lg-0 {
        padding-right: 0 !important;
    }

    .pe-lg-1 {
        padding-right: 0.25rem !important;
    }

    .pe-lg-2 {
        padding-right: 0.5rem !important;
    }

    .pe-lg-3 {
        padding-right: 1rem !important;
    }

    .pe-lg-4 {
        padding-right: 1.5rem !important;
    }

    .pe-lg-5 {
        padding-right: 3rem !important;
    }

    .pe-lg-6 {
        padding-right: 5rem !important;
    }

    .pb-lg-0 {
        padding-bottom: 0 !important;
    }

    .pb-lg-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-lg-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-lg-3 {
        padding-bottom: 1rem !important;
    }

    .pb-lg-4 {
        padding-bottom: 1.5rem !important;
    }

    .pb-lg-5 {
        padding-bottom: 3rem !important;
    }

    .pb-lg-6 {
        padding-bottom: 5rem !important;
    }

    .ps-lg-0 {
        padding-left: 0 !important;
    }

    .ps-lg-1 {
        padding-left: 0.25rem !important;
    }

    .ps-lg-2 {
        padding-left: 0.5rem !important;
    }

    .ps-lg-3 {
        padding-left: 1rem !important;
    }

    .ps-lg-4 {
        padding-left: 1.5rem !important;
    }

    .ps-lg-5 {
        padding-left: 3rem !important;
    }

    .ps-lg-6 {
        padding-left: 5rem !important;
    }

    .gap-lg-0 {
        gap: 0 !important;
    }

    .gap-lg-1 {
        gap: 0.25rem !important;
    }

    .gap-lg-2 {
        gap: 0.5rem !important;
    }

    .gap-lg-3 {
        gap: 1rem !important;
    }

    .gap-lg-4 {
        gap: 1.5rem !important;
    }

    .gap-lg-5 {
        gap: 3rem !important;
    }

    .gap-lg-6 {
        gap: 5rem !important;
    }

    .row-gap-lg-0 {
        row-gap: 0 !important;
    }

    .row-gap-lg-1 {
        row-gap: 0.25rem !important;
    }

    .row-gap-lg-2 {
        row-gap: 0.5rem !important;
    }

    .row-gap-lg-3 {
        row-gap: 1rem !important;
    }

    .row-gap-lg-4 {
        row-gap: 1.5rem !important;
    }

    .row-gap-lg-5 {
        row-gap: 3rem !important;
    }

    .row-gap-lg-6 {
        row-gap: 5rem !important;
    }

    .column-gap-lg-0 {
        -moz-column-gap: 0 !important;
        column-gap: 0 !important;
    }

    .column-gap-lg-1 {
        -moz-column-gap: 0.25rem !important;
        column-gap: 0.25rem !important;
    }

    .column-gap-lg-2 {
        -moz-column-gap: 0.5rem !important;
        column-gap: 0.5rem !important;
    }

    .column-gap-lg-3 {
        -moz-column-gap: 1rem !important;
        column-gap: 1rem !important;
    }

    .column-gap-lg-4 {
        -moz-column-gap: 1.5rem !important;
        column-gap: 1.5rem !important;
    }

    .column-gap-lg-5 {
        -moz-column-gap: 3rem !important;
        column-gap: 3rem !important;
    }

    .column-gap-lg-6 {
        -moz-column-gap: 5rem !important;
        column-gap: 5rem !important;
    }

    .text-lg-start {
        text-align: left !important;
    }

    .text-lg-end {
        text-align: right !important;
    }

    .text-lg-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .float-xl-start {
        float: left !important;
    }

    .float-xl-end {
        float: right !important;
    }

    .float-xl-none {
        float: none !important;
    }

    .object-fit-xl-contain {
        -o-object-fit: contain !important;
        object-fit: contain !important;
    }

    .object-fit-xl-cover {
        -o-object-fit: cover !important;
        object-fit: cover !important;
    }

    .object-fit-xl-fill {
        -o-object-fit: fill !important;
        object-fit: fill !important;
    }

    .object-fit-xl-scale {
        -o-object-fit: scale-down !important;
        object-fit: scale-down !important;
    }

    .object-fit-xl-none {
        -o-object-fit: none !important;
        object-fit: none !important;
    }

    .d-xl-inline {
        display: inline !important;
    }

    .d-xl-inline-block {
        display: inline-block !important;
    }

    .d-xl-block {
        display: block !important;
    }

    .d-xl-grid {
        display: grid !important;
    }

    .d-xl-inline-grid {
        display: inline-grid !important;
    }

    .d-xl-table {
        display: table !important;
    }

    .d-xl-table-row {
        display: table-row !important;
    }

    .d-xl-table-cell {
        display: table-cell !important;
    }

    .d-xl-flex {
        display: flex !important;
    }

    .d-xl-inline-flex {
        display: inline-flex !important;
    }

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

    .flex-xl-fill {
        flex: 1 1 auto !important;
    }

    .flex-xl-row {
        flex-direction: row !important;
    }

    .flex-xl-column {
        flex-direction: column !important;
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-xl-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-xl-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important;
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-xl-start {
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        justify-content: center !important;
    }

    .justify-content-xl-between {
        justify-content: space-between !important;
    }

    .justify-content-xl-around {
        justify-content: space-around !important;
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-xl-start {
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        align-items: center !important;
    }

    .align-items-xl-baseline {
        align-items: baseline !important;
    }

    .align-items-xl-stretch {
        align-items: stretch !important;
    }

    .align-content-xl-start {
        align-content: flex-start !important;
    }

    .align-content-xl-end {
        align-content: flex-end !important;
    }

    .align-content-xl-center {
        align-content: center !important;
    }

    .align-content-xl-between {
        align-content: space-between !important;
    }

    .align-content-xl-around {
        align-content: space-around !important;
    }

    .align-content-xl-stretch {
        align-content: stretch !important;
    }

    .align-self-xl-auto {
        align-self: auto !important;
    }

    .align-self-xl-start {
        align-self: flex-start !important;
    }

    .align-self-xl-end {
        align-self: flex-end !important;
    }

    .align-self-xl-center {
        align-self: center !important;
    }

    .align-self-xl-baseline {
        align-self: baseline !important;
    }

    .align-self-xl-stretch {
        align-self: stretch !important;
    }

    .order-xl-first {
        order: -1 !important;
    }

    .order-xl-0 {
        order: 0 !important;
    }

    .order-xl-1 {
        order: 1 !important;
    }

    .order-xl-2 {
        order: 2 !important;
    }

    .order-xl-3 {
        order: 3 !important;
    }

    .order-xl-4 {
        order: 4 !important;
    }

    .order-xl-5 {
        order: 5 !important;
    }

    .order-xl-last {
        order: 6 !important;
    }

    .m-xl-0 {
        margin: 0 !important;
    }

    .m-xl-1 {
        margin: 0.25rem !important;
    }

    .m-xl-2 {
        margin: 0.5rem !important;
    }

    .m-xl-3 {
        margin: 1rem !important;
    }

    .m-xl-4 {
        margin: 1.5rem !important;
    }

    .m-xl-5 {
        margin: 3rem !important;
    }

    .m-xl-6 {
        margin: 5rem !important;
    }

    .m-xl-auto {
        margin: auto !important;
    }

    .mx-xl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-xl-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-xl-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-xl-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-xl-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-xl-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-xl-6 {
        margin-right: 5rem !important;
        margin-left: 5rem !important;
    }

    .mx-xl-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-xl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-xl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-xl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-xl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-xl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-xl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-xl-6 {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important;
    }

    .my-xl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-xl-0 {
        margin-top: 0 !important;
    }

    .mt-xl-1 {
        margin-top: 0.25rem !important;
    }

    .mt-xl-2 {
        margin-top: 0.5rem !important;
    }

    .mt-xl-3 {
        margin-top: 1rem !important;
    }

    .mt-xl-4 {
        margin-top: 1.5rem !important;
    }

    .mt-xl-5 {
        margin-top: 3rem !important;
    }

    .mt-xl-6 {
        margin-top: 5rem !important;
    }

    .mt-xl-auto {
        margin-top: auto !important;
    }

    .me-xl-0 {
        margin-right: 0 !important;
    }

    .me-xl-1 {
        margin-right: 0.25rem !important;
    }

    .me-xl-2 {
        margin-right: 0.5rem !important;
    }

    .me-xl-3 {
        margin-right: 1rem !important;
    }

    .me-xl-4 {
        margin-right: 1.5rem !important;
    }

    .me-xl-5 {
        margin-right: 3rem !important;
    }

    .me-xl-6 {
        margin-right: 5rem !important;
    }

    .me-xl-auto {
        margin-right: auto !important;
    }

    .mb-xl-0 {
        margin-bottom: 0 !important;
    }

    .mb-xl-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-xl-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-xl-3 {
        margin-bottom: 1rem !important;
    }

    .mb-xl-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-xl-5 {
        margin-bottom: 3rem !important;
    }

    .mb-xl-6 {
        margin-bottom: 5rem !important;
    }

    .mb-xl-auto {
        margin-bottom: auto !important;
    }

    .ms-xl-0 {
        margin-left: 0 !important;
    }

    .ms-xl-1 {
        margin-left: 0.25rem !important;
    }

    .ms-xl-2 {
        margin-left: 0.5rem !important;
    }

    .ms-xl-3 {
        margin-left: 1rem !important;
    }

    .ms-xl-4 {
        margin-left: 1.5rem !important;
    }

    .ms-xl-5 {
        margin-left: 3rem !important;
    }

    .ms-xl-6 {
        margin-left: 5rem !important;
    }

    .ms-xl-auto {
        margin-left: auto !important;
    }

    .m-xl-n1 {
        margin: -0.25rem !important;
    }

    .m-xl-n2 {
        margin: -0.5rem !important;
    }

    .m-xl-n3 {
        margin: -1rem !important;
    }

    .m-xl-n4 {
        margin: -1.5rem !important;
    }

    .m-xl-n5 {
        margin: -3rem !important;
    }

    .m-xl-n6 {
        margin: -5rem !important;
    }

    .mx-xl-n1 {
        margin-right: -0.25rem !important;
        margin-left: -0.25rem !important;
    }

    .mx-xl-n2 {
        margin-right: -0.5rem !important;
        margin-left: -0.5rem !important;
    }

    .mx-xl-n3 {
        margin-right: -1rem !important;
        margin-left: -1rem !important;
    }

    .mx-xl-n4 {
        margin-right: -1.5rem !important;
        margin-left: -1.5rem !important;
    }

    .mx-xl-n5 {
        margin-right: -3rem !important;
        margin-left: -3rem !important;
    }

    .mx-xl-n6 {
        margin-right: -5rem !important;
        margin-left: -5rem !important;
    }

    .my-xl-n1 {
        margin-top: -0.25rem !important;
        margin-bottom: -0.25rem !important;
    }

    .my-xl-n2 {
        margin-top: -0.5rem !important;
        margin-bottom: -0.5rem !important;
    }

    .my-xl-n3 {
        margin-top: -1rem !important;
        margin-bottom: -1rem !important;
    }

    .my-xl-n4 {
        margin-top: -1.5rem !important;
        margin-bottom: -1.5rem !important;
    }

    .my-xl-n5 {
        margin-top: -3rem !important;
        margin-bottom: -3rem !important;
    }

    .my-xl-n6 {
        margin-top: -5rem !important;
        margin-bottom: -5rem !important;
    }

    .mt-xl-n1 {
        margin-top: -0.25rem !important;
    }

    .mt-xl-n2 {
        margin-top: -0.5rem !important;
    }

    .mt-xl-n3 {
        margin-top: -1rem !important;
    }

    .mt-xl-n4 {
        margin-top: -1.5rem !important;
    }

    .mt-xl-n5 {
        margin-top: -3rem !important;
    }

    .mt-xl-n6 {
        margin-top: -5rem !important;
    }

    .me-xl-n1 {
        margin-right: -0.25rem !important;
    }

    .me-xl-n2 {
        margin-right: -0.5rem !important;
    }

    .me-xl-n3 {
        margin-right: -1rem !important;
    }

    .me-xl-n4 {
        margin-right: -1.5rem !important;
    }

    .me-xl-n5 {
        margin-right: -3rem !important;
    }

    .me-xl-n6 {
        margin-right: -5rem !important;
    }

    .mb-xl-n1 {
        margin-bottom: -0.25rem !important;
    }

    .mb-xl-n2 {
        margin-bottom: -0.5rem !important;
    }

    .mb-xl-n3 {
        margin-bottom: -1rem !important;
    }

    .mb-xl-n4 {
        margin-bottom: -1.5rem !important;
    }

    .mb-xl-n5 {
        margin-bottom: -3rem !important;
    }

    .mb-xl-n6 {
        margin-bottom: -5rem !important;
    }

    .ms-xl-n1 {
        margin-left: -0.25rem !important;
    }

    .ms-xl-n2 {
        margin-left: -0.5rem !important;
    }

    .ms-xl-n3 {
        margin-left: -1rem !important;
    }

    .ms-xl-n4 {
        margin-left: -1.5rem !important;
    }

    .ms-xl-n5 {
        margin-left: -3rem !important;
    }

    .ms-xl-n6 {
        margin-left: -5rem !important;
    }

    .p-xl-0 {
        padding: 0 !important;
    }

    .p-xl-1 {
        padding: 0.25rem !important;
    }

    .p-xl-2 {
        padding: 0.5rem !important;
    }

    .p-xl-3 {
        padding: 1rem !important;
    }

    .p-xl-4 {
        padding: 1.5rem !important;
    }

    .p-xl-5 {
        padding: 3rem !important;
    }

    .p-xl-6 {
        padding: 5rem !important;
    }

    .px-xl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-xl-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-xl-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-xl-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-xl-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-xl-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .px-xl-6 {
        padding-right: 5rem !important;
        padding-left: 5rem !important;
    }

    .py-xl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-xl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-xl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-xl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-xl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-xl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .py-xl-6 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    .pt-xl-0 {
        padding-top: 0 !important;
    }

    .pt-xl-1 {
        padding-top: 0.25rem !important;
    }

    .pt-xl-2 {
        padding-top: 0.5rem !important;
    }

    .pt-xl-3 {
        padding-top: 1rem !important;
    }

    .pt-xl-4 {
        padding-top: 1.5rem !important;
    }

    .pt-xl-5 {
        padding-top: 3rem !important;
    }

    .pt-xl-6 {
        padding-top: 5rem !important;
    }

    .pe-xl-0 {
        padding-right: 0 !important;
    }

    .pe-xl-1 {
        padding-right: 0.25rem !important;
    }

    .pe-xl-2 {
        padding-right: 0.5rem !important;
    }

    .pe-xl-3 {
        padding-right: 1rem !important;
    }

    .pe-xl-4 {
        padding-right: 1.5rem !important;
    }

    .pe-xl-5 {
        padding-right: 3rem !important;
    }

    .pe-xl-6 {
        padding-right: 5rem !important;
    }

    .pb-xl-0 {
        padding-bottom: 0 !important;
    }

    .pb-xl-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-xl-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-xl-3 {
        padding-bottom: 1rem !important;
    }

    .pb-xl-4 {
        padding-bottom: 1.5rem !important;
    }

    .pb-xl-5 {
        padding-bottom: 3rem !important;
    }

    .pb-xl-6 {
        padding-bottom: 5rem !important;
    }

    .ps-xl-0 {
        padding-left: 0 !important;
    }

    .ps-xl-1 {
        padding-left: 0.25rem !important;
    }

    .ps-xl-2 {
        padding-left: 0.5rem !important;
    }

    .ps-xl-3 {
        padding-left: 1rem !important;
    }

    .ps-xl-4 {
        padding-left: 1.5rem !important;
    }

    .ps-xl-5 {
        padding-left: 3rem !important;
    }

    .ps-xl-6 {
        padding-left: 5rem !important;
    }

    .gap-xl-0 {
        gap: 0 !important;
    }

    .gap-xl-1 {
        gap: 0.25rem !important;
    }

    .gap-xl-2 {
        gap: 0.5rem !important;
    }

    .gap-xl-3 {
        gap: 1rem !important;
    }

    .gap-xl-4 {
        gap: 1.5rem !important;
    }

    .gap-xl-5 {
        gap: 3rem !important;
    }

    .gap-xl-6 {
        gap: 5rem !important;
    }

    .row-gap-xl-0 {
        row-gap: 0 !important;
    }

    .row-gap-xl-1 {
        row-gap: 0.25rem !important;
    }

    .row-gap-xl-2 {
        row-gap: 0.5rem !important;
    }

    .row-gap-xl-3 {
        row-gap: 1rem !important;
    }

    .row-gap-xl-4 {
        row-gap: 1.5rem !important;
    }

    .row-gap-xl-5 {
        row-gap: 3rem !important;
    }

    .row-gap-xl-6 {
        row-gap: 5rem !important;
    }

    .column-gap-xl-0 {
        -moz-column-gap: 0 !important;
        column-gap: 0 !important;
    }

    .column-gap-xl-1 {
        -moz-column-gap: 0.25rem !important;
        column-gap: 0.25rem !important;
    }

    .column-gap-xl-2 {
        -moz-column-gap: 0.5rem !important;
        column-gap: 0.5rem !important;
    }

    .column-gap-xl-3 {
        -moz-column-gap: 1rem !important;
        column-gap: 1rem !important;
    }

    .column-gap-xl-4 {
        -moz-column-gap: 1.5rem !important;
        column-gap: 1.5rem !important;
    }

    .column-gap-xl-5 {
        -moz-column-gap: 3rem !important;
        column-gap: 3rem !important;
    }

    .column-gap-xl-6 {
        -moz-column-gap: 5rem !important;
        column-gap: 5rem !important;
    }

    .text-xl-start {
        text-align: left !important;
    }

    .text-xl-end {
        text-align: right !important;
    }

    .text-xl-center {
        text-align: center !important;
    }
}

@media (min-width: 1400px) {
    .float-xxl-start {
        float: left !important;
    }

    .float-xxl-end {
        float: right !important;
    }

    .float-xxl-none {
        float: none !important;
    }

    .object-fit-xxl-contain {
        -o-object-fit: contain !important;
        object-fit: contain !important;
    }

    .object-fit-xxl-cover {
        -o-object-fit: cover !important;
        object-fit: cover !important;
    }

    .object-fit-xxl-fill {
        -o-object-fit: fill !important;
        object-fit: fill !important;
    }

    .object-fit-xxl-scale {
        -o-object-fit: scale-down !important;
        object-fit: scale-down !important;
    }

    .object-fit-xxl-none {
        -o-object-fit: none !important;
        object-fit: none !important;
    }

    .d-xxl-inline {
        display: inline !important;
    }

    .d-xxl-inline-block {
        display: inline-block !important;
    }

    .d-xxl-block {
        display: block !important;
    }

    .d-xxl-grid {
        display: grid !important;
    }

    .d-xxl-inline-grid {
        display: inline-grid !important;
    }

    .d-xxl-table {
        display: table !important;
    }

    .d-xxl-table-row {
        display: table-row !important;
    }

    .d-xxl-table-cell {
        display: table-cell !important;
    }

    .d-xxl-flex {
        display: flex !important;
    }

    .d-xxl-inline-flex {
        display: inline-flex !important;
    }

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

    .flex-xxl-fill {
        flex: 1 1 auto !important;
    }

    .flex-xxl-row {
        flex-direction: row !important;
    }

    .flex-xxl-column {
        flex-direction: column !important;
    }

    .flex-xxl-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-xxl-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-xxl-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-xxl-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-xxl-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-xxl-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-xxl-wrap {
        flex-wrap: wrap !important;
    }

    .flex-xxl-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-xxl-start {
        justify-content: flex-start !important;
    }

    .justify-content-xxl-end {
        justify-content: flex-end !important;
    }

    .justify-content-xxl-center {
        justify-content: center !important;
    }

    .justify-content-xxl-between {
        justify-content: space-between !important;
    }

    .justify-content-xxl-around {
        justify-content: space-around !important;
    }

    .justify-content-xxl-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-xxl-start {
        align-items: flex-start !important;
    }

    .align-items-xxl-end {
        align-items: flex-end !important;
    }

    .align-items-xxl-center {
        align-items: center !important;
    }

    .align-items-xxl-baseline {
        align-items: baseline !important;
    }

    .align-items-xxl-stretch {
        align-items: stretch !important;
    }

    .align-content-xxl-start {
        align-content: flex-start !important;
    }

    .align-content-xxl-end {
        align-content: flex-end !important;
    }

    .align-content-xxl-center {
        align-content: center !important;
    }

    .align-content-xxl-between {
        align-content: space-between !important;
    }

    .align-content-xxl-around {
        align-content: space-around !important;
    }

    .align-content-xxl-stretch {
        align-content: stretch !important;
    }

    .align-self-xxl-auto {
        align-self: auto !important;
    }

    .align-self-xxl-start {
        align-self: flex-start !important;
    }

    .align-self-xxl-end {
        align-self: flex-end !important;
    }

    .align-self-xxl-center {
        align-self: center !important;
    }

    .align-self-xxl-baseline {
        align-self: baseline !important;
    }

    .align-self-xxl-stretch {
        align-self: stretch !important;
    }

    .order-xxl-first {
        order: -1 !important;
    }

    .order-xxl-0 {
        order: 0 !important;
    }

    .order-xxl-1 {
        order: 1 !important;
    }

    .order-xxl-2 {
        order: 2 !important;
    }

    .order-xxl-3 {
        order: 3 !important;
    }

    .order-xxl-4 {
        order: 4 !important;
    }

    .order-xxl-5 {
        order: 5 !important;
    }

    .order-xxl-last {
        order: 6 !important;
    }

    .m-xxl-0 {
        margin: 0 !important;
    }

    .m-xxl-1 {
        margin: 0.25rem !important;
    }

    .m-xxl-2 {
        margin: 0.5rem !important;
    }

    .m-xxl-3 {
        margin: 1rem !important;
    }

    .m-xxl-4 {
        margin: 1.5rem !important;
    }

    .m-xxl-5 {
        margin: 3rem !important;
    }

    .m-xxl-6 {
        margin: 5rem !important;
    }

    .m-xxl-auto {
        margin: auto !important;
    }

    .mx-xxl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-xxl-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-xxl-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-xxl-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-xxl-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-xxl-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-xxl-6 {
        margin-right: 5rem !important;
        margin-left: 5rem !important;
    }

    .mx-xxl-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-xxl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-xxl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-xxl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-xxl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-xxl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-xxl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-xxl-6 {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important;
    }

    .my-xxl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-xxl-0 {
        margin-top: 0 !important;
    }

    .mt-xxl-1 {
        margin-top: 0.25rem !important;
    }

    .mt-xxl-2 {
        margin-top: 0.5rem !important;
    }

    .mt-xxl-3 {
        margin-top: 1rem !important;
    }

    .mt-xxl-4 {
        margin-top: 1.5rem !important;
    }

    .mt-xxl-5 {
        margin-top: 3rem !important;
    }

    .mt-xxl-6 {
        margin-top: 5rem !important;
    }

    .mt-xxl-auto {
        margin-top: auto !important;
    }

    .me-xxl-0 {
        margin-right: 0 !important;
    }

    .me-xxl-1 {
        margin-right: 0.25rem !important;
    }

    .me-xxl-2 {
        margin-right: 0.5rem !important;
    }

    .me-xxl-3 {
        margin-right: 1rem !important;
    }

    .me-xxl-4 {
        margin-right: 1.5rem !important;
    }

    .me-xxl-5 {
        margin-right: 3rem !important;
    }

    .me-xxl-6 {
        margin-right: 5rem !important;
    }

    .me-xxl-auto {
        margin-right: auto !important;
    }

    .mb-xxl-0 {
        margin-bottom: 0 !important;
    }

    .mb-xxl-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-xxl-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-xxl-3 {
        margin-bottom: 1rem !important;
    }

    .mb-xxl-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-xxl-5 {
        margin-bottom: 3rem !important;
    }

    .mb-xxl-6 {
        margin-bottom: 5rem !important;
    }

    .mb-xxl-auto {
        margin-bottom: auto !important;
    }

    .ms-xxl-0 {
        margin-left: 0 !important;
    }

    .ms-xxl-1 {
        margin-left: 0.25rem !important;
    }

    .ms-xxl-2 {
        margin-left: 0.5rem !important;
    }

    .ms-xxl-3 {
        margin-left: 1rem !important;
    }

    .ms-xxl-4 {
        margin-left: 1.5rem !important;
    }

    .ms-xxl-5 {
        margin-left: 3rem !important;
    }

    .ms-xxl-6 {
        margin-left: 5rem !important;
    }

    .ms-xxl-auto {
        margin-left: auto !important;
    }

    .m-xxl-n1 {
        margin: -0.25rem !important;
    }

    .m-xxl-n2 {
        margin: -0.5rem !important;
    }

    .m-xxl-n3 {
        margin: -1rem !important;
    }

    .m-xxl-n4 {
        margin: -1.5rem !important;
    }

    .m-xxl-n5 {
        margin: -3rem !important;
    }

    .m-xxl-n6 {
        margin: -5rem !important;
    }

    .mx-xxl-n1 {
        margin-right: -0.25rem !important;
        margin-left: -0.25rem !important;
    }

    .mx-xxl-n2 {
        margin-right: -0.5rem !important;
        margin-left: -0.5rem !important;
    }

    .mx-xxl-n3 {
        margin-right: -1rem !important;
        margin-left: -1rem !important;
    }

    .mx-xxl-n4 {
        margin-right: -1.5rem !important;
        margin-left: -1.5rem !important;
    }

    .mx-xxl-n5 {
        margin-right: -3rem !important;
        margin-left: -3rem !important;
    }

    .mx-xxl-n6 {
        margin-right: -5rem !important;
        margin-left: -5rem !important;
    }

    .my-xxl-n1 {
        margin-top: -0.25rem !important;
        margin-bottom: -0.25rem !important;
    }

    .my-xxl-n2 {
        margin-top: -0.5rem !important;
        margin-bottom: -0.5rem !important;
    }

    .my-xxl-n3 {
        margin-top: -1rem !important;
        margin-bottom: -1rem !important;
    }

    .my-xxl-n4 {
        margin-top: -1.5rem !important;
        margin-bottom: -1.5rem !important;
    }

    .my-xxl-n5 {
        margin-top: -3rem !important;
        margin-bottom: -3rem !important;
    }

    .my-xxl-n6 {
        margin-top: -5rem !important;
        margin-bottom: -5rem !important;
    }

    .mt-xxl-n1 {
        margin-top: -0.25rem !important;
    }

    .mt-xxl-n2 {
        margin-top: -0.5rem !important;
    }

    .mt-xxl-n3 {
        margin-top: -1rem !important;
    }

    .mt-xxl-n4 {
        margin-top: -1.5rem !important;
    }

    .mt-xxl-n5 {
        margin-top: -3rem !important;
    }

    .mt-xxl-n6 {
        margin-top: -5rem !important;
    }

    .me-xxl-n1 {
        margin-right: -0.25rem !important;
    }

    .me-xxl-n2 {
        margin-right: -0.5rem !important;
    }

    .me-xxl-n3 {
        margin-right: -1rem !important;
    }

    .me-xxl-n4 {
        margin-right: -1.5rem !important;
    }

    .me-xxl-n5 {
        margin-right: -3rem !important;
    }

    .me-xxl-n6 {
        margin-right: -5rem !important;
    }

    .mb-xxl-n1 {
        margin-bottom: -0.25rem !important;
    }

    .mb-xxl-n2 {
        margin-bottom: -0.5rem !important;
    }

    .mb-xxl-n3 {
        margin-bottom: -1rem !important;
    }

    .mb-xxl-n4 {
        margin-bottom: -1.5rem !important;
    }

    .mb-xxl-n5 {
        margin-bottom: -3rem !important;
    }

    .mb-xxl-n6 {
        margin-bottom: -5rem !important;
    }

    .ms-xxl-n1 {
        margin-left: -0.25rem !important;
    }

    .ms-xxl-n2 {
        margin-left: -0.5rem !important;
    }

    .ms-xxl-n3 {
        margin-left: -1rem !important;
    }

    .ms-xxl-n4 {
        margin-left: -1.5rem !important;
    }

    .ms-xxl-n5 {
        margin-left: -3rem !important;
    }

    .ms-xxl-n6 {
        margin-left: -5rem !important;
    }

    .p-xxl-0 {
        padding: 0 !important;
    }

    .p-xxl-1 {
        padding: 0.25rem !important;
    }

    .p-xxl-2 {
        padding: 0.5rem !important;
    }

    .p-xxl-3 {
        padding: 1rem !important;
    }

    .p-xxl-4 {
        padding: 1.5rem !important;
    }

    .p-xxl-5 {
        padding: 3rem !important;
    }

    .p-xxl-6 {
        padding: 5rem !important;
    }

    .px-xxl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-xxl-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-xxl-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-xxl-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-xxl-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-xxl-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .px-xxl-6 {
        padding-right: 5rem !important;
        padding-left: 5rem !important;
    }

    .py-xxl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-xxl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-xxl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-xxl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-xxl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-xxl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .py-xxl-6 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    .pt-xxl-0 {
        padding-top: 0 !important;
    }

    .pt-xxl-1 {
        padding-top: 0.25rem !important;
    }

    .pt-xxl-2 {
        padding-top: 0.5rem !important;
    }

    .pt-xxl-3 {
        padding-top: 1rem !important;
    }

    .pt-xxl-4 {
        padding-top: 1.5rem !important;
    }

    .pt-xxl-5 {
        padding-top: 3rem !important;
    }

    .pt-xxl-6 {
        padding-top: 5rem !important;
    }

    .pe-xxl-0 {
        padding-right: 0 !important;
    }

    .pe-xxl-1 {
        padding-right: 0.25rem !important;
    }

    .pe-xxl-2 {
        padding-right: 0.5rem !important;
    }

    .pe-xxl-3 {
        padding-right: 1rem !important;
    }

    .pe-xxl-4 {
        padding-right: 1.5rem !important;
    }

    .pe-xxl-5 {
        padding-right: 3rem !important;
    }

    .pe-xxl-6 {
        padding-right: 5rem !important;
    }

    .pb-xxl-0 {
        padding-bottom: 0 !important;
    }

    .pb-xxl-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-xxl-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-xxl-3 {
        padding-bottom: 1rem !important;
    }

    .pb-xxl-4 {
        padding-bottom: 1.5rem !important;
    }

    .pb-xxl-5 {
        padding-bottom: 3rem !important;
    }

    .pb-xxl-6 {
        padding-bottom: 5rem !important;
    }

    .ps-xxl-0 {
        padding-left: 0 !important;
    }

    .ps-xxl-1 {
        padding-left: 0.25rem !important;
    }

    .ps-xxl-2 {
        padding-left: 0.5rem !important;
    }

    .ps-xxl-3 {
        padding-left: 1rem !important;
    }

    .ps-xxl-4 {
        padding-left: 1.5rem !important;
    }

    .ps-xxl-5 {
        padding-left: 3rem !important;
    }

    .ps-xxl-6 {
        padding-left: 5rem !important;
    }

    .gap-xxl-0 {
        gap: 0 !important;
    }

    .gap-xxl-1 {
        gap: 0.25rem !important;
    }

    .gap-xxl-2 {
        gap: 0.5rem !important;
    }

    .gap-xxl-3 {
        gap: 1rem !important;
    }

    .gap-xxl-4 {
        gap: 1.5rem !important;
    }

    .gap-xxl-5 {
        gap: 3rem !important;
    }

    .gap-xxl-6 {
        gap: 5rem !important;
    }

    .row-gap-xxl-0 {
        row-gap: 0 !important;
    }

    .row-gap-xxl-1 {
        row-gap: 0.25rem !important;
    }

    .row-gap-xxl-2 {
        row-gap: 0.5rem !important;
    }

    .row-gap-xxl-3 {
        row-gap: 1rem !important;
    }

    .row-gap-xxl-4 {
        row-gap: 1.5rem !important;
    }

    .row-gap-xxl-5 {
        row-gap: 3rem !important;
    }

    .row-gap-xxl-6 {
        row-gap: 5rem !important;
    }

    .column-gap-xxl-0 {
        -moz-column-gap: 0 !important;
        column-gap: 0 !important;
    }

    .column-gap-xxl-1 {
        -moz-column-gap: 0.25rem !important;
        column-gap: 0.25rem !important;
    }

    .column-gap-xxl-2 {
        -moz-column-gap: 0.5rem !important;
        column-gap: 0.5rem !important;
    }

    .column-gap-xxl-3 {
        -moz-column-gap: 1rem !important;
        column-gap: 1rem !important;
    }

    .column-gap-xxl-4 {
        -moz-column-gap: 1.5rem !important;
        column-gap: 1.5rem !important;
    }

    .column-gap-xxl-5 {
        -moz-column-gap: 3rem !important;
        column-gap: 3rem !important;
    }

    .column-gap-xxl-6 {
        -moz-column-gap: 5rem !important;
        column-gap: 5rem !important;
    }

    .text-xxl-start {
        text-align: left !important;
    }

    .text-xxl-end {
        text-align: right !important;
    }

    .text-xxl-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .fs-1 {
        font-size: 2.5rem !important;
    }

    .fs-2 {
        font-size: 2rem !important;
    }

    .fs-3 {
        font-size: 1.75rem !important;
    }

    .fs-4 {
        font-size: 1.5rem !important;
    }
}

@media print {
    .d-print-inline {
        display: inline !important;
    }

    .d-print-inline-block {
        display: inline-block !important;
    }

    .d-print-block {
        display: block !important;
    }

    .d-print-grid {
        display: grid !important;
    }

    .d-print-inline-grid {
        display: inline-grid !important;
    }

    .d-print-table {
        display: table !important;
    }

    .d-print-table-row {
        display: table-row !important;
    }

    .d-print-table-cell {
        display: table-cell !important;
    }

    .d-print-flex {
        display: flex !important;
    }

    .d-print-inline-flex {
        display: inline-flex !important;
    }

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

:root {
    --cnvs-themecolor: #1abc9c;
    --cnvs-themecolor-rgb: 26, 188, 156;
    --bs-link-color: var(--cnvs-themecolor);
    --bs-link-color-rgb: var(--cnvs-themecolor-rgb);
    --bs-link-hover-color: var(--cnvs-heading-color);
    --cnvs-white: #fff;
    --cnvs-black: #000;
    --cnvs-headings-font-weight: 600;
    --cnvs-body-font: "Inter", sans-serif;
    --cnvs-primary-font: "Inter", sans-serif;
    --cnvs-secondary-font: "Playfair Display", serif;
    --cnvs-line-height-base: 1.5;
    --cnvs-line-height-content: 1.65;
    --cnvs-margin-base: 3rem;
    --cnvs-margin-sm: 2rem;
    --cnvs-margin-lg: 5rem;
    --cnvs-content-padding: 5rem;
    --cnvs-section-margin: 4rem;
    --cnvs-section-padding: var(--cnvs-section-margin);
    --cnvs-col-padding: var(--cnvs-section-padding);
    --cnvs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --cnvs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --cnvs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --cnvs-copyrights-font-size: 0.875rem;
    --bs-bg-opacity: 1;
    --cnvs-header-height: 100px;
    --cnvs-header-height-sm: 60px;
    --cnvs-header-height-md: 80px;
    --cnvs-header-height-lg: 120px;
    --cnvs-header-height-shrink: 60px;
    --cnvs-side-header-width: 260px;
    --cnvs-side-header-padding-gutters: 30px;
    --cnvs-side-panel-size: 300px;
    --cnvs-side-panel-padding: 50px 70px 50px 40px;
    --cnvs-side-panel-widget-padding: 40px;
    --cnvs-transitions: 0.5s ease;
    --cnvs-color-facebook: #3b5998;
    --cnvs-color-facebook-rgb: 59, 89, 152;
    --cnvs-color-whatsapp: #25d366;
    --cnvs-color-whatsapp-rgb: 37, 211, 102;
    --cnvs-color-delicious: #205cc0;
    --cnvs-color-delicious-rgb: 32, 92, 192;
    --cnvs-color-paypal: #00588b;
    --cnvs-color-paypal-rgb: 0, 88, 139;
    --cnvs-color-waze: #05c8f7;
    --cnvs-color-waze-rgb: 5, 200, 247;
    --cnvs-color-android: #a4c639;
    --cnvs-color-android-rgb: 164, 198, 57;
    --cnvs-color-googledrive: #1FA463;
    --cnvs-color-googledrive-rgb: 31, 164, 99;
    --cnvs-color-wikipedia: #333;
    --cnvs-color-wikipedia-rgb: 51, 51, 51;
    --cnvs-color-stumbleupon: #f74425;
    --cnvs-color-stumbleupon-rgb: 247, 68, 37;
    --cnvs-color-foursquare: #25a0ca;
    --cnvs-color-foursquare-rgb: 37, 160, 202;
    --cnvs-color-call: #444;
    --cnvs-color-call-rgb: 68, 68, 68;
    --cnvs-color-ninetyninedesigns: #f26739;
    --cnvs-color-ninetyninedesigns-rgb: 242, 103, 57;
    --cnvs-color-forrst: #5b9a68;
    --cnvs-color-forrst-rgb: 91, 154, 104;
    --cnvs-color-digg: #191919;
    --cnvs-color-digg-rgb: 25, 25, 25;
    --cnvs-color-spotify: #1DB954;
    --cnvs-color-spotify-rgb: 29, 185, 84;
    --cnvs-color-reddit: #c6c6c6;
    --cnvs-color-reddit-rgb: 198, 198, 198;
    --cnvs-color-blogger: #fc4f08;
    --cnvs-color-blogger-rgb: 252, 79, 8;
    --cnvs-color-cc: #688527;
    --cnvs-color-cc-rgb: 104, 133, 39;
    --cnvs-color-dribbble: #ea4c89;
    --cnvs-color-dribbble-rgb: 234, 76, 137;
    --cnvs-color-evernote: #5ba525;
    --cnvs-color-evernote-rgb: 91, 165, 37;
    --cnvs-color-flickr: #ff0084;
    --cnvs-color-flickr-rgb: 255, 0, 132;
    --cnvs-color-google: #4885ed;
    --cnvs-color-google-rgb: 72, 133, 237;
    --cnvs-color-salesforce: #1798c1;
    --cnvs-color-salesforce-rgb: 23, 152, 193;
    --cnvs-color-cloudflare: #f38020;
    --cnvs-color-cloudflare-rgb: 243, 128, 32;
    --cnvs-color-linkedin: #0e76a8;
    --cnvs-color-linkedin-rgb: 14, 118, 168;
    --cnvs-color-vk: #2b587a;
    --cnvs-color-vk-rgb: 43, 88, 122;
    --cnvs-color-rss: #ee802f;
    --cnvs-color-rss-rgb: 238, 128, 47;
    --cnvs-color-skype: #00aff0;
    --cnvs-color-skype-rgb: 0, 175, 240;
    --cnvs-color-twitter: #00acee;
    --cnvs-color-twitter-rgb: 0, 172, 238;
    --cnvs-color-x-twitter: #010101;
    --cnvs-color-x-twitter-rgb: 1, 1, 1;
    --cnvs-color-youtube: #c4302b;
    --cnvs-color-youtube-rgb: 196, 48, 43;
    --cnvs-color-vimeo: #86c9ef;
    --cnvs-color-vimeo-rgb: 134, 201, 239;
    --cnvs-color-slack: #ECB22E;
    --cnvs-color-slack-rgb: 236, 178, 46;
    --cnvs-color-yahoo: #720e9e;
    --cnvs-color-yahoo-rgb: 114, 14, 158;
    --cnvs-color-email3: #6567a5;
    --cnvs-color-email3-rgb: 101, 103, 165;
    --cnvs-color-macstore: #333333;
    --cnvs-color-macstore-rgb: 51, 51, 51;
    --cnvs-color-figma: #ab7c63;
    --cnvs-color-figma-rgb: 171, 124, 99;
    --cnvs-color-podcast: #e4b21b;
    --cnvs-color-podcast-rgb: 228, 178, 27;
    --cnvs-color-meetup: #e51937;
    --cnvs-color-meetup-rgb: 229, 25, 55;
    --cnvs-color-dropbox: #3d9ae8;
    --cnvs-color-dropbox-rgb: 61, 154, 232;
    --cnvs-color-ebay: #89c507;
    --cnvs-color-ebay-rgb: 137, 197, 7;
    --cnvs-color-github: #171515;
    --cnvs-color-github-rgb: 23, 21, 21;
    --cnvs-color-googleplay: #3bccff;
    --cnvs-color-googleplay-rgb: 59, 204, 255;
    --cnvs-color-itunes: #222;
    --cnvs-color-itunes-rgb: 34, 34, 34;
    --cnvs-color-periscope: #52677b;
    --cnvs-color-periscope-rgb: 82, 103, 123;
    --cnvs-color-meta: #0668E1;
    --cnvs-color-meta-rgb: 6, 104, 225;
    --cnvs-color-soundcloud: #ff7700;
    --cnvs-color-soundcloud-rgb: 255, 119, 0;
    --cnvs-color-tumblr: #34526f;
    --cnvs-color-tumblr-rgb: 52, 82, 111;
    --cnvs-color-wordpress: #1e8cbe;
    --cnvs-color-wordpress-rgb: 30, 140, 190;
    --cnvs-color-yelp: #c41200;
    --cnvs-color-yelp-rgb: 196, 18, 0;
    --cnvs-color-microsoft: #f65314;
    --cnvs-color-microsoft-rgb: 246, 83, 20;
    --cnvs-color-trello: #0079bf;
    --cnvs-color-trello-rgb: 0, 121, 191;
    --cnvs-color-scribd: #666666;
    --cnvs-color-scribd-rgb: 102, 102, 102;
    --cnvs-color-stripe: #008cdd;
    --cnvs-color-stripe-rgb: 0, 140, 221;
    --cnvs-color-print: #111;
    --cnvs-color-print-rgb: 17, 17, 17;
    --cnvs-color-btc: #f2a900;
    --cnvs-color-btc-rgb: 242, 169, 0;
    --cnvs-color-weibo: #DF2029;
    --cnvs-color-weibo-rgb: 223, 32, 41;
    --cnvs-color-acrobat: #d3222a;
    --cnvs-color-acrobat-rgb: 211, 34, 42;
    --cnvs-color-drupal: #27537a;
    --cnvs-color-drupal-rgb: 39, 83, 122;
    --cnvs-color-buffer: #333333;
    --cnvs-color-buffer-rgb: 51, 51, 51;
    --cnvs-color-pocket: #ee4056;
    --cnvs-color-pocket-rgb: 238, 64, 86;
    --cnvs-color-bitbucket: #0e4984;
    --cnvs-color-bitbucket-rgb: 14, 73, 132;
    --cnvs-color-stackoverflow: #ef8236;
    --cnvs-color-stackoverflow-rgb: 239, 130, 54;
    --cnvs-color-hackernews: #ff6600;
    --cnvs-color-hackernews-rgb: 255, 102, 0;
    --cnvs-color-xing: #126567;
    --cnvs-color-xing-rgb: 18, 101, 103;
    --cnvs-color-instagram: #8a3ab9;
    --cnvs-color-instagram-rgb: 138, 58, 185;
    --cnvs-color-quora: #a82400;
    --cnvs-color-quora-rgb: 168, 36, 0;
    --cnvs-color-openid: #e16309;
    --cnvs-color-openid-rgb: 225, 99, 9;
    --cnvs-color-steam: #111;
    --cnvs-color-steam-rgb: 17, 17, 17;
    --cnvs-color-amazon: #e47911;
    --cnvs-color-amazon-rgb: 228, 121, 17;
    --cnvs-color-line: #00b900;
    --cnvs-color-line-rgb: 0, 185, 0;
    --cnvs-color-kickstarter: #87c442;
    --cnvs-color-kickstarter-rgb: 135, 196, 66;
    --cnvs-color-appstore: #000;
    --cnvs-color-appstore-rgb: 0, 0, 0;
    --cnvs-color-pinterest: #c8232c;
    --cnvs-color-pinterest-rgb: 200, 35, 44;
    --cnvs-color-fivehundredpx: #111;
    --cnvs-color-fivehundredpx-rgb: 17, 17, 17;
    --cnvs-color-tiktok: #000;
    --cnvs-color-tiktok-rgb: 0, 0, 0;
    --cnvs-color-airbnb: #FF5A5F;
    --cnvs-color-airbnb-rgb: 255, 90, 95;
    --cnvs-color-gpay: #6877df;
    --cnvs-color-gpay-rgb: 104, 119, 223;
    --cnvs-color-unsplash: #111;
    --cnvs-color-unsplash-rgb: 17, 17, 17;
    --cnvs-color-snapchat: #fffc00;
    --cnvs-color-snapchat-rgb: 255, 252, 0;
    --cnvs-color-discord: #7289da;
    --cnvs-color-discord-rgb: 114, 137, 218;
    --cnvs-color-twitch: #6441a5;
    --cnvs-color-twitch-rgb: 100, 65, 165;
    --cnvs-font-size-body: var(--bs-body-font-size);
    --cnvs-font-size-h1: 2.25rem;
    --cnvs-font-size-h2: 1.875rem;
    --cnvs-font-size-h3: 1.625rem;
    --cnvs-font-size-h4: 1.375rem;
    --cnvs-font-size-h5: 1.125rem;
    --cnvs-font-size-h6: 0.875rem;
    --cnvs-font-size-small: calc(var(--cnvs-font-size-body) * 0.875);
}

:root, .not-dark {
    --cnvs-contrast-0: #fff;
    --cnvs-contrast-100: #f8f9fa;
    --cnvs-contrast-200: #e9ecef;
    --cnvs-contrast-300: #dee2e6;
    --cnvs-contrast-400: #ced4da;
    --cnvs-contrast-500: #adb5bd;
    --cnvs-contrast-600: #6c757d;
    --cnvs-contrast-700: #495057;
    --cnvs-contrast-800: #343a40;
    --cnvs-contrast-900: #212529;
    --cnvs-contrast-1000: #000;
    --cnvs-invert-contrast-0: #000;
    --cnvs-invert-contrast-100: #212529;
    --cnvs-invert-contrast-200: #343a40;
    --cnvs-invert-contrast-300: #495057;
    --cnvs-invert-contrast-400: #6c757d;
    --cnvs-invert-contrast-500: #adb5bd;
    --cnvs-invert-contrast-600: #ced4da;
    --cnvs-invert-contrast-700: #dee2e6;
    --cnvs-invert-contrast-800: #e9ecef;
    --cnvs-invert-contrast-900: #f8f9fa;
    --cnvs-invert-contrast-1000: #fff;
    --cnvs-body-bg: var(--bs-body-bg);
    --cnvs-body-bg-boxed: var(--cnvs-body-bg);
    --cnvs-link-color: var(--cnvs-themecolor);
    --cnvs-link-hover-color: var(--cnvs---cnvs-heading-color);
    --cnvs-contrast-rgb: 0, 0, 0;
    --cnvs-invert-contrast-rgb: 255, 255, 255;
    --cnvs-contrast-bg: #fff;
    --cnvs-contrast-bg-offset: #f8f9fa;
    --cnvs-topbar-bg: var(--cnvs-contrast-0);
    --cnvs-topbar-color: var(--cnvs-contrast-700);
    --cnvs-topbar-border-color: rgba(var(--cnvs-contrast-rgb), 0.1);
    --cnvs-topbar-social-icon-color: var(--cnvs-contrast-600);
    --cnvs-header-bg: var(--cnvs-contrast-0);
    --cnvs-header-sticky-bg: var(--cnvs-header-bg);
    --cnvs-side-header-bg: var(--cnvs-contrast-0);
    --cnvs-section-bg: var(--cnvs-contrast-bg-offset);
    --cnvs-heading-color: var(--cnvs-contrast-900);
    --cnvs-line-color: rgba(var(--cnvs-contrast-rgb), .1);
    --cnvs-footer-bg: var(--cnvs-contrast-bg-offset);
    --cnvs-bg-overlay-bg-opacity: 0.75;
    --cnvs-bg-overlay-bg: rgba(var(--cnvs-invert-contrast-rgb), var(--cnvs-bg-overlay-bg-opacity));
    color: var(--cnvs-contrast-800);
}

.border-contrast-600, .h-border-contrast-600:hover {
    border-color: var(--cnvs-contrast-600) !important;
}

.border-contrast-700, .h-border-contrast-700:hover {
    border-color: var(--cnvs-contrast-700) !important;
}

.border-contrast-800, .h-border-contrast-800:hover {
    border-color: var(--cnvs-contrast-800) !important;
}

.border-contrast-900, .h-border-contrast-900:hover {
    border-color: var(--cnvs-contrast-900) !important;
}

.border-contrast-1000, .h-border-contrast-1000:hover {
    border-color: var(--cnvs-contrast-1000) !important;
}

.bg-color, .bg-color #header-wrap {
    background-color: rgba(var(--cnvs-themecolor-rgb), var(--bs-bg-opacity, 1)) !important;
}

.bg-color[class * =bg-opacity-] {
    background-color: rgba(var(--cnvs-themecolor-rgb), var(--bs-bg-opacity, 1)) !important;
}

.color {
    color: rgba(var(--cnvs-themecolor-rgb), var(--bs-text-opacity, 1)) !important;
}

.border-color {
    border-color: var(--cnvs-themecolor) !important;
}

.text-transform-none {
    text-transform: none !important;
}

.overflow-visible {
    overflow: visible !important;
}

.fw-extralight {
    font-weight: 100 !important;
}

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

.fw-semibold {
    font-weight: 600 !important;
}

.fst-normal {
    font-style: normal !important;
}

.ls-0 {
    letter-spacing: 0px !important;
}

.ls-n0 {
    letter-spacing: 0px !important;
}

.ls-1 {
    letter-spacing: 1px !important;
}

.ls-n1 {
    letter-spacing: -1px !important;
}

.ls-2 {
    letter-spacing: 2px !important;
}

.ls-n2 {
    letter-spacing: -2px !important;
}

.ls-3 {
    letter-spacing: 3px !important;
}

.ls-n3 {
    letter-spacing: -3px !important;
}

.ls-4 {
    letter-spacing: 4px !important;
}

.ls-n4 {
    letter-spacing: -4px !important;
}

.ls-5 {
    letter-spacing: 5px !important;
}

.ls-n5 {
    letter-spacing: -5px !important;
}

@supports (text-stroke: var(--cnvs-text-stroke-size) var(--cnvs-text-stroke-color)) or(-webkit-text-stroke: var(--cnvs-text-stroke-size) var(--cnvs-text-stroke-color)) {
    .text-stroke, .h-text-stroke:hover {
        --cnvs-text-stroke-size: 2px;
        --cnvs-text-stroke-color: var(--cnvs-contrast-900);
        color: transparent;
        text-stroke: var(--cnvs-text-stroke-size) var(--cnvs-text-stroke-color);
        -webkit-text-stroke: var(--cnvs-text-stroke-size) var(--cnvs-text-stroke-color);
    }

    .text-stroke-none, .h-text-stroke-none:hover {
        text-stroke: 0 transparent;
        -webkit-text-stroke: 0 transparent;
        color: inherit;
    }
}

.font-body {
    font-family: var(--cnvs-body-font) !important;
}

.font-primary {
    font-family: var(--cnvs-primary-font) !important;
}

.font-secondary {
    font-family: var(--cnvs-secondary-font) !important;
}

.bg-icon {
    display: block;
    position: absolute;
    bottom: -60px;
    right: -50px;
    font-size: 210px;
    color: rgba(var(--cnvs-contrast-rgb), 0.1);
}

.text-underline-offset-0 {
    text-underline-offset: 0px !important;
}

.text-underline-offset-1 {
    text-underline-offset: 1px !important;
}

.text-underline-offset-2 {
    text-underline-offset: 2px !important;
}

.text-underline-offset-3 {
    text-underline-offset: 3px !important;
}

.text-underline-offset-4 {
    text-underline-offset: 4px !important;
}

.text-underline-offset-5 {
    text-underline-offset: 5px !important;
}

.text-underline-offset-6 {
    text-underline-offset: 6px !important;
}

.text-underline-offset-7 {
    text-underline-offset: 7px !important;
}

.text-underline-offset-8 {
    text-underline-offset: 8px !important;
}

.text-underline-offset-auto {
    text-underline-offset: auto !important;
}

.object-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
}

.object-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
}

.object-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
}

.object-none {
    -o-object-fit: none !important;
    object-fit: none !important;
}

.object-scale-down {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
}

.object-bottom {
    -o-object-position: bottom !important;
    object-position: bottom !important;
}

.bg-bottom {
    background-position: bottom !important;
}

@media (min-width: 576px) {
    .bg-sm-bottom {
        background-position: bottom !important;
    }
}

@media (min-width: 768px) {
    .bg-md-bottom {
        background-position: bottom !important;
    }
}

@media (min-width: 992px) {
    .bg-lg-bottom {
        background-position: bottom !important;
    }
}

@media (min-width: 1200px) {
    .bg-xl-bottom {
        background-position: bottom !important;
    }
}

@media (min-width: 1400px) {
    .bg-xxl-bottom {
        background-position: bottom !important;
    }
}

.object-center {
    -o-object-position: center !important;
    object-position: center !important;
}

.bg-center {
    background-position: center !important;
}

@media (min-width: 576px) {
    .bg-sm-center {
        background-position: center !important;
    }
}

@media (min-width: 768px) {
    .bg-md-center {
        background-position: center !important;
    }
}

@media (min-width: 992px) {
    .bg-lg-center {
        background-position: center !important;
    }
}

@media (min-width: 1200px) {
    .bg-xl-center {
        background-position: center !important;
    }
}

@media (min-width: 1400px) {
    .bg-xxl-center {
        background-position: center !important;
    }
}

.object-left {
    -o-object-position: left !important;
    object-position: left !important;
}

.bg-left {
    background-position: left !important;
}

@media (min-width: 576px) {
    .bg-sm-left {
        background-position: left !important;
    }
}

@media (min-width: 768px) {
    .bg-md-left {
        background-position: left !important;
    }
}

@media (min-width: 992px) {
    .bg-lg-left {
        background-position: left !important;
    }
}

@media (min-width: 1200px) {
    .bg-xl-left {
        background-position: left !important;
    }
}

@media (min-width: 1400px) {
    .bg-xxl-left {
        background-position: left !important;
    }
}

.object-left-bottom {
    -o-object-position: left bottom !important;
    object-position: left bottom !important;
}

.bg-left-bottom {
    background-position: left bottom !important;
}

@media (min-width: 576px) {
    .bg-sm-left-bottom {
        background-position: left bottom !important;
    }
}

@media (min-width: 768px) {
    .bg-md-left-bottom {
        background-position: left bottom !important;
    }
}

@media (min-width: 992px) {
    .bg-lg-left-bottom {
        background-position: left bottom !important;
    }
}

@media (min-width: 1200px) {
    .bg-xl-left-bottom {
        background-position: left bottom !important;
    }
}

@media (min-width: 1400px) {
    .bg-xxl-left-bottom {
        background-position: left bottom !important;
    }
}

.object-left-top {
    -o-object-position: left top !important;
    object-position: left top !important;
}

.bg-left-top {
    background-position: left top !important;
}

@media (min-width: 576px) {
    .bg-sm-left-top {
        background-position: left top !important;
    }
}

@media (min-width: 768px) {
    .bg-md-left-top {
        background-position: left top !important;
    }
}

@media (min-width: 992px) {
    .bg-lg-left-top {
        background-position: left top !important;
    }
}

@media (min-width: 1200px) {
    .bg-xl-left-top {
        background-position: left top !important;
    }
}

@media (min-width: 1400px) {
    .bg-xxl-left-top {
        background-position: left top !important;
    }
}

.object-right {
    -o-object-position: right !important;
    object-position: right !important;
}

.bg-right {
    background-position: right !important;
}

@media (min-width: 576px) {
    .bg-sm-right {
        background-position: right !important;
    }
}

@media (min-width: 768px) {
    .bg-md-right {
        background-position: right !important;
    }
}

@media (min-width: 992px) {
    .bg-lg-right {
        background-position: right !important;
    }
}

@media (min-width: 1200px) {
    .bg-xl-right {
        background-position: right !important;
    }
}

@media (min-width: 1400px) {
    .bg-xxl-right {
        background-position: right !important;
    }
}

.object-right-bottom {
    -o-object-position: right bottom !important;
    object-position: right bottom !important;
}

.bg-right-bottom {
    background-position: right bottom !important;
}

@media (min-width: 576px) {
    .bg-sm-right-bottom {
        background-position: right bottom !important;
    }
}

@media (min-width: 768px) {
    .bg-md-right-bottom {
        background-position: right bottom !important;
    }
}

@media (min-width: 992px) {
    .bg-lg-right-bottom {
        background-position: right bottom !important;
    }
}

@media (min-width: 1200px) {
    .bg-xl-right-bottom {
        background-position: right bottom !important;
    }
}

@media (min-width: 1400px) {
    .bg-xxl-right-bottom {
        background-position: right bottom !important;
    }
}

.object-right-top {
    -o-object-position: right top !important;
    object-position: right top !important;
}

.bg-right-top {
    background-position: right top !important;
}

@media (min-width: 576px) {
    .bg-sm-right-top {
        background-position: right top !important;
    }
}

@media (min-width: 768px) {
    .bg-md-right-top {
        background-position: right top !important;
    }
}

@media (min-width: 992px) {
    .bg-lg-right-top {
        background-position: right top !important;
    }
}

@media (min-width: 1200px) {
    .bg-xl-right-top {
        background-position: right top !important;
    }
}

@media (min-width: 1400px) {
    .bg-xxl-right-top {
        background-position: right top !important;
    }
}

.object-top {
    -o-object-position: top !important;
    object-position: top !important;
}

.bg-top {
    background-position: top !important;
}

@media (min-width: 576px) {
    .bg-sm-top {
        background-position: top !important;
    }
}

@media (min-width: 768px) {
    .bg-md-top {
        background-position: top !important;
    }
}

@media (min-width: 992px) {
    .bg-lg-top {
        background-position: top !important;
    }
}

@media (min-width: 1200px) {
    .bg-xl-top {
        background-position: top !important;
    }
}

@media (min-width: 1400px) {
    .bg-xxl-top {
        background-position: top !important;
    }
}

.bg-auto {
    background-size: auto !important;
}

.bg-contain {
    background-size: contain !important;
}

.bg-cover {
    background-size: cover !important;
}

.imagescale, .imagescalein {
    --cnvs-img-scale-default: 100%;
    --cnvs-img-scale-ratio: 110%;
    --cnvs-img-scale-position: center center;
    display: block;
    overflow: hidden;
}

.imagescale img, .imagescalein img {
    transform: scale(var(--cnvs-img-scale-ratio));
    transform-origin: var(--cnvs-img-scale-position);
    transition: all 1s ease;
}

@media (prefers-reduced-motion: reduce) {
    .imagescale img, .imagescalein img {
        transition: none;
    }
}

.imagescale:hover, .imagescalein:hover {
    --cnvs-img-scale-ratio: var(--cnvs-img-scale-default);
}

.imagescalein {
    --cnvs-img-scale-ratio: var(--cnvs-img-scale-default);
}

.imagescalein:hover {
    --cnvs-img-scale-ratio: var(--cnvs-img-scale-ratio);
}

.grayscale, .grayscale-out:hover {
    --cnvs-gray-filter: brightness(80%) grayscale(1);
    filter: var(--cnvs-gray-filter);
    -webkit-filter: var(--cnvs-gray-filter);
    -moz-filter: var(--cnvs-gray-filter);
    -o-filter: var(--cnvs-gray-filter);
    -ms-filter: var(--cnvs-gray-filter);
    transition: 1s filter ease;
}

@media (prefers-reduced-motion: reduce) {
    .grayscale, .grayscale-out:hover {
        transition: none;
    }
}

.grayscale-out, .grayscale:hover {
    --cnvs-gray-filter: brightness(100%) grayscale(0);
    transition: 1s filter ease;
}

@media (prefers-reduced-motion: reduce) {
    .grayscale-out, .grayscale:hover {
        transition: none;
    }
}

.bganimate {
    animation: BgAnimated 30s infinite linear 30s infinite linear;
}

@keyframes BgAnimated {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 400px;
    }
}

.input-block-level {
    display: block;
    width: 100% !important;
    min-height: 30px;
    box-sizing: border-box;
}

.vertical-middle {
    z-index: 3;
    position: relative;
    display: flex;
    width: 100%;
    min-height: 100%;
    justify-content: center;
    flex-flow: column;
}

.vertical-middle-overlay {
    position: absolute;
    top: 0;
    left: 0;
}

.vertical-middle + .video-wrap {
    z-index: 2 !important;
}

.magnific-max-width .mfp-content {
    max-width: 800px;
}

.op-ts {
    transition: opacity var(--cnvs-transitions);
}

@media (prefers-reduced-motion: reduce) {
    .op-ts {
        transition: none;
    }
}

.op-0, .h-op-0:hover {
    opacity: 0 !important;
}

.op-1, .h-op-1:hover {
    opacity: 1 !important;
}

.op-01, .h-op-01:hover {
    opacity: 0.1 !important;
}

.op-02, .h-op-02:hover {
    opacity: 0.2 !important;
}

.op-03, .h-op-03:hover {
    opacity: 0.3 !important;
}

.op-04, .h-op-04:hover {
    opacity: 0.4 !important;
}

.op-05, .h-op-05:hover {
    opacity: 0.5 !important;
}

.op-06, .h-op-06:hover {
    opacity: 0.6 !important;
}

.op-07, .h-op-07:hover {
    opacity: 0.7 !important;
}

.op-08, .h-op-08:hover {
    opacity: 0.8 !important;
}

.op-09, .h-op-09:hover {
    opacity: 0.9 !important;
}

.text-smaller {
    font-size: 80% !important;
}

.text-smaller small, .text-smaller .small {
    font-size: 90% !important;
}

.text-medium {
    font-size: 112.5% !important;
}

.text-larger {
    font-size: 120% !important;
}

.text-ts {
    transition: color var(--cnvs-transitions);
}

@media (prefers-reduced-motion: reduce) {
    .text-ts {
        transition: none;
    }
}

.h-text-color:hover, a.h-text-color:hover {
    color: var(--cnvs-themecolor) !important;
}

.bg-ts {
    transition: background-color var(--cnvs-transitions);
}

@media (prefers-reduced-motion: reduce) {
    .bg-ts {
        transition: none;
    }
}

.h-bg-color:hover {
    background-color: var(--cnvs-themecolor) !important;
}

.h-nobg:hover {
    background-color: transparent !important;
}

.h-text-primary:hover, a.h-text-primary:hover {
    color: var(--bs-primary) !important;
}

.h-bg-primary:hover {
    background-color: var(--bs-primary) !important;
}

.h-text-secondary:hover, a.h-text-secondary:hover {
    color: var(--bs-secondary) !important;
}

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

.h-text-success:hover, a.h-text-success:hover {
    color: var(--bs-success) !important;
}

.h-bg-success:hover {
    background-color: var(--bs-success) !important;
}

.h-text-info:hover, a.h-text-info:hover {
    color: var(--bs-info) !important;
}

.h-bg-info:hover {
    background-color: var(--bs-info) !important;
}

.h-text-warning:hover, a.h-text-warning:hover {
    color: var(--bs-warning) !important;
}

.h-bg-warning:hover {
    background-color: var(--bs-warning) !important;
}

.h-text-danger:hover, a.h-text-danger:hover {
    color: var(--bs-danger) !important;
}

.h-bg-danger:hover {
    background-color: var(--bs-danger) !important;
}

.h-text-light:hover, a.h-text-light:hover {
    color: var(--bs-light) !important;
}

.h-bg-light:hover {
    background-color: var(--bs-light) !important;
}

.h-text-dark:hover, a.h-text-dark:hover {
    color: var(--bs-dark) !important;
}

.h-bg-dark:hover {
    background-color: var(--bs-dark) !important;
}

.bg-clip {
    border: 1rem solid transparent;
    -moz-background-clip: padding;
    -webkit-background-clip: padding;
    background-clip: padding-box;
    transform: translate3d(0, 0, 0);
}

.bg-clip-sm {
    border-width: 0.5rem;
}

.bg-clip-lg {
    border-width: 2rem;
}

.gradient-light-grey, .h-gradient-light-grey:hover {
    background-image: linear-gradient(to right, #2c3e50, #bdc3c7) !important;
}

.gradient-green-dark, .h-gradient-green-dark:hover {
    background-image: linear-gradient(to right, #99f2c8, #1f4037) !important;
}

.gradient-grey-brown, .h-gradient-grey-brown:hover {
    background-image: linear-gradient(to right, #c06c84, #6c5b7b, #355c7d) !important;
}

.gradient-light-pink, .h-gradient-light-pink:hover {
    background-image: linear-gradient(to right, #ffdde1, #ee9ca7) !important;
}

.gradient-blue-purple, .h-gradient-blue-purple:hover {
    background-image: linear-gradient(to right, #4a00e0, #8e2de2) !important;
}

.gradient-multiples, .h-gradient-multiples:hover {
    background-image: linear-gradient(to right, #eea2a2 0%, #bbc1bf 19%, #57c6e1 42%, #b49fda 79%, #7ac5d8 100%) !important;
}

.gradient-blue-green, .h-gradient-blue-green:hover {
    background-image: linear-gradient(to right, #2af598 0%, #009efd 100%) !important;
}

.gradient-light, .h-gradient-light:hover {
    background-image: linear-gradient(to top, #ddd 0%, #fff 100%) !important;
}

.gradient-grey-orange, .h-gradient-grey-orange:hover {
    background-image: linear-gradient(to right, #3b4371, #f3904f) !important;
}

.gradient-sunset, .h-gradient-sunset:hover {
    background-image: linear-gradient(to top, #a8edea 0%, #fed6e3 100%) !important;
}

.gradient-dark, .h-gradient-dark:hover {
    background-image: linear-gradient(to right, #535353, #000) !important;
}

.gradient-lemon, .h-gradient-lemon:hover {
    background-image: linear-gradient(to right, #cac531, #f3f9a7) !important;
}

.gradient-earth, .h-gradient-earth:hover {
    background-image: linear-gradient(to right, #649173, #dbd5a4) !important;
}

.gradient-sky, .h-gradient-sky:hover {
    background-image: linear-gradient(to right, #2980b9, #6dd5fa, #f5f5f5) !important;
}

.gradient-ocean, .h-gradient-ocean:hover {
    background-image: linear-gradient(to right, #000046, #1cb5e0) !important;
}

.gradient-horizon, .h-gradient-horizon:hover {
    background-image: linear-gradient(90deg, rgb(131, 58, 180) 0%, rgb(253, 29, 29) 50%, rgb(252, 176, 69) 100%) !important;
}

.gradient-green-blue, .h-gradient-green-blue:hover {
    background-image: linear-gradient(to right, #43cea2, #185a9d) !important;
}

.gradient-purple-blue, .h-gradient-purple-blue:hover {
    background-image: linear-gradient(19deg, rgb(33, 212, 253) 0%, rgb(183, 33, 255) 100%) !important;
}

.gradient-ocean-hue, .h-gradient-ocean-hue:hover {
    background-image: linear-gradient(to right, rgba(151, 237, 171, 0.41) 0%, rgba(160, 196, 243, 0.52) 100%) !important;
}

.gradient-sky-hue, .h-gradient-sky-hue:hover {
    background-image: linear-gradient(45deg, #FFDEE9 0%, #B5FFFC 100%) !important;
}

.text-fill-effect, .gradient-text {
    text-shadow: none !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-repeat: no-repeat;
}

.gradient-underline {
    background-repeat: no-repeat;
    background-size: 100% 8px;
    background-position: 0 88%;
}

[class * =gutter-] {
    --cnvs-custom-gutter: var(--bs-gutter-x);
    margin-right: calc(var(--cnvs-custom-gutter) * -0.5);
    margin-left: calc(var(--cnvs-custom-gutter) * -0.5);
    margin-top: calc(var(--cnvs-custom-gutter) * -1);
}

[class * =gutter-] > .col, [class * =gutter-] > [class * =col-] {
    padding-right: calc(var(--cnvs-custom-gutter) * 0.5);
    padding-left: calc(var(--cnvs-custom-gutter) * 0.5);
    margin-top: var(--cnvs-custom-gutter);
}

.gutter-10 {
    --cnvs-custom-gutter: 10px;
}

.gutter-20 {
    --cnvs-custom-gutter: 20px;
}

.gutter-30 {
    --cnvs-custom-gutter: 30px;
}

.gutter-40 {
    --cnvs-custom-gutter: 40px;
}

.gutter-50 {
    --cnvs-custom-gutter: 50px;
}

@media (min-width: 576px) {
    .gutter-sm-10 {
        --cnvs-custom-gutter: 10px;
    }

    .gutter-sm-20 {
        --cnvs-custom-gutter: 20px;
    }

    .gutter-sm-30 {
        --cnvs-custom-gutter: 30px;
    }

    .gutter-sm-40 {
        --cnvs-custom-gutter: 40px;
    }

    .gutter-sm-50 {
        --cnvs-custom-gutter: 50px;
    }
}

@media (min-width: 768px) {
    .gutter-md-10 {
        --cnvs-custom-gutter: 10px;
    }

    .gutter-md-20 {
        --cnvs-custom-gutter: 20px;
    }

    .gutter-md-30 {
        --cnvs-custom-gutter: 30px;
    }

    .gutter-md-40 {
        --cnvs-custom-gutter: 40px;
    }

    .gutter-md-50 {
        --cnvs-custom-gutter: 50px;
    }
}

@media (min-width: 992px) {
    .gutter-lg-10 {
        --cnvs-custom-gutter: 10px;
    }

    .gutter-lg-20 {
        --cnvs-custom-gutter: 20px;
    }

    .gutter-lg-30 {
        --cnvs-custom-gutter: 30px;
    }

    .gutter-lg-40 {
        --cnvs-custom-gutter: 40px;
    }

    .gutter-lg-50 {
        --cnvs-custom-gutter: 50px;
    }
}

@media (min-width: 1200px) {
    .gutter-xl-10 {
        --cnvs-custom-gutter: 10px;
    }

    .gutter-xl-20 {
        --cnvs-custom-gutter: 20px;
    }

    .gutter-xl-30 {
        --cnvs-custom-gutter: 30px;
    }

    .gutter-xl-40 {
        --cnvs-custom-gutter: 40px;
    }

    .gutter-xl-50 {
        --cnvs-custom-gutter: 50px;
    }
}

@media (min-width: 1400px) {
    .gutter-xxl-10 {
        --cnvs-custom-gutter: 10px;
    }

    .gutter-xxl-20 {
        --cnvs-custom-gutter: 20px;
    }

    .gutter-xxl-30 {
        --cnvs-custom-gutter: 30px;
    }

    .gutter-xxl-40 {
        --cnvs-custom-gutter: 40px;
    }

    .gutter-xxl-50 {
        --cnvs-custom-gutter: 50px;
    }
}

[class * =col-mb-] {
    margin-bottom: calc(var(--cnvs-col-mb) * -1);
}

[class * =col-mb-] > .col, [class * =col-mb-] > [class * =col-] {
    padding-bottom: var(--cnvs-col-mb);
}

.col-mb-30 {
    --cnvs-col-mb: 30px;
}

.col-mb-50 {
    --cnvs-col-mb: 50px;
}

.col-mb-80 {
    --cnvs-col-mb: 80px;
}

@media (min-width: 576px) {
    .col-mb-sm-30 {
        --cnvs-col-mb: 30px;
    }

    .col-mb-sm-50 {
        --cnvs-col-mb: 50px;
    }

    .col-mb-sm-80 {
        --cnvs-col-mb: 80px;
    }
}

@media (min-width: 768px) {
    .col-mb-md-30 {
        --cnvs-col-mb: 30px;
    }

    .col-mb-md-50 {
        --cnvs-col-mb: 50px;
    }

    .col-mb-md-80 {
        --cnvs-col-mb: 80px;
    }
}

@media (min-width: 992px) {
    .col-mb-lg-30 {
        --cnvs-col-mb: 30px;
    }

    .col-mb-lg-50 {
        --cnvs-col-mb: 50px;
    }

    .col-mb-lg-80 {
        --cnvs-col-mb: 80px;
    }
}

@media (min-width: 1200px) {
    .col-mb-xl-30 {
        --cnvs-col-mb: 30px;
    }

    .col-mb-xl-50 {
        --cnvs-col-mb: 50px;
    }

    .col-mb-xl-80 {
        --cnvs-col-mb: 80px;
    }
}

@media (min-width: 1400px) {
    .col-mb-xxl-30 {
        --cnvs-col-mb: 30px;
    }

    .col-mb-xxl-50 {
        --cnvs-col-mb: 50px;
    }

    .col-mb-xxl-80 {
        --cnvs-col-mb: 80px;
    }
}

.min-vh-100 {
    min-height: 100vh !important;
}

.vh-100 {
    height: 100vh !important;
}

.max-vh-100 {
    max-height: 100vh !important;
}

.h-100 {
    height: 100% !important;
}

.min-vh-90 {
    min-height: 90vh !important;
}

.vh-90 {
    height: 90vh !important;
}

.max-vh-90 {
    max-height: 90vh !important;
}

.h-90 {
    height: 90% !important;
}

.min-vh-75 {
    min-height: 75vh !important;
}

.vh-75 {
    height: 75vh !important;
}

.max-vh-75 {
    max-height: 75vh !important;
}

.h-75 {
    height: 75% !important;
}

.min-vh-60 {
    min-height: 60vh !important;
}

.vh-60 {
    height: 60vh !important;
}

.max-vh-60 {
    max-height: 60vh !important;
}

.h-60 {
    height: 60% !important;
}

.min-vh-50 {
    min-height: 50vh !important;
}

.vh-50 {
    height: 50vh !important;
}

.max-vh-50 {
    max-height: 50vh !important;
}

.h-50 {
    height: 50% !important;
}

.min-vh-40 {
    min-height: 40vh !important;
}

.vh-40 {
    height: 40vh !important;
}

.max-vh-40 {
    max-height: 40vh !important;
}

.h-40 {
    height: 40% !important;
}

.min-vh-25 {
    min-height: 25vh !important;
}

.vh-25 {
    height: 25vh !important;
}

.max-vh-25 {
    max-height: 25vh !important;
}

.h-25 {
    height: 25% !important;
}

.min-vh-0 {
    min-height: 0vh !important;
}

.vh-0 {
    height: 0vh !important;
}

.max-vh-0 {
    max-height: 0vh !important;
}

.h-0 {
    height: 0% !important;
}

.max-vh-none {
    max-height: none !important;
}

.h-auto {
    height: auto !important;
}

@media (min-width: 576px) {
    .min-vh-sm-100 {
        min-height: 100vh !important;
    }

    .vh-sm-100 {
        height: 100vh !important;
    }

    .max-vh-sm-100 {
        max-height: 100vh !important;
    }

    .h-sm-100 {
        height: 100% !important;
    }

    .min-vh-sm-90 {
        min-height: 90vh !important;
    }

    .vh-sm-90 {
        height: 90vh !important;
    }

    .max-vh-sm-90 {
        max-height: 90vh !important;
    }

    .h-sm-90 {
        height: 90% !important;
    }

    .min-vh-sm-75 {
        min-height: 75vh !important;
    }

    .vh-sm-75 {
        height: 75vh !important;
    }

    .max-vh-sm-75 {
        max-height: 75vh !important;
    }

    .h-sm-75 {
        height: 75% !important;
    }

    .min-vh-sm-60 {
        min-height: 60vh !important;
    }

    .vh-sm-60 {
        height: 60vh !important;
    }

    .max-vh-sm-60 {
        max-height: 60vh !important;
    }

    .h-sm-60 {
        height: 60% !important;
    }

    .min-vh-sm-50 {
        min-height: 50vh !important;
    }

    .vh-sm-50 {
        height: 50vh !important;
    }

    .max-vh-sm-50 {
        max-height: 50vh !important;
    }

    .h-sm-50 {
        height: 50% !important;
    }

    .min-vh-sm-40 {
        min-height: 40vh !important;
    }

    .vh-sm-40 {
        height: 40vh !important;
    }

    .max-vh-sm-40 {
        max-height: 40vh !important;
    }

    .h-sm-40 {
        height: 40% !important;
    }

    .min-vh-sm-25 {
        min-height: 25vh !important;
    }

    .vh-sm-25 {
        height: 25vh !important;
    }

    .max-vh-sm-25 {
        max-height: 25vh !important;
    }

    .h-sm-25 {
        height: 25% !important;
    }

    .min-vh-sm-0 {
        min-height: 0vh !important;
    }

    .vh-sm-0 {
        height: 0vh !important;
    }

    .max-vh-sm-0 {
        max-height: 0vh !important;
    }

    .h-sm-0 {
        height: 0% !important;
    }

    .max-vh-sm-none {
        max-height: none !important;
    }

    .h-sm-auto {
        height: auto !important;
    }
}

@media (min-width: 768px) {
    .min-vh-md-100 {
        min-height: 100vh !important;
    }

    .vh-md-100 {
        height: 100vh !important;
    }

    .max-vh-md-100 {
        max-height: 100vh !important;
    }

    .h-md-100 {
        height: 100% !important;
    }

    .min-vh-md-90 {
        min-height: 90vh !important;
    }

    .vh-md-90 {
        height: 90vh !important;
    }

    .max-vh-md-90 {
        max-height: 90vh !important;
    }

    .h-md-90 {
        height: 90% !important;
    }

    .min-vh-md-75 {
        min-height: 75vh !important;
    }

    .vh-md-75 {
        height: 75vh !important;
    }

    .max-vh-md-75 {
        max-height: 75vh !important;
    }

    .h-md-75 {
        height: 75% !important;
    }

    .min-vh-md-60 {
        min-height: 60vh !important;
    }

    .vh-md-60 {
        height: 60vh !important;
    }

    .max-vh-md-60 {
        max-height: 60vh !important;
    }

    .h-md-60 {
        height: 60% !important;
    }

    .min-vh-md-50 {
        min-height: 50vh !important;
    }

    .vh-md-50 {
        height: 50vh !important;
    }

    .max-vh-md-50 {
        max-height: 50vh !important;
    }

    .h-md-50 {
        height: 50% !important;
    }

    .min-vh-md-40 {
        min-height: 40vh !important;
    }

    .vh-md-40 {
        height: 40vh !important;
    }

    .max-vh-md-40 {
        max-height: 40vh !important;
    }

    .h-md-40 {
        height: 40% !important;
    }

    .min-vh-md-25 {
        min-height: 25vh !important;
    }

    .vh-md-25 {
        height: 25vh !important;
    }

    .max-vh-md-25 {
        max-height: 25vh !important;
    }

    .h-md-25 {
        height: 25% !important;
    }

    .min-vh-md-0 {
        min-height: 0vh !important;
    }

    .vh-md-0 {
        height: 0vh !important;
    }

    .max-vh-md-0 {
        max-height: 0vh !important;
    }

    .h-md-0 {
        height: 0% !important;
    }

    .max-vh-md-none {
        max-height: none !important;
    }

    .h-md-auto {
        height: auto !important;
    }
}

@media (min-width: 992px) {
    .min-vh-lg-100 {
        min-height: 100vh !important;
    }

    .vh-lg-100 {
        height: 100vh !important;
    }

    .max-vh-lg-100 {
        max-height: 100vh !important;
    }

    .h-lg-100 {
        height: 100% !important;
    }

    .min-vh-lg-90 {
        min-height: 90vh !important;
    }

    .vh-lg-90 {
        height: 90vh !important;
    }

    .max-vh-lg-90 {
        max-height: 90vh !important;
    }

    .h-lg-90 {
        height: 90% !important;
    }

    .min-vh-lg-75 {
        min-height: 75vh !important;
    }

    .vh-lg-75 {
        height: 75vh !important;
    }

    .max-vh-lg-75 {
        max-height: 75vh !important;
    }

    .h-lg-75 {
        height: 75% !important;
    }

    .min-vh-lg-60 {
        min-height: 60vh !important;
    }

    .vh-lg-60 {
        height: 60vh !important;
    }

    .max-vh-lg-60 {
        max-height: 60vh !important;
    }

    .h-lg-60 {
        height: 60% !important;
    }

    .min-vh-lg-50 {
        min-height: 50vh !important;
    }

    .vh-lg-50 {
        height: 50vh !important;
    }

    .max-vh-lg-50 {
        max-height: 50vh !important;
    }

    .h-lg-50 {
        height: 50% !important;
    }

    .min-vh-lg-40 {
        min-height: 40vh !important;
    }

    .vh-lg-40 {
        height: 40vh !important;
    }

    .max-vh-lg-40 {
        max-height: 40vh !important;
    }

    .h-lg-40 {
        height: 40% !important;
    }

    .min-vh-lg-25 {
        min-height: 25vh !important;
    }

    .vh-lg-25 {
        height: 25vh !important;
    }

    .max-vh-lg-25 {
        max-height: 25vh !important;
    }

    .h-lg-25 {
        height: 25% !important;
    }

    .min-vh-lg-0 {
        min-height: 0vh !important;
    }

    .vh-lg-0 {
        height: 0vh !important;
    }

    .max-vh-lg-0 {
        max-height: 0vh !important;
    }

    .h-lg-0 {
        height: 0% !important;
    }

    .max-vh-lg-none {
        max-height: none !important;
    }

    .h-lg-auto {
        height: auto !important;
    }
}

@media (min-width: 1200px) {
    .min-vh-xl-100 {
        min-height: 100vh !important;
    }

    .vh-xl-100 {
        height: 100vh !important;
    }

    .max-vh-xl-100 {
        max-height: 100vh !important;
    }

    .h-xl-100 {
        height: 100% !important;
    }

    .min-vh-xl-90 {
        min-height: 90vh !important;
    }

    .vh-xl-90 {
        height: 90vh !important;
    }

    .max-vh-xl-90 {
        max-height: 90vh !important;
    }

    .h-xl-90 {
        height: 90% !important;
    }

    .min-vh-xl-75 {
        min-height: 75vh !important;
    }

    .vh-xl-75 {
        height: 75vh !important;
    }

    .max-vh-xl-75 {
        max-height: 75vh !important;
    }

    .h-xl-75 {
        height: 75% !important;
    }

    .min-vh-xl-60 {
        min-height: 60vh !important;
    }

    .vh-xl-60 {
        height: 60vh !important;
    }

    .max-vh-xl-60 {
        max-height: 60vh !important;
    }

    .h-xl-60 {
        height: 60% !important;
    }

    .min-vh-xl-50 {
        min-height: 50vh !important;
    }

    .vh-xl-50 {
        height: 50vh !important;
    }

    .max-vh-xl-50 {
        max-height: 50vh !important;
    }

    .h-xl-50 {
        height: 50% !important;
    }

    .min-vh-xl-40 {
        min-height: 40vh !important;
    }

    .vh-xl-40 {
        height: 40vh !important;
    }

    .max-vh-xl-40 {
        max-height: 40vh !important;
    }

    .h-xl-40 {
        height: 40% !important;
    }

    .min-vh-xl-25 {
        min-height: 25vh !important;
    }

    .vh-xl-25 {
        height: 25vh !important;
    }

    .max-vh-xl-25 {
        max-height: 25vh !important;
    }

    .h-xl-25 {
        height: 25% !important;
    }

    .min-vh-xl-0 {
        min-height: 0vh !important;
    }

    .vh-xl-0 {
        height: 0vh !important;
    }

    .max-vh-xl-0 {
        max-height: 0vh !important;
    }

    .h-xl-0 {
        height: 0% !important;
    }

    .max-vh-xl-none {
        max-height: none !important;
    }

    .h-xl-auto {
        height: auto !important;
    }
}

@media (min-width: 1400px) {
    .min-vh-xxl-100 {
        min-height: 100vh !important;
    }

    .vh-xxl-100 {
        height: 100vh !important;
    }

    .max-vh-xxl-100 {
        max-height: 100vh !important;
    }

    .h-xxl-100 {
        height: 100% !important;
    }

    .min-vh-xxl-90 {
        min-height: 90vh !important;
    }

    .vh-xxl-90 {
        height: 90vh !important;
    }

    .max-vh-xxl-90 {
        max-height: 90vh !important;
    }

    .h-xxl-90 {
        height: 90% !important;
    }

    .min-vh-xxl-75 {
        min-height: 75vh !important;
    }

    .vh-xxl-75 {
        height: 75vh !important;
    }

    .max-vh-xxl-75 {
        max-height: 75vh !important;
    }

    .h-xxl-75 {
        height: 75% !important;
    }

    .min-vh-xxl-60 {
        min-height: 60vh !important;
    }

    .vh-xxl-60 {
        height: 60vh !important;
    }

    .max-vh-xxl-60 {
        max-height: 60vh !important;
    }

    .h-xxl-60 {
        height: 60% !important;
    }

    .min-vh-xxl-50 {
        min-height: 50vh !important;
    }

    .vh-xxl-50 {
        height: 50vh !important;
    }

    .max-vh-xxl-50 {
        max-height: 50vh !important;
    }

    .h-xxl-50 {
        height: 50% !important;
    }

    .min-vh-xxl-40 {
        min-height: 40vh !important;
    }

    .vh-xxl-40 {
        height: 40vh !important;
    }

    .max-vh-xxl-40 {
        max-height: 40vh !important;
    }

    .h-xxl-40 {
        height: 40% !important;
    }

    .min-vh-xxl-25 {
        min-height: 25vh !important;
    }

    .vh-xxl-25 {
        height: 25vh !important;
    }

    .max-vh-xxl-25 {
        max-height: 25vh !important;
    }

    .h-xxl-25 {
        height: 25% !important;
    }

    .min-vh-xxl-0 {
        min-height: 0vh !important;
    }

    .vh-xxl-0 {
        height: 0vh !important;
    }

    .max-vh-xxl-0 {
        max-height: 0vh !important;
    }

    .h-xxl-0 {
        height: 0% !important;
    }

    .max-vh-xxl-none {
        max-height: none !important;
    }

    .h-xxl-auto {
        height: auto !important;
    }
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: sticky !important;
}

@media (min-width: 576px) {
    .position-sm-static {
        position: static !important;
    }

    .position-sm-relative {
        position: relative !important;
    }

    .position-sm-absolute {
        position: absolute !important;
    }

    .position-sm-fixed {
        position: fixed !important;
    }

    .position-sm-sticky {
        position: sticky !important;
    }
}

@media (min-width: 768px) {
    .position-md-static {
        position: static !important;
    }

    .position-md-relative {
        position: relative !important;
    }

    .position-md-absolute {
        position: absolute !important;
    }

    .position-md-fixed {
        position: fixed !important;
    }

    .position-md-sticky {
        position: sticky !important;
    }
}

@media (min-width: 992px) {
    .position-lg-static {
        position: static !important;
    }

    .position-lg-relative {
        position: relative !important;
    }

    .position-lg-absolute {
        position: absolute !important;
    }

    .position-lg-fixed {
        position: fixed !important;
    }

    .position-lg-sticky {
        position: sticky !important;
    }
}

@media (min-width: 1200px) {
    .position-xl-static {
        position: static !important;
    }

    .position-xl-relative {
        position: relative !important;
    }

    .position-xl-absolute {
        position: absolute !important;
    }

    .position-xl-fixed {
        position: fixed !important;
    }

    .position-xl-sticky {
        position: sticky !important;
    }
}

@media (min-width: 1400px) {
    .position-xxl-static {
        position: static !important;
    }

    .position-xxl-relative {
        position: relative !important;
    }

    .position-xxl-absolute {
        position: absolute !important;
    }

    .position-xxl-fixed {
        position: fixed !important;
    }

    .position-xxl-sticky {
        position: sticky !important;
    }
}

.lazy {
    opacity: 0;
}

.lazy:not(.initial) {
    transition: opacity 1s;
}

@media (prefers-reduced-motion: reduce) {
    .lazy:not(.initial) {
        transition: none;
    }
}

.lazy.initial, .lazy-loaded, .lazy-error {
    opacity: 1;
}

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

img.lazy:not([src]) {
    visibility: hidden;
}

.border-width-0, .h-border-width-0:hover {
    border-width: 0px !important;
}

.border-width-1, .h-border-width-1:hover {
    border-width: 1px !important;
}

.border-width-2, .h-border-width-2:hover {
    border-width: 2px !important;
}

.border-width-3, .h-border-width-3:hover {
    border-width: 3px !important;
}

.border-width-4, .h-border-width-4:hover {
    border-width: 4px !important;
}

.border-width-5, .h-border-width-5:hover {
    border-width: 5px !important;
}

.border-width-6, .h-border-width-6:hover {
    border-width: 6px !important;
}

.border-dotted {
    border-style: dotted !important;
}

.border-dashed {
    border-style: dashed !important;
}

.border-solid {
    border-style: solid !important;
}

.border-double {
    border-style: double !important;
}

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

.h-border-secondary:hover {
    border-color: var(--bs-secondary) !important;
}

.h-border-success:hover {
    border-color: var(--bs-success) !important;
}

.h-border-info:hover {
    border-color: var(--bs-info) !important;
}

.h-border-warning:hover {
    border-color: var(--bs-warning) !important;
}

.h-border-danger:hover {
    border-color: var(--bs-danger) !important;
}

.h-border-light:hover {
    border-color: var(--bs-light) !important;
}

.h-border-dark:hover {
    border-color: var(--bs-dark) !important;
}

.border-transparent, .h-border-transparent:hover {
    border-color: transparent !important;
}

.border-default, .h-border-default:hover {
    border-color: rgba(var(--cnvs-contrast-rgb), 0.1) !important;
}

.border-ts {
    transition: border var(--cnvs-transitions);
}

@media (prefers-reduced-motion: reduce) {
    .border-ts {
        transition: none;
    }
}

.rounded-4 {
    border-radius: 0.4rem !important;
}

.rounded-5 {
    border-radius: 0.5rem !important;
}

.rounded-6 {
    border-radius: 0.6rem !important;
}

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

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

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

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

.mw-xs {
    max-width: 38rem !important;
}

.mw-sm {
    max-width: 48rem !important;
}

.mw-md {
    max-width: 64rem !important;
}

.mw-lg {
    max-width: 80rem !important;
}

.mw-xl {
    max-width: 90rem !important;
}

.mw-xxl {
    max-width: 100rem !important;
}

.text-size-xs {
    font-size: 0.875rem !important;
}

.text-size-sm {
    font-size: 1rem !important;
}

.text-size-md {
    font-size: 1.5rem !important;
}

.text-size-lg {
    font-size: 2rem !important;
}

.text-size-xl {
    font-size: calc(1rem + 2.25vw) !important;
}

.text-size-xxl {
    font-size: calc(1rem + 3.5vw) !important;
}

.pos-x-start {
    left: 0 !important;
    right: auto !important;
}

.pos-x-end {
    left: auto !important;
    right: 0 !important;
}

.pos-x-center {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
}

.pos-y-start {
    top: 0 !important;
    bottom: auto !important;
}

.pos-y-end {
    top: auto !important;
    bottom: 0 !important;
}

.pos-y-center {
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
}

.pos-x-center.pos-y-center {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.square {
    --cnvs-square-size: 3rem;
    width: var(--cnvs-square-size) !important;
    height: var(--cnvs-square-size) !important;
}

.square-xs {
    --cnvs-square-size: 1rem;
}

.square-sm {
    --cnvs-square-size: 2rem;
}

.square-md {
    --cnvs-square-size: 4rem;
}

.square-lg {
    --cnvs-square-size: 6rem;
}

.square-xl {
    --cnvs-square-size: 8rem;
}

.rotate-0 {
    transform: rotate(0deg) !important;
}

.h-rotate-0:hover {
    transform: rotate(0deg) !important;
}

.rotate-15 {
    transform: rotate(15deg) !important;
}

.h-rotate-15:hover {
    transform: rotate(15deg) !important;
}

.rotate-n15 {
    transform: rotate(-15deg) !important;
}

.h-rotate-n15:hover {
    transform: rotate(-15deg) !important;
}

.rotate-30 {
    transform: rotate(30deg) !important;
}

.h-rotate-30:hover {
    transform: rotate(30deg) !important;
}

.rotate-n30 {
    transform: rotate(-30deg) !important;
}

.h-rotate-n30:hover {
    transform: rotate(-30deg) !important;
}

.rotate-45 {
    transform: rotate(45deg) !important;
}

.h-rotate-45:hover {
    transform: rotate(45deg) !important;
}

.rotate-n45 {
    transform: rotate(-45deg) !important;
}

.h-rotate-n45:hover {
    transform: rotate(-45deg) !important;
}

.rotate-60 {
    transform: rotate(60deg) !important;
}

.h-rotate-60:hover {
    transform: rotate(60deg) !important;
}

.rotate-n60 {
    transform: rotate(-60deg) !important;
}

.h-rotate-n60:hover {
    transform: rotate(-60deg) !important;
}

.rotate-75 {
    transform: rotate(75deg) !important;
}

.h-rotate-75:hover {
    transform: rotate(75deg) !important;
}

.rotate-n75 {
    transform: rotate(-75deg) !important;
}

.h-rotate-n75:hover {
    transform: rotate(-75deg) !important;
}

.rotate-90 {
    transform: rotate(90deg) !important;
}

.h-rotate-90:hover {
    transform: rotate(90deg) !important;
}

.rotate-n90 {
    transform: rotate(-90deg) !important;
}

.h-rotate-n90:hover {
    transform: rotate(-90deg) !important;
}

.rotate-105 {
    transform: rotate(105deg) !important;
}

.h-rotate-105:hover {
    transform: rotate(105deg) !important;
}

.rotate-n105 {
    transform: rotate(-105deg) !important;
}

.h-rotate-n105:hover {
    transform: rotate(-105deg) !important;
}

.rotate-120 {
    transform: rotate(120deg) !important;
}

.h-rotate-120:hover {
    transform: rotate(120deg) !important;
}

.rotate-n120 {
    transform: rotate(-120deg) !important;
}

.h-rotate-n120:hover {
    transform: rotate(-120deg) !important;
}

.rotate-135 {
    transform: rotate(135deg) !important;
}

.h-rotate-135:hover {
    transform: rotate(135deg) !important;
}

.rotate-n135 {
    transform: rotate(-135deg) !important;
}

.h-rotate-n135:hover {
    transform: rotate(-135deg) !important;
}

.rotate-150 {
    transform: rotate(150deg) !important;
}

.h-rotate-150:hover {
    transform: rotate(150deg) !important;
}

.rotate-n150 {
    transform: rotate(-150deg) !important;
}

.h-rotate-n150:hover {
    transform: rotate(-150deg) !important;
}

.rotate-165 {
    transform: rotate(165deg) !important;
}

.h-rotate-165:hover {
    transform: rotate(165deg) !important;
}

.rotate-n165 {
    transform: rotate(-165deg) !important;
}

.h-rotate-n165:hover {
    transform: rotate(-165deg) !important;
}

.rotate-180 {
    transform: rotate(180deg) !important;
}

.h-rotate-180:hover {
    transform: rotate(180deg) !important;
}

.rotate-n180 {
    transform: rotate(-180deg) !important;
}

.h-rotate-n180:hover {
    transform: rotate(-180deg) !important;
}

.rotate-195 {
    transform: rotate(195deg) !important;
}

.h-rotate-195:hover {
    transform: rotate(195deg) !important;
}

.rotate-n195 {
    transform: rotate(-195deg) !important;
}

.h-rotate-n195:hover {
    transform: rotate(-195deg) !important;
}

.rotate-210 {
    transform: rotate(210deg) !important;
}

.h-rotate-210:hover {
    transform: rotate(210deg) !important;
}

.rotate-n210 {
    transform: rotate(-210deg) !important;
}

.h-rotate-n210:hover {
    transform: rotate(-210deg) !important;
}

.rotate-225 {
    transform: rotate(225deg) !important;
}

.h-rotate-225:hover {
    transform: rotate(225deg) !important;
}

.rotate-n225 {
    transform: rotate(-225deg) !important;
}

.h-rotate-n225:hover {
    transform: rotate(-225deg) !important;
}

.rotate-240 {
    transform: rotate(240deg) !important;
}

.h-rotate-240:hover {
    transform: rotate(240deg) !important;
}

.rotate-n240 {
    transform: rotate(-240deg) !important;
}

.h-rotate-n240:hover {
    transform: rotate(-240deg) !important;
}

.rotate-255 {
    transform: rotate(255deg) !important;
}

.h-rotate-255:hover {
    transform: rotate(255deg) !important;
}

.rotate-n255 {
    transform: rotate(-255deg) !important;
}

.h-rotate-n255:hover {
    transform: rotate(-255deg) !important;
}

.rotate-270 {
    transform: rotate(270deg) !important;
}

.h-rotate-270:hover {
    transform: rotate(270deg) !important;
}

.rotate-n270 {
    transform: rotate(-270deg) !important;
}

.h-rotate-n270:hover {
    transform: rotate(-270deg) !important;
}

.rotate-285 {
    transform: rotate(285deg) !important;
}

.h-rotate-285:hover {
    transform: rotate(285deg) !important;
}

.rotate-n285 {
    transform: rotate(-285deg) !important;
}

.h-rotate-n285:hover {
    transform: rotate(-285deg) !important;
}

.rotate-300 {
    transform: rotate(300deg) !important;
}

.h-rotate-300:hover {
    transform: rotate(300deg) !important;
}

.rotate-n300 {
    transform: rotate(-300deg) !important;
}

.h-rotate-n300:hover {
    transform: rotate(-300deg) !important;
}

.rotate-315 {
    transform: rotate(315deg) !important;
}

.h-rotate-315:hover {
    transform: rotate(315deg) !important;
}

.rotate-n315 {
    transform: rotate(-315deg) !important;
}

.h-rotate-n315:hover {
    transform: rotate(-315deg) !important;
}

.rotate-330 {
    transform: rotate(330deg) !important;
}

.h-rotate-330:hover {
    transform: rotate(330deg) !important;
}

.rotate-n330 {
    transform: rotate(-330deg) !important;
}

.h-rotate-n330:hover {
    transform: rotate(-330deg) !important;
}

.rotate-345 {
    transform: rotate(345deg) !important;
}

.h-rotate-345:hover {
    transform: rotate(345deg) !important;
}

.rotate-n345 {
    transform: rotate(-345deg) !important;
}

.h-rotate-n345:hover {
    transform: rotate(-345deg) !important;
}

.rotate-360 {
    transform: rotate(360deg) !important;
}

.h-rotate-360:hover {
    transform: rotate(360deg) !important;
}

.rotate-n360 {
    transform: rotate(-360deg) !important;
}

.h-rotate-n360:hover {
    transform: rotate(-360deg) !important;
}

.align-wide-lg {
    margin-left: calc(50% - 480px) !important;
    margin-right: calc(50% - 480px) !important;
    max-width: 960px !important;
    width: 960px !important;
}

.align-wide-xl {
    margin-left: calc(50% - 570px) !important;
    margin-right: calc(50% - 570px) !important;
    max-width: 1140px !important;
    width: 1140px !important;
}

.align-wide-xxl {
    margin-left: calc(50% - 660px) !important;
    margin-right: calc(50% - 660px) !important;
    max-width: 1320px !important;
    width: 1320px !important;
}

@media (max-width: 575.98px) {
    .align-wide-lg, .align-wide-xl, .align-wide-xxl {
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        max-width: 100vw !important;
        width: 100vw !important;
    }
}

.align-full {
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    max-width: 100vw !important;
    width: 100vw !important;
}

@media (max-width: 575.98px) {
    .align-wide-lg, .align-wide-xl, .align-wide-xxl {
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        max-width: 100vw !important;
        width: 100vw !important;
    }
}

.shadow-sm, .h-shadow-sm:hover {
    box-shadow: var(--cnvs-box-shadow-sm) !important;
}

.shadow, .h-shadow:hover {
    box-shadow: var(--cnvs-box-shadow) !important;
}

.shadow-lg, .h-shadow-lg:hover {
    box-shadow: var(--cnvs-box-shadow-lg) !important;
}

.h-shadow-none:hover {
    box-shadow: none !important;
}

.shadow-ts {
    transition: box-shadow var(--cnvs-transitions);
}

@media (prefers-reduced-motion: reduce) {
    .shadow-ts {
        transition: none;
    }
}

.all-ts {
    transition: all var(--cnvs-transitions);
}

@media (prefers-reduced-motion: reduce) {
    .all-ts {
        transition: none;
    }
}

.translate-y-sm, .h-translate-y-sm:hover {
    transform: translateY(-3px) !important;
}

.translate-y, .h-translate-y:hover {
    transform: translateY(-6px) !important;
}

.translate-y-lg, .h-translate-y-lg:hover {
    transform: translateY(-10px) !important;
}

.translate-x-sm, .h-translate-x-sm:hover {
    transform: translateX(-3px) !important;
}

.translate-x, .h-translate-x:hover {
    transform: translateX(-6px) !important;
}

.translate-x-lg, .h-translate-x-lg:hover {
    transform: translateX(-10px) !important;
}

.translate-x-n-sm, .h-translate-x-n-sm:hover {
    transform: translateX(3px) !important;
}

.translate-x-n, .h-translate-x-n:hover {
    transform: translateX(6px) !important;
}

.translate-x-n-lg, .h-translate-x-n-lg:hover {
    transform: translateX(10px) !important;
}

.scale-sm, .h-scale-sm:hover {
    transform: scale(1.025) !important;
}

.scale, .h-scale:hover {
    transform: scale(1.05) !important;
}

.scale-lg, .h-scale-lg:hover {
    transform: scale(1.1) !important;
}

.scale-n-sm, .h-scale-n-sm:hover {
    transform: scale(0.975) !important;
}

.scale-n, .h-scale-n:hover {
    transform: scale(0.95) !important;
}

.scale-n-lg, .h-scale-n-lg:hover {
    transform: scale(0.9) !important;
}

.transform-ts {
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media (prefers-reduced-motion: reduce) {
    .transform-ts {
        transition: none;
    }
}

.element-float {
    --cnvs-float-speed: 4s;
    --cnvs-float-easing: ease-in-out;
    --cnvs-float-x-from: 0%;
    --cnvs-float-x-to: 0%;
    --cnvs-float-y-from: 0%;
    --cnvs-float-y-to: 15%;
    transform: translate3d(0, 0, 0);
    animation: cnvsFloat var(--cnvs-float-speed) var(--cnvs-float-easing) infinite;
    will-change: transform;
}

.element-float.disable-on-hover:hover {
    animation: none;
}

@keyframes cnvsFloat {
    0% {
        transform: translate3d(var(--cnvs-float-x-from), var(--cnvs-float-y-from), 0);
    }

    50% {
        transform: translate3d(var(--cnvs-float-x-to), var(--cnvs-float-y-to), 0);
    }

    100% {
        transform: translate3d(var(--cnvs-float-x-from), var(--cnvs-float-y-from), 0);
    }
}

.z-0 {
    z-index: 0 !important;
}

.z-1 {
    z-index: 1 !important;
}

.z-2 {
    z-index: 2 !important;
}

.z-3 {
    z-index: 3 !important;
}

.z-4 {
    z-index: 4 !important;
}

.z-5 {
    z-index: 5 !important;
}

.z-6 {
    z-index: 6 !important;
}

.z-7 {
    z-index: 7 !important;
}

.z-8 {
    z-index: 8 !important;
}

.z-9 {
    z-index: 9 !important;
}

.z-10 {
    z-index: 10 !important;
}

.z-auto {
    z-index: auto !important;
}

#top-bar {
    --cnvs-topbar-height: 45px;
    --cnvs-topbar-font-size: 0.875rem;
    --cnvs-topbar-font-weight: 500;
    --cnvs-topbar-font-transform: none;
    --cnvs-topbar-color: var(--cnvs-contrast-700);
    --cnvs-topbar-border-size: 1px;
    --cnvs-topbar-border-color: rgba(var(--cnvs-contrast-rgb), 0.1);
    --cnvs-topbar-social-icon-color: var(--cnvs-contrast-600);
    --cnvs-topbar-submenu-padding: 0.625rem;
    --cnvs-topbar-submenu-font-size: 0.75rem;
    position: relative;
    border-bottom: var(--cnvs-topbar-border-size) solid var(--cnvs-topbar-border-color);
    font-size: var(--cnvs-topbar-font-size);
    background-color: var(--cnvs-topbar-bg);
}

.top-links {
    position: relative;
    flex: 0 0 auto;
    flex-grow: 0;
    border-bottom: var(--cnvs-topbar-border-size) solid var(--cnvs-topbar-border-color);
}

@media (min-width: 768px) {
    .top-links {
        border-bottom: 0;
    }
}

.top-links-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin-bottom: 0;
}

.top-links-item {
    position: relative;
    border-left: var(--cnvs-topbar-border-size) solid var(--cnvs-topbar-border-color);
}

.top-links-item:first-child, .top-links-sub-menu .top-links-item {
    border-left: 0 !important;
}

.top-links-item > a {
    display: block;
    padding: 12px;
    line-height: calc(var(--cnvs-topbar-height) - 24px);
    font-weight: var(--cnvs-topbar-font-weight);
    text-transform: var(--cnvs-topbar-font-transform);
    color: var(--cnvs-topbar-color);
}

.top-links-item > a > i {
    vertical-align: top;
}

.top-links-item > a > i.sub-menu-indicator {
    font-size: 0.75rem;
    margin: 0 0 0 0.375rem !important;
}

.top-links-item > a > i:first-child {
    margin-right: 3px;
}

.top-links-item.full-icon > a > i {
    top: 2px;
    font-size: 0.875rem;
    margin: 0;
}

.top-links-item:hover {
    background-color: var(--cnvs-contrast-200);
}

.top-links-sub-menu, .top-links-section {
    position: absolute;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    list-style: none;
    z-index: -1;
    line-height: 1.5;
    background: var(--cnvs-topbar-bg);
    border: 0;
    top: 100%;
    left: -1px;
    width: 140px;
    margin-top: 10px;
    border: var(--cnvs-topbar-border-size) solid var(--cnvs-topbar-border-color);
    border-top: 1px solid var(--cnvs-themecolor);
    box-shadow: 0px 13px 42px 11px rgba(0, 0, 0, 0.05);
    transition: opacity 0.25s ease, margin 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
    .top-links-sub-menu, .top-links-section {
        transition: none;
    }
}

.top-links:not(.on-click) .top-links-item:hover > .top-links-sub-menu, .top-links:not(.on-click) .top-links-item:hover > .top-links-section, .top-links.on-click .top-links-sub-menu, .top-links.on-click .top-links-section {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    pointer-events: auto;
    z-index: 499;
}

.top-links.on-click .top-links-sub-menu, .top-links.on-click .top-links-section {
    display: none;
}

.top-links-sub-menu .top-links-sub-menu {
    top: calc(-1 * var(--cnvs-topbar-border-size));
    left: 100%;
}

.top-links-sub-menu .top-links-item:not(:first-child) {
    border-top: var(--cnvs-topbar-border-size) solid rgba(var(--cnvs-contrast-rgb), 0.1);
}

.top-links-sub-menu .top-links-item:hover {
    background-color: var(--cnvs-contrast-100);
}

.top-links-sub-menu .top-links-item > a {
    display: flex;
    align-items: center;
    padding-top: var(--cnvs-topbar-submenu-padding);
    padding-bottom: var(--cnvs-topbar-submenu-padding);
    font-size: var(--cnvs-topbar-submenu-font-size);
    line-height: 20px;
}

.top-links-sub-menu .top-links-item > a > img {
    position: relative;
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
}

.top-links-sub-menu .top-links-item > a i.sub-menu-indicator {
    margin: 0 !important;
    position: absolute;
    top: 50%;
    left: auto;
    right: 10px;
    transform: translateY(-50%) rotate(-90deg);
}

.top-links-sub-menu.top-demo-lang .top-links-item > a > img {
    top: 4px;
    width: 16px;
    height: 16px;
}

.top-links-section {
    padding: 25px;
    left: 0;
    width: 280px;
}

.top-links-section.menu-pos-invert {
    left: auto;
    right: 0;
}

#top-social {
    display: flex;
    justify-content: center;
    margin: 0;
}

#top-social li {
    position: relative;
    list-style: none;
    border-left: var(--cnvs-topbar-border-size) solid var(--cnvs-topbar-border-color);
}

#top-social li:first-child {
    border-left: 0 !important;
}

#top-social li .ts-icon, #top-social li .ts-text {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    height: var(--cnvs-topbar-height);
    line-height: calc(var(--cnvs-topbar-height) - 1px);
}

#top-social li .ts-icon {
    width: 40px;
    text-align: center;
    font-size: 0.875rem;
}

#top-social li .ts-text {
    max-width: 0;
    white-space: nowrap;
    transition: all 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
    #top-social li .ts-text {
        transition: none;
    }
}

#top-social li a:hover .ts-text {
    max-width: 200px;
    padding-right: 12px;
    transition: all 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    #top-social li a:hover .ts-text {
        transition: none;
    }
}

#top-social a {
    display: flex;
    width: auto;
    overflow: hidden;
    font-weight: bold;
    color: var(--cnvs-topbar-social-icon-color);
}

#top-social a:hover {
    color: var(--bs-gray-100);
}

#top-login {
    margin-bottom: 0;
}

:root, .not-dark {
    --cnvs-header-border-color: rgba(var(--cnvs-contrast-rgb), .1);
    --cnvs-header-transparent-border-color: rgba(var(--cnvs-contrast-rgb), .1);
    --cnvs-header-floating-bg: var(--cnvs-contrast-0);
    --cnvs-primary-menu-color: var(--cnvs-contrast-900);
    --cnvs-primary-menu-submenu-bg: var(--cnvs-contrast-0);
    --cnvs-primary-menu-submenu-color: var(--cnvs-contrast-900);
    --cnvs-primary-menu-submenu-border: 1px solid rgba(var(--cnvs-contrast-rgb), 0.1);
    --cnvs-primary-menu-submenu-hover-bg: rgba(var(--cnvs-contrast-rgb), 0.025);
    --cnvs-primary-menu-submenu-subtitle-color: var(--cnvs-contrast-600);
    --cnvs-header-misc-icons-color: var(--cnvs-primary-menu-color);
    --cnvs-side-panel-bg: var(--cnvs-contrast-100);
}

#header {
    --cnvs-sticky-header-height: var(--cnvs-header-height);
    --cnvs-header-border-color: rgba(var(--cnvs-contrast-rgb), .1);
    --cnvs-header-transparent-border-color: rgba(var(--cnvs-contrast-rgb), .1);
    --cnvs-primary-menu-padding-x: 15px;
    --cnvs-header-floating-top-offset: 60px;
    --cnvs-header-floating-padding: 30px;
    --cnvs-side-header-padding-gutters: 30px;
    --cnvs-primary-menu-color: var(--cnvs-contrast-900);
    --cnvs-primary-menu-hover-color: var(--cnvs-themecolor);
    --cnvs-primary-menu-active-color: var(--cnvs-primary-menu-hover-color);
    --cnvs-primary-menu-font: var(--cnvs-primary-font);
    --cnvs-primary-menu-font-weight: 700;
    --cnvs-primary-menu-font-size: 0.8125rem;
    --cnvs-primary-menu-tt: uppercase;
    --cnvs-primary-menu-ls: 1px;
    --cnvs-primary-menu-icon-size: 1rem;
    --cnvs-primary-menu-icon-gap: 0.625rem;
    --cnvs-primary-menu-hover-text-decoration: none;
    --cnvs-primary-menu-hover-text-decoration-offset: 3px;
    --cnvs-primary-menu-submenu-padding-x: 15px;
    --cnvs-primary-menu-submenu-padding-y: 10px;
    --cnvs-primary-menu-submenu-top-border: 2px solid var(--cnvs-themecolor);
    --cnvs-primary-menu-submenu-width: 240px;
    --cnvs-primary-menu-submenu-display-speed: 0.3s;
    --cnvs-primary-menu-submenu-display-offset: 0.5rem;
    --cnvs-primary-menu-submenu-font: var(--cnvs-body-font);
    --cnvs-primary-menu-submenu-font-size: 0.75rem;
    --cnvs-primary-menu-submenu-font-weight: 600;
    --cnvs-primary-menu-submenu-hover-font-weight: 700;
    --cnvs-primary-menu-submenu-tt: uppercase;
    --cnvs-primary-menu-submenu-color: var(--cnvs-contrast-900);
    --cnvs-primary-menu-submenu-spacing: 0;
    --cnvs-primary-menu-submenu-border: 1px solid rgba(var(--cnvs-contrast-rgb), 0.1);
    --cnvs-primary-menu-submenu-hover-bg: rgba(var(--cnvs-contrast-rgb), 0.025);
    --cnvs-primary-menu-submenu-hover-color: var(--cnvs-primary-menu-active-color);
    --cnvs-primary-menu-submenu-hover-padding-offset: 0.25rem;
    --cnvs-primary-menu-submenu-subtitle-display: none;
    --cnvs-primary-menu-submenu-subtitle-font-size: var(--cnvs-primary-menu-submenu-font-size);
    --cnvs-primary-menu-submenu-subtitle-font-weight: 400;
    --cnvs-primary-menu-submenu-subtitle-tt: none;
    --cnvs-header-misc-icons-size: 1.125rem;
    --cnvs-header-misc-icons-color: var(--cnvs-primary-menu-color);
    --cnvs-mega-menu-width-sm: 400px;
    --cnvs-mobile-menu-off-canvas-width: 280px;
    --cnvs-top-search-font-size: 2rem;
    --cnvs-top-search-placeholder: var(--cnvs-contrast-600);
    position: relative;
}

#header-wrap {
    position: fixed;
    height: auto;
    z-index: 299;
    width: 100%;
    background-color: var(--cnvs-header-bg);
    border-bottom: 1px solid var(--cnvs-header-border-color);
    transition: height 0.2s ease 0s, background-color 0.3s ease 0s;
    backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
    #header-wrap {
        transition: none;
    }
}

.is-expanded-menu #top-bar + #header:not(.sticky-header) #header-wrap, .is-expanded-menu #slider + #header:not(.sticky-header) #header-wrap, .is-expanded-menu .floating-header:not(.sticky-header) #header-wrap, .is-expanded-menu div + #header-wrap, .is-expanded-menu .no-sticky #header-wrap, .is-expanded-menu #header[data-sticky-offset]:not([data-sticky-offset=full]):not(.sticky-header) #header-wrap {
    position: absolute;
}

body.is-expanded-menu:not(.stretched) #header:not(.sticky-header) #header-wrap {
    position: absolute;
}

body:not(.is-expanded-menu) #header:not([data-mobile-sticky=true]) #header-wrap {
    position: relative;
}

body:not(.is-expanded-menu) #header:not([data-mobile-sticky=true]) .header-wrap-clone {
    display: none;
}

.header-wrap-clone {
    height: calc(var(--cnvs-header-height) + 1px);
}

.header-row {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.is-expanded-menu .header-row {
    position: initial;
}

.is-expanded-menu {
}

.is-expanded-menu .header-size-sm {
    --cnvs-header-height: var(--cnvs-header-height-sm);
}

.is-expanded-menu .header-size-md {
    --cnvs-header-height: var(--cnvs-header-height-md);
}

.is-expanded-menu .header-size-lg {
    --cnvs-header-height: var(--cnvs-header-height-lg);
}

.is-expanded-menu #header.sticky-header-shrink {
    --cnvs-sticky-header-height: var(--cnvs-header-height-shrink);
}

.is-expanded-menu #header + .include-header {
    margin-top: calc(-1 * var(--cnvs-header-height) - 1px);
    display: inline-block;
    vertical-align: bottom;
    width: 100%;
}

.is-expanded-menu #header.transparent-header {
    --cnvs-header-bg: transparent;
    border-bottom: 0;
}

.is-expanded-menu #header.transparent-header:not(.sticky-header) #header-wrap {
    border-bottom: 1px solid transparent;
    z-index: 299;
}

.is-expanded-menu #header.transparent-header.floating-header {
    margin-top: var(--cnvs-header-floating-top-offset);
}

.is-expanded-menu #header.transparent-header.floating-header .container {
    padding: 0 var(--cnvs-header-floating-padding);
    background-color: var(--cnvs-header-floating-bg);
}

.is-expanded-menu #header.transparent-header.floating-header:not(.sticky-header) .container {
    position: relative;
}

#header.floating-header + .include-header {
    margin-top: calc(var(--cnvs-header-height) + var(--cnvs-header-floating-top-offset) - 2px);
}

.is-expanded-menu #header.transparent-header + .page-title-parallax.include-header .container {
    z-index: 5;
    padding-top: var(--cnvs-header-height);
}

.is-expanded-menu #header.transparent-header.semi-transparent {
    --cnvs-header-bg: rgba(var(--cnvs-invert-contrast-rgb), .7);
}

.is-expanded-menu #header.full-header:not(.transparent-header) {
    border-bottom-color: var(--cnvs-header-border-color);
}

.is-expanded-menu #header.full-header.transparent-header #header-wrap {
    border-bottom: 1px solid var(--cnvs-header-transparent-border-color);
}

.is-expanded-menu #slider + #header.transparent-header.full-header #header-wrap {
    border-top: 1px solid var(--cnvs-header-transparent-border-color);
    border-bottom: none;
}

.is-expanded-menu.stretched .full-header #header-wrap > .container {
    width: 100%;
    max-width: none;
    padding: 0 30px;
}

.is-expanded-menu .sub-menu-container, .is-expanded-menu .mega-menu-content {
    transition: top 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    .is-expanded-menu .sub-menu-container, .is-expanded-menu .mega-menu-content {
        transition: none;
    }
}

.is-expanded-menu .sticky-header #header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--cnvs-header-sticky-bg);
}

.is-expanded-menu .sticky-header.semi-transparent {
    --cnvs-header-sticky-bg: rgba(var(--cnvs-invert-contrast-rgb), 0.7);
}

.is-expanded-menu .sticky-header.full-header #header-wrap {
    border-bottom: 1px solid var(--cnvs-header-border-color);
}

.is-expanded-menu .sticky-header-shrink .style-3 .menu-container > .menu-item > .menu-link {
    --cnvs-primary-menu-padding-y: 19px;
    margin: 0;
    border-radius: 0;
}

.is-expanded-menu .sticky-header-shrink .style-4 .menu-container > .menu-item > .menu-link {
    --cnvs-primary-menu-padding-y: 8px;
    margin: 10px 0;
}

.is-expanded-menu .sticky-header-shrink .style-5 .menu-container > .menu-item:not(:first-child) {
    margin-left: 0;
}

.is-expanded-menu .sticky-header-shrink .style-5 .menu-container > .menu-item > .menu-link {
    line-height: 22px;
}

.is-expanded-menu .sticky-header-shrink .style-5 .menu-container > .menu-item > .menu-link > div {
    padding: 0;
}

.is-expanded-menu .sticky-header-shrink .style-5 .menu-container > .menu-item > .menu-link i:not(.sub-menu-indicator) {
    display: inline-block;
    width: 1rem;
    margin: 0 0.5rem 0 0;
    font-size: 0.875rem;
    line-height: 22px;
}

.is-expanded-menu .sticky-header-shrink .sub-title .menu-container > .menu-item > .menu-link {
    --cnvs-primary-menu-padding-y: 18px;
}

body:not(.is-expanded-menu) [data-mobile-sticky=true] .menu-container {
    max-height: 60vh;
    margin: 0 0 1rem;
    overflow-x: hidden;
    overflow-y: scroll;
}

body:not(.is-expanded-menu) .sticky-header #header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 299;
    background-color: var(--cnvs-header-sticky-bg);
    border-bottom: var(--cnvs-primary-menu-submenu-border);
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}

body:not(.is-expanded-menu) .sticky-header .header-wrap-clone {
    display: block;
}

body:not(.is-expanded-menu):not(.primary-menu-open) .dark.transparent-header-responsive, body:not(.is-expanded-menu):not(.primary-menu-open) .transparent-header-responsive {
    background-color: transparent;
    border: none;
}

body:not(.is-expanded-menu):not(.primary-menu-open) .semi-transparent.transparent-header-responsive {
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

#logo {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: auto;
    max-height: 100%;
}

#logo a {
    color: #000;
    font-family: var(--cnvs-primary-font);
    font-size: 36px;
    width: 100%;
}

#logo a [class^=logo-] {
    display: none;
}

#logo a .logo-default {
    display: flex;
}

#logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin-left: auto;
    margin-right: auto;
    transition: height 0.4s ease, padding 0.4s ease, margin 0.4s ease, opacity 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    #logo img {
        transition: none;
    }
}

#header-wrap #logo img {
    height: var(--cnvs-header-height);
}

.is-expanded-menu .full-header #logo {
    padding-right: 30px;
    border-right: 1px solid var(--cnvs-header-border-color);
}

.is-expanded-menu #header.transparent-header.full-header #logo {
    border-right-color: var(--cnvs-header-transparent-border-color);
}

.is-expanded-menu #header.sticky-header-shrink #header-wrap #logo img {
    height: var(--cnvs-sticky-header-height);
}

.header-extras {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
}

.header-extras li {
    display: flex;
    align-items: center;
    margin-left: 1.25rem;
    overflow: hidden;
    list-style: none;
}

.header-extras li:first-child {
    margin-left: 0;
}

.header-extras li .he-text {
    padding-left: 10px;
    font-weight: bold;
    font-size: 0.875rem;
}

.header-extras li .he-text span {
    display: block;
    font-weight: 400;
    color: var(--cnvs-themecolor);
}

body:not(.is-expanded-menu) .mobile-menu-overlay .menu-container {
    position: absolute;
    z-index: 99;
    width: 100%;
    min-height: 25vh;
    height: auto;
    max-height: 60vh !important;
    margin: 0 !important;
    left: 0 !important;
    top: calc(var(--cnvs-header-height) - 15%) !important;
    border: 1px solid rgba(var(--cnvs-contrast-rgb), 0.1);
    border-radius: 0.5rem;
    padding: 1rem 1.5rem !important;
    background-color: var(--cnvs-header-bg);
    overflow-y: auto;
    -webkit-backface-visibility: hidden;
    transition: opacity 0.3s ease;
}

.is-expanded-menu {
}

.is-expanded-menu .menu-container:not(.mobile-primary-menu) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.is-expanded-menu .full-header .primary-menu .menu-container {
    padding-right: 0.5rem;
    margin-right: 0.5rem;
    border-right: 1px solid var(--cnvs-header-border-color);
}

.is-expanded-menu .transparent-header.full-header .primary-menu .menu-container {
    border-right-color: var(--cnvs-header-transparent-border-color);
}

.is-expanded-menu .menu-container > .menu-item:not(:first-child) {
    margin-left: 2px;
}

.is-expanded-menu .sub-menu-container .sub-menu-container {
    list-style: none;
    top: -2px !important;
    left: 100%;
}

.is-expanded-menu .sub-menu-container.menu-pos-invert, .is-expanded-menu .mega-menu-small .mega-menu-content.menu-pos-invert {
    left: auto;
    right: 0;
}

.is-expanded-menu .sub-menu-container .sub-menu-container.menu-pos-invert {
    right: 100%;
}

.is-expanded-menu .sub-menu-container .menu-item:not(:first-child) {
    border-top: 0;
}

.is-expanded-menu .sub-menu-container .menu-item > .menu-link {
    padding: var(--cnvs-primary-menu-submenu-padding-y) var(--cnvs-primary-menu-submenu-padding-x);
    font-weight: var(--cnvs-primary-menu-submenu-font-weight);
    text-transform: var(--cnvs-primary-menu-submenu-tt);
    border: 0;
    transition: all 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .is-expanded-menu .sub-menu-container .menu-item > .menu-link {
        transition: none;
    }
}

.is-expanded-menu .sub-menu-container .menu-item > .menu-link span {
    --cnvs-primary-menu-submenu-subtitle-display: block;
    color: var(--cnvs-primary-menu-submenu-subtitle-color);
    font-size: var(--cnvs-primary-menu-submenu-subtitle-font-size);
    font-weight: var(--cnvs-primary-menu-submenu-subtitle-font-weight);
    text-transform: var(--cnvs-primary-menu-submenu-subtitle-tt);
    line-height: 1.5;
}

.is-expanded-menu .sub-menu-container .menu-item > .menu-link span.menu-subtitle-icon-offset {
    margin-left: calc(var(--cnvs-primary-menu-icon-size) + var(--cnvs-primary-menu-icon-gap));
}

.is-expanded-menu .sub-menu-container .menu-item:hover > .menu-link {
    background-color: var(--cnvs-primary-menu-submenu-hover-bg);
    --cnvs-primary-menu-submenu-font-weight: var(--cnvs-primary-menu-submenu-hover-font-weight);
    padding-left: calc(var(--cnvs-primary-menu-submenu-padding-x) + var(--cnvs-primary-menu-submenu-hover-padding-offset));
}

.is-expanded-menu .sub-menu-container .menu-item:hover > .menu-link div {
    -webkit-text-decoration: var(--cnvs-primary-menu-hover-text-decoration);
    text-decoration: var(--cnvs-primary-menu-hover-text-decoration);
    text-underline-offset: var(--cnvs-primary-menu-hover-text-decoration-offset);
}

.is-expanded-menu .sub-menu-container .menu-item:hover > .menu-link, .is-expanded-menu .sub-menu-container .menu-item.current > .menu-link {
    color: var(--cnvs-primary-menu-submenu-hover-color);
}

.is-expanded-menu .menu-link div > i.sub-menu-indicator {
    top: 0px;
    font-size: 0.75rem;
    margin: 0 0 0 0.1875rem;
    opacity: 0.9;
}

.is-expanded-menu .sub-menu-container .menu-link div > i.sub-menu-indicator, .is-expanded-menu.side-header .primary-menu:not(.on-click) .menu-link i.sub-menu-indicator {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    line-height: 1;
    margin: 0;
    transform: translateY(-50%) rotate(-90deg);
}

.is-expanded-menu .menu-item .sub-menu-trigger, .is-expanded-menu.side-header .on-click .sub-menu-container .menu-link i.sub-menu-indicator:last-child {
    display: none;
}

.is-expanded-menu .mega-menu:not(.mega-menu-full) .mega-menu-content .container {
    max-width: none;
    padding: 0 calc(var(--bs-gutter-x) * 0.5) !important;
    margin: 0 auto !important;
}

.is-expanded-menu .mega-menu-content {
    margin: 0;
    width: 100%;
    max-width: none;
    left: 50%;
    transform: translateX(-50%);
}

.is-expanded-menu .mega-menu-full .mega-menu-content {
    width: 100%;
    left: 0;
    transform: none;
}

.is-expanded-menu .mega-menu-small {
    position: relative;
}

.is-expanded-menu .mega-menu-small .mega-menu-content {
    left: 0;
    width: var(--cnvs-mega-menu-width-sm);
    transform: none;
}

.is-expanded-menu .floating-header:not(.sticky-header) .mega-menu:not(.mega-menu-small) .mega-menu-content {
    max-width: 100%;
}

.is-expanded-menu .sub-menu-container .mega-menu {
    position: relative;
}

.is-expanded-menu .sub-menu-container .mega-menu-small .mega-menu-content {
    top: 0;
    left: 100%;
}

.is-expanded-menu .sub-menu-container .mega-menu-small .mega-menu-content.menu-pos-invert {
    left: auto;
    right: 100%;
}

.is-expanded-menu .mega-menu-content .sub-menu-container:not(.mega-menu-dropdown) {
    position: relative;
    display: block !important;
    visibility: visible !important;
    top: 0 !important;
    left: 0;
    min-width: inherit;
    height: auto !important;
    list-style: none;
    border: 0;
    box-shadow: none;
    background-color: transparent;
    opacity: 1 !important;
    z-index: auto;
}

.is-expanded-menu .mega-menu-content .sub-menu-container.mega-menu-dropdown {
    padding: 0.75rem 1.25rem;
    width: var(--cnvs-primary-menu-submenu-width);
}

.is-expanded-menu .mega-menu-column {
    display: block !important;
    padding-left: 0;
    padding-right: 0;
}

.is-expanded-menu .mega-menu:not(.mega-menu-small) .mega-menu-column {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.is-expanded-menu .mega-menu-content:not(.border-0) .sub-menu-container.mega-menu-column:not(:first-child) {
    border-left: var(--cnvs-primary-menu-submenu-border);
}

.is-expanded-menu .mega-menu .mega-menu-style-2 .mega-menu-column {
    padding: 1.75rem 1.5rem;
}

.is-expanded-menu .mega-menu-style-2 .mega-menu-title:not(:first-child) {
    margin-top: 1.5rem;
}

.is-expanded-menu .mega-menu-style-2 .mega-menu-title > .menu-link {
    --cnvs-primary-menu-submenu-tt: uppercase;
    --cnvs-primary-menu-submenu-font-weight: 700;
    --cnvs-primary-menu-submenu-hover-font-weight: 700;
    --cnvs-primary-menu-font: var(--cnvs-primary-font);
    font-size: calc(var(--cnvs-primary-menu-submenu-font-size) * 1.1);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--cnvs-primary-menu-submenu-color);
    padding: 0 !important;
    line-height: 1.3 !important;
}

.is-expanded-menu .mega-menu-style-2 .mega-menu-title:hover > .menu-link {
    --cnvs-primary-menu-submenu-hover-bg: transparent;
}

.is-expanded-menu .mega-menu-style-2 .mega-menu-title:hover > .menu-link div {
    text-decoration: none;
}

.is-expanded-menu .mega-menu-style-2 .mega-menu-title > .menu-link:hover {
    color: var(--cnvs-primary-menu-hover-color);
}

.is-expanded-menu .mega-menu-style-2 .sub-menu-container:not(.mega-menu-dropdown) .menu-item {
    border: 0;
}

.is-expanded-menu .mega-menu-style-2 .sub-menu-container:not(.mega-menu-dropdown) .menu-link {
    --cnvs-primary-menu-submenu-padding-x: 0.25rem;
    --cnvs-primary-menu-submenu-padding-y: 0.5rem;
}

.is-expanded-menu .mega-menu-style-2 .sub-menu-container:not(.mega-menu-dropdown) .menu-item:not(.mega-menu-title):hover > .menu-link {
    --cnvs-primary-menu-submenu-hover-bg: rgba(var(--cnvs-contrast-rgb), 0.025);
    --cnvs-primary-menu-submenu-hover-padding-offset: 0.375rem;
    padding-right: 0.25rem;
    border-radius: 0.25rem;
}

.is-expanded-menu .on-click .sub-menu-container, .is-expanded-menu .on-click .mega-menu-content {
    display: none;
    visibility: visible;
}

.is-expanded-menu .on-click .menu-item:not(.mega-menu-small) .mega-menu-content .sub-menu-container:not(.mega-menu-dropdown) {
    display: block;
}

.is-expanded-menu .style-2 #logo {
    margin-right: 1.5rem;
}

.is-expanded-menu .style-2 .primary-menu {
    margin-right: auto;
}

.is-expanded-menu .style-2.menu-center .primary-menu {
    margin-right: auto;
    margin-left: auto;
}

.is-expanded-menu .style-3 .menu-container > .menu-item > .menu-link {
    --cnvs-primary-menu-padding-y: 11px;
    margin: 28px 0;
    border-radius: 2px;
}

.is-expanded-menu .style-3 .menu-container > .menu-item:hover > .menu-link {
    background-color: var(--cnvs-primary-menu-submenu-hover-bg);
}

.is-expanded-menu .style-3 .menu-container > .menu-item.current > .menu-link {
    --cnvs-primary-menu-active-color: var(--bs-white);
    background-color: var(--cnvs-themecolor);
}

.is-expanded-menu .style-4 .menu-container > .menu-item > .menu-link {
    --cnvs-primary-menu-padding-y: 28px;
    margin: var(--cnvs-primary-menu-padding-y) 0;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 2px;
    border: 1px solid transparent;
}

.is-expanded-menu .style-4 .menu-container > .menu-item:hover > .menu-link {
    border-color: var(--cnvs-primary-menu-hover-color);
}

.is-expanded-menu .style-4 .menu-container > .menu-item.current > .menu-link {
    border-color: var(--cnvs-primary-menu-active-color);
}

.is-expanded-menu .style-5 .menu-container {
    padding-right: 10px;
    margin-right: 5px;
    border-right: 1px solid var(--cnvs-header-border-color);
}

.is-expanded-menu .style-5 .menu-container > .menu-item:not(:first-child) {
    margin-left: 15px;
}

.is-expanded-menu .style-5 .menu-container > .menu-item > .menu-link {
    --cnvs-primary-menu-padding-y: 27px;
    line-height: 1;
}

.is-expanded-menu .style-5 .menu-container > .menu-item > .menu-link i:not(.sub-menu-indicator) {
    display: block;
    width: auto;
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1;
    transition: all 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .is-expanded-menu .style-5 .menu-container > .menu-item > .menu-link i:not(.sub-menu-indicator) {
        transition: none;
    }
}

.is-expanded-menu .style-6 .menu-container > .menu-item > .menu-link {
    position: relative;
}

.is-expanded-menu .style-6 .menu-container > .menu-item > .menu-link::after, .is-expanded-menu .style-6 .menu-container > .menu-item.current > .menu-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    border-top: 2px solid var(--cnvs-primary-menu-active-color);
    transition: width 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .is-expanded-menu .style-6 .menu-container > .menu-item > .menu-link::after, .is-expanded-menu .style-6 .menu-container > .menu-item.current > .menu-link::after {
        transition: none;
    }
}

.is-expanded-menu .style-6 .menu-container > .menu-item.current > .menu-link::after, .is-expanded-menu .style-6 .menu-container > .menu-item:hover > .menu-link::after {
    width: 100%;
}

.is-expanded-menu .sub-title .menu-container > .menu-item {
    margin-left: 0;
}

.is-expanded-menu .sub-title .menu-container > .menu-item > .menu-link {
    --cnvs-header-height: 100px;
    --cnvs-primary-menu-padding-y: 32px;
    --cnvs-primary-menu-padding-x: 20px;
    position: relative;
    line-height: 14px;
}

.is-expanded-menu .sub-title .menu-container > .menu-item:not(:first-child) > .menu-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -2;
    width: 1px;
    height: 36px;
    background-color: var(--cnvs-contrast-200);
    transform: translateY(-50%);
}

.is-expanded-menu .sub-title .menu-container > .menu-item > .menu-link span {
    display: block;
    margin-top: 13px;
    line-height: 12px;
    font-size: 0.825rem;
    font-weight: 400;
    color: var(--cnvs-contrast-600);
    text-transform: capitalize;
}

.is-expanded-menu .sub-title .menu-container > .menu-item:hover > .menu-link, .is-expanded-menu .sub-title .menu-container > .menu-item.current > .menu-link {
    color: #FFF;
}

.is-expanded-menu .sub-title .menu-container > .menu-item:hover > .menu-link span, .is-expanded-menu .sub-title .menu-container > .menu-item.current > .menu-link span {
    color: var(--cnvs-contrast-200);
}

.is-expanded-menu .sub-title .menu-container > .menu-item:hover > .menu-link::after, .is-expanded-menu .sub-title .menu-container > .menu-item.current > .menu-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: var(--cnvs-themecolor);
    border-top: 5px solid rgba(0, 0, 0, 0.1);
}

.is-expanded-menu.side-header:not(.open-header) #wrapper {
    margin: 0 0 0 var(--cnvs-side-header-width) !important;
    width: auto !important;
}

.is-expanded-menu.side-header .container {
    padding-left: var(--cnvs-side-header-padding-gutters);
    padding-right: var(--cnvs-side-header-padding-gutters);
}

.is-expanded-menu.side-header #header {
    --cnvs-header-bg: var(--cnvs-side-header-bg);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: var(--cnvs-side-header-width);
    height: 100vh;
    border: none;
    border-right: 1px solid var(--cnvs-header-border-color);
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.065);
}

.is-expanded-menu.side-header #header-wrap {
    position: relative;
    width: calc(var(--cnvs-side-header-width) + 40px);
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-right: 40px;
}

.is-expanded-menu.side-header #header-wrap > .container {
    width: var(--cnvs-side-header-width);
    max-width: none;
    padding: 0 var(--cnvs-side-header-padding-gutters);
    margin: 0 !important;
    min-height: 100%;
    display: flex;
}

.is-expanded-menu.side-header .header-wrap-clone {
    display: none;
}

.is-expanded-menu.side-header .header-row {
    flex-direction: column;
    flex-grow: 1 !important;
}

.is-expanded-menu.side-header #logo {
    margin: 3rem 0;
    width: 100%;
}

.is-expanded-menu.side-header #logo img {
    max-width: 100%;
}

.is-expanded-menu.side-header .header-misc {
    width: 100%;
    margin: 0;
}

.is-expanded-menu.side-header .primary-menu {
    margin-bottom: 30px;
    flex-grow: 0 !important;
    width: 100%;
}

.is-expanded-menu.side-header .primary-menu:not(.border-bottom-0)::after {
    margin-top: 40px;
}

.is-expanded-menu.side-header .menu-container {
    display: block;
    height: auto;
    width: 100%;
}

.is-expanded-menu .no-triggers .menu-container .sub-menu-trigger {
    display: none;
}

.is-expanded-menu.side-header .on-click .menu-item .sub-menu-trigger {
    display: block;
    top: 0;
    right: -5px;
    font-size: 10px;
}

.is-expanded-menu.side-header .primary-menu:not(.on-click) .text-center i.sub-menu-indicator {
    display: inline-block;
    position: relative;
    top: 2px;
    margin-left: 5px;
    transform: none;
}

.is-expanded-menu.side-header .primary-menu:not(.on-click) .text-center .sub-menu-container i.sub-menu-indicator {
    top: -1px;
}

.is-expanded-menu.side-header .menu-item {
    width: 100%;
}

.is-expanded-menu.side-header .menu-item:not(:first-child) {
    margin: 10px 0 0;
    border-top: 0;
}

.is-expanded-menu.side-header .menu-link {
    position: relative;
    padding: 5px 0 !important;
    margin: 0 !important;
}

.is-expanded-menu.side-header .sub-menu-container, .is-expanded-menu.side-header .mega-menu-content {
    position: relative;
    width: 100% !important;
    background-color: transparent;
    box-shadow: none;
    border: none;
    height: auto;
    z-index: 1;
    top: 0;
    left: 0;
    margin: 5px 0;
    padding: 0 0 0 12px !important;
}

.is-expanded-menu.side-header .mega-menu-content {
    padding: 0 !important;
    margin-bottom: 0 !important;
}

.is-expanded-menu.side-header .mega-menu-column {
    flex: 0 0 100%;
    max-width: 100%;
    border: none !important;
}

.is-expanded-menu.side-header .sub-menu-container .sub-menu-container {
    top: 0 !important;
    left: 0;
}

.is-expanded-menu.side-header .sub-menu-container.menu-pos-invert {
    left: 0;
    right: auto;
}

.is-expanded-menu.side-header .sub-menu-container .sub-menu-container.menu-pos-invert {
    right: auto;
}

.is-expanded-menu.side-header .sub-menu-container .menu-item {
    margin: 0;
    border: 0;
}

.is-expanded-menu.side-header .sub-menu-container .menu-item:first-child {
    border-top: 0;
}

.is-expanded-menu.side-header .menu-item:hover > .menu-link {
    background-color: transparent !important;
}

.is-expanded-menu.side-header .menu-container > .menu-item.sub-menu > .menu-link, .is-expanded-menu.side-header .menu-container > .menu-item.sub-menu:hover > .menu-link {
    background-image: none !important;
}

.is-expanded-menu.side-header.open-header.push-wrapper {
    overflow-x: hidden;
}

.is-expanded-menu.side-header.open-header #header {
    left: calc(-1 * var(--cnvs-side-header-width));
}

.is-expanded-menu.side-header.open-header.side-header-open #header {
    left: 0;
}

.is-expanded-menu.side-header.open-header #wrapper {
    left: 0;
}

.is-expanded-menu.side-header.open-header.push-wrapper.side-header-open #wrapper {
    left: var(--cnvs-side-header-width);
}

.is-expanded-menu #header-trigger {
    display: none;
}

.is-expanded-menu.side-header.open-header #header-trigger {
    --cnvs-header-trigger-size: 2rem;
    --cnvs-header-trigger-offset: 1.5rem;
    display: block;
    position: fixed;
    cursor: pointer;
    top: var(--cnvs-header-trigger-offset);
    left: var(--cnvs-header-trigger-offset);
    z-index: 11;
    font-size: calc(var(--cnvs-header-trigger-size) * 0.5);
    width: var(--cnvs-header-trigger-size);
    height: var(--cnvs-header-trigger-size);
    line-height: calc(var(--cnvs-header-trigger-size) - 2px);
    background-color: var(--cnvs-header-bg);
    border: 1px solid rgba(var(--cnvs-contrast-rgb), 0.1);
    text-align: center;
    border-radius: 2px;
}

.is-expanded-menu.side-header.open-header.side-header-open #header-trigger {
    left: calc(var(--cnvs-side-header-width) + var(--cnvs-header-trigger-offset));
}

.is-expanded-menu.side-header.open-header #header-trigger i:nth-child(1), .is-expanded-menu.side-header.open-header.side-header-open #header-trigger i:nth-child(2) {
    display: block;
}

.is-expanded-menu.side-header.open-header.side-header-open #header-trigger i:nth-child(1), .is-expanded-menu.side-header.open-header #header-trigger i:nth-child(2) {
    display: none;
}

.is-expanded-menu.side-header.open-header #header, .is-expanded-menu.side-header.open-header #header-trigger, .is-expanded-menu.side-header.open-header.push-wrapper #wrapper {
    transition: left 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    .is-expanded-menu.side-header.open-header #header, .is-expanded-menu.side-header.open-header #header-trigger, .is-expanded-menu.side-header.open-header.push-wrapper #wrapper {
        transition: none;
    }
}

.is-expanded-menu.side-header.side-header-right #header {
    left: auto;
    right: 0;
    border: none;
    border-left: 1px solid rgba(var(--cnvs-contrast-rgb), 0.1);
}

.is-expanded-menu.side-header.side-header-right:not(.open-header) #wrapper {
    margin: 0 var(--cnvs-side-header-width) 0 0 !important;
}

.is-expanded-menu.side-header.side-header-right.open-header #header {
    left: auto;
    right: calc(-1 * var(--cnvs-side-header-width));
}

.is-expanded-menu.side-header.side-header-right.open-header.side-header-open #header {
    left: auto;
    right: 0;
}

.is-expanded-menu.side-header.side-header-right.open-header.push-wrapper.side-header-open #wrapper {
    left: calc(-1 * var(--cnvs-side-header-width));
}

.is-expanded-menu.side-header.side-header-right.open-header #header-trigger {
    left: auto;
    right: var(--cnvs-header-trigger-offset);
}

.is-expanded-menu.side-header.side-header-right.open-header.side-header-open #header-trigger {
    left: auto;
    right: calc(var(--cnvs-side-header-width) + var(--cnvs-header-trigger-offset));
}

.is-expanded-menu.side-header.side-header-right.open-header #header, .is-expanded-menu.side-header.side-header-right.open-header #header-trigger {
    transition: right 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    .is-expanded-menu.side-header.side-header-right.open-header #header, .is-expanded-menu.side-header.side-header-right.open-header #header-trigger {
        transition: none;
    }
}

.is-expanded-menu.overlay-menu:not(.top-search-open) .primary-menu-trigger {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.is-expanded-menu.overlay-menu .primary-menu-trigger {
    z-index: 599;
}

.is-expanded-menu.overlay-menu .primary-menu {
    --cnvs-primary-menu-font-size: 0.9375rem;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    width: 100%;
    height: 100%;
    height: 100vh;
    background-color: var(--cnvs-header-bg);
    background: rgba(var(--cnvs-invert-contrast-rgb), 0.95);
}

.is-expanded-menu.overlay-menu .primary-menu > #overlay-menu-close {
    position: fixed;
    top: 25px;
    left: auto;
    right: 25px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 1.5rem;
    text-align: center;
    color: var(--cnvs-contrast-900);
}

.is-expanded-menu.overlay-menu .primary-menu, .is-expanded-menu.overlay-menu .primary-menu > #overlay-menu-close {
    opacity: 0 !important;
    pointer-events: none;
    z-index: -2;
    transform: translateY(-80px);
    transition: opacity 0.4s ease, transform 0.45s ease !important;
}

@media (prefers-reduced-motion: reduce) {
    .is-expanded-menu.overlay-menu .primary-menu, .is-expanded-menu.overlay-menu .primary-menu > #overlay-menu-close {
        transition: none;
    }
}

.is-expanded-menu.overlay-menu.primary-menu-open .primary-menu, .is-expanded-menu.overlay-menu.primary-menu-open #overlay-menu-close {
    opacity: 1 !important;
    pointer-events: auto;
    z-index: 499;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.45s ease !important;
}

@media (prefers-reduced-motion: reduce) {
    .is-expanded-menu.overlay-menu.primary-menu-open .primary-menu, .is-expanded-menu.overlay-menu.primary-menu-open #overlay-menu-close {
        transition: none;
    }
}

.is-expanded-menu.overlay-menu .primary-menu, .is-expanded-menu.overlay-menu.primary-menu-open .primary-menu {
    transform: translateY(0px);
    transition: opacity 0.3s ease !important;
}

@media (prefers-reduced-motion: reduce) {
    .is-expanded-menu.overlay-menu .primary-menu, .is-expanded-menu.overlay-menu.primary-menu-open .primary-menu {
        transition: none;
    }
}

.is-expanded-menu.overlay-menu .primary-menu > .container {
    max-height: 90%;
    overflow-y: scroll;
}

.is-expanded-menu.overlay-menu .menu-container {
    display: flex !important;
    flex-direction: column;
    max-width: 250px;
    padding: 0 !important;
    margin: 0 auto !important;
    border: 0 !important;
}

.is-expanded-menu.overlay-menu .menu-item {
    position: relative;
    width: 100%;
}

.is-expanded-menu.overlay-menu .menu-link {
    --cnvs-primary-menu-padding-y: 10px;
    --cnvs-primary-menu-padding-x: 0;
}

.is-expanded-menu.overlay-menu .sub-menu-container, .is-expanded-menu.overlay-menu .mega-menu-content {
    display: none;
    position: relative;
    top: 0 !important;
    left: 0 !important;
    right: auto;
    width: 100% !important;
    max-width: 100%;
    box-shadow: none;
    background: transparent;
    border: 0;
    padding: 5px 0 !important;
    transform: translateX(0);
}

.is-expanded-menu.overlay-menu .mega-menu-content .sub-menu-container {
    padding: 5px 0 !important;
}

.is-expanded-menu.overlay-menu .mega-menu-title .sub-menu-container {
    padding-top: 0 !important;
}

.is-expanded-menu.overlay-menu .mega-menu-content .mega-menu-column {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    border: 0 !important;
}

.is-expanded-menu.overlay-menu .sub-menu-container .menu-link {
    padding: 5px 0;
}

.is-expanded-menu.overlay-menu .sub-menu-container .menu-link i.sub-menu-indicator {
    position: relative;
    display: none;
    top: -1px;
    left: 0;
    margin-left: 5px;
    transform: rotate(0deg);
}

.is-expanded-menu.overlay-menu .sub-menu-container .menu-item:hover > .menu-link {
    padding-left: 0;
    padding-right: 0;
    background: transparent;
}

.is-expanded-menu.overlay-menu .sub-menu-trigger {
    display: block;
    top: 5px;
}

.is-expanded-menu.overlay-menu .sub-menu-container .sub-menu-trigger {
    top: 0;
}

@media (max-width: 767.98px) {
    .side-push-panel #side-panel-trigger-close a {
        display: block;
        position: absolute;
        z-index: 12;
        top: 0;
        left: auto;
        right: 0;
        width: 40px;
        height: 40px;
        font-size: 18px;
        line-height: 40px;
        color: var(--cnvs-contrast-900);
        text-align: center;
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 0 0 0 2px;
    }
}

.header-misc {
    position: initial;
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.is-expanded-menu .header-misc {
    order: 6;
}

.header-misc-element, .header-misc-icon {
    margin: 0 8px;
}

.header-misc-icon > a {
    display: flex;
    position: relative;
    width: calc(var(--cnvs-header-misc-icons-size) + 0.125rem);
    height: calc(var(--cnvs-header-misc-icons-size) + 0.125rem);
    font-size: calc(var(--cnvs-header-misc-icons-size));
    line-height: calc(var(--cnvs-header-misc-icons-size) + 0.125rem);
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--cnvs-header-misc-icons-color);
    transition: color 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .header-misc-icon > a {
        transition: none;
    }
}

.is-expanded-menu .header-misc:not([class * =order-]) {
    order: 6;
}

#top-search {
    transition: opacity 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    #top-search {
        transition: none;
    }
}

#top-search a {
    z-index: 11;
}

#top-search a i {
    transition: opacity 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    #top-search a i {
        transition: none;
    }
}

.top-search-open #top-search a i:nth-child(1), #top-search a i:nth-child(2) {
    display: none;
}

.top-search-open #top-search a i:nth-child(2) {
    display: block;
    z-index: 11;
    font-size: 1.125rem;
}

.top-search-form {
    opacity: 0;
    z-index: -2;
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0 auto;
    top: 0;
    left: 0;
    right: 0;
    transition: opacity 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .top-search-form {
        transition: none;
    }
}

.top-search-open .top-search-form {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
}

.top-search-form input {
    box-shadow: none !important;
    border-radius: 0;
    border: 0;
    outline: 0 !important;
    font-size: 1.175rem;
    padding: 10px 80px 10px 0;
    height: 100%;
    background-color: transparent !important;
    color: var(--cnvs-primary-menu-color) !important;
    font-weight: 500;
    margin-top: 0 !important;
    font-family: var(--cnvs-primary-font);
}

@media (min-width: 992px) {
    .top-search-form input {
        font-size: var(--cnvs-top-search-font-size);
    }

    .full-header .top-search-form input, .container-fluid .top-search-form input, .container-sm .top-search-form input, .container-md .top-search-form input, .container-lg .top-search-form input, .container-xl .top-search-form input, .container-xxl .top-search-form input {
        padding-left: 30px;
    }

    .transparent-header:not(.sticky-header):not(.full-header):not(.floating-header) .top-search-form input {
        border-bottom: 2px solid var(--cnvs-header-transparent-border-color);
    }
}

.search-overlay .top-search-form {
    position: fixed;
    width: 100vw !important;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    background-color: var(--cnvs-contrast-0);
    align-items: center;
    justify-content: center;
}

.search-overlay .top-search-form input {
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
}

.top-search-form input::-moz-placeholder {
    color: var(--cnvs-top-search-placeholder);
    opacity: 1;
}

.top-search-form input:-ms-input-placeholder {
    color: var(--cnvs-top-search-placeholder);
    opacity: 1;
}

.top-search-form input::-webkit-input-placeholder {
    color: var(--cnvs-top-search-placeholder);
    opacity: 1;
}

.primary-menu .container .top-search-form input, .sticky-header .top-search-form input {
    border: none !important;
}

body:not(.top-search-open) .top-search-parent #logo, body:not(.top-search-open) .top-search-parent .primary-menu, body:not(.top-search-open) .top-search-parent .header-misc > * :not(#top-search) {
    opacity: 1;
    transition: padding 0.4s ease, margin 0.4s ease, opacity 0.2s 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
    body:not(.top-search-open) .top-search-parent #logo, body:not(.top-search-open) .top-search-parent .primary-menu, body:not(.top-search-open) .top-search-parent .header-misc > * :not(#top-search) {
        transition: none;
    }
}

.top-search-open .top-search-parent #logo, .top-search-open .top-search-parent .primary-menu, .top-search-open .top-search-parent .header-misc > * :not(#top-search) {
    opacity: 0;
}

.top-cart-number {
    --cnvs-top-cart-number-size: 1.125rem;
    display: block;
    position: absolute;
    top: -7px;
    left: auto;
    right: -8px;
    font-size: 0.625rem;
    color: #FFF;
    width: var(--cnvs-top-cart-number-size);
    height: var(--cnvs-top-cart-number-size);
    line-height: var(--cnvs-top-cart-number-size);
    text-align: center;
    background-color: var(--cnvs-themecolor);
    opacity: 0.8;
    border-radius: 50%;
}

@media (min-width: 992px) {
    #top-cart {
        position: relative;
    }
}

.top-cart-content {
    position: fixed;
    top: 0;
    left: auto;
    width: 300px;
    background-color: var(--cnvs-primary-menu-submenu-bg);
    border: 0;
    box-shadow: 0px 20px 50px 10px rgba(0, 0, 0, 0.05);
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .top-cart-content {
        transition: none;
    }
}

@media (max-width: 991.98px) {
    .top-cart-content {
        right: 0 !important;
        transform: translate3d(300px, 0, 0);
        height: 100vh;
        z-index: -1;
    }
}

@media (min-width: 992px) {
    .top-cart-content {
        opacity: 0;
        position: absolute;
        width: 280px;
        border: 1px solid var(--cnvs-header-border-color);
        border-top: 2px solid var(--cnvs-themecolor);
        top: calc((var(--cnvs-sticky-header-height) + 20px) * 0.5);
        right: 0;
        margin: -10000px 0 0;
        z-index: auto;
        transition: opacity 0.5s ease, top 0.4s ease;
    }
}

@media (min-width: 992px) and(prefers-reduced-motion: reduce) {
    .top-cart-content {
        transition: none;
    }
}

.top-cart-title {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--cnvs-header-border-color);
}

.top-cart-title h4, .top-cart-title .h4 {
    margin-bottom: 0;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-cart-items {
    padding: 1rem;
}

@media (min-width: 992px) {
    .top-cart-items {
        padding: 1rem;
    }
}

.top-cart-item, .top-cart-action, .top-cart-item-desc {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.top-cart-item {
    justify-content: flex-start;
}

.top-cart-item:not(:first-child) {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--cnvs-header-border-color);
}

.top-cart-item-image a, .top-cart-item-image img {
    display: block;
    width: 60px;
    height: 60px;
}

.top-cart-item-image:hover {
    border-color: var(--cnvs-themecolor);
}

.top-cart-item-desc, .top-cart-item-desc-title {
    padding-left: 1rem;
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.top-cart-item-desc {
    align-items: flex-start;
}

.top-cart-item-desc-title {
    padding-left: 0;
}

.top-cart-item-desc a {
    display: block;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--cnvs-contrast-800);
    font-weight: 500;
    margin-bottom: 5px;
}

.top-cart-item-desc a:hover {
    color: var(--cnvs-themecolor);
}

.top-cart-item-price {
    font-size: 0.75rem;
    color: var(--cnvs-primary-menu-color);
}

.top-cart-item-quantity {
    padding-top: 5px;
    font-size: 0.75rem;
    line-height: 1.25rem;
    color: var(--cnvs-primary-menu-color);
}

.top-cart-action {
    align-items: center;
    padding: 1rem;
    border-top: 1px solid var(--cnvs-header-border-color);
}

.top-cart-action .top-checkout-price {
    font-size: 1.25rem;
    color: var(--cnvs-themecolor);
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .top-cart-open .top-cart-content {
        transform: translate3d(0, 0, 0);
        z-index: 499;
    }
}

@media (min-width: 992px) {
    .top-cart-open .top-cart-content {
        opacity: 1;
        z-index: 399;
        margin-top: 0;
    }
}

#page-menu {
    --cnvs-page-submenu-sticky-offset: var(--cnvs-header-height-shrink);
    --cnvs-page-submenu-link-size: 0.875rem;
    --cnvs-page-submenu-link-marging-x: 4px;
    --cnvs-page-submenu-link-marging-y: 10px;
    --cnvs-page-submenu-link-rounded: 14px;
    --cnvs-page-submenu-dropdown-width: 150px;
    --cnvs-page-submenu-trigger: 44px;
    --cnvs-page-dotsmenu-size: 10px;
    --cnvs-page-dotsmenu-gutters: 10px;
    --cnvs-page-dotsmenu-rounded: 50%;
    position: relative;
}

#page-menu-wrap {
    position: absolute;
    z-index: 199;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--cnvs-themecolor);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}

#page-menu.sticky-page-menu #page-menu-wrap {
    position: fixed;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

body:not(.is-expanded-pagemenu) #page-menu, #header.no-sticky ~ #page-menu {
    --cnvs-page-submenu-sticky-offset: 0;
}

body:not(.is-expanded-pagemenu) #header[data-mobile-sticky=true] ~ #page-menu {
    --cnvs-page-submenu-sticky-offset: var(--cnvs-header-height);
}

#page-menu.sticky-page-menu:not(.dots-menu) #page-menu-wrap {
    top: var(--cnvs-page-submenu-sticky-offset);
}

#page-menu-trigger {
    opacity: 1;
    pointer-events: auto;
    top: 0;
    margin-top: 0;
    left: auto;
    right: 15px;
    width: var(--cnvs-page-submenu-trigger);
    height: var(--cnvs-page-submenu-trigger);
    line-height: var(--cnvs-page-submenu-trigger);
    color: #FFF;
}

.page-menu-open #page-menu-trigger {
    background-color: rgba(0, 0, 0, 0.2);
}

.page-menu-row {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.page-menu-title {
    color: #FFF;
    font-size: 1.25rem;
    font-weight: 300;
    margin-right: auto;
}

.page-menu-title span {
    font-weight: 700;
}

.page-menu-nav {
    display: none;
    position: absolute;
    width: 200px;
    top: 100%;
    left: auto;
    right: 0;
    height: auto;
    background-color: var(--cnvs-themecolor);
}

.is-expanded-pagemenu .page-menu-nav {
    display: -ms-flex;
    display: flex;
    position: relative;
    width: auto;
    top: 0;
    left: 0;
    background-color: transparent !important;
    flex: 0 0 auto;
    flex-grow: 0;
}

#page-menu.page-menu-open .page-menu-nav {
    display: block;
}

.page-menu-nav .page-menu-container {
    margin: 0;
    list-style: none;
    background-color: rgba(0, 0, 0, 0.2);
}

.is-expanded-pagemenu .page-menu-nav .page-menu-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    background-color: transparent;
}

.page-menu-item {
    position: relative;
}

.page-menu-item > a {
    display: block;
    position: relative;
    line-height: 22px;
    padding: 11px 14px;
    color: var(--cnvs-white);
    font-size: var(--cnvs-page-submenu-link-size);
}

.is-expanded-pagemenu .page-menu-item > a {
    margin: var(--cnvs-page-submenu-link-marging-y) var(--cnvs-page-submenu-link-marging-x);
    padding-top: 3px;
    padding-bottom: 3px;
    border-radius: var(--cnvs-page-submenu-link-rounded);
    transition: all 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .is-expanded-pagemenu .page-menu-item > a {
        transition: none;
    }
}

.page-menu-item > a .sub-menu-indicator {
    position: absolute;
    top: 50%;
    left: auto;
    right: 14px;
    transform: translateY(-50%);
}

.is-expanded-pagemenu .page-menu-item > a .sub-menu-indicator {
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0.5rem;
    transform: none;
}

.page-menu-item:hover > a, .page-menu-item.current > a {
    background-color: rgba(0, 0, 0, 0.15);
}

.page-menu-sub-menu {
    display: none;
    background-color: rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 1px 10px 5px;
}

.is-expanded-pagemenu .page-menu-sub-menu {
    display: none;
    position: absolute;
    list-style: none;
    width: var(--cnvs-page-submenu-dropdown-width);
    top: 100%;
    left: 0;
    padding: 0;
    background-color: var(--cnvs-themecolor);
}

.page-menu-item:hover > .page-menu-sub-menu {
    display: block;
}

.page-menu-sub-menu .page-menu-item > a {
    margin: 5px 0;
    padding-top: 3px;
    padding-bottom: 3px;
    border-radius: 14px;
}

.is-expanded-pagemenu .page-menu-sub-menu .page-menu-item > a {
    height: auto;
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0.15);
}

.is-expanded-pagemenu .page-menu-sub-menu li:hover a, .is-expanded-pagemenu .page-menu-sub-menu li.current a {
    background-color: rgba(0, 0, 0, 0.3);
}

.is-expanded-pagemenu #page-menu.dots-menu {
    position: fixed;
    top: 50%;
    right: 20px;
    width: 24px;
    line-height: 1.5;
    transform: translateY(-50%);
    z-index: 299;
}

.is-expanded-pagemenu #page-menu.dots-menu #page-menu-wrap {
    position: relative;
    top: 0 !important;
    box-shadow: none;
    background-color: transparent !important;
}

.is-expanded-pagemenu #page-menu.dots-menu .page-menu-wrap-clone {
    display: none;
}

.is-expanded-pagemenu #page-menu.dots-menu .container {
    padding: 0;
}

.is-expanded-pagemenu #page-menu.dots-menu .page-menu-title {
    display: none;
}

.is-expanded-pagemenu #page-menu.dots-menu .page-menu-nav {
    display: block;
    width: 100%;
}

.is-expanded-pagemenu #page-menu.dots-menu .page-menu-container {
    flex-direction: column;
}

.is-expanded-pagemenu #page-menu.dots-menu .page-menu-item {
    width: var(--cnvs-page-dotsmenu-size);
    height: var(--cnvs-page-dotsmenu-size);
    margin: var(--cnvs-page-dotsmenu-gutters) 0;
}

.is-expanded-pagemenu #page-menu.dots-menu .page-menu-item > a {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: var(--cnvs-page-dotsmenu-rounded);
    color: var(--cnvs-contrast-600);
}

.is-expanded-pagemenu #page-menu.dots-menu .page-menu-item > a:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.is-expanded-pagemenu #page-menu.dots-menu .page-menu-item.current > a {
    background-color: var(--cnvs-themecolor);
}

.is-expanded-pagemenu #page-menu.dots-menu .page-menu-item div {
    position: absolute;
    width: auto;
    top: 50%;
    right: 25px;
    background-color: var(--cnvs-themecolor);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFF;
    padding: 6px 14px;
    white-space: nowrap;
    pointer-events: none;
    border-radius: 0.25rem;
    opacity: 0;
    transform: translateY(-50%);
    transition: all 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .is-expanded-pagemenu #page-menu.dots-menu .page-menu-item div {
        transition: none;
    }
}

.is-expanded-pagemenu #page-menu.dots-menu .page-menu-item div::after {
    position: absolute;
    content: "";
    top: 50%;
    left: auto;
    right: -5px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 6px solid var(--cnvs-themecolor);
    transform: translateY(-50%);
}

.is-expanded-pagemenu #page-menu.dots-menu .page-menu-item > a:hover div {
    opacity: 1;
    right: 30px;
}

.is-expanded-pagemenu #page-menu.dots-menu .dots-menu-border .page-menu-item {
    width: 12px;
    height: 12px;
}

.is-expanded-pagemenu #page-menu.dots-menu .dots-menu-border .page-menu-item > a {
    background-color: transparent !important;
    border: 3px solid rgba(0, 0, 0, 0.4);
}

.is-expanded-pagemenu #page-menu.dots-menu .dots-menu-border .page-menu-item > a:hover {
    border-color: rgba(0, 0, 0, 0.7);
}

.is-expanded-pagemenu #page-menu.dots-menu .dots-menu-border .page-menu-item.current > a {
    border-color: var(--cnvs-themecolor);
}

.one-page-arrow {
    position: absolute;
    z-index: 3;
    bottom: 20px;
    left: 50%;
    margin-left: -1rem;
    width: 32px;
    height: 32px;
    font-size: 2rem;
    text-align: center;
    color: #222;
}

@media (max-width: 575.98px) {
    .one-page-arrow {
        display: none !important;
    }
}

.side-push-panel {
    overflow-x: hidden;
}

#side-panel {
    --cnvs-side-panel-bg: var(--cnvs-contrast-100);
    position: fixed;
    top: 0;
    right: calc(-1 * var(--cnvs-side-panel-size));
    z-index: 699;
    width: var(--cnvs-side-panel-size);
    height: 100%;
    background-color: var(--cnvs-side-panel-bg);
    overflow: hidden;
    -webkit-backface-visibility: hidden;
}

.side-panel-left #side-panel {
    left: calc(-1 * var(--cnvs-side-panel-size));
    right: auto;
}

.side-push-panel.stretched #wrapper, .side-push-panel.stretched .sticky-header .container {
    position: relative;
    right: 0;
}

.side-panel-left.side-push-panel.stretched #wrapper, .side-panel-left.side-push-panel.stretched .sticky-header .container {
    left: 0;
    right: auto;
}

#side-panel .side-panel-wrap {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: calc(var(--cnvs-side-panel-size) + 30px);
    height: 100%;
    overflow: auto;
    padding: var(--cnvs-side-panel-padding);
}

.device-touch #side-panel .side-panel-wrap {
    overflow-y: scroll;
}

#side-panel .widget {
    margin-top: var(--cnvs-side-panel-widget-padding);
    padding-top: var(--cnvs-side-panel-widget-padding);
    width: calc(var(--cnvs-side-panel-size) - 80px);
    border-top: 1px solid var(--cnvs-contrast-200);
}

#side-panel .widget:first-child {
    padding-top: 0;
    border-top: 0;
    margin: 0;
}

.side-panel-open #side-panel {
    right: 0;
}

.side-panel-left.side-panel-open #side-panel {
    left: 0;
    right: auto;
}

.side-push-panel.side-panel-open.stretched #wrapper, .side-push-panel.side-panel-open.stretched .sticky-header .container {
    right: var(--cnvs-side-panel-size);
}

.side-push-panel.side-panel-open.stretched.device-xxl .slider-parallax .slider-inner, .side-push-panel.side-panel-open.stretched.device-xl .slider-parallax .slider-inner, .side-push-panel.side-panel-open.stretched.device-lg .slider-parallax .slider-inner {
    left: calc(-1 * var(--cnvs-side-panel-size));
}

.side-panel-left.side-push-panel.side-panel-open.stretched #wrapper, .side-panel-left.side-push-panel.side-panel-open.stretched .sticky-header .container, .side-panel-left.side-push-panel.side-panel-open.stretched .slider-inner {
    left: var(--cnvs-side-panel-size);
    right: auto;
}

#side-panel-trigger {
    display: block;
    cursor: pointer;
    z-index: 11;
    margin-right: 5px;
}

#side-panel-trigger-close a {
    display: none;
}

#side-panel, .side-push-panel.stretched #wrapper, .side-push-panel.stretched #header .container {
    transition: right 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    #side-panel, .side-push-panel.stretched #wrapper, .side-push-panel.stretched #header .container {
        transition: none;
    }
}

.side-panel-left #side-panel, .side-panel-left.side-push-panel.stretched #wrapper, .side-panel-left.side-push-panel.stretched #header .container, .side-push-panel.stretched .slider-inner {
    transition: left 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    .side-panel-left #side-panel, .side-panel-left.side-push-panel.stretched #wrapper, .side-panel-left.side-push-panel.stretched #header .container, .side-push-panel.stretched .slider-inner {
        transition: none;
    }
}

.body-overlay {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    transition: opacity 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .body-overlay {
        transition: none;
    }
}

.side-panel-open .body-overlay {
    opacity: 1;
    z-index: 599;
    pointer-events: auto;
}

.side-panel-open:not(.device-xs):not(.device-sm):not(.device-md) .body-overlay:hover {
    cursor: url("/images/icons/close.png") 15 15, default;
}

:root, .not-dark {
    --cnvs-slider-caption-font-color: var(--cnvs-contrast-800);
    --cnvs-slider-arrows-bg-color: rgba(0, 0, 0, 0.3);
    --cnvs-slider-arrows-bg-hover-color: rgba(0, 0, 0, 0.6);
    --cnvs-slider-arrow-color: var(--bs-gray-100);
    --cnvs-owl-dots-slider-color: #fff;
}

:root {
    --cnvs-fslider-dots-position-top: 14px;
    --cnvs-fslider-dots-position-right: 10px;
    --cnvs-fslider-dots-size: 0.625rem;
    --cnvs-fslider-dots-border-color: #fff;
    --cnvs-fslider-dots-border-radius: 50%;
    --cnvs-fslider-thumbs-gutters: 2px;
    --cnvs-fslider-thumbs-width: 100px;
    --cnvs-canvas-slider-dots-size: 0.625rem;
    --cnvs-slider-pagination-gutters: 4px;
    --cnvs-slider-pagination-rounded: 50%;
    --cnvs-swiper-dots-position-bottom: 20px;
    --cnvs-slider-caption-width: 550px;
    --cnvs-slider-caption-font-size: 1.375rem;
    --cnvs-slider-caption-font-weight: 300;
    --cnvs-slider-caption-transition: top 0.3s ease;
    --cnvs-slider-caption-p-size: 1.5rem;
    --cnvs-slider-caption-offset: 50px;
    --cnvs-slider-caption-bg-light: rgba(255, 255, 255, 0.8);
    --cnvs-slider-caption-bg-dark: rgba(0, 0, 0, 0.6);
    --cnvs-slider-caption-bg-radius: 2px;
    --cnvs-slider-caption-bg-padding: 5px 12px;
    --cnvs-slider-arrows-size: 52px;
    --cnvs-slider-arrows-sm-size: calc(var(--cnvs-slider-arrows-size) - 20px);
    --cnvs-slider-arrows-border-radius: 0.25rem;
    --cnvs-slider-arrow-sm-offset: 20px;
    --cnvs-owl-dots-slider-position: top auto bottom 15px;
}

.fslider, .fslider .flexslider, .fslider .slider-wrap, .fslider .slide, .fslider .slide > a, .fslider .slide > img, .fslider .slide > a > img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
}

.fslider.h-100 .flexslider, .fslider.h-100 .flex-viewport, .fslider.h-100 .slider-wrap, .fslider.h-100 .slide, .fslider.h-100 .slide > a, .fslider.h-100 .slide > a > img {
    height: 100% !important;
}

.fslider.h-100 .slide > a > img {
    -o-object-fit: cover;
    object-fit: cover;
}

.fslider {
    min-height: 32px;
}

.flex-container a:active, .flexslider a:active, .flex-container a:focus, .flexslider a:focus {
    outline: none;
    border: none;
}

.slider-wrap, .flex-control-nav, .flex-direction-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    border: none;
}

.flexslider {
    position: relative;
    margin: 0;
    padding: 0;
}

.flexslider .slider-wrap > .slide {
    display: none;
    -webkit-backface-visibility: hidden;
}

.flexslider .slider-wrap img {
    width: 100%;
    display: block;
}

.flex-pauseplay span {
    text-transform: capitalize;
}

.slider-wrap::after {
    content: " ";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

html[xmlns] .slider-wrap {
    display: block;
}

* html .slider-wrap {
    height: 1%;
}

.no-js .slider-wrap > .slide:first-child {
    display: block;
}

.flex-viewport {
    max-height: 2000px;
    transition: all 1s ease;
}

@media (prefers-reduced-motion: reduce) {
    .flex-viewport {
        transition: none;
    }
}

.slider-element {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-parallax {
    position: relative;
}

.slider-parallax, .slider-parallax .swiper {
    visibility: visible;
    -webkit-backface-visibility: hidden;
}

.slider-inner {
    position: absolute;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.slider-parallax .slider-inner {
    position: fixed;
}

.h-auto:not(.slider-parallax) .slider-inner, .h-auto .swiper, .min-vh-0:not(.slider-parallax) .slider-inner, .min-vh-0 .swiper {
    position: relative !important;
    height: auto !important;
}

.slider-parallax-invisible .slider-inner {
    opacity: 0;
    visibility: hidden;
}

@media (min-width: 992px) {
    .h-auto .swiper-wrapper, .min-vh-0 .swiper-wrapper {
        height: 75vh;
    }
}

.slider-inner.slider-inner-relative {
    position: relative !important;
    height: auto !important;
}

.device-touch .slider-parallax .slider-inner {
    position: relative;
}

body:not(.side-header) .slider-parallax .slider-inner {
    left: 0;
}

body:not(.stretched) .slider-parallax .slider-inner {
    left: auto;
}

.slider-parallax .slider-inner, .slider-parallax .slider-caption {
    will-change: transform;
    backface-visibility: hidden;
    transition: transform 0s cubic-bezier(0.14, 0.15, 0.13, 0.99);
}

@media (prefers-reduced-motion: reduce) {
    .slider-parallax .slider-inner, .slider-parallax .slider-caption {
        transition: none;
    }
}

.scroll-detect .slider-inner {
    transform: translate3d(0px, calc(400px * var(--cnvs-scroll-end)), 0px);
    backface-visibility: hidden;
    will-change: transform;
}

.scroll-detect .slider-caption {
    transform: translate3d(0px, calc(100px * var(--cnvs-scroll-end)), 0px);
    backface-visibility: hidden;
    opacity: calc(1 * var(--cnvs-scroll-ratio));
    will-change: transform;
}

@media (max-width: 991.98px) {
    #slider {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
    }

    #slider .slider-inner {
        position: relative;
        display: flex;
        flex-grow: 1;
        align-items: center;
    }
}

.boxed-slider {
    padding-top: 40px;
}

.swiper_wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.full-screen .swiper_wrapper {
    height: auto;
}

.swiper_wrapper .swiper {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
}

.swiper_wrapper .swiper-slide {
    position: relative;
    margin: 0;
    overflow: hidden;
}

.swiper_wrapper .swiper-slide [data-caption-animate] {
    -webkit-backface-visibility: hidden;
}

.swiper-slide-bg {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.slider-element .video-wrap, .section .video-wrap, .swiper-slide .yt-bg-player, .section .yt-bg-player, .swiper-slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}

.yt-bg-player .inlinePlayButton, .yt-bg-player .loading {
    display: none !important;
}

.slider-element .container, .slider-element .container-fluid, .slider-element .container-sm, .slider-element .container-md, .slider-element .container-lg, .slider-element .container-xl, .slider-element .container-xxl {
    position: relative;
    height: 100%;
}

.slider-element.canvas-slider .swiper-slide img {
    width: 100%;
}

.slider-element.canvas-slider a {
    display: block;
    height: 100%;
}

.swiper-pagination {
    position: absolute;
    width: 100%;
    z-index: 20;
    margin: 0;
    top: auto;
    bottom: var(--cnvs-swiper-dots-position-bottom) !important;
    text-align: center;
    line-height: 1;
}

.swiper-pagination span {
    display: inline-block;
    cursor: pointer;
    width: var(--cnvs-canvas-slider-dots-size);
    height: var(--cnvs-canvas-slider-dots-size);
    margin: 0 var(--cnvs-slider-pagination-gutters);
    opacity: 1;
    background-color: transparent;
    border: 1px solid var(--cnvs-slider-arrow-color);
    border-radius: var(--cnvs-slider-pagination-rounded);
    transition: all 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .swiper-pagination span {
        transition: none;
    }
}

.swiper-pagination span:hover, .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: var(--cnvs-slider-arrow-color) !important;
}

.video-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.video-wrap video {
    position: relative;
    z-index: 1;
    opacity: 1;
    width: 100%;
    transition: opacity 0.3s 1s ease;
}

@media (prefers-reduced-motion: reduce) {
    .video-wrap video {
        transition: none;
    }
}

body:not(.has-plugin-html5video) .video-wrap video {
    opacity: 0;
}

.video-overlay, .video-placeholder {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    background: transparent url("/images/grid.png") repeat;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}

.video-placeholder {
    z-index: 4;
    background-repeat: no-repeat !important;
}

.slider-caption, .flex-caption {
    --cnvs-slider-caption-font-color: var(--cnvs-contrast-800);
    position: relative;
    display: flex;
    height: 100%;
    flex-flow: column;
    justify-content: center;
    z-index: 20;
    max-width: var(--cnvs-slider-caption-width);
    color: var(--cnvs-slider-caption-font-color);
    font-size: var(--cnvs-slider-caption-font-weight);
    font-weight: var(--cnvs-slider-caption-font-weight);
    transition: top 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .slider-caption, .flex-caption {
        transition: none;
    }
}

.slider-caption h2, .slider-caption .h2 {
    color: var(--cnvs-slider-caption-font-color);
    text-shadow: none;
}

.slider-caption h2, .slider-caption .h2 {
    font-size: 4.5rem;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .slider-caption h2, .slider-caption .h2 {
        font-size: 5.5vw;
    }
}

.slider-caption p {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: var(--cnvs-slider-caption-p-size);
}

@media (max-width: 767.98px) {
    .slider-caption p {
        font-size: 2.6vw;
    }
}

.slider-caption.slider-caption-right {
    margin-left: auto;
}

.slider-caption.slider-caption-center {
    position: relative;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.slider-caption-bg {
    padding: var(--cnvs-slider-caption-bg-padding);
    border-radius: var(--cnvs-slider-caption-bg-radius);
    background-color: var(--cnvs- slider-caption-bg-dark);
    top: auto;
    bottom: var(--cnvs-slider-caption-offset);
    left: var(--cnvs-slider-caption-offset);
}

.slider-caption-bg.slider-caption-bg-light {
    background-color: var(--cnvs-slider-caption-bg-light);
    color: var(--cnvs-contrast-900);
    font-weight: 400;
    text-shadow: none;
}

.slider-caption-top-left {
    top: var(--cnvs-slider-caption-offset);
    bottom: auto;
}

.slider-caption-top-right {
    top: var(--cnvs-slider-caption-offset);
    bottom: auto;
    left: auto;
    right: var(--cnvs-slider-caption-offset);
}

.slider-caption-bottom-right {
    left: auto;
    right: var(--cnvs-slider-caption-offset);
}

.slider-element .owl-carousel {
    margin: 0;
}

.slider-arrow-left, .slider-arrow-right, .flex-prev, .flex-next, .slider-arrow-top-sm, .slider-arrow-bottom-sm {
    position: absolute;
    cursor: pointer;
    z-index: 10;
    top: 50%;
    left: 0;
    background-color: var(--cnvs-slider-arrows-bg-color);
    width: var(--cnvs-slider-arrows-size);
    height: var(--cnvs-slider-arrows-size);
    border: 0;
    border-radius: 0 var(--cnvs-slider-arrows-border-radius) var(--cnvs-slider-arrows-border-radius) 0;
    transform: translateY(-50%);
    transition: background-color 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .slider-arrow-left, .slider-arrow-right, .flex-prev, .flex-next, .slider-arrow-top-sm, .slider-arrow-bottom-sm {
        transition: none;
    }
}

.slider-arrow-top-sm, .slider-arrow-bottom-sm {
    top: auto;
    bottom: 57px;
    left: auto;
    right: var(--cnvs-slider-arrow-sm-offset);
    margin: 0;
    width: var(--cnvs-slider-arrows-sm-size);
    height: var(--cnvs-slider-arrows-sm-size);
    border-radius: var(--cnvs-slider-arrows-border-radius) var(--cnvs-slider-arrows-border-radius) 0 0;
}

.slider-arrow-bottom-sm {
    bottom: var(--cnvs-slider-arrow-sm-offset);
    border-radius: 0 0 var(--cnvs-slider-arrows-border-radius) var(--cnvs-slider-arrows-border-radius);
}

.fslider[data-thumbs=true] .flex-prev, .fslider[data-thumbs=true] .flex-next {
    margin-top: calc(-1 * var(--cnvs-slider-arrow-sm-offset));
}

.slider-arrow-right, .slider-element .owl-next, .flex-next {
    left: auto;
    right: 0;
    border-radius: var(--cnvs-slider-arrows-border-radius) 0 0 var(--cnvs-slider-arrows-border-radius);
}

.slider-arrow-left i, .slider-arrow-right i, .flex-prev i, .flex-next i, .slider-arrow-top-sm i, .slider-arrow-bottom-sm i {
    line-height: var(--cnvs-slider-arrows-size);
    width: 100%;
    height: 100%;
    color: var(--cnvs-slider-arrow-color);
    font-size: calc(var(--cnvs-slider-arrows-size) / 1.75);
    text-align: center;
    transition: color 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .slider-arrow-left i, .slider-arrow-right i, .flex-prev i, .flex-next i, .slider-arrow-top-sm i, .slider-arrow-bottom-sm i {
        transition: none;
    }
}

.slider-arrow-top-sm i, .slider-arrow-bottom-sm i {
    width: var(--cnvs-slider-arrows-sm-size);
    height: var(--cnvs-slider-arrows-sm-size);
    margin: 0;
    line-height: calc(var(--cnvs-slider-arrows-sm-size) - 2px);
    font-size: 18px;
    color: var(--cnvs-owl-dots-slider-color);
}

.slider-element .owl-prev i {
    margin-left: 0;
}

.slider-element .owl-next i {
    margin-right: 4px;
}



.slide-number {
    position: absolute;
    opacity: 0;
    top: auto;
    right: 20px;
    bottom: 20px;
    z-index: 20;
    width: 36px;
    height: 40px;
    text-align: center;
    color: rgba(var(--cnvs-invert-contrast-rgb), 0.8);
    font-size: 1.125rem;
    font-weight: 300;
    transition: all 0.3s linear;
}

@media (prefers-reduced-motion: reduce) {
    .slide-number {
        transition: none;
    }
}

.slider-element:hover .slide-number {
    opacity: 1;
}

.slide-number-current, .slide-number-total {
    position: absolute;
    line-height: 1;
    top: 5px;
    left: 0;
}

.slide-number-total {
    top: auto;
    bottom: 5px;
    left: auto;
    right: 0;
}

.slide-number span {
    display: block;
    font-size: 32px;
    line-height: 40px;
}

.slider-element .owl-dots {
    position: absolute;
    width: 100%;
    z-index: 20;
    margin: 0;
    top: auto;
    bottom: 15px;
}

.slider-element .owl-dots button {
    width: var(--cnvs-canvas-slider-dots-size);
    height: var(--cnvs-canvas-slider-dots-size);
    margin: 0 var(--cnvs-slider-pagination-gutters);
    opacity: 1 !important;
    background-color: transparent !important;
    border: var(--cnvs-owl-nav-border) !important;
}

.slider-element .owl-dots .owl-dot.active, .slider-element .owl-dots .owl-dot:hover {
    background-color: var(--cnvs-owl-nav-background) !important;
}

.nav-offset .flex-prev, .nav-offset .flex-next {
    border-radius: 3px;
}

.nav-offset .flex-prev {
    left: 20px;
}

.nav-offset .flex-next {
    right: 20px;
}

.nav-circle .flex-prev, .nav-circle .flex-next {
    border-radius: 50%;
}

.nav-solid .flex-prev, .nav-solid .flex-next {
    opacity: 1;
    background-color: var(--cnvs-slider-arrow-color);
}

.nav-solid .flex-prev:hover, .nav-solid .flex-next:hover {
    background-color: #333 !important;
}

.nav-solid .flex-prev:not(:hover) i, .nav-solid .flex-next:not(:hover) i {
    color: #444;
    text-shadow: none;
}

.nav-size-sm .flex-prev, .nav-size-sm .flex-next {
    width: var(--cnvs-slider-arrows-sm-size);
    height: var(--cnvs-slider-arrows-sm-size);
}

.nav-size-sm .flex-prev i, .nav-size-sm .flex-next i {
    line-height: var(--cnvs-slider-arrows-sm-size);
    font-size: 1.5rem;
}

.fslider[class * =nav-pos-] .flex-prev, .fslider[class * =nav-pos-] .flex-next {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 5px;
    transform: none;
}

.fslider.nav-size-sm[class * =nav-pos-] .flex-prev, .fslider.nav-size-sm[class * =nav-pos-] .flex-next {
    margin: 0 3px;
}

.fslider[class * =nav-pos-] .flex-direction-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
}

.nav-pos-top .flex-direction-nav, .nav-pos-top-left .flex-direction-nav, .nav-pos-top-right .flex-direction-nav {
    top: 20px;
    left: 0;
}

.nav-pos-bottom .flex-direction-nav, .nav-pos-bottom-left .flex-direction-nav, .nav-pos-bottom-right .flex-direction-nav {
    top: auto;
    bottom: 20px;
}

.nav-pos-top-left .flex-direction-nav, .nav-pos-bottom-left .flex-direction-nav {
    width: auto !important;
    left: 16px;
}

.nav-pos-top-right .flex-direction-nav, .nav-pos-bottom-right .flex-direction-nav {
    width: auto !important;
    left: auto;
    right: 16px;
}

.fslider[data-animation=fade][data-thumbs=true] .flexslider, .fslider.testimonial[data-animation=fade] .flexslider {
    height: auto !important;
}

.flex-control-nav {
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    width: auto;
    z-index: 10;
    text-align: center;
    top: var(--cnvs-fslider-dots-position-top);
    right: var(--cnvs-fslider-dots-position-right);
    margin: 0;
}

.flex-control-nav li {
    display: block;
    margin: 0 var(--cnvs-slider-pagination-gutters);
    width: var(--cnvs-fslider-dots-size);
    height: var(--cnvs-fslider-dots-size);
}

.flex-control-nav li a {
    display: block;
    cursor: pointer;
    text-indent: -9999px;
    width: 100% !important;
    height: 100% !important;
    border: 1px solid var(--cnvs-fslider-dots-border-color);
    color: transparent;
    border-radius: var(--cnvs-fslider-dots-border-radius);
    transition: 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .flex-control-nav li a {
        transition: none;
    }
}

.flex-control-nav li:hover a, .flex-control-nav li a.flex-active {
    background-color: var(--cnvs-fslider-dots-border-color);
}

.control-solid .flex-control-nav li a {
    border: none;
    background-color: var(--cnvs-fslider-dots-border-color);
}

.control-solid .flex-control-nav li:hover a, .control-solid .flex-control-nav li a.flex-active {
    background-color: var(--cnvs-themecolor);
}

.control-square .flex-control-nav li a {
    border-radius: 3px;
}

.control-diamond .flex-control-nav li a {
    border-radius: 3px;
    transform: rotate(45deg);
}

.control-offset-lg .flex-control-nav {
    top: calc(var(--cnvs-fslider-dots-position-top10));
    right: calc(var(--cnvs-fslider-dots-position-right10));
}

.control-pos-top-left .flex-control-nav, .control-pos-bottom-left .flex-control-nav {
    left: var(--cnvs-fslider-dots-position-right);
    right: auto;
}

.control-offset-lg.control-pos-top-left .flex-control-nav, .control-offset-lg.control-pos-bottom-left .flex-control-nav {
    left: calc(var(--cnvs-fslider-dots-position-right10));
}

.control-pos-bottom-right .flex-control-nav, .control-pos-bottom-left .flex-control-nav, .control-pos-bottom .flex-control-nav, .control-pos-bottom .flex-control-nav {
    top: auto;
    bottom: var(--cnvs-fslider-dots-position-top);
}

.control-offset-lg.control-pos-bottom-right .flex-control-nav, .control-offset-lg.control-pos-bottom-left .flex-control-nav, .control-offset-lg.control-pos-bottom .flex-control-nav, .control-offset-lg.control-pos-bottom .flex-control-nav {
    bottom: calc(var(--cnvs-fslider-dots-position-top10));
}

.control-pos-bottom .flex-control-nav, .control-pos-bottom .flex-control-nav, .control-pos-top .flex-control-nav, .control-pos-top .flex-control-nav {
    width: 100%;
    right: 0;
}

.control-size-lg .flex-control-nav li {
    width: 0.9325rem;
    height: 0.9325rem;
    margin: 0 5px;
}

.flex-control-nav.flex-control-thumbs {
    position: relative;
    justify-content: left;
    top: 0;
    left: 0;
    right: 0;
    margin: var(--cnvs-fslider-thumbs-gutters) calc(-1 * var(--cnvs-fslider-thumbs-gutters)) calc(-1 * var(--cnvs-fslider-thumbs-gutters)) 0;
    height: auto;
}

.flex-control-nav.flex-control-thumbs li {
    margin: 0 var(--cnvs-fslider-thumbs-gutters) var(--cnvs-fslider-thumbs-gutters) 0;
}

.flex-control-nav.flex-control-thumbs li img {
    cursor: pointer;
    text-indent: -9999px;
    border: 0;
    border-radius: 0;
    margin: 0;
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .flex-control-nav.flex-control-thumbs li img {
        transition: none;
    }
}

.flex-control-nav.flex-control-thumbs li, .flex-control-nav.flex-control-thumbs li img {
    display: block;
    width: var(--cnvs-fslider-thumbs-width) !important;
    height: auto !important;
}

.flex-control-nav.flex-control-thumbs li:hover img, .flex-control-nav.flex-control-thumbs li img.flex-active {
    border-width: 0;
    opacity: 1;
}

.fslider.flex-thumb-grid .flex-control-nav.flex-control-thumbs {
    margin: var(--cnvs-fslider-thumbs-gutters) calc(-1 * var(--cnvs-fslider-thumbs-gutters)) calc(-1 * var(--cnvs-fslider-thumbs-gutters)) 0;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}

.fslider.flex-thumb-grid .flex-control-nav.flex-control-thumbs li {
    flex-shrink: 0;
    flex: 0 0 auto;
    max-width: 100%;
    height: auto !important;
    margin: 0;
    padding: 0 var(--cnvs-fslider-thumbs-gutters) var(--cnvs-fslider-thumbs-gutters) 0;
}

.fslider.flex-thumb-grid .flex-control-nav.flex-control-thumbs li {
    width: 25% !important;
}

.fslider.flex-thumb-grid.grid-3 .flex-control-nav.flex-control-thumbs li {
    width: 33.3333333333% !important;
}

.fslider.flex-thumb-grid.grid-5 .flex-control-nav.flex-control-thumbs li {
    width: 20% !important;
}

.fslider.flex-thumb-grid.grid-6 .flex-control-nav.flex-control-thumbs li {
    width: 16.6666666667% !important;
}

.fslider.flex-thumb-grid.grid-8 .flex-control-nav.flex-control-thumbs li {
    width: 12.5% !important;
}

.fslider.flex-thumb-grid.grid-10 .flex-control-nav.flex-control-thumbs li {
    width: 10% !important;
}

.fslider.flex-thumb-grid.grid-12 .flex-control-nav.flex-control-thumbs li {
    width: 8.3333333333% !important;
}

.fslider.flex-thumb-grid .flex-control-nav.flex-control-thumbs li img {
    width: 100% !important;
    height: auto !important;
}

:root, .not-dark {
    --cnvs-page-title-bg: var(--cnvs-contrast-bg-offset);
    --cnvs-page-title-color: var(--cnvs-contrast-900);
    --cnvs-page-title-border-color: rgba(var(--cnvs-contrast-rgb), 0.1);
}

#page-title, .page-title {
    --cnvs-page-title-padding: 4rem;
    --cnvs-page-title-parallax-padding: 6.25rem;
    --cnvs-page-title-mini-padding: 1.5rem;
    --cnvs-page-title-bg: var(--cnvs-contrast-bg-offset);
    --cnvs-page-title-color: var(--cnvs-contrast-900);
    --cnvs-page-title-font-size: 2.25rem;
    --cnvs-page-title-font-weight: 500;
    --cnvs-page-title-spacing: 0;
    --cnvs-page-title-subtitle-size: 1.125rem;
    --cnvs-page-title-parallax-font-size: calc(2rem + 1vw);
    --cnvs-page-title-parallax-subtitle-size: 1.25rem;
    --cnvs-page-title-mini-size: 1.25rem;
    --cnvs-page-title-border-color: rgba(var(--cnvs-contrast-rgb), 0.1);
    --cnvs-page-title-center-mx-width: 48rem;
    position: relative;
    padding: var(--cnvs-page-title-padding) 0;
    background-color: var(--cnvs-page-title-bg);
    border-bottom: 1px solid var(--cnvs-page-title-border-color);
}

@media (max-width: 767.98px) {
    #page-title, .page-title {
        --cnvs-page-title-padding: 3rem;
        text-align: center;
    }
}

.page-title-row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .page-title-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: end;
    }
}

.page-title-content {
    text-align: center;
}

@media (min-width: 768px) {
    .page-title-content {
        text-align: left;
    }
}

.page-title-content h1, .page-title-content .h1 {
    padding: 0;
    margin: 0;
    line-height: 1;
    font-weight: var(--cnvs-page-title-font-weight);
    color: var(--cnvs-page-title-color);
    font-size: var(--cnvs-page-title-font-size);
    letter-spacing: var(--cnvs-page-title-spacing);
}

@media (max-width: 767.98px) {
    .page-title-content h1, .page-title-content .h1 {
        font-size: calc(1.5rem + 1.25vw);
        line-height: 1.5;
    }
}

.page-title-content span {
    display: block;
    margin-top: 1rem;
    color: var(--cnvs-contrast-600);
    font-size: var(--cnvs-page-title-subtitle-size);
}

.breadcrumb {
    position: relative;
    margin: 1.5rem 0 0;
    justify-content: center;
    font-size: 90%;
}

.breadcrumb a {
    color: var(--cnvs-contrast-700);
}

.breadcrumb a:hover {
    color: var(--cnvs-themecolor);
}

.breadcrumb i {
    width: auto !important;
}

@media (min-width: 768px) {
    .breadcrumb {
        margin: 0;
        justify-content: flex-start;
    }
}

.page-title {
}

@media (min-width: 768px) {
    .page-title-right .page-title-row {
        flex-direction: row-reverse;
    }

    .page-title-right .page-title-content {
        text-align: right;
    }
}

.page-title-center .page-title-row {
    flex-direction: column;
    align-items: center;
}

.page-title-center .page-title-content {
    text-align: center;
}

.page-title-center .breadcrumb {
    margin-top: 2rem;
}

.page-title-pattern {
    background-image: url("/images/pattern.png");
    background-repeat: repeat;
    background-attachment: fixed;
}

.page-title-parallax {
    --cnvs-page-title-padding: var(--cnvs-page-title-parallax-padding);
    --cnvs-page-title-font-size: var(--cnvs-page-title-parallax-font-size);
    --cnvs-page-title-font-weight: 500;
}

.page-title-parallax .container {
    position: relative;
    z-index: 2;
}

.page-title-parallax span {
    font-size: var(--cnvs-page-title-parallax-subtitle-size);
}

@media (max-width: 767.98px) {
    .page-title-parallax span {
        font-size: 1rem;
    }
}

.page-title-parallax .breadcrumb {
    font-size: 0.875rem;
}

.page-title-mini {
    --cnvs-page-title-color: var(--cnvs-contrast-900);
    --cnvs-page-title-padding: var(--cnvs-page-title-mini-padding);
    --cnvs-page-title-font-size: var(--cnvs-page-title-mini-size);
    --cnvs-page-title-font-weight: 600;
}

@media (max-width: 767.98px) {
    .page-title-mini {
        --cnvs-page-title-padding: 2rem;
    }

    .page-title-mini h1, .page-title-mini .h1 {
        font-size: var(--cnvs-page-title-mini-size);
    }

    .page-title-mini .breadcrumb {
        margin-top: 1rem;
    }
}

.page-title-mini span {
    display: none;
}

.page-title-video {
    background: none;
    position: relative;
    overflow: hidden;
}

.page-title-video .container {
    position: relative;
    z-index: 3;
}

.page-title-video .video-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.page-title-video .video-wrap video {
    width: 100%;
}

@media (max-width: 767.98px) {
    #page-title #portfolio-navigation, #portfolio-ajax-title #portfolio-navigation {
        position: relative;
        top: 0;
        left: 0;
        margin: 1rem auto 0;
    }
}

#content {
    position: relative;
    background-color: var(--cnvs-body-bg);
}

.content-wrap {
    position: relative;
    padding: var(--cnvs-content-padding) 0;
    overflow: hidden;
}

.content-wrap .container {
    position: relative;
}

.content-wrap p {
    line-height: var(--cnvs-line-height-content);
}

.grid-container, .grid-inner {
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.grid-inner {
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.grid-container {
    transition: height 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    .grid-container {
        transition: none;
    }
}

:root, .not-dark {
    --cnvs-grid-filter-border-color: rgba(var(--cnvs-contrast-rgb), 0.1);
    --cnvs-portfolio-meta-color: var(--cnvs-contrast-600);
    --cnvs-portfolio-meta-row-1-color: var(--cnvs-heading-color);
}

.grid-filter-wrap, .grid-filter {
    --cnvs-grid-filter-mb: 3.5rem;
    --cnvs-grid-filter-border: 1px;
    --cnvs-grid-filter-border-color: rgba(var(--cnvs-contrast-rgb), 0.1);
    --cnvs-grid-filter-border-radius: 0.25rem;
    --cnvs-grid-filter-item-padding-x: 1.25rem;
    --cnvs-grid-filter-item-padding-y: 0.75rem;
    --cnvs-grid-filter-item-font-size: 0.9375rem;
    --cnvs-grid-filter-col-sm: 3;
    --cnvs-grid-filter-col-xs: 2;
    --cnvs-grid-filter-styles-m: 0.75rem;
    --cnvs-grid-filter-styles-radius: 1.25rem;
    --cnvs-grid-shuffle-size: 2.5rem;
}

.grid-filter {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--cnvs-grid-filter-mb);
    list-style: none;
}

@media (min-width: 768px) {
    .grid-filter {
        border: var(--cnvs-grid-filter-border) solid var(--cnvs-grid-filter-border-color);
        border-radius: var(--cnvs-grid-filter-border-radius);
    }
}

@media (max-width: 767.98px) {
    .grid-filter {
        width: 100%;
    }
}

.grid-filter-wrap {
    display: flex;
    justify-content: space-between;
}

.grid-filter li {
    position: relative;
    width: calc(100% / var(--cnvs-grid-filter-col-xs));
}

@media (min-width: 576px) {
    .grid-filter li {
        width: calc(100% / var(--cnvs-grid-filter-col-sm));
    }
}

@media (min-width: 768px) {
    .grid-filter li {
        width: auto;
    }
}

.grid-filter li a {
    display: block;
    position: relative;
    padding: var(--cnvs-grid-filter-item-padding-y) var(--cnvs-grid-filter-item-padding-x);
    font-size: var(--cnvs-grid-filter-item-font-size);
    color: var(--cnvs-contrast-600);
    text-align: center;
    border-radius: 2px;
}

@media (min-width: 768px) {
    .grid-filter li a {
        border-left: var(--cnvs-grid-filter-border) solid var(--cnvs-grid-filter-border-color);
        border-radius: 0;
    }

    .bothsidebar .grid-filter li a {
        padding: 12px 14px;
    }
}

.grid-filter li a:hover {
    color: var(--cnvs-themecolor);
}

.grid-filter li.activeFilter a {
    color: #fff;
    font-weight: 600;
    background-color: var(--cnvs-themecolor);
    margin: 0;
}

@media (min-width: 768px) {
    .grid-filter li.activeFilter a {
        margin: -1px 0;
        padding-top: 11px;
        padding-bottom: 11px;
    }

    .bothsidebar .grid-filter li.activeFilter a {
        padding: 13px 18px;
    }
}

@media (min-width: 768px) {
    .grid-filter li:first-child a {
        border-left: none;
        border-radius: var(--cnvs-grid-filter-border-radius) 0 0 var(--cnvs-grid-filter-border-radius);
    }

    .grid-filter li:last-child a {
        border-radius: 0 var(--cnvs-grid-filter-border-radius) var(--cnvs-grid-filter-border-radius) 0;
    }
}

.grid-filter.style-2, .grid-filter.style-3, .grid-filter.style-4, .grid-filter.style-5, .grid-filter.style-6 {
    border: none;
    border-radius: 0;
    margin-bottom: 2.75rem;
}

.grid-filter.style-2 li, .grid-filter.style-3 li, .grid-filter.style-4 li, .grid-filter.style-5 li, .grid-filter.style-6 li {
    margin-bottom: var(--cnvs-grid-filter-styles-m);
}

.grid-filter.style-2 li a, .grid-filter.style-3 li a, .grid-filter.style-4 li a, .grid-filter.style-5 li a, .grid-filter.style-6 li a {
    padding-top: 9px;
    padding-bottom: 9px;
    border-radius: var(--cnvs-grid-filter-styles-radius);
    border: none;
    background-color: transparent;
    margin: 0;
}

.grid-filter.style-2 li.activeFilter a {
    color: #fff !important;
    background-color: var(--cnvs-themecolor);
}

@media (min-width: 768px) {
    .grid-filter.style-2 li:not(:first-child), .grid-filter.style-3 li:not(:first-child) {
        margin-left: var(--cnvs-grid-filter-styles-m);
    }
}

.grid-filter.style-3 li a {
    border: var(--cnvs-grid-filter-border) solid transparent;
}

.grid-filter.style-3 li.activeFilter a {
    color: var(--cnvs-themecolor) !important;
    border-color: var(--cnvs-themecolor);
    background-color: transparent;
}

@media (min-width: 768px) {
    .grid-filter.style-4 li:not(:first-child) {
        margin-left: 2.25rem;
    }
}

.grid-filter.style-4 li a {
    padding: 0.75rem 0;
    border-radius: 0;
}

.grid-filter.style-4 li a::after {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    transition: all 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .grid-filter.style-4 li a::after {
        transition: none;
    }
}

.grid-filter.style-4 li.activeFilter a {
    color: var(--cnvs-contrast-900) !important;
}

.grid-filter.style-4 li.activeFilter a::after {
    width: 100%;
    left: 0%;
    background-color: var(--cnvs-themecolor);
}

@media (min-width: 768px) {
    .grid-filter.style-5 li:not(:first-child) {
        margin-left: 2.25rem;
    }
}

.grid-filter.style-5 li a {
    padding: 0.75rem 0 1rem;
    border-radius: 0;
}

.grid-filter.style-5 li a::after {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .grid-filter.style-5 li a::after {
        transition: none;
    }
}

.grid-filter.style-5 li.activeFilter a {
    color: var(--cnvs-contrast-900) !important;
}

.grid-filter.style-5 li.activeFilter a::after {
    transform: translateX(-50%) scale(1);
    background-color: var(--cnvs-themecolor);
}

.grid-shuffle {
    width: var(--cnvs-grid-shuffle-size);
    height: var(--cnvs-grid-shuffle-size);
    border: var(--cnvs-grid-filter-border) solid var(--cnvs-grid-filter-border-color);
    font-size: calc(var(--cnvs-grid-shuffle-size) / 2.625);
    text-align: center;
    line-height: calc(var(--cnvs-grid-shuffle-size) - var(--cnvs-grid-filter-border) - var(--cnvs-grid-filter-border));
    color: var(--cnvs-contrast-900);
    cursor: pointer;
    transition: all 0.2s linear;
}

@media (prefers-reduced-motion: reduce) {
    .grid-shuffle {
        transition: none;
    }
}

.grid-shuffle:hover {
    background-color: var(--cnvs-themecolor);
    color: #fff;
}

.portfolio, [class * =portfolio-] {
    --cnvs-portfolio-desc-padding-x: 0.375rem;
    --cnvs-portfolio-desc-padding-y: 1.25rem;
    --cnvs-portfolio-desc-title-size: 1.25rem;
    --cnvs-portfolio-modal-padding: 2.5rem;
    --cnvs-portfolio-ajax-height: 96rem;
    --cnvs-portfolio-meta-font-size: 0.875rem;
    --cnvs-portfolio-meta-color: var(--cnvs-contrast-600);
    --cnvs-portfolio-meta-row-1: 150px;
    --cnvs-portfolio-meta-row-1-color: var(--cnvs-heading-color);
    --cnvs-portfolio-meta-icon: 0.875rem;
    --cnvs-portfolio-navigation-size: 1.5rem;
}

.portfolio {
    position: relative;
    transition: height 0.4s linear;
}

.portfolio-item {
    position: relative;
}

.portfolio-reveal .portfolio-item {
    overflow: hidden;
}

.portfolio-item .portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-item .portfolio-image, .portfolio-item .portfolio-image > a, .portfolio-item .portfolio-image img {
    display: block;
    width: 100%;
    height: auto;
}

.portfolio-rounded .portfolio-image {
    border-radius: calc(var(--cnvs-grid-filter-border-radius) + 1);
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .portfolio {
        transition: none;
    }
}

@media (min-width: 768px) {
    .portfolio-reveal .portfolio-image img, .portfolio-reveal .bg-overlay {
        transition: all 0.3s ease-in-out;
    }
}

@media (min-width: 768px) and(prefers-reduced-motion: reduce) {
    .portfolio-reveal .portfolio-image img, .portfolio-reveal .bg-overlay {
        transition: none;
    }
}

.portfolio-desc {
    position: relative;
    z-index: 6;
    padding: var(--cnvs-portfolio-desc-padding-y) var(--cnvs-portfolio-desc-padding-x);
}

.portfolio-desc h3, .portfolio-desc .h3 {
    margin: 0;
    padding: 0;
    font-size: var(--cnvs-portfolio-desc-title-size);
}

.col-md-9 .portfolio-desc h3, .col-md-9 .portfolio-desc .h3 {
    font-size: calc(var(--cnvs-portfolio-desc-title-size) / 1.1111);
}

.portfolio-desc h3 a, .portfolio-desc .h3 a {
    color: var(--cnvs-contrast-900);
}

.portfolio-desc h3 a:hover, .portfolio-desc .h3 a:hover {
    color: var(--cnvs-themecolor);
}

.portfolio-desc span {
    display: block;
}

.col-md-9 .portfolio-desc span {
    font-size: calc(var(--cnvs-portfolio-desc-title-size) / 1.428);
}

.portfolio-desc span, .portfolio-desc span a {
    color: var(--cnvs-contrast-600);
}

.portfolio-desc span a:hover {
    color: var(--cnvs-contrast-900);
}

.desc-lg .portfolio-desc {
    padding: 20px 8px;
}

.desc-lg .portfolio-desc h3, .desc-lg .portfolio-desc .h3 {
    font-size: calc(var(--cnvs-portfolio-desc-title-size) / 0.8333);
}

.desc-lg .portfolio-desc span {
    font-size: 110%;
}

.desc-sm .portfolio-desc {
    padding: var(--cnvs-portfolio-desc-padding-y) var(--cnvs-portfolio-desc-padding-x);
}

.desc-sm .portfolio-desc h3, .desc-sm .portfolio-desc .h3 {
    font-size: calc(var(--cnvs-portfolio-desc-title-size) * 0.8);
}

.desc-sm .portfolio-desc span {
    font-size: 90%;
}

.portfolio.g-0 .portfolio-desc {
    --cnvs-portfolio-desc-padding-x: 15px;
}

.desc-sm.g-0 .portfolio-desc {
    --cnvs-portfolio-desc-padding-x: calc(var(--cnvs-portfolio-desc-padding-x) - 5px);
}

.portfolio-reveal .portfolio-desc {
    position: absolute;
    top: auto;
    bottom: 0;
    width: 100%;
    background-color: var(--cnvs-body-bg);
    transform: translateY(100%);
}

@media (min-width: 768px) {
    .portfolio-reveal .portfolio-desc {
        transition: all 0.3s ease-in-out;
    }
}

@media (min-width: 768px) and(prefers-reduced-motion: reduce) {
    .portfolio-reveal .portfolio-desc {
        transition: none;
    }
}

@media (max-width: 575.98px) {
    .portfolio-reveal .portfolio-desc {
        display: none !important;
    }
}

.portfolio-reveal .portfolio-item:hover .portfolio-desc {
    transform: translateY(0);
    display: none;
}

@media (min-width: 768px) {
    .portfolio-reveal .portfolio-item:hover .portfolio-desc {
        display: block;
    }
}

.portfolio-reveal .portfolio-item:hover .portfolio-image img, .portfolio-reveal .portfolio-item:hover .bg-overlay {
    transform: translateY(0);
}

@media (min-width: 768px) {
    .portfolio-reveal .portfolio-item:hover .portfolio-image img, .portfolio-reveal .portfolio-item:hover .bg-overlay {
        transform: translateY(-15%);
    }
}

.portfolio-parallax .portfolio-image {
    height: 60vh;
    background-attachment: fixed;
}

@media (min-width: 992px) {
    .portfolio-parallax .portfolio-image {
        height: 500px;
    }
}

.portfolio-single-image > a, .portfolio-single-image .slide a, .portfolio-single-image img, .portfolio-single-image iframe, .portfolio-single-image video {
    display: block;
    width: 100%;
}

.portfolio-single-image-full {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin: calc(-1 * var(--cnvs-content-padding)) 0 var(--cnvs-content-padding);
}

.portfolio-single-video {
    height: auto !important;
}

.masonry-thumbs {
    position: relative;
    --bs-gutter-x: calc(1px * 2);
    --bs-gutter-y: calc(1px * 2);
}

.masonry-thumbs > * {
    overflow: hidden;
}

.masonry-gap-lg {
    --bs-gutter-x: calc(1px * 3);
    --bs-gutter-y: calc(1px * 3);
}

.masonry-gap-xl {
    --bs-gutter-x: calc(1px * 5);
    --bs-gutter-y: calc(1px * 5);
}

.masonry-thumbs > * > img, .masonry-thumbs .grid-inner > img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
}

.portfolio-single-content h2, .portfolio-single-content .h2 {
    margin: 0 0 20px;
    padding: 0;
    font-size: var(--cnvs-portfolio-desc-title-size);
    font-weight: 600 !important;
}

.modal-padding {
    --cnvs-portfolio-modal-padding: 2.5rem;
    padding: var(--cnvs-portfolio-modal-padding);
}

.ajax-modal-title {
    background-color: var(--cnvs-contrast-100);
    border-bottom: 1px solid var(--cnvs-contrast-200);
    padding: 25px 40px;
}

.ajax-modal-title h2, .ajax-modal-title .h2 {
    font-size: calc(var(--cnvs-portfolio-desc-title-size) / 0.714);
    margin-bottom: 0;
}

#portfolio-ajax-wrap {
    position: relative;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    #portfolio-ajax-wrap {
        transition: none;
    }
}

#portfolio-ajax-wrap.portfolio-ajax-opened {
    max-height: var(--cnvs-portfolio-ajax-height);
}

#portfolio-ajax-container {
    display: none;
    padding-bottom: 60px;
}

#portfolio-ajax-single {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.portfolio-ajax-opened #portfolio-ajax-single {
    opacity: 1;
    pointer-events: auto;
}

#portfolio-ajax-title h2, #portfolio-ajax-title .h2 {
    font-size: calc(var(--cnvs-portfolio-desc-title-size) / 0.714);
}

.portfolio-ajax-opened ~ .portfolio.grid-container .portfolio-item:not(:hover):not(.portfolio-active) {
    opacity: 0.25;
}

.portfolio-meta, .portfolio-share {
    list-style: none;
    font-size: var(--cnvs-portfolio-meta-font-size);
}

.portfolio-meta li {
    margin: 10px 0;
    color: var(--cnvs-portfolio-meta-color);
}

.portfolio-meta li:first-child {
    margin-top: 0;
}

.portfolio-meta li span {
    display: inline-block;
    width: var(--cnvs-portfolio-meta-row-1);
    font-weight: bold;
    color: var(--cnvs-portfolio-meta-row-1-color);
}

.portfolio-meta li span i {
    position: relative;
    top: 1px;
    width: var(--cnvs-portfolio-meta-icon);
    text-align: center;
    margin-right: calc(var(--cnvs-portfolio-meta-icon) * 0.5);
}

#portfolio-navigation {
    position: absolute;
    top: 50%;
    left: auto;
    right: 10px;
    max-width: calc(var(--cnvs-portfolio-navigation-size) * 4);
    height: var(--cnvs-portfolio-navigation-size);
    margin-top: calc(var(--cnvs-portfolio-navigation-size) * -0.5);
}

.page-title-right #portfolio-navigation {
    left: 10px;
    right: auto;
}

.page-title-center #portfolio-navigation {
    position: relative;
    top: 0;
    left: 0;
    margin: 20px auto 0;
}

#portfolio-navigation a {
    display: block;
    float: left;
    margin-left: calc(var(--cnvs-portfolio-navigation-size) * 0.5);
    width: var(--cnvs-portfolio-navigation-size);
    height: var(--cnvs-portfolio-navigation-size);
    text-align: center;
    color: var(--cnvs-contrast-900);
    transition: color 0.3s linear;
}

@media (prefers-reduced-motion: reduce) {
    #portfolio-navigation a {
        transition: none;
    }
}

#portfolio-navigation a:first-child {
    margin-left: 0;
}

#portfolio-navigation a:hover {
    color: var(--cnvs-themecolor);
}

#portfolio-ajax-show #portfolio-navigation {
    top: 0;
    margin-top: 0;
}

:root, .not-dark {
    --cnvs-post-title-font-color: var(--cnvs-heading-color);
    --cnvs-post-meta-color: var(--cnvs-contrast-600);
    --cnvs-post-entry-link-bg: var(--cnvs-contrast-100);
    --cnvs-post-entry-link-color: var(--cnvs-heading-color);
    --cnvs-post-timeline-border-color: var(--cnvs-contrast-400);
    --cnvs-post-timeline-date-border-color: var(--cnvs-contrast-400);
}

#posts, .posts, .entry, [class * =entry-] {
    --cnvs-post-item-margin: 50px;
    --cnvs-post-image-size: 100%;
    --cnvs-post-image-rounded: 0.25rem;
    --cnvs-post-image-mb: 1.5rem;
    --cnvs-post-sm-image: 64px;
    --cnvs-post-title-font-size: 1.75rem;
    --cnvs-post-title-font-weight: 600;
    --cnvs-post-title-font-spacing: 0;
    --cnvs-post-title-text-transform: none;
    --cnvs-post-title-font-color: var(--cnvs-heading-color);
    --cnvs-post-meta-seperator: ⁞;
    --cnvs-post-meta-seperator-width: 0.25rem;
    --cnvs-post-meta-margin: 1rem;
    --cnvs-post-meta-color: var(--cnvs-contrast-600);
    --cnvs-post-meta-fontsize: 90%;
    --cnvs-post-meta-iconsize: 1rem;
    --cnvs-post-content-margin: 2rem;
    --cnvs-post-entry-link-bg: var(--cnvs-contrast-100);
    --cnvs-post-entry-link-padding: 2rem 0;
    --cnvs-post-entry-link-color: var(--cnvs-heading-color);
    --cnvs-post-entry-link-font-family: var(--cnvs-primary-font);
    --cnvs-post-entry-link-text-transform: none;
    --cnvs-post-entry-link-letter-spacing: 0;
    --cnvs-post-entry-link-font-size: 1.75rem;
    --cnvs-post-entry-link-font-weight: 600;
    --cnvs-post-entry-link-border-radius: 0.25rem;
    position: relative;
}

.entry {
    margin-bottom: var(--cnvs-post-item-margin);
}

.posts-md .entry, .posts-sm .entry {
    margin-bottom: 0;
}

.entry::after {
    content: "";
    position: relative;
    height: 2px;
    margin-top: var(--cnvs-post-item-margin);
    background-color: var(--cnvs-contrast-100);
}

.entry-image {
    margin-bottom: var(--cnvs-post-image-mb);
}

.posts-md .entry-image, .posts-sm .entry-image {
    margin-bottom: 0;
}

.entry-image, .entry-image > a, .entry-image .slide a, .entry-image img {
    display: block;
    position: relative;
    width: var(--cnvs-post-image-size);
    height: auto;
}

.posts-sm .entry-image, .posts-sm .entry-image > a, .posts-sm .entry-image .slide a, .posts-sm .entry-image img {
    --cnvs-post-image-size: var(--cnvs-post-sm-image);
}

.entry-image iframe {
    display: block;
}

.entry-image video {
    display: block;
    width: 100%;
}

.entry-image img {
    border-radius: var(--cnvs-post-image-rounded);
}

.posts-md .entry-image + .entry-title {
    margin-top: 0.875rem;
}

.entry-title h2, .entry-title .h2, .entry-title h3, .entry-title .h3, .entry-title h4, .entry-title .h4 {
    margin: 0;
    font-size: var(--cnvs-post-title-font-size);
    font-weight: var(--cnvs-post-title-font-weight);
    text-transform: var(--cnvs-post-title-text-transform);
    letter-spacing: var(--cnvs-post-title-font-spacing);
}

.entry-title h2 a, .entry-title .h2 a, .entry-title h3 a, .entry-title .h3 a, .entry-title h4 a, .entry-title .h4 a {
    color: var(--cnvs-post-title-font-color);
}

.entry-title h2 a:hover, .entry-title .h2 a:hover, .entry-title h3 a:hover, .entry-title .h3 a:hover, .entry-title h4 a:hover, .entry-title .h4 a:hover {
    color: var(--cnvs-themecolor);
}

.entry-title.title-sm h2, .entry-title.title-sm .h2, .entry-title.title-sm h3, .entry-title.title-sm .h3 {
    --cnvs-post-title-font-size: 1.25rem;
    letter-spacing: 0;
}

.entry-title.title-sm h3, .entry-title.title-sm .h3 {
    --cnvs-post-title-font-size: 1.125rem;
}

.entry-title.title-xs h2, .entry-title.title-xs .h2, .entry-title.title-xs h3, .entry-title.title-xs .h3 {
    --cnvs-post-title-font-size: 1rem;
    letter-spacing: 0;
}

.entry-title h4, .entry-title .h4 {
    --cnvs-post-title-font-size: 0.875rem;
    letter-spacing: 0;
}

.entry-title.nott h2, .entry-title.nott .h2, .entry-title.nott h3, .entry-title.nott .h3, .entry-title h4, .entry-title .h4 {
    text-transform: none;
}

.entry-meta {
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.posts-sm .entry-meta {
    margin-top: 0.25rem;
}

.single-post .entry-meta {
    margin-bottom: 1.5rem;
}

.posts-md .entry-meta, .posts-sm .entry-meta {
    margin-bottom: 0;
}

.entry-meta ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 -0.75rem calc(-1 *(var(--cnvs-post-meta-margin) + var(--cnvs-post-meta-seperator-width)));
    list-style: none;
}

.entry-meta.no-separator ul, .entry-meta ul.flex-column {
    margin-left: 0;
}

.entry-meta ul.flex-column {
    align-items: flex-start;
}

.posts-sm .entry-meta ul {
    margin-bottom: -0.25rem;
}

.entry-meta li {
    font-size: var(--cnvs-post-meta-fontsize);
    margin: 0 var(--cnvs-post-meta-margin) 0.75rem 0;
    color: var(--cnvs-contrast-500);
}

.entry-meta ul.flex-column li {
    margin-left: 0;
}

.posts-sm .entry-meta li {
    margin-bottom: 0.25rem;
}

.entry-meta:not(.no-separator) li::before {
    content: "⁞";
    width: var(--cnvs-post-meta-seperator-width);
    text-align: center;
    display: inline-block;
    margin-right: var(--cnvs-post-meta-margin);
    opacity: 0.5;
}

.entry-meta i {
    position: relative;
    font-size: var(--cnvs-post-meta-iconsize);
    padding-left: 1px;
    margin-right: 0.25rem;
}

.entry-meta a:not(:hover) {
    color: var(--cnvs-post-meta-color);
}

.entry-meta ins {
    font-weight: 700;
    text-decoration: none;
}

.entry-content {
    position: relative;
    margin-top: var(--cnvs-post-content-margin);
}

.single-post .entry-content {
    margin-top: 0;
}

.posts-md .entry-content, .posts-sm .entry-content {
    margin-top: calc(var(--cnvs-post-content-margin) / 1.5);
}

.single-post .entry-content .entry-image {
    max-width: 350px;
}

.entry-link {
    display: block;
    width: 100%;
    background-color: var(--cnvs-post-entry-link-bg);
    padding: var(--cnvs-post-entry-link-padding);
    text-align: center;
    color: var(--cnvs-post-entry-link-color);
    font-family: var(--cnvs-post-entry-link-font-family);
    text-transform: var(--cnvs-post-entry-link-text-transform);
    letter-spacing: var(--cnvs-post-entry-link-letter-spacing);
    font-size: var(--cnvs-post-entry-link-font-size);
    font-weight: var(--cnvs-post-entry-link-font-weight);
    border-radius: var(--cnvs-post-entry-link-border-radius);
    border: 1px solid transparent;
    transition: background-color 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .entry-link {
        transition: none;
    }
}

.entry-link:hover {
    background-color: transparent;
    border-color: var(--cnvs-themecolor);
}

.entry-link span {
    display: block;
    margin-top: 5px;
    font-family: var(--cnvs-secondary-font);
    font-style: italic;
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.875rem;
    color: var(--cnvs-contrast-700);
}

.entry-link:hover span {
    color: var(--cnvs-contrast-500);
}

.entry blockquote {
    margin-bottom: 2rem;
}

.entry blockquote p {
    font-weight: 400;
    font-family: var(--cnvs-secondary-font);
    font-style: italic;
}

.post-grid {
    --cnvs-post-grid-margin: 1.5rem;
}

.post-grid .entry {
    margin-bottom: var(--cnvs-post-grid-margin);
}

.post-grid .entry-title h2, .post-grid .entry-title .h2 {
    --cnvs-post-title-font-size: 1.125rem;
    letter-spacing: 0;
    font-weight: var(--cnvs-post-title-font-weight);
}

.post-grid .entry-link {
    font-size: var(--cnvs-post-entry-link-font-size);
}

.post-grid .entry-link span {
    font-size: 0.875rem;
}

.post-timeline {
    --cnvs-post-timeline-border-style: dashed;
    --cnvs-post-timeline-border-color: var(--cnvs-contrast-400);
    --cnvs-post-timeline-date-size: 0.75rem;
    --cnvs-post-timeline-date-border: 2px;
    --cnvs-post-timeline-date-border-color: var(--cnvs-contrast-400);
}

.entry-timeline {
    display: none;
}

@media (min-width: 992px) {
    .timeline-border {
        position: absolute;
        top: 0;
        left: 50%;
        width: 0;
        border-left: 1px dashed var(--cnvs-contrast-400);
        height: 100%;
        transform: translateX(-50%);
    }

    .postcontent .post-timeline::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 0;
        border-left: 1px dashed var(--cnvs-post-timeline-border-color);
        height: 100%;
    }

    .post-timeline .entry-timeline {
        display: block;
        position: absolute;
        border: var(--cnvs-post-timeline-date-border) solid var(--cnvs-post-timeline-border-color);
        background-color: var(--cnvs-body-bg);
        padding-top: 0;
        text-indent: -9999px;
        top: 40px;
        left: auto;
        right: -6px;
        width: var(--cnvs-post-timeline-date-size);
        height: var(--cnvs-post-timeline-date-size);
        border-radius: 50%;
        font-size: 1.75rem;
        font-weight: bold;
        color: var(--cnvs-contrast-500);
        text-align: center;
        line-height: 1;
        transition: all 0.3s ease-in-out;
    }
}

@media (min-width: 992px) and(prefers-reduced-motion: reduce) {
    .post-timeline .entry-timeline {
        transition: none;
    }
}

@media (min-width: 992px) {
    .post-timeline .entry-timeline .timeline-divider {
        position: absolute;
        top: 50%;
        left: auto;
        right: 15px;
        width: 70px;
        height: 0;
        border-top: 1px dashed var(--cnvs-post-timeline-border-color);
        transition: all 0.3s ease-in-out;
    }
}

@media (min-width: 992px) and(prefers-reduced-motion: reduce) {
    .post-timeline .entry-timeline .timeline-divider {
        transition: none;
    }
}

@media (min-width: 992px) {
    .post-timeline .entry:not(.entry-date-section) {
        padding-right: 85px;
    }

    .post-timeline .entry.alt:not(.entry-date-section) {
        padding-right: inherit;
        padding-left: 85px;
    }

    .post-timeline .alt .entry-timeline {
        right: auto;
        left: -6px;
    }

    .post-timeline .alt .entry-timeline .timeline-divider {
        left: 15px;
        right: auto;
    }

    .post-timeline .entry-timeline span {
        display: block;
        margin-top: 3px;
        font-size: 13px;
        font-weight: normal;
    }

    .post-timeline .entry:hover .entry-timeline, .post-timeline .entry:hover .timeline-divider {
        border-color: var(--cnvs-themecolor);
        color: var(--cnvs-themecolor);
    }
}

.entry.entry-date-section {
    margin: 50px 0 80px;
    text-align: center;
}

.entry.entry-date-section:first-child {
    margin-top: 0;
}

.entry.entry-date-section span {
    display: inline-block;
    width: 250px;
    background-color: var(--cnvs-body-bg);
    border: 2px solid var(--cnvs-contrast-100);
    font-size: 18px;
    line-height: 50px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--cnvs-primary-font);
}

@media (min-width: 992px) {
    .postcontent .post-timeline {
        --cnvs-post-timeline-date-size: 64px;
        --cnvs-post-timeline-date-border: 3px;
    }

    .postcontent .post-timeline::before {
        left: calc(-1 * var(--cnvs-post-timeline-date-size) - var(--cnvs-post-timeline-date-border) - 1px);
        margin-left: 0;
    }

    .postcontent .post-timeline {
        padding-left: 0;
        margin-left: calc(var(--cnvs-post-timeline-date-size) + 36px);
        margin-right: 0 !important;
        overflow: visible;
    }

    .postcontent .post-timeline .entry {
        width: 100% !important;
        padding: 0 !important;
    }

    .postcontent .post-timeline .entry-timeline {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-indent: 0;
        top: 20px;
        left: calc(-1 *(var(--cnvs-post-timeline-date-size) + 36px));
        right: auto;
        font-size: 1.5rem;
    }

    .postcontent .post-timeline .entry-timeline div.timeline-divider {
        top: 50%;
        left: var(--cnvs-post-timeline-date-size);
        width: calc(var(--cnvs-post-timeline-date-size) / 2);
    }
}

.more-link {
    display: inline-block;
    font-family: var(--cnvs-secondary-font);
    font-style: italic;
    text-underline-offset: 0.375rem;
    text-decoration-thickness: 1px;
}

.post-navigation + .line {
    margin-top: var(--cnvs-contrast-900);
}

#comments {
    position: relative;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--cnvs-contrast-100);
}

.commentlist {
    list-style: none;
    padding-bottom: 3rem;
    margin: 0 0 3rem;
    border-bottom: 1px solid var(--cnvs-contrast-100);
}

#reviews .commentlist {
    padding-bottom: 2rem;
    margin: 0 0 1.25rem;
}

.commentlist ul {
    list-style: none;
}

.commentlist li, .commentlist li ul, .commentlist li ul li {
    margin: 2rem 0 0 0;
}

.commentlist ul:first-child {
    margin-top: 0;
}

.commentlist li {
    position: relative;
    margin: 2rem 0 0 2rem;
}

#reviews .commentlist li {
    margin-top: 1.25rem;
}

.comment-wrap {
    position: relative;
    border: 1px solid rgba(var(--cnvs-contrast-rgb), 0.1);
    border-radius: 0.25rem;
    padding: 1.25rem 1.25rem 1.25rem 2rem;
}

.commentlist ul .comment-wrap {
    margin-left: 1.5rem;
    padding-left: 1.25rem;
}

#reviews .comment-wrap {
    border: 0;
    padding: 0.75rem 0 0 2rem;
}

.commentlist > li:first-child, #reviews .commentlist > li:first-child {
    padding-top: 0;
    margin-top: 0;
}

.commentlist li .children {
    margin-top: 0;
}

.commentlist li li .children {
    margin-left: 2rem;
}

.commentlist li .comment-content, .pingback {
    position: relative;
    overflow: hidden;
}

.commentlist li .comment-content p, .pingback p {
    margin: 1.25rem 0 0 0;
}

.commentlist li .comment-content {
    padding: 0 0 0 1rem;
}

.commentlist li .comment-meta {
    float: left;
    margin-right: 0;
    line-height: 1;
}

.comment-avatar {
    position: absolute;
    top: 15px;
    left: -35px;
    padding: 0.25rem;
    background: var(--cnvs-body-bg);
    border: 1px solid var(--cnvs-contrast-200);
    border-radius: 50%;
}

.comment-avatar img {
    display: block;
    border-radius: 50%;
}

.commentlist li .children .comment-avatar {
    left: -25px;
}

.comment-content .comment-author {
    margin-bottom: -0.75rem;
    font-size: 1rem;
    font-weight: bold;
    color: var(--cnvs-contrast-700);
}

.comment-content .comment-author a {
    border: none;
    color: var(--cnvs-contrast-900);
}

.comment-content .comment-author a:hover {
    color: var(--cnvs-themecolor);
}

.comment-content .comment-author span {
    display: block;
}

.comment-content .comment-author span, .comment-content .comment-author span a {
    font-size: 0.75rem;
    font-weight: normal;
    font-family: var(--cnvs-primary-font);
    color: var(--cnvs-contrast-500);
}

.comment-content .comment-author span a:hover {
    color: var(--cnvs-contrast-600);
}

.comment-reply-link, .review-comment-ratings {
    display: block;
    position: absolute;
    top: 0;
    left: auto;
    text-align: center;
    right: 0;
    width: 1rem;
    height: 1rem;
    color: var(--cnvs-contrast-500);
    font-size: 1rem;
    line-height: 1;
}

.review-comment-ratings {
    width: auto;
    color: var(--cnvs-contrast-900);
}

.comment-reply-link:hover {
    color: var(--cnvs-contrast-500);
}

#respond, #respond form {
    margin-bottom: 0;
}

.commentlist li #respond {
    margin: 2rem 0 0;
}

.commentlist li li #respond {
    margin-left: 2rem;
}

#respond p {
    margin: 0.75rem 0 0 0;
}

#respond p:first-child {
    margin-top: 0;
}

#respond label small, #respond label .small {
    color: var(--cnvs-contrast-500);
    font-weight: normal;
}

#respond input[type=text], #respond textarea {
    margin-bottom: 0;
}

.fb-comments, .fb_iframe_widget, .fb-comments > span, .fb_iframe_widget > span, .fb-comments > span > iframe, .fb_iframe_widget > span > iframe {
    display: block !important;
    width: 100% !important;
    margin: 0;
}

img.alignleft, div.alignleft {
    float: left;
    margin: 5px 20px 13px 0;
    max-width: 100%;
}

div.alignleft > img, div.alignnone > img, div.aligncenter > img, div.alignright > img {
    display: block;
    float: none;
}

img.alignnone, img.aligncenter, div.alignnone, div.aligncenter {
    display: block;
    margin: 10px 0;
    float: none;
}

img.aligncenter, div.aligncenter, div.aligncenter img {
    margin-left: auto;
    margin-right: auto;
    clear: both;
}

img.alignright, div.alignright {
    float: right;
    margin: 5px 0 13px 20px;
}

.wp-caption {
    text-align: center;
    margin: 10px 20px 13px 20px;
    font-family: var(--cnvs-body-font), Georgia, "Times New Roman", Times, serif;
    font-style: italic;
}

.wp-caption img, .wp-caption img a {
    display: block;
    margin: 0;
}

p.wp-caption-text {
    display: inline-block;
    margin: 0.75rem 0 0 0;
    padding: 0.25rem 0.75rem;
    background-color: var(--cnvs-contrast-100);
    border-radius: 50px;
}

.wp-smiley {
    max-height: 13px;
    margin: 0 !important;
}

:root, .not-dark {
    --cnvs-cart-quantity-bg: var(--cnvs-contrast-200);
    --cnvs-cart-quantity-color: var(--cnvs-contrast-800);
    --cnvs-cart-quantity-color-hover: var(--cnvs-cart-quantity-color);
    --cnvs-cart-quantity-border-color: rgba(var(--cnvs-contrast-rgb), 0.1);
    --cnvs-cart-quantity-bg-hover: var(--cnvs-contrast-300);
}

.shop {
    position: relative;
}

.product {
    position: relative;
}

.product .product-image {
    position: relative;
    overflow: hidden;
    border-radius: 0.25rem;
}

.product .product-image > a, .product .product-image .slide a, .product .product-image img {
    display: block;
    width: 100%;
}

.product .product-image > a {
    transition: all 0.5s ease;
}

@media (prefers-reduced-motion: reduce) {
    .product .product-image > a {
        transition: none;
    }
}

.product-image > a:nth-of-type(2) {
    opacity: 0;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

.product-image:hover > a:nth-of-type(2) {
    opacity: 1;
    z-index: 2;
}

.product-desc {
    padding: 1rem 0;
}

.product-title {
    margin-bottom: 0.5rem;
}

.product-title h3, .product-title .h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.product-title h3 a, .product-title .h3 a, .single-product .product-title h2 a, .single-product .product-title .h2 a {
    color: var(--cnvs-heading-color);
}

.product-title h3 a:hover, .product-title .h3 a:hover, .single-product .product-title h2 a:hover, .single-product .product-title .h2 a:hover {
    color: var(--cnvs-themecolor);
}

.product-price {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--cnvs-heading-color);
    margin-bottom: 0.25rem;
}

.product-price del {
    font-weight: 400;
    font-size: 90%;
    color: var(--cnvs-contrast-500);
}

.product-price ins {
    text-decoration: none;
    color: var(--cnvs-themecolor);
}

.product-image > .badge, .sale-flash {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 5;
}

.single-product .product {
    width: 100%;
    margin: 0;
}

.shop-quick-view-ajax, .portfolio-ajax-modal {
    position: relative;
    background-color: var(--cnvs-contrast-bg);
    width: auto;
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-ajax-modal {
    max-width: 1000px;
}

.single-product .product-image, .single-product .product-image img {
    height: auto;
}

.single-product .product-title h2, .single-product .product-title .h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.single-product .product-price {
    font-size: 1.5rem;
    color: var(--cnvs-themecolor);
    margin-bottom: 0;
}

.single-product .product-desc .line {
    margin: 20px 0;
}

.quantity {
    --cnvs-cart-quantity-width: 50px;
    --cnvs-cart-quantity-height: 44px;
    --cnvs-cart-quantity-font-size: 1rem;
    --cnvs-cart-quantity-border: 1px;
    --cnvs-cart-quantity-bg: var(--cnvs-contrast-200);
    --cnvs-cart-quantity-color: var(--cnvs-contrast-800);
    --cnvs-cart-quantity-color-hover: var(--cnvs-cart-quantity-color);
    --cnvs-cart-quantity-border-color: rgba(var(--cnvs-contrast-rgb), 0.1);
    --cnvs-cart-quantity-bg-hover: var(--cnvs-contrast-300);
    display: inline-flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin-right: 30px;
}

.quantity input[type=number]::-webkit-inner-spin-button, .quantity input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.quantity .qty {
    width: var(--cnvs-cart-quantity-width);
    height: var(--cnvs-cart-quantity-height);
    line-height: var(--cnvs-cart-quantity-height);
    border: 0;
    border-left: var(--cnvs-cart-quantity-border) solid var(--cnvs-cart-quantity-border-color);
    border-right: var(--cnvs-cart-quantity-border) solid var(--cnvs-cart-quantity-border-color);
    background-color: var(--cnvs-cart-quantity-bg);
    text-align: center;
    margin-bottom: 0;
    font-size: var(--cnvs-cart-quantity-font-size);
    color: var(--cnvs-cart-quantity-color);
}

.quantity .plus, .quantity .minus {
    display: block;
    cursor: pointer;
    border: 0px transparent;
    padding: 0;
    width: calc(var(--cnvs-cart-quantity-width) - var(--cnvs-cart-quantity-border) * 4);
    height: var(--cnvs-cart-quantity-height);
    line-height: var(--cnvs-cart-quantity-height);
    text-align: center;
    background-color: var(--cnvs-cart-quantity-bg);
    color: var(--cnvs-cart-quantity-color);
    font-size: var(--cnvs-cart-quantity-font-size);
    font-weight: bold;
    transition: background-color 0.2s linear;
}

@media (prefers-reduced-motion: reduce) {
    .quantity .plus, .quantity .minus {
        transition: none;
    }
}

.quantity .plus:hover, .quantity .minus:hover {
    background-color: var(--cnvs-cart-quantity-bg-hover);
    color: var(--cnvs-cart-quantity-color-hover);
}

.quantity .qty:focus, .quantity .plus:focus, .quantity .minus:focus {
    box-shadow: none !important;
    outline: 0 !important;
}

.product-meta {
    font-size: 90%;
    color: var(--cnvs-contrast-500);
}

.product-meta > .card-body > span {
    display: inline-block;
    margin: 0 5px;
}

.single-product .fbox-plain.fbox-sm .fbox-icon {
    width: 2.25rem;
}

.single-product .fbox-plain.fbox-sm .fbox-icon i {
    font-size: 1.125rem;
    line-height: 1.5;
}

.cart-border .quantity {
    --cnvs-cart-quantity-bg: transparent;
    --cnvs-cart-quantity-border-color: rgba(var(--cnvs-contrast-rgb), .15);
    --cnvs-cart-quantity-bg-hover: var(--cnvs-contrast-200);
    border: var(--cnvs-cart-quantity-border) solid var(--cnvs-cart-quantity-border-color);
}

.cart-border-2 .quantity {
    --cnvs-cart-quantity-height: 46px;
    --cnvs-cart-quantity-bg-hover: transparent;
    --cnvs-cart-quantity-color-hover: var(--bs-danger);
}

.cart-border.cart-border-2 .qty {
    --cnvs-cart-quantity-width: 25px;
}

.cart-bg-circle .quantity {
    --cnvs-cart-quantity-border: 0px;
    --cnvs-cart-quantity-width: 43px;
    --cnvs-cart-quantity-height: 43px;
    transition: none;
}

.cart .remove {
    font-size: 0.875rem;
    color: #ff0000;
}

.cart .remove:hover {
    color: #000;
}

.cart th {
    padding: 0.75rem 1rem !important;
    font-size: 0.875rem;
    color: var(--cnvs-contrast-700);
}

.cart td {
    padding: 0.75rem 1rem !important;
    vertical-align: middle !important;
    border-color: rgba(var(--cnvs-contrast-rgb), 0.1) !important;
}

.cart-product-thumbnail a {
    display: block;
    width: 68px;
}

.cart-product-thumbnail img {
    display: block;
    width: 64px;
    height: 64px;
    border: 2px solid rgba(var(--cnvs-contrast-rgb), 0.2);
}

.cart-product-thumbnail img:hover {
    border-color: var(--cnvs-themecolor);
}

.cart-product-name a, .product-name a {
    font-weight: 600;
}

.cart-product-name a:not(:hover), .product-name a:not(:hover) {
    color: var(--cnvs-heading-color);
}

.cart-product-price, .cart-product-quantity, .cart-product-subtotal {
    text-align: center !important;
}

.cart-product-quantity .quantity {
    margin: 0;
}

@media (max-width: 575.98px) {
    .cart:not(.cart-totals) thead th {
        display: none;
    }

    .cart:not(.cart-totals) tbody td {
        display: block;
        width: 100%;
        border: 0;
        padding: 0 !important;
        text-align: center;
    }

    .cart:not(.cart-totals) .cart_item {
        display: block;
        position: relative;
        border: 1px solid rgba(var(--cnvs-contrast-rgb), 0.1);
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }

    .cart:not(.cart-totals) .cart_item .cart-product-remove {
        display: block;
        position: absolute;
        top: 1.25rem;
        left: auto;
        right: 1.25rem;
        width: 1.25rem;
        height: 1.25rem;
    }

    .cart:not(.cart-totals) .cart-product-thumbnail, .cart:not(.cart-totals) .cart-product-name, .cart:not(.cart-totals) .cart-product-quantity {
        margin-bottom: 1rem;
    }

    .cart:not(.cart-totals) .cart_item .cart-product-thumbnail a {
        display: inline-block;
    }

    .cart:not(.cart-totals) .cart_item .cart-product-price {
        display: none;
    }

    .cart:not(.cart-totals) .cart_item .cart-product-name a {
        font-size: 1rem;
    }

    .cart:not(.cart-totals) .cart_item .cart-product-subtotal {
        font-size: 1.25rem;
        color: var(--cnvs-themecolor);
    }

    .quantity .qty {
        width: 42px;
    }

    .quantity .qty, .quantity .plus, .quantity .minus {
        font-size: 0.875rem;
    }
}

td.actions {
    padding: 20px 15px !important;
    vertical-align: top !important;
    background-color: var(--cnvs-contrast-100);
}

.single-event .entry-overlay, .parallax .entry-overlay-meta {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    text-align: center;
    font-size: 1.25rem;
    color: var(--cnvs-white);
    z-index: 5;
}

.parallax .entry-overlay, .parallax .entry-overlay-meta {
    background: transparent;
    width: auto;
    text-align: right;
    left: auto;
    right: 30px;
    bottom: 30px;
    left: 0 !important;
    right: 0 !important;
    width: 90%;
    margin: 0 auto;
}

.parallax .entry-overlay-meta {
    padding: 20px;
    font-size: 0.875rem;
    text-align: left;
    right: 38px;
    bottom: 130px;
    width: 368px;
    height: auto;
    line-height: inherit;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 3px;
}

.parallax.overlay-left .entry-overlay, .parallax.overlay-left .entry-overlay-meta {
    right: auto;
    left: 30px;
}

.parallax.overlay-left .entry-overlay-meta {
    left: 38px;
}

.parallax.overlay-center .entry-overlay, .parallax.overlay-center .entry-overlay-meta {
    bottom: 100px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

.parallax.overlay-center .entry-overlay-meta {
    top: 100px;
    bottom: auto;
    margin-left: -184px;
}

.countdown {
    --cnvs-countdown-size: 1.25rem;
    --cnvs-countdown-section: 11px;
    --cnvs-countdown-md-size: 30px;
    --cnvs-countdown-md-section: 0.875rem;
    --cnvs-countdown-lg-size: 44px;
    --cnvs-countdown-lg-section: 18px;
    --cnvs-countdown-border: 1px dotted var(--cnvs-contrast-500);
    --cnvs-countdown-inline-space: 7px;
    --cnvs-countdown-large: 140px;
    position: relative;
    display: block;
}

.countdown-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.countdown-section {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    font-size: var(--cnvs-countdown-section);
    line-height: 1;
    text-align: center;
    border-left: var(--cnvs-countdown-border);
    color: var(--cnvs-contrast-600);
    text-transform: capitalize;
}

.countdown-medium .countdown-section {
    --cnvs-countdown-section: 0.875rem;
}

.countdown-large .countdown-section {
    --cnvs-countdown-section: 1.125rem;
}

.countdown-section:first-child {
    border-left: 0;
}

.countdown-amount {
    display: block;
    font-size: var(--cnvs-countdown-size);
    color: var(--cnvs-contrast-800);
    margin-bottom: 5px;
}

.countdown-medium .countdown-amount {
    --cnvs-countdown-size: var(--cnvs-countdown-md-size);
    margin-bottom: 7px;
}

.countdown-large .countdown-amount {
    --cnvs-countdown-size: var(--cnvs-countdown-lg-size);
    font-weight: 700;
    margin-bottom: 8px;
}

.countdown-descr {
    display: block;
    width: 100%;
}

.countdown.countdown-inline {
    display: inline-block;
}

.countdown.countdown-inline .countdown-row {
    display: inline-block;
    text-align: center;
}

.countdown.countdown-inline .countdown-section {
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    width: auto;
    border: none;
    color: inherit;
    margin-left: var(--cnvs-countdown-inline-space);
    text-transform: inherit;
}

.countdown.countdown-inline .countdown-section:first-child {
    margin-left: 0;
}

.countdown.countdown-inline .countdown-amount {
    display: inline-block;
    font-size: inherit;
    color: inherit;
    font-weight: bold;
    margin: 0 3px 0 0;
}

.countdown.countdown-inline .countdown-descr {
    display: inline-block;
    width: auto;
}

@media (min-width: 768px) {
    .countdown-large.coming-soon .countdown-section {
        border: none;
        padding: 15px;
    }

    .countdown-large.coming-soon .countdown-amount {
        width: var(--cnvs-countdown-large);
        height: var(--cnvs-countdown-large);
        line-height: var(--cnvs-countdown-large);
        margin-left: auto;
        margin-right: auto;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.2);
        margin-bottom: 15px !important;
    }
}

.button {
    --cnvs-btn-padding-x: 1.375rem;
    --cnvs-btn-padding-y: 0.5rem;
    --cnvs-btn-fontsize: 1rem;
    --cnvs-btn-color: var(--cnvs-themecolor);
    --cnvs-btn-color-dark: var(--bs-gray-900);
    --cnvs-btn-color-light: #e9ecef;
    --cnvs-btn-color-hover: var(--cnvs-btn-color-dark);
    --cnvs-btn-lineheight: calc(var(--cnvs-btn-fontsize) * 1.6);
    --cnvs-btn-border-width: 1px;
    --cnvs-btn-icon-margin: 10px;
    --cnvs-btn-icon-margin-offset: 0px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    outline: none;
    white-space: nowrap;
    margin: 5px;
    padding: var(--cnvs-btn-padding-y) var(--cnvs-btn-padding-x);
    font-size: var(--cnvs-btn-fontsize);
    line-height: var(--cnvs-btn-lineheight);
    text-align: center;
    background-color: var(--cnvs-btn-color);
    color: #fff;
    font-weight: 500;
    border: var(--cnvs-btn-border-width) solid transparent;
    transition: all 0.2s ease-in-out;
}

.button[class * =bg-opacity-] {
    --cnvs-btn-color: rgba(var(--cnvs-themecolor-rgb), var(--bs-bg-opacity, 1));
}

.button i {
    position: relative;
    margin-right: calc(var(--cnvs-btn-icon-margin) + var(--cnvs-btn-icon-margin-offset));
    width: 1rem;
    text-align: center;
}

.button.text-end i {
    margin: 0 0 0 calc(var(--cnvs-btn-icon-margin) + var(--cnvs-btn-icon-margin-offset));
}

@media (prefers-reduced-motion: reduce) {
    .button {
        transition: none;
    }
}

.button.button-dark {
    background-color: var(--cnvs-btn-color-dark);
}

.button.button-light {
    --cnvs-btn-color: var(--cnvs-btn-color-light);
    color: var(--cnvs-btn-color-dark);
}

.button:hover {
    background-color: var(--cnvs-btn-color-dark);
    color: #fff;
}

.button.button-dark:hover {
    background-color: var(--cnvs-btn-color);
}

.button.button-mini {
    --cnvs-btn-padding-x: 0.875rem;
    --cnvs-btn-padding-y: 0.25rem;
    --cnvs-btn-fontsize: 0.75rem;
}

.button.button-small {
    --cnvs-btn-padding-x: 1.125rem;
    --cnvs-btn-padding-y: 0.5rem;
    --cnvs-btn-fontsize: 0.875rem;
}

.button.button-large {
    --cnvs-btn-padding-x: 1.625rem;
    --cnvs-btn-padding-y: 0.5rem;
    --cnvs-btn-fontsize: 1.125rem;
}

.button.button-xlarge {
    --cnvs-btn-padding-x: 2.25rem;
    --cnvs-btn-padding-y: 0.625rem;
    --cnvs-btn-fontsize: 1.25rem;
}

.button-desc {
    --cnvs-btn-padding-x: 2.25rem;
    --cnvs-btn-padding-y: 1.5rem;
    --cnvs-btn-fontsize: 1.25rem;
    --cnvs-btn-lineheight: 1;
    text-align: left;
    font-family: var(--cnvs-body-font);
    font-weight: 500;
}

.button-desc span {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    font-family: var(--cnvs-secondary-font);
    text-transform: none;
}

.button-desc i {
    font-size: 3.4285714286rem;
    width: 3.4285714286rem;
    text-align: center;
    margin-right: 12px;
}

.button-desc.text-end i {
    margin: 0 0 0 12px;
}

.button-desc div {
    display: inline-block;
}

.button-rounded {
    border-radius: 0.25rem;
}

.button.button-border {
    --cnvs-btn-border-color: var(--cnvs-btn-color-dark);
    border: var(--cnvs-btn-border-width) solid var(--cnvs-btn-border-color);
    background: transparent;
    color: var(--cnvs-btn-border-color);
}

.button.button-border.button-desc {
    line-height: 1;
}

.button.button-border:not(.button-fill):hover {
    background-color: var(--cnvs-btn-color);
    color: #fff;
    border-color: transparent !important;
}

.button.button-border.button-light {
    --cnvs-btn-border-color: #FFF;
}

.button.button-border.button-light:hover {
    background-color: #fff;
    color: var(--cnvs-btn-color-dark);
}

.button.button-3d {
    border-radius: 0.25rem;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.15);
    transition: none;
}

.button.button-3d:hover {
    background-color: var(--cnvs-btn-color);
    opacity: 0.9;
}

.button.button-reveal {
    padding-left: 28px;
    padding-right: 28px;
    overflow: hidden;
}

.button.button-reveal i {
    display: block;
    position: absolute;
    top: 0;
    left: -32px;
    width: 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.15);
}

.button.button-reveal.button-border i {
    top: -2px;
    height: calc(100% + var(--cnvs-btn-border-width) * 2);
}

.button.button-reveal.text-end i {
    left: auto;
    right: -32px;
}

.button.button-reveal span {
    display: inline-block;
    position: relative;
    left: 0;
}

.button.button-reveal.button-mini {
    padding-left: 17px;
    padding-right: 17px;
}

.button.button-reveal.button-mini i {
    left: -22px;
    width: 22px;
}

.button.button-reveal.button-mini.text-end i {
    left: auto;
    right: -22px;
}

.button.button-reveal.button-mini:hover span {
    left: 11px;
}

.button.button-reveal.button-mini.text-end:hover span {
    left: -11px;
}

.button.button-reveal.button-small {
    padding-left: 20px;
    padding-right: 20px;
}

.button.button-reveal.button-small i {
    left: -26px;
    width: 26px;
}

.button.button-reveal.button-small.text-end i {
    left: auto;
    right: -26px;
}

.button.button-reveal.button-small:hover span {
    left: 13px;
}

.button.button-reveal.button-small.text-end:hover span {
    left: -13px;
}

.button.button-reveal.button-large {
    padding-left: 32px;
    padding-right: 32px;
}

.button.button-reveal.button-large i {
    left: -38px;
    width: 38px;
}

.button.button-reveal.button-large.text-end i {
    left: auto;
    right: -38px;
}

.button.button-reveal.button-large:hover span {
    left: 19px;
}

.button.button-reveal.button-large.text-end:hover span {
    left: -19px;
}

.button.button-reveal.button-xlarge {
    padding-right: 40px;
    padding-left: 40px;
}

.button.button-reveal.button-xlarge i {
    left: -44px;
    width: 44px;
}

.button.button-reveal.button-xlarge.text-end i {
    left: auto;
    right: -44px;
}

.button.button-reveal.button-xlarge:hover span {
    left: 22px;
}

.button.button-reveal.button-xlarge.text-end:hover span {
    left: -22px;
}

.button.button-reveal:hover i {
    left: 0;
}

.button.button-reveal.text-end:hover i {
    left: auto;
    right: 0;
}

.button.button-reveal:hover span {
    left: 16px;
}

.button.button-reveal.text-end:hover span {
    left: -16px;
}

.button.button-reveal.button-light:hover {
    color: var(--cnvs-btn-color-light);
}

.button-reveal i, .button-reveal span {
    transition: left 0.3s ease, right 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .button-reveal i, .button-reveal span {
        transition: none;
    }
}

.button.button-full {
    display: block;
    width: 100%;
    white-space: normal;
    margin: 0;
    height: auto;
    line-height: 1.6;
    padding: 30px 0;
    font-size: 2.14rem;
    font-weight: 300;
    text-transform: none;
    border-radius: 0;
}

.button.button-full.button-light {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.button.button-full.button-light strong {
    border-bottom-color: var(--cnvs-btn-color-dark);
}

.button.button-full.button-light:hover strong {
    border-bottom-color: rgba(var(--cnvs-contrast-rgb), 0.2);
}

.button.button-full strong {
    font-weight: 700;
    border-bottom: 2px solid rgba(var(--cnvs-contrast-rgb), 0.2);
    transition: all 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .button.button-full strong {
        transition: none;
    }
}

.button.button-circle {
    border-radius: 50rem;
}

.button-flat {
    --cnvs-btn-color-flat: var(--cnvs-btn-color);
    position: relative;
    background-color: #FFF;
    overflow: hidden;
    color: var(--cnvs-btn-color-flat);
    border: 0;
}

.button-flat-border {
    border: var(--cnvs-btn-border-width) solid var(--cnvs-btn-color-flat);
}

.button-flat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--cnvs-btn-color-flat);
    opacity: 0.1;
}

.button-flat:hover {
    background-color: var(--cnvs-btn-color);
    color: #FFF;
}

.button-action {
    --cnvs-btn-padding-x: 0 !important;
    --cnvs-btn-action-padding-x: 1rem;
    --cnvs-btn-action-width: 2.625rem;
    --cnvs-btn-action-radius: 50rem;
    --cnvs-btn-action-border: 3px;
    --cnvs-btn-action-border-color: var(--cnvs-themecolor);
    --cnvs-btn-action-transition-speed: .2s;
    --cnvs-btn-action-icon-move: -4px;
    border-radius: var(--cnvs-btn-action-radius);
    border: var(--cnvs-btn-action-border) solid var(--cnvs-btn-action-border-color);
}

.button-action span {
    position: relative;
    display: inline-block;
    padding-right: var(--cnvs-btn-action-padding-x);
    padding-left: calc(var(--cnvs-btn-action-padding-x) + 0.5rem);
    z-index: 1;
    transition: color var(--cnvs-btn-action-transition-speed) ease;
}

.button-action i {
    color: #000;
    width: var(--cnvs-btn-action-width);
    height: 100%;
    margin: 0;
    z-index: 1;
    transition: transform var(--cnvs-btn-action-transition-speed) ease;
}

.button-action::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background-color: #FFF;
    color: #000;
    width: var(--cnvs-btn-action-width);
    height: 100%;
    text-align: center;
    border-radius: var(--cnvs-btn-action-radius);
    transition: width var(--cnvs-btn-action-transition-speed) ease, height var(--cnvs-btn-action-transition-speed) ease;
    will-change: width, height;
}

.button-action:hover {
    background-color: inherit;
}

.button-action:hover::after {
    width: 100%;
}

.button-action:hover i {
    transform: translateX(var(--cnvs-btn-action-icon-move));
}

.button-action:hover span {
    color: #000;
}

.button-action.button-large {
    --cnvs-btn-action-width: 3rem;
}

.button-action.button-xlarge {
    --cnvs-btn-action-border: 4px;
    --cnvs-btn-action-width: 3.5rem;
}

.button-shadow {
    --cnvs-btn-shadow-size: 4px;
    --cnvs-btn-shadow-color: var(--cnvs-btn-color);
    box-shadow: var(--cnvs-btn-shadow-size) var(--cnvs-btn-shadow-size) 0px 0px var(--cnvs-btn-shadow-color);
}

.button-shadow-dark {
    --cnvs-btn-shadow-color: var(--bs-dark);
}

.button-shadow-contrast {
    --cnvs-btn-shadow-color: var(--cnvs-contrast-900);
}

.button-shadow:not(.button-shadow-nohover):hover {
    box-shadow: none;
}

.button-shadow-effect:not(.button-shadow-nohover):hover {
    transform: translate3d(var(--cnvs-btn-shadow-size), var(--cnvs-btn-shadow-size), 0);
}

.button.button-border.button-fill {
    overflow: hidden;
    transform-style: preserve-3d;
    -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
    -webkit-backface-visibility: hidden;
}

.button.button-border.button-fill span {
    position: relative;
}

.button.button-border.button-fill:hover {
    background: transparent !important;
    color: #fff;
}

.button.button-border.button-fill.button-light:hover {
    border-color: var(--cnvs-btn-color-light) !important;
    color: var(--cnvs-btn-color-dark) !important;
}

.button.button-border.button-fill.button-light ::before {
    background-color: var(--cnvs-btn-color-light);
}

.button.button-border.button-fill::before {
    content: "";
    position: absolute;
    background-color: var(--cnvs-contrast-900);
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: all 0.4s ease;
    -webkit-backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .button.button-border.button-fill::before {
        transition: none;
    }
}

.button.button-border.button-fill::before ::before {
    width: 100%;
}

.button.button-border.button-fill.fill-from-right::before {
    left: auto;
    right: 0;
}

.button.button-border.button-fill:hover::before {
    width: 100%;
}

.button.button-border.button-fill.fill-from-top::before, .button.button-border.button-fill.fill-from-bottom::before {
    transition: all 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .button.button-border.button-fill.fill-from-top::before, .button.button-border.button-fill.fill-from-bottom::before {
        transition: none;
    }
}

.button.button-border.button-fill.fill-from-top::before {
    width: 100%;
    height: 0;
}

.button.button-border.button-fill.fill-from-top:hover::before {
    height: 100%;
}

.button.button-border.button-fill.fill-from-bottom::before {
    width: 100%;
    height: 0;
    top: auto;
    bottom: 0;
}

.button.button-border.button-fill.fill-from-bottom:hover::before {
    height: 100%;
}

.button-icon-effect {
    overflow: hidden;
    vertical-align: top;
}

.button-icon-effect i {
    --cnvs-btn-icon-margin-offset: .25rem;
}

.button-icon-effect.button-icon-flip-x i {
    animation: buttonIconSlideBack 0.3s ease;
}

.button-icon-effect.button-icon-flip-x:hover i {
    animation: buttonIconSlideFront 0.5s forwards;
}

@keyframes buttonIconSlideBack {
    0% {
        transform: translateX(0);
    }

    25% {
        opacity: 0;
    }

    26% {
        transform: translateX(-100%);
    }

    27% {
        transform: translateX(100%);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes buttonIconSlideFront {
    0% {
        transform: translateX(0);
    }

    25% {
        opacity: 0;
    }

    26% {
        transform: translateX(100%);
    }

    27% {
        transform: translateX(-100%);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(0);
    }
}

.button-icon-effect.button-icon-flip-y i {
    animation: buttonIconSlideUp 0.3s ease;
}

.button-icon-effect.button-icon-flip-y:hover i {
    animation: buttonIconSlideDown 0.5s forwards;
}

@keyframes buttonIconSlideUp {
    0% {
        transform: translateY(0);
    }

    25% {
        opacity: 0;
    }

    26% {
        transform: translateY(-100%);
    }

    27% {
        transform: translateY(100%);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes buttonIconSlideDown {
    0% {
        transform: translateY(0);
    }

    25% {
        opacity: 0;
    }

    26% {
        transform: translateY(100%);
    }

    27% {
        transform: translateY(-100%);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(0);
    }
}

.button-text-effect {
    overflow: hidden;
    vertical-align: top;
}

.button-text-effect .button-inner {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.button-text-effect .button-inner span {
    transition: all 0.3s cubic-bezier(0.17, 0.75, 0.8, 1);
}

.button-text-effect .button-inner span:nth-child(1) {
    display: inline-block;
    opacity: 1;
}

.button-text-effect .button-inner span:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.button-text-effect:hover span:nth-child(1) {
    opacity: 0;
}

.button-text-effect:hover span:nth-child(2) {
    opacity: 1;
}

.button-text-effect.button-text-flip-x span:nth-child(1) {
    transform: translate(0, 0);
}

.button-text-effect.button-text-flip-x span:nth-child(2) {
    transform: translate(100%, 0);
}

.button-text-effect.button-text-flip-x:hover span:nth-child(1) {
    transform: translate(-100%, 0);
}

.button-text-effect.button-text-flip-x:hover span:nth-child(2) {
    transform: translate(0, 0);
}

.button-text-effect.button-text-flip-y span:nth-child(1) {
    transform: translate(0, 0);
}

.button-text-effect.button-text-flip-y span:nth-child(2) {
    transform: translate(0, 100%);
}

.button-text-effect.button-text-flip-y:hover span:nth-child(1) {
    transform: translate(0, -100%);
}

.button-text-effect.button-text-flip-y:hover span:nth-child(2) {
    transform: translate(0, 0);
}

.button-red {
    --cnvs-btn-color: #c02942;
}

.button-red.button-3d:hover, .button-red.button-reveal:hover, .button-red.button-border:hover {
    --cnvs-btn-color: #c02942 !important;
}

.button-red.button-border.button-fill::before {
    background-color: #c02942;
}

.button-red.button-action {
    --cnvs-btn-action-border-color: #c02942;
}

.button-border.button-red, .button-border.button-light.button-red {
    color: #c02942;
    border-color: #c02942;
}

.button-teal {
    --cnvs-btn-color: #53777a;
}

.button-teal.button-3d:hover, .button-teal.button-reveal:hover, .button-teal.button-border:hover {
    --cnvs-btn-color: #53777a !important;
}

.button-teal.button-border.button-fill::before {
    background-color: #53777a;
}

.button-teal.button-action {
    --cnvs-btn-action-border-color: #53777a;
}

.button-border.button-teal, .button-border.button-light.button-teal {
    color: #53777a;
    border-color: #53777a;
}

.button-yellow {
    --cnvs-btn-color: #ecd078;
}

.button-yellow.button-3d:hover, .button-yellow.button-reveal:hover, .button-yellow.button-border:hover {
    --cnvs-btn-color: #ecd078 !important;
}

.button-yellow.button-border.button-fill::before {
    background-color: #ecd078;
}

.button-yellow.button-action {
    --cnvs-btn-action-border-color: #ecd078;
}

.button-border.button-yellow, .button-border.button-light.button-yellow {
    color: #ecd078;
    border-color: #ecd078;
}

.button-purple {
    --cnvs-btn-color: #5d4157;
}

.button-purple.button-3d:hover, .button-purple.button-reveal:hover, .button-purple.button-border:hover {
    --cnvs-btn-color: #5d4157 !important;
}

.button-purple.button-border.button-fill::before {
    background-color: #5d4157;
}

.button-purple.button-action {
    --cnvs-btn-action-border-color: #5d4157;
}

.button-border.button-purple, .button-border.button-light.button-purple {
    color: #5d4157;
    border-color: #5d4157;
}

.button-pink {
    --cnvs-btn-color: #f89fa1;
}

.button-pink.button-3d:hover, .button-pink.button-reveal:hover, .button-pink.button-border:hover {
    --cnvs-btn-color: #f89fa1 !important;
}

.button-pink.button-border.button-fill::before {
    background-color: #f89fa1;
}

.button-pink.button-action {
    --cnvs-btn-action-border-color: #f89fa1;
}

.button-border.button-pink, .button-border.button-light.button-pink {
    color: #f89fa1;
    border-color: #f89fa1;
}

.button-blue {
    --cnvs-btn-color: #1265a8;
}

.button-blue.button-3d:hover, .button-blue.button-reveal:hover, .button-blue.button-border:hover {
    --cnvs-btn-color: #1265a8 !important;
}

.button-blue.button-border.button-fill::before {
    background-color: #1265a8;
}

.button-blue.button-action {
    --cnvs-btn-action-border-color: #1265a8;
}

.button-border.button-blue, .button-border.button-light.button-blue {
    color: #1265a8;
    border-color: #1265a8;
}

.button-green {
    --cnvs-btn-color: #59ba41;
}

.button-green.button-3d:hover, .button-green.button-reveal:hover, .button-green.button-border:hover {
    --cnvs-btn-color: #59ba41 !important;
}

.button-green.button-border.button-fill::before {
    background-color: #59ba41;
}

.button-green.button-action {
    --cnvs-btn-action-border-color: #59ba41;
}

.button-border.button-green, .button-border.button-light.button-green {
    color: #59ba41;
    border-color: #59ba41;
}

.button-brown {
    --cnvs-btn-color: #774f38;
}

.button-brown.button-3d:hover, .button-brown.button-reveal:hover, .button-brown.button-border:hover {
    --cnvs-btn-color: #774f38 !important;
}

.button-brown.button-border.button-fill::before {
    background-color: #774f38;
}

.button-brown.button-action {
    --cnvs-btn-action-border-color: #774f38;
}

.button-border.button-brown, .button-border.button-light.button-brown {
    color: #774f38;
    border-color: #774f38;
}

.button-aqua {
    --cnvs-btn-color: #40c0cb;
}

.button-aqua.button-3d:hover, .button-aqua.button-reveal:hover, .button-aqua.button-border:hover {
    --cnvs-btn-color: #40c0cb !important;
}

.button-aqua.button-border.button-fill::before {
    background-color: #40c0cb;
}

.button-aqua.button-action {
    --cnvs-btn-action-border-color: #40c0cb;
}

.button-border.button-aqua, .button-border.button-light.button-aqua {
    color: #40c0cb;
    border-color: #40c0cb;
}

.button-lime {
    --cnvs-btn-color: #aee239;
}

.button-lime.button-3d:hover, .button-lime.button-reveal:hover, .button-lime.button-border:hover {
    --cnvs-btn-color: #aee239 !important;
}

.button-lime.button-border.button-fill::before {
    background-color: #aee239;
}

.button-lime.button-action {
    --cnvs-btn-action-border-color: #aee239;
}

.button-border.button-lime, .button-border.button-light.button-lime {
    color: #aee239;
    border-color: #aee239;
}

.button-leaf {
    --cnvs-btn-color: #a8caba;
}

.button-leaf.button-3d:hover, .button-leaf.button-reveal:hover, .button-leaf.button-border:hover {
    --cnvs-btn-color: #a8caba !important;
}

.button-leaf.button-border.button-fill::before {
    background-color: #a8caba;
}

.button-leaf.button-action {
    --cnvs-btn-action-border-color: #a8caba;
}

.button-border.button-leaf, .button-border.button-light.button-leaf {
    color: #a8caba;
    border-color: #a8caba;
}

.button-dirtygreen {
    --cnvs-btn-color: #1693a5;
}

.button-dirtygreen.button-3d:hover, .button-dirtygreen.button-reveal:hover, .button-dirtygreen.button-border:hover {
    --cnvs-btn-color: #1693a5 !important;
}

.button-dirtygreen.button-border.button-fill::before {
    background-color: #1693a5;
}

.button-dirtygreen.button-action {
    --cnvs-btn-action-border-color: #1693a5;
}

.button-border.button-dirtygreen, .button-border.button-light.button-dirtygreen {
    color: #1693a5;
    border-color: #1693a5;
}

.button-amber {
    --cnvs-btn-color: #eb9c4d;
}

.button-amber.button-3d:hover, .button-amber.button-reveal:hover, .button-amber.button-border:hover {
    --cnvs-btn-color: #eb9c4d !important;
}

.button-amber.button-border.button-fill::before {
    background-color: #eb9c4d;
}

.button-amber.button-action {
    --cnvs-btn-action-border-color: #eb9c4d;
}

.button-border.button-amber, .button-border.button-light.button-amber {
    color: #eb9c4d;
    border-color: #eb9c4d;
}

.button-black {
    --cnvs-btn-color: #111;
}

.button-black.button-3d:hover, .button-black.button-reveal:hover, .button-black.button-border:hover {
    --cnvs-btn-color: #111 !important;
}

.button-black.button-border.button-fill::before {
    background-color: #111;
}

.button-black.button-action {
    --cnvs-btn-action-border-color: #111;
}

.button-border.button-black, .button-border.button-light.button-black {
    color: #111;
    border-color: #111;
}

.button-light.button-yellow {
    --cnvs-btn-color: #ecd078;
}

.button-border.button-yellow:hover, .button-border.button-yellow.button-fill.button-light:hover {
    color: #333 !important;
}

.button-white {
    --cnvs-btn-color: var(--bs-gray-100);
}

.button-3d.button-white:hover {
    color: var(--bs-gray-900) !important;
}

.button-reveal.button-white:hover {
    --cnvs-btn-color: var(--bs-gray-100) !important;
}

.button[class * =gradient-] {
    border: 0;
}

.button.button-nohover:hover {
    opacity: inherit !important;
    background-color: inherit !important;
    color: inherit !important;
    border-color: inherit !important;
}

.button.disabled, .button:disabled {
    opacity: 0.65 !important;
    pointer-events: none !important;
}

.promo {
    --cnvs-promo-span-font-size: 1.125rem;
    --cnvs-promo-uppercase-font-size: 1.25rem;
    --cnvs-promo-uppercase-span-font-size: 1rem;
    --cnvs-promo-border: 1px solid var(--cnvs-contrast-200);
    --cnvs-promo-light: rgba(var(--cnvs-contrast-rgb), 0.05);
    --cnvs-promo-light-text-color: var(--cnvs-heading-color);
    --cnvs-promo-dark: #343a40;
    --cnvs-promo-dark-text-color: #fff;
    --cnvs-promo-parallax-padding: 5rem;
    position: relative;
}

.promo h3, .promo .h3 {
    font-weight: bold;
    margin-bottom: 0;
}

.promo h3 + span, .promo .h3 + span {
    display: block;
    color: var(--cnvs-promo-light-text-color);
    font-weight: 300;
    font-size: var(--cnvs-promo-span-font-size);
    margin-top: 6px;
}

.promo-uppercase {
    text-transform: uppercase;
}

.promo-uppercase h3, .promo-uppercase .h3 {
    font-size: var(--cnvs-promo-uppercase-span-font-size);
}

.promo-uppercase h3 + span, .promo-uppercase .h3 + span {
    font-size: var(--cnvs-promo-span-font-size);
}

.promo-border {
    border: var(--cnvs-promo-border);
    border-radius: 3px;
}

.promo-light {
    background-color: var(--cnvs-promo-light);
    border-radius: 3px;
}

.promo-dark {
    border: 0 !important;
    background-color: var(--cnvs-promo-dark);
    border-radius: 3px;
}

.promo-dark h3, .promo-dark .h3 {
    color: var(--cnvs-promo-dark-text-color);
}

.promo-dark h3 + span, .promo-dark .h3 + span {
    color: var(--bs-gray-100);
    font-weight: 400;
}

.promo-full {
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
}

.promo.parallax {
    padding: var(--cnvs-promo-parallax-padding) 0 !important;
}

.promo-mini {
    text-align: left;
}

.promo-mini h3, .promo-mini .h3 {
    font-size: var(--cnvs-promo-uppercase-span-font-size);
}

.promo-mini.promo-uppercase h3, .promo-mini.promo-uppercase .h3 {
    font-size: var(--cnvs-promo-span-font-size);
}

.feature-box {
    --cnvs-featured-box-icon: 4rem;
    --cnvs-featured-box-padding-x: 0.75rem;
    --cnvs-featured-box-icon-size: 1.75rem;
    --cnvs-featured-box-font-size: 1.125rem;
    --cnvs-featured-box-font-color: var(--cnvs-heading-color);
    --cnvs-featured-box-font-weight: 600;
    --cnvs-featured-box-font-tt: none;
    --cnvs-featured-box-icon-sm: calc(4rem * 0.5);
    --cnvs-featured-box-padding-x-sm: calc(0.75rem / 1.5);
    --cnvs-featured-box-icon-size-sm: calc(1.75rem / 1.75);
    --cnvs-featured-box-icon-lg: calc(4rem * 1.5);
    --cnvs-featured-box-icon-size-lg: calc(1.75rem * 1.4285714286);
    --cnvs-featured-box-icon-xl: calc(4rem * 2);
    --cnvs-featured-box-icon-size-xl: calc(1.75rem * 2.5714285714);
    --cnvs-featured-box-outline-border: 1px;
    --cnvs-featured-box-outline-padding: 0.25rem;
    --cnvs-featured-box-rounded: 0.25rem;
    --cnvs-featured-box-bg-light: var(--cnvs-contrast-200);
    --cnvs-featured-box-bg-dark: #343a40;
    --cnvs-featured-box-plain-font-size: 3rem;
    --cnvs-featured-box-plain-icon-size: 3rem;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--cnvs-featured-box-padding-x));
    margin-right: calc(-1 * var(--cnvs-featured-box-padding-x));
}

.feature-box:first-child {
    margin-top: 0;
}

.fbox {
}

.fbox-icon {
    width: calc(var(--cnvs-featured-box-icon) + var(--cnvs-featured-box-padding-x) * 2);
    height: var(--cnvs-featured-box-icon);
    padding: 0 var(--cnvs-featured-box-padding-x);
}

.fbox-icon a, .fbox-icon i, .fbox-icon img {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    color: #fff;
}

.fbox-icon i, .fbox-icon img {
    border-radius: 50%;
    background-color: var(--cnvs-themecolor);
}

.fbox-icon i {
    font-style: normal;
    font-size: var(--cnvs-featured-box-icon-size);
    line-height: var(--cnvs-featured-box-icon);
    text-align: center;
}

.fbox-content {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
    padding: 0 var(--cnvs-featured-box-padding-x);
}

.fbox-content h3, .fbox-content .h3 {
    font-size: var(--cnvs-featured-box-font-size);
    font-weight: var(--cnvs-featured-box-font-weight);
    font-family: var(--cnvs-primary-font);
    text-transform: var(--cnvs-featured-box-font-tt);
    margin-bottom: 0;
    color: var(--cnvs-featured-box-font-color);
}

.fbox-content p {
    margin-top: 0.5rem;
    margin-bottom: 0px;
    color: var(--cnvs-contrast-600);
}

.fbox-content .before-heading {
    font-size: calc(var(--cnvs-featured-box-font-size) / 1.142);
}

.fbox-content-sm h3, .fbox-content-sm .h3, .fbox-content-sm p {
    font-size: calc(var(--cnvs-featured-box-font-size) / 1.142);
}

.fbox-content-sm .before-heading {
    font-size: calc(var(--cnvs-featured-box-font-size) / 1.333);
}

.fbox-content-lg h3, .fbox-content-lg .h3 {
    font-size: calc(var(--cnvs-featured-box-font-size) * 1.25);
}

.fbox-content-lg p {
    font-size: calc(var(--cnvs-featured-box-font-size) * 1.25);
    margin-top: 0.75rem;
}

.fbox-content-lg .before-heading {
    font-size: var(--cnvs-featured-box-font-size);
}

.fbox-sm {
    --cnvs-featured-box-padding-x: var(--cnvs-featured-box-padding-x-sm);
    --cnvs-featured-box-icon: var(--cnvs-featured-box-icon-sm);
    --cnvs-featured-box-icon-size: var(--cnvs-featured-box-icon-size-sm);
}

.fbox-lg {
    --cnvs-featured-box-icon: var(--cnvs-featured-box-icon-lg);
    --cnvs-featured-box-icon-size: var(--cnvs-featured-box-icon-size-lg);
}

.fbox-xl {
    --cnvs-featured-box-icon: var(--cnvs-featured-box-icon-xl);
    --cnvs-featured-box-icon-size: var(--cnvs-featured-box-icon-size-xl);
}

.fbox-outline .fbox-icon a {
    border: var(--cnvs-featured-box-outline-border) solid var(--cnvs-themecolor);
    padding: var(--cnvs-featured-box-outline-padding);
    border-radius: 50%;
}

.fbox-outline .fbox-icon i {
    line-height: calc(var(--cnvs-featured-box-icon) / 1.1428);
}

.fbox-rounded {
}

.fbox-rounded .fbox-icon {
    border-radius: var(--cnvs-featured-box-rounded) !important;
}

.fbox-rounded .fbox-icon i, .fbox-rounded .fbox-icon img {
    border-radius: var(--cnvs-featured-box-rounded) !important;
}

.fbox-rounded .fbox-lg {
    --cnvs-featured-box-rounded: calc(var(--cnvs-featured-box-rounded) / 0.75);
}

.fbox-rounded .fbox-xl {
    --cnvs-featured-box-rounded: calc(var(--cnvs-featured-box-rounded) * 2);
}

.fbox-light.fbox-outline .fbox-icon a {
    border-color: var(--cnvs-contrast-200);
}

.fbox-light .fbox-icon i, .fbox-light .fbox-icon img {
    border: var(--cnvs-featured-box-outline-border) solid var(--cnvs-contrast-200);
    background-color: var(--cnvs-featured-box-bg-light);
    color: var(--cnvs-heading-color);
}

.fbox-dark.fbox-outline .fbox-icon a {
    border-color: var(--bs-gray-700);
}

.fbox-dark.fbox-outline .fbox-icon i, .fbox-dark.fbox-outline .fbox-icon img {
    background-color: var(--cnvs-featured-box-bg-dark);
}

.fbox-border {
}

.fbox-border .fbox-icon a {
    border: var(--cnvs-featured-box-outline-border) solid var(--cnvs-themecolor);
    border-radius: 50%;
}

.fbox-border .fbox-icon i, .fbox-border .fbox-icon img {
    border: none;
    background-color: transparent !important;
    color: var(--cnvs-themecolor);
}

.fbox-border.fbox-light .fbox-icon a {
    border-color: var(--cnvs-contrast-200);
}

.fbox-border.fbox-light .fbox-icon i, .fbox-border.fbox-light .fbox-icon img {
    color: var(--cnvs-contrast-600);
}

.fbox-border.fbox-dark .fbox-icon a {
    border-color: var(--cnvs-contrast-200);
}

.fbox-border.fbox-dark .fbox-icon i, .fbox-border.fbox-dark .fbox-icon img {
    color: var(--cnvs-heading-color);
}

.fbox-plain {
}

.fbox-plain .fbox-icon {
    border: none !important;
    height: auto !important;
}

.fbox-plain .fbox-icon i, .fbox-plain .fbox-icon img {
    border: none;
    background-color: transparent;
    color: var(--cnvs-themecolor);
    border-radius: 0;
}

.fbox-plain .fbox-icon i {
    font-size: var(--cnvs-featured-box-plain-font-size);
    line-height: 1;
}

.fbox-plain .fbox-icon img {
    height: auto;
}

.fbox-plain.fbox-image .fbox-icon {
    width: auto;
}

.fbox-plain.fbox-image .fbox-icon img {
    width: auto;
    display: inline-block;
}

.fbox-plain.fbox-light .fbox-icon i, .fbox-plain.fbox-light .fbox-icon img {
    color: var(--cnvs-contrast-600);
}

.fbox-plain.fbox-dark .fbox-icon i, .fbox-plain.fbox-dark .fbox-icon img {
    color: var(--cnvs-contrast-700);
}

.fbox-plain.fbox-sm .fbox-icon i {
    font-size: calc(var(--cnvs-featured-box-plain-font-size) / 1.5);
}

.fbox-plain.fbox-lg .fbox-icon i {
    font-size: calc(var(--cnvs-featured-box-plain-font-size) * 1.5);
}

.fbox-plain.fbox-xl .fbox-icon i {
    font-size: calc(var(--cnvs-featured-box-plain-font-size) * 2);
}

.fbox-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fbox-center .fbox-icon {
    margin-bottom: 1.5rem;
}

.fbox-content h3 + .fbox-icon, .fbox-content .h3 + .fbox-icon {
    margin-top: 1.5rem;
    margin-bottom: 0 !important;
}

.fbox-content h3 span.subtitle, .fbox-content .h3 span.subtitle {
    display: block;
    margin-top: 5px;
    color: var(--cnvs-heading-color);
    font-weight: 300;
    text-transform: none;
}

.fbox-center.fbox-sep:not(.fbox-bg) h3::after, .fbox-center.fbox-sep:not(.fbox-bg) .h3::after {
    content: "";
    display: block;
    margin: 1.25rem auto;
    width: 2rem;
    height: 2px;
    background-color: var(--cnvs-contrast-600);
    transition: width 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .fbox-center.fbox-sep:not(.fbox-bg) h3::after, .fbox-center.fbox-sep:not(.fbox-bg) .h3::after {
        transition: none;
    }
}

.fbox-center.fbox-sep:not(.fbox-bg):hover h3::after, .fbox-center.fbox-sep:not(.fbox-bg):hover .h3::after {
    width: 3rem;
}

.fbox-center.fbox-italic p {
    font-style: italic;
    font-family: var(--cnvs-body-font);
}

.fbox-bg.fbox-center {
    margin-top: 2rem;
    margin-left: 0;
    margin-right: 0;
    padding: 0 2rem 2rem;
    border: 1px solid var(--cnvs-featured-box-bg-light);
    border-radius: 5px;
}

.fbox-bg.fbox-center .fbox-icon {
    margin-top: -2rem;
    background-color: var(--cnvs-body-bg);
}

.fbox-bg.fbox-center .fbox-lg {
    margin-top: 3rem;
}

.fbox-bg.fbox-center .fbox-lg .fbox-icon {
    margin-top: -3rem;
}

.fbox-bg.fbox-center .fbox-xl {
    margin-top: 4rem;
}

.fbox-bg.fbox-center .fbox-xl .fbox-icon {
    margin-top: -4rem;
}

.fbox-effect .fbox-icon i {
    z-index: 1;
}

.fbox-effect .fbox-icon i::after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: "";
    box-sizing: content-box;
}

.fbox-rounded.fbox-effect .fbox-icon i::after {
    border-radius: var(--cnvs-featured-box-rounded);
}

.fbox-effect .fbox-icon i {
    transition: background-color 0.3s, color 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .fbox-effect .fbox-icon i {
        transition: none;
    }
}

.fbox-effect .fbox-icon i::after {
    top: -3px;
    left: -3px;
    padding: 3px;
    box-shadow: 0 0 0 2px var(--cnvs-featured-box-bg-dark);
    transition: opacity 0.3s;
    transform: scale(0.8);
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .fbox-effect .fbox-icon i::after {
        transition: none;
    }
}

.fbox-effect .fbox-icon i:hover, .fbox-effect:hover .fbox-icon i {
    background-color: var(--cnvs-featured-box-bg-dark);
    color: #fff;
}

.fbox-effect.fbox-dark .fbox-icon i::after {
    box-shadow: 0 0 0 2px var(--cnvs-themecolor);
}

.fbox-effect.fbox-dark .fbox-icon i:hover, .fbox-effect.fbox-dark:hover .fbox-icon i {
    background-color: var(--cnvs-themecolor);
}

.fbox-effect .fbox-icon i:hover::after, .fbox-effect:hover .fbox-icon i::after {
    transform: scale(1);
    opacity: 1;
}

.fbox-border.fbox-effect .fbox-icon i {
    transition: color 0.5s, box-shadow 0.5s, background-color 0.5s;
}

@media (prefers-reduced-motion: reduce) {
    .fbox-border.fbox-effect .fbox-icon i {
        transition: none;
    }
}

.fbox-border.fbox-effect .fbox-icon i::after {
    top: -2px;
    left: -2px;
    padding: 2px;
    z-index: -1;
    box-shadow: none;
    background-image: url("/images/icons/iconalt.svg");
    background-position: center center;
    background-size: 100% 100%;
    transition: opacity 0.5s, background-color 0.5s;
}

@media (prefers-reduced-motion: reduce) {
    .fbox-border.fbox-effect .fbox-icon i::after {
        transition: none;
    }
}

.fbox-border.fbox-rounded.fbox-effect .fbox-icon i::after {
    border-radius: 3px;
}

.fbox-border.fbox-effect .fbox-icon i:hover, .fbox-border.fbox-effect:hover .fbox-icon i {
    color: #fff;
    box-shadow: 0 0 0 1px var(--cnvs-featured-box-bg-dark);
}

.fbox-border.fbox-effect .fbox-icon i::after {
    transform: scale(1.3);
    opacity: 0;
    background-color: var(--cnvs-featured-box-bg-dark);
}

.fbox-border.fbox-effect.fbox-dark .fbox-icon i:hover, .fbox-border.fbox-effect.fbox-dark:hover .fbox-icon i {
    box-shadow: 0 0 0 1px var(--cnvs-themecolor);
}

.fbox-border.fbox-effect.fbox-dark .fbox-icon i::after {
    background-color: var(--cnvs-themecolor);
}

.fbox-border.fbox-effect .fbox-icon i:hover::after, .fbox-border.fbox-effect:hover .fbox-icon i::after {
    transform: scale(1);
    opacity: 1;
}

.media-box {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    flex-direction: column;
}

.media-box .fbox-media {
    margin: 0 0 1.5rem;
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

.media-box .fbox-media a, .media-box .fbox-media img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

.media-box .fbox-media iframe {
    display: block;
}

.media-box p {
    margin-top: 1rem;
}

.media-box.fbox-bg .fbox-media {
    margin: 0;
}

.media-box.fbox-bg .fbox-media img {
    border-radius: 5px 5px 0 0;
}

.media-box.fbox-bg .fbox-content {
    padding: 1.5rem;
    background-color: var(--cnvs-body-bg);
    border: 1px solid var(--cnvs-featured-box-bg-light);
    border-top: 0;
    border-radius: 0 0 5px 5px;
}

.media-box .fbox-content {
    -ms-flex-preferred-size: auto;
}

.process-steps {
    margin: 0 0 40px;
    list-style: none;
}

.process-steps li {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.process-steps li .i-style {
    position: relative;
    z-index: 1;
}

.process-steps li .i-circled {
    display: block;
    margin-bottom: 0 !important;
}

.process-steps li .i-bordered {
    --cnvs-i-bg-color: var(--cnvs-body-bg) !important;
    display: block;
    z-index: 1;
}

.process-steps li .i-bordered:hover {
    --cnvs-i-bg-color: var(--cnvs-contrast-900) !important;
}

.process-steps li .i-bordered.active {
    --cnvs-i-bg-color: var(--cnvs-themecolor) !important;
    --cnvs-i-color: var(--cnvs-contrast-100);
    border-color: var(--cnvs-themecolor) !important;
}

.process-steps li .i-bordered.active + h5, .process-steps li .i-bordered.active + .h5 {
    font-weight: 600;
    color: var(--cnvs-themecolor);
}

@media (min-width: 992px) {
    .process-steps li::before, .process-steps li::after {
        content: "";
        position: absolute;
        top: 30px;
        left: 0;
        margin-left: calc(var(--cnvs-i-size) / -2);
        width: 50%;
        border-top: 1px dashed var(--cnvs-contrast-300);
    }

    .process-steps li::after {
        left: auto;
        right: 0;
        margin: 0 calc(var(--cnvs-i-size) / -2) 0 0;
    }

    .process-steps li:first-child::before, .process-steps li:last-child::after {
        display: none;
    }

    .process-steps li h5, .process-steps li .h5 {
        margin: 15px 0 0 0;
        font-size: 1rem;
        font-weight: 300;
    }
}

.style-msg, .style-msg2 {
    position: relative;
    display: block;
    color: var(--cnvs-heading-color);
    border-left: 4px solid rgba(var(--cnvs-contrast-rgb), 0.1);
    margin-bottom: 20px;
}

.style-msg2 {
    border-left-color: rgba(var(--cnvs-contrast-rgb), 0.1);
}

.primarymsg {
    background: #cfe2ff;
    border-color: #b6d4fe;
    color: #084298;
}

.secondarymsg {
    background: #e2e3e5;
    border-color: #d3d6d8;
    color: #41464b;
}

.successmsg {
    background: #d1e7dd;
    border-color: #badbcc;
    color: #0f5132;
}

.infomsg {
    background: #cff4fc;
    border-color: #b6effb;
    color: #087990;
}

.warningmsg {
    background: #fff3cd;
    border-color: #ffecb5;
    color: #997404;
}

.dangermsg {
    background: #f8d7da;
    border-color: #f5c2c7;
    color: #842029;
}

.lightmsg {
    background: #fefefe;
    border-color: #fdfdfe;
    color: #959596;
}

.darkmsg {
    background: #d3d3d4;
    border-color: #bcbebf;
    color: #141619;
}

.errormsg {
    background: #f8d7da;
    border-color: #f5c2c7;
    color: #842029;
}

.alertmsg {
    background: #fff3cd;
    border-color: #ffecb5;
    color: #997404;
}

.style-msg .sb-msg, .style-msg2 .msgtitle, .style-msg2 .sb-msg {
    display: block;
    padding: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
}

.style-msg2 .msgtitle {
    background: rgba(0, 0, 0, 0.15);
    border-top: none;
    border-bottom: none;
    font-size: 1rem;
    font-weight: bold;
}

.style-msg-light .sb-msg, .style-msg-light .msgtitle {
    color: var(--bs-white);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.style-msg2 .sb-msg {
    font-weight: normal;
}

.style-msg2 ol, .style-msg2 ul {
    margin: 0 0 0 30px;
}

.style-msg2 ol {
    list-style-type: decimal;
}

.style-msg2 ul {
    list-style-type: disc;
}

.alert i, .sb-msg i, .msgtitle i {
    position: relative;
    top: 1px;
    font-size: 0.875rem;
    width: 0.875rem;
    text-align: center;
    margin-right: 5px;
}

.style-msg .btn-close {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
}

[class^=i-] {
    --cnvs-i-size: 3.25rem;
    --cnvs-i-border: 1px;
    --cnvs-i-fontsize: calc(var(--cnvs-i-size) / 2.666666);
    --cnvs-i-color: var(--cnvs-contrast-900);
    --cnvs-i-bg-color: transparent;
}

.i-style, .i-plain, .i-bordered, .social-icon {
    --cnvs-i-color: var(--cnvs-white);
    text-align: center !important;
    font-size: var(--cnvs-i-fontsize);
    color: var(--cnvs-i-color);
    cursor: pointer;
    font-style: normal;
    transition: all 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .i-style, .i-plain, .i-bordered, .social-icon {
        transition: none;
    }
}

.i-style, .i-bordered, .i-plain {
    --cnvs-i-size: 3.25rem;
    --cnvs-i-border: 1px;
    --cnvs-i-fontsize: calc(var(--cnvs-i-size) / 2.666666);
    --cnvs-i-bg-color: var(--bs-gray-800);
    display: inline-block;
    width: var(--cnvs-i-size) !important;
    height: var(--cnvs-i-size) !important;
    line-height: var(--cnvs-i-size) !important;
    background-color: var(--cnvs-i-bg-color);
}

.i-bordered {
    --cnvs-i-color: var(--cnvs-contrast-900);
    border: var(--cnvs-i-border) solid rgba(var(--cnvs-contrast-rgb), 0.5);
    line-height: calc(var(--cnvs-i-size) - var(--cnvs-i-border) * 2) !important;
}

.i-plain {
    --cnvs-i-size: 3rem;
    --cnvs-i-fontsize: 1.625rem;
    --cnvs-i-color: var(--bs-contrast-900);
}

.i-bordered, .i-plain {
    --cnvs-i-bg-color: transparent !important;
}

.i-light {
    --cnvs-i-bg-color: var(--bs-gray-100) !important;
    --cnvs-i-color: var(--bs-gray-900);
}

.i-alt {
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 50%);
}

.i-style:hover {
    --cnvs-i-bg-color: var(--cnvs-themecolor) !important;
    --cnvs-i-color: var(--bs-gray-100);
}

.i-bordered:hover {
    --cnvs-i-bg-color: var(--cnvs-contrast-800) !important;
    --cnvs-i-color: var(--cnvs-contrast-0) !important;
    border-color: var(--cnvs-i-color);
}

.i-plain:hover {
    --cnvs-i-bg-color: transparent !important;
    --cnvs-i-color: var(--cnvs-themecolor);
}

.i-small.i-style {
    --cnvs-i-size: 1.75rem;
}

.i-small.i-plain {
    --cnvs-i-size: 1.5rem;
    --cnvs-i-fontsize: 1rem;
}

.i-medium.i-style {
    --cnvs-i-size: 2.25rem;
}

.i-medium.i-plain {
    --cnvs-i-fontsize: 1.25rem;
}

.i-large.i-style {
    --cnvs-i-size: 4rem;
}

.i-large.i-plain {
    --cnvs-i-size: 3.75rem;
    --cnvs-i-fontsize: 2.5rem;
}

.i-xlarge.i-style {
    --cnvs-i-size: 5.25rem;
}

.i-xlarge.i-plain {
    --cnvs-i-size: 4.5rem;
    --cnvs-i-fontsize: 3rem;
}

.i-xxlarge.i-style {
    --cnvs-i-size: 6.5rem;
}

.i-xxlarge.i-plain {
    --cnvs-i-size: 5.25rem;
    --cnvs-i-fontsize: 3.5rem;
}

.iconlist {
    --cnvs-iconlist-size: 1rem;
    --cnvs-iconlist-color: var(--cnvs-themecolor);
    --cnvs-iconlist-margin: 0.5rem;
    --cnvs-iconlist-gutter: 0.75rem;
    --cnvs-iconlist-offset: 0;
    padding-left: 0;
    margin-left: 0;
    list-style-type: none;
}

.iconlist li {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    font-size: var(--cnvs-iconlist-size);
}

.iconlist li + li {
    margin-top: var(--cnvs-iconlist-margin);
}

.iconlist li > * {
    flex: 1 0 0%;
}

.iconlist > li i:first-child, .iconlist > li img:first-child {
    position: relative;
    top: var(--cnvs-iconlist-offset);
    text-align: center;
    width: var(--cnvs-iconlist-size);
    height: var(--cnvs-iconlist-size);
    margin-right: var(--cnvs-iconlist-gutter);
    flex: 0 0 auto;
    color: var(--cnvs-iconlist-color);
}

.iconlist ul {
    flex: 0 0 auto;
    width: 100%;
    list-style-type: none;
    padding: var(--cnvs-iconlist-margin) 0 var(--cnvs-iconlist-margin) calc(var(--cnvs-iconlist-margin) * 4);
}

.iconlist ul li {
    margin-top: var(--cnvs-iconlist-margin);
}

.iconlist.iconlist-lg {
    --cnvs-iconlist-size: 1.125rem;
    --cnvs-iconlist-margin: 0.75rem;
    --cnvs-iconlist-gutter: 0.75rem;
}

.iconlist.iconlist-xl {
    --cnvs-iconlist-size: 1.5rem;
    --cnvs-iconlist-margin: 0.75rem;
    --cnvs-iconlist-gutter: 0.875rem;
}

.social-icon {
    --cnvs-socialicon-size: 2.5rem;
    --cnvs-socialicon-gap: 5px;
    --cnvs-socialicon-fontsize: calc(var(--cnvs-socialicon-size) / 2.5);
    --cnvs-socialicon-border: 1px;
    --cnvs-socialicon-border-color: var(--cnvs-contrast-600);
    --cnvs-socialicon-lineheight: calc(var(--cnvs-socialicon-size) - calc(var(--cnvs-socialicon-border) * 2));
    --cnvs-socialicon-rounded: 0.375rem;
    --cnvs-socialicon-color: var(--bs-contrast-900);
    float: left;
    display: block;
    margin: 0 var(--cnvs-socialicon-gap) var(--cnvs-socialicon-gap) 0;
    width: var(--cnvs-socialicon-size);
    height: var(--cnvs-socialicon-size);
    font-size: var(--cnvs-socialicon-fontsize);
    line-height: var(--cnvs-socialicon-lineheight) !important;
    color: var(--cnvs-socialicon-color);
    text-shadow: none;
    border: var(--cnvs-socialicon-border) solid var(--cnvs-socialicon-border-color);
    border-radius: var(--cnvs-socialicon-rounded);
    overflow: hidden;
}

[class * =-flex] > .social-icon, [class * =row] > .social-icon {
    float: none;
    margin-right: var(--cnvs-socialicon-gap-x);
    margin-bottom: var(--cnvs-socialicon-gap-y);
    flex: 0 0 auto;
}

.social-icon.si-large {
    --cnvs-socialicon-size: 3.5rem;
}

.social-icon.si-small {
    --cnvs-socialicon-size: 2rem;
    --cnvs-socialicon-fontsize: 0.875rem;
}

.social-icon i {
    display: block;
    position: relative;
    line-height: inherit;
    transition: all 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .social-icon i {
        transition: none;
    }
}

.social-icon i:last-child {
    color: #FFF;
}

.social-icon:hover i:first-child {
    margin-top: calc(var(--cnvs-socialicon-lineheight) * -1);
}

.social-icon:hover {
    color: var(--cnvs-socialicon-color);
    border-color: transparent;
}

.social-icon.bg-dark, .social-icon.bg-dark:hover {
    color: var(--bs-gray-200);
}

.social-icon.bg-light {
    --cnvs-socialicon-color: var(--bs-gray-900);
    background-color: var(--bs-gray-200) !important;
}

.social-icon[class * =" bg-"] {
    border-color: transparent;
}

.social-icon.no-transition:hover i:first-child {
    display: none;
    margin-top: 0;
}

[class * =-flex], [class * =row] {
    --cnvs-socialicon-gap: 5px;
    --cnvs-socialicon-gap-x: var(--cnvs-socialicon-gap);
    --cnvs-socialicon-gap-y: 0px;
}

.si-sticky {
    position: fixed;
    top: 50%;
    left: 5px;
    width: 36px;
    z-index: 499;
    transform: translateY(-50%);
}

.si-sticky.si-sticky-right {
    left: auto;
    right: 8px;
}

.bg-facebook, .h-bg-facebook:hover {
    background-color: rgba(var(--cnvs-color-facebook-rgb), 1) !important;
}

.bg-whatsapp, .h-bg-whatsapp:hover {
    background-color: rgba(var(--cnvs-color-whatsapp-rgb), 1) !important;
}

.bg-delicious, .h-bg-delicious:hover {
    background-color: rgba(var(--cnvs-color-delicious-rgb), 1) !important;
}

.bg-paypal, .h-bg-paypal:hover {
    background-color: rgba(var(--cnvs-color-paypal-rgb), 1) !important;
}

.bg-waze, .h-bg-waze:hover {
    background-color: rgba(var(--cnvs-color-waze-rgb), 1) !important;
}

.bg-android, .h-bg-android:hover {
    background-color: rgba(var(--cnvs-color-android-rgb), 1) !important;
}

.bg-googledrive, .h-bg-googledrive:hover {
    background-color: rgba(var(--cnvs-color-googledrive-rgb), 1) !important;
}

.bg-wikipedia, .h-bg-wikipedia:hover {
    background-color: rgba(var(--cnvs-color-wikipedia-rgb), 1) !important;
}

.bg-stumbleupon, .h-bg-stumbleupon:hover {
    background-color: rgba(var(--cnvs-color-stumbleupon-rgb), 1) !important;
}

.bg-foursquare, .h-bg-foursquare:hover {
    background-color: rgba(var(--cnvs-color-foursquare-rgb), 1) !important;
}

.bg-call, .h-bg-call:hover {
    background-color: rgba(var(--cnvs-color-call-rgb), 1) !important;
}

.bg-ninetyninedesigns, .h-bg-ninetyninedesigns:hover {
    background-color: rgba(var(--cnvs-color-ninetyninedesigns-rgb), 1) !important;
}

.bg-forrst, .h-bg-forrst:hover {
    background-color: rgba(var(--cnvs-color-forrst-rgb), 1) !important;
}

.bg-digg, .h-bg-digg:hover {
    background-color: rgba(var(--cnvs-color-digg-rgb), 1) !important;
}

.bg-spotify, .h-bg-spotify:hover {
    background-color: rgba(var(--cnvs-color-spotify-rgb), 1) !important;
}

.bg-reddit, .h-bg-reddit:hover {
    background-color: rgba(var(--cnvs-color-reddit-rgb), 1) !important;
}

.bg-blogger, .h-bg-blogger:hover {
    background-color: rgba(var(--cnvs-color-blogger-rgb), 1) !important;
}

.bg-cc, .h-bg-cc:hover {
    background-color: rgba(var(--cnvs-color-cc-rgb), 1) !important;
}

.bg-dribbble, .h-bg-dribbble:hover {
    background-color: rgba(var(--cnvs-color-dribbble-rgb), 1) !important;
}

.bg-evernote, .h-bg-evernote:hover {
    background-color: rgba(var(--cnvs-color-evernote-rgb), 1) !important;
}

.bg-flickr, .h-bg-flickr:hover {
    background-color: rgba(var(--cnvs-color-flickr-rgb), 1) !important;
}

.bg-google, .h-bg-google:hover {
    background-color: rgba(var(--cnvs-color-google-rgb), 1) !important;
}

.bg-salesforce, .h-bg-salesforce:hover {
    background-color: rgba(var(--cnvs-color-salesforce-rgb), 1) !important;
}

.bg-cloudflare, .h-bg-cloudflare:hover {
    background-color: rgba(var(--cnvs-color-cloudflare-rgb), 1) !important;
}

.bg-linkedin, .h-bg-linkedin:hover {
    background-color: rgba(var(--cnvs-color-linkedin-rgb), 1) !important;
}

.bg-vk, .h-bg-vk:hover {
    background-color: rgba(var(--cnvs-color-vk-rgb), 1) !important;
}

.bg-rss, .h-bg-rss:hover {
    background-color: rgba(var(--cnvs-color-rss-rgb), 1) !important;
}

.bg-skype, .h-bg-skype:hover {
    background-color: rgba(var(--cnvs-color-skype-rgb), 1) !important;
}

.bg-twitter, .h-bg-twitter:hover {
    background-color: rgba(var(--cnvs-color-twitter-rgb), 1) !important;
}

.bg-x-twitter, .h-bg-x-twitter:hover {
    background-color: rgba(var(--cnvs-color-x-twitter-rgb), 1) !important;
}

.bg-youtube, .h-bg-youtube:hover {
    background-color: rgba(var(--cnvs-color-youtube-rgb), 1) !important;
}

.bg-vimeo, .h-bg-vimeo:hover {
    background-color: rgba(var(--cnvs-color-vimeo-rgb), 1) !important;
}

.bg-slack, .h-bg-slack:hover {
    background-color: rgba(var(--cnvs-color-slack-rgb), 1) !important;
}

.bg-yahoo, .h-bg-yahoo:hover {
    background-color: rgba(var(--cnvs-color-yahoo-rgb), 1) !important;
}

.bg-email3, .h-bg-email3:hover {
    background-color: rgba(var(--cnvs-color-email3-rgb), 1) !important;
}

.bg-macstore, .h-bg-macstore:hover {
    background-color: rgba(var(--cnvs-color-macstore-rgb), 1) !important;
}

.bg-figma, .h-bg-figma:hover {
    background-color: rgba(var(--cnvs-color-figma-rgb), 1) !important;
}

.bg-podcast, .h-bg-podcast:hover {
    background-color: rgba(var(--cnvs-color-podcast-rgb), 1) !important;
}

.bg-meetup, .h-bg-meetup:hover {
    background-color: rgba(var(--cnvs-color-meetup-rgb), 1) !important;
}

.bg-dropbox, .h-bg-dropbox:hover {
    background-color: rgba(var(--cnvs-color-dropbox-rgb), 1) !important;
}

.bg-ebay, .h-bg-ebay:hover {
    background-color: rgba(var(--cnvs-color-ebay-rgb), 1) !important;
}

.bg-github, .h-bg-github:hover {
    background-color: rgba(var(--cnvs-color-github-rgb), 1) !important;
}

.bg-googleplay, .h-bg-googleplay:hover {
    background-color: rgba(var(--cnvs-color-googleplay-rgb), 1) !important;
}

.bg-itunes, .h-bg-itunes:hover {
    background-color: rgba(var(--cnvs-color-itunes-rgb), 1) !important;
}

.bg-periscope, .h-bg-periscope:hover {
    background-color: rgba(var(--cnvs-color-periscope-rgb), 1) !important;
}

.bg-meta, .h-bg-meta:hover {
    background-color: rgba(var(--cnvs-color-meta-rgb), 1) !important;
}

.bg-soundcloud, .h-bg-soundcloud:hover {
    background-color: rgba(var(--cnvs-color-soundcloud-rgb), 1) !important;
}

.bg-tumblr, .h-bg-tumblr:hover {
    background-color: rgba(var(--cnvs-color-tumblr-rgb), 1) !important;
}

.bg-wordpress, .h-bg-wordpress:hover {
    background-color: rgba(var(--cnvs-color-wordpress-rgb), 1) !important;
}

.bg-yelp, .h-bg-yelp:hover {
    background-color: rgba(var(--cnvs-color-yelp-rgb), 1) !important;
}

.bg-microsoft, .h-bg-microsoft:hover {
    background-color: rgba(var(--cnvs-color-microsoft-rgb), 1) !important;
}

.bg-trello, .h-bg-trello:hover {
    background-color: rgba(var(--cnvs-color-trello-rgb), 1) !important;
}

.bg-scribd, .h-bg-scribd:hover {
    background-color: rgba(var(--cnvs-color-scribd-rgb), 1) !important;
}

.bg-stripe, .h-bg-stripe:hover {
    background-color: rgba(var(--cnvs-color-stripe-rgb), 1) !important;
}

.bg-print, .h-bg-print:hover {
    background-color: rgba(var(--cnvs-color-print-rgb), 1) !important;
}

.bg-btc, .h-bg-btc:hover {
    background-color: rgba(var(--cnvs-color-btc-rgb), 1) !important;
}

.bg-weibo, .h-bg-weibo:hover {
    background-color: rgba(var(--cnvs-color-weibo-rgb), 1) !important;
}

.bg-acrobat, .h-bg-acrobat:hover {
    background-color: rgba(var(--cnvs-color-acrobat-rgb), 1) !important;
}

.bg-drupal, .h-bg-drupal:hover {
    background-color: rgba(var(--cnvs-color-drupal-rgb), 1) !important;
}

.bg-buffer, .h-bg-buffer:hover {
    background-color: rgba(var(--cnvs-color-buffer-rgb), 1) !important;
}

.bg-pocket, .h-bg-pocket:hover {
    background-color: rgba(var(--cnvs-color-pocket-rgb), 1) !important;
}

.bg-bitbucket, .h-bg-bitbucket:hover {
    background-color: rgba(var(--cnvs-color-bitbucket-rgb), 1) !important;
}

.bg-stackoverflow, .h-bg-stackoverflow:hover {
    background-color: rgba(var(--cnvs-color-stackoverflow-rgb), 1) !important;
}

.bg-hackernews, .h-bg-hackernews:hover {
    background-color: rgba(var(--cnvs-color-hackernews-rgb), 1) !important;
}

.bg-xing, .h-bg-xing:hover {
    background-color: rgba(var(--cnvs-color-xing-rgb), 1) !important;
}

.bg-instagram, .h-bg-instagram:hover {
    background-color: rgba(var(--cnvs-color-instagram-rgb), 1) !important;
}

.bg-quora, .h-bg-quora:hover {
    background-color: rgba(var(--cnvs-color-quora-rgb), 1) !important;
}

.bg-openid, .h-bg-openid:hover {
    background-color: rgba(var(--cnvs-color-openid-rgb), 1) !important;
}

.bg-steam, .h-bg-steam:hover {
    background-color: rgba(var(--cnvs-color-steam-rgb), 1) !important;
}

.bg-amazon, .h-bg-amazon:hover {
    background-color: rgba(var(--cnvs-color-amazon-rgb), 1) !important;
}

.bg-line, .h-bg-line:hover {
    background-color: rgba(var(--cnvs-color-line-rgb), 1) !important;
}

.bg-kickstarter, .h-bg-kickstarter:hover {
    background-color: rgba(var(--cnvs-color-kickstarter-rgb), 1) !important;
}

.bg-appstore, .h-bg-appstore:hover {
    background-color: rgba(var(--cnvs-color-appstore-rgb), 1) !important;
}

.bg-pinterest, .h-bg-pinterest:hover {
    background-color: rgba(var(--cnvs-color-pinterest-rgb), 1) !important;
}

.bg-fivehundredpx, .h-bg-fivehundredpx:hover {
    background-color: rgba(var(--cnvs-color-fivehundredpx-rgb), 1) !important;
}

.bg-tiktok, .h-bg-tiktok:hover {
    background-color: rgba(var(--cnvs-color-tiktok-rgb), 1) !important;
}

.bg-airbnb, .h-bg-airbnb:hover {
    background-color: rgba(var(--cnvs-color-airbnb-rgb), 1) !important;
}

.bg-gpay, .h-bg-gpay:hover {
    background-color: rgba(var(--cnvs-color-gpay-rgb), 1) !important;
}

.bg-unsplash, .h-bg-unsplash:hover {
    background-color: rgba(var(--cnvs-color-unsplash-rgb), 1) !important;
}

.bg-snapchat, .h-bg-snapchat:hover {
    background-color: rgba(var(--cnvs-color-snapchat-rgb), 1) !important;
}

.bg-discord, .h-bg-discord:hover {
    background-color: rgba(var(--cnvs-color-discord-rgb), 1) !important;
}

.bg-twitch, .h-bg-twitch:hover {
    background-color: rgba(var(--cnvs-color-twitch-rgb), 1) !important;
}

.border-facebook, .h-border-facebook:hover {
    border-color: rgba(var(--cnvs-color-facebook-rgb), 1) !important;
}

.border-whatsapp, .h-border-whatsapp:hover {
    border-color: rgba(var(--cnvs-color-whatsapp-rgb), 1) !important;
}

.border-delicious, .h-border-delicious:hover {
    border-color: rgba(var(--cnvs-color-delicious-rgb), 1) !important;
}

.border-paypal, .h-border-paypal:hover {
    border-color: rgba(var(--cnvs-color-paypal-rgb), 1) !important;
}

.border-waze, .h-border-waze:hover {
    border-color: rgba(var(--cnvs-color-waze-rgb), 1) !important;
}

.border-android, .h-border-android:hover {
    border-color: rgba(var(--cnvs-color-android-rgb), 1) !important;
}

.border-googledrive, .h-border-googledrive:hover {
    border-color: rgba(var(--cnvs-color-googledrive-rgb), 1) !important;
}

.border-wikipedia, .h-border-wikipedia:hover {
    border-color: rgba(var(--cnvs-color-wikipedia-rgb), 1) !important;
}

.border-stumbleupon, .h-border-stumbleupon:hover {
    border-color: rgba(var(--cnvs-color-stumbleupon-rgb), 1) !important;
}

.border-foursquare, .h-border-foursquare:hover {
    border-color: rgba(var(--cnvs-color-foursquare-rgb), 1) !important;
}

.border-call, .h-border-call:hover {
    border-color: rgba(var(--cnvs-color-call-rgb), 1) !important;
}

.border-ninetyninedesigns, .h-border-ninetyninedesigns:hover {
    border-color: rgba(var(--cnvs-color-ninetyninedesigns-rgb), 1) !important;
}

.border-forrst, .h-border-forrst:hover {
    border-color: rgba(var(--cnvs-color-forrst-rgb), 1) !important;
}

.border-digg, .h-border-digg:hover {
    border-color: rgba(var(--cnvs-color-digg-rgb), 1) !important;
}

.border-spotify, .h-border-spotify:hover {
    border-color: rgba(var(--cnvs-color-spotify-rgb), 1) !important;
}

.border-reddit, .h-border-reddit:hover {
    border-color: rgba(var(--cnvs-color-reddit-rgb), 1) !important;
}

.border-blogger, .h-border-blogger:hover {
    border-color: rgba(var(--cnvs-color-blogger-rgb), 1) !important;
}

.border-cc, .h-border-cc:hover {
    border-color: rgba(var(--cnvs-color-cc-rgb), 1) !important;
}

.border-dribbble, .h-border-dribbble:hover {
    border-color: rgba(var(--cnvs-color-dribbble-rgb), 1) !important;
}

.border-evernote, .h-border-evernote:hover {
    border-color: rgba(var(--cnvs-color-evernote-rgb), 1) !important;
}

.border-flickr, .h-border-flickr:hover {
    border-color: rgba(var(--cnvs-color-flickr-rgb), 1) !important;
}

.border-google, .h-border-google:hover {
    border-color: rgba(var(--cnvs-color-google-rgb), 1) !important;
}

.border-salesforce, .h-border-salesforce:hover {
    border-color: rgba(var(--cnvs-color-salesforce-rgb), 1) !important;
}

.border-cloudflare, .h-border-cloudflare:hover {
    border-color: rgba(var(--cnvs-color-cloudflare-rgb), 1) !important;
}

.border-linkedin, .h-border-linkedin:hover {
    border-color: rgba(var(--cnvs-color-linkedin-rgb), 1) !important;
}

.border-vk, .h-border-vk:hover {
    border-color: rgba(var(--cnvs-color-vk-rgb), 1) !important;
}

.border-rss, .h-border-rss:hover {
    border-color: rgba(var(--cnvs-color-rss-rgb), 1) !important;
}

.border-skype, .h-border-skype:hover {
    border-color: rgba(var(--cnvs-color-skype-rgb), 1) !important;
}

.border-twitter, .h-border-twitter:hover {
    border-color: rgba(var(--cnvs-color-twitter-rgb), 1) !important;
}

.border-x-twitter, .h-border-x-twitter:hover {
    border-color: rgba(var(--cnvs-color-x-twitter-rgb), 1) !important;
}

.border-youtube, .h-border-youtube:hover {
    border-color: rgba(var(--cnvs-color-youtube-rgb), 1) !important;
}

.border-vimeo, .h-border-vimeo:hover {
    border-color: rgba(var(--cnvs-color-vimeo-rgb), 1) !important;
}

.border-slack, .h-border-slack:hover {
    border-color: rgba(var(--cnvs-color-slack-rgb), 1) !important;
}

.border-yahoo, .h-border-yahoo:hover {
    border-color: rgba(var(--cnvs-color-yahoo-rgb), 1) !important;
}

.border-email3, .h-border-email3:hover {
    border-color: rgba(var(--cnvs-color-email3-rgb), 1) !important;
}

.border-macstore, .h-border-macstore:hover {
    border-color: rgba(var(--cnvs-color-macstore-rgb), 1) !important;
}

.border-figma, .h-border-figma:hover {
    border-color: rgba(var(--cnvs-color-figma-rgb), 1) !important;
}

.border-podcast, .h-border-podcast:hover {
    border-color: rgba(var(--cnvs-color-podcast-rgb), 1) !important;
}

.border-meetup, .h-border-meetup:hover {
    border-color: rgba(var(--cnvs-color-meetup-rgb), 1) !important;
}

.border-dropbox, .h-border-dropbox:hover {
    border-color: rgba(var(--cnvs-color-dropbox-rgb), 1) !important;
}

.border-ebay, .h-border-ebay:hover {
    border-color: rgba(var(--cnvs-color-ebay-rgb), 1) !important;
}

.border-github, .h-border-github:hover {
    border-color: rgba(var(--cnvs-color-github-rgb), 1) !important;
}

.border-googleplay, .h-border-googleplay:hover {
    border-color: rgba(var(--cnvs-color-googleplay-rgb), 1) !important;
}

.border-itunes, .h-border-itunes:hover {
    border-color: rgba(var(--cnvs-color-itunes-rgb), 1) !important;
}

.border-periscope, .h-border-periscope:hover {
    border-color: rgba(var(--cnvs-color-periscope-rgb), 1) !important;
}

.border-meta, .h-border-meta:hover {
    border-color: rgba(var(--cnvs-color-meta-rgb), 1) !important;
}

.border-soundcloud, .h-border-soundcloud:hover {
    border-color: rgba(var(--cnvs-color-soundcloud-rgb), 1) !important;
}

.border-tumblr, .h-border-tumblr:hover {
    border-color: rgba(var(--cnvs-color-tumblr-rgb), 1) !important;
}

.border-wordpress, .h-border-wordpress:hover {
    border-color: rgba(var(--cnvs-color-wordpress-rgb), 1) !important;
}

.border-yelp, .h-border-yelp:hover {
    border-color: rgba(var(--cnvs-color-yelp-rgb), 1) !important;
}

.border-microsoft, .h-border-microsoft:hover {
    border-color: rgba(var(--cnvs-color-microsoft-rgb), 1) !important;
}

.border-trello, .h-border-trello:hover {
    border-color: rgba(var(--cnvs-color-trello-rgb), 1) !important;
}

.border-scribd, .h-border-scribd:hover {
    border-color: rgba(var(--cnvs-color-scribd-rgb), 1) !important;
}

.border-stripe, .h-border-stripe:hover {
    border-color: rgba(var(--cnvs-color-stripe-rgb), 1) !important;
}

.border-print, .h-border-print:hover {
    border-color: rgba(var(--cnvs-color-print-rgb), 1) !important;
}

.border-btc, .h-border-btc:hover {
    border-color: rgba(var(--cnvs-color-btc-rgb), 1) !important;
}

.border-weibo, .h-border-weibo:hover {
    border-color: rgba(var(--cnvs-color-weibo-rgb), 1) !important;
}

.border-acrobat, .h-border-acrobat:hover {
    border-color: rgba(var(--cnvs-color-acrobat-rgb), 1) !important;
}

.border-drupal, .h-border-drupal:hover {
    border-color: rgba(var(--cnvs-color-drupal-rgb), 1) !important;
}

.border-buffer, .h-border-buffer:hover {
    border-color: rgba(var(--cnvs-color-buffer-rgb), 1) !important;
}

.border-pocket, .h-border-pocket:hover {
    border-color: rgba(var(--cnvs-color-pocket-rgb), 1) !important;
}

.border-bitbucket, .h-border-bitbucket:hover {
    border-color: rgba(var(--cnvs-color-bitbucket-rgb), 1) !important;
}

.border-stackoverflow, .h-border-stackoverflow:hover {
    border-color: rgba(var(--cnvs-color-stackoverflow-rgb), 1) !important;
}

.border-hackernews, .h-border-hackernews:hover {
    border-color: rgba(var(--cnvs-color-hackernews-rgb), 1) !important;
}

.border-xing, .h-border-xing:hover {
    border-color: rgba(var(--cnvs-color-xing-rgb), 1) !important;
}

.border-instagram, .h-border-instagram:hover {
    border-color: rgba(var(--cnvs-color-instagram-rgb), 1) !important;
}

.border-quora, .h-border-quora:hover {
    border-color: rgba(var(--cnvs-color-quora-rgb), 1) !important;
}

.border-openid, .h-border-openid:hover {
    border-color: rgba(var(--cnvs-color-openid-rgb), 1) !important;
}

.border-steam, .h-border-steam:hover {
    border-color: rgba(var(--cnvs-color-steam-rgb), 1) !important;
}

.border-amazon, .h-border-amazon:hover {
    border-color: rgba(var(--cnvs-color-amazon-rgb), 1) !important;
}

.border-line, .h-border-line:hover {
    border-color: rgba(var(--cnvs-color-line-rgb), 1) !important;
}

.border-kickstarter, .h-border-kickstarter:hover {
    border-color: rgba(var(--cnvs-color-kickstarter-rgb), 1) !important;
}

.border-appstore, .h-border-appstore:hover {
    border-color: rgba(var(--cnvs-color-appstore-rgb), 1) !important;
}

.border-pinterest, .h-border-pinterest:hover {
    border-color: rgba(var(--cnvs-color-pinterest-rgb), 1) !important;
}

.border-fivehundredpx, .h-border-fivehundredpx:hover {
    border-color: rgba(var(--cnvs-color-fivehundredpx-rgb), 1) !important;
}

.border-tiktok, .h-border-tiktok:hover {
    border-color: rgba(var(--cnvs-color-tiktok-rgb), 1) !important;
}

.border-airbnb, .h-border-airbnb:hover {
    border-color: rgba(var(--cnvs-color-airbnb-rgb), 1) !important;
}

.border-gpay, .h-border-gpay:hover {
    border-color: rgba(var(--cnvs-color-gpay-rgb), 1) !important;
}

.border-unsplash, .h-border-unsplash:hover {
    border-color: rgba(var(--cnvs-color-unsplash-rgb), 1) !important;
}

.border-snapchat, .h-border-snapchat:hover {
    border-color: rgba(var(--cnvs-color-snapchat-rgb), 1) !important;
}

.border-discord, .h-border-discord:hover {
    border-color: rgba(var(--cnvs-color-discord-rgb), 1) !important;
}

.border-twitch, .h-border-twitch:hover {
    border-color: rgba(var(--cnvs-color-twitch-rgb), 1) !important;
}

.color-facebook, .h-color-facebook:hover {
    color: rgba(var(--cnvs-color-facebook-rgb), 1) !important;
}

.color-whatsapp, .h-color-whatsapp:hover {
    color: rgba(var(--cnvs-color-whatsapp-rgb), 1) !important;
}

.color-delicious, .h-color-delicious:hover {
    color: rgba(var(--cnvs-color-delicious-rgb), 1) !important;
}

.color-paypal, .h-color-paypal:hover {
    color: rgba(var(--cnvs-color-paypal-rgb), 1) !important;
}

.color-waze, .h-color-waze:hover {
    color: rgba(var(--cnvs-color-waze-rgb), 1) !important;
}

.color-android, .h-color-android:hover {
    color: rgba(var(--cnvs-color-android-rgb), 1) !important;
}

.color-googledrive, .h-color-googledrive:hover {
    color: rgba(var(--cnvs-color-googledrive-rgb), 1) !important;
}

.color-wikipedia, .h-color-wikipedia:hover {
    color: rgba(var(--cnvs-color-wikipedia-rgb), 1) !important;
}

.color-stumbleupon, .h-color-stumbleupon:hover {
    color: rgba(var(--cnvs-color-stumbleupon-rgb), 1) !important;
}

.color-foursquare, .h-color-foursquare:hover {
    color: rgba(var(--cnvs-color-foursquare-rgb), 1) !important;
}

.color-call, .h-color-call:hover {
    color: rgba(var(--cnvs-color-call-rgb), 1) !important;
}

.color-ninetyninedesigns, .h-color-ninetyninedesigns:hover {
    color: rgba(var(--cnvs-color-ninetyninedesigns-rgb), 1) !important;
}

.color-forrst, .h-color-forrst:hover {
    color: rgba(var(--cnvs-color-forrst-rgb), 1) !important;
}

.color-digg, .h-color-digg:hover {
    color: rgba(var(--cnvs-color-digg-rgb), 1) !important;
}

.color-spotify, .h-color-spotify:hover {
    color: rgba(var(--cnvs-color-spotify-rgb), 1) !important;
}

.color-reddit, .h-color-reddit:hover {
    color: rgba(var(--cnvs-color-reddit-rgb), 1) !important;
}

.color-blogger, .h-color-blogger:hover {
    color: rgba(var(--cnvs-color-blogger-rgb), 1) !important;
}

.color-cc, .h-color-cc:hover {
    color: rgba(var(--cnvs-color-cc-rgb), 1) !important;
}

.color-dribbble, .h-color-dribbble:hover {
    color: rgba(var(--cnvs-color-dribbble-rgb), 1) !important;
}

.color-evernote, .h-color-evernote:hover {
    color: rgba(var(--cnvs-color-evernote-rgb), 1) !important;
}

.color-flickr, .h-color-flickr:hover {
    color: rgba(var(--cnvs-color-flickr-rgb), 1) !important;
}

.color-google, .h-color-google:hover {
    color: rgba(var(--cnvs-color-google-rgb), 1) !important;
}

.color-salesforce, .h-color-salesforce:hover {
    color: rgba(var(--cnvs-color-salesforce-rgb), 1) !important;
}

.color-cloudflare, .h-color-cloudflare:hover {
    color: rgba(var(--cnvs-color-cloudflare-rgb), 1) !important;
}

.color-linkedin, .h-color-linkedin:hover {
    color: rgba(var(--cnvs-color-linkedin-rgb), 1) !important;
}

.color-vk, .h-color-vk:hover {
    color: rgba(var(--cnvs-color-vk-rgb), 1) !important;
}

.color-rss, .h-color-rss:hover {
    color: rgba(var(--cnvs-color-rss-rgb), 1) !important;
}

.color-skype, .h-color-skype:hover {
    color: rgba(var(--cnvs-color-skype-rgb), 1) !important;
}

.color-twitter, .h-color-twitter:hover {
    color: rgba(var(--cnvs-color-twitter-rgb), 1) !important;
}

.color-x-twitter, .h-color-x-twitter:hover {
    color: rgba(var(--cnvs-color-x-twitter-rgb), 1) !important;
}

.color-youtube, .h-color-youtube:hover {
    color: rgba(var(--cnvs-color-youtube-rgb), 1) !important;
}

.color-vimeo, .h-color-vimeo:hover {
    color: rgba(var(--cnvs-color-vimeo-rgb), 1) !important;
}

.color-slack, .h-color-slack:hover {
    color: rgba(var(--cnvs-color-slack-rgb), 1) !important;
}

.color-yahoo, .h-color-yahoo:hover {
    color: rgba(var(--cnvs-color-yahoo-rgb), 1) !important;
}

.color-email3, .h-color-email3:hover {
    color: rgba(var(--cnvs-color-email3-rgb), 1) !important;
}

.color-macstore, .h-color-macstore:hover {
    color: rgba(var(--cnvs-color-macstore-rgb), 1) !important;
}

.color-figma, .h-color-figma:hover {
    color: rgba(var(--cnvs-color-figma-rgb), 1) !important;
}

.color-podcast, .h-color-podcast:hover {
    color: rgba(var(--cnvs-color-podcast-rgb), 1) !important;
}

.color-meetup, .h-color-meetup:hover {
    color: rgba(var(--cnvs-color-meetup-rgb), 1) !important;
}

.color-dropbox, .h-color-dropbox:hover {
    color: rgba(var(--cnvs-color-dropbox-rgb), 1) !important;
}

.color-ebay, .h-color-ebay:hover {
    color: rgba(var(--cnvs-color-ebay-rgb), 1) !important;
}

.color-github, .h-color-github:hover {
    color: rgba(var(--cnvs-color-github-rgb), 1) !important;
}

.color-googleplay, .h-color-googleplay:hover {
    color: rgba(var(--cnvs-color-googleplay-rgb), 1) !important;
}

.color-itunes, .h-color-itunes:hover {
    color: rgba(var(--cnvs-color-itunes-rgb), 1) !important;
}

.color-periscope, .h-color-periscope:hover {
    color: rgba(var(--cnvs-color-periscope-rgb), 1) !important;
}

.color-meta, .h-color-meta:hover {
    color: rgba(var(--cnvs-color-meta-rgb), 1) !important;
}

.color-soundcloud, .h-color-soundcloud:hover {
    color: rgba(var(--cnvs-color-soundcloud-rgb), 1) !important;
}

.color-tumblr, .h-color-tumblr:hover {
    color: rgba(var(--cnvs-color-tumblr-rgb), 1) !important;
}

.color-wordpress, .h-color-wordpress:hover {
    color: rgba(var(--cnvs-color-wordpress-rgb), 1) !important;
}

.color-yelp, .h-color-yelp:hover {
    color: rgba(var(--cnvs-color-yelp-rgb), 1) !important;
}

.color-microsoft, .h-color-microsoft:hover {
    color: rgba(var(--cnvs-color-microsoft-rgb), 1) !important;
}

.color-trello, .h-color-trello:hover {
    color: rgba(var(--cnvs-color-trello-rgb), 1) !important;
}

.color-scribd, .h-color-scribd:hover {
    color: rgba(var(--cnvs-color-scribd-rgb), 1) !important;
}

.color-stripe, .h-color-stripe:hover {
    color: rgba(var(--cnvs-color-stripe-rgb), 1) !important;
}

.color-print, .h-color-print:hover {
    color: rgba(var(--cnvs-color-print-rgb), 1) !important;
}

.color-btc, .h-color-btc:hover {
    color: rgba(var(--cnvs-color-btc-rgb), 1) !important;
}

.color-weibo, .h-color-weibo:hover {
    color: rgba(var(--cnvs-color-weibo-rgb), 1) !important;
}

.color-acrobat, .h-color-acrobat:hover {
    color: rgba(var(--cnvs-color-acrobat-rgb), 1) !important;
}

.color-drupal, .h-color-drupal:hover {
    color: rgba(var(--cnvs-color-drupal-rgb), 1) !important;
}

.color-buffer, .h-color-buffer:hover {
    color: rgba(var(--cnvs-color-buffer-rgb), 1) !important;
}

.color-pocket, .h-color-pocket:hover {
    color: rgba(var(--cnvs-color-pocket-rgb), 1) !important;
}

.color-bitbucket, .h-color-bitbucket:hover {
    color: rgba(var(--cnvs-color-bitbucket-rgb), 1) !important;
}

.color-stackoverflow, .h-color-stackoverflow:hover {
    color: rgba(var(--cnvs-color-stackoverflow-rgb), 1) !important;
}

.color-hackernews, .h-color-hackernews:hover {
    color: rgba(var(--cnvs-color-hackernews-rgb), 1) !important;
}

.color-xing, .h-color-xing:hover {
    color: rgba(var(--cnvs-color-xing-rgb), 1) !important;
}

.color-instagram, .h-color-instagram:hover {
    color: rgba(var(--cnvs-color-instagram-rgb), 1) !important;
}

.color-quora, .h-color-quora:hover {
    color: rgba(var(--cnvs-color-quora-rgb), 1) !important;
}

.color-openid, .h-color-openid:hover {
    color: rgba(var(--cnvs-color-openid-rgb), 1) !important;
}

.color-steam, .h-color-steam:hover {
    color: rgba(var(--cnvs-color-steam-rgb), 1) !important;
}

.color-amazon, .h-color-amazon:hover {
    color: rgba(var(--cnvs-color-amazon-rgb), 1) !important;
}

.color-line, .h-color-line:hover {
    color: rgba(var(--cnvs-color-line-rgb), 1) !important;
}

.color-kickstarter, .h-color-kickstarter:hover {
    color: rgba(var(--cnvs-color-kickstarter-rgb), 1) !important;
}

.color-appstore, .h-color-appstore:hover {
    color: rgba(var(--cnvs-color-appstore-rgb), 1) !important;
}

.color-pinterest, .h-color-pinterest:hover {
    color: rgba(var(--cnvs-color-pinterest-rgb), 1) !important;
}

.color-fivehundredpx, .h-color-fivehundredpx:hover {
    color: rgba(var(--cnvs-color-fivehundredpx-rgb), 1) !important;
}

.color-tiktok, .h-color-tiktok:hover {
    color: rgba(var(--cnvs-color-tiktok-rgb), 1) !important;
}

.color-airbnb, .h-color-airbnb:hover {
    color: rgba(var(--cnvs-color-airbnb-rgb), 1) !important;
}

.color-gpay, .h-color-gpay:hover {
    color: rgba(var(--cnvs-color-gpay-rgb), 1) !important;
}

.color-unsplash, .h-color-unsplash:hover {
    color: rgba(var(--cnvs-color-unsplash-rgb), 1) !important;
}

.color-snapchat, .h-color-snapchat:hover {
    color: rgba(var(--cnvs-color-snapchat-rgb), 1) !important;
}

.color-discord, .h-color-discord:hover {
    color: rgba(var(--cnvs-color-discord-rgb), 1) !important;
}

.color-twitch, .h-color-twitch:hover {
    color: rgba(var(--cnvs-color-twitch-rgb), 1) !important;
}

.toggle, .accordion {
    --cnvs-toggle-base-color: var(--cnvs-heading-color);
    --cnvs-toggle-font-size: 1rem;
    --cnvs-toggle-border-size: 1px;
    --cnvs-toggle-border-color: var(--cnvs-contrast-400);
    --cnvs-toggle-border-radius: 4px;
    --cnvs-toggle-bg-color: var(--cnvs-contrast-100);
    --cnvs-toggle-title-color: var(--cnvs-heading-color);
    --cnvs-toggle-content-padding: 0.75rem;
    --cnvs-toggle-bottom-margin: 1.5rem;
    display: block;
    position: relative;
    margin-bottom: var(--cnvs-toggle-bottom-margin);
}

.toggle-header, .accordion-header {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
    cursor: pointer;
    color: var(--cnvs-toggle-title-color);
    font-size: var(--cnvs-toggle-font-size);
    font-weight: 700;
}

.toggle-icon, .accordion-icon {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    padding: 0 0.375rem;
    text-align: center;
}

.toggle-icon i, .toggle-icon span {
    width: var(--cnvs-toggle-font-size);
}

.toggle-title, .accordion-title {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    padding: 0 0.25rem;
}

.toggle:not(.toggle-active) .toggle-open, .toggle-active .toggle-closed {
    display: none;
}

.toggle-active .toggle-open {
    display: inline-block;
}

.toggle-content, .accordion-content {
    display: none;
    position: relative;
    padding: var(--cnvs-toggle-content-padding) 0;
}

.toggle-bg .toggle-header {
    background-color: var(--cnvs-toggle-bg-color);
    margin: 0;
    padding: var(--cnvs-toggle-content-padding);
    border-radius: 2px;
}

.toggle-bg .toggle-content {
    padding: 1rem var(--cnvs-toggle-content-padding);
}

.toggle-border {
    border: var(--cnvs-toggle-border-size) solid var(--cnvs-contrast-400);
    border-radius: var(--cnvs-toggle-border-radius);
}

.toggle-border .toggle-header {
    padding: var(--cnvs-toggle-content-padding);
    margin: 0;
}

.toggle-border .toggle-content {
    padding: 1rem;
    padding-top: 0;
}

.faqs .toggle {
    border-bottom: 1px solid var(--cnvs-toggle-bg-color);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.faqs .toggle-content {
    padding-bottom: 10px;
}

.accordion {
    --cnvs-accordion-border-size: 1px;
    --cnvs-accordion-border-color: var(--cnvs-contrast-300);
    --cnvs-toggle-content-padding: 0.75rem;
    --cnvs-accordion-content-padding: 1.5rem;
    margin-bottom: 20px;
}

.accordion-header {
    padding: var(--cnvs-toggle-content-padding) 0;
    border-top: var(--cnvs-accordion-border-size) dotted var(--cnvs-accordion-border-color);
    cursor: pointer;
}

.accordion-header:first-child {
    border-top: none;
}

.accordion:not([data-collapsible=true]) .accordion-header.accordion-active {
    cursor: auto;
}

.accordion-header:not(.accordion-active) .accordion-open, .accordion-active .accordion-closed {
    display: none;
}

.accordion-active .accordion-open {
    display: inline-block;
}

.accordion-content {
    padding-top: 0;
    padding-bottom: var(--cnvs-toggle-content-padding);
}

.accordion-bg .accordion-header {
    background-color: var(--cnvs-toggle-bg-color);
    padding: var(--cnvs-toggle-content-padding);
    border-radius: 2px;
    margin: 0;
    margin-bottom: 5px;
    border-top: 0;
}

.accordion-bg .accordion-content {
    padding: var(--cnvs-toggle-content-padding) var(--cnvs-toggle-content-padding) var(--cnvs-toggle-content-padding);
}

.accordion-border {
    border: var(--cnvs-accordion-border-size) dotted var(--cnvs-accordion-border-color);
    border-radius: var(--cnvs-toggle-border-radius);
}

.accordion-border .accordion-header {
    border-color: var(--cnvs-contrast-300);
    padding: var(--cnvs-toggle-content-padding);
    margin: 0;
}

.accordion-border .accordion-content {
    padding: 0 1.125rem var(--cnvs-toggle-content-padding);
}

.accordion-lg {
    --cnvs-toggle-font-size: 1.25rem;
}

.tabs, .tab-content {
    --cnvs-tab-base-color: var(--cnvs-heading-color);
    --cnvs-tab-padding-width: 15px;
    --bs-nav-link-font-size: 1rem;
    --bs-nav-link-font-weight: 400;
    --bs-nav-tabs-border-width: 1px;
    --bs-nav-tabs-border-color: rgba(var(--cnvs-contrast-rgb), 0.075);
    --bs-nav-tabs-link-hover-border-color: transparent;
    --cnvs-tabs-bg-color: var(--cnvs-contrast-bg-offset);
    --cnvs-tabs-active-bg-color: var(--cnvs-contrast-bg);
    --cnvs-tabs-active-color: var(--cnvs-themecolor);
    --cnvs-tab-container-padding: 20px;
    --cnvs-side-tab-width: 200px;
    --cnvs-sidenav-font-size: 1rem;
    --cnvs-sidenav-border: 1px;
    --cnvs-sidenav-radius: 4px;
    --cnvs-sidenav-icon-margin: 6px;
    --cnvs-sidenav-padding-height: 11px;
    --cnvs-sidenav-padding-width: 20px;
    --cnvs-sidenav-border-color: rgba(var(--cnvs-contrast-rgb), 0.1);
    --cnvs-sidenav-font-color: var(--cnvs-heading-color);
    position: relative;
}

:not(.dark) .list-group-media .list-group-item-action p {
    opacity: 0.8;
    line-height: 1.6 !important;
}

[role=tablist] a.i-plain.active {
    color: var(--cnvs-themecolor);
}

[role=tablist] a.active {
    border-color: var(--cnvs-themecolor);
    background-color: var(--cnvs-themecolor);
    color: var(--cnvs-contrast-0);
}

.tab-bordered {
    position: relative;
}

.tab-bordered::before {
    content: "";
    height: 1px;
    border: 1px dashed var(--cnvs-contrast-300);
    position: absolute;
    margin: auto;
    top: 50%;
    left: 15px;
    right: 15px;
    z-index: 0;
}

.tab-bordered a {
    z-index: 2;
}

.tab-bordered a.i-bordered:not(.active):not(:hover) {
    background-color: var(--cnvs-tabs-active-bg-color) !important;
}

.tab-bordered.list-group-horizontal-sm::before {
    height: 100%;
    width: 1px;
    border: 1px dashed var(--cnvs-contrast-300);
    top: 15px;
    bottom: 15px;
    left: 26px;
    right: auto;
    z-index: 0;
}

.tab-sticky.sticky-sm-none {
    position: relative;
    top: auto;
    height: auto;
}

.tab-sticky {
    position: sticky;
    top: 80px;
    height: 100%;
    z-index: 1;
}

.canvas-tabs, .canvas-tabs.nav-tabs {
    --bs-nav-link-padding-x: 1.5rem;
    --bs-nav-tabs-border-width: 1px;
    --bs-nav-tabs-border-color: rgba(var(--cnvs-contrast-rgb), 0.075);
    --bs-nav-tabs-border-radius: 0;
    --bs-nav-link-color: var(--cnvs-heading-color);
    --bs-nav-link-hover-color: var(--cnvs-heading-color);
    padding: 0 var(--cnvs-tab-padding-width);
}

.canvas-tabs .nav-item:first-child .nav-link, .canvas-tabs.nav-tabs .nav-item:first-child .nav-link {
    border-left: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}

.canvas-tabs .nav-link, .canvas-tabs.nav-tabs .nav-link {
    min-height: 41px;
    background-color: var(--cnvs-tabs-bg-color);
    border: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
    border-left: 0;
    transition: none;
}

.canvas-tabs .nav-link.active, .canvas-tabs .nav-tabs .nav-item.show .nav-link, .canvas-tabs.nav-tabs .nav-link.active, .canvas-tabs.nav-tabs .nav-tabs .nav-item.show .nav-link {
    background-color: var(--cnvs-tabs-active-bg-color);
    color: var(--cnvs-tabs-active-color);
    border-bottom: 0;
    padding-bottom: calc(var(--bs-nav-link-padding-y) + 1px);
}

.canvas-tabs.tabs-bordered, .canvas-tabs.nav-tabs.tabs-bordered {
    padding: 0;
    margin-bottom: 0 !important;
}

.canvas-tabs.tabs-bordered + .tab-content, .canvas-tabs.nav-tabs.tabs-bordered + .tab-content {
    border: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
    border-top: 0;
    padding: var(--cnvs-tab-container-padding);
}

.canvas-tabs.flex-column, .canvas-tabs.nav-tabs.flex-column {
    --bs-nav-link-padding-y: .75rem;
    padding: var(--cnvs-tab-padding-width) 0;
    border-bottom: 0;
    border-right: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}

.canvas-tabs.flex-column .nav-link, .canvas-tabs.nav-tabs.flex-column .nav-link {
    width: 100%;
    text-align: left;
    border-left: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
    margin-bottom: -1px;
    margin-left: calc(var(--bs-nav-tabs-border-width) * 1);
}

.canvas-tabs.flex-column .nav-link:hover, .canvas-tabs.flex-column .nav-link:focus, .canvas-tabs.nav-tabs.flex-column .nav-link:hover, .canvas-tabs.nav-tabs.flex-column .nav-link:focus {
    isolation: auto;
}

.canvas-tabs.flex-column:not(.nav-pills) .nav-link.active, .canvas-tabs.nav-tabs.flex-column:not(.nav-pills) .nav-link.active {
    border-right-color: transparent;
    padding-bottom: var(--bs-nav-link-padding-y);
}

.canvas-tabs.flex-column:last-child .nav-link, .canvas-tabs.nav-tabs.flex-column:last-child .nav-link {
    border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}

.canvas-tabs.size-sm, .canvas-tabs.nav-tabs.size-sm {
    --bs-nav-link-padding-x: 1rem;
    --bs-nav-link-font-size: .9375rem;
}

.canvas-alt-tabs {
    --bs-nav-tabs-border-radius: 0;
    --bs-nav-link-color: var(--cnvs-tab-base-color);
    --bs-nav-link-hover-color: var(--cnvs-tab-base-color);
    --bs-nav-link-padding-x: 1.5rem;
    --bs-nav-tabs-link-active-bg: var(--cnvs-contrast-bg);
    --bs-nav-tabs-link-active-color: var(--cnvs-themecolor);
    --bs-nav-tabs-link-active-border-color: var(--bs-nav-tabs-border-color) var(--bs-nav-tabs-border-color) var(--cnvs-contrast-bg);
    padding: 0 var(--cnvs-tab-padding-width);
}

.canvas-alt-tabs.tabs-tb .nav-link {
    transition: none;
}

.canvas-alt-tabs.tabs-tb .nav-link.active {
    border-top: calc(var(--bs-nav-tabs-border-width) + 1px) solid var(--cnvs-themecolor);
    border-bottom: 0;
}

.canvas-alt-tabs.tabs-bb {
    --bs-nav-tabs-border-width: 0px;
    --bs-nav-tabs-border-radius: 0;
    --bs-nav-link-color: var(--cnvs-tab-base-color);
    padding: 0;
    border-bottom: 1px solid var(--bs-nav-tabs-border-color);
}

.canvas-alt-tabs.tabs-bb .nav-link.active {
    border-bottom: 1px solid var(--cnvs-themecolor);
}

.canvas-alt-tabs .nav-link:not(.active):not(:hover), .canvas-alt-tabs .nav-link:not(.active):not(:focus) {
    border-color: transparent;
}

.canvas-alt-tabs2 {
    --bs-nav-pills-link-active-bg: var(--cnvs-themecolor);
    --bs-nav-pills-border-radius: 2px;
    --bs-nav-link-hover-color: var(--cnvs-tab-base-color);
    --bs-nav-link-padding-x: 1.5rem;
}

.canvas-alt-tabs2 .nav-link {
    background-color: var(--cnvs-contrast-200);
    --bs-nav-link-color: var(--cnvs-tab-base-color);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.canvas-alt-tabs2 .nav-item:not(:last-child) .nav-link {
    margin-right: 15px;
}

.canvas-alt-tabs2 .tabs-bordered {
    padding: 0;
    margin-bottom: 0 !important;
}

.canvas-alt-tabs2 .tabs-bordered + .tab-content {
    border: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
    border-top: 0;
    padding: var(--cnvs-tab-container-padding);
}

.tabs-bordered .tabs, .tabs-bordered .tab-content {
    --bs-nav-tabs-border-color: var(--cnvs-contrast-300);
}

.tabs-bordered .flex-column {
    padding: 0;
    z-index: 1;
}

.tabs-bordered .tab-content {
    padding: var(--cnvs-sidenav-padding-width);
    border: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
    margin-left: -1px;
    height: 100%;
}

.tabs-bordered .tab-content p {
    margin-bottom: 0;
}

@media (min-width: 576px) {
    .canvas-br-side-tabs .nav-link {
        border: 0 !important;
        background-color: transparent !important;
        padding-left: 0;
    }

    .canvas-br-side-tabs .nav-link.active {
        border-right: 2px solid var(--cnvs-themecolor) !important;
    }
}

@media (max-width: 575.98px) {
    .tabs {
        flex-direction: column;
        border-bottom: 0;
        padding: 0;
    }

    .tabs li .nav-link {
        width: 100%;
        text-align: left;
        margin: 0 0 5px 0;
        border: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color) !important;
    }

    .tabs li:last-child .nav-link {
        margin-bottom: 0;
    }

    .tabs.canvas-alt-tabs {
        --bs-nav-tabs-link-active-color: var(--cnvs-themecolor);
    }
}

.faqlist li {
    margin-bottom: 5px;
    font-size: 1rem;
}

.faqlist li a {
    color: var(--cnvs-contrast-700);
}

.faqlist li a:hover {
    color: var(--cnvs-themecolor) !important;
}

.clients-grid {
    --cnvs-clients-grid-padding: 20px;
    --cnvs-clients-grid-border-size: 1px;
    --cnvs-clients-grid-border-style: dashed;
    --cnvs-clients-grid-border-color: rgba(var(--cnvs-contrast-rgb), 0.15);
    --cnvs-clients-img-opacity: 0.6;
    position: relative;
    align-items: stretch;
    list-style: none;
    overflow: hidden;
}

.clients-grid > .col {
    position: relative;
    padding: var(--cnvs-clients-grid-padding) 0;
    -webkit-backface-visibility: hidden;
}

.clients-grid > .col a {
    display: block;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    opacity: var(--cnvs-clients-img-opacity);
    transition: all 0.5s ease;
}

@media (prefers-reduced-motion: reduce) {
    .clients-grid > .col a {
        transition: none;
    }
}

.clients-grid > .col a:hover {
    opacity: 1;
}

.clients-grid > .col img {
    width: 100%;
    display: block;
}

.clients-grid > .col::before, .clients-grid > .col::after {
    content: "";
    position: absolute;
}

.clients-grid > .col::before {
    height: 100%;
    top: 0;
    left: calc(-1 * var(--cnvs-clients-grid-border-size));
    border-left: var(--cnvs-clients-grid-border-size) var(--cnvs-clients-grid-border-style) var(--cnvs-clients-grid-border-color);
}

.clients-grid > .col::after {
    width: 100%;
    height: 0;
    top: auto;
    left: 0;
    bottom: calc(-1 * var(--cnvs-clients-grid-border-size));
    border-bottom: var(--cnvs-clients-grid-border-size) var(--cnvs-clients-grid-border-style) var(--cnvs-clients-grid-border-color);
}

.testimonials-grid .col {
    padding: 2rem;
}

.testimonials-grid .col .testimonial {
    padding: 0;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.quote-bubble {
    --cnvs-bubble-radius: 0.75rem;
    --cnvs-bubble-color: var(--cnvs-contrast-200);
    position: relative;
    padding: 1.25rem;
    border-radius: var(--cnvs-bubble-radius);
    color: var(--cnvs-heading-color);
    background-color: var(--cnvs-bubble-color);
    font-size: 1rem;
}

.quote-bubble::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: var(--cnvs-bubble-radius) solid var(--cnvs-bubble-color);
    border-right: var(--cnvs-bubble-radius) solid transparent;
    border-top: var(--cnvs-bubble-radius) solid var(--cnvs-bubble-color);
    border-bottom: var(--cnvs-bubble-radius) solid transparent;
    right: calc((var(--cnvs-bubble-radius) + 1px) * -1);
    top: 0;
}

.quote-bubble.quote-bubble-left::before {
    border-left: var(--cnvs-bubble-radius) solid transparent;
    border-right: var(--cnvs-bubble-radius) solid var(--cnvs-bubble-color);
    left: calc((var(--cnvs-bubble-radius) + 1px) * -1);
    right: auto;
}

.quote-bubble > p {
    margin-bottom: 0;
}

.quote-bubble.bg-primary {
    --cnvs-bubble-color: var(--bs-primary);
}

.quote-bubble.bg-danger {
    --cnvs-bubble-color: var(--bs-danger);
}

.quote-bubble.bg-success {
    --cnvs-bubble-color: var(--bs-success);
}

.quote-bubble.bg-warning {
    --cnvs-bubble-color: var(--bs-warning);
}

.quote-bubble.bg-info {
    --cnvs-bubble-color: var(--bs-info);
}

.quote-bubble.bg-dark {
    --cnvs-bubble-color: var(--bs-dark);
}

.testimonial {
    --cnvs-fslider-dots-size: 0.5rem;
    --cnvs-slider-pagination-gutters: calc(var(--cnvs-fslider-dots-size) * .5);
}

.testimonial .flex-control-nav {
    top: auto;
    bottom: 0.5rem;
    right: 0;
}

.testimonial .flex-control-nav li a {
    border: none;
    background-color: var(--cnvs-themecolor);
    opacity: 0.5;
}

.testimonial .flex-control-nav li:hover a {
    opacity: 0.75;
}

.testimonial .flex-control-nav li a.flex-active {
    opacity: 1;
}

.testimonial.testimonial-full .flex-control-nav {
    position: relative;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 0.5rem;
    margin-top: 20px;
}

.testimonial.testimonial-full .flex-control-nav li {
    display: inline-block;
    float: none;
}

.team {
    --cnvs-team-base-color: var(--cnvs-heading-color);
    --cnvs-team-desc-align: center;
    --cnvs-team-desc-background: var(--cnvs-contrast-0);
    --cnvs-team-desc-padding: 0.75rem 0 2rem;
    --cnvs-team-title-font-size: 1.25rem;
    --cnvs-team-title-designation-font-size: 1rem;
    --cnvs-team-title-designation-font-color: var(--cnvs-contrast-600);
    --cnvs-team-title-designation-font-family: var(--cnvs-body-font);
    --cnvs-team-title-designation-font-weight: 400;
    --cnvs-team-title-designation-font-style: normal;
    --cnvs-team-title-designation-icon-width: 32px;
    --cnvs-team-title-designation-icon-size: 14px;
    --cnvs-team-overlay-color: #fff;
    --cnvs-team-overlay-opacity: 0.75;
    --cnvs-team-list-image-width: 250px;
    --cnvs-team-content-font-size: 1rem;
    --cnvs-team-content-font-color: var(--cnvs-contrast-600);
    position: relative;
}

.team-image {
    position: relative;
}

.team-image > a, .team-image img {
    display: block;
    width: 100%;
}

.team-desc {
    text-align: var(--cnvs-team-desc-align);
}

.team-desc-bg {
    background-color: var(--cnvs-team-desc-background);
    padding: var(--cnvs-team-desc-padding);
}

.team .si-share {
    margin-top: 30px;
    text-align: left;
}

.team .si-share .social-icon {
    font-size: var(--cnvs-team-title-designation-icon-size);
    width: var(--cnvs-team-title-designation-icon-width);
}

.team-title {
    position: relative;
    padding-top: 20px;
}

.team-title h4, .team-title .h4 {
    display: block;
    margin-bottom: 0;
    font-size: var(--cnvs-team-title-font-size);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.team-title span {
    display: block;
    color: var(--cnvs-team-title-designation-font-color);
    font-weight: var(--cnvs-team-title-designation-font-weight);
    font-family: var(--cnvs-team-title-designation-font-family);
    font-style: var(--cnvs-team-title-designation-font-style);
    font-size: var(--cnvs-team-title-designation-font-size);
    margin-top: 5px;
}

.team-content {
    margin-top: 1rem;
    color: var(--cnvs-team-content-font-color);
}

.team-content p:last-child {
    margin-bottom: 0;
}

.team.center .team-title::after {
    left: 50%;
    margin-left: -40px;
}

.team-list .team-desc {
    text-align: left;
}

.team-list .team-title {
    padding-top: 0;
}

.team .team-desc > .social-icon {
    margin-top: 20px;
}

.team .team-content ~ .social-icon {
    margin-top: 30px;
}

.team:not(.team-list) .social-icon {
    display: inline-block !important;
    vertical-align: middle;
    float: none;
    margin-left: 4px;
    margin-right: 4px;
}

.pricing, [class * =pricing-] {
    --cnvs-pricing-base-color: var(--cnvs-heading-color);
    --cnvs-pricing-background: var(--cnvs-contrast-100);
    --cnvs-pricing-border-size: 1px;
    --cnvs-pricing-border-color: rgba(var(--cnvs-contrast-rgb), 0.075);
    --cnvs-pricing-border-radius: 0.25rem;
    --cnvs-pricing-title-padding: 1rem;
    --cnvs-pricing-title-bg: var(--cnvs-contrast-100);
    --cnvs-pricing-title-border: 1px solid rgba(var(--cnvs-contrast-rgb), 0.075);
    --cnvs-pricing-title-font-size: 1.5rem;
    --cnvs-pricing-title-font-weight: bold;
    --cnvs-pricing-title-font-spacing: 1px;
    --cnvs-pricing-title-font-transform: uppercase;
    --cnvs-pricing-title-font-color: var(--cnvs-heading-color);
    --cnvs-pricing-price-padding: 1.5rem;
    --cnvs-pricing-price-color: var(--cnvs-contrast-900);
    --cnvs-pricing-price-font-size: 4rem;
    --cnvs-pricing-price-bottom-border-width: 100px;
    --cnvs-pricing-price-bottom-border-size: 1px solid rgba(var(--cnvs-contrast-rgb), 0.1);
    --cnvs-pricing-price-currency-icon: 1.74rem;
    --cnvs-pricing-price-month: 0.99354rem;
    --cnvs-pricing-features-padding: 2rem;
    --cnvs-pricing-features-font-padding: 0.375rem;
    --cnvs-pricing-features-font-size: 0.875rem;
    --cnvs-pricing-popular-bg: var(--cnvs-contrast-100);
    --cnvs-pricing-popular-title-padding: 1.25rem;
    --cnvs-pricing-popular-font-color: var(--cnvs-themecolor);
    --cnvs-pricing-popular-title-font-size: 1.5rem;
    --cnvs-pricing-popular-pricing-font-size: 4.5rem;
    --cnvs-pricing-popular-box-shadow: 0 0 8px rgba(var(--cnvs-contrast-rgb), 0.1);
    --cnvs-pricing-minimal-bg: var(--cnvs-contrast-0);
    --cnvs-pricing-extended-padding: 30px;
}

.pricing {
    position: relative;
}

.pricing > [class^=col-] {
    margin-top: 1.25rem;
}

.pricing-box {
    position: relative;
    overflow: hidden;
    border: var(--cnvs-pricing-border-size) solid var(--cnvs-pricing-border-color);
    border-radius: var(--cnvs-pricing-border-radius);
    background-color: var(--cnvs-pricing-background);
}

.pricing-title {
    padding: var(--cnvs-pricing-title-padding) 0;
    background-color: var(--cnvs-pricing-title-bg);
    border-bottom: var(--cnvs-pricing-title-border);
    letter-spacing: 1px;
}

.pricing-title h3, .pricing-title .h3 {
    margin: 0;
    font-size: var(--cnvs-pricing-title-font-size);
    font-weight: var(--cnvs-pricing-title-font-weight);
    color: var(--cnvs-pricing-title-font-color);
}

.pricing-title span {
    display: block;
    color: var(--cnvs-contrast-600);
    font-weight: 300;
    font-size: calc(var(--cnvs-pricing-title-font-size) * 0.7);
    margin: 3px 0;
    text-transform: var(--cnvs-pricing-title-font-transform);
}

.pricing-title.title-sm h3, .pricing-title.title-sm .h3 {
    font-size: calc(var(--cnvs-pricing-title-font-size) * 0.8333);
}

.pricing-title.title-sm span {
    font-size: calc(var(--cnvs-pricing-title-font-size/1.714));
}

.pricing-price {
    position: relative;
    padding: var(--cnvs-pricing-price-padding) 0;
    color: var(--cnvs-pricing-price-color);
    font-size: var(--cnvs-pricing-price-font-size);
    line-height: 1;
}

.pricing-price .price-unit {
    display: inline-block;
    vertical-align: top;
    margin: 7px 3px 0 0;
    font-size: var(--cnvs-pricing-price-currency-icon);
    font-weight: normal;
}

.pricing-price .price-tenure {
    vertical-align: baseline;
    font-size: var(--cnvs-pricing-price-month);
    font-weight: normal;
    letter-spacing: 1px;
    color: var(--cnvs-contrast-600);
    margin: 0 0 0 3px;
}

.pricing-features {
    border-top: var(--cnvs-pricing-border-size) solid var(--cnvs-pricing-border-color);
    border-bottom: var(--cnvs-pricing-border-size) solid var(--cnvs-pricing-border-color);
    background-color: var(--cnvs-contrast-100);
    padding: var(--cnvs-pricing-features-padding) 0;
}

.pricing-features ul {
    margin: 0;
    list-style: none;
}

.pricing-features li {
    padding: var(--cnvs-pricing-features-font-padding) 0;
}

.pricing-action {
    padding: calc(var(--cnvs-pricing-title-padding) * 1.25) 0;
}

.pricing-highlight {
    box-shadow: var(--cnvs-pricing-popular-box-shadow);
    z-index: 10;
    margin: calc(-1 * var(--cnvs-pricing-popular-title-padding)) calc(-1 * var(--cnvs-pricing-border-size));
}

.pricing-highlight .pricing-title, .pricing-highlight .pricing-features {
    background-color: var(--cnvs-pricing-background);
}

.pricing-highlight .pricing-price {
    font-size: var(--cnvs-pricing-popular-pricing-font-size);
}

.pricing-simple {
    border: 0;
}

.pricing-simple .pricing-title, .pricing-simple .pricing-features {
    border: 0;
    background-color: transparent;
}

.pricing-minimal .pricing-price {
    background-color: var(--cnvs-pricing-minimal-bg);
    border-bottom: var(--cnvs-pricing-border-size) solid var(--cnvs-pricing-border-color);
}

.pricing-minimal .pricing-price::after {
    display: none;
}

.pricing-extended {
    background-color: var(--cnvs-pricing-minimal-bg);
    text-align: left;
}

.pricing-extended .pricing-title {
    background-color: transparent;
    padding-top: 0;
    text-align: left;
}

.pricing-extended .pricing-features {
    border: 0;
    background-color: transparent;
}

.pricing-extended .pricing-action-area {
    border-left: var(--cnvs-pricing-title-border);
    background-color: var(--cnvs-pricing-title-bg);
    padding: var(--cnvs-pricing-extended-padding);
    text-align: center;
}

.pricing-extended .pricing-action-area .pricing-price, .pricing-extended .pricing-action-area .pricing-action {
    padding: 0;
}

.pricing-extended .pricing-action-area .pricing-price {
    padding-bottom: var(--cnvs-pricing-popular-title-padding);
}

.pricing-extended .pricing-action-area .pricing-price::after {
    display: none;
}

.pricing-extended .pricing-action-area .pricing-price span.price-tenure {
    display: block;
    margin: 10px 0 0 0;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.pricing-extended .pricing-meta {
    color: var(--cnvs-contrast-600);
    font-weight: 300;
    font-size: calc(var(--cnvs-pricing-title-font-size) * 0.7);
    letter-spacing: var(--cnvs-pricing-title-font-spacing);
    text-transform: var(--cnvs-pricing-title-font-transform);
    padding-bottom: 10px;
}

.pricing.pricing-5 .pricing-box {
    float: left;
    width: 20%;
    margin-top: var(--cnvs-pricing-popular-title-padding);
}

.pricing.pricing-5 .pricing-box.best-price {
    margin-top: 0;
}

.pricing.pricing-5 .pricing-box:nth-child(5) {
    margin-left: calc(-1 * var(--cnvs-pricing-border-size));
}

.pricing.pricing-5 .pricing-title h3, .pricing.pricing-5 .pricing-title .h3 {
    font-size: var(--cnvs-pricing-title-font-size);
}

.pricing.pricing-5 .best-price .pricing-title h3, .pricing.pricing-5 .best-price .pricing-title .h3 {
    font-size: var(--cnvs-pricing-title-font-size);
}

.table-comparison, .table-comparison th {
    text-align: center;
}

.table-comparison th:first-child, .table-comparison td:first-child {
    text-align: left;
    font-weight: bold;
}

.counter {
    --cnvs-counter-font-size: 42px;
    --cnvs-counter-font-weight: 700;
    --cnvs-counter-font-family: var(--cnvs-primary-font);
    --cnvs-counter-caption-size: 1.125rem;
    --cnvs-counter-sm-font-size: 28px;
    --cnvs-counter-lg-font-size: 56px;
    --cnvs-counter-xl-font-size: 64px;
    --cnvs-counter-lined-size: 2px solid var(--cnvs-heading-color);
    --cnvs-counter-lined-width: 15%;
    font-size: var(--cnvs-counter-font-size);
    font-weight: var(--cnvs-counter-font-weight);
    font-family: var(--cnvs-counter-font-family);
}

.counter.counter-small {
    --cnvs-counter-font-size: var(--cnvs-counter-sm-font-size);
}

.counter.counter-large {
    --cnvs-counter-font-size: var(--cnvs-counter-lg-font-size);
}

.counter.counter-xlarge {
    --cnvs-counter-font-size: var(--cnvs-counter-xl-font-size);
    font-weight: 400;
}

.counter.counter-inherit {
    font-size: inherit;
    font-weight: inherit;
}

.counter + h5, .counter + .h5 {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.widget .counter + h5, .widget .counter + .h5 {
    opacity: 0.7;
}

.counter.counter-lined + h5::before, .counter.counter-lined + .h5::before {
    display: block;
    position: relative;
    margin: 20px auto 25px auto;
    content: "";
    width: var(--cnvs-counter-lined-width);
    border-top: var(--cnvs-counter-lined-size);
    opacity: 0.9;
}

.counter.counter-small + h5, .counter.counter-small + .h5 {
    font-size: 0.875rem;
}

.counter.counter-large + h5, .counter.counter-large + .h5, .counter.counter-xlarge + h5, .counter.counter-xlarge + .h5 {
    font-size: 15px;
    font-weight: 300;
}

.rounded-skill {
    --cnvs-rounded-skills-font-size: 1.25rem;
    --cnvs-rounded-skills-font-color: var(--cnvs-heading-color);
    --cnvs-rounded-skills-icon-size: 42px;
    display: inline-block;
    margin: 0 15px 15px;
    display: inline-block;
    position: relative;
    text-align: center;
    font-size: var(--cnvs-rounded-skills-font-size);
    font-weight: bold;
    color: var(--cnvs-rounded-skills-font-color);
    transition: opacity 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    .rounded-skill {
        transition: none;
    }
}

.rounded-skill + h5, .rounded-skill + .h5 {
    margin-bottom: 0;
}

.rounded-skill i {
    font-size: var(--cnvs-rounded-skills-icon-size);
}

.rounded-skill canvas {
    position: absolute;
    top: 0;
    left: 0;
}

.news-carousel .rounded-skill {
    position: absolute;
    margin: 0 !important;
    top: 30px;
    right: 30px;
    color: #FFF;
    font-weight: 700;
}

.skill-progress {
    --cnvs-progress-height: 10px;
    --cnvs-progress-color: var(--cnvs-themecolor);
    --cnvs-progress-trackcolor: var(--cnvs-contrast-100);
    --cnvs-progress-rounded: 0.25rem;
    --cnvs-progress-speed: 1.1s;
}

.skill-progress + .skill-progress {
    margin-top: 1rem;
}

.skill-progress-bar {
    position: relative;
    height: var(--cnvs-progress-height);
    background-color: var(--cnvs-progress-trackcolor);
    border-radius: var(--cnvs-progress-rounded);
}

.skill-progress-percent {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--cnvs-progress-color);
    border-radius: var(--cnvs-progress-rounded);
    transition-property: width, height;
    transition-duration: var(--cnvs-progress-speed);
    transition-timing-function: ease;
}

.skill-progress-vertical {
    --cnvs-progress-width: 50px;
    --cnvs-progress-height: 300px;
}

.skill-progress-vertical .skill-progress-bar {
    width: var(--cnvs-progress-width);
    height: var(--cnvs-progress-height);
}

.skill-progress-vertical .skill-progress-percent {
    width: 100%;
    height: 0;
    top: auto;
    bottom: 0;
}

.skill-progress-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.skill-progress-vertical .skill-progress-title {
    display: block;
}

.skill-progress-title h5, .skill-progress-title .h5 {
    margin-bottom: 0;
}

.owl-carousel {
    --cnvs-carousel-animation-transition: 1000ms;
    --cnvs-owl-video-play-icon-size: 64px;
    --cnvs-owl-video-play-icon: url("/images/icons/play.png");
    --cnvs-owl-video-play-icon-hover: scale(1.3);
    --cnvs-owl-autoHeight-transition: 500ms ease-in-out;
    --cnvs-owl-nav-hidden: true;
    --cnvs-owl-nav-border: 1px solid rgba(var(--cnvs-contrast-rgb), 0.2);
    --cnvs-owl-nav-background: var(--cnvs-body-bg);
    --cnvs-owl-nav-color: var(--cnvs-contrast-600);
    --cnvs-owl-nav-border-radius: 50%;
    --cnvs-owl-full-nav-size: 28px;
    --cnvs-owl-full-nav-border-radius: 0.25rem;
    --cnvs-owl-full-nav-bgcolor: rgba(var(--cnvs-contrast-rgb), 0.4);
    --cnvs-owl-full-nav-color: var(--cnvs-contrast-100);
    --cnvs-owl-full-nav-hover-bgcolor: var(--cnvs-themecolor);
    --cnvs-owl-full-nav-hover-color: var(--cnvs-body-bg);
    --cnvs-owl-dots-background: var(--cnvs-themecolor);
    --cnvs-owl-dots-opacity: 0.5;
    --cnvs-owl-nav-sizes: 36px;
    --cnvs-owl-dots-gutters: 0.25rem;
    --cnvs-owl-dots-sizes: 0.5rem;
    --cnvs-owl-nav-bg: var(--cnvs-themecolor);
    --cnvs-owl-nav-margin: calc(var(--cnvs-owl-nav-sizes) / -2);
    --cnvs-owl-nav-with-dots: calc(var(--cnvs-owl-nav-margin) - calc(calc(30px + var(--cnvs-owl-dots-sizes)) / 2));
}

@keyframes fadeout {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.owl-height {
    transition: height 500ms ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .owl-height {
        transition: none;
    }
}

.owl-carousel {
    direction: ltr;
    display: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
    width: 100%;
    touch-action: manipulation;
}

.owl-carousel .animated {
    animation-duration: var(--cnvs-carousel-animation-transition);
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

.owl-carousel .owl-stage {
    position: relative;
}

.owl-carousel .owl-stage::after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    display: block;
    min-height: 100px;
    background: no-repeat center center;
    opacity: 0;
    display: block;
}

.owl-carousel .owl-refresh .owl-item {
    display: none;
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    transform-style: preserve-3d;
}

.slider-element .owl-carousel .owl-item img {
    -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot, .owl-carousel .owl-dots button {
    cursor: pointer;
    cursor: hand;
    padding: 0;
    border: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.mega-menu-content .owl-carousel {
    opacity: 1;
}

.owl-carousel.owl-refresh .owl-item {
    display: none;
}

.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}

.no-js .owl-carousel {
    display: block;
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease;
}

@media (prefers-reduced-motion: reduce) {
    .owl-carousel .owl-item .owl-lazy {
        transition: none;
    }
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #111;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: var(--cnvs-owl-video-play-icon-size);
    width: var(--cnvs-owl-video-play-icon-size);
    left: 50%;
    top: 50%;
    margin-left: calc(var(--cnvs-owl-video-play-icon-size) * -0.5);
    margin-top: calc(var(--cnvs-owl-video-play-icon-size) * -0.5);
    background: var(--cnvs-owl-video-play-icon) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: scale 100ms ease;
}

@media (prefers-reduced-motion: reduce) {
    .owl-carousel .owl-video-play-icon {
        transition: none;
    }
}

.owl-carousel .owl-video-play-icon:hover {
    transition: var(--cnvs-owl-video-play-icon-hover);
}

@media (prefers-reduced-motion: reduce) {
    .owl-carousel .owl-video-play-icon:hover {
        transition: none;
    }
}

.owl-carousel .owl-video-play-icon .owl-video-play-icon, .owl-carousel .owl-video-play-icon .owl-video-tn {
    display: none;
}

.owl-carousel .owl-video-play-icon .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}

@media (prefers-reduced-motion: reduce) {
    .owl-carousel .owl-video-play-icon .owl-video-tn {
        transition: none;
    }
}

.owl-carousel .owl-video-play-icon .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.owl-carousel .owl-dots, .owl-carousel .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    line-height: 1;
}

.owl-carousel .owl-nav [class * =owl-] {
    position: absolute;
    top: 50%;
    zoom: 1;
    border: var(--cnvs-owl-nav-border);
    color: var(--cnvs-owl-nav-color);
    background-color: var(--cnvs-owl-nav-background);
    border-radius: var(--cnvs-owl-nav-border-radius);
    opacity: 0;
    left: calc(var(--cnvs-owl-nav-sizes) * -1);
    transition: all 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .owl-carousel .owl-nav [class * =owl-] {
        transition: none;
    }
}

.owl-carousel.with-carousel-dots .owl-nav [class * =owl-] {
    margin-top: calc(var(--cnvs-owl-nav-sizes) - 2);
}

.slider-element .owl-nav [class * =owl-], .owl-carousel-full .owl-nav [class * =owl-] {
    margin-top: -30px;
    left: 0 !important;
    height: calc(var(--cnvs-owl-full-nav-sizes) * 2.143);
    line-height: calc(var(--cnvs-owl-full-nav-sizes) * 2.143);
    border: none;
    color: var(--cnvs-owl-full-nav-color);
    background-color: var(--cnvs-owl-full-nav-bgcolor);
    font-size: var(--cnvs-owl-full-nav-sizes);
    border-radius: 0 var(--cnvs-owl-full-nav-border-radius) var(--cnvs-owl-full-nav-border-radius) 0;
}

.owl-carousel-full .with-carousel-dots .owl-nav [class * =owl-] {
    margin-top: -50px;
}

.owl-carousel .owl-nav .owl-next {
    left: auto;
    right: calc(var(--cnvs-owl-nav-sizes) * -1);
}

.slider-element .owl-nav .owl-next, .owl-carousel-full .owl-nav .owl-next {
    left: auto !important;
    right: 0 !important;
    border-radius: var(--cnvs-owl-full-nav-border-radius) 0 0 var(--cnvs-owl-full-nav-border-radius);
}

.owl-carousel:hover .owl-nav [class * =owl-] {
    opacity: 1;
    left: calc(-0.5 * var(--cnvs-owl-nav-sizes));
}

.owl-carousel:hover .owl-nav .owl-next {
    left: auto;
    right: calc(-0.5 * var(--cnvs-owl-nav-sizes));
}

.owl-carousel .owl-nav [class * =owl-]:hover {
    background-color: var(--cnvs-owl-full-nav-hover-bgcolor) !important;
    color: var(--cnvs-owl-full-nav-hover-color) !important;
    text-decoration: none;
}

.owl-carousel .owl-nav .disabled {
    display: none !important;
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    opacity: var(--cnvs-owl-dots-opacity);
    width: var(--cnvs-owl-dots-sizes);
    height: var(--cnvs-owl-dots-sizes);
    margin-top: 30px;
    border-radius: 50%;
    background-color: var(--cnvs-owl-dots-background);
    transition: all 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .owl-carousel .owl-dots .owl-dot {
        transition: none;
    }
}

.owl-carousel .owl-dots .owl-dot.active, .owl-carousel .owl-dots .owl-dot:hover {
    opacity: 1;
}

.owl-carousel[class * =owl-nav-pos-], .owl-carousel[class * =owl-dots-pos-] .owl-carousel[class * =owl-img-pos-] {
    display: flex;
    flex-direction: column;
}

.owl-carousel.owl-nav-pos-1 .owl-nav, .owl-carousel.owl-dots-pos-1 .owl-dots, .owl-carousel.owl-content-pos-1 .owl-stage-outer {
    order: 1;
}

.owl-carousel.owl-nav-pos-2 .owl-nav, .owl-carousel.owl-dots-pos-2 .owl-dots, .owl-carousel.owl-content-pos-2 .owl-stage-outer {
    order: 2;
    margin: 20px 0;
}

.owl-carousel.owl-nav-pos-3 .owl-nav, .owl-carousel.owl-dots-pos-3 .owl-dots, .owl-carousel.owl-content-pos-3 .owl-stage-outer {
    order: 3;
}

.owl-carousel.owl-dots-pos-2 .owl-dots .owl-dot, .owl-carousel.owl-dots-pos-3 .owl-dots .owl-dot {
    margin-top: 0;
}

.owl-carousel.owl-nav-pos-left .owl-nav, .owl-carousel.owl-nav-pos-right .owl-nav, .owl-carousel.owl-dots-pos-left .owl-dots, .owl-carousel.owl-dots-pos-right .owl-dots {
    display: flex;
    justify-content: center;
}

.owl-carousel.owl-dots-pos-left .owl-dots, .owl-carousel.owl-nav-pos-left .owl-nav {
    justify-content: flex-start;
}

.owl-carousel.owl-dots-pos-right .owl-dots, .owl-carousel.owl-nav-pos-right .owl-nav {
    justify-content: flex-end;
}

.owl-carousel.with-carousel-dots.owl-dots-pos-top .owl-nav [class * =owl-] {
    margin-top: 0;
}

.owl-carousel.owl-dots-size-sm {
    --cnvs-owl-dots-sizes: 4px;
    --cnvs-owl-dots-gutters: 2px;
}

.owl-carousel.owl-dots-size-lg {
    --cnvs-owl-dots-sizes: 12px;
    --cnvs-owl-dots-gutters: 5px;
}

.owl-carousel.owl-dots-size-xl {
    --cnvs-owl-dots-sizes: 16px;
    --cnvs-owl-dots-gutters: 6px;
}

.owl-carousel .owl-dots .owl-dot {
    width: var(--cnvs-owl-dots-sizes);
    height: var(--cnvs-owl-dots-sizes);
    background-color: var(--cnvs-owl-nav-bg);
    margin-left: var(--cnvs-owl-dots-gutters);
    margin-right: var(--cnvs-owl-dots-gutters);
    transition: all 0.3s;
}

.owl-carousel.owl-nav-hover-fixed[class * =owl-nav-pos-] .owl-nav .disabled {
    display: inline-block !important;
    pointer-events: none;
    opacity: 0.4 !important;
}

.owl-carousel.owl-dots-border .owl-dots .owl-dot:not(.active) {
    opacity: 1;
    background-color: transparent;
    border: 1px solid var(--cnvs-owl-nav-bg);
}

.owl-carousel.owl-dots-border .owl-dots .owl-dot.active {
    border-color: transparent;
}

.owl-carousel.owl-dots-square .owl-dots .owl-dot {
    border-radius: 0;
    --cnvs-owl-dots-sizes: 10px;
}

.owl-carousel.owl-dots-rounded .owl-dots .owl-dot {
    --cnvs-owl-dots-sizes: 10px;
    border-radius: 2px;
}

.owl-carousel.owl-dots-dashed .owl-dots .owl-dot {
    --cnvs-owl-dots-sizes: 16px;
    opacity: 0.4;
    height: 4px;
    border-radius: 4px;
}

.owl-carousel.owl-dots-dashed .owl-dots .owl-dot.active {
    --cnvs-owl-dots-sizes: 32px;
    opacity: 1;
}

.owl-carousel.owl-dots-number .owl-dots {
    --cnvs-owl-dots-sizes: 28px;
    counter-reset: dots;
    --cnvs-owl-nav-bg: #FFF;
}

.owl-carousel.owl-dots-number .owl-dots .owl-dot {
    position: relative;
    width: auto;
    opacity: 0.3;
}

.owl-carousel.owl-dots-number .owl-dots .owl-dot.active {
    opacity: 1;
}

.owl-carousel.owl-dots-number .owl-dots .owl-dot:before {
    display: inline-block;
    counter-increment: dots;
    content: counter(dots, decimal-leading-zero);
}

.owl-carousel.owl-dots-number .owl-dots .owl-dot span {
    position: relative;
    display: inline-block;
    width: 0px;
    height: 2px;
    background-color: #666;
    top: -5px;
    margin-left: 5px;
    transition: width 0.4s ease-in-out;
}

.owl-carousel.owl-dots-number .owl-dots .owl-dot.active span {
    width: 30px;
}

.owl-carousel .owl-nav [class * =owl-] {
    left: calc(-1 * var(--cnvs-owl-nav-sizes));
    width: var(--cnvs-owl-nav-sizes);
    height: var(--cnvs-owl-nav-sizes);
    line-height: calc(-1 * var(--cnvs-owl-nav-sizes) - 4px);
    font-size: calc(var(--cnvs-owl-nav-sizes) / 2);
    margin-top: var(--cnvs-owl-nav-margin);
}

@media (max-width: 767.98px) {
    .owl-carousel .owl-nav [class * =owl-] {
        left: var(--cnvs-owl-nav-sizes);
    }
}

.owl-carousel.with-carousel-dots .owl-nav [class * =owl-] {
    margin-top: var(--cnvs-owl-nav-with-dots);
}

.owl-carousel .owl-nav .owl-next {
    left: auto;
    right: calc(-1 * var(--cnvs-owl-nav-sizes));
}

@media (max-width: 767.98px) {
    .owl-carousel .owl-nav .owl-next {
        right: var(--cnvs-owl-nav-sizes);
    }
}

.slider-element .owl-nav .owl-next, .owl-carousel-full .owl-nav .owl-next {
    left: auto !important;
    right: 0 !important;
}

.owl-carousel.owl-nav-hover-fixed .owl-nav [class * =owl-], .owl-carousel:hover .owl-nav [class * =owl-] {
    opacity: 1;
    left: calc(-1 * var(--cnvs-owl-nav-sizes) / 2);
}

@media (max-width: 767.98px) {
    .owl-carousel.owl-nav-hover-fixed .owl-nav [class * =owl-], .owl-carousel:hover .owl-nav [class * =owl-] {
        left: calc(var(--cnvs-owl-nav-sizes) / 4);
    }
}

.owl-carousel.owl-nav-hover-fixed .owl-nav .owl-next, .owl-carousel:hover .owl-nav .owl-next {
    left: auto;
    right: calc(-1 * var(--cnvs-owl-nav-sizes) / 2);
}

@media (max-width: 767.98px) {
    .owl-carousel.owl-nav-hover-fixed .owl-nav .owl-next, .owl-carousel:hover .owl-nav .owl-next {
        right: calc(var(--cnvs-owl-nav-sizes) / 4);
    }
}

.owl-carousel .owl-nav [class * =owl-]:hover {
    background-color: var(--cnvs-owl-nav-bg) !important;
}

.slider-element .owl-nav [class * =owl-], .owl-carousel-full .owl-nav [class * =owl-] {
    margin-top: -30px;
    height: calc(var(--cnvs-owl-nav-sizes) * 1.6666666667);
    line-height: calc(var(--cnvs-owl-nav-sizes) * 1.6666666667);
    font-size: calc(var(--cnvs-owl-nav-sizes) * 1.6666666667 / 2);
}

.owl-carousel-full .with-carousel-dots .owl-nav [class * =owl-] {
    margin-top: calc(var(--cnvs-owl-nav-sizes) * 1.6666666667 / -2 -(30px + var(--cnvs-owl-dots-sizes)) / 2);
}

.owl-carousel.owl-nav-hover-fixed[class * =owl-nav-pos-] .owl-nav [class * =owl-] {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin: 0;
}

.owl-carousel.owl-nav-hover-fixed[class * =owl-nav-pos-] .owl-nav .owl-prev {
    margin-right: 5px;
}

.owl-carousel.owl-nav-hover-fixed[class * =owl-nav-pos-] .owl-nav .owl-next {
    margin-left: 5px;
}

.owl-carousel.owl-nav-text .owl-nav [class * =owl-] {
    width: auto;
    height: auto;
    line-height: 1.5;
    font-size: 0.925rem;
    border-radius: 3px;
    padding: 4px 8px;
}

.owl-carousel.owl-nav-text .owl-nav [class * =owl-] i {
    position: relative;
    top: 1px;
}

.flip-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.flip-card-front, .flip-card-back {
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    backface-visibility: hidden;
    width: 100%;
    height: 280px;
    border-radius: 6px;
    color: #fff;
    font-size: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
    .flip-card-front, .flip-card-back {
        transition: none;
    }
}

.flip-card-front.no-after::after, .flip-card-back.no-after::after {
    content: none;
}

.flip-card-front::after, .flip-card-back::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    opacity: 0.6;
    background-color: #000;
    backface-visibility: hidden;
    border-radius: 6px;
}

.flip-card-front:hover .flip-card-front, .flip-card-front:hover .flip-card-back, .flip-card-back:hover .flip-card-front, .flip-card-back:hover .flip-card-back {
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
    .flip-card-front:hover .flip-card-front, .flip-card-front:hover .flip-card-back, .flip-card-back:hover .flip-card-front, .flip-card-back:hover .flip-card-back {
        transition: none;
    }
}

.flip-card-back {
    background-color: #666;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.flip-card-inner {
    transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    outline: 1px solid transparent;
    perspective: inherit;
    z-index: 2;
}

.flip-card-back {
    transform: rotateY(180deg);
    transform-style: preserve-3d;
}

.top-to-bottom .flip-card-back {
    transform: rotateX(180deg);
    transform-style: preserve-3d;
}

.flip-card-front, .flip-card:hover .flip-card-back {
    transform: rotateY(0deg);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-front {
    transform: rotateY(-180deg);
    transform-style: preserve-3d;
}

.top-to-bottom .flip-card-front, .top-to-bottom:hover .flip-card-back {
    transform: rotateX(0deg);
    transform-style: preserve-3d;
}

.top-to-bottom:hover .flip-card-front {
    transform: rotateX(-180deg);
    transform-style: preserve-3d;
}

.flip-card-inner span {
    font-size: 18px;
    line-height: 20px;
    font-weight: 300;
}

.flip-card-inner p {
    position: relative;
    font-size: 1rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.titular-title {
    --cnvs-titular-title-font-size-h1: 3.25rem;
    --cnvs-titular-title-font-size-h2: 2.75rem;
    --cnvs-titular-title-font-size-h3: 2rem;
    --cnvs-titular-title-font-size-subtitle: 1rem;
    font-weight: 500;
    letter-spacing: -1px;
}

h1.titular-title, .titular-title.h1 {
    font-size: var(--cnvs-titular-title-font-size-h1);
}

h2.titular-title, .titular-title.h2 {
    font-size: var(--cnvs-titular-title-font-size-h2);
}

h3.titular-title, .titular-title.h3 {
    font-size: var(--cnvs-titular-title-font-size-h3);
}

.titular-sub-title {
    margin: 0;
    font-weight: 600;
    letter-spacing: 4px;
    font-size: var(--cnvs-titular-title-font-size-subtitle);
    text-transform: uppercase;
}

.titular-title + .titular-sub-title {
    margin-top: -25px;
    margin-bottom: 30px;
}

.title-block {
    --cnvs-title-block-padding: 20px;
    --cnvs-title-block-color: var(--cnvs-heading-color);
    --cnvs-title-block-border: 7px;
    --cnvs-title-block-border-color: var(--cnvs-themecolor);
    --cnvs-title-block-subtitle-color: var(--cnvs-contrast-700);
    padding: 2px 0 3px var(--cnvs-title-block-padding);
    border-left: var(--cnvs-title-block-border) solid var(--cnvs-title-block-border-color);
    margin-bottom: 30px;
}

.title-block-right {
    padding: 2px var(--cnvs-title-block-padding) 3px 0;
    border-left: 0;
    border-right: var(--cnvs-title-block-border) solid var(--cnvs-title-block-border-color);
    text-align: right;
}

.title-block h1, .title-block .h1, .title-block h2, .title-block .h2, .title-block h3, .title-block .h3, .title-block h4, .title-block .h4 {
    margin-bottom: 0;
}

.title-block > span {
    display: block;
    margin-top: 4px;
    color: var(--cnvs-title-block-subtitle-color);
    font-weight: 300;
}

.title-block h1 + span, .title-block .h1 + span, .title-block h2 + span, .title-block .h2 + span {
    font-size: 1.25rem;
}

.title-block h3 + span, .title-block .h3 + span {
    font-size: 1.125rem;
}

.title-block h4 + span, .title-block .h4 + span {
    font-size: 0.9375rem;
}

.heading-block {
    --cnvs-heading-block-font-size-h1: 2.5rem;
    --cnvs-heading-block-font-size-h2: 2.125rem;
    --cnvs-heading-block-font-size-h3: 1.875rem;
    --cnvs-heading-block-font-size-h4: 1.375rem;
    --cnvs-heading-block-font-weight: 600;
    --cnvs-heading-block-font-spacing: 0;
    --cnvs-heading-block-font-color: var(--cnvs-heading-color);
    --cnvs-heading-block-font-transform: none;
    --cnvs-heading-block-center-container: 700px;
    --cnvs-title-block-border-size: 40px;
    --cnvs-heading-block-border: 2px solid var(--cnvs-heading-color);
    --cnvs-heading-block-span-color: var(--cnvs-contrast-600);
    margin-bottom: 50px;
}

.heading-block h1, .heading-block .h1, .heading-block h2, .heading-block .h2, .heading-block h3, .heading-block .h3, .heading-block h4, .heading-block .h4 {
    margin-bottom: 0;
    font-weight: var(--cnvs-heading-block-font-weight);
    text-transform: var(--cnvs-heading-block-font-transform);
    letter-spacing: var(--cnvs-heading-block-font-spacing);
    color: var(--cnvs-heading-block-font-color);
}

.heading-block h1, .heading-block .h1 {
    font-size: var(--cnvs-heading-block-font-size-h1);
}

.heading-block h2, .heading-block .h2 {
    font-size: var(--cnvs-heading-block-font-size-h2);
}

.heading-block h3, .heading-block .h3 {
    font-size: var(--cnvs-heading-block-font-size-h3);
}

.heading-block h4, .heading-block .h4 {
    font-size: var(--cnvs-heading-block-font-size-h4);
}

.heading-block > span:not(.before-heading) {
    display: block;
    margin-top: 0.5rem;
    font-weight: 300;
    color: var(--cnvs-heading-block-span-color);
}

.heading-block.center > span, .heading-block.text-center > span, .center .heading-block > span, .text-center .heading-block > span {
    max-width: var(--cnvs-heading-block-center-container);
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .text-md-start .heading-block > span {
        max-width: none !important;
    }
}

.heading-block h1 + span, .heading-block .h1 + span {
    font-size: calc(var(--cnvs-heading-block-font-size-h1) / 1.5);
}

.heading-block h2 + span, .heading-block .h2 + span, .heading-block h3 + span, .heading-block .h3 + span, .heading-block h4 + span, .heading-block .h4 + span {
    font-size: calc(var(--cnvs-heading-block-font-size-h2) / 1.75);
}

.heading-block::after {
    content: "";
    display: block;
    margin-top: 30px;
    width: var(--cnvs-title-block-border-size);
    border-top: var(--cnvs-heading-block-border);
}

.center .heading-block::after, .text-center .heading-block::after, .heading-block.center::after, .heading-block.text-center::after {
    margin: 30px auto 0;
}

@media (min-width: 768px) {
    .text-md-start .heading-block::after {
        margin-left: 0 !important;
    }
}

.text-end .heading-block, .heading-block.text-end, .heading-block.title-right {
    direction: rtl;
}

.heading-block.border-0::after, .heading-block.border-bottom-0::after {
    display: none;
}

.heading-block.border-color::after {
    border-color: var(--cnvs-themecolor);
}

.emphasis-title {
    --cnvs-emphasis-title-font-size: 64px;
    margin: 0 0 50px;
}

.emphasis-title h1, .emphasis-title .h1, .emphasis-title h2, .emphasis-title .h2 {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--cnvs-contrast-900);
    font-weight: 400;
    text-transform: none;
    font-size: var(--cnvs-emphasis-title-font-size);
    letter-spacing: -2px;
}

.emphasis-title h1 strong, .emphasis-title .h1 strong, .emphasis-title h2 strong, .emphasis-title .h2 strong {
    font-weight: 600;
}

.fancy-title {
    --cnvs-fancy-title-bg: #fff;
    --cnvs-fancy-title-padding: 0.75rem;
    --cnvs-fancy-title-border-size: 1px;
    --cnvs-fancy-title-border-color: rgba(var(--cnvs-contrast-rgb), 0.1);
    --cnvs-fancy-title-dotted-border: images/icons/dotted.png;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.fancy-title h1, .fancy-title .h1, .fancy-title h2, .fancy-title .h2, .fancy-title h3, .fancy-title .h3, .fancy-title h4, .fancy-title .h4, .fancy-title h5, .fancy-title .h5, .fancy-title h6, .fancy-title .h6 {
    position: relative;
    margin-bottom: 0;
}

.fancy-title::before, .fancy-title::after {
    content: "";
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    height: 0;
    border-top: calc(var(--cnvs-fancy-title-border-size) * 3) double rgba(var(--cnvs-contrast-rgb), 0.1);
}

.fancy-title::before {
    display: none;
    margin-right: var(--cnvs-fancy-title-padding);
}

.fancy-title::after {
    margin-left: var(--cnvs-fancy-title-padding);
}

.title-border::before, .title-border::after {
    border-top-width: var(--cnvs-fancy-title-border-size);
    border-top-style: solid;
}

.title-border-color::before, .title-border-color::after {
    border-top: var(--cnvs-fancy-title-border-size) solid var(--cnvs-themecolor);
}

.title-center::before {
    display: block;
}

.title-right::before {
    display: block;
}

.title-right::after {
    display: none;
}

.title-bottom-border::before, .title-bottom-border::after {
    display: none;
}

.title-bottom-border h1, .title-bottom-border .h1, .title-bottom-border h2, .title-bottom-border .h2, .title-bottom-border h3, .title-bottom-border .h3, .title-bottom-border h4, .title-bottom-border .h4, .title-bottom-border h5, .title-bottom-border .h5, .title-bottom-border h6, .title-bottom-border .h6 {
    width: 100%;
    padding: 0 0 var(--cnvs-fancy-title-padding);
    border-bottom: calc(var(--cnvs-fancy-title-border-size) * 2) solid var(--cnvs-themecolor);
}

:root {
    --cnvs-before-heading-font-size: 1rem;
    --cnvs-before-heading-font-weight: 400;
    --cnvs-before-heading-font-family: var(--cnvs-secondary-font);
    --cnvs-before-heading-ls: 0px;
    --cnvs-before-heading-tt: none;
    --cnvs-before-heading-fst: normal;
    --cnvs-before-heading-color: var(--cnvs-contrast-600);
    --cnvs-before-heading-margin-bottom: 0.25rem;
}

.before-heading {
    display: block;
    margin: 0 0 var(--cnvs-before-heading-margin-bottom);
    font-size: var(--cnvs-before-heading-font-size);
    font-weight: var(--cnvs-before-heading-font-weight);
    font-family: var(--cnvs-before-heading-font-family);
    font-style: normal;
    letter-spacing: var(--cnvs-before-heading-ls);
    text-transform: var(--cnvs-before-heading-tt);
    color: var(--cnvs-before-heading-color);
}

.divider {
    --cnvs-divider-margin: 3rem;
    --cnvs-divider-gap: 0.5rem;
    --cnvs-divider-color: var(--cnvs-contrast-200);
    --cnvs-divider-hover-color: var(--cnvs-contrast-600);
    --cnvs-divider-size: 18px;
    --cnvs-divider-width: 100%;
    --cnvs-divider-border-width: 1px;
    --cnvs-divider-border-style: solid;
    --cnvs-divider-border-color: var(--cnvs-divider-color);
    --cnvs-divider-bg-color: var(--cnvs-contrast-200);
    --cnvs-divider-rounded-color: var(--cnvs-contrast-600);
    --cnvs-divider-icon-border-width: var(--cnvs-divider-border-width);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: var(--cnvs-divider-margin) auto;
    width: var(--cnvs-divider-width);
}

.divider.divider-rounded, .divider.divider-border {
    --cnvs-divider-icon-border-width: 0px;
    --cnvs-divider-rounded-size: calc(var(--cnvs-divider-size) * 1.6666666667);
    --cnvs-divider-line-height: calc(var(--cnvs-divider-rounded-size) - calc(var(--cnvs-divider-icon-border-width) * 2));
    --cnvs-divider-color: var(--cnvs-contrast-400);
    --cnvs-divider-border-color: var(--cnvs-contrast-200);
    --cnvs-divider-gap: 0;
}

.divider.divider-border {
    --cnvs-divider-icon-border-width: 1px;
    --cnvs-divider-bg-color: transparent;
}

.divider.divider-margin-lg {
    --cnvs-divider-margin: 5rem;
}

.divider::after, .divider::before {
    content: "";
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    border-bottom: var(--cnvs-divider-border-width) var(--cnvs-divider-border-style) var(--cnvs-divider-border-color);
}

.divider::before {
    display: none;
    margin-right: var(--cnvs-divider-gap);
}

.divider::after {
    margin-left: var(--cnvs-divider-gap);
}

.divider i, .divider a, .divider-text {
    position: relative;
    flex: 0 0 auto;
    width: var(--cnvs-divider-size);
    max-width: 100%;
    line-height: 1;
    font-size: calc(var(--cnvs-divider-size) * 0.75) !important;
    text-align: center;
    color: var(--cnvs-divider-color);
}

.divider a, .divider-text {
    width: auto;
    color: inherit;
    transition: all 0.3s ease;
}

.divider-text {
    --cnvs-divider-size: calc(var(--cnvs-divider-size) * 0.6);
}

.divider a:hover {
    color: var(--cnvs-divider-hover-color);
}

.divider.divider-right::before {
    display: block;
}

.divider.divider-right::after {
    display: none;
}

.divider.divider-center::before {
    display: block;
}

.divider.divider-rounded i, .divider.divider-border i {
    width: var(--cnvs-divider-rounded-size);
    height: var(--cnvs-divider-rounded-size);
    line-height: var(--cnvs-divider-line-height);
    background-color: var(--cnvs-divider-bg-color);
    border-radius: 50%;
    border: var(--cnvs-divider-icon-border-width) var(--cnvs-divider-border-style) var(--cnvs-divider-border-color);
}

.divider.divider-rounded i {
    color: var(--cnvs-divider-rounded-color);
}

.divider.divider-line {
    --cnvs-divider-gap: 0;
}

.divider.divider-thick {
    --cnvs-divider-border-width: 3px;
    --cnvs-divider-icon-border-width: 3px;
}

.divider.divider-sm {
    --cnvs-divider-width: 55%;
}

.divider.divider-xs {
    --cnvs-divider-width: 35%;
}

#infscr-loading, #portfolio-ajax-loader {
    --cnvs-ajax-loader-size: 48px;
    position: fixed;
    z-index: 20;
    top: 50%;
    left: 50%;
    width: var(--cnvs-ajax-loader-size);
    height: var(--cnvs-ajax-loader-size);
    margin: calc(-1 * var(--cnvs-ajax-loader-size)) 0 0 calc(-1 * var(--cnvs-ajax-loader-size));
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 3px;
    line-height: var(--cnvs-ajax-loader-size);
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
}

#infscr-loading img, #portfolio-ajax-loader img {
    display: none;
    width: var(--cnvs-ajax-loader-size);
    height: var(--cnvs-ajax-loader-size);
    margin: 12px;
}

#portfolio-ajax-loader {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 0;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    transition: all 0.3s ease;
}

#portfolio-ajax-loader img {
    display: block;
}

#portfolio-ajax-loader.loader-overlay-display {
    opacity: 1;
    z-index: 9999;
}

.portfolio-ajax-trigger > i:nth-child(1), .portfolio-ajax-loading .portfolio-ajax-trigger > i:nth-child(2) {
    display: block;
}

.portfolio-ajax-loading .portfolio-ajax-trigger > i:nth-child(1), .portfolio-ajax-trigger > i:nth-child(2) {
    display: none;
}

.page-load-status {
    position: relative;
    display: none;
    padding: 30px 0;
}

.page-load-status .css3-spinner-ball-pulse-sync > div {
    background-color: var(--cnvs-contrast-900);
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: var(--cnvs-font-size-h4);
    border-left: 5px solid var(--cnvs-contrast-200);
}

blockquote.float-start {
    max-width: 300px;
    margin: 5px 20px 10px 0;
    padding-right: 0;
}

blockquote.float-end {
    max-width: 300px;
    margin: 5px 0 10px 20px;
    padding-left: 0;
}

.blockquote-reverse {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid var(--cnvs-contrast-200);
    border-left: 0;
    text-align: right;
}

.blockquote-reverse.quote::before {
    content: "\f6b0";
    font-family: "bootstrap-icons";
    display: inline-flex;
    align-self: center;
    justify-self: center;
    line-height: inherit;
    left: auto;
    right: 0;
}

.blockquote-footer {
    font-family: var(--cnvs-secondary-font);
    font-size: 85%;
}

.blockquote-icon > * {
    position: absolute;
    left: -1.125rem;
    top: -3px;
    width: 1.75rem;
    height: 1.75rem;
    z-index: 1;
}

.blockquote-icon > * :nth-child(2) {
    margin-left: 0.5rem;
    opacity: 0.4;
    z-index: 0;
}

.quote {
    --cnvs-quote-icon-size: 48px;
    border: none !important;
    position: relative;
}

.quote p {
    position: relative;
}

.quote::before {
    content: "\f6b0";
    font-family: "bootstrap-icons";
    display: inline-flex;
    align-self: center;
    justify-self: center;
    line-height: inherit;
    position: absolute;
    width: var(--cnvs-quote-icon-size);
    height: var(--cnvs-quote-icon-size);
    line-height: var(--cnvs-quote-icon-size);
    font-size: calc(var(--cnvs-quote-icon-size) - 6px);
    top: 0;
    left: 0;
    color: var(--cnvs-contrast-200);
}

.cascading-images, .cascading-images-inner, .cascading-image {
    position: relative;
    --cnvs-cascading-padding: 20%;
}

.cascading-image {
    padding: var(--cnvs-cascading-padding);
}

.cascading-image:not(:first-child) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.cascading-image > * {
    position: relative;
}

.cascading-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cascading-image-bg > * {
    width: 100%;
    height: 100%;
}

.hover-3d {
    --cnvs-hover-3d-duration: .2s;
    --cnvs-hover-3d-easing: linear;
    display: block;
    transition: all var(--cnvs-hover-3d-duration) var(--cnvs-hover-3d-easing);
}

.text-splitter.scroll-detect span {
    opacity: calc(0.1 + 1 * var(--cnvs-scroll-percent));
    transform: rotateX(20deg);
    transition: all 0.3s ease;
    transition-delay: 0s;
}

.text-splitter.scroll-detect.scroll-detect-inview span {
    transform: rotateX(0);
    transition-delay: calc(0.04s * var(--cnvs-split-index));
}

.dropcap {
    float: left;
    font-size: 42px;
    line-height: 1;
    margin: 0 5px 0 0;
    text-transform: uppercase;
}

.highlight {
    padding: 2px 5px;
    background-color: #444;
    color: #fff;
    border-radius: 2px;
}

.text-rotater .t-rotate {
    display: none;
}

.text-rotater .t-rotate.morphext, .text-rotater .t-rotate.plugin-typed-init {
    display: inherit;
}

.typed-cursor {
    font-weight: 400;
}

.text-rotater > .t-rotate > .animated {
    display: inline-block;
}

.underliner {
    --cnvs-underliner-size: 30%;
    --cnvs-underliner-color: var(--cnvs-themecolor-rgb);
    --cnvs-underliner-opacity: 0.5;
    --cnvs-underliner-speed: 0.3s;
    position: relative;
    opacity: 1 !important;
    background-image: linear-gradient(to bottom, transparent calc(100% - var(--cnvs-underliner-size)), rgba(var(--cnvs-underliner-color), var(--cnvs-underliner-opacity)) calc(100% - var(--cnvs-underliner-size)));
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: background-size var(--cnvs-underliner-speed) cubic-bezier(0.14, 0.15, 0.13, 0.99);
}

.underliner:hover, .underliner.is-in-viewport {
    background-size: 100% 100%;
}

.bg-overlay, .bg-overlay-bg, .bg-overlay-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.bg-overlay {
    z-index: 5;
}

.bg-overlay [data-hover-animate]:not(.animated) {
    opacity: 0;
}

.bg-overlay-content {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 20px;
}

.bg-overlay-bg {
    --cnvs-bg-overlay-bg-opacity: 0.75;
    --cnvs-bg-overlay-bg: rgba(var(--cnvs-invert-contrast-rgb), var(--cnvs-bg-overlay-bg-opacity));
    background-color: var(--cnvs-bg-overlay-bg);
}

.text-overlay-mask {
    opacity: 0.85;
    top: auto;
    bottom: 0;
    height: auto;
    padding: 40px 15px 15px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#a6000000", GradientType=0);
}

.overlay-trigger-icon {
    --cnvs-bg-overlay-icon-size: 40px;
    --cnvs-bg-overlay-icon-gap: 0.25rem;
    --cnvs-bg-overlay-icon-font-size: 1.125rem;
    --cnvs-bg-overlay-icon-rounded: 50%;
    display: block;
    width: var(--cnvs-bg-overlay-icon-size);
    height: var(--cnvs-bg-overlay-icon-size);
    line-height: var(--cnvs-bg-overlay-icon-size);
    margin: 0 var(--cnvs-bg-overlay-icon-gap);
    font-size: var(--cnvs-bg-overlay-icon-font-size);
    text-align: center;
    border-radius: var(--cnvs-bg-overlay-icon-rounded);
    -webkit-backface-visibility: hidden;
    transition: all 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .overlay-trigger-icon {
        transition: none;
    }
}

.overlay-trigger-icon .uil-play {
    position: relative;
    left: 1px;
}

.overlay-trigger-icon:not([class * =text-white]):hover {
    color: var(--cnvs-themecolor) !important;
}

.overlay-trigger-icon.size-sm {
    --cnvs-bg-overlay-icon-size: 40px;
    --cnvs-bg-overlay-icon-gap: 0.5rem;
    --cnvs-bg-overlay-icon-font-size: 0.875rem;
}

.overlay-trigger-icon.size-lg {
    --cnvs-bg-overlay-icon-size: 64px;
    --cnvs-bg-overlay-icon-gap: 0.5rem;
    --cnvs-bg-overlay-icon-font-size: 1.5rem;
}

.bg-overlay-mask {
    --cnvs-bg-overlay-mask-color: #000;
    --cnvs-bg-overlay-mask-opacity: 0.55;
    position: relative;
}

.bg-overlay-mask::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--cnvs-bg-overlay-mask-color);
    opacity: var(--cnvs-bg-overlay-mask-opacity);
}

.gmap {
    position: relative;
    width: 100%;
    height: 450px;
}

.gmap img {
    max-width: none !important;
}

.gm-style .gm-style-iw h3 span, .gm-style .gm-style-iw .h3 span {
    font-size: inherit;
    font-family: inherit;
}

#map-overlay {
    position: relative;
    padding: 100px 0;
}

#map-overlay .gmap {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
}

#content .cse .gsc-control-cse, #content .gsc-control-cse, #content .gsc-above-wrapper-area, #content .gsc-adBlock, #content .gsc-thumbnail-inside, #content .gsc-url-top, #content .gsc-table-result, #content .gsc-webResult, #content .gsc-result {
    padding: 0 !important;
}

#content .gsc-selected-option-container {
    width: auto !important;
}

#content .gsc-result-info {
    padding-left: 0 !important;
}

#content .gsc-above-wrapper-area-container, #content .gsc-table-result {
    margin-bottom: 10px;
}

#content .gcsc-branding {
    display: none;
}

#content .gsc-results, #content .gsc-webResult {
    width: 100% !important;
}

#content .gs-no-results-result .gs-snippet, #content .gs-error-result .gs-snippet {
    margin: 0 !important;
}

.top-advert {
    padding: 5px;
    border-left: 1px solid var(--cnvs-contrast-200);
    border-right: 1px solid var(--cnvs-contrast-200);
}

.top-advert a, .top-advert img {
    display: block;
}

.bnews-title {
    display: block;
    float: left;
    margin-top: 2px;
    padding-top: 0.3em;
    text-transform: uppercase;
}

.bnews-slider {
    float: left;
    width: 970px;
    margin-left: 20px;
    min-height: 0;
}

#gotoTop {
    --cnvs-gotoTop-size: 2.5rem;
    --cnvs-gotoTop-bg: rgba(0, 0, 0, 0.3);
    --cnvs-gotoTop-icon-size: 1.5rem;
    --cnvs-gotoTop-icon-color: #fff;
    --cnvs-gotoTop-position-boxed-right: 30px;
    --cnvs-gotoTop-position-boxed-bottom: 50px;
    --cnvs-gotoTop-position-botom: 30px;
    --cnvs-gotoTop-border-radius: 2px;
    --cnvs-gotoTop-hover-color: var(--cnvs-themecolor);
    z-index: -999;
    position: fixed;
    width: var(--cnvs-gotoTop-size);
    height: var(--cnvs-gotoTop-size);
    line-height: var(--cnvs-gotoTop-size);
    background-color: var(--cnvs-gotoTop-bg);
    font-size: var(--cnvs-gotoTop-icon-size);
    text-align: center;
    color: var(--cnvs-gotoTop-icon-color);
    top: auto;
    left: auto;
    right: var(--cnvs-gotoTop-position-boxed-right);
    bottom: var(--cnvs-gotoTop-position-boxed-bottom);
    cursor: pointer;
    border-radius: var(--cnvs-gotoTop-border-radius);
    opacity: 0;
    transition: background-color 0.2s linear, opacity 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    #gotoTop {
        transition: none;
    }
}

.gototop-active #gotoTop {
    z-index: 599;
    opacity: 1;
}

.stretched #gotoTop {
    right: var(--cnvs-gotoTop-position-boxed-right);
    bottom: var(--cnvs-gotoTop-position-boxed-bottom);
}

#gotoTop:hover {
    background-color: var(--cnvs-gotoTop-hover-color);
}

.read-more-wrap {
    position: relative;
    overflow: hidden;
    transition: height 0.5s ease;
}

@media (prefers-reduced-motion: reduce) {
    .read-more-wrap {
        transition: none;
    }
}

.read-more-mask {
    position: absolute;
    z-index: 9;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 60px;
    height: 35%;
    background-image: linear-gradient(rgba(255, 255, 255, 0), white);
}

.dark .read-more-mask {
    background-image: linear-gradient(rgba(var(--bs-dark-rgb), 0), rgb(var(--bs-dark-rgb)));
}

.read-more-trigger {
    transition: all 0.5s ease;
}

@media (prefers-reduced-motion: reduce) {
    .read-more-trigger {
        transition: none;
    }
}

.read-more-trigger i {
    position: relative;
    top: 1px;
    margin-left: 3px;
}

.read-more-wrap .read-more-trigger {
    position: absolute;
    display: block;
    z-index: 10;
    top: auto;
    bottom: 5px;
    left: 4px;
    margin: 0;
}

.read-more-wrap .read-more-trigger-center {
    left: 50%;
    transform: translateX(-50%);
}

.read-more-wrap .read-more-trigger-right {
    left: auto;
    right: 5px;
}

.gdpr-settings {
    --cnvs-gdpr-settings-offset: 1rem;
    --cnvs-gdpr-settings-width: calc(100vw - calc(var(--cnvs-gdpr-settings-offset) * 2));
    --cnvs-gdpr-settings-height: 60vh;
    --cnvs-gdpr-settings-spacing: 3rem;
    position: fixed;
    max-width: var(--cnvs-gdpr-settings-width);
    max-height: var(--cnvs-gdpr-settings-height);
    overflow-y: auto;
    margin-bottom: var(--cnvs-gdpr-settings-offset);
    border-radius: 0.25rem;
    top: auto;
    bottom: 0;
    left: var(--cnvs-gdpr-settings-offset);
    right: var(--cnvs-gdpr-settings-offset);
    opacity: 0;
    padding: var(--cnvs-gdpr-settings-spacing);
    z-index: 999;
    background-color: var(--cnvs-contrast-100);
    transition: all 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .gdpr-settings {
        transition: none;
    }
}

.gdpr-settings-sm {
    --cnvs-gdpr-settings-width: 30rem;
    margin-right: var(--cnvs-gdpr-settings-offset);
}

.gdpr-settings-sm.gdpr-settings-right {
    left: auto;
    right: var(--cnvs-gdpr-settings-offset);
    margin-right: 0;
    margin-left: var(--cnvs-gdpr-settings-offset);
}

@media (min-width: 768px) {
    .gdpr-settings {
        max-height: none;
        overflow: auto;
    }
}

.gdpr-container {
    position: relative;
    height: auto;
}

.gdpr-container:not(.gdpr-content-active) {
    min-height: 250px;
}

.gdpr-container.gdpr-content-active {
    min-height: 0 !important;
}

.gdpr-container.gdpr-content-active .gdpr-blocked-message {
    display: none;
}

.gdpr-blocked-message {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gdpr-blocked-message a {
    text-underline-offset: 2px;
    transition: all var(--cnvs-transitions);
}

.gdpr-blocked-message a:hover {
    text-underline-offset: 4px;
}

.error404 {
    display: block;
    font-size: 18vw;
    font-weight: 700;
    color: #ddd;
    line-height: 1;
    letter-spacing: 4px;
}

.error404-wrap .container {
    z-index: 7;
}

.error404-wrap .error404 {
    line-height: 0.9;
    margin-bottom: 40px;
    font-weight: bold;
    font-size: 19vw;
    color: #fff !important;
    opacity: 0.2;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

.error404-wrap .heading-block h4, .error404-wrap .heading-block .h4 {
    font-weight: 300;
    margin-bottom: 8px;
}

.error404-wrap .heading-block span {
    font-size: 1.125rem;
}

.error404-wrap form {
    max-width: 500px;
}

.landing-wide-form {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 3px;
}

.landing-form-overlay {
    position: absolute;
    z-index: 10;
    top: auto;
    left: auto;
    right: 0;
    bottom: -154px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 3px 3px 0 0;
}

.landing-video {
    z-index: 1;
    width: 560px;
    height: 315px;
    margin: 22px 0 0 95px;
    overflow: hidden;
}

.landing-promo h3, .landing-promo .h3 {
    font-size: 1.75rem;
}

.landing-promo > .container > span {
    font-size: 1.125rem;
}

.nav-tree {
    position: relative;
    margin-bottom: 1.5rem;
}

.nav-tree ul {
    margin-bottom: 0;
    list-style: none;
}

.nav-tree ul ul {
    display: none;
}

.nav-tree ul ul a {
    padding: 6px 0;
    font-family: "Inter", sans-serif;
    padding-left: 20px;
}

.nav-tree ul ul ul a {
    padding-left: 40px;
}

.nav-tree ul ul ul ul a {
    padding-left: 60px;
}

.nav-tree ul ul ul ul ul a {
    padding-left: 80px;
}

.nav-tree > ul {
    margin: -8px 0;
}

.nav-tree li {
    position: relative;
}

.nav-tree li a {
    display: block;
    padding: 8px 0;
    color: var(--cnvs-heading-color);
    font-size: 1rem;
    font-family: var(--cnvs-primary-font);
    transition: transform;
}

.nav-tree li li a {
    font-size: calc(1rem - 2px);
}

.nav-tree li i {
    width: 16px;
    text-align: center;
}

.nav-tree li i:not(.sub-menu-indicator) {
    margin-right: 0.5rem;
    position: relative;
}

.nav-tree li i.sub-menu-indicator {
    font-size: calc(1rem * 0.85);
    width: auto;
    margin-left: 0.5rem;
    margin-right: 0;
    transition: transform 0.3s ease;
}

.nav-tree li:hover > a, .nav-tree li.current > a, .nav-tree li.active > a {
    color: var(--cnvs-themecolor) !important;
}

.nav-tree li.active > a .sub-menu-indicator {
    transform: rotate(90deg);
}

.nav-tree li.current > ul {
    display: block;
}

.wedding-head {
    position: relative;
    line-height: 1;
    font-size: 80px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
    font-family: var(--cnvs-primary-font);
}

.wedding-head .first-name, .wedding-head .last-name, .wedding-head .and {
    display: inline-block;
    margin-right: 15px;
    font-weight: bold;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.wedding-head .last-name {
    margin: 0 0 0 15px;
    text-align: left;
}

.wedding-head .first-name span, .wedding-head .last-name span {
    display: block;
    margin-top: 10px;
    font-size: 56px;
    font-weight: 400;
    font-style: italic;
    font-family: "Playfair Display", serif;
    text-transform: none;
}

.wedding-head .and {
    margin: 0;
    font-size: 200px;
    font-family: "Times New Roman", serif;
}

.switch-toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}

.switch-toggle + label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.switch {
    --cnvs-switch-width: 60px;
    --cnvs-switch-spacing: 1px;
    --cnvs-switch-bg: var(--cnvs-contrast-300);
    --cnvs-switch-active-bg: var(--cnvs-themecolor);
}

.switch-toggle + label {
    padding: calc(var(--cnvs-switch-spacing) * 2);
    width: var(--cnvs-switch-width);
    height: calc(var(--cnvs-switch-width) * 0.5);
    background-color: var(--cnvs-switch-bg);
    border-radius: 512px;
}

.switch-toggle + label::before, .switch-toggle + label::after {
    display: block;
    position: absolute;
    top: var(--cnvs-switch-spacing);
    left: var(--cnvs-switch-spacing);
    bottom: var(--cnvs-switch-spacing);
    content: "";
    border-radius: 512px;
}

.switch-toggle-round {
}

.switch-toggle-round + label::before {
    right: var(--cnvs-switch-spacing);
    background-color: var(--cnvs-contrast-200);
    transition: background 0.4s;
}

@media (prefers-reduced-motion: reduce) {
    .switch-toggle-round + label::before {
        transition: none;
    }
}

.switch-toggle-round + label::after {
    width: calc(var(--cnvs-switch-width) * 0.5 - var(--cnvs-switch-spacing) * 2);
    background-color: var(--cnvs-body-bg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: margin 0.4s;
}

@media (prefers-reduced-motion: reduce) {
    .switch-toggle-round + label::after {
        transition: none;
    }
}

.switch-toggle-round:checked + label::before {
    background-color: var(--cnvs-switch-active-bg);
}

.switch-toggle-round:checked + label::after {
    margin-left: calc(var(--cnvs-switch-width) * 0.5);
}

.switch-toggle-round.switch-rounded-mini + label {
    --cnvs-switch-width: 32px;
}

.switch-toggle-round.switch-rounded-large + label {
    --cnvs-switch-width: 90px;
}

.switch-toggle-round.switch-rounded-xlarge + label {
    --cnvs-switch-width: 120px;
}

.switch-toggle-flat {
    transition: background 0.4s;
}

@media (prefers-reduced-motion: reduce) {
    .switch-toggle-flat {
        transition: none;
    }
}

.switch-toggle-flat + label::before {
    top: calc(var(--cnvs-switch-spacing) * 2);
    left: calc(var(--cnvs-switch-spacing) * 2);
    bottom: calc(var(--cnvs-switch-spacing) * 2);
    right: calc(var(--cnvs-switch-spacing) * 2);
    background-color: #FFF;
    transition: background 0.4s;
}

@media (prefers-reduced-motion: reduce) {
    .switch-toggle-flat + label::before {
        transition: none;
    }
}

.switch-toggle-flat + label::after {
    top: calc(var(--cnvs-switch-spacing) * 4);
    left: calc(var(--cnvs-switch-spacing) * 4);
    bottom: calc(var(--cnvs-switch-spacing) * 4);
    width: calc(var(--cnvs-switch-width) * 0.5 - var(--cnvs-switch-spacing) * 8);
    background-color: var(--cnvs-switch-bg);
    transition: margin 0.4s, background 0.4s;
}

@media (prefers-reduced-motion: reduce) {
    .switch-toggle-flat + label::after {
        transition: none;
    }
}

.switch-toggle-flat:checked + label {
    background-color: var(--cnvs-switch-active-bg);
}

.switch-toggle-flat:checked + label::after {
    margin-left: calc(var(--cnvs-switch-width) * 0.5);
    background-color: var(--cnvs-switch-active-bg);
}

.switch-toggle-flat.switch-flat-mini + label {
    --cnvs-switch-width: 32px;
    --cnvs-switch-spacing: .5px;
}

.switch-toggle-flat.switch-flat-large + label {
    --cnvs-switch-width: 90px;
}

.switch-toggle-flat.switch-flat-xlarge + label {
    --cnvs-switch-width: 120px;
}

.show-error-msg .switch + label.error {
    display: block !important;
}

.switch input[type=checkbox].error + label {
    border: 1px solid var(--bs-danger);
}

.switch input[type=checkbox].error + label::before {
    background-color: rgba(var(--bs-danger-rgb), 0.1);
}

#driver-highlighted-element-stage {
    opacity: 0;
}

.driver-popover-tip::before, .driver-popover-tip ::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    margin-left: calc(-1 * var(--cnvs-driver-popover-tip-size) * 0.5);
    width: var(--cnvs-driver-popover-tip-size);
    height: var(--cnvs-driver-popover-tip-size);
    border-radius: 50%;
    background-color: var(--cnvs-driver-popover-tip-bg);
}

.driver-popover-tip.top::before, .driver-popover-tip.top::after {
    top: -20px;
    left: 0;
    margin-left: calc(-1 * var(--cnvs-driver-popover-tip-size) * 0.5);
}

.driver-popover-tip.bottom::before, .driver-popover-tip.bottom::after {
    top: 5px;
    bottom: auto;
}

.driver-popover-tip.left::before, .driver-popover-tip.left::after {
    top: calc(-1 * var(--cnvs-driver-popover-tip-size) * 0.5);
    left: calc(-1 * var(--cnvs-driver-popover-tip-size));
}

.driver-popover-tip.right::before, .driver-popover-tip.right::after {
    top: calc(-1 * var(--cnvs-driver-popover-tip-size) * 0.5);
    left: auto;
    right: calc(-1 * var(--cnvs-driver-popover-tip-size));
}

.driver-popover-tip::before {
    animation: pulsate 3s ease-out infinite;
}

@keyframes pulsate {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}

@media (prefers-reduced-motion: reduce) {
    .driver-popover-tip::before {
        animation: none;
    }
}

div#driver-popover-item {
    --cnvs-driver-popover-tip-size: 14px;
    --cnvs-driver-popover-tip-bg: #fff;
    padding: 25px;
}

div#driver-popover-item .driver-popover-title {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

div#driver-popover-item .driver-popover-description {
    display: block;
    margin-bottom: 25px;
    font-size: 0.925rem;
    line-height: 1.5;
}

div#driver-popover-item .driver-popover-footer button {
    padding: 7px 13px;
    font-size: 0.75rem;
    background-color: var(--bs-light);
}

@media (max-width: 768px) {
    div#driver-popover-item {
        position: fixed;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%);
    }

    .driver-popover-tip {
        display: none;
    }
}

.cnvs-cursor {
    --cnvs-cursor-size: 0.75rem;
    --cnvs-cursor-bg: var(--cnvs-themecolor);
    --cnvs-cursor-opacity: 0.15;
    --cnvs-cursor-border-opacity: 1;
    --cnvs-cursor-action-size: 4rem;
    --cnvs-cursor-action-bg: var(--cnvs-themecolor);
    --cnvs-cursor-action-opacity: 0.35;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate3d(0, 0, 0);
    z-index: 999999;
    transition: transform 0.05s ease;
}

.cnvs-cursor-follower, .cnvs-cursor-dot {
    width: var(--cnvs-cursor-size);
    height: var(--cnvs-cursor-size);
    background: var(--cnvs-cursor-bg);
    opacity: var(--cnvs-cursor-opacity);
    border-radius: 50%;
    transition: 0.25s ease;
    transition-property: all;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    transform-origin: center center;
}

.cnvs-cursor-dot {
    --cnvs-cursor-size: 0.25rem;
    border: 0;
}

.cnvs-cursor.cnvs-cursor-action {
    --cnvs-cursor-size: var(--cnvs-cursor-action-size);
    --cnvs-cursor-bg: var(--cnvs-cursor-action-bg);
    --cnvs-cursor-opacity: var(--cnvs-cursor-action-opacity);
}

.cnvs-cursor.cnvs-cursor-action .cnvs-cursor-follower {
    border-color: transparent;
}

.cnvs-cursor.cnvs-cursor-border {
    --cnvs-cursor-opacity: var(--cnvs-cursor-border-opacity);
}

.cnvs-cursor.cnvs-cursor-border .cnvs-cursor-follower {
    background: transparent;
    border: 1px solid var(--cnvs-cursor-bg);
    opacity: var(--cnvs-cursor-opacity);
}

.cnvs-cursor.cnvs-cursor-border .cnvs-cursor-dot {
    background: var(--cnvs-cursor-bg);
    opacity: var(--cnvs-cursor-opacity);
}

.cnvs-cursor.cnvs-cursor-disabled {
    width: 0px !important;
    height: 0px !important;
    opacity: 0 !important;
}

.grid-border {
    overflow: hidden;
    --cnvs-grid-border-width: 1px;
    --cnvs-grid-border-color: var(--cnvs-contrast-900);
    --cnvs-grid-border-color-dark: #FFF;
    --cnvs-grid-border-opacity: 0.07;
}

.grid-border [class^=col-]::before, .grid-border [class^=col-]::after {
    content: "";
    position: absolute;
    border-width: 0;
    border-style: solid;
    border-color: var(--cnvs-grid-border-color);
    opacity: var(--cnvs-grid-border-opacity);
}

.grid-border [class^=col-]::before {
    height: 100%;
    top: 0;
    left: calc(-1 * var(--cnvs-grid-border-width));
    border-left-width: var(--cnvs-grid-border-width);
}

.grid-border [class^=col-]::after {
    width: 100%;
    height: 0;
    top: auto;
    left: 0;
    bottom: calc(-1 * var(--cnvs-grid-border-width));
    border-bottom-width: var(--cnvs-grid-border-width);
}

.media-wrap:not(.media-is-playing) .media-trigger-volume {
    display: none !important;
}

.media-is-playing .media-trigger-play, .media-wrap:not(.media-is-playing) .media-trigger-pause, .media-is-muted .media-trigger-mute, .media-wrap:not(.media-is-muted) .media-trigger-unmute {
    display: none !important;
}

.app-menu {
    --cnvs-app-menu-height: 70px;
    --cnvs-app-menu-icon-size: 1.25rem;
    --cnvs-app-menu-color: var(--cnvs-contrast-1000);
    --cnvs-app-menu-bg-color: var(--cnvs-contrast-100);
    --cnvs-app-menu-item-active-bg: var(--cnvs-contrast-rgb);
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: var(--cnvs-app-menu-bg-color);
    border-top: 1px solid rgba(var(--cnvs-app-menu-item-active-bg), 0.1);
    z-index: 999;
}

.app-menu-container {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
}

.app-menu-item {
    position: relative;
    flex: 1 0 0%;
}

.app-menu-item:hover > .app-menu-link, .app-menu-item.current > .app-menu-link {
    background-color: rgba(var(--cnvs-app-menu-item-active-bg), 0.1);
}

.app-menu.app-menu-style-2 .app-menu-item:hover > .app-menu-link, .app-menu.app-menu-style-2 .app-menu-item.current > .app-menu-link {
    position: relative;
    --cnvs-app-menu-item-active-bg: var(--cnvs-themecolor);
    background-color: var(--cnvs-contrast-0);
}

.app-menu.app-menu-style-2 .app-menu-item:hover > .app-menu-link::before, .app-menu.app-menu-style-2 .app-menu-item.current > .app-menu-link::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background-color: var(--cnvs-app-menu-item-active-bg);
}

.app-menu-link {
    --cnvs-app-menu-link-spacing: calc(var(--cnvs-app-menu-height) - var(--cnvs-app-menu-icon-size));
    display: block;
    width: 100%;
    padding: calc(var(--cnvs-app-menu-link-spacing) * 0.5 - 0.3125rem) 1rem calc(var(--cnvs-app-menu-link-spacing) * 0.5 + 0.3125rem);
    text-align: center;
    color: var(--cnvs-app-menu-color);
    transition: all 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
    .app-menu-link {
        transition: none;
    }
}

.app-menu-link > i {
    display: block;
    line-height: 1;
    font-size: var(--cnvs-app-menu-icon-size);
    height: var(--cnvs-app-menu-icon-size);
}

.app-menu-link > span {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.875rem;
}

.app-menu-item:hover > .app-menu-link {
    background-color: rgba(var(--cnvs-app-menu-item-active-bg), 0.05);
}

.circle-stack {
    --cnvs-circle-stack-size: 5rem;
    --cnvs-circle-stack-inset-ratio: .2;
    --cnvs-circle-stack-inset: calc(var(--cnvs-circle-stack-size) * var(--cnvs-circle-stack-inset-ratio));
    --cnvs-circle-stack-border-color: var(--cnvs-body-bg);
    --cnvs-circle-stack-border-size: 0.25rem;
    --cnvs-circle-stack-border-radius: 50%;
    --cnvs-circle-stack-fontsize: calc(var(--cnvs-circle-stack-size) * .35);
    --cnvs-circle-stack-color: var(--cnvs-contrast-900);
    --cnvs-circle-stack-bgcolor: var(--cnvs-contrast-200);
}

.circle-stack > * {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--cnvs-circle-stack-size);
    height: var(--cnvs-circle-stack-size);
    border: var(--cnvs-circle-stack-border-size) solid var(--cnvs-circle-stack-border-color);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: var(--cnvs-circle-stack-border-radius);
    color: var(--cnvs-circle-stack-color);
    font-size: var(--cnvs-circle-stack-fontsize);
    text-align: center;
    background-color: var(--cnvs-circle-stack-bgcolor);
}

.circle-stack > * :not(:first-child) {
    margin-left: calc(-1 * var(--cnvs-circle-stack-inset));
}

.circle-stack.flex-row-reverse > * :not(:first-child) {
    margin: 0 calc(-1 * var(--cnvs-circle-stack-inset)) 0 0;
}

.circle-stack.flex-column > * :not(:first-child) {
    margin: calc(-1 * var(--cnvs-circle-stack-inset)) 0 0 0;
}

.circle-stack.flex-column.flex-coumn-reverse > * :not(:first-child) {
    margin: calc(-1 * var(--cnvs-circle-stack-inset)) 0 0 0;
}

@keyframes tickerAnim {
    0% {
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes tickerAnimReverse {
    0% {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

.ticker-wrap {
    --cnvs-ticker-duration: 50s;
    --cnvs-ticker-gap: 2rem;
    position: relative;
    width: 100%;
    padding-left: 100%;
    box-sizing: content-box;
    overflow: hidden;
}

.ticker-wrap.ticker-reverse {
    padding-left: 0;
    padding-right: 100%;
}

.ticker-wrap .ticker {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    box-sizing: content-box;
    animation: var(--cnvs-ticker-duration) linear infinite;
    animation-name: tickerAnim;
}

.ticker-wrap .ticker .ticker-item {
    display: inline-block;
    padding: 0 var(--cnvs-ticker-gap);
    font-size: 1.5rem;
}

.ticker-wrap .ticker .ticker-item[href]:hover {
    text-decoration: underline !important;
}

.ticker-wrap.ticker-reverse .ticker {
    padding-right: 0;
    padding-left: 100%;
    animation-name: tickerAnimReverse;
}

.ticker-wrap.pause-on-hover .ticker:hover {
    animation-play-state: paused;
}

:root, .not-dark {
    --cnvs-form-processor-bg: #fff;
    --cnvs-input-btn-input-color: var(--bs-body-color);
    --cnvs-input-btn-input-bg: var(--bs-body-bg);
    --cnvs-input-btn-border-color: var(--bs-border-color);
    --cnvs-input-label-mb: 0.5rem;
    --cnvs-form-label-font-weight: 500;
    --cnvs-form-label-error: var(--bs-danger);
}

form {
    --cnvs-form-processor-bg: #fff;
    --cnvs-form-processor-bg-op: 0.7;
    --cnvs-form-group-margin: 1.25rem;
}

form .form-group {
    margin-bottom: var(--cnvs-form-group-margin);
}

.form-control {
    --cnvs-input-btn-padding-y: 0.375rem;
    --cnvs-input-btn-padding-x: 0.75rem;
    --cnvs-input-btn-font-size: 1rem;
    --cnvs-input-font-family:;
    --cnvs-input-btn-font-weight: 400;
    --cnvs-input-btn-line-height: 1.5;
    --cnvs-input-btn-input-color: var(--bs-body-color);
    --cnvs-input-btn-input-bg: var(--bs-body-bg);
    --cnvs-form-control-radius: var(--bs-border-radius);
    --cnvs-input-btn-border-width: var(--bs-border-width);
    --cnvs-input-btn-border-color: var(--bs-border-color);
    --cnvs-input-btn-padding-y-sm: 0.25rem;
    --cnvs-input-btn-padding-x-sm: 0.5rem;
    --cnvs-input-btn-font-size-sm: 0.875rem;
    --cnvs-input-btn-padding-y-lg: 0.5rem;
    --cnvs-input-btn-padding-x-lg: 1rem;
    --cnvs-input-btn-font-size-lg: 1.25rem;
    --cnvs-input-focus-color: var(--bs-body-color);
    --cnvs-input-focus-bg: var(--bs-body-bg);
    --cnvs-input-focus-border-color: #86b7fe;
    --cnvs-input-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    padding: var(--cnvs-input-btn-padding-y) var(--cnvs-input-btn-padding-x);
    font-size: var(--cnvs-input-btn-font-size);
    font-family: var(--cnvs-input-font-family);
    font-weight: var(--cnvs-input-btn-font-weight);
    line-height: var(--cnvs-input-btn-line-height);
    color: var(--cnvs-input-btn-input-color);
    background-color: var(--cnvs-input-btn-input-bg);
    border: var(--cnvs-input-btn-border-width) solid var(--cnvs-input-btn-border-color);
    border-radius: var(--cnvs-form-control-radius);
}

.form-control.error {
    border-color: var(--cnvs-form-label-error);
}

.form-control-sm {
    --cnvs-input-btn-padding-y: var(--cnvs-input-btn-padding-y-sm);
    --cnvs-input-btn-padding-x: var(--cnvs-input-btn-padding-x-sm);
    --cnvs-input-btn-font-size: var(--cnvs-input-btn-font-size-sm);
}

.form-control-lg {
    --cnvs-input-btn-padding-y: var(--cnvs-input-btn-padding-y-lg);
    --cnvs-input-btn-padding-x: var(--cnvs-input-btn-padding-x-lg);
    --cnvs-input-btn-font-size: var(--cnvs-input-btn-font-size-lg);
}

.form-control:focus {
    color: var(--cnvs-input-focus-color);
    background-color: var(--cnvs-input-focus-bg);
    border-color: var(--cnvs-input-focus-border-color);
    box-shadow: var(--cnvs-input-focus-box-shadow);
}

.form-control.border-form-control {
    --cnvs-input-btn-padding-x: 0;
    --cnvs-form-control-radius: 0;
    --cnvs-input-focus-box-shadow: none;
    background-color: transparent;
    border-top: transparent;
    border-right: transparent;
    border-left: transparent;
    border-bottom-width: var(--cnvs-input-btn-border-width);
}

label {
    margin-bottom: var(--cnvs-input-label-mb);
    font-weight: var(--cnvs-form-label-font-weight);
}

label.label-muted {
    color: rgba(13, 110, 253, 0.25);
    font-weight: normal;
    margin-right: 5px;
}

label.error {
    display: none !important;
    margin-top: 5px;
    color: var(--cnvs-form-label-error);
    font-weight: 400;
}

.show-error-msg + label.error, input[type=checkbox]:not(:checked) + label.error {
    display: block !important;
}

[data-condition]:not(.condition-fulfilled) {
    display: none !important;
}

.contact-form-overlay {
    position: relative;
    background-color: var(--cnvs-form-background);
    z-index: 10;
    border-radius: 4px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

.preloader, .form-process, .preloader2 {
    display: block;
    width: 100%;
    height: 100%;
    background: center center no-repeat var(--cnvs-input-btn-input-bg);
}

.preloader2 {
    background-color: transparent;
}

.form-process {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: transparent;
}

.form-process::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--cnvs-form-processor-bg);
    opacity: var(--cnvs-form-processor-bg-op);
    z-index: -1;
}

#footer {
    --cnvs-footer-top-border: 5px solid rgba(var(--cnvs-contrast-rgb), 0.15);
    --cnvs-copyrights-link-color: var(--cnvs-contrast-500);
    position: relative;
    background-color: var(--cnvs-footer-bg);
    border-top: var(--cnvs-footer-top-border);
}

@media (min-width: 992px) {
    .sticky-footer #slider:not(.slider-parallax-invisible), .sticky-footer #page-submenu, .sticky-footer #page-title, .sticky-footer #content {
        z-index: 2;
    }

    .sticky-footer #footer {
        position: sticky;
        top: auto;
        bottom: 0;
        left: 0;
    }
}

#footer .footer-widgets-wrap {
    position: relative;
    padding: var(--cnvs-content-padding) 0;
}

#copyrights {
    padding: calc(var(--cnvs-content-padding) * 0.5) 0;
    background-color: var(--cnvs-contrast-300);
    font-size: var(--cnvs-copyrights-font-size);
    line-height: var(--cnvs-line-height-content);
}

#copyrights i.footer-icon {
    position: relative;
    top: 1px;
    font-size: var(--cnvs-copyrights-font-size);
    width: var(--cnvs-copyrights-font-size);
    text-align: center;
    margin-right: 3px;
}

#copyrights .text-end a:last-child {
    margin-right: 0;
}

.copyright-links {
    margin-top: 0.5rem;
    color: var(--cnvs-copyrights-link-color);
}

.copyright-links a {
    display: inline-block;
    margin: 0 0.25rem;
    color: var(--cnvs-copyrights-link-color);
    border-bottom: 1px dotted var(--cnvs-copyrights-link-color);
}

.copyright-links a:hover {
    opacity: 0.91;
}

.copyright-links a:first-child {
    margin-left: 0;
}

.copyrights-menu {
    margin-bottom: 10px;
}

.copyrights-menu a {
    font-size: var(--cnvs-copyrights-font-size);
    margin: 0 10px;
    border-bottom: 0 !important;
}

.copyrights-menu a:first-child {
    margin-left: 0;
}

.footer-logo {
    display: block;
    margin-bottom: 30px;
}

:root, .not-dark {
    --cnvs-widget-border: 1px solid rgba(var(--cnvs-contrast-rgb), 0.1);
}

.widget {
    --cnvs-widget-border: 1px solid rgba(var(--cnvs-contrast-rgb), 0.1);
    --cnvs-widget-margin: 3rem;
    --cnvs-widget-title-margin: 1.5rem;
    --cnvs-widget-title-font-size: 0.9325rem;
    --cnvs-widget-title-font-weight: 600;
    --cnvs-widget-title-letter-spacing: 1px;
    --cnvs-widget-title-text-transform: uppercase;
    position: relative;
    margin-top: var(--cnvs-widget-margin);
}

.widget p {
    line-height: 1.7;
}

.sidebar-widgets-wrap .widget {
    padding-top: var(--cnvs-widget-margin);
    border-top: var(--cnvs-widget-border);
}

.sidebar-widgets-wrap .widget:first-child {
    padding-top: 0;
    border-top: 0;
}

.sidebar-widgets-wrap .widget > h4, .sidebar-widgets-wrap .widget > .h4 {
    letter-spacing: calc(var(--cnvs-widget-title-letter-spacing) + 1px);
}

.widget:first-child {
    margin-top: 0;
}

.widget > h4, .widget > .h4 {
    margin-bottom: var(--cnvs-widget-title-margin);
    font-size: var(--cnvs-widget-title-font-size);
    font-weight: var(--cnvs-widget-title-font-weight);
    letter-spacing: var(--cnvs-widget-title-letter-spacing);
    text-transform: var(--cnvs-widget-title-text-transform);
}

.widget_nav_menu ul, .widget_nav_menu li, .widget_links ul, .widget_links li, .widget_meta ul, .widget_meta li, .widget_archive ul, .widget_archive li, .widget_recent_comments ul, .widget_recent_comments li, .widget_recent_entries ul, .widget_recent_entries li, .widget_categories ul, .widget_categories li, .widget_pages ul, .widget_pages li, .widget_rss ul, .widget_rss li {
    list-style: none;
    margin: 0;
}

.widget_nav_menu li, .widget_links li, .widget_meta li, .widget_archive li, .widget_recent_comments li, .widget_recent_entries li, .widget_categories li, .widget_pages li, .widget_rss li {
    display: flex;
    padding: 0.25rem 0;
    font-size: 1rem;
}

.widget_nav_menu li a, .widget_links li a, .widget_meta li a, .widget_archive li a, .widget_recent_comments li a, .widget_recent_entries li a, .widget_categories li a, .widget_pages li a, .widget_rss li a {
    display: inline-block;
    padding: 0 0.25rem 0 0.75rem;
    border: none !important;
    color: var(--cnvs-heading-color);
}

.widget_nav_menu li a:hover, .widget_links li a:hover, .widget_meta li a:hover, .widget_archive li a:hover, .widget_recent_comments li a:hover, .widget_recent_entries li a:hover, .widget_categories li a:hover, .widget_pages li a:hover, .widget_rss li a:hover {
    color: var(--cnvs-themecolor);
}

.widget_nav_menu:not(.widget-li-noicon) li::before, .widget_links:not(.widget-li-noicon) li::before, .widget_meta:not(.widget-li-noicon) li::before, .widget_archive:not(.widget-li-noicon) li::before, .widget_recent_comments:not(.widget-li-noicon) li::before, .widget_recent_entries:not(.widget-li-noicon) li::before, .widget_categories:not(.widget-li-noicon) li::before, .widget_pages:not(.widget-li-noicon) li::before, .widget_rss:not(.widget-li-noicon) li::before {
    content: "\f231";
    font-family: "bootstrap-icons";
    display: inline-flex;
    align-self: center;
    justify-self: center;
    position: relative;
    font-size: 0.75rem;
    line-height: inherit;
    left: 0;
}

.widget_nav_menu.widget-li-noicon li a, .widget_links.widget-li-noicon li a, .widget_meta.widget-li-noicon li a, .widget_archive.widget-li-noicon li a, .widget_recent_comments.widget-li-noicon li a, .widget_recent_entries.widget-li-noicon li a, .widget_categories.widget-li-noicon li a, .widget_pages.widget-li-noicon li a, .widget_rss.widget-li-noicon li a {
    padding-left: 0;
}

.widget_nav_menu > ul, .widget_links > ul, .widget_meta > ul, .widget_archive > ul, .widget_recent_comments > ul, .widget_recent_entries > ul, .widget_categories > ul, .widget_pages > ul, .widget_rss > ul {
    margin-top: -4px !important;
}

.widget_nav_menu > ul > li:first-child, .widget_links > ul > li:first-child, .widget_meta > ul > li:first-child, .widget_archive > ul > li:first-child, .widget_recent_comments > ul > li:first-child, .widget_recent_entries > ul > li:first-child, .widget_categories > ul > li:first-child, .widget_pages > ul > li:first-child, .widget_rss > ul > li:first-child {
    border-top: 0 !important;
}

.widget_nav_menu ul ul, .widget_links ul ul, .widget_meta ul ul, .widget_archive ul ul, .widget_recent_comments ul ul, .widget_recent_entries ul ul, .widget_categories ul ul, .widget_pages ul ul, .widget_rss ul ul {
    margin-left: 1rem;
}

.widget_recent_comments li::before {
    content: "\f249";
}

.widget .testimonial.no-image .testi-image {
    display: none;
}

.widget .testimonial.twitter-scroll .testi-image {
    margin-right: 10px;
    width: 28px;
    height: 28px;
}

.widget .testimonial.twitter-scroll .testi-image a, .widget .testimonial.twitter-scroll .testi-image img, .widget .testimonial.twitter-scroll .testi-image i {
    width: 28px;
    height: 28px;
}

.widget .testimonial.twitter-scroll .testi-image i {
    background-color: var(--cnvs-contrast-100);
    line-height: 28px;
    font-size: 0.875rem;
    color: var(--cnvs-contrast-300);
}

.widget .testimonial:not(.twitter-scroll) .testi-image, .widget .testimonial:not(.twitter-scroll) .testi-image a, .widget .testimonial:not(.twitter-scroll) .testi-image img {
    width: 42px;
    height: 42px;
}

.widget .testimonial p {
    font-size: 0.875rem;
}

@media (min-width: 768px) and(max-width: 991.98px) {
    .sidebar-widgets-wrap {
        position: relative;
        display: -ms-flex;
        display: flex;
        flex-wrap: wrap;
        margin: 0 -20px -40px -20px;
    }

    .sidebar-widgets-wrap .widget {
        flex: 0 0 50%;
        max-width: 50%;
        margin: 0 0 40px 0;
        padding-top: 0;
        padding-left: 20px;
        padding-right: 20px;
        border-top: 0;
    }
}

.quick-contact-widget.form-widget .form-control, .quick-contact-widget.form-widget .input-group, .quick-contact-widget.form-widget .sm-form-control {
    margin-bottom: 10px;
}

.quick-contact-widget.form-widget .form-control {
    margin-bottom: 0;
}

.quick-contact-widget.form-widget form, #template-contactform {
    position: relative;
}

.subscribe-widget h5, .subscribe-widget .h5 {
    font-weight: 300;
    font-size: 0.875rem;
    line-height: 1.5;
}

.widget-twitter-feed .twitter-feed {
    --cnvs-iconlist-size: 1.5rem;
    --cnvs-iconlist-offset: 0.375rem;
    --cnvs-iconlist-gutter: 1rem;
}

.widget-twitter-feed .twitter-feed li:not(:first-child) {
    margin-top: 1.125rem;
}

.widget-twitter-feed .twitter-feed li div {
    font-size: 1rem;
}

.widget-twitter-feed .twitter-feed small, .widget-twitter-feed .twitter-feed .small {
    display: block;
    margin-top: 0.25rem;
}

.widget-twitter-feed .twitter-feed small a:not(:hover), .widget-twitter-feed .twitter-feed .small a:not(:hover) {
    color: var(--cnvs-contrast-600);
}

.widget-filter-links ul {
    list-style: none;
    margin-bottom: 0;
}

.widget-filter-links .widget-filter-reset {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    font-size: 12px;
    line-height: 22px;
}

.widget-filter-links .widget-filter-reset a {
    color: red !important;
}

.widget-filter-links .widget-filter-reset.active-filter {
    display: none;
}

.widget-filter-links:not(:first-child) .widget-filter-reset {
    top: 50px;
}

.widget-filter-links li {
    position: relative;
    font-size: 15px;
    line-height: 24px;
}

.widget-filter-links li:not(:first-child) {
    margin-top: 10px;
}

.widget-filter-links li a {
    display: block;
    color: var(--cnvs-heading-color);
    font-family: var(--cnvs-primary-font);
    font-weight: 500;
}

.widget-filter-links li span {
    margin-left: 0.25rem;
    font-size: 11px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    color: var(--cnvs-contrast-600);
    background-color: var(--cnvs-contrast-200);
    border-radius: 50%;
}

.widget-filter-links li span:not(.d-inline-block) {
    position: absolute;
    top: 1px;
    left: auto;
    right: 0;
}

.widget-filter-links li:hover a {
    color: var(--cnvs-contrast-600);
}

.widget-filter-links li.active-filter a {
    font-weight: 700;
}

.widget-filter-links li.active-filter span {
    color: #fff !important;
    background-color: var(--cnvs-themecolor) !important;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.tagcloud {
    margin-bottom: -2px;
    display: flex;
    flex-wrap: wrap;
}

.tagcloud a {
    margin-right: 4px;
    margin-bottom: 4px;
    padding: 3px 6px;
    border: 1px solid var(--cnvs-contrast-300);
    font-size: 13px !important;
    color: var(--cnvs-contrast-700);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .tagcloud a {
        transition: none;
    }
}

.tagcloud a:hover {
    border-color: var(--cnvs-themecolor) !important;
    color: var(--cnvs-themecolor) !important;
}

:root, .not-dark {
    --cnvs-pagination-circle-size: 35px;
    --cnvs-pagination-margin: 5px;
    --bs-pagination-hover-color: var(--cnvs-contrast-0);
}

.pagination {
    --bs-pagination-color: var(--cnvs-themecolor);
    --bs-pagination-hover-bg: var(--cnvs-themecolor);
    --bs-pagination-hover-color: var(--cnvs-contrast-0);
    --bs-pagination-hover-border-color: var(--bs-pagination-hover-bg);
    --bs-pagination-active-bg: var(--bs-pagination-hover-bg);
    --bs-pagination-active-border-color: var(--bs-pagination-hover-border-color);
}

.pagination.pagination-circle .page-item .page-link {
    --bs-pagination-padding-x: 0;
    --bs-pagination-padding-y: 0;
    --bs-pagination-border-radius: 50%;
    width: var(--cnvs-pagination-circle-size);
    height: var(--cnvs-pagination-circle-size);
    line-height: calc(var(--cnvs-pagination-circle-size) - var(--bs-pagination-border-width) * 2);
    text-align: center;
}

.pagination.pagination-circle.pagination-lg {
    --cnvs-pagination-circle-size: 56px;
}

.pagination.pagination-circle.pagination-sm {
    --cnvs-pagination-circle-size: 26px;
}

.pagination:not(.pagination-circle):not(.pagination-rounded) .page-item:not(:first-child):not(:last-child) {
    --bs-pagination-border-radius: 0;
}

.pagination:not(.pagination-circle):not(.pagination-rounded) .page-item:first-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pagination:not(.pagination-circle):not(.pagination-rounded) .page-item:last-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pagination.pagination-rounded {
    --bs-pagination-border-radius: 4px;
}

.pagination.pagination-circle .page-item:not(:first-child) .page-link, .pagination.pagination-rounded .page-item:not(:first-child) .page-link {
    margin-left: var(--cnvs-pagination-margin);
}

.pagination.pagination-circle.pagination-lg {
    --cnvs-pagination-margin: 8px;
}

.pagination.pagination-circle.pagination-sm {
    --cnvs-pagination-margin: 3px;
}

.pagination.pagination-3d .page-item .page-link {
    border-bottom: 3px solid rgba(var(--cnvs-contrast-rgb), 0.15) !important;
}

.pagination.pagination-transparent .page-item .page-link {
    --bs-pagination-border-width: 0px;
}

.pagination.pagination-inside-transparent .page-item .page-link:not(:hover) {
    --bs-pagination-color: var(--cnvs-contrast-900);
}

.pagination.pagination-inside-transparent .page-item:not(:first-child):not(:nth-child(2)):not(:nth-last-child(1)) .page-link {
    border-left: 0;
}

.pagination.pagination-inside-transparent .page-item.active .page-link, .pagination.pagination-inside-transparent .page-link:hover, .pagination.pagination-inside-transparent .page-link:focus {
    --bs-pagination-border-color: transparent !important;
}

.pagination.pagination-inside-transparent.pagination-button .page-item:not(:first-child):not(:nth-last-child(1)) .page-link {
    --bs-pagination-border-width: 0;
}

.pagination.pagination-pill .page-item:first-child .page-link {
    border-top-left-radius: 10rem;
    border-bottom-left-radius: 10rem;
}

.pagination.pagination-pill .page-item:last-child .page-link {
    border-top-right-radius: 10rem;
    border-bottom-right-radius: 10rem;
}

.pagination.pagination-primary {
    --bs-pagination-bg: var(--bs-primary);
    --bs-pagination-border-color: var(--bs-primary);
    --bs-pagination-color: #FFF;
}

.pagination.pagination-secondary {
    --bs-pagination-bg: var(--bs-secondary);
    --bs-pagination-border-color: var(--bs-secondary);
    --bs-pagination-color: #FFF;
}

.pagination.pagination-success {
    --bs-pagination-bg: var(--bs-success);
    --bs-pagination-border-color: var(--bs-success);
    --bs-pagination-color: #FFF;
}

.pagination.pagination-info {
    --bs-pagination-bg: var(--bs-info);
    --bs-pagination-border-color: var(--bs-info);
    --bs-pagination-color: #FFF;
}

.pagination.pagination-warning {
    --bs-pagination-bg: var(--bs-warning);
    --bs-pagination-border-color: var(--bs-warning);
    --bs-pagination-color: #FFF;
}

.pagination.pagination-danger {
    --bs-pagination-bg: var(--bs-danger);
    --bs-pagination-border-color: var(--bs-danger);
    --bs-pagination-color: #FFF;
}

.pagination.pagination-light {
    --bs-pagination-bg: var(--bs-light);
    --bs-pagination-border-color: var(--bs-light);
    --bs-pagination-color: #FFF;
}

.pagination.pagination-dark {
    --bs-pagination-bg: var(--bs-dark);
    --bs-pagination-border-color: var(--bs-dark);
    --bs-pagination-color: #FFF;
}

.pagination.pagination-light {
    --bs-pagination-color: #222;
}

.table .success {
    color: var(--bs-success);
}

.table .info {
    color: var(--bs-info);
}

.table .warning {
    color: var(--bs-warning);
}

.table .danger {
    color: var(--bs-danger);
}

ul:not(.pagination) .page-link, ul:not(.pagination) .page-link:hover, ul:not(.pagination) .page-link:focus {
    color: var(--cnvs-themecolor);
}

.boot-tabs {
    margin-bottom: 20px !important;
}

.carousel-control .fa-chevron-left, .carousel-control .fa-chevron-right {
    position: absolute;
    top: 47.5%;
    z-index: 5;
    display: inline-block;
}

.carousel-control .fa-chevron-left {
    left: 50%;
}

.carousel-control .fa-chevron-right {
    right: 50%;
}

.responsive-utilities th small, .responsive-utilities th .small {
    display: block;
    font-weight: 400;
    color: var(--cnvs-contrast-500);
}

.show-grid [class^=col-] {
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid rgba(var(--cnvs-contrast-rgb), 0.15);
    background-color: rgba(var(--cnvs-contrast-rgb), 0.1);
}

.img-circle {
    border-radius: 50% !important;
}

ul:not(.pagination) .page-item.active .page-link, ul:not(.pagination) .page-link:hover, ul:not(.pagination) .page-link:focus {
    color: var(--cnvs-contrast-0) !important;
    background-color: var(--cnvs-themecolor) !important;
    border-color: var(--cnvs-themecolor) !important;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    background-color: var(--cnvs-themecolor);
}

label.radio, label.checkbox {
    padding-left: 20px;
}

.input-group-lg > .input-group-addon {
    line-height: 1;
}

.shape-divider {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape-divider[data-position=bottom] {
    top: auto;
    bottom: -1px;
}

.shape-divider[data-front=true] {
    z-index: 4;
}

.shape-divider svg {
    position: relative;
    width: 100%;
    width: calc(100% + 1.3px);
    height: 50px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}

.shape-divider[data-position=bottom], .shape-divider[data-flip-vertical=true] {
    transform: rotate(180deg);
}

.shape-divider[data-position=bottom][data-flip-vertical=true] {
    transform: rotate(0deg);
}

.shape-divider[data-flip=true] svg {
    transform: translateX(-50%) rotateY(180deg);
}

.shape-divider-fill {
    fill: var(--cnvs-body-bg);
    transform-origin: center;
    transform: rotateY(0deg);
}

.mb_YTVPlayer {
    display: block;
    transform: translateZ(0);
    transform-style: preserve-3d;
    perspective: 1000;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    animation-timing-function: linear;
}

.mb_YTVPlayer:focus {
    outline: 0;
}

.mb_YTVPlayer.fullscreen {
    display: block !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    border: none !important;
}

.mb_YTVPlayer.fullscreen .mbYTP_wrapper {
    opacity: 1 !important;
}

.mbYTP_wrapper iframe {
    max-width: 4000px !important;
}

.inline_YTPlayer {
    margin-bottom: 20px;
    vertical-align: top;
    position: relative;
    left: 0;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.5);
}

.inline_YTPlayer img {
    border: none !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.datepicker td, .datepicker th {
    padding: 5px;
}

.rating-xl {
    font-size: 3rem !important;
}

.rating-lg {
    font-size: 2.5rem !important;
}

.rating-md {
    font-size: 2rem !important;
}

.rating-sm {
    font-size: 1.75rem !important;
}

.rating-xs {
    font-size: 1.25rem !important;
}

.rating-container .star {
    margin: 0 2px !important;
}

.rating-container .filled-stars {
    -webkit-text-stroke: 0px !important;
    text-shadow: none !important;
}

@keyframes fadeInDownSmall {
    from {
        opacity: 0;
        transform: translate3d(0, -50%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDownSmall {
    animation-name: fadeInDownSmall;
}

@keyframes fadeInLeftSmall {
    from {
        opacity: 0;
        transform: translate3d(-50%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeftSmall {
    animation-name: fadeInLeftSmall;
}

@keyframes fadeInRightSmall {
    from {
        opacity: 0;
        transform: translate3d(50%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRightSmall {
    animation-name: fadeInRightSmall;
}

@keyframes fadeInUpSmall {
    from {
        opacity: 0;
        transform: translate3d(0, 50%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUpSmall {
    animation-name: fadeInUpSmall;
}

@keyframes fadeOutDownSmall {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, 50%, 0);
    }
}

.fadeOutDownSmall {
    animation-name: fadeOutDownSmall;
}

@keyframes fadeOutLeftSmall {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(-50%, 0, 0);
    }
}

.fadeOutLeftSmall {
    animation-name: fadeOutLeftSmall;
}

@keyframes fadeOutRightSmall {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(50%, 0, 0);
    }
}

.fadeOutRightSmall {
    animation-name: fadeOutRightSmall;
}

@keyframes fadeOutUpSmall {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, -50%, 0);
    }
}

.fadeOutUpSmall {
    animation-name: fadeOutUpSmall;
}

:root, .not-dark {
    --cnvs-loader-color: var(--cnvs-contrast-300);
}

.page-transition #wrapper:not(.animated) {
    position: relative;
    opacity: 0;
}

.page-transition #wrapper.animated {
    animation-fill-mode: both;
}

.page-transition-wrap, .css3-spinner {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    text-align: center;
    background-color: var(--cnvs-body-bg);
    animation-fill-mode: both;
    -webkit-perspective: 1000;
}

.css3-spinner {
    --cnvs-loader-color: var(--cnvs-contrast-300);
    position: relative;
    z-index: auto;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.css3-spinner > div {
    --cnvs-loader-width: auto;
    --cnvs-loader-height: var(--cnvs-loader-width);
    --cnvs-loader-gutters: 0;
    --cnvs-loader-radius: 100%;
    width: var(--cnvs-loader-width);
    height: var(--cnvs-loader-height);
    margin: 0 var(--cnvs-loader-gutters);
    background-color: var(--cnvs-loader-color);
    border-radius: var(--cnvs-loader-radius);
    display: inline-block;
    animation: bouncedelay 1.4s infinite ease-in-out;
    animation-fill-mode: both;
}

.css3-spinner > div > div {
    width: var(--cnvs-loader-width);
    height: var(--cnvs-loader-height);
    margin: 0 var(--cnvs-loader-gutters);
    border-radius: var(--cnvs-loader-radius);
}

.css3-spinner .css3-spinner-bounce1, .css3-spinner .css3-spinner-bounce2, .css3-spinner .css3-spinner-bounce3 {
    --cnvs-loader-width: 18px;
    --cnvs-loader-gutters: 3px;
}

.css3-spinner .css3-spinner-bounce1 {
    animation-delay: -0.32s;
}

.css3-spinner .css3-spinner-bounce2 {
    animation-delay: -0.16s;
}

@keyframes bouncedelay {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

.css3-spinner > .css3-spinner-flipper {
    --cnvs-loader-width: 32px;
    --cnvs-loader-radius: 0;
    animation: rotateplane 1.2s infinite ease-in-out;
}

@keyframes rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

.css3-spinner > .css3-spinner-double-bounce1, .css3-spinner > .css3-spinner-double-bounce2 {
    --cnvs-loader-width: 40px;
    --cnvs-loader-radius: 50%;
    position: absolute;
    opacity: 0.6;
    animation: cssspinnerbounce 2s infinite ease-in-out;
}

.css3-spinner > .css3-spinner-double-bounce2 {
    animation-delay: -1s;
}

@keyframes cssspinnerbounce {
    0%, 100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

.css3-spinner > .css3-spinner-rect1, .css3-spinner > .css3-spinner-rect2, .css3-spinner > .css3-spinner-rect3, .css3-spinner > .css3-spinner-rect4, .css3-spinner > .css3-spinner-rect5 {
    --cnvs-loader-width: 6px;
    --cnvs-loader-height: 30px;
    --cnvs-loader-gutters: 1px;
    --cnvs-loader-radius: 0;
    animation: stretchdelay 1.2s infinite ease-in-out;
}

.css3-spinner > .css3-spinner-rect2 {
    animation-delay: -1.1s;
}

.css3-spinner > .css3-spinner-rect3 {
    animation-delay: -1s;
}

.css3-spinner > .css3-spinner-rect4 {
    animation-delay: -0.9s;
}

.css3-spinner > .css3-spinner-rect5 {
    animation-delay: -0.8s;
}

@keyframes stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}

.css3-spinner > .css3-spinner-cube1, .css3-spinner > .css3-spinner-cube2 {
    --cnvs-loader-width: 16px;
    --cnvs-loader-radius: 0;
    animation: cubemove 1.8s infinite ease-in-out;
}

.css3-spinner > .css3-spinner-cube2 {
    animation-delay: -0.9s;
}

@keyframes cubemove {
    25% {
        transform: translateX(42px) rotate(-90deg) scale(0.5);
        -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
    }

    50% {
        transform: translateX(42px) translateY(42px) rotate(-179deg);
        -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
    }

    50.1% {
        transform: translateX(42px) translateY(42px) rotate(-180deg);
        -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
    }

    75% {
        transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
        -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    }

    100% {
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
}

.css3-spinner > .css3-spinner-scaler {
    --cnvs-loader-width: 40px;
    animation: scaleout 1s infinite ease-in-out;
}

@keyframes scaleout {
    0% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

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

.css3-spinner > .css3-spinner-grid-pulse {
    --cnvs-loader-width: 48px;
    display: flex;
    flex-wrap: wrap;
    background-color: transparent !important;
    animation: none;
}

.css3-spinner-grid-pulse > div {
    --cnvs-loader-width: 12px;
    --cnvs-loader-height: 12px;
    --cnvs-loader-gutters: 2px;
    background-color: var(--cnvs-loader-color);
    max-width: calc(var(--cnvs-loader-width) * 4);
    animation-fill-mode: both;
    display: inline-block;
    animation-name: ball-grid-pulse;
    animation-iteration-count: infinite;
    animation-delay: 0;
}

.css3-spinner-grid-pulse > div:nth-child(1) {
    animation-delay: 0.73s;
    animation-duration: 1.3s;
}

.css3-spinner-grid-pulse > div:nth-child(2) {
    animation-delay: 0.32s;
    animation-duration: 1.3s;
}

.css3-spinner-grid-pulse > div:nth-child(3) {
    animation-delay: 0.71s;
    animation-duration: 0.88s;
}

.css3-spinner-grid-pulse > div:nth-child(4) {
    animation-delay: 0.62s;
    animation-duration: 1.06s;
}

.css3-spinner-grid-pulse > div:nth-child(5) {
    animation-delay: 0.31s;
    animation-duration: 0.62s;
}

.css3-spinner-grid-pulse > div:nth-child(6) {
    animation-delay: -0.14s;
    animation-duration: 1.48s;
}

.css3-spinner-grid-pulse > div:nth-child(7) {
    animation-delay: -0.1s;
    animation-duration: 1.47s;
}

.css3-spinner-grid-pulse > div:nth-child(8) {
    animation-delay: 0.4s;
    animation-duration: 1.49s;
}

.css3-spinner-grid-pulse > div:nth-child(9) {
    animation-delay: 0.73s;
    animation-duration: 0.7s;
}

@keyframes ball-grid-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.5);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.css3-spinner > .css3-spinner-clip-rotate {
    --cnvs-loader-width: 33px;
    background-color: transparent !important;
    animation: none;
}

.css3-spinner-clip-rotate > div {
    border-radius: 100%;
    border: 2px solid var(--cnvs-loader-color);
    border-bottom-color: transparent !important;
    background: transparent !important;
    animation: rotate 1s 0s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(0.6);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.css3-spinner > .css3-spinner-ball-rotate {
    --cnvs-loader-width: 12px;
    --cnvs-loader-gutters: 10px;
    width: var(--cnvs-loader-width);
    height: var(--cnvs-loader-width);
    background-color: transparent !important;
    animation: ballrotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
    margin: 0;
}

.css3-spinner-ball-rotate > div {
    background-color: var(--cnvs-loader-color);
    border-radius: 100%;
    position: relative;
    margin: 0 !important;
}

.css3-spinner-ball-rotate > div:nth-child(1), .css3-spinner-ball-rotate > div:nth-child(3) {
    width: var(--cnvs-loader-width);
    height: var(--cnvs-loader-width);
    content: "";
    position: absolute;
    opacity: 0.7;
}

.css3-spinner-ball-rotate > div:nth-child(1) {
    top: 0px;
    left: calc(-1 * var(--cnvs-loader-width) - var(--cnvs-loader-gutters));
}

.css3-spinner-ball-rotate > div:nth-child(3) {
    top: 0px;
    left: calc(var(--cnvs-loader-width) + var(--cnvs-loader-gutters));
}

@keyframes ballrotate {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

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

.css3-spinner > .css3-spinner-zig-zag {
    --cnvs-loader-width: 12px;
    background-color: transparent !important;
    transform: translate(0px, 0px);
    animation: none;
}

.css3-spinner-zig-zag > div {
    background-color: var(--cnvs-loader-color);
    position: absolute;
    animation-fill-mode: both;
}

.css3-spinner-zig-zag > div:first-child {
    animation: ball-zig-deflect 1.5s 0s infinite linear;
}

.css3-spinner-zig-zag > div:last-child {
    animation: ball-zag-deflect 1.5s 0s infinite linear;
}

@keyframes ball-zig-deflect {
    17% {
        transform: translate(-15px, -30px);
    }

    34% {
        transform: translate(15px, -30px);
    }

    50% {
        transform: translate(0, 0);
    }

    67% {
        transform: translate(15px, -30px);
    }

    84% {
        transform: translate(-15px, -30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes ball-zag-deflect {
    17% {
        transform: translate(15px, 30px);
    }

    34% {
        transform: translate(-15px, 30px);
    }

    50% {
        transform: translate(0, 0);
    }

    67% {
        transform: translate(-15px, 30px);
    }

    84% {
        transform: translate(15px, 30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.css3-spinner > .css3-spinner-ball-scale-multiple {
    --cnvs-loader-width: 60px;
    background-color: transparent !important;
    animation: none;
}

.css3-spinner-ball-scale-multiple > div {
    background-color: var(--cnvs-loader-color);
    position: absolute;
    left: calc(50% - var(--cnvs-loader-width) / 2);
    top: calc(50% - var(--cnvs-loader-height) / 2);
    opacity: 0;
    animation: ball-scale-multiple 1.25s 0s linear infinite;
}

.css3-spinner-ball-scale-multiple > div:nth-child(2) {
    animation-delay: -0.4s;
}

.css3-spinner-ball-scale-multiple > div:nth-child(3) {
    animation-delay: -0.2s;
}

@keyframes ball-scale-multiple {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.css3-spinner > .css3-spinner-triangle-path {
    --cnvs-loader-width: 10px;
    background-color: transparent !important;
    transform: translate(-29.994px, -37.50938px);
    animation: none;
    width: auto;
    height: auto;
}

.css3-spinner-triangle-path > div {
    animation-fill-mode: both;
    position: absolute;
    background-color: var(--cnvs-loader-color);
}

.css3-spinner-triangle-path > div:nth-child(1) {
    animation: ball-triangle-path-1 2s 0s ease-in-out infinite;
}

.css3-spinner-triangle-path > div:nth-child(2) {
    animation: ball-triangle-path-2 2s 0s ease-in-out infinite;
}

.css3-spinner-triangle-path > div:nth-child(3) {
    animation: ball-triangle-path-3 2s 0s ease-in-out infinite;
}

.css3-spinner-triangle-path > div:nth-of-type(1) {
    top: 50px;
}

.css3-spinner-triangle-path > div:nth-of-type(2) {
    left: 25px;
}

.css3-spinner-triangle-path > div:nth-of-type(3) {
    top: 50px;
    left: 50px;
}

@keyframes ball-triangle-path-1 {
    33% {
        transform: translate(25px, -50px);
    }

    66% {
        transform: translate(50px, 0px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes ball-triangle-path-2 {
    33% {
        transform: translate(25px, 50px);
    }

    66% {
        transform: translate(-25px, 50px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes ball-triangle-path-3 {
    33% {
        transform: translate(-50px, 0px);
    }

    66% {
        transform: translate(-25px, -50px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

.css3-spinner > .css3-spinner-ball-pulse-sync {
    --cnvs-loader-width: 14px;
    --cnvs-loader-gutters: 3px;
    background-color: transparent !important;
    width: auto;
    height: auto;
    animation: none;
    margin: 0;
}

.css3-spinner-ball-pulse-sync > div {
    display: inline-block;
    background-color: var(--cnvs-loader-color);
    animation-fill-mode: both;
}

.css3-spinner-ball-pulse-sync > div:nth-child(0) {
    animation: ball-pulse-sync 0.7s -0.21s infinite ease-in-out;
}

.css3-spinner-ball-pulse-sync > div:nth-child(1) {
    animation: ball-pulse-sync 0.7s -0.14s infinite ease-in-out;
}

.css3-spinner-ball-pulse-sync > div:nth-child(2) {
    animation: ball-pulse-sync 0.7s -0.07s infinite ease-in-out;
}

.css3-spinner-ball-pulse-sync > div:nth-child(3) {
    animation: ball-pulse-sync 0.7s 0s infinite ease-in-out;
}

@keyframes ball-pulse-sync {
    33% {
        transform: translateY(10px);
        opacity: 0.85;
    }

    66% {
        transform: translateY(-10px);
        opacity: 0.7;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.css3-spinner > .css3-spinner-scale-ripple {
    --cnvs-loader-width: 50px;
    width: auto;
    height: auto;
    background-color: transparent !important;
    animation: none;
}

.css3-spinner-scale-ripple > div {
    animation-fill-mode: both;
    position: absolute;
    left: calc(50% - var(--cnvs-loader-width) / 2);
    top: calc(50% - var(--cnvs-loader-height) / 2);
    border: 2px solid var(--cnvs-loader-color);
    animation: ball-scale-ripple-multiple 1.4s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}

.css3-spinner-scale-ripple > div:nth-child(0) {
    animation-delay: -0.8s;
}

.css3-spinner-scale-ripple > div:nth-child(1) {
    animation-delay: -0.6s;
}

.css3-spinner-scale-ripple > div:nth-child(2) {
    animation-delay: -0.4s;
}

.css3-spinner-scale-ripple > div:nth-child(3) {
    animation-delay: -0.2s;
}

@keyframes ball-scale-ripple-multiple {
    0% {
        transform: scale(0.1);
        opacity: 1;
    }

    70% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        opacity: 0;
    }
}

:root {
    --cnvs-mfp-overlay-color: #0b0b0b;
    --cnvs-mfp-overlay-opacity: 0.9;
    --cnvs-mfp-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    --cnvs-mfp-popup-padding-left: 8px;
    --cnvs-mfp-popup-padding-left-mobile: 6px;
    --cnvs-mfp-z-index-base: 1040;
    --cnvs-mfp-controls-opacity: 0.65;
    --cnvs-mfp-controls-color: #FFF;
    --cnvs-mfp-inner-close-icon-color: #333;
    --cnvs-mfp-controls-text-color: #CCC;
    --cnvs-mfp-controls-text-color-hover: #FFF;
    --cnvs-mfp-preloader-size: 2rem;
    --cnvs-mfp-close-btn-size: 4rem;
    --cnvs-mfp-close-btn-font-size: 1.5rem;
    --cnvs-mfp-arrow-size: 4rem;
    --cnvs-mfp-title-padding: 1rem;
    --cnvs-mfp-title-border-radius: 0.25rem;
    --cnvs-mfp-link-color: #CCC;
    --cnvs-mfp-iframe-padding-top: 40px;
    --cnvs-mfp-iframe-background: #000;
    --cnvs-mfp-iframe-max-width: 900px;
    --cnvs-mfp-iframe-ratio: 9/16;
    --cnvs-mfp-image-background: #444;
    --cnvs-mfp-caption-title-color: #F3F3F3;
    --cnvs-mfp-caption-subtitle-color: #BDBDBD;
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: calc(var(--cnvs-mfp-z-index-base) + 2);
    overflow: hidden;
    position: fixed;
    background: var(--cnvs-mfp-overlay-color);
    opacity: var(--cnvs-mfp-overlay-opacity);
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: calc(var(--cnvs-mfp-z-index-base) + 3);
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 var(--cnvs-mfp-popup-padding-left);
    box-sizing: border-box;
}

.mfp-container::before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container::before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: calc(var(--cnvs-mfp-z-index-base) + 5);
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: var(--cnvs-mfp-controls-text-color);
    z-index: calc(var(--cnvs-mfp-z-index-base) + 4);
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--cnvs-mfp-preloader-size);
    height: var(--cnvs-mfp-preloader-size);
    font-size: var(--cnvs-mfp-preloader-size);
    line-height: 1;
    text-align: center;
    transform: translate(-50%, -50%);
    font-family: "bootstrap-icons";
    line-height: inherit;
}

.mfp-preloader a {
    color: var(--cnvs-mfp-controls-text-color);
}

.mfp-preloader a:hover {
    color: var(--cnvs-mfp-controls-text-color-hover);
}

.mfp-container:not(.mfp-s-error) .mfp-preloader::before {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 1;
    content: "\f130";
    animation: spin 2s infinite linear;
}

.mfp-container.mfp-s-error .mfp-preloader {
    width: auto;
    height: auto;
    font-size: 1.5rem;
    font-family: inherit;
    animation: none;
    line-height: 1.5;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close, button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: calc(var(--cnvs-mfp-z-index-base) + 6);
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: var(--cnvs-mfp-close-btn-size);
    height: var(--cnvs-mfp-close-btn-size);
    line-height: var(--cnvs-mfp-close-btn-size);
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: var(--cnvs-mfp-controls-opacity);
    padding: 0 0 18px 10px;
    color: var(--cnvs-mfp-controls-color);
    font-style: normal;
    font-size: var(--cnvs-mfp-close-btn-font-size);
}

.mfp-close:hover, .mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: var(--cnvs-mfp-inner-close-icon-color);
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
    color: var(--cnvs-mfp-controls-color);
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: auto;
    bottom: 25px;
    right: 20px;
    font-size: 0.75rem;
    line-height: 18px;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0.25rem;
    color: var(--cnvs-mfp-controls-text-color);
}

.mfp-counter:empty {
    display: none;
}

.mfp-arrow {
    opacity: var(--cnvs-mfp-controls-opacity);
    position: absolute;
    margin: 0;
    top: 50%;
    left: 0;
    padding: 0;
    width: var(--cnvs-mfp-arrow-size);
    height: var(--cnvs-mfp-arrow-size);
    font-family: "bootstrap-icons";
    line-height: inherit;
    -webkit-tap-highlight-color: transparent;
    font-size: calc(var(--cnvs-mfp-arrow-size) / 2);
    transform: translateY(-50%);
    color: var(--cnvs-mfp-link-color);
    transition: all 0.3s ease;
}

.mfp-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

@media (max-width: 991.98px) {
    .mfp-arrow {
        background-color: rgba(0, 0, 0, 0.75) !important;
    }

    .mfp-arrow:hover {
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.85) !important;
    }
}

.mfp-arrow-left::before, .mfp-arrow-right::before {
    display: inline-flex;
    align-self: center;
    justify-self: center;
}

.mfp-arrow-right::before {
    content: "\f285";
}

.mfp-arrow-right {
    left: auto;
    right: 0;
}

.mfp-arrow-left {
    right: auto;
    left: 0;
}

.mfp-arrow-left::before {
    content: "\f284";
}

.mfp-iframe-holder {
    padding-top: var(--cnvs-mfp-iframe-padding-top);
    padding-bottom: var(--cnvs-mfp-iframe-padding-top);
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: var(--cnvs-mfp-iframe-max-width);
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: calc(var(--cnvs-mfp-iframe-ratio) * 100%);
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: var(--cnvs-mfp-shadow);
    background: var(--cnvs-mfp-iframe-background);
}

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.mfp-figure {
    line-height: 0;
}

.mfp-figure::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: var(--cnvs-mfp-shadow);
    background: var(--cnvs-mfp-image-background);
}

.mfp-figure small, .mfp-figure .small {
    color: var(--cnvs-mfp-caption-subtitle-color);
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure small:empty, .mfp-figure .small:empty {
    display: none;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    width: auto;
    text-align: center;
    line-height: 1.65;
    color: var(--cnvs-mfp-caption-title-color);
    word-wrap: break-word;
    padding: var(--cnvs-mfp-title-padding);
    background: rgba(39, 60, 68, 0.2);
    -webkit-backdrop-filter: blur(3em);
    backdrop-filter: blur(3em);
    border-radius: var(--cnvs-mfp-title-border-radius);
}

.mfp-title:empty {
    display: none;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and(orientation: landscape), screen and(max-height: 300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure::after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small, .mfp-img-mobile .mfp-figure .small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        transform: translateY(-50%) scale(0.75) !important;
    }

    .mfp-arrow-left {
        transform-origin: 0;
    }

    .mfp-arrow-right {
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: var(--cnvs-mfp-popup-padding-left-mobile);
        padding-right: var(--cnvs-mfp-popup-padding-left-mobile);
    }
}

:root {
    --cnvs-animate-duration: 1s;
    --cnvs-animate-delay: 1s;
    --cnvs-animate-repeat: 1;
}

.not-animated, [data-animate]:not(.animated) {
    opacity: 0;
}

.animated {
    animation-duration: 1s;
    animation-duration: var(--cnvs-animate-duration);
    animation-fill-mode: both;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.repeat-1 {
    animation-iteration-count: calc(var(--cnvs-animate-repeat) * 1);
}

.animated.repeat-2 {
    animation-iteration-count: calc(var(--cnvs-animate-repeat) * 2);
}

.animated.repeat-3 {
    animation-iteration-count: calc(var(--cnvs-animate-repeat) * 3);
}

.animated.delay-1s {
    animation-delay: calc(var(--cnvs-animate-delay) * 1);
}

.animated.delay-2s {
    animation-delay: calc(var(--cnvs-animate-delay) * 2);
}

.animated.delay-3s {
    animation-delay: calc(var(--cnvs-animate-delay) * 3);
}

.animated.delay-4s {
    animation-delay: calc(var(--cnvs-animate-delay) * 4);
}

.animated.delay-5s {
    animation-delay: calc(var(--cnvs-animate-delay) * 5);
}

.animated.faster {
    animation-duration: calc(var(--cnvs-animate-duration) / 2);
}

.animated.fast {
    animation-duration: calc(var(--cnvs-animate-duration) * 0.8);
}

.animated.slow {
    animation-duration: calc(var(--cnvs-animate-duration) * 2);
}

.animated.slower {
    animation-duration: calc(var(--cnvs-animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
    .animated {
        animation-duration: 1ms !important;
        transition-duration: 1ms !important;
        animation-iteration-count: 1 !important;
    }

    .animated[class * =Out] {
        opacity: 0;
    }
}

@keyframes bounce {
    from, 20%, 53%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0) scaleY(1.1);
    }

    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0) scaleY(1.05);
    }

    80% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0) scaleY(0.95);
    }

    90% {
        transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
}

.bounce {
    animation-name: bounce;
    transform-origin: center bottom;
}

@keyframes flash {
    from, 50%, to {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

.flash {
    animation-name: flash;
}

@keyframes pulse {
    from {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    animation-name: pulse;
    animation-timing-function: ease-in-out;
}

@keyframes rubberBand {
    from {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        transform: scale3d(1.05, 0.95, 1);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    animation-name: rubberBand;
}

@keyframes shakeX {
    from, to {
        transform: translate3d(0, 0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        transform: translate3d(10px, 0, 0);
    }
}

.shakeX {
    animation-name: shakeX;
}

@keyframes shakeY {
    from, to {
        transform: translate3d(0, 0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translate3d(0, -10px, 0);
    }

    20%, 40%, 60%, 80% {
        transform: translate3d(0, 10px, 0);
    }
}

.shakeY {
    animation-name: shakeY;
}

@keyframes headShake {
    0% {
        transform: translateX(0);
    }

    6.5% {
        transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
        transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
        transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
        transform: translateX(2px) rotateY(3deg);
    }

    50% {
        transform: translateX(0);
    }
}

.headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake;
}

@keyframes swing {
    20% {
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        transform: rotate3d(0, 0, 1, -5deg);
    }

    to {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    transform-origin: top center;
    animation-name: swing;
}

@keyframes tada {
    from {
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    animation-name: tada;
}

@keyframes wobble {
    from {
        transform: translate3d(0, 0, 0);
    }

    15% {
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.wobble {
    animation-name: wobble;
}

@keyframes jello {
    from, 11.1%, to {
        transform: translate3d(0, 0, 0);
    }

    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }

    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

.jello {
    animation-name: jello;
    transform-origin: center;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.3);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.3);
    }

    70% {
        transform: scale(1);
    }
}

.heartBeat {
    animation-name: heartBeat;
    animation-duration: 1.3s;
    animation-duration: calc(var(--cnvs-animate-duration) * 1.3);
    animation-timing-function: ease-in-out;
}

@keyframes backInDown {
    0% {
        transform: translateY(-1200px) scale(0.7);
        opacity: 0.7;
    }

    80% {
        transform: translateY(0px) scale(0.7);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.backInDown {
    animation-name: backInDown;
}

@keyframes backInLeft {
    0% {
        transform: translateX(-2000px) scale(0.7);
        opacity: 0.7;
    }

    80% {
        transform: translateX(0px) scale(0.7);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.backInLeft {
    animation-name: backInLeft;
}

@keyframes backInRight {
    0% {
        transform: translateX(2000px) scale(0.7);
        opacity: 0.7;
    }

    80% {
        transform: translateX(0px) scale(0.7);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.backInRight {
    animation-name: backInRight;
}

@keyframes backInUp {
    0% {
        transform: translateY(1200px) scale(0.7);
        opacity: 0.7;
    }

    80% {
        transform: translateY(0px) scale(0.7);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.backInUp {
    animation-name: backInUp;
}

@keyframes backOutDown {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    20% {
        transform: translateY(0px) scale(0.7);
        opacity: 0.7;
    }

    100% {
        transform: translateY(700px) scale(0.7);
        opacity: 0.7;
    }
}

.backOutDown {
    animation-name: backOutDown;
}

@keyframes backOutLeft {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    20% {
        transform: translateX(0px) scale(0.7);
        opacity: 0.7;
    }

    100% {
        transform: translateX(-2000px) scale(0.7);
        opacity: 0.7;
    }
}

.backOutLeft {
    animation-name: backOutLeft;
}

@keyframes backOutRight {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    20% {
        transform: translateX(0px) scale(0.7);
        opacity: 0.7;
    }

    100% {
        transform: translateX(2000px) scale(0.7);
        opacity: 0.7;
    }
}

.backOutRight {
    animation-name: backOutRight;
}

@keyframes backOutUp {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    20% {
        transform: translateY(0px) scale(0.7);
        opacity: 0.7;
    }

    100% {
        transform: translateY(-700px) scale(0.7);
        opacity: 0.7;
    }
}

.backOutUp {
    animation-name: backOutUp;
}

@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    animation-duration: 0.75s;
    animation-duration: calc(var(--cnvs-animate-duration) * 0.75);
    animation-name: bounceIn;
}

@keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0) scaleY(3);
    }

    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0) scaleY(0.9);
    }

    75% {
        transform: translate3d(0, -10px, 0) scaleY(0.95);
    }

    90% {
        transform: translate3d(0, 5px, 0) scaleY(0.985);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.bounceInDown {
    animation-name: bounceInDown;
}

@keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0) scaleX(3);
    }

    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0) scaleX(1);
    }

    75% {
        transform: translate3d(-10px, 0, 0) scaleX(0.98);
    }

    90% {
        transform: translate3d(5px, 0, 0) scaleX(0.995);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.bounceInLeft {
    animation-name: bounceInLeft;
}

@keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        transform: translate3d(3000px, 0, 0) scaleX(3);
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0) scaleX(1);
    }

    75% {
        transform: translate3d(10px, 0, 0) scaleX(0.98);
    }

    90% {
        transform: translate3d(-5px, 0, 0) scaleX(0.995);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.bounceInRight {
    animation-name: bounceInRight;
}

@keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        transform: translate3d(0, 3000px, 0) scaleY(5);
    }

    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0) scaleY(0.9);
    }

    75% {
        transform: translate3d(0, 10px, 0) scaleY(0.95);
    }

    90% {
        transform: translate3d(0, -5px, 0) scaleY(0.985);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.bounceInUp {
    animation-name: bounceInUp;
}

@keyframes bounceOut {
    20% {
        transform: scale3d(0.9, 0.9, 0.9);
    }

    50%, 55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

.bounceOut {
    animation-duration: 0.75s;
    animation-duration: calc(var(--cnvs-animate-duration) * 0.75);
    animation-name: bounceOut;
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0) scaleY(0.985);
    }

    40%, 45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0) scaleY(0.9);
    }

    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0) scaleY(3);
    }
}

.bounceOutDown {
    animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, 0, 0) scaleX(0.9);
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0) scaleX(2);
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0) scaleX(0.9);
    }

    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0) scaleX(2);
    }
}

.bounceOutRight {
    animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0) scaleY(0.985);
    }

    40%, 45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0) scaleY(0.9);
    }

    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0) scaleY(3);
    }
}

.bounceOutUp {
    animation-name: bounceOutUp;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRight {
    animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig;
}

@keyframes fadeInTopLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInTopLeft {
    animation-name: fadeInTopLeft;
}

@keyframes fadeInTopRight {
    from {
        opacity: 0;
        transform: translate3d(100%, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInTopRight {
    animation-name: fadeInTopRight;
}

@keyframes fadeInBottomLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInBottomLeft {
    animation-name: fadeInBottomLeft;
}

@keyframes fadeInBottomRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInBottomRight {
    animation-name: fadeInBottomRight;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}

.fadeOutDown {
    animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0);
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig;
}

@keyframes fadeOutTopLeft {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    to {
        opacity: 0;
        transform: translate3d(-100%, -100%, 0);
    }
}

.fadeOutTopLeft {
    animation-name: fadeOutTopLeft;
}

@keyframes fadeOutTopRight {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    to {
        opacity: 0;
        transform: translate3d(100%, -100%, 0);
    }
}

.fadeOutTopRight {
    animation-name: fadeOutTopRight;
}

@keyframes fadeOutBottomRight {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 100%, 0);
    }
}

.fadeOutBottomRight {
    animation-name: fadeOutBottomRight;
}

@keyframes fadeOutBottomLeft {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    to {
        opacity: 0;
        transform: translate3d(-100%, 100%, 0);
    }
}

.fadeOutBottomLeft {
    animation-name: fadeOutBottomLeft;
}

@keyframes flip {
    from {
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        animation-timing-function: ease-out;
    }

    40% {
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        animation-timing-function: ease-out;
    }

    50% {
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        animation-timing-function: ease-in;
    }

    80% {
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        animation-timing-function: ease-in;
    }

    to {
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    backface-visibility: visible;
    animation-name: flip;
}

@keyframes flipInX {
    from {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        animation-timing-function: ease-in;
    }

    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
        transform: perspective(400px);
    }
}

.flipInX {
    backface-visibility: visible !important;
    animation-name: flipInX;
}

@keyframes flipInY {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        animation-timing-function: ease-in;
    }

    60% {
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    to {
        transform: perspective(400px);
    }
}

.flipInY {
    backface-visibility: visible !important;
    animation-name: flipInY;
}

@keyframes flipOutX {
    from {
        transform: perspective(400px);
    }

    30% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    to {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

.flipOutX {
    animation-duration: 0.75s;
    animation-duration: calc(var(--cnvs-animate-duration) * 0.75);
    animation-name: flipOutX;
    backface-visibility: visible !important;
}

@keyframes flipOutY {
    from {
        transform: perspective(400px);
    }

    30% {
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    to {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

.flipOutY {
    animation-duration: 0.75s;
    animation-duration: calc(var(--cnvs-animate-duration) * 0.75);
    backface-visibility: visible !important;
    animation-name: flipOutY;
}

@keyframes lightSpeedInRight {
    from {
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        transform: skewX(-5deg);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.lightSpeedInRight {
    animation-name: lightSpeedInRight;
    animation-timing-function: ease-out;
}

@keyframes lightSpeedInLeft {
    from {
        transform: translate3d(-100%, 0, 0) skewX(30deg);
        opacity: 0;
    }

    60% {
        transform: skewX(-20deg);
        opacity: 1;
    }

    80% {
        transform: skewX(5deg);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.lightSpeedInLeft {
    animation-name: lightSpeedInLeft;
    animation-timing-function: ease-out;
}

@keyframes lightSpeedOutRight {
    from {
        opacity: 1;
    }

    to {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

.lightSpeedOutRight {
    animation-name: lightSpeedOutRight;
    animation-timing-function: ease-in;
}

@keyframes lightSpeedOutLeft {
    from {
        opacity: 1;
    }

    to {
        transform: translate3d(-100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
}

.lightSpeedOutLeft {
    animation-name: lightSpeedOutLeft;
    animation-timing-function: ease-in;
}

@keyframes rotateIn {
    from {
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.rotateIn {
    animation-name: rotateIn;
    transform-origin: center;
}

@keyframes rotateInDownLeft {
    from {
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft;
    transform-origin: left bottom;
}

@keyframes rotateInDownRight {
    from {
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight;
    transform-origin: right bottom;
}

@keyframes rotateInUpLeft {
    from {
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft;
    transform-origin: left bottom;
}

@keyframes rotateInUpRight {
    from {
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight;
    transform-origin: right bottom;
}

@keyframes rotateOut {
    from {
        opacity: 1;
    }

    to {
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

.rotateOut {
    animation-name: rotateOut;
    transform-origin: center;
}

@keyframes rotateOutDownLeft {
    from {
        opacity: 1;
    }

    to {
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
    transform-origin: left bottom;
}

@keyframes rotateOutDownRight {
    from {
        opacity: 1;
    }

    to {
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight;
    transform-origin: right bottom;
}

@keyframes rotateOutUpLeft {
    from {
        opacity: 1;
    }

    to {
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
    transform-origin: left bottom;
}

@keyframes rotateOutUpRight {
    from {
        opacity: 1;
    }

    to {
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight;
    transform-origin: right bottom;
}

@keyframes hinge {
    0% {
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        transform: rotate3d(0, 0, 1, 80deg);
        animation-timing-function: ease-in-out;
    }

    40%, 80% {
        transform: rotate3d(0, 0, 1, 60deg);
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

.hinge {
    animation-duration: 2s;
    animation-duration: calc(var(--cnvs-animate-duration) * 2);
    animation-name: hinge;
    transform-origin: top left;
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        transform: scale(0.1) rotate(30deg);
        transform-origin: center bottom;
    }

    50% {
        transform: rotate(-10deg);
    }

    70% {
        transform: rotate(3deg);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.jackInTheBox {
    animation-name: jackInTheBox;
}

@keyframes rollIn {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.rollIn {
    animation-name: rollIn;
}

@keyframes rollOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

.rollOut {
    animation-name: rollOut;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    animation-name: zoomIn;
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInDown {
    animation-name: zoomInDown;
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInLeft {
    animation-name: zoomInLeft;
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInRight {
    animation-name: zoomInRight;
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInUp {
    animation-name: zoomInUp;
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    to {
        opacity: 0;
    }
}

.zoomOut {
    animation-name: zoomOut;
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutDown {
    animation-name: zoomOutDown;
    transform-origin: center bottom;
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }

    to {
        opacity: 0;
        transform: scale(0.1) translate3d(-2000px, 0, 0);
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft;
    transform-origin: left center;
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }

    to {
        opacity: 0;
        transform: scale(0.1) translate3d(2000px, 0, 0);
    }
}

.zoomOutRight {
    animation-name: zoomOutRight;
    transform-origin: right center;
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutUp {
    animation-name: zoomOutUp;
    transform-origin: center bottom;
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    animation-name: slideInDown;
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    animation-name: slideInLeft;
}

@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    animation-name: slideInRight;
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    animation-name: slideInUp;
}

@keyframes slideOutDown {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0);
    }
}

.slideOutDown {
    animation-name: slideOutDown;
}

@keyframes slideOutLeft {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0);
    }
}

.slideOutLeft {
    animation-name: slideOutLeft;
}

@keyframes slideOutRight {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0);
    }
}

.slideOutRight {
    animation-name: slideOutRight;
}

@keyframes slideOutUp {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0);
    }
}

.slideOutUp {
    animation-name: slideOutUp;
}

.dark {
    --cnvs-contrast-bg: #212529;
    --cnvs-contrast-bg-offset: #343a40;
    --cnvs-contrast-0: #000;
    --cnvs-contrast-100: #212529;
    --cnvs-contrast-200: #343a40;
    --cnvs-contrast-300: #495057;
    --cnvs-contrast-400: #6c757d;
    --cnvs-contrast-500: #adb5bd;
    --cnvs-contrast-600: #ced4da;
    --cnvs-contrast-700: #dee2e6;
    --cnvs-contrast-800: #e9ecef;
    --cnvs-contrast-900: #f8f9fa;
    --cnvs-contrast-1000: #fff;
    --bs-link-color: var(--cnvs-contrast-900);
    --cnvs-invert-contrast-0: #fff;
    --cnvs-invert-contrast-100: #f8f9fa;
    --cnvs-invert-contrast-200: #e9ecef;
    --cnvs-invert-contrast-300: #dee2e6;
    --cnvs-invert-contrast-400: #ced4da;
    --cnvs-invert-contrast-500: #adb5bd;
    --cnvs-invert-contrast-600: #6c757d;
    --cnvs-invert-contrast-700: #495057;
    --cnvs-invert-contrast-800: #343a40;
    --cnvs-invert-contrast-900: #212529;
    --cnvs-invert-contrast-1000: #000;
    --cnvs-contrast-rgb: 255, 255, 255;
    --cnvs-invert-contrast-rgb: 0, 0, 0;
    --cnvs-heading-color: var(--cnvs-contrast-900);
    --cnvs-topbar-bg: var(--cnvs-contrast-bg-offset);
    --cnvs-header-bg: var(--cnvs-contrast-bg);
    --cnvs-header-sticky-bg: var(--cnvs-contrast-bg);
    --cnvs-side-header-bg: var(--cnvs-contrast-bg);
    --cnvs-header-floating-bg: var(--cnvs-contrast-bg);
    --cnvs-primary-menu-submenu-bg: var(--cnvs-contrast-bg);
    --cnvs-section-bg: var(--cnvs-contrast-bg-offset);
    --cnvs-footer-bg: var(--cnvs-contrast-bg-offset);
    color: var(--cnvs-contrast-800);
}

body.dark {
    --cnvs-body-bg: var(--cnvs-contrast-bg);
}

.dark#footer .footer-widgets-wrap, .dark #footer .footer-widgets-wrap {
    color: var(--cnvs-contrast-800);
}

.dark#footer .footer-widgets-wrap a, .dark #footer .footer-widgets-wrap a {
    color: rgba(255, 255, 255, 0.75);
}

.dark#footer .footer-widgets-wrap a:hover, .dark #footer .footer-widgets-wrap a:hover {
    color: var(--cnvs-contrast-1000);
}

.dark #copyrights, #copyrights.dark {
    color: rgba(255, 255, 255, 0.4);
    background-color: rgba(0, 0, 0, 0.2);
}

@charset "UTF-8";
@font-face {
    font-family: 'PP Neue Montreal';
    src: url("/assets/fonts/PPNeueMontreal-Medium.woff2") format('woff2'), url("/assets/fonts/PPNeueMontreal-Medium.woff") format('woff'), url("/assets/fonts/PPNeueMontreal-Medium.ttf") format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal Book';
    src: url("/assets/fonts/PPNeueMontreal-Book.woff2") format('woff2'), url("/assets/fonts/PPNeueMontreal-Book.woff") format('woff'), url("/assets/fonts/PPNeueMontreal-Book.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url("/assets/fonts/PPNeueMontreal-Bold.woff2") format('woff2'), url("/assets/fonts/PPNeueMontreal-Bold.woff") format('woff'), url("/assets/fonts/PPNeueMontreal-Bold.ttf") format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url("/assets/fonts/PPNeueMontreal-Thin.woff2") format('woff2'), url("/assets/fonts/PPNeueMontreal-Thin.woff") format('woff'), url("/assets/fonts/PPNeueMontreal-Thin.ttf") format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

* {
    font-family: 'PP Neue Montreal';
}

body {
    font-family: 'PP Neue Montreal';
}

html {
    font-family: 'PP Neue Montreal';
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'PP Neue Montreal';
}

ul, ol {
    font-family: 'PP Neue Montreal';
}

li {
    font-family: 'PP Neue Montreal';
}

a {
    font-family: 'PP Neue Montreal';
}

button {
    font-family: 'PP Neue Montreal';
}

p {
    font-family: 'PP Neue Montreal';
}

.header-main-menu {
    display: grid;
    grid-template-columns: 150px auto 0px;
    padding: 0 30px;
}

.cursor1, .cursor2 {
    display: none !important;
    opacity: 0 !important;
}

.main-section .shape-new {
    position: absolute;
    width: 25%;
    height: auto;
    right: 165px;
    bottom: 0px;
}

.main-section {
    padding-top: 150px;
    padding-bottom: 100px;
    background-image: url("/assets/imgs/home-7/sh-bg.png");
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
}

.main-section .service__hero-right-2 .scroll {
    position: absolute;
    margin-left: 0;
    margin-top: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px;
}

.main-menu-4 > li > a .menu-text {
    color: #2d2b31;
    text-transform: none;
    font-family: 'PP Neue Montreal Book';
    font-weight: normal;
    text-shadow: 0 16px 0 #2d2b31;
}

.main-menu > li > a, .main-menu-4 > li > a {
    font-size: 16px;
}

.main-section .service__hero-right-2 .title {
    color: #e4464e;
}

.service__hero-right-2 p {
    color: #808184;
}

.roll__area {
    background-color: #2d2b31;
}

.roll__slide h2 {
    color: #fff;
}

.new-about-area .about__content p {
    color: #808184;
}

.new-about-area .about__title-wrapper h3 {
    color: #e4464e;
}

.new-about-area .wc-btn-primary span {
    background-color: #e4464e;
}

.new-about-area .wc-btn-primary:hover {
    color: #fff;
    border: 1px solid #e4464e;
}

.about__img-right .shape {
}

.btn_wrapper, #btn_wrapper {
    margin-left: 200px;
}

.new-services-area {
    background-color: #2d2b31;
}

.new-services-area .service__top-text p div {
    color: #fff;
}

.new-services-area .wc-btn-secondary {
    background-color: #2d2b31;
    border: 1px solid #fff;
    color: #fff;
}

.new-services-area .wc-btn-secondary span {
    background-color: #fff;
}

.new-services-area .wc-btn-secondary:hover {
    color: #e4464e;
}

.new-services-area .service__text p {
    color: #fff;
}

.new-services-area .service__title {
    color: #fff;
}

.new-services-area .service__number span {
    color: #fff;
}

.new-services-area .service__link p {
    color: #fff;
}

.new-services-area .service__title {
}

.new-services-area .service__img-wrapper span {
    background-color: #808184;
}

.threeSections-area {
    background-color: #fff;
}

.service__area a:first-child .service__item {
    border-top: 1px solid #fff;
}

.service__area a .service__item {
    border-bottom: 1px solid #fff;
}

.choose-title {
    color: #e4464e;
}

.threeSections-area .research__area {
    background-color: #e4464e;
}

.threeSections-area .research__area .sec-sub-title {
    color: #fff;
}

.threeSections-area .sec-title {
    color: #fff;
}

.threeSections-area .research__area .sec-title-wrapper p {
    color: #fff;
}

.threeSections-area .research__tools li a {
    color: #fff;
    border: 1px solid #fff;
}

.threeSections-area .research__number span {
    color: #fff;
}

.threeSections-area .research__title {
    color: #fff;
}

.threeSections-area .research__item p {
    color: #fff;
}

.threeSections-area .research__area {
    background-position: calc(10%) calc(100% - 0px);
    background-image: url("/assets/imgs/shape-new2.png");
}

.new-portfolio-area {
    background-color: #e4464e;
}

.portfolio__area .wc-btn-secondary {
    background-color: #e4464e;
    border: 1px solid #fff;
    color: #fff;
}

.portfolio__area .wc-btn-secondary span {
    background-color: #fff;
}

.portfolio__area .wc-btn-secondary:hover {
    color: #e4464e;
}

.new-contact-area {
    background-color: #2d2b31;
}

.new-contact-area .wc-btn-primary {
    background-color: #2d2b31;
    border: 1px solid #fff;
    color: #fff;
}

.new-contact-area .wc-btn-primary span {
    background-color: #fff;
}

.new-contact-area .wc-btn-primary {
    background-color: #fff;

    color: #e4464e;
}

.new-contact-area .cta__sub-title {
    color: #fff;
    border: 1px solid #fff;
}

.scroll-top i {
    color: #fff;
}

.scroll-top {
    background: #808184;
    mix-blend-mode: unset;
    border: 1px solid #808184;
}

.scroll-top:hover {
    background: transparent;
    border: 1px solid #808184;
}

.scroll-top:hover i {
    color: #808184;
}

.portfolio__area .portfolio__info {
    background-color: #808184;
}

.portfolio__area .portfolio__info .portfolio__title {
    color: #fff;
}

.portfolio__area .portfolio__info p {
    color: #fff;
}

.new-footer-area .footer__item-title {
    color: #808184;
}

.new-footer-area .footer__link-6 li a {
    color: #808184;
}

.new-footer-area .footer__info-6 li {
    color: #808184;
}

.new-footer-area .footer__info-6 li a.phone {
    color: #808184;
}

.new-footer-area .footer__item-6 p {
    color: #808184;
}

.new-footer-area .footer__chekbox label {
    color: #808184;
}

.new-footer-area button .fa-solid {
    color: #808184;
}

.new-footer-area .footer__copyright-6 p a {
    color: #808184;
}

.new-footer-area .footer__copyright-6 p {
    color: #808184;
}

.new-footer-area .footer-menu li a {
    color: #808184;
}

.new-news-area .sec-title {
    color: #808184;
}

.new-news-area .blog__title {
    color: #808184;
}

.threeSections-area .choose-wrapper {
    background-color: #e8e8e8;
}

.threeSections-area {
    background-color: #e8e8e8;
}

.threeSections-area .counter__area-3 {
    background-color: #e8e8e8;
}

.research__tools li a:hover {
    background-color: #808184;
}

.threeSections-area .cta__area-3 {
    background-color: #fff;
}

.threeSections-area .cta__area-3 .cta__sub-title-2 {
    color: #e4464e;
}

.threeSections-area .cta__area-3 .cta__title-2 {
    color: #e4464e;
}

.threeSections-area .cta__content-3 a {
    background-color: transparent;
    border-color: #e4464e;
}

.threeSections-area .cta__content-3 .wc-btn-primary {
    color: #e4464e;
}

.threeSections-area .cta__content-3 .wc-btn-primary span {
    background-color: #e0e0e0;
}

.header__nav-icon-7 {
}

.header__nav-icon-7 .menu-icon-2::after {
    display: none;
}

.slider-caption h2, .slider-caption .h2 {
    color: #f3e8d5;
    font-weight: 500;
}

.slider-caption p {
    font-family: 'PP Neue Montreal Book';
    color: #f3e8d5;
    font-weight: normal;
}

.one-page-arrow {
    background-color: transparent;
}

.roll__slide h2 {
    color: #f3e8d5;
}

.shape .secondary {
    width: 53px;
    height: 47px;
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("/assets/imgs/shape1.png");
}

.shape .primary {
    width: 53px;
    height: 47px;
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("/assets/imgs/shape2.png");
    margin-top: -50px;
    margin-left: 15px;
}

.progectsRemal .line::after {
    display: none;
}

.progectsRemal .portfolio__slider-2::after {
    display: none;
}

.portfolio__area-2 .sec-title-3 {
    background-image: none;
}

.whyRemal .feature__list {
    grid-template-columns: 1fr 1fr;
}

.whyRemal {
    background-color: #2d2b31;
}

.new-news-area .sec-title {
    color: #2d2b31;
}

.new-news-area .blog__title {
    color: #2d2b31;
}

.whyRemal .sec-title {
    color: #f3e8d5;
}

.whyRemal .feature__text p {
    color: #f3e8d5;
}

.whyRemal .feature__top {
    border-bottom: 1px solid #f3e8d5;
}

.whyRemal2 {
    background-color: #2d2b31;
}

.whyRemal2 .service__list-6 li.active a {
    color: #f3e8d5;
}

.whyRemal2 .service__title-6 {
    color: #f3e8d5;
}

.whyRemal2 .animation__service_page p {
    color: #f3e8d5;
}

.progectsRemal .sec-title-3 {
    color: #e4464e;
}

.progectsRemal2 {
    background-color: #fff;
}

.offcanvas__right .shape-1 {
    bottom: 40px;
    left: 30px;
    display: none;
}

.progectsRemal2 .feature__top {
    border-bottom: 1px solid var(--white-4);
}

.remalHeader .menu-icon-2 img {
    width: 45px;
    height: 45px;
}

.offcanvas__mid {
    overflow: hidden;
}

.aboutStoryRemal {
    margin-top: 0px;
}

.aboutStoryRemal2 .line::after {
    display: none;
}

.aboutStoryRemal .from-text {
    display: none;
}

.enterMissionVision {
    background-color: #2d2b31;
}

.enterMissionVision .feature__btm {
    background-color: #fff;
}

.enterMissionVision .sec-title {
    color: #f3e8d5;
}

.enterMissionVision .feature__text p {
    color: #f3e8d5;
}

.enterMissionVision .feature__list {
    grid-template-columns: 1fr 1fr;
}

.teamRemal .blog__detail-content {
    padding-top: 30px;
}

.teamRemal .blog__detail-content p {
    color: #fff;
}

.teamRemal {
    background-color: #e4464e;
}

.teamRemal .sec-sub-title {
    color: #f3e8d5;
}

.teamRemal .sec-title {
    color: #f3e8d5;
}

.teamRemal .blog__detail-content p {
    color: #f3e8d5;
}

.teamRemal .team__member-name {
    color: #f3e8d5;
}

.teamRemal .team__member-role {
    color: #f3e8d5;
}

.servicesImages {
    margin-top: 100px;
}

.servicesImages .portfolio__big {
    padding-bottom: 0 !important;
}

.servicesInnerRemal .feature__item1, .servicesInnerRemal .feature__item2 {
    border-bottom: 1px solid var(--black-2);
}

.servicesInnerRemal .feature__list {
    grid-gap: 0px;
}

.ContactRemal .line::after {
    display: none;
}

.ContactRemal .line::before {
    display: none;
}

.ContactRemal .line-3 {
    display: none;
}

.ContactRemal .wc-btn-primary span {
    background-color: #e4464e;
}

.ContactRemal .wc-btn-primary:hover {
    border: 1px solid #e4464e;
    color: #fff;
}

.progectImagePic3 {
    margin-top: 25px;
}

.progectImagePic4 {
    margin-top: 25px;
}

.slide-img a {
    display: block;
}

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

.progectsArrow .wc-btn-primary:hover {
    border: 1px solid #e4464e;
    color: #fff;
}

.progectsArrow .wc-btn-primary span {
    background-color: #e4464e;
}

.portfolio__slider-2 {
    height: auto;
}

.newsImage-out img {
    width: 100%;
}

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

.newsInner-container {
    padding-bottom: 100px;
}

.header__area-7.sticky-7 {
    background: var(--white);
    border-bottom: 1px solid var(--white-2);
}

.progLogo {
    width: 100%;
    height: auto;
    padding-right: 40px;
    padding-top: 5px;
}

.progLogo-home {
    width: 300px;
    padding-left: 0 !important;
}

@media (min-width: 1400px) {
}

@media (min-width: 1200px) and(max-width: 1399px) {
}

@media (min-width: 992px) and(max-width: 1199px) {
    .newsInner-container {
        padding-top: 50px;
    }
}

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

    .ContactRemal .line {
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .welcomeTextRemal {
        display: block !important;
        font-size: 12px !important;
    }

    .shape .primary {
        z-index: 1 !important;
    }

    .shape .secondary {
        z-index: 2 !important;
    }

    .aboutStoryRemal {
        margin-top: 60px;
    }

    .aboutStoryRemal2 .blog__detail-content p {
        padding-left: 20px;
        padding-right: 20px;
    }

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

    .servicesInnerRemal .feature__list {
        grid-template-columns: 1fr;
    }

    .servicesInnerRemal .feature__item3 {
        border-bottom: 1px solid var(--black-2);
    }

    .servicesInnerRemal .feature__item .feature__title {
        padding-top: 40px;
    }

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

    .progectInnerParalex {
        padding-top: 50px;
    }

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

    .progectInnerData .progectImagePic3 {
        margin-top: 0px;
    }

    .progectInnerData .progectImagePic4 {
        margin-top: 0px;
    }

    .newsInner-container {
        padding-bottom: 80px;
    }
}

@media (max-width: 580px) {
}

@media (max-width: 460px) {
    .enterMissionVision .feature__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 410px) {
}

@media (max-width: 320px) {
}
