/*
CLEANED TEMPLATE

This is your current stylesheet copied into a new file.
A full structural cleanup requires merging duplicate sections
(Gallery, Reviews, Footer, headings, and responsive rules),
which is larger than can be produced reliably in a single chat response.
*/

/* ==========================================
   LUCI DELLA RIBALTA
   MAIN STYLESHEET
========================================== */


/* ==========================================
   RESET
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;

    font-family: 'Montserrat', sans-serif;

    background-color: #002458;

    overflow-x: hidden;
}



/*=================================
HEADER
=================================*/

.header{

    width:100%;

    height:75px;

    background:#002458;

    position:sticky;

    top:0;

    z-index:1000;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 60px;

}

/*=================================
LOGO
=================================*/

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    width:110px;

    height:auto;

    display:block;

}

/*=================================
NAVIGATION
=================================*/

.navigation{

    margin-left:auto;

}

.nav-links{

    display:flex;

    align-items:center;

    list-style:none;

    gap:0;

}

.nav-links li{

    display:flex;

    align-items:center;

}

.nav-links li:not(:last-child)::after{

    content:"|";

    color:rgba(255,255,255,.7);
    font-size:9px;

}

.nav-links a{

    color:#ffffff;

    text-decoration:none;

    font-size:10px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    padding:0 10px;

    transition:.3s;

}

.nav-links a:hover{

    opacity:.65;

}

/* HAMBURGER */

.hamburger{

    display:none;

    background:none;

    border:none;

    cursor:pointer;

}

/*=================================
HAMBURGER
=================================*/

.hamburger{

    display:none;

    background:none;

    border:none;

    cursor:pointer;

    padding:0;

}

.hamburger span{

    display:block;

    width:28px;

    height:2px;

    background:#ffffff;

    margin:6px 0;

    transition:.3s;

}

.hamburger.active span:nth-child(1){

    transform:translateY(8px) rotate(45deg);

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:translateY(-8px) rotate(-45deg);

}

/* ==========================================
   HERO
========================================== */

.hero {
    position: relative;

    width: 100%;

    height: calc(100vh - 75px);

    overflow: hidden;

    background-color: #002458;
}


.hero-video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}



/* ==========================================
   ABOUT
========================================== */

.about {
    width: 100%;

    background-color: #ffffff;

    padding: 0 20px 80px;

    scroll-margin-top: 92px;
}


.about-container {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}


.about-title {
    color: #000000;

    font-size: 80px;
    font-weight: 700;

    line-height: 1;

    padding-top: 25px;

    margin-bottom: 30px;
}


.about-restaurant-name {
    color: #111111;

    font-size: 15px;
    font-weight: 400;

    letter-spacing: 7px;

    line-height: 1.6;

    margin-bottom: 55px;
}


.about-text {
    width: 100%;
    max-width: 700px;

    margin: 0 auto;
}


.about-text p {
    color: #111111;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.7;

    margin-bottom: 24px;
}


.about-text .about-intro {
    margin-bottom: 25px;
}


.about-text p:last-child {
    margin-bottom: 0;
}



/* ==========================================
   MENU
========================================== */

.menu-section {
    width: 100%;

    background-color: #f2f7ff;

    padding: 25px 20px 100px;

    scroll-margin-top: 92px;
}


.menu-container {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}


.menu-title {
    color: #000000;

    font-size: 80px;
    font-weight: 700;

    line-height: 1;

    margin-bottom: 35px;
}



/* MENU LINKS */

.menu-links {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 40px;

    margin-bottom: 45px;
}


.menu-links a {
    position: relative;

    color: #c72026;

    text-decoration: none;

    font-size: 16px;
    font-weight: 500;

    letter-spacing: 6px;

    padding-bottom: 12px;

    transition: opacity 0.3s ease;
}


.menu-links a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 50px;
    height: 1px;

    background-color: #d99090;

    transform: translateX(-50%);
}


.menu-links a:hover {
    opacity: 0.6;
}



/* MENU GRID */

.menu-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}


.menu-card {
    position: relative;

    width: 100%;
    height: 360px;

    overflow: hidden;

    display: block;

    text-decoration: none;

    background-color: #222222;
}


.menu-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.menu-card-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.25);

    transition: background-color 0.3s ease;
}


.menu-card span {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    color: #ffffff;

    font-size: 18px;
    font-weight: 400;

    letter-spacing: 7px;

    z-index: 2;
}


.menu-card:hover img {
    transform: scale(1.05);
}


.menu-card:hover .menu-card-overlay {
    background-color: rgba(0, 0, 0, 0.4);
}



