/* =========================
   SHOP ESTABLISHMENT HERO
========================= */

.shop-hero{

    min-height:100vh;

    background:
    linear-gradient(
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.78)
    ),

    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1600");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:40px;

    position:relative;

    overflow:hidden;
}

/* FLOATING GLOW */

.shop-hero::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    background:
    rgba(0,223,154,0.15);

    border-radius:50%;

    top:-100px;
    left:-100px;

    filter:blur(90px);

    animation:floatGlow 8s infinite alternate;
}

.shop-hero::after{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    background:
    rgba(0,191,255,0.12);

    border-radius:50%;

    bottom:-100px;
    right:-100px;

    filter:blur(90px);

    animation:floatGlow2 10s infinite alternate;
}

@keyframes floatGlow{

    0%{
        transform:translate(0,0);
    }

    100%{
        transform:translate(70px,50px);
    }
}

@keyframes floatGlow2{

    0%{
        transform:translate(0,0);
    }

    100%{
        transform:translate(-60px,-40px);
    }
}

/* OVERLAY */

.shop-overlay{

    max-width:1000px;

    color:white;

    position:relative;

    z-index:2;
}

/* BADGE */

.shop-badge{

    display:inline-block;

    padding:12px 24px;

    background:#00df9a;

    color:black;

    border-radius:50px;

    font-weight:700;

    margin-bottom:25px;
}

/* TITLE */

.shop-overlay h1{

    font-size:78px;

    line-height:1.2;

    margin-bottom:25px;
}

/* TEXT */

.shop-overlay p{

    font-size:24px;

    color:#dbeafe;

    line-height:1.9;

    margin-bottom:45px;
}

/* BUTTONS */

.shop-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:60px;
}

.primary-btn,
.secondary-btn{

    padding:18px 36px;

    border:none;

    border-radius:14px;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:0.4s;
}

.primary-btn{

    background:#00df9a;

    color:black;
}

.secondary-btn{

    background:transparent;

    border:2px solid white;

    color:white;
}

.primary-btn:hover,
.secondary-btn:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 15px 35px rgba(0,0,0,0.25);
}

/* TRUST */

.shop-trust{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;
}

.trust-card{

    width:220px;

    padding:28px;

    border-radius:25px;

    background:
    rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,0.08);
}

.trust-card h2{

    font-size:42px;

    color:#00df9a;

    margin-bottom:12px;
}

.trust-card p{

    color:white;

    font-size:18px;
}

/* =========================
   MAIN WRAPPER
========================= */

.shop-main-wrapper{

    width:92%;

    margin:100px auto;
}

/* TOP GRID */

.shop-top-grid{

    display:grid;

    grid-template-columns:1.5fr 0.9fr;

    gap:40px;
}

/* LEFT */

.shop-left-content{

    display:flex;

    flex-direction:column;

    gap:35px;
}

/* CARD */

.shop-info-card{

    background:
    rgba(255,255,255,0.8);

    backdrop-filter:blur(18px);

    padding:50px;

    border-radius:35px;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);

    position:relative;

    overflow:hidden;

    transition:0.4s;
}

.shop-info-card::before{

    content:"";

    position:absolute;

    width:240px;
    height:240px;

    background:
    rgba(0,223,154,0.08);

    border-radius:50%;

    top:-80px;
    right:-80px;

    filter:blur(45px);
}

.shop-info-card:hover{

    transform:translateY(-8px);
}

.shop-info-card h2{

    font-size:38px;

    color:#071a2f;

    margin-bottom:25px;
}

.shop-info-card p{

    font-size:18px;

    line-height:2;

    color:#555;
}

.shop-info-card ul{

    padding-left:20px;
}

.shop-info-card ul li{

    font-size:18px;

    line-height:2;

    margin-bottom:10px;
}

/* FORM */

.shop-form-box{

    background:
    linear-gradient(
    135deg,
    #02111f,
    #003566
    );

    padding:45px 35px;

    border-radius:35px;

    position:sticky;

    top:120px;

    height:fit-content;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.25);
}

.shop-form-box h2{

    color:white;

    text-align:center;

    font-size:38px;

    margin-bottom:35px;
}

