@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");

:root {
    --primary-color: #38a3a5;
    --secondary-color: #fafdff;
    --text-color: #fff;
    --title-color: #1a4e69;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", "Poppins", sans-serif;
    scroll-behavior: smooth;
    user-select: none;
}

.hide-img {
    display: none;
}

header {
    width: 100%;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 100;
}

header .top {
    background-color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
}

header .top .left {
    display: flex;
    align-items: center;
}

header .top .left a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    transition: 0.5s ease;
}

header .top .left a:hover {
    transform: scale(1.1);
}

header .top .left a i {
    margin-right: 0.2rem;
    color: var(--primary-color);
}

header .top .left a p {
    font-family: "Lato", sans-serif;
    font-size: 0.8rem;
    display: inline-block;
    margin-right: 1rem;
}

header .top .right a {
    display: inline-block;
    text-decoration: none;
}

header .top .right a i {
    transition: 0.5s ease;
}

header .top .right a i:hover {
    color: #2d3480;

    transform: scale(1.3);
}

header .top .right a i {
    width: 1rem;
    height: 1rem;
    margin: 0.5rem;
    color: var(--primary-color);
}

.top-hr {
    margin: 0 30px 0 30px;
    border: 1px solid gray;
}

.nav_img {
    position: absolute;
    left: 50%;
    top: 10%;
    transform: translateX(-52%);
    width: 160px;
    border-radius: 50%;
    z-index: 100;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    transition: 1ms;
}

.nav {
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    gap: 150px;
    width: 100%;
    transition: top 0.3s ease;
}

.nav .left ul,
.nav .right ul {
    display: flex;
    list-style-type: none;
    justify-content: flex-start;
    gap: 60px;
    align-items: center;
}

.nav .left ul li,
.nav .right ul li {
    margin: 1rem auto;
}

.nav .left ul li a,
.nav .right ul li a {
    text-decoration: none;
    color: #000;
    font-family: "Lato", sans-serif;
    display: inline-block;
    transition: 0.5s ease;
}

.nav .left ul li a:hover,
.nav .right ul li a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    transform: scale(1.1);
}

.scrollmenu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    position: fixed;
    top: 0;
    z-index: 98;
}

.scroll {
    position: fixed;
    background-color: var(--secondary-color);
    width: 100%;
    height: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.scroll img {
    width: 60px;
    height: 60px;
    margin-left: 2rem;
    border-radius: 50%;
    transform: translateY(+40%);
    transition: transform 1s ease;
}

.scroll img:hover {
    border: 1px solid var(--primary-color);
    cursor: pointer;
}

.scroll ul {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
}

.scroll ul li {
    padding: 1rem 1rem;
}

.scroll ul li a {
    text-decoration: none;
    color: #000;
    font-family: "Lato", sans-serif;
}

.scroll ul li a:hover {
    color: var(--primary-color);
    cursor: pointer;
}

.scroll .foglalok {
    height: 100%;
    background-color: var(--primary-color);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
}

.scroll .foglalok a {
    text-decoration: none;
    color: var(--secondary-color);
    font-family: "Lato", sans-serif;
}

.scroll .foglalok:hover a {
    color: #000;
}

#sideNav {
    width: 200px;
    height: 100vh;
    position: fixed;
    right: -250px;
    top: 0;
    background-color: rgba(56, 163, 165, 0.9);
    z-index: 69;
    transition: 0.5s;
}

#sideNav nav ul li {
    list-style: none;
    margin: 50px 20px;
    padding-left: 20px;
}

#sideNav nav ul li:first-child {
    margin-top: 60px;
}

#sideNav nav ul li a {
    text-decoration: none;
    color: var(--secondary-color);
}

#menuBtn {
    display: none;
    width: 40px;
    height: 40px;
    background-color: rgba(56, 163, 165, 0.9);
    text-align: center;
    position: fixed;
    right: 20px;
    top: 20px;
    border: 3px;
    z-index: 70;
    cursor: pointer;
    border-radius: 5px;
}

#menuBtn img {
    width: 20px;
    margin-top: 10px;
}

.left-logo {
    display: none;
}

.left-logo img {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 10%;
    border-radius: 50%;
    z-index: 70;
}

/* Hero */
.hero {
    height: 100vh;
    background: url(images/hero_bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.hero .title {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-top: 200px;
}

.hero .title h1 {
    font-family: "Lora", sarif;
    color: var(--secondary-color);
    font-size: 5.5rem;
    font-weight: 600;
}

.hero .title p {
    font-family: "Lora", sarif;
    color: var(--secondary-color);
    margin-top: 20px;
    font-size: 1.3rem;
}

.hero .hero-btns {
    margin: 6rem auto;
    position: absolute;
    bottom: 20px;
}

.hero-btn {
    width: 11rem;
    height: 3.5rem;
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
    background: none;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 0.3125rem;
    cursor: pointer;
    transition: 0.5s ease;
}

.hero-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-7px);
}

