:root {
    --white: #FFFFFF;
    --background: #F9FAFB;
    --dark-10: #A6ACB7;
    --dark-20: #7A7C7F;
    --dark-30: #4D5154;
    --dark-70: #1A1E21;
    --dark-90: #141619;
    --light-10: #FEFEFE;
    --light-30: #F9FAFB;
    --light-60: #ECECEC;
    --light-70: #C6C7C8;
    --secondary-50: #6C757D;
    --stroke: #F1F1F1;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    color: var(--dark-70);
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
}

@media(min-width: 1200px) {
    .container-fluid {
        padding: 0 42px;
    }
}

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

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


/* text */

a {
    text-decoration: none;
}

.text-link {
    color: var(--dark-90)!important;
}

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

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

.text-dark {
    color: var(--dark-90)!important;
}

.text-dark-30 {
    color: var(--dark-30)!important;
}

.text-dark-70 {
    color: var(--dark-70)!important;
}

.text-muted {
    color: var(--dark-20)!important;
}

.lh-34 {
    line-height: 34px;
}


/* utils */

@media(min-width: 1200px) {
    .w-lg-unset {
        width: unset!important;
    }
}

.gap-6 {
    gap: 6px;
}

.fs-12 {
    font-size: 12px!important;
}

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

.fs-18 {
    font-size: 18px!important;
}

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

.fs-24 {
    font-size: 24px!important;
}

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

.fs-32 {
    font-size: 32px!important;
}

.fs-36 {
    font-size: 36px!important;
}

@media(max-width: 991px) {
    .fs-36 {
        font-size: 26px!important;
    }
}

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

.mb-12 {
    margin-bottom: .75rem;
}

.mb-32 {
    margin-bottom: 2rem;
}

.my-32 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.mb-88 {
    margin-bottom: 5.5rem;
}

@media(min-width: 1200px) {
    .p-32 {
        padding: 2rem;
    }
}

.pt-32 {
    padding-top: 2rem;
}

.py-32 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-42 {
    padding-top: 2.625rem;
    padding-bottom: 2.625rem;
}

.py-85 {
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
}

@media(min-width: 992px) {
    .mw-200 {
        max-width: 200px!important;
    }
    .mw-474 {
        max-width: 474px!important;
    }
}

.w-mc {
    width: max-content!important;
}

.icon-middle {
    gap: .5rem;
    display: flex;
    align-items: center;
}

.section-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.img-gradient {
    position: relative;
}

.img-gradient::after {
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 30%;
    position: absolute;
    border-radius: 1rem;
    background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}


/* card */

.card {
    border-radius: 1rem;
    border-color: transparent;
    background-color: var(--light-10);
}

.card.card-filter .card-body {
    padding: 1rem 1.5rem;
}

.card.card-product-search {
    border-color: var(--stroke);
    background-color: transparent;
}

.card.card-product-search .card-body {
    padding: 1rem 1.5rem;
}

.card .card-img-top {
    border-radius: 1rem;
}

.card.detail .card-img-top {
    max-height: 500px;
    object-fit: cover;
}

.card.detail p {
    margin-bottom: 1.5rem;
}

.card.card-html {
    color: var(--dark-20)!important;
}

.card.card-html strong {
    font-weight: 600!important;
}


/* button */

.btn-primary {
    font-weight: 500;
    border-radius: 8px;
    padding: .688rem 1.125rem;
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-primary:focus,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-visible {}

.btn-secondary {
    font-weight: 500;
    border-radius: 8px;
    padding: .688rem 1.125rem;
    --bs-btn-color: var(--dark-90);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: var(--dark-90);
    --bs-btn-hover-bg: var(--light-30);
    --bs-btn-hover-border-color: var(--light-30);
    --bs-btn-active-color: var(--dark-90);
    --bs-btn-active-bg: var(--light-30);
    --bs-btn-active-border-color: var(--light-30);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: transparent;
}

.btn-secondary:focus,
.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus-visible {}

.btn-outline-primary {
    font-weight: 500;
    border-radius: 8px;
    padding: .688rem 1.125rem;
    --bs-btn-color: var(--dark-70);
    --bs-btn-border-color: var(--stroke);
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
    --bs-btn-disabled-color: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-outline-primary:focus,
.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus-visible {}

.btn-link {
    padding-left: 0;
    padding-right: 0;
    font-weight: 500;
    text-decoration: none;
}

.btn-link:focus,
.btn-link:hover,
.btn-link:active {}

.btn-close {
    padding: 8px;
    border-radius: 6px;
    background-color: var(--light-30);
}

.btn-close:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0);
}

