body {
    font-family: "Avant Garde";
}

.is-hidden {
    opacity: 0;
    transition: transform 0.4s, opacity 0.2s;
}

:root {
    --black-1: #333333;
    --white: #ffffff;
    --blue-1: #04aed7;
    --blue-2: #85cde8;
    --blue-3: #64b7cb;
    --blue-4: #aeecff;
    --gray-1: #3e3e3e;
    --gray-2: #6e6e6e;
    --gray-3: #8e8e8e;
    --gray-4: #bebebe;
    --gray-400: rgba(156, 163, 175, 1);
    --gradient-1: linear-gradient(var(--blue-1), var(--blue-4));
}

.z-10k {
    z-index: 10000;
}

.text-2xs {
    font-size: 0.5rem;
}

.text-primary {
    color: var(--blue-1);
}

.text-yellow {
    color: #ffc403;
}

.hover\:text-primary:hover {
    color: var(--blue-1);
}

.text-gray-1 {
    color: var(--gray-1);
}

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

.text-gray-3 {
    color: var(--gray-3);
}

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

.hover\:bg-primary:hover {
    background-color: var(--blue-1);
}

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

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

.bg-primary-light {
    background-color: rgba(4, 174, 215, 0.4);
}

.border-primary {
    border-color: #04aed7;
}

.border-yellow {
    border-color: #ffc403;
}

.hover\:border-primary:hover {
    border-color: var(--blue-1);
}