/* About section */

#about {
    background: url(images/Shiny\ Overlay.svg);
    background-size: cover;
    background-position: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-box {
    width: 90%;
    margin: 30px auto;
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
}

.about {
    max-width: 600px;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-img img {
    width: 450px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    cursor: zoom-in;
    transition: 0.5s;
}

.about-img img:hover {
    transform: scale(110%);
}

.about-text h2 {
    font-family: "Lora", sarif;
    text-align: left;
    margin-bottom: 0.8rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.about-text p {
    color: var(--secondary-color);
    text-align: justify;
    margin-bottom: 16px;
    font-size: 0.9rem;
    font-family: "Poppins", sans-serif;
}

.about-text p:first-child {
    margin-top: 20px;
}

.about-btns {
    position: absolute;
    bottom: 20px;
    left: 100px;
    text-align: left;
}

.about-btn {
    width: 9rem;
    height: 3rem;
    font-size: 0.8rem;
    padding: 0.625rem 1.25rem;
    background: none;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 0.3125rem;
    cursor: pointer;
    transition: 0.5s ease;
    margin-right: 1rem;
}

.about-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-7px);
}

/* Apartmanok */

#apartman {
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    padding: 20px 0 20px 0;
    position: relative;
}

.apartman-container {
    margin-top: 30px;
}

.penthouse-container {
    margin-top: 20px;
}

.apartman-container,
.penthouse-container {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.apartman-desc,
.penthouse-desc {
    display: flex;
    align-items: center;
    gap: 30px;
}

.apartman-collage,
.penthouse-collage {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.grid-container {
    margin: auto;
    max-width: 400px;
    aspect-ratio: 1/1;
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-template-rows: repeat(16, 1fr);
}

.collage .item {
    border: 1px solid var(--primary-color);
}

.grid-container .item {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.5) 10px 10px 10px 0px;
}

.grid-container .item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.grid-container .item1 {
    z-index: 8;
    grid-area: 5/4/13/14;
}

.grid-container .item2 {
    z-index: 7;
    grid-area: 1/1/7/8;
}

.grid-container .item3 {
    z-index: 7;
    grid-area: 1/10/7/17;
}

.grid-container .item4 {
    z-index: 7;
    grid-area: 11/1/17/8;
}

.grid-container .item5 {
    z-index: 7;
    grid-area: 11/10/17/17;
}

.grid-container > * {
    transition: all 0.5s;
}

.grid-container > *:hover {
    z-index: 20;
    transform: scale(1.2);
}

.apartman-info,
.penthouse-info {
    max-width: 600px;
}

.apartman-info h1,
.penthouse-info h1 {
    font-family: "Lora", sarif;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--primary-color);
}

.apartman-details ul,
.penthouse-details ul {
    color: var(--primary-color);
    padding-left: 40px;
}

.apartman-details ul li,
.penthouse-details ul li {
    margin-bottom: 14px;
    font-size: 0.8rem;
    font-family: "Poppins", sans-serif;
}

.apartman-images,
.penthouse-images {
    margin: 20px auto;
}

.apartman-info p,
.penthouse-info p {
    text-align: justify;
    color: var(--primary-color);
    padding-left: 20px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    font-family: "Poppins", sans-serif;
}

.apartman-btns {
    margin: 40px auto 40px auto;
}

.apartman-btn {
    width: 9rem;
    height: 3rem;
    font-size: 0.8rem;
    padding: 0.625rem 1.25rem;
    background: none;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0.3125rem;
    cursor: pointer;
    transition: 0.5s ease;
}

.apartman-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-7px);
}

/* Backyard */

.backyard {
    width: 100%;
    background: url(images/front.jpg);
    height: 400px;
    background-size: cover;
    background-attachment: fixed;
}

/* Offers */

.offers-hr {
    margin: 20px auto;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

#offers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: var(--secondary-color);
    padding-top: 40px;
}

#offers h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 20px;
}

.offers-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.offer-card {
    margin: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.offer-card .top {
    position: relative;
}

.offer-card .top .top-img {
    position: relative;
}

.offer-card .top img {
    width: 600px;
    height: 400px;
    object-fit: cover;
}

.offer-card .top .price {
    font-size: 1rem;
    width: 100%;
    position: absolute;
    margin: 0 auto;
    bottom: 0;
    padding: 1rem;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    text-align: center;
}

.offer-card .top .overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    color: var(--primary-color);
    transition: opacity 0.5s ease;
    padding: 5px;
}

.little {
    font-size: 0.8rem;
}

.offer-card .top .overlay h3,
p {
    text-align: center;
}

.offer-card:hover .overlay {
    opacity: 1;
    border: 1px solid var(--primary-color);
}