.btn-theme-option {
    right: 0;
    top: 30%;
    z-index: 99;
    position: fixed;
    color: var(--bs-primary);
    border-color: var(--stroke);
    border-radius: 8px 0 0 8px;
    border-right-color: transparent;
    background-color: var(--white);
}

.btn-theme-option:focus,
.btn-theme-option:hover,
.btn-theme-option:active,
.btn-theme-option:focus-visible {
    color: var(--bs-primary)!important;
    border-color: var(--stroke)!important;
    border-right-color: transparent!important;
    background-color: var(--white)!important;
}

.btn-theme-option-close {
    right: 228px;
    z-index: 99;
    position: fixed;
    transition: none;
    color: var(--bs-primary);
    border-color: var(--stroke);
    border-radius: 8px 0 0 8px;
    background-color: var(--white);
    border-right-color: transparent;
}

.btn-theme-option-close:focus,
.btn-theme-option-close:hover,
.btn-theme-option-close:active,
.btn-theme-option-close:focus-visible {
    color: var(--bs-primary)!important;
    border-color: var(--stroke)!important;
    border-right-color: transparent!important;
    background-color: var(--white)!important;
}


/* form */

.form-control {
    line-height: 2.125;
    border-radius: 8px!important;
    border-color: var(--stroke)!important;
}

input.form-control:read-only {
    background-color: var(--stroke)!important;
}

.form-control:hover,
.form-control:focus,
.form-control:active {
    border-color: var(--dark-70)!important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0);
}

.form-control::placeholder {
    color: var(--light-70)!important;
}

.form-check-label {
    font-size: 14px;
    color: var(--dark-30)!important;
}

.form-check-input:focus {
    outline: 0;
    border-color: var(--dark-70)!important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0);
}


/* table */

table tr td {
    font-size: 14px;
    padding: .75rem .5rem!important;
}


/* modal */

.modal-sz-668 {
    max-width: 668px!important
}

.modal-content {
    border-radius: 1rem;
}

.modal-content .modal-header {
    padding: 0;
    border-bottom: none;
}

.modal-content .modal-header .modal-title {
    font-weight: 500;
    color: var(--dark-70)!important;
}

.modal-content .modal-body {
    padding: 0;
}

.modal-content .modal-body img {
    width: 100%;
    height: auto;
    max-width: 620px;
    border-radius: 1rem;
}

.modal-content .modal-footer {
    padding: 0;
    border-top: none;
}


/* dropdown */

.dropdown .dropdown-menu {
    border-color: var(--stroke);
}

.dropdown .dropdown-menu .dropdown-item {
    font-size: 14px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: var(--dark-10);
}

.dropdown .dropdown-menu .dropdown-item:hover {
    color: var(--dark-90);
    background-color: var(--light-30)!important;
}

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


/* header info */

.header-info {
    gap: 1rem;
    display: flex;
    padding: .625rem;
    color: var(--white);
}


/* navbar */

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0);
}

.navbar {
    border-bottom: 1px solid var(--stroke);
}

.navbar .navbar-nav {
    padding-top: .719rem;
    padding-bottom: .719rem;
}

.navbar .navbar-nav .nav-item .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-10);
}

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

@media (max-width: 991px) {
    .navbar {
        border-bottom: 2px solid var(--stroke);
    }
}

.nav-pills .nav-item {
    margin-right: .5rem;
}

.nav-pills.product .nav-item .nav-link {
    font-weight: 500;
    border-radius: 0;
    color: var(--secondary-50);
    padding: 6px 20px 12px 20px;
    border-bottom: 4px solid transparent;
}