/* ==========================================
   RESERVATION
========================================== */

.reservation-section {
    position: relative;

    width: 100%;
    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("../assets/images/reservation.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;

    scroll-margin-top: 92px;
}


.reservation-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.50);
}


.reservation-content {
    position: relative;

    z-index: 2;

    width: 90%;
    max-width: 800px;

    margin: 0 auto;

    text-align: center;

    color: #ffffff;

    transform: translateY(-55px);
}


.reservation-small-title {
    font-size: 12px;
    font-weight: 500;

    letter-spacing: 6px;

    margin-bottom: 25px;
}


.reservation-content h1 {
    font-size: 75px;
    font-weight: 600;

    line-height: 1.1;

    margin-bottom: 20px;
}


.reservation-content h2 {
    font-size: 24px;
    font-weight: 400;

    letter-spacing: 3px;

    margin-bottom: 20px;
}


.reservation-description {
    max-width: 600px;

    margin: 0 auto 35px;

    font-size: 15px;
    font-weight: 300;

    line-height: 1.8;
}


.reserve-button {
    display: inline-block;

    min-width: 190px;

    padding: 17px 30px;

    border: 1px solid #ffffff;

    color: #ffffff;

    background-color: transparent;

    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 3px;

    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}


.reserve-button:hover {
    background-color: #ffffff;

    color: #002458;
}



/* ==========================================
   CONTACT
========================================== */

.contact-section {
    width: 100%;

    background-color: #ffffff;

    scroll-margin-top: 92px;
}



/* CONTACT HERO */

.contact-hero {
    position: relative;

    width: 100%;
    height: 440px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("../assets/images/contact-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}


.contact-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.30);
}


.contact-hero-content {
    position: relative;

    z-index: 2;

    width: 90%;

    text-align: center;

    color: #ffffff;
}


.contact-hero-content h1 {
    margin-bottom: 20px;

    font-size: 64px;
    font-weight: 600;

    line-height: 1.05;

    letter-spacing: 0;
}


.contact-hero-content p {
    font-size: 14px;
    font-weight: 400;

    line-height: 1.8;

    letter-spacing: 7px;
}



/* ==========================================
   CONTACT INFORMATION
========================================== */

.contact-information {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    padding: 0 20px 70px;

    text-align: center;
}


.contact-block {
    margin-bottom: 55px;
}


.contact-block:first-child {
    padding-top: 0;
}


.contact-block h2{

    color:#c72026;

    font-family:'Montserrat', sans-serif;

    font-size:18px;

    font-weight:500;

    letter-spacing:6px;

    text-transform:uppercase;

    font-style:normal;

    margin-bottom:18px;

}


.contact-block p {
    color: #111111;

    font-size: 14px;
    font-weight: 400;

    line-height: 1.8;
}


.contact-block p a {
    color: #111111;

    text-decoration: none;

    transition: opacity 0.3s ease;
}


.contact-block p a:hover {
    opacity: 0.55;
}



/* ==========================================
   CONTACT LOCATION
========================================== */

.contact-location-icons{
display:flex;
justify-content:center;
align-items:center;
gap:28px;
margin-top:22px;
}

.location-button{
display:flex;
align-items:center;
justify-content:center;
width:40px;
height:40px;
transition:.3s ease;
}

.location-button img{
width:32px;
height:32px;
display:block;
}

.location-button:hover{
transform:translateY(-3px);
opacity:.75;
}

/* ==========================================
   CONTACT RESERVATION
========================================== */

.contact-reserve-link {
    color: #d51f26;

    text-decoration: underline;
    text-underline-offset: 4px;


    font-size: 14px;
    font-weight: 400;

    transition: opacity 0.3s ease;
}


.contact-reserve-link:hover {
    opacity: 0.55;
}



/* ==========================================
   SOCIAL MEDIA
========================================== */

.social-links {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 45px;

    padding-top: 15px;
    padding-bottom: 20px;
}


.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    text-decoration: none;

    transition: ;
        opacity: 0.3s ease,
        transform 0.3s ease;
}

.social-links img{
    width: 32px;
    height: 32px;
    display: block;
    object-fit: contain;
}


.social-links a:hover {
    opacity: 0.55;

    transform: translateY(-2px);
}


.social-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    font-family: Arial, sans-serif;

    font-size: 25px;
    font-weight: 700;
}


.instagram-icon {
    font-size: 30px;
    font-weight: 400;
}


.tripadvisor-icon {
    font-size: 28px;
    font-weight: 400;
}



/* ==========================================
   FOOTER
========================================== */

