@import url(./header.css);
@import url(./footer.css);
@import url(./loader.css);

.owl-nav {
    display: none;
}

.banner-slider-section {
    padding-top: 100px;
    background-color: #7823dd;
}

.section {
    padding: 30px 0;
}

.tab-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-content-1,
.tab-content {
    display: none;
}

.tab-content-1.current,
.tab-content.current {
    display: block;
}

.tab-content-1 {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    text-transform: capitalize;
    color: rgba(0, 0, 0, 0.35);
}

.tab-section-desc {
    font-size: 18px;
    font-family: "Poppins";
    font-weight: 500;
    color: #2f0063;
}

.title-section h2 {
    font-size: 30px;
    line-height: 1.5;
    font-family: "Poppins";
    font-weight: 700;

    margin-bottom: 0;
}

.title-section h2 span {
    color: #7823dc;
}

.package-item {
    font-size: 18px;
    padding: 20px 10px;
    min-width: 200px;
    width: calc(33.333333% - 2px);
    font-weight: 500;
    text-align: center;
    border: none;
    padding: 15px 24px;
    margin: 0 12px;
    border: 2px solid #7823DC;
    color: #7823DC;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
}

.package-item.active,
.package-item:hover {
    background-color: #7823DC;
    color: #fff;
    border-radius: 0px;
}

.package-item.active::after {
    position: absolute;
    bottom: -9px;
    left: 5px;
    margin-left: 0px;
    content: "";
    display: block;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #7823DC;
}

section {
    column-width: 260px;
    column-gap: 6px;
    padding: 5px;
}

section img {
    width: 100%;
    cursor: pointer;
    padding: 3px 0;
}

.lightbox {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    display: none;
    background: #7f8c8d;
    left: 0;
    z-index: 9999;
}

.filter {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(20px);
    opacity: 0.5;
    background-position: center;
    background-size: cover;
}

.lightbox img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(0deg);
    max-height: 95vh;
    max-width: calc(95vw - 100px);
    transition: 0.8s cubic-bezier(0.7, 0, 0.4, 1);
    transform-style: preserve-3d;
}

[class^="arrow"] {
    height: 200px;
    width: 50px;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

[class^="arrow"]:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 15px;
    height: 15px;
}

.arrowr {
    right: 0;
}

.arrowr:after {
    border-right: 1px solid white;
    border-bottom: 1px solid white;
}

.arrowl {
    left: 0;
}

.arrowl:after {
    border-left: 1px solid white;
    border-top: 1px solid white;
}

.close {
    position: absolute;
    right: 0;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.4);
    margin: 20px;
    cursor: pointer;
    border-radius: 50%;
}

.close:after,
.close:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 60%;
    background: #fff;
}

.close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.title {
    font-size: 20px;
    color: #000;
    z-index: 1000;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 20px 0;
}

.tab-content-block {
    margin-top: 30px;
}

.tab-content {
    position: relative;
    min-height: 300px;
}

#loading-wrapper {
    position: absolute;
    z-index: 1;
}

#loading-content {
    top: 140px;
}

#loading-text {
    top: 125px;
}

@media(max-width: 768px) {
    section {
        column-width: 150px;
    }

    .package-item {
        font-size: 14px;
        padding: 20px 10px;
        min-width: 150px;
        padding: 10px 10px;
        margin: 0 5px;
    }
}

@media(max-width: 468px) {
    section {
        column-width: 100px;
        column-gap: 2px;
        padding: 2px;
    }

    section img {
        padding: 1px 0;
    }
}