.nav-pills.product .nav-item .nav-link.active {
    color: var(--bs-primary);
    background-color: transparent;
    border-bottom: 4px solid var(--bs-primary);
}

.nav-pills.spesification .nav-item .nav-link {
    border-radius: 8px;
    color: var(--dark-70);
    padding: 8px 20px 8px 20px;
    border: 1px solid var(--stroke);
}

.nav-pills.spesification .nav-item .nav-link.active {
    color: var(--white);
    background-color: var(--bs-primary);
}


/* hero */

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.hero-swiper .swiper-button-prev {
    opacity: .4;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background-color: var(--light-70);
}

.hero-swiper .swiper-button-prev:after {
    font-size: 16px;
    color: var(--dark-70);
}

.hero-swiper .swiper-button-prev.swiper-button-disabled {
    opacity: .2;
}

.hero-swiper .swiper-button-next {
    opacity: .4;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background-color: var(--light-70);
}

.hero-swiper .swiper-button-next:after {
    font-size: 16px;
    color: var(--dark-70);
}

@media (min-width: 992px) {
    .hero-swiper .swiper-button-prev {
        left: var(--swiper-navigation-sides-offset, 20px);
    }
    .hero-swiper .swiper-button-next {
        right: var(--swiper-navigation-sides-offset, 20px);
    }
}


/* testimony */

.navigation-circle {
    gap: 1rem;
    display: flex;
}

.navigation-circle .prev,
.navigation-circle .next {
    width: 40px;
    height: 40px;
    font-size: 26px;
    cursor: pointer;
    line-height: 1.5;
    text-align: center;
    border-radius: 50%;
    color: var(--dark-70);
    border: 2px solid var(--light-60);
}

.navigation-circle .prev:hover,
.navigation-circle .next:hover {
    border: 2px solid var(--dark-70);
}

.navigation-circle .prev i,
.navigation-circle .next i {
    line-height: 0;
}

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

.testimony img {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 1rem;
}

.testimony .description {
    left: 36px;
    bottom: 36px;
    z-index: 100;
    position: absolute;
}

.testimony .description .vehicle {
    font-size: 18px;
    font-weight: 600;
    color: var(--light-10);
}

.testimony .description .brand {
    font-size: 14px;
    color: var(--dark-20);
}


/* search */

.bg-search {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../img/bg-search.jpg');
}

.bg-search .card {
    width: 100%;
    margin: 0 auto;
    max-width: 971px;
}

@media (max-width: 991px) {
    .bg-search .card {
        max-width: 860px;
    }
}

@media (max-width: 576px) {
    .bg-search .card {
        max-width: 360px;
    }
}


/* banner-promo */

.banner-promo {
    width: 100%;
    height: 400px;
    padding: 1rem;
    text-align: center;
    color: var(--white);
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}


/* pagination */

.pagination .page-item {
    margin-right: 1rem;
}

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

.pagination .page-item .page-link {
    font-size: 1rem;
    padding: 10px 18px;
    color: var(--dark-30);
    border-color: transparent;
    border-radius: 8px!important;
    background-color: transparent;
}

.pagination .page-item .page-link a {
    color: var(--dark-30);
}

.pagination .page-item .page-link:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0);
}


/* contacts */

.contacts {
    gap: 2rem;
    display: flex;
}

@media(min-width:1200px) {
    .contacts {
        gap: 3rem;
        flex-direction: row;
    }
}

.contacts .item .icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}


/* product */

@media (max-width: 767px) {
    .card-product .card-img-top {
        width: 100%;
        height: 36vw;
        object-fit: cover;
    }
    .card-product.home .card-img-top {
        height: 36vw;
    }
    .card-product.pricelist .card-img-top {
        height: 60vw;
    }
}

@media (min-width: 768px) {
    .card-product .card-img-top {
        width: 100%;
        height: 19vw;
        object-fit: cover;
    }
    .card-article.home .card-img-top {
        height: 20vw;
    }
    .card-product.pricelist .card-img-top {
        height: 15vw;
    }
}

@media (min-width: 992px) {
    .card-product .card-img-top {
        width: 100%;
        height: 19vw;
        object-fit: cover;
    }
    .card-product.home .card-img-top {
        height: 20vw;
    }
    .card-product.pricelist .card-img-top {
        height: 15vw;
    }
}