.shop-form-box form{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.shop-form-box input,
.shop-form-box select,
.shop-form-box textarea{

    background:
    rgba(255,255,255,0.08);

    border:none;

    padding:18px;

    border-radius:18px;

    color:white;

    font-size:16px;

    outline:none;
}

.shop-form-box input::placeholder,
.shop-form-box textarea::placeholder{

    color:#cbd5e1;
}

.shop-form-box button{

    padding:18px;

    border:none;

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    #00df9a,
    #00bfff
    );

    color:black;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:0.4s;
}

.shop-form-box button:hover{

    transform:
    translateY(-5px);
}

/* BOTTOM GRID */

.shop-bottom-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

/* BOTTOM CARD */

.shop-bottom-card{

    background:white;

    padding:40px 35px;

    border-radius:30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

    transition:0.4s;
}

.shop-bottom-card:hover{

    transform:translateY(-10px);
}

.shop-bottom-card h2{

    font-size:30px;

    color:#071a2f;

    margin-bottom:25px;
}

.shop-bottom-card ul{

    padding-left:20px;
}

.shop-bottom-card ul li{

    font-size:17px;

    line-height:2;

    margin-bottom:10px;
}

/* =========================
   PREMIUM SERVICES
========================= */

.premium-services{

    padding:100px 8%;

    text-align:center;
}

.premium-services h1{

    font-size:55px;

    color:#071a2f;

    margin-bottom:20px;
}

.service-subtitle{

    font-size:22px;

    color:#666;

    margin-bottom:60px;
}

/* GRID */

.premium-service-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

/* CARD */

.premium-service-card{

    background:white;

    padding:45px 35px;

    border-radius:30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

    transition:0.4s;
}

.premium-service-card:hover{

    transform:
    translateY(-12px);
}

.service-icon{

    font-size:55px;

    margin-bottom:25px;
}

.premium-service-card h2{

    font-size:30px;

    margin-bottom:20px;
}

.premium-service-card p{

    line-height:1.9;

    color:#555;

    margin-bottom:25px;
}

.premium-service-card button{

    padding:14px 28px;

    border:none;

    border-radius:12px;

    background:#00df9a;

    color:black;

    font-weight:700;

    cursor:pointer;
}

/* =========================
   PROCESS
========================= */

.shop-process{

    padding:100px 8%;

    background:
    linear-gradient(
    135deg,
    #02111f,
    #003566
    );

    text-align:center;

    color:white;
}

.shop-process h1{

    font-size:55px;

    margin-bottom:20px;
}

.process-subtitle{

    font-size:22px;

    color:#dbeafe;

    margin-bottom:60px;
}

.process-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:30px;
}

.process-card{

    background:
    rgba(255,255,255,0.08);

    padding:45px 30px;

    border-radius:30px;

    backdrop-filter:blur(18px);

    transition:0.4s;
}

.process-card:hover{

    transform:
    translateY(-10px);
}

.process-number{

    width:85px;
    height:85px;

    background:#00df9a;

    color:black;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    font-size:30px;

    font-weight:700;

    margin-bottom:25px;
}

/* REVIEW */

.review-section{

    padding:100px 8%;

    text-align:center;

    overflow:hidden;
}

.review-section h1{

    font-size:55px;

    margin-bottom:60px;
}

.review-track{

    display:flex;

    gap:30px;

    width:max-content;

    animation:slideReviews 20s linear infinite;
}

.review-card{

    min-width:340px;

    background:white;

    padding:40px 30px;

    border-radius:25px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);
}

.review-card h2{

    margin-bottom:20px;
}

.review-card p{

    line-height:1.9;

    margin-bottom:20px;

    color:#555;
}

.review-card h3{

    color:#00b894;
}

@keyframes slideReviews{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}

/* =========================
   WHY CHOOSE SECTION
========================= */

.gst-features{

    padding:120px 8%;

    background:
    linear-gradient(
    135deg,
    #02111f,
    #062742,
    #0b3d66
    );

    position:relative;

    overflow:hidden;

    text-align:center;
}

.gst-features::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:
    rgba(0,223,154,0.15);

    border-radius:50%;

    top:-150px;
    left:-150px;

    filter:blur(120px);

    animation:moveGlow 8s infinite alternate;
}