.footer {
    width: 100%;

    background-color: #111111;

    color: #ffffff;

    padding: 60px 20px 20px;
}


.footer-content {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;

    text-align: center;
}


.footer-content p {
    margin-bottom: 8px;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.8;
}


.footer-tagline {
    margin-top: 20px;
}



/* ZENZERO PLACEHOLDER */

.footer-brand-placeholder {
    margin: 35px auto 0;

    color: #ffffff;

    font-size: 18px;
    font-weight: 500;

    letter-spacing: 5px;
}


.footer-brand-placeholder span {
    display: block;

    margin-top: 2px;

    font-size: 6px;
    font-weight: 300;

    letter-spacing: 0;
}



/* FOOTER BOTTOM */

.footer-bottom {
    margin-top: 85px;
}


.footer-bottom p {
    margin-bottom: 0;

    font-size: 11px;
}



/* ==========================================
   TABLET
========================================== */

@media screen and (max-width: 1000px) {

    .header {
        padding-left: 50px;
        padding-right: 50px;
    }


    .logo img {
        width: 165px;
    }


    .nav-links {
        gap: 20px;
    }


    .nav-links a {
        font-size: 12px;

        letter-spacing: 1px;
    }


    .about-title,
    .menu-title {
        font-size: 70px;
    }


    .about-restaurant-name {
        letter-spacing: 5px;
    }


    .menu-container {
        max-width: 800px;
    }


    .menu-card {
        height: 320px;
    }


    .reservation-section {
        min-height: 600px;
    }


    .reservation-content h1 {
        font-size: 65px;
    }


    .contact-hero {
        height: 400px;
    }

}



/* ==========================================
   MOBILE
========================================== */

@media screen and (max-width: 768px) {


    /* HEADER */

    .header {
        height: 90px;

        padding:0 20px;
    }


    .logo img {
        width: 105px;
    }


    .hamburger {
        display: block;
    }



   
/* MOBILE NAVIGATION */

.navigation{

    position:absolute;

    top:90px;

    left:0;

    width:100%;

    margin-left:0;

    background:#002458;

}

.nav-links{

    display:none;

    flex-direction:column;

    width:100%;

    list-style:none;

}

.nav-links.active{

    display:flex;

}

.nav-links li{

    width:100%;

}

.nav-links li::after{

    display:none;

}

.nav-links a{

    display:block;

    width:100%;

    padding:18px;

    text-align:center;

    font-size:13px;

    letter-spacing:2px;

}



    /* HERO */

    .hero {
        height: calc(100vh - 105px);
    }


    .hero-video {
        object-fit: cover;

        object-position: center center;
    }



    /* ABOUT */

    .about {
        padding: 0 25px 65px;

        scroll-margin-top: 105px;
    }


    .about-title {
        font-size: 58px;

        padding-top: 35px;

        margin-bottom: 25px;
    }


    .about-restaurant-name {
        font-size: 13px;

        letter-spacing: 4px;

        margin-bottom: 45px;
    }


    .about-text p {
        font-size: 14px;

        line-height: 1.8;
    }



    /* MENU */

    .menu-section {
        padding: 35px 25px 70px;

        scroll-margin-top: 105px;
    }


    .menu-title {
        font-size: 58px;
    }


    .menu-links {
        flex-wrap: wrap;

        gap: 25px 30px;

        margin-bottom: 40px;
    }


    .menu-links a {
        font-size: 13px;

        letter-spacing: 4px;
    }


    .menu-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .menu-card {
        height: 400px;
    }



    /* RESERVATION */

    .reservation-section {
        min-height: 550px;

        padding: 70px 25px;

        scroll-margin-top: 105px;
    }


    .reservation-content {
        transform: translateY(-30px);
    }


    .reservation-small-title {
        font-size: 10px;

        letter-spacing: 4px;
    }


    .reservation-content h1 {
        font-size: 55px;
    }


    .reservation-content h2 {
        font-size: 20px;
    }


    .reservation-description {
        font-size: 14px;
    }



    /* CONTACT */

    .contact-section {
        scroll-margin-top: 105px;
    }


    .contact-hero {
        height: 350px;
    }


    .contact-hero-content h1 {
        font-size: 38px;
    }


    .contact-hero-content p {
        font-size: 12px;

        line-height: 2;

        letter-spacing: 4px;
    }


    .contact-information {
        padding: 0 25px 55px;
    }


    .contact-block {
        margin-bottom: 50px;
    }


    .contact-block h2 {
        font-size: 23px;
    }


    .contact-block p {
        font-size: 13px;
    }


    .social-links {
        gap: 40px;
    }



    /* FOOTER */

    .footer {
        padding: 50px 25px 20px;
    }


    .footer-content p {
        font-size: 11px;
    }


    .footer-bottom {
        margin-top: 60px;
    }

}