.shadow-box {
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

.bg-gallery-box .overlay,
.bg-squad-box .overlay {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background-image: linear-gradient(to top,
            rgba(100, 182, 203, 0.815) 0%,
            rgba(90, 216, 254, 0.315) 40%,
            rgba(90, 216, 254, 0) 80%);
    background-color: transparent;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.bg-gallery-box {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    background-size: 110%;
}

.bg-gallery-box:hover .overlay,
.bg-squad-box:hover .overlay {
    background-image: linear-gradient(to top,
            rgba(100, 183, 203, 0.6) 0%,
            rgba(90, 216, 254, 0) 40%,
            rgba(90, 216, 254, 0) 80%);
    background-color: rgba(100, 183, 203, 0.6);
}

.bg-gallery-box .name,
.bg-squad-box .name {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: translateY(270%);
    transform: translateY(270%);
}

.bg-gallery-box .name {
    -webkit-transform: translateY(25%);
    transform: translateY(25%);
}

.bg-gallery-box .desc,
.bg-squad-box .desc {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: translateY(110%);
    transform: translateY(110%);
}

.bg-gallery-box .desc {
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
}

.bg-squad-box:hover .name,
.bg-squad-box:hover .desc {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.bg-gallery-box:hover .name {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: translateY(-75%);
    transform: translateY(-75%);
}

.bg-gallery-box:hover .desc {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.bg-gallery-box:hover {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    background-position-x: 0px;
}

.font-avant {
    font-family: "Avant Garde";
}

.font-demi {
    font-family: "Avant Garde Demi";
}

.font-poppins {
    font-family: "Poppins", sans-serif;
}

.webkit {
    display: -webkit-box;
}

.clamp-2 {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp-3 {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp-4 {
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp-5 {
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav-link {
    position: relative;
    background: transparent;
}

.header .nav-link:hover::before,
.header .nav-link.active::before {
    content: "";
    width: 5px;
    height: 4px;
    background-color: transparent;
    position: absolute;
    border-radius: 6px;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.bg-gradient-1 {
    background-image: linear-gradient(to bottom, #04aed7, #aaeeff);
}

.bg-gradient-1-nav {
    background-image: linear-gradient(to bottom,
            #7fe0f8,
            rgba(255, 255, 255, 0));
}

.bg-gradient-1-nav.logged-in {
    background-color: #04aed7;
    background-image: unset;
}

.bg-gradient-1-to-t {
    background-image: linear-gradient(to top,
            #64b7cb 0%,
            rgba(90, 216, 254, 0) 40%,
            rgba(90, 216, 254, 0) 80%);
}

.navbar {
    z-index: 1000;
}

.nav-header {
    background-color: var(--blue-1);
}

.nav-burger {
    padding: 4px 10px;
    border-radius: 50rem;
    background-color: rgba(255, 255, 255, 45%);
    color: var(--white);
    outline: none;
}

.nav-burger-trans {
    padding: 4px 10px;
    border-radius: 50rem;
    background-color: rgba(255, 255, 255, 0);
    color: var(--white);
    outline: none;
}

.modal,
#modalBuyProduct,
#modalLogin,
#modalSignup {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.modal .modal-body,
#modalBuyProduct .modal-body,
#modalLogin .modal-body,
#modalSignup .modal-body {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.modal-body.mhsh {
    display: inline-flex;
    flex-direction: column;
    max-height: calc(100vh - 4rem);
}

.modal.active,
#modalBuyProduct.active,
#modalLogin.active,
#modalSignup.active {
    opacity: 1;
    visibility: visible;
}

.modal.active .modal-body,
#modalBuyProduct.active .modal-body,
#modalLogin.active .modal-body,
#modalSignup.active .modal-body {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* healthy food section */
.body-section,
.healthy-food {
    -webkit-box-shadow: 0px -15px 6px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px -15px 6px 0px rgba(0, 0, 0, 0.3);
    border-radius: 50px 50px 0 0;
    position: relative;
    z-index: 2;
}

.healthy-food .slider-box .slick-list .single-box .part-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.healthy-food .slider-box .slick-list .single-box .part-img img {
    width: 100%;
    max-width: inherit;
    height: 498px;
    border-radius: 0 50px 50px 0;
    object-fit: cover;
}

.article .part-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.healthy-food .slider-box .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 65px;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    border: 0;
    border-radius: 50%;
    outline: none;
    padding: 0;
    font-size: 20px;
    color: #8e8e8e;
    background: #f3f3f3;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.healthy-food .slider-box .slick-arrow.prev {
    left: 30px;
    z-index: 2;
}

.healthy-food .slider-box .slick-arrow.prev i {
    position: relative;
    top: 1px;
    right: 3px;
}

.healthy-food .slider-box .slick-arrow.next {
    left: auto;
    right: 30px;
}

.healthy-food .slider-box .slick-arrow.next i {
    position: relative;
    top: 1px;
    left: 3px;
}

.healthy-food .slider-box .slick-arrow:hover,
.healthy-food .slider-box .slick-arrow:focus {
    color: #04aed7;
}

.healthy-food .slider-box .slick-dots {
    position: absolute;
    top: -50px;
    right: 128px;
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.healthy-food .slider-box .slick-dots li {
    height: 12px;
}

.healthy-food .slider-box .slick-dots li.slick-active button {
    background: #04aed7;
}

.healthy-food .slider-box .slick-dots li button {
    padding: 0;
    width: 12px;
    height: 12px;
    background: #f3f3f3;
    border: 0;
    border-radius: 50%;
    margin: 0 8px;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    outline: none;
    color: transparent;
}

/* social media movement section*/
.social-media-movement {
    background-image: linear-gradient(to bottom, #04aed7, #aaeeff);
}

.single-box.our-products .original-content {
    visibility: hidden;
    transition: visibility 0.3s linear, opacity 0.3s linear;
}

.single-box.our-products .overlay {
    background-size: cover;
    background-position: center;
    visibility: visible;
    transition: visibility 0.3s linear, opacity 0.3s linear;
}

.single-box.our-products:hover .original-content {
    visibility: visible;
    opacity: 1;
    transition: visibility 0.3s linear, opacity 0.3s linear;
}

.single-box.our-products:hover .overlay {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s linear, opacity 0.3s linear;
}

.part-img .slide-right {
    position: relative;
    left: -200px;
    transition: 0.3s;
}

.single-box:hover .part-img .slide-right {
    transition: 0.3s;
    left: 0;
}

/* event */
.event .slider-box .owl-nav {
    position: absolute;
    top: 40%;
    left: -65px;
    right: -65px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 0;
}

.event .slider-box .owl-nav button {
    visibility: visible;
    text-align: center;
    width: 45px;
    height: 45px;
    line-height: 53px;
    background: white;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 50%;
    outline: none;
    font-size: 15px;
    color: var(--gray-3);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    visibility: hidden;
}

.event .slider-box.owl-visible .owl-nav button {
    visibility: visible;
}

.event .slider-box .owl-nav button:hover,
.event .slider-box .owl-nav button:focus {
    color: var(--blue-1);
}

.event .slider-box .owl-nav .owl-prev i {
    position: relative;
    right: 2px;
}

.event .slider-box .owl-nav .owl-next i {
    position: relative;
    left: 2px;
}

.event .slider-box .owl-dots {
    position: absolute;
    top: -70px;
    right: 0;
}

.event .slider-box .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: var(--blue-4);
    border-radius: 50%;
    margin: 0 5px;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    outline: none;
}

.event .slider-box .owl-dots .owl-dot.active {
    background: var(--white);
}

/* faq */
.faq-category .nav-link {
    display: inline-block;
    width: auto;
    padding: 2px 8px;
    font-family: "Avant Garde Demi";
    color: var(--white);
    text-align: center;
    border: 1px solid var(--white);
    border-radius: 0.5rem;
    cursor: pointer;
}

.faq-category .nav-link:hover,
.faq-category .nav-link.active {
    background: var(--white);
    color: var(--blue-1);
}

.faq-img .img-3 {
    bottom: -16rem;
    transform: scale(1.5);
    transition: all 0.2s ease-in-out;
}

.faq-img .img-2 {
    bottom: 0;
    left: 0;
    transition: all 0.2s ease-in-out;
}

.faq-img .img-1 {
    bottom: -1.5rem;
    right: 0;
    transition: all 0.2s ease-in-out;
}

.faq-img:hover .img-3 {
    bottom: -10rem;
    transform: scale(1.25);
    transition: all 0.2s ease-in-out;
}

.faq-img:hover .img-2 {
    left: 6rem;
    bottom: 2rem;
    transition: all 0.2s ease-in-out;
}

.faq-img:hover .img-1 {
    right: 6rem;
    bottom: 2rem;
    transition: all 0.2s ease-in-out;
}

/* Accordion styles */
.faq-tab .tabs {
    border-radius: 8px;
    overflow: hidden;
}

.faq-tab .tab {
    width: 100%;
    color: white;
    overflow: hidden;
}

.faq-tab .tab-label {
    display: flex;
    font-weight: bold;
    cursor: pointer;
    /* Icon */
}

.faq-tab .tab-content {
    max-height: 0;
    padding: 0;
    padding-top: 0.5rem;
    padding-bottom: 2.5rem;
    padding-left: 1.75rem;
    /* font-size: 14px; */
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.faq-tab input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.faq-tab .tab-label i {
    position: relative;
    transform: rotate(0deg);
    transition: all 0.35s;
}

.faq-tab input:checked+.tab-label i {
    transform: rotate(180deg);
    bottom: 2px !important;
}

.faq-tab input:checked~.tab-content {
    max-height: 100vh;
    opacity: 1;
}

/* did you know section in event information page */
.did-you-know .slider-box .single-box {
    width: 100%;
}

.did-you-know .slider-box .single-box img {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

.shadow-custom {
    box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.16);
}

/* profile */

.profiles-tab .nav-link {
    display: inline-block;
    width: 9rem;
    color: var(--gray-2);
    text-align: center;
    border: 1px solid var(--gray-2);
    border-radius: 0.5rem;
    cursor: pointer;
}

.profiles-tab .nav-link:hover,
.profiles-tab .nav-link.active {
    background: var(--blue-3);
    color: var(--white);
    border-color: var(--blue-3);
}

.profile-form label {
    color: var(--gray-4);
}

.profile-form select,
.profile-form input {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 14px;
    border-color: transparent;
    color: var(--gray-2);
    padding: 10px 30px;
}

.tab-content>.tab-pane {
    display: none;
}

.tab-content>.active {
    display: block;
}

.event-list li,
.class-list li {
    margin-bottom: 24px;
    display: flex;
    padding: 26px 24px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 28px;
}

.event-list .part-img,
.class-list .part-img {
    width: 280px;
    height: 158px;
    border-radius: 16px;
    overflow: hidden;
}

.event-list .part-txt,
.class-list .part-txt {
    margin-left: 36px;
    color: var(--gray-2);
    font-size: 14px;
    width: 52%;
}

.event-list .part-txt h3,
.class-list .part-txt h3 {
    font-size: 20px;
}

.event-list .part-txt h4,
.class-list .part-txt h4 {
    font-size: 16px;
}

.event-list .part-txt .info,
.class-list .part-txt .info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-event {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.card-event .card-event_body {
    padding-right: 16px;
}

.card-event h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 225px;
}

.badge-state {
    background: var(--gray-4);
    color: var(--gray-2);
    height: fit-content;
    font-size: 12px;
    padding: 6px 20px;
    border-radius: 6px;
}

.badge-state.active {
    background: var(--blue-1);
    color: var(--white);
}

.gallery-video-btn {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -80px;
    margin-bottom: 10px;
    color: var(--white);
    border-radius: 50rem;
    background-color: var(--blue-1);
}

.gallery-video-btn i {
    width: 15px;
    height: 25px;
    font-size: 20px;
}

.shadow-ion {
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
}

/* dropdown */

.dropdown {
    position: relative;
    z-index: 100;
}

.dropdown .dropdown-content {
    position: absolute;
    right: 0;
    top: 100%;
    display: none;
}

.dropdown.show .dropdown-content {
    display: block;
}

.dropdown .dropdown-menus {
    padding: 16px;
    background-color: var(--white);
    border: 1px solid var(--blue-1);
    border-radius: 8px;
    z-index: 200;
}

.dropdown .dropdown-menus .dropdown-menu+.dropdown-menu {
    margin-top: 6px;
}

.dropdown .dropdown-menus .dropdown-menu .dropdown-menu-item {
    color: var(--blue-1);
    white-space: nowrap;
}

/* end dropdown */

/* owl carousel */

.owl-dots-none .owl-dots {
    display: none !important;
}

.full-height .owl-stage {
    display: flex;
}

/* end owl carousel */

/* ionation slider */

.ionation-class-slider .owl-dots {
    position: absolute;
    left: 6px;
    bottom: -52px;
}

.ionation-class-slider .owl-dots .owl-dot {
    display: inline-block;
}

.ionation-class-slider .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    margin: 0 6px;
    background-color: #cbd2d9;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 0.2s ease;
    border-radius: 50rem;
}

.ionation-class-slider .owl-dots .owl-dot.active span {
    background-color: #03b8e8;
}

@media (max-width: 767px) {
    .ionation-class-slider .owl-dots {
        display: none;
    }
}

/* end ionation slider */

.tab-button {
    width: 100%;
    padding: 0.5rem 1rem;
    text-align: center;
    color: var(--blue-1);
    border-radius: 50rem;
    border: 1px solid var(--blue-1);
    background-color: var(--white);
}

.tab-button.active {
    color: var(--white);
    background-color: var(--blue-1);
}

.banner-slider .slider-content {
    width: 100%;
    height: 100vh;
    min-height: 750px;
}

.banner-slider .slider-home {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-slider .owl-dots {
    position: absolute;
    justify-content: center;
    width: 100%;
    bottom: 100px;
    left: 0;
    right: 0;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.banner-slider .owl-dots .owl-dot {
    height: 12px;
}

.banner-slider .owl-dots .owl-dot.active {
    background: #04aed7;
}

.banner-slider .owl-dots .owl-dot {
    padding: 0;
    width: 12px;
    height: 12px;
    background: #f3f3f3;
    border: 0;
    border-radius: 50%;
    margin: 0 8px;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    outline: none;
    color: transparent;
}

.footer .logo img {
    width: 70px;
    height: auto;
}

/* nav header mobile menu */

.nav-header-mobile-menu {
    width: 300px;
    right: -100%;
    z-index: 1000;
    transition: right 0.3s ease-in-out;
}

.nav-header-mobile-menu.show {
    right: 0;
}

/* end nav header mobile menu */

/* nav tabs */

.nav-tabs.main-nav-tabs .nav-link {
    width: auto;
    background-color: var(--white);
    border-color: rgba(107, 114, 128, 1);
    color: rgba(107, 114, 128, 1);
}

.nav-tabs-profile .nav-link {
    width: 120px;
    background-color: transparent;
    border-color: gray;
    color: gray;
}

.nav-tabs-profile .nav-link.active {
    background-color: var(--blue-1);
    border-color: var(--blue-1);
    color: var(--white);
}

/* end nav tabs */

/* wizard */

.wizard-indicator {
    position: relative;
}

.wizard-dot {
    position: relative;
    z-index: 5;
}

.wizard-line-t {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 16px;
    background-color: rgba(209, 213, 219, 1);
    z-index: 1;
}

.wizard-line-b {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: rgba(209, 213, 219, 1);
    z-index: 1;
}

.wizard:first-child .wizard-line-t,
.wizard:last-child .wizard-line-b {
    background-color: transparent !important;
}

.wizard.on .wizard-dot,
.wizard.on .wizard-line-t,
.wizard.done .wizard-line-b {
    background-color: var(--blue-1);
}

/* end wizard */

/* select seat */

.select-seat input:checked~label {
    background-color: var(--blue-1);
    color: var(--white);
}

/* end select seat */

/* form */

.select {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.select label {
    cursor: pointer;
}

.select input {
    display: none;
}

.select .select-mark {
    width: 16px;
    min-width: 16px;
    height: 16px;
    min-height: 16px;
    border: 1px solid var(--gray-4);
    background-color: var(--white);
    border-radius: 4px;
    margin-right: 8px;
    margin-top: -1px;
    transition: 0.25s ease;
}

.select input:checked~.select-mark {
    border-color: var(--blue-1);
    background-color: var(--blue-1);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e9e9e9;
    border-radius: 34px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--blue-1);
    border-radius: 50%;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked+.slider {
    background-color: var(--blue-1);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--blue-1);
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
    background-color: var(--white);
}

/* end form */

/* header banner */

.header-banner {
    background: linear-gradient(266.95deg, #03b8e8 -18.83%, #aaeeff 134.51%);
}

/* end header banner */

/* utils */

.square {
    position: relative;
    width: 100%;
}

.square-big {
    position: relative;
    width: 100%;
    align-self: center;
    padding: 0 15%;
}

.square::before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%;
}

.square>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.square img.object-contain {
    object-fit: contain;
}

/* end utils */

.partners-logo-button {
    display: none;
}

#partners-logo-button-anchor+.partners-logo-button {
    display: block;
}

.disabled .partners-logo-button {
    display: none !important;
}

.preview img {
    transition: 0.25s ease-in-out;
}

.preview:hover img {
    opacity: 0.25;
    filter: blur(5px);
}

.preview .remove-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #e83a14;
    transition: 0.25s ease-in-out;
}

.preview:hover .remove-button {
    transform: translate(-50%, -50%) scale(1);
}

.hub-book-item.active {
    border-color: var(--blue-1);
}

/* tooltips */

.tooltip {
    position: absolute;
    z-index: 1070;
    margin-bottom: 8px;
}

.tooltip .arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem;
    bottom: -6px;
}

.tooltip .arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
    top: 0;
    border-width: 0.4rem 0.4rem 0;
    border-top-color: #1f262c;
}

.tooltip-inner {
    max-width: 200px;
    padding: 8px 12px;
    color: #fff;
    text-align: center;
    background-color: #1f262c;
    border-radius: 6px;
    font-size: 14px;
    line-height: normal;
}

/* end tooltops */

.modal-lightbox .slider-box .owl-dots {
    display: none;
}

.modal-lightbox .lightbox-image {
    width: 500px;
    height: 400px;
    object-fit: contain;
    margin: 0 auto;
}

/* checkbox and radio button */

.selection input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.selection label {
    padding: 4px 16px;
    border: 1px solid var(--gray-400);
    border-radius: 6px;
    background-color: var(--white);
    font-size: 14px;
    color: var(--gray-400);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.selection input:checked~label {
    border-color: var(--blue-1);
    background-color: var(--blue-1);
    color: var(--white);
}

/* end checkbox and radio button */

/* select2 */

.select2-override~.select2-container {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(243, 244, 246, 1);
    border-radius: 0.75rem;
}

.select2-override~.select2-container .select2-selection {
    height: 47px;
    border: none !important;
}

.select2-override~.select2-container .select2-selection .select2-selection__rendered {
    padding: 0.6rem 1.5rem;
}

.select2-override~.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}

.select2-dropdown {
    border-color: rgb(199, 201, 202) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-color: rgb(199, 201, 202) !important;
    border-radius: 6px;
    border-width: 3px !important;
}

.select2-search--dropdown {
    padding: 1rem !important;
}

.select2-results__option {
    padding: 0.25rem 1.5rem !important;
}

/* end select2 */

/* gallery */

.gallery-card::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--blue-1);
    background: linear-gradient(360deg,
            #03b8e8 -34.5%,
            rgba(255, 255, 255, 0) 62.62%);
}

/* end gallery */

/* responsive */

@media (max-width: 767px) {
    .banner-slider .slider-home {
        object-fit: contain;
    }

    .modal-lightbox .slider-box .owl-nav {
        left: 0;
        right: 0;
        top: calc(100% + 8px);
        transform: none;
    }

    .modal-lightbox .lightbox-image {
        height: auto;
        max-height: 60vh;
    }

    .bg-gallery-box .name,
    .bg-squad-box .name {
        -webkit-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
        -webkit-transform: translateY(300%);
        transform: translateY(300%);
    }

    .nav-tabs-profile .nav-link.m-full {
        width: 100%;
    }

    .banner-slider .slider-content {
        height: 380px;
        padding: 50px 0 -50px 0;
        min-height: unset;
    }

    .healthy-food,
    .body-section {
        box-shadow: none;
        border-radius: 15px 15px 0 0;
    }

    .healthy-food .slider-box .slick-list .single-box .part-img img {
        height: 200px;
        border-radius: 0;
    }

    .single-box.our-products .original-content {
        visibility: visible;
    }

    .single-box.our-products .overlay {
        visibility: hidden;
    }

    .part-img .slide-right {
        left: 0;
    }

    .article .part-img img {
        height: 150px;
    }

    .event .slider-box .owl-dots {
        top: -50px;
    }

    .faq-category .nav-link {
        width: 100%;
    }

    .healthy-food .slider-box .slick-arrow {
        width: 40px;
        height: 40px;
        top: 17%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    .healthy-food .slider-box .slick-arrow.next i {
        top: 4px;
        left: 2px;
    }

    .healthy-food .slider-box .slick-arrow.prev i {
        top: 4px;
        right: 2px;
    }

    .nav-tabs .nav-link {
        color: var(--blue-1);
        border-color: var(--blue-1);
    }

    .faq-tab .tab {
        color: var(--blue-1);
        font-size: 18px;
    }
}

/* end responsive */

.dropdown:hover .dropdown-menu {
    display: block;
}

.trapezoid-class {
    border-bottom: 20px solid #03b8e8;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    height: 0;
    width: 70px;
    margin: auto;
}

.trapezoid-event {
    border-bottom: 20px solid #e98305;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    height: 0;
    width: 70px;
    margin: auto;
}

/* Toggle A */
input:checked~.dot {
    transform: translateX(100%);
    background-color: #48bb78;
    padding: 5px;
}


.template-search~.select2 .select2-selection--single {
    height: 100px;
    border-radius: 0.5rem;
    --tw-border-opacity: 1 !important;
    border-color: rgba(199, 201, 202, var(--tw-border-opacity)) !important;
}