.offer-card:hover .bottom h2 {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.offer-card .bottom h2 {
    font-size: 1.2rem;
    text-align: center;
    padding: 1rem;
    color: var(--primary-color);
    transition: 0.5s ease;
}

.offers-container > p {
    font-size: 1rem;
    color: var(--primary-color);
}

.slider {
    position: relative;
    width: 100%;
    height: 540px;
    overflow: hidden;
    padding: 1rem;
}
.slider .item {
    position: absolute;
    width: 600px;
    transition: 0.5s;
    left: calc(50% - 320px);
    top: 5%;
}
#next,
#prev {
    position: absolute;
    top: 50%;
    color: var(--primary-color);
    background-color: transparent;
    border: none;
    font-size: 2.5rem;
    font-family: monospace;
    font-weight: bold;
    left: 60px;
    z-index: 80;
    cursor: pointer;
}
#next {
    left: unset;
    right: 60px;
}

.offer-btns {
    margin: 1rem auto;
}

/* Prices */

#price {
    background-image: url(images/Shiny\ Overlay.svg);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

.price-container {
    padding: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(227, 228, 237, 0.37);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: "Poppins", sans-serif;
    margin: 40px;
}

.date {
    font-size: 0.7rem;
    font-family: "Poppins", sans-serif;
}

table {
    width: 100%;
    margin: 20px auto;
    text-align: center;
    border-collapse: separate;
    border-spacing: 100px 0;
    padding: 20px;
}

th {
    font-size: 1.1rem;
    font-family: "Poppins", sans-serif;
}

th,
td {
    padding: 10px 20px;
    color: var(--secondary-color);
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
}

.price-container p {
    color: var(--secondary-color);
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.price-container p a {
    text-decoration: none;
    cursor: pointer;
    color: var(--secondary-color);
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
}

.payments {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 10px;
}

.payments img {
    width: 60px;
    transition: 0.5s ease;
    cursor: pointer;
    margin: 0 10px;
}

.payments img:hover {
    transform: scale(1.4);
}

/* Partners */

#partners {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    height: 100%;
}

#partners h2 {
    color: var(--primary-color);
    margin: 2rem auto;
}

.partners-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.partners-container img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: transform 0.5s;
}

.partners-container a:hover img {
    transform: scale(1.5);
}

/* Footer section */

#connect {
    padding-top: 40px;
    background: #2a2a2a;
    position: relative;
}