@media (min-width: 1200px) {
    .card-product .card-img-top {
        width: 100%;
        height: 14vw;
        object-fit: cover;
    }
    .card-product.home .card-img-top {
        height: 20vw;
    }
    .card-product.pricelist .card-img-top {
        height: 15vw;
    }
}

.card-product ul li {
    font-size: 14px;
    color: var(--dark-30);
}

.card-product .files .main {
    position: relative;
}

.card-product .files .main img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.card-product .files .main .no-image {
    width: 100%;
    display: grid;
    text-align: center;
    border-radius: 8px;
    place-items: center;
    background-color: var(--light-30);
}

@media (max-width: 767px) {
    .card-product .files .main img {
        height: 85vw;
    }
    .card-product .files .main .no-image {
        height: 85vw;
    }
}

@media (min-width: 768px) {
    .card-product .files .main img {
        height: 37vw;
    }
    .card-product .files .main .no-image {
        height: 37vw;
    }
}

@media (min-width: 992px) {
    .card-product .files .main img {
        height: 37vw;
    }
    .card-product .files .main .no-image {
        height: 37vw;
    }
}

@media (min-width: 1200px) {
    .card-product .files .main img {
        height: 36vw;
    }
    .card-product .files .main .no-image {
        height: 36vw;
    }
}

.card-product .files .main .video-play {
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 999;
    width: 68px;
    height: 68px;
    font-size: 24px;
    border-radius: 50px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
}

.card-product .files .thumbs {
    width: 100%;
    height: 100%;
}

.card-product .files .thumbs .swiper-slide {
    height: unset;
}

.card-product .files .thumbs .swiper-slide.img-gradient::after {
    border-radius: 8px;
}

.card-product .files .thumbs .swiper-slide img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .card-product .files .thumbs .swiper-slide img {
        height: 22vw;
    }
}

@media (min-width: 768px) {
    .card-product .files .thumbs .swiper-slide img {
        height: 7.6vw;
    }
}

@media (min-width: 992px) {
    .card-product .files .thumbs .swiper-slide img {
        height: 8vw;
    }
}

@media (min-width: 1200px) {
    .card-product .files .thumbs .swiper-slide img {
        height: 8vw;
    }
}

.card-product .files .thumbs .swiper-button-prev {
    opacity: .4;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background-color: var(--light-70);
}

.card-product .files .thumbs .swiper-button-prev:after {
    font-size: 16px;
    color: var(--dark-70);
}

.card-product .files .thumbs .swiper-button-prev.swiper-button-disabled {
    opacity: .2;
}

.card-product .files .thumbs .swiper-button-next {
    opacity: .4;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background-color: var(--light-70);
}

.card-product .files .thumbs .swiper-button-next:after {
    font-size: 16px;
    color: var(--dark-70);
}

@media(max-width:991px) {
    .card-product .cta .btn {
        width: 100%;
    }
}

.checkbox-variant[type="radio"]:checked,
.checkbox-variant[type="radio"]:not(:checked) {
    width: 0;
    height: 0;
    left: -9999px;
    position: absolute;
    visibility: hidden;
}

.checkbox-variant:checked+label,
.checkbox-variant:not(:checked)+label {
    cursor: pointer;
    border-radius: 12px;
    color: var(--dark-70);
}

.checkbox-variant:not(:checked)+label {
    border: 1px solid rgba(0, 0, 0, 0.175);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0);
}

.checkbox-variant:checked+label {
    border: 1px solid var(--bs-primary);
}

.checkbox-variant:checked+label span,
.checkbox-variant:not(:checked)+label span {
    display: block;
    position: relative;
}


/* article */

.card-article {
    height: 100%;
}

@media (max-width: 767px) {
    .card-article .card-img-top {
        width: 100%;
        height: 60vw;
        object-fit: cover;
    }
    .card-article.home .card-img-top {
        height: 60vw;
    }
}

@media (min-width: 768px) {
    .card-article .card-img-top {
        width: 100%;
        height: 20vw;
        object-fit: cover;
    }
    .card-article.home .card-img-top {
        height: 20vw;
    }
}