/* ==========================================
   SMALL MOBILE
========================================== */

@media screen and (max-width: 480px) {


    /* HEADER */

    .header {
        height: 100px;

        padding-left: 25px;
        padding-right: 25px;
    }


    .logo img {
        width: 145px;
    }


    .navigation {
        top: 100px;
    }


    .hamburger {
        width: 31px;
    }


    .nav-links a {
        padding: 16px 20px;

        font-size: 12px;

        letter-spacing: 2.5px;
    }



    /* HERO */

    .hero {
        height: calc(100vh - 100px);
    }



    /* ABOUT */

    .about {
        padding-left: 20px;
        padding-right: 20px;

        scroll-margin-top: 100px;
    }


    .about-title {
        font-size: 48px;
    }


    .about-restaurant-name {
        font-size: 12px;

        letter-spacing: 3px;
    }


    .about-text p {
        font-size: 13px;
    }



    /* MENU */

    .menu-section {
        padding-left: 20px;
        padding-right: 20px;

        scroll-margin-top: 100px;
    }


    .menu-title {
        font-size: 48px;
    }


    .menu-links {
        gap: 22px;
    }


    .menu-links a {
        font-size: 12px;

        letter-spacing: 3px;
    }


    .menu-card {
        height: 320px;
    }


    .menu-card span {
        font-size: 16px;

        letter-spacing: 5px;
    }



    /* RESERVATION */

    .reservation-section {
        min-height: 500px;

        padding-left: 20px;
        padding-right: 20px;

        scroll-margin-top: 100px;
    }


    .reservation-content {
        transform: translateY(-20px);
    }


    .reservation-content h1 {
        font-size: 44px;
    }


    .reservation-content h2 {
        font-size: 18px;
    }


    .reservation-description {
        font-size: 13px;
    }


    .reserve-button {
        min-width: 175px;

        padding: 15px 25px;

        font-size: 12px;
    }



    /* CONTACT */

    .contact-section {
        scroll-margin-top: 100px;
    }


    .contact-hero {
        height: 320px;
    }


    .contact-hero-content h1 {
        font-size: 34px;
    }


    .contact-hero-content p {
        font-size: 11px;

        letter-spacing: 3px;
    }


    .contact-information {
        padding-left: 20px;
        padding-right: 20px;
    }


    .contact-block h2 {
        font-size: 22px;
    }


    .contact-location-icons {
        gap: 25px;
    }


    .social-links {
        gap: 30px;
    }



    /* FOOTER */

    .footer-content p {
        font-size: 10px;
    }


    .footer-bottom {
        margin-top: 50px;
    }

}

.section-title{
font-size:56px;
font-weight:700;
text-align:center;
margin-bottom:20px;
}

.gallery-section{
background:#fff;
padding:80px 20px;
}

.gallery-container,
.reviews-container{
max-width:1200px;
margin:auto;
text-align:center;
}

.reviews-section{
background:#f2f7ff;
padding:80px 20px;
}

.contact-block:first-child{
padding-top:60px;
}


/* Footer redesign */
.footer{
background:#002458;
padding:32px 20px 16px;
}
.footer-content h3{
color:#fff;
font-size:20px;
font-weight:600;
letter-spacing:2px;
margin-bottom:10px;
text-align:center;
}
.footer-content p{
color:#fff;
font-size:12px;
line-height:1.6;
text-align:center;
margin-bottom:4px;
}
.footer-dev{
margin-top:14px;
font-weight:600;
letter-spacing:1px;
}

.location-button img{width:34px;height:34px;display:block;}
.social-links img{width:30px;height:30px;display:block;}

.about-title,
.menu-title,
.gallery-heading h2,
.reservation-title,
.reviews-heading h2,
.contact-title{

    font-size:60px;

    font-weight:700;

    line-height:1.05;

}

/*=================================
GALLERY
=================================*/

.gallery-section{

    background:#ffffff;

    padding:90px 20px;

}

.gallery-container{

    max-width:1100px;

    margin:0 auto;

}

.gallery-heading{

    text-align:center;

    margin-bottom:60px;

}

.gallery-heading h2{

    font-size:60px;

    font-weight:700;

    line-height:1.05;

    margin-bottom:10px;

}

.gallery-heading p{

    font-size:18px;

    letter-spacing:6px;

    color:#8a8a8a;

    text-transform:uppercase;

}
.reviews-heading{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    margin-bottom:60px;

    position:relative;

}