#connect .foglalas {
    font-family: "Poppins", sans-serif;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.footer-row {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-left,
.footer-right {
    flex-basis: 45%;
    padding: 10px;
    margin-bottom: 20px;
}

.footer-left {
    color: var(--secondary-color);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: "Poppins", sans-serif;
    z-index: 3;
}

.footer-left a {
    text-decoration: none;
    color: var(--secondary-color);
}

.footer-right {
    text-align: right;
}

.footer-row h3 {
    margin: 10px 0;
    font-family: "Poppins", sans-serif;
}

.footer-row p {
    line-height: 35px;
}

.footer-left .fa,
.footer-right .fa {
    font-size: 1rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

iframe {
    width: 60%;
    height: 100%;
}

.social-links {
    text-align: center;
    margin-top: 1rem;
    margin-left: 1rem;
}

.social-links .fa-brands {
    height: 40px;
    width: 40px;
    color: var(--secondary-color);
    font-size: 20px;
    line-height: 40px;

    cursor: pointer;
    transition: 0.5s;
}

.social-links .fa-brands:hover {
    color: var(--primary-color);
    transform: translateY(-7px);
}

.aszf {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.social-links p {
    font-size: 12px;
    margin-top: 20px;
    color: var(--secondary-color);
}

#connect > p {
    color: var(--secondary-color);
    padding: 1rem;
}

.footer-logo {
    max-width: 160px;
    opacity: 0.3;
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

/* Media queries */

@media only screen and (max-width: 980px) {
    .nav_img {
        width: 120px;
    }
    .nav {
        gap: 100px;
    }
    .nav .left ul,
    .nav .right ul {
        gap: 30px;
    }

    .hero {
        min-height: auto;
        background-attachment: scroll;
    }

    .about-box {
        gap: 10px;
        align-items: center;
    }
    .about-img img {
        width: 350px;
    }
    .about-text p {
        font-size: 0.8rem;
    }
    .apartman-info h1,
    .penthouse-info h1 {
        font-size: 1.2rem;
    }
    .apartman-details ul li,
    .penthouse-details ul li {
        font-size: 0.7rem;
    }
    .backyard {
        display: none;
    }

    #offers h1 {
        font-size: 1.6rem;
    }

    .offers-container > p {
        font-size: 0.8rem;
    }

    table {
        border-spacing: 20px 0;
    }

    th,
    td {
        font-size: 0.8rem;
    }
    .footer-left {
        font-size: 0.8rem;
    }
}

@media only screen and (max-width: 768px) {
    .nav_img {
        width: 80px;
        transform: translateX(-40%);
    }
    .nav {
        gap: 40px;
    }
    .scroll ul li {
        padding: 1rem 0.4rem;
    }
    .scroll .foglalok {
        padding: 1rem 0.8rem;
    }
    .scroll img {
        margin-left: 10px;
    }
    .hero .title h1 {
        font-size: 4rem;
    }
    .about-text p {
        font-size: 0.6rem;
    }
    .about-img img {
        width: 250px;
    }
    table {
        border-spacing: 0;
    }
}

@media only screen and (max-width: 600px) {
    header {
        display: none;
    }

    .scroll {
        display: none;
    }

    #menuBtn,
    .left-logo {
        display: block;
    }

    .hero {
        min-height: auto;
        background-attachment: scroll;
    }

    .hero .title {
        margin-top: 300px;
    }

    .hero .title h1 {
        font-size: 2.5rem;
    }

    .hero .title p {
        font-size: 1rem;
        margin-left: 0;
    }

    .hero .title .main-btns {
        margin: 2rem auto;
    }

    .hero-btn {
        width: 8rem;
        height: 3rem;
        font-size: 0.8rem;
    }

    #about {
        padding-top: 0;
        margin-top: 0;
        height: 100%;
    }

    .about-box {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 0.7rem;
    }

    .about-img {
        margin-top: 20px;
    }

    .about-btns {
        text-align: center;
        margin: 0;
    }

    #apartman {
        gap: 30px;
    }
    .apartman-desc,
    .penthouse-desc {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .apartman-collage {
        order: 2;
    }

    .apartman-info h1,
    .penthouse-info h1 {
        font-size: 1rem;
        text-align: center;
    }

    .apartman-details ul li,
    .penthouse-details ul li {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }

    .backyard {
        display: none;
    }

    .slider {
        max-width: 90%;
        overflow: hidden;
    }

    #offers {
        min-height: auto;
    }

    #offers h1 {
        font-size: 1.4rem;
    }

    .offer-card .top .overlay {
        font-size: 0.7rem;
    }

    .little {
        font-size: 0.5rem;
    }

    .offer-card .top .overlay p {
        width: 70%;
    }

    .offer-card .bottom h2 {
        font-size: 0.8rem;
    }

    .offer-card:hover .overlay {
        border: none;
    }

    .slider .item {
        position: absolute;
        width: 480px;
        transition: 0.5s;
        left: calc(50% - 240px);
        top: 5%;
    }

    .apartman-btn {
        width: 100%;
        height: 100%;
    }

    .offer-card .top img {
        width: 480px;
        /* height: 300px; */
        object-fit: cover;
    }

    #next,
    #prev {
        position: absolute;
        top: 60%;
        border: none;
        left: 0px;
        z-index: 80;
        cursor: pointer;
    }
    #next {
        left: unset;
        right: 0px;
    }

    .offers-container > p {
        font-size: 0.7rem;
    }

    .price-container {
        margin: 40px 0;
        padding: 0;
    }

    table {
        padding: 0;
    }

    th,
    td {
        font-size: 0.6rem;
        padding: 10px 6px;
    }

    .date {
        font-size: 0.5rem;
    }

    .price-container p,
    .price-container p a {
        font-size: 0.6rem;
        margin-bottom: 2px;
    }

    .payments {
        gap: 0;
    }
    .payments img {
        width: 40px;
    }
    #partners h2 {
        font-size: 1.2rem;
        margin: 1rem auto;
    }

    .partners-container {
        gap: 10px;
    }

    .partners-container img {
        width: 40px;
        height: 40px;
    }

    .foglalas p {
        font-size: 1rem;
    }

    .footer-left {
        font-size: 0.6rem;
        display: flex;
        align-items: center;
    }

    .footer-left h3 {
        font-size: 0.9rem;
    }

    .footer-right {
        display: none;
    }

    #connect > p {
        font-size: 0.6rem;
    }

    .footer-logo {
        opacity: 0.1;
    }

    .social-links {
        margin-left: 0;
    }

    .aszf {
        font-size: 0.5rem;
    }
}

@media only screen and (max-width: 960px) and (orientation: landscape) {
    .hero {
        background-attachment: scroll;
    }
    .hero .title {
        margin-top: 70px;
    }
    .hero .title h1 {
        font-size: 4rem;
    }
    .hero-btn {
        width: 100%;
        height: 100%;
    }
    .about-text p {
        font-size: 0.7rem;
    }
    .backyard {
        display: none;
    }
    .slider {
        width: 90%;
    }
    th,
    td {
        padding: 10px 5px;
    }
    .price-container p,
    .price-container p a {
        font-size: 0.7rem;
    }
}