.gst-features::after{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    background:
    rgba(0,140,255,0.18);

    border-radius:50%;

    bottom:-150px;
    right:-150px;

    filter:blur(120px);

    animation:moveGlow2 10s infinite alternate;
}

.gst-features h1{

    font-size:60px;

    color:white;

    margin-bottom:70px;

    position:relative;

    z-index:2;
}

.feature-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:35px;

    position:relative;

    z-index:2;
}

.feature-box{

    background:
    rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,0.1);

    padding:45px 35px;

    border-radius:30px;

    transition:0.4s;

    position:relative;

    overflow:hidden;
}

.feature-box::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
    90deg,
    #00df9a,
    #00bfff
    );
}

.feature-box:hover{

    transform:
    translateY(-15px)
    scale(1.03);
}

.feature-box h2{

    font-size:32px;

    color:white;

    margin-bottom:20px;
}

.feature-box p{

    font-size:18px;

    color:#dbeafe;

    line-height:1.9;
}

/* MOBILE */

@media(max-width:1000px){

    .shop-top-grid{

        grid-template-columns:1fr;
    }

    .shop-bottom-grid{

        grid-template-columns:1fr;
    }

    .shop-form-box{

        position:relative;

        top:0;
    }
}

@media(max-width:768px){

    .shop-overlay h1{

        font-size:42px;
    }

    .shop-overlay p{

        font-size:18px;
    }

    .premium-services h1,
    .shop-process h1,
    .review-section h1{

        font-size:38px;
    }

    .review-card{

        min-width:280px;
    }
}
/* SELECT FIX */

.shop-form-box select{

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    background:
    rgba(255,255,255,0.08);

    color:white;

    cursor:pointer;
}

.shop-form-box select option{

    background:#02111f;

    color:white;
}

/* =========================================
   SHOP ESTABLISHMENT LUXURY DESIGN
========================================= */

.shop-section{

    width:100%;

    min-height:100vh;

    padding:120px 8%;

    background:
    linear-gradient(
    135deg,
    #021526,
    #062b4a,
    #001d3d,
    #021526
    );

    position:relative;

    overflow:hidden;
}

/* GLOW EFFECT */

.shop-section::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    background:
    radial-gradient(
    circle,
    rgba(0,255,255,0.12),
    transparent 70%
    );

    top:-250px;
    left:-250px;
}

.shop-section::after{

    content:"";

    position:absolute;

    width:600px;
    height:600px;

    background:
    radial-gradient(
    circle,
    rgba(37,99,235,0.18),
    transparent 70%
    );

    bottom:-250px;
    right:-250px;
}

/* =========================================
   HEADING
========================================= */

.shop-heading{

    text-align:center;

    margin-bottom:90px;

    position:relative;

    z-index:2;
}

.shop-tag{

    display:inline-block;

    padding:14px 30px;

    border-radius:50px;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(0,255,255,0.25);

    color:#7dd3fc;

    font-size:18px;

    margin-bottom:30px;

    backdrop-filter:blur(12px);
}

.shop-heading h1{

    font-size:78px;

    color:white;

    font-weight:800;

    line-height:1.2;
}

.shop-heading h1 span{

    background:
    linear-gradient(
    to right,
    #67e8f9,
    #38bdf8,
    #2563eb
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.shop-heading p{

    max-width:850px;

    margin:30px auto;

    color:#cbd5e1;

    font-size:24px;

    line-height:1.8;
}

.shop-line{

    width:180px;
    height:4px;

    margin:35px auto;

    border-radius:50px;

    background:
    linear-gradient(
    to right,
    #67e8f9,
    #2563eb
    );

    box-shadow:
    0 0 25px rgba(103,232,249,0.6);
}

/* =========================================
   CONTAINER
========================================= */

.shop-container{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

    position:relative;

    z-index:2;
}

/* =========================================
   CARD
========================================= */

.shop-card{

    width:380px;

    padding:50px 35px;

    border-radius:35px;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.12);

    backdrop-filter:blur(20px);

    position:relative;

    overflow:hidden;

    transition:0.5s;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.35);
}

/* SHINE EFFECT */

.shop-card::before{

    content:"";

    position:absolute;

    width:200%;
    height:220px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,0.10),
    transparent
    );

    top:-100px;
    left:-50%;

    transform:rotate(5deg);
}

/* HOVER */