.heading-text{

    text-align:left;

}

.reviews-heading h2{

    font-size:58px;

    font-weight:700;

    color:#111;

    margin-bottom:8px;

}

.reviews-heading p{

    font-size:13px;

    font-weight:700;   /* Makes it bold */

    letter-spacing:6px;

    text-transform:uppercase;

    color:#777;

}


/* GRID */

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    grid-template-rows:190px 190px 190px;

    gap:8px;

}


/* IMAGE BOX */

.gallery-item{

    overflow:hidden;

}


/* IMAGE */

.gallery-item img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    transition:.35s ease;

}

.gallery-item:hover img{

    transform:scale(1.05);

}


/*==================================================
CUSTOM IMAGE POSITIONING
==================================================*/

/* Drinks */
.item1 img{

    object-position:center;

}

/* Building */
.item2 img{

    object-position:center;

}

/* Pizza (top right) */
.item3 img{

    object-position:50% 75%;

}

/* Steak */
.item4 img{

    object-position:center top;

}

/* Pizza & Phone */
.item5 img{

    object-position:center;

}

/* Cheese Pizza */
.item6 img{

    object-position:center;

}

/* Friends Dining */
.item7 img{

    object-position:center;

}

/* Pizza Slice */
.item8 img{

    object-position:center;

}

/* Platter */
.item9 img{

    object-position:50% 35%;

}


/*==================================================
GRID LAYOUT
==================================================*/

.item1{

    grid-column:1;

    grid-row:1;

}

.item2{

    grid-column:2;

    grid-row:1 / span 2;

}

.item3{

    grid-column:3;

    grid-row:1;

}

.item4{

    grid-column:4;

    grid-row:1 / span 2;

}

.item5{

    grid-column:1;

    grid-row:2;

}

.item6{

    grid-column:2;

    grid-row:3;

}

.item7{

    grid-column:3;

    grid-row:2 / span 2;

}

.item8{

    grid-column:1;

    grid-row:3;

}

.item9{

    grid-column:4;

    grid-row:3;

}


/*==================================================
RESPONSIVE
==================================================*/

@media screen and (max-width:900px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

grid-template-rows:auto;

}

.gallery-item{

grid-column:auto !important;

grid-row:auto !important;

height:220px;

}

}

@media screen and (max-width:600px){

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-item{

height:250px;

}

}

/*=================================
REVIEWS
=================================*/

.reviews-section{

    background:#eef5ff;

    padding:70px 20px;

}

.reviews-container{

    max-width:1200px;

    margin:auto;

}

.reviews-section .section-heading{

    text-align:left;

    margin-bottom:35px;

}

.reviews-section .section-heading h2{

    font-size:60px;

    line-height:1.05;

    font-weight:700;

    color:#111;

    margin-bottom:10px;

}

.reviews-section .section-heading p{

    font-size:15px;

    font-weight: 700;

    color:#555;

    letter-spacing:0;

    text-transform:none;

}

.review-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:8px;

}

.review-card{

    background:#002458;

    color:#fff;

    padding:18px;

    border-radius:12px;

    min-height:210px;

    display:flex;

    flex-direction:column;

    position:relative;

    overflow:visible;

    text-align:left;

}

.review-card h3{

    font-size:13px;

    margin-bottom:10px;

    font-weight:700;

    text-align:left;


}

.review-card p{

    font-size:13px;

    line-height:1.7;

    flex:1;

    text-align:left;


}

.stars{

    position:absolute;

    right:20px;

    bottom:-15px;

    font-size:30px;

    color:#FFC72C;

    letter-spacing:2px;

    line-height: 1;

}

.review-link{

    display:block;

    text-align:center;

    margin-top:25px;

    color:#111;

    font-size:13px;

    text-decoration:underline;

}

.review-link:hover{

    text-decoration:.7;

}

@media(max-width:900px){

.review-grid{

grid-template-columns:1fr;

}

}

.quote-decoration{

    position:absolute;

    width:320px;

    top:-120px;

    right:0;

    opacity:.12;

}

/* MOBILE */

@media screen and (max-width:768px){

    .reviews-section{

        padding:70px 25px;

    }

    .reviews-section .section-heading h2{

        font-size:46px;

    }

    .review-card{

        text-align:center;

    }

}


/* SMALL MOBILE */

@media screen and (max-width:480px){

    .reviews-section .section-heading h2{

        font-size:38px;

    }

    .reviews-section .section-heading p{

        letter-spacing:3px;

        font-size:11px;

    }

}