.packagesSection {
    width: 100%;
    height: auto;
    padding: 100px 0;
    overflow: hidden;
}

.packagesSection>h1 {
    font-size: 300%;
    text-transform: capitalize;
    font-family: var(--font1);
    font-weight: 100;
    text-align: center;
    margin-bottom: 30px;
}

.packagesButtons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 100px;
}

.packagesButtons>button {
    background-color: white;
    border: 1px solid black;
    padding: 15px 30px;
    text-transform: capitalize;
    font-family: var(--font2);
    font-weight: 600;
    font-size: 100%;
    border-radius: var(--br3);
    cursor: pointer;
    transition: 250ms ease-out;
}

.packagesButtons>button:hover {
    background-color: black;
    color: white;
}

.packagesHere {
    width: 90%;
    margin: 0 auto;
}

.firstPacksSlider, .secondPacksSlider {
    overflow: hidden;
    position: relative;
}

.onePackage {
    width: 100%;
    height: auto;
    padding: 30px 12%;
    border-radius: var(--br1);
}

.firstPacksSlider .swiper-slide:nth-child(odd)>.onePackage, .secondPacksSlider .swiper-slide:nth-child(odd)>.onePackage {
    background-color: #FDE7D7;
}

.firstPacksSlider .swiper-slide:nth-child(even)>.onePackage, .secondPacksSlider .swiper-slide:nth-child(even)>.onePackage {
    background-color: #F3E6F3;
}

.onePackage>h1 {
    font-size: 150%;
    font-family: var(--font2);
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
}

.onePackage>hr {
    opacity: 0.35;
    margin: 30px 0;
}

.onePackage table {
    width: 100%;
    margin-bottom: 30px;
}

.onePackage table .pElIcon {
    width: 15%;
    min-width: 55px;
    color: rgba(0, 0, 0, 0.85);
}

.onePackage table .pElData {
    width: justify;
}

.onePackage table td {
    padding: 15px 0;
}

.onePackage table i {
    font-size: 200%;
}

.onePackage table h2 {
    font-size: 110%;
    font-family: var(--font2);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.onePackage table p {
    font-size: 100%;
    font-family: var(--font2);
    font-weight: 500;
    text-transform: capitalize;
}

.pPricingArea {
    width: 100%;
    height: auto;
    padding: 25px;
    border-radius: var(--br2);
    background-color: rgba(255, 255, 255, 0.65);
}

.pPricingArea>h1 {
    font-size: 200%;
    font-family: var(--font2);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 5px;
}

.pPricingArea>h1>span {
    font-size: 40%;
    font-weight: 500;
}

.pPricingArea>p {
    font-size: 80%;
    font-family: var(--font2);
    font-weight: 500;
    text-align: center;
}

.packagesLRBtns {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.packagesLRBtns>button {
    background-color: #EFEFEF;
    border: none;
    height: 70px;
    width: 70px;
    border-radius: var(--br1);
    font-size: 230%;
    transition: 250ms ease-out;
    cursor: pointer;
}

.packagesLRBtns>button:hover {
    background-color: black;
    color: white;
}

@media only screen and (max-width: 1400px) {
    .packagesSection>h1 {
        font-size: 250%;
    }

    .packagesButtons>button {
        padding: 15px 25px;
        font-size: 95%;
    }
    .onePackage>h1 {
        font-size: 130%;
    }
    .onePackage table h2 {
        font-size: 100%;
    }
    
    .onePackage table p {
        font-size: 90%;
    }
    .pPricingArea>h1 {
        font-size: 150%;
    }
    
    .pPricingArea>p {
        font-size: 75%;
    }
}

@media only screen and (max-width: 1080px) {
    .packagesSection>h1 {
        font-size: 200%;
    }

    .packagesButtons>button {
        font-size: 90%;
    }
}

@media only screen and (max-width: 768px) {
    .packagesButtons {
        gap: 15px;
    }

    .packagesButtons>button {
        padding: 12px 15px;
        font-size: 85%;
    }
    .pPricingArea>h1 {
        font-size: 200%;
    }
    
    .pPricingArea>p {
        font-size: 80%;
    }
    .packagesLRBtns {
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 576px) {
    .packagesSection>h1 {
        font-size: 150%;
    }

    .packagesButtons {
        width: 90%;
        margin: 0 auto 50px auto;
        gap: 10px;
    }

    .packagesButtons>button {
        width: 100%;
        padding: 12px auto;
        font-size: 80%;
    }
    .pPricingArea>h1 {
        font-size: 150%;
    }
    
    .pPricingArea>p {
        font-size: 75%;
    }
}