.shop-card:hover{

    transform:
    translateY(-18px)
    scale(1.03);

    border:
    1px solid rgba(103,232,249,0.4);

    box-shadow:
    0 0 35px rgba(56,189,248,0.35),
    0 20px 50px rgba(0,0,0,0.4);
}

/* PREMIUM CARD */

.premium-shop{

    border:
    2px solid #38bdf8;

    transform:scale(1.04);

    box-shadow:
    0 0 40px rgba(56,189,248,0.35);
}

/* =========================================
   BADGE
========================================= */

.popular-badge{

    position:absolute;

    top:0;
    right:0;

    background:
    linear-gradient(
    135deg,
    #67e8f9,
    #0ea5e9
    );

    color:#021526;

    padding:16px 24px;

    font-size:14px;

    font-weight:700;

    clip-path:
    polygon(
    0 0,
    100% 0,
    100% 100%,
    50% 85%,
    0 100%
    );
}

/* =========================================
   PLAN LABEL
========================================= */

.plan-label{

    display:inline-block;

    padding:12px 28px;

    border-radius:50px;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(103,232,249,0.3);

    color:#7dd3fc;

    font-size:18px;

    margin-bottom:30px;
}

.premium-label{

    background:
    rgba(56,189,248,0.12);

    border:
    1px solid #38bdf8;

    color:#67e8f9;
}

/* =========================================
   ICON
========================================= */

.shop-icon{

    width:110px;
    height:110px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 35px;

    font-size:50px;

    background:
    rgba(255,255,255,0.08);

    border:
    2px solid rgba(103,232,249,0.3);

    box-shadow:
    0 0 30px rgba(56,189,248,0.2);
}

.premium-icon{

    border:
    2px solid #38bdf8;

    box-shadow:
    0 0 35px rgba(56,189,248,0.45);
}

/* =========================================
   TITLE
========================================= */

.shop-card h2{

    text-align:center;

    color:white;

    font-size:38px;

    margin-bottom:25px;

    line-height:1.4;
}

/* =========================================
   PRICE
========================================= */

.shop-card h3{

    text-align:center;

    font-size:72px;

    margin-bottom:35px;

    font-weight:800;

    background:
    linear-gradient(
    to right,
    #67e8f9,
    #38bdf8,
    #2563eb
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

/* =========================================
   FEATURES
========================================= */

.shop-card ul{

    list-style:none;

    margin-bottom:40px;
}

.shop-card ul li{

    color:#e2e8f0;

    font-size:21px;

    margin-bottom:18px;

    line-height:1.7;
}

/* =========================================
   BUTTON
========================================= */

.shop-btn{

    width:100%;

    height:75px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    border-radius:20px;

    background:
    linear-gradient(
    135deg,
    #67e8f9,
    #0ea5e9,
    #2563eb
    );

    color:white;

    font-size:24px;

    font-weight:700;

    transition:0.4s;

    box-shadow:
    0 0 30px rgba(56,189,248,0.35);
}

.shop-btn:hover{

    transform:
    scale(1.05);

    box-shadow:
    0 0 40px rgba(56,189,248,0.7),
    0 0 70px rgba(37,99,235,0.45);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px){

    .shop-heading h1{

        font-size:58px;
    }

    .shop-card{

        width:100%;
        max-width:500px;
    }
}

@media(max-width:768px){

    .shop-section{

        padding:90px 5%;
    }

    .shop-heading h1{

        font-size:40px;
    }

    .shop-heading p{

        font-size:18px;
    }

    .shop-card{

        padding:40px 25px;
    }

    .shop-card h2{

        font-size:30px;
    }

    .shop-card h3{

        font-size:55px;
    }

    .shop-card ul li{

        font-size:18px;
    }

    .shop-btn{

        font-size:20px;
    }
}

/* =========================
   PREMIUM SERVICES
========================= */

.premium-services{

    padding:100px 8%;

    text-align:center;

    background:
    linear-gradient(
    135deg,
    #f8fbff,
    #eef7ff,
    #ffffff
    );

    position:relative;

    overflow:hidden;
}

/* LIGHT GLOW EFFECT */

.premium-services::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    background:
    rgba(0,223,154,0.08);

    border-radius:50%;

    top:-150px;
    left:-120px;

    filter:blur(90px);
}

.premium-services::after{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    background:
    rgba(0,191,255,0.08);

    border-radius:50%;

    bottom:-120px;
    right:-120px;

    filter:blur(90px);
}

/* HEADING */

.premium-services h1{

    font-size:55px;

    color:#071a2f;

    margin-bottom:20px;

    position:relative;

    z-index:2;
}

.service-subtitle{

    font-size:22px;

    color:#475569;

    margin-bottom:60px;

    position:relative;

    z-index:2;
}

/* GRID */

.premium-service-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    position:relative;

    z-index:2;
}