@media (min-width: 992px) {
    .card-article .card-img-top {
        width: 100%;
        height: 20vw;
        object-fit: cover;
    }
    .card-article.home .card-img-top {
        height: 20vw;
    }
}

@media (min-width: 1200px) {
    .card-article .card-img-top {
        width: 100%;
        height: 15vw;
        object-fit: cover;
    }
    .card-article.home .card-img-top {
        height: 20vw;
    }
}


/* share */

.share .action {
    gap: 10px;
    display: flex;
}

.share .action .item {
    width: 48px;
    height: 48px;
    font-size: 24px;
    border-radius: 8px;
    color: var(--bs-primary);
    border-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-30);
}

.share .action .item:hover {
    background-color: var(--light-60);
}


/* footer */

footer .information {
    width: 100%;
    max-width: 390px;
}

footer .social-link {
    border-radius: 8px;
    padding: 8px 8px 2px 8px;
    background-color: var(--light-30);
}

footer .social-link i {
    font-size: 1.5rem;
}

footer ul li {
    padding-bottom: 12px;
}

footer ul li,
footer ul li a {
    font-size: 14px;
    color: var(--dark-30)!important;
}

footer ul li a:hover {
    color: var(--dark-70)!important;
}

footer .copyright {
    color: var(--dark-30)!important;
}


/* customer support */

.customer-support {
    bottom: 0;
    left: auto;
    right: 16px;
    z-index: 999;
    position: fixed;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.customer-support img {
    width: 100%;
    height: auto;
    max-width: 125px;
}

@media(min-width: 1200px) {
    .customer-support {
        right: 42px;
    }
    .customer-support img {
        width: 100%;
        height: auto;
        max-width: 150px;
    }
}


/* filter mobile */

.filter-mobile {
    bottom: 0;
    left: 16px;
    bottom: 16px;
    z-index: 999;
    position: fixed;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.filter-mobile .btn-primary {
    color: var(--dark-90);
    border-color: var(--dark-90);
    background-color: var(--white);
}


/* offcanvas */

.offcanvas.offcanvas-start {
    width: 300px;
    border-right: none;
}

.offcanvas.offcanvas-start .offcanvas-body {
    height: 75vh;
}

.offcanvas.theme-option {
    top: 25%;
    width: 230px;
    border-right: none;
    max-height: max-content;
    border-radius: 8px 0 0 8px;
    border: 1px solid var(--stroke);
}

.offcanvas.theme-option .btn-theme-option-close {
    top: 30%;
}

.offcanvas.theme-option.show.hiding .btn-theme-option-close {
    top: 26px;
}

.offcanvas.theme-option:not(.show) .btn-theme-option-close {
    top: 26px;
}

@media(min-width: 1200px) {
    .offcanvas.theme-option.show.hiding .btn-theme-option-close {
        top: 36px;
    }
    .offcanvas.theme-option:not(.show) .btn-theme-option-close {
        top: 36px;
    }
}

.offcanvas.theme-option .offcanvas-body {
    padding-top: 0;
}

.offcanvas.theme-option .offcanvas-body .item {
    gap: 10px;
    width: 100%;
    padding: 12px;
    display: flex;
    text-align: start;
    align-items: center;
}

.offcanvas.theme-option .offcanvas-body .item .box-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.logo-brand {
    width: 100%;
    height: auto;
    max-width: 150px;
}


/* ui-autocomplete */

.ui-autocomplete {
    left: 0;
    top: 100%;
    padding: 4px 0 0 0;
    list-style: none;
    border-radius: 6px;
    position: absolute;
    background-color: var(--white);
    border: 1px solid var(--stroke);
}

.ui-menu-item {
    top: 10px;
    padding: 10px;
    display: block;
    color: var(--dark-10);
}

.ui-state-hover,
.ui-state-active {
    cursor: pointer;
    border-radius: 4px;
    color: var(--dark-90);
}


/* about */

.video-md {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

iframe.video-md {
    height: 36vh;
}

@media (min-width: 1200px) {
    iframe.video-md {
        height: 50vh;
    }
}