/* CARD */

.premium-service-card{

    background:
    rgba(255,255,255,0.95);

    padding:45px 35px;

    border-radius:30px;

    border:
    1px solid rgba(0,0,0,0.06);

    box-shadow:
    0 15px 40px rgba(15,23,42,0.08);

    transition:0.4s;

    backdrop-filter:blur(10px);
}

.premium-service-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 20px 50px rgba(0,191,255,0.18);
}

/* ICON */

.service-icon{

    width:90px;
    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

    background:
    linear-gradient(
    135deg,
    #00df9a,
    #00bfff
    );

    box-shadow:
    0 10px 25px rgba(0,191,255,0.25);
}

/* CARD TITLE */

.premium-service-card h2{

    font-size:32px;

    margin-bottom:20px;

    color:#071a2f;

    line-height:1.4;
}

/* TEXT */

.premium-service-card p{

    line-height:1.9;

    color:#475569;

    margin-bottom:25px;

    font-size:17px;
}

/* BUTTON */

.premium-service-card button{

    padding:14px 28px;

    border:none;

    border-radius:14px;

    background:
    linear-gradient(
    135deg,
    #00df9a,
    #00bfff
    );

    color:white;

    font-weight:700;

    cursor:pointer;

    transition:0.4s;

    font-size:16px;
}

.premium-service-card button:hover{

    transform:
    scale(1.05);

    box-shadow:
    0 12px 30px rgba(0,191,255,0.28);
}

/* =========================
   CLIENT REVIEW SECTION
========================= */

.review-section{

    padding:120px 8%;

    background:
    linear-gradient(
    135deg,
    #f8fbff,
    #eef6ff,
    #ffffff
    );

    text-align:center;

    overflow:hidden;

    position:relative;
}

/* LIGHT GLOW */

.review-section::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:
    rgba(0,191,255,0.12);

    border-radius:50%;

    top:-200px;
    left:-150px;

    filter:blur(120px);
}

.review-section::after{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    background:
    rgba(0,223,154,0.10);

    border-radius:50%;

    bottom:-180px;
    right:-120px;

    filter:blur(120px);
}

/* HEADING */

.review-section h1{

    font-size:58px;

    color:#071a2f;

    margin-bottom:20px;

    position:relative;

    z-index:2;

    font-weight:800;
}

.review-section p{

    color:#5b6472;

    font-size:20px;

    margin-bottom:60px;

    position:relative;

    z-index:2;
}

/* REVIEW TRACK */

.review-track{

    display:flex;

    gap:35px;

    width:max-content;

    animation:slideReviews 20s linear infinite;

    position:relative;

    z-index:2;
}

/* REVIEW CARD */

.review-card{

    min-width:350px;

    background:
    rgba(255,255,255,0.82);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,0.5);

    padding:45px 35px;

    border-radius:30px;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);

    transition:0.4s;
}

/* HOVER */

.review-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,191,255,0.18);
}

/* CLIENT NAME */

.review-card h2{

    font-size:28px;

    margin-bottom:18px;

    color:#071a2f;
}

/* REVIEW TEXT */

.review-card p{

    line-height:1.9;

    margin-bottom:25px;

    color:#4b5563;

    font-size:17px;
}

/* CLIENT ROLE */

.review-card h3{

    color:#00b894;

    font-size:18px;

    font-weight:700;
}

/* STARS */

.review-stars{

    color:#fbbf24;

    font-size:22px;

    margin-bottom:18px;
}

/* ANIMATION */

@keyframes slideReviews{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}

/* MOBILE */

@media(max-width:768px){

    .review-section h1{

        font-size:40px;
    }

    .review-card{

        min-width:280px;
    }
}