.hero-slider{
    position:relative;
}

.heroSwiper{
    height:100vh;
}

.heroSwiper .swiper-slide{
    position:relative;
    overflow:hidden;
}

.heroSwiper .swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.85) 0%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.25) 100%
    );
}

.slide-content{
    position:absolute;
    top:50%;
    left:10%;
    transform:translateY(-50%);
    max-width:650px;
    color:#fff;
    z-index:2;
}

.slide-content span{
    display:inline-block;
    background:#043089;
    padding:5px 10px;
    border-radius:30px;
    margin-bottom:20px;
    font-weight:400;
}

.slide-content h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:20px;
    font-weight:800;
    color: white;
}

.slide-content p{
    font-size:20px;
    margin-bottom:30px;
    max-width:550px;
}

.hero-btn{
    display:inline-block;
    padding:15px 35px;
    background:#ff6b00;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
}

.swiper-button-next,
.swiper-button-prev{
    color:#fff;
}

.swiper-pagination-bullet{
    background:#fff;
}

.swiper-pagination-bullet-active{
    background:#ff6b00;
}

@media (max-width:768px){

    .hero-slider,
    .heroSwiper,
    .swiper-slide{
        height:650px !important;
        min-height:650px !important;
    }
    .slide-content{
        left: 20px;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        max-width: 100%;
    }

    .slide-content h1{
        font-size: 42px !important;
        line-height: 1.1;
    }

    .slide-content p{
        font-size: 16px;
        margin-bottom: 20px;
    }
}
/* second section */
.offer-section{
    padding: 80px 20px;
    background: #f9f9f9;
    overflow: hidden;
}

.offer-container{
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.offer-image img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
}

.offer-content h3{
    font-size: 36px;
    margin-bottom: 10px;
}

.offer-content h4{
    color: #ff6b00;
    margin-bottom: 10px;
}

.offer-btn{
    display: inline-block;
    padding: 12px 25px;
    background: #ff6b00;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
}
@media (max-width: 768px) {

    .offer-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 20px;
    }

    .offer-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .offer-image img {
        width: 100%;
        max-width: 320px;
        border-radius: 12px;
    }

    .offer-content {
        max-width: 100%;
        padding: 0 10px;
    }

    .offer-content h3 {
        font-size: 22px;
    }

    .offer-content h4 {
        font-size: 18px;
        line-height: 1.3;
    }

    .offer-content p {
        font-size: 14px;
    }

    .offer-btn {
        display: inline-block;
        margin-top: 10px;
    }
}

/* third section */
.curtain-section {
    padding: 80px 0;
    text-align: center;
    background: #fafafa;
}

.curtain-header .sub {
    color: #ff4d2d;
    font-weight: 600;
    letter-spacing: 2px;
}

.curtain-header h2 {
    font-size: 40px;
    margin: 10px 0;
}

.curtain-header p {
    color: #666;
}

/* WRAPPER */
.curtain-wrapper {
    position: relative;
    margin-top: 50px;
    overflow: hidden;
    border-radius: 20px;
}

/* CURTAINS */

.curtain.left {
    left: 0;
}

.curtain.right {
    right: 0;
}

/* OPEN STATE */
.curtain-wrapper.open .left {
    transform: translateX(-100%);
}

.curtain-wrapper.open .right {
    transform: translateX(100%);
}

/* FOOD GRID */
.food-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 60px 20px;
    background: white;
}

.food-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: scale(0.95);
    transition: 0.4s;
}

.food-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.food-card h4 {
    padding: 10px;
}

.food-card:hover {
    transform: scale(1);
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .food-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* mouse scroll event start */

.horizontal-section{
    height:100vh;
    overflow:hidden;
    position:relative;
    background:#f8f8f8;
}

.horizontal-wrapper{
    display:flex;
    align-items:center;
    width:max-content;
    height:100%;
}

.left-content{
    width:100vw;
    padding-left:8%;
}

.left-content span{
    font-size:22px;
    color:#8b6b32;
}

.left-content h1{
    font-size:70px;
    line-height:1.1;
    margin-top:20px;
    color:#3d3023;
}

.right-content{
    display:flex;
    gap:40px;
    padding-right:120px;
}

.card{
    width:500px;
    height:500px;
    flex-shrink:0;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* mouse scroll event end */
/* for test */

.horizontal-section{
    height:100vh;
    overflow:hidden;
    position:relative;
    background:#f8f8f8;
}

.horizontal-wrapper{
    display:flex;
    align-items:center;
    /* width:max-content; */
    flex-wrap:nowrap;
    height:100%;
}

.left-content{
    width:100vw;
    padding-left:8%;
}

.left-content span{
    font-size:22px;
    color:#8b6b32;
}

.left-content h1{
    font-size:70px;
    line-height:1.1;
    margin-top:20px;
    color:#3d3023;
}

.right-content{
    display:flex;
    gap:40px;
    padding-right:120px;
}

.card{
    width:500px;
    height:500px;
    flex-shrink:0;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
    flex:0 0 500px;
}

.card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

@media (max-width:768px){

    .left-content{
        width:100vw;
        padding:25px;
    }

    .left-content h1{
        font-size:38px;
        line-height:1.2;
    }

    .left-content span{
        font-size:16px;
    }

    .right-content{
        gap:15px;
        padding-right:20px;
    }

    .card{
        width:280px;
        height:340px;
    }

}
/* curtain slider */
/*=========================
Google Font
=========================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b0b0b;
    color:#fff;
    overflow-x:hidden;
}

/*=========================
SECTION
=========================*/

.product-showcase{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    /* background:
    radial-gradient(circle at top right,#84878b 0%,#111 45%,#050505 100%); */
    padding:100px 8%;
}

/*=========================
BACKGROUND CIRCLES
=========================*/

.circle{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    opacity:.25;
}

.circle.one{
    width:350px;
    height:350px;
    background:#2dd4bf;
    top:-120px;
    right:-120px;
}

.circle.two{
    width:450px;
    height:450px;
    background:#f59e0b;
    bottom:-180px;
    left:-180px;
}

/*=========================
CONTAINER
=========================*/

.container{
    width:100%;
    max-width:1300px;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
    position:relative;
    z-index:2;
}

/*=========================
LEFT CONTENT
=========================*/

.subtitle{
    display:inline-block;
    color:#10152e;
    font-size:15px;
    font-weight: bold;
    font-family: sans-serif;
    letter-spacing:1px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.title{
    font-size:64px;
    line-height:1.05;
    font-weight:800;
    margin-bottom:25px;
}

.description{
    color:#0a0404;
    line-height:1.9;
    font-size:17px;
    max-width:520px;
    margin-bottom:40px;
}

/*=========================
FEATURES
=========================*/

.features{
    display:grid;
    gap:18px;
    margin-bottom:45px;
}

.feature{
    display:flex;
    align-items:center;
    gap:15px;
    font-size:17px;
}

.feature span{
    width:35px;
    height:35px;
    border-radius:50%;
    background:#fbbf24;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}

/*=========================
BUTTONS
=========================*/

.buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    padding:16px 38px;
    border-radius:60px;
    text-decoration:none;
    transition:.35s;
    font-weight:600;
    background-color: #f59e0b;
}

.btn-primary{
    background:#240732;
    color:#f7f6f6;
}

.btn-primary:hover{
    background:#fbbf24;
    transform:translateY(-6px);
}

.btn-secondary{
    border:2px solid rgba(255,255,255,.2);
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#111;
}

/*=========================
IMAGE
=========================*/

.image-area{
    display:flex;
    justify-content:center;
    align-items:center;
}

.image-box{

    width:520px;
    height:620px;

    border-radius:35px;

    overflow:hidden;

    background:rgb(40, 36, 36);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
    0 40px 80px rgba(0,0,0,.45);

}

.image-box img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.6s;
}

.image-box:hover img{
    transform:scale(1.08);
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

.container{
    grid-template-columns:1fr;
    text-align:center;
}

.description{
    margin:auto auto 40px;
}

.buttons{
    justify-content:center;
}

.image-box{
    width:100%;
    max-width:420px;
    height:520px;
}

.title{
    font-size:48px;
}

}

@media(max-width:600px){

.product-showcase{
    padding:80px 25px;
}

.title{
    font-size:36px;
}

.description{
    font-size:15px;
}

.feature{
    font-size:15px;
}

.image-box{
    height:420px;
}

.btn-primary,
.btn-secondary{
    width:100%;
    text-align:center;
}

}

/* 3image section our story */
body{
  margin:0;
  font-family: "Poppins", sans-serif;
  background:#fff6f2;
}

.story-premium{
  padding:100px 6%;
}

.story-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 0.7fr;
  gap:35px;
  align-items:center;
}

/* GLASS CARD */
.story-card{
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px);
  border:1px solid rgba(255,255,255,0.3);
  border-radius:22px;
  padding:20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  overflow:hidden;
  position:relative;
}

/* TEXT */
.tag{
  color:#b12a34;
  font-weight:600;
}

.story-card h2{
  font-size:42px;
  margin:10px 0 20px;
}

.story-card p{
  color:#555;
  line-height:1.7;
}

.btn{
  display:inline-block;
  margin-top:15px;
  padding:12px 25px;
  background:#b12a34;
  color:#fff;
  border-radius:30px;
  text-decoration:none;
}

/* IMAGES */
.img{
  padding:0;
}

.img img{
  width:100%;
  height:100%;
  border-radius:22px;
  object-fit:cover;
  transition:0.6s ease;
}

/* HOVER ZOOM */
.img:hover img{
  transform:scale(1.08);
}

/* MAIN BIG IMAGE */
.big img{
  height:520px;
}

/* RIGHT STACK */
.right-stack{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.small img{
  height:240px;
}

/* RESPONSIVE */
@media(max-width:992px){
  .story-grid{
    grid-template-columns:1fr;
  }

  .big img{
    height:350px;
  }

  .right-stack{
    flex-direction:row;
  }

  .small img{
    height:180px;
  }
}
/* testimonial section  */
body{
  margin:0;
  font-family: Arial;
  background:#fff7f3;
}

.testimonial-section{
  padding:70px 0;
  text-align:center;
  overflow:hidden;
}

.title{
  font-size:42px;
  margin-bottom:40px;
}

/* slider */
.slider{
  overflow:hidden;
  width:100%;
}

.track{
  display:flex;
  gap:25px;
  width:max-content;
  animation: scroll 22s linear infinite;
}

/* CARD */
.card{
  width:300px;
  padding:30px 20px;
  border-radius:20px;
  background:#ffffff;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  text-align:center;
  transition:0.4s;
  position:relative;
  overflow:hidden;
}

/* hover full background */
.card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:#b12a2a;
  transform:scaleY(0);
  transform-origin:bottom;
  transition:0.4s;
  z-index:0;
}

.card:hover::before{
  transform:scaleY(1);
}

/* content on top */
.card *{
  position:relative;
  z-index:2;
  transition:0.3s;
}

.card:hover h3,
.card:hover p{
  color:#fff;
}

/* IMAGE CENTER BIGGER */
.imgBox{
  width:110px;
  height:110px;
  margin:0 auto 15px;
  border-radius:50%;
  overflow:hidden;
  border:4px solid #eee;
  transition:0.3s;
}

.card:hover .imgBox{
  border-color:#fff;
  transform:scale(1.05);
}

.imgBox img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.card h3{
  margin:10px 0 5px;
  font-size:20px;
}

.card p{
  font-size:14px;
  color:#555;
}

/* scroll animation */
@keyframes scroll{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

/* pause on hover */
.slider:hover .track{
  animation-play-state: paused;
}
/* our blog section */
body {
  margin: 0;
  font-family: Arial;
  background: #0f0f1a;
  color: white;
}

.premium-section {
  padding: 80px 5%;
  overflow: hidden;
}

.text-area {
  text-align: center;
  margin-bottom: 40px;
}

.text-area h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.slider-wrapper {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scroll 18s linear infinite;
}

.card {
  min-width: 280px;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.05);
  transition: 0.4s;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* hover effect */
.card:hover img {
  transform: scale(1.1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* right to left animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* add to card section  */
.menu-section{
    width:100%;
    padding:80px 6%;
}

.menu-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

/*=========================
        CARD
==========================*/

.menu-card{
    background:#f6eee8;
    border-radius:22px;
    padding:22px;
    transition:.35s ease;
}

.menu-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

/*=========================
        BADGE
==========================*/

.badge{
    display:inline-flex;
    align-items:center;
    gap:6px;

    padding:7px 16px;

    background:#fff;

    border-radius:40px;

    color:#c94b4b;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

/*=========================
        TITLE
==========================*/

.menu-card h3{

    font-size:38px;

    line-height:1.2;

    font-family:Georgia,serif;

    font-weight:500;

    color:#222;

    margin-bottom:18px;

}

/*=========================
        IMAGE
==========================*/

.image{

    width:100%;

    height:360px;

    overflow:hidden;

    border-radius:18px;

    margin-bottom:20px;

}

.image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.menu-card:hover img{

    transform:scale(1.08);

}

/*=========================
      DESCRIPTION
==========================*/

.menu-card p{

    font-size:17px;

    line-height:28px;

    color:#777;

    margin-bottom:30px;

}

/*=========================
      BOTTOM
==========================*/

.bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

}

.price{

    font-size:32px;

    font-weight:700;

    color:#222;

}

/*=========================
      BUTTON
==========================*/

.cart-btn{

    width:100%;

    height:54px;

    border:1.8px solid #d13737;

    background:transparent;

    color:#c83232;

    border-radius:50px;

    font-size:20px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.cart-btn:hover{

    background:#d13737;

    color:#fff;

}

/*=========================
      RESPONSIVE
==========================*/

@media(max-width:992px){

.menu-container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.menu-container{

grid-template-columns:1fr;

}

.menu-card h3{

font-size:30px;

}

.image{

height:300px;

}

}
/* reserve section */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{

background:#f5efe9;
padding:40px;

}

.reservation{

background:#232323;
padding:70px;
border-radius:15px;

}

.container{

display:flex;
justify-content:space-between;
align-items:flex-start;
gap:70px;

}

.left{

flex:1;
color:#fff;

}

.sub-title{

color:#d4a15b;
font-size:18px;

}

.info-box{

margin-top:50px;

}

.info-box h2{

font-size:32px;
margin-bottom:25px;
font-family:Georgia, serif;

}

.info-box p{

font-size:20px;
line-height:42px;
color:#e8e8e8;

}

.right{

flex:1;
background:#fff;
padding:45px;
border-radius:22px;

}

.right h1{

text-align:center;
font-size:48px;
font-family:Georgia, serif;
font-weight:500;
margin-bottom:15px;

}

.menu-type{

display:flex;
justify-content:center;
gap:30px;
margin-bottom:40px;
font-size:20px;
position:relative;

}

.menu-type::after{

content:"";
position:absolute;
bottom:-12px;
width:180px;
height:1px;
background:#000;

}

.form-group{

display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-bottom:25px;

}

.input-box{

display:flex;
flex-direction:column;

}

.input-box label{

font-weight:600;
margin-bottom:8px;

}

.input-box input,
.input-box select{

height:55px;
padding:0 15px;
border:1px solid #ccc;
border-radius:8px;
font-size:16px;
outline:none;

}

.btns{

display:flex;
justify-content:space-between;
margin-top:30px;

}

.btns button{

padding:16px 28px;
border:none;
cursor:pointer;
font-size:17px;
border-radius:8px;
transition:.3s;

}

.cancel{

background:#ececec;

}

.submit{

background:#a3232b;
color:#fff;

}

.submit:hover{

background:#861a22;

}

.cancel:hover{

background:#d8d8d8;

}

/*================== Responsive =================*/

@media(max-width:991px){

.container{

flex-direction:column;

}

.right,
.left{

width:100%;

}

}

@media(max-width:768px){

.reservation{

padding:30px;

}

.right{

padding:25px;

}

.right h1{

font-size:35px;

}

.info-box h2{

font-size:26px;

}

.info-box p{

font-size:17px;
line-height:30px;

}

.form-group{

grid-template-columns:1fr;

}

.btns{

flex-direction:column;
gap:15px;

}

.btns button{

width:100%;

}

.menu-type{

gap:15px;
font-size:16px;

}

}

@media(max-width:480px){

body{

padding:15px;

}

.reservation{

padding:20px;

}

.right h1{

font-size:28px;

}

}

/* new section-two */
.testimonial-section{
    width:100%;
    padding:80px 5%;
}

.testimonial-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/*==========================
Image Grid
==========================*/

.image-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.grid-item{
    height:220px;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
    position:relative;
}

.grid-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.grid-item:hover img{
    transform:scale(1.1);
}

/*==========================
Right Side
==========================*/

.testimonial-content{

    background:#fff;
    padding:60px;
    border-radius:25px;
    position:relative;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.quote-icon{

    font-size:90px;
    color:#d8c4a9;
    opacity:.3;
    margin-bottom:20px;

}

.slide{
    display:none;
    animation:fade .5s ease;
}

.slide.active{
    display:block;
}

@keyframes fade{

from{
opacity:0;
transform:translateY(20px);
}

to{
opacity:1;
transform:translateY(0);
}

}

.slide h2{

font-size:48px;
margin-bottom:20px;
color:#3d3328;
font-weight:700;

}

.slide p{

font-size:18px;
line-height:32px;
color:#666;
margin-bottom:40px;

}

/*==========================
Client
==========================*/

.client{

display:flex;
align-items:center;
gap:15px;

}

.client img{

width:70px;
height:70px;
border-radius:50%;
object-fit:cover;

}

.client h3{

font-size:22px;
color:#333;

}

.client span{

color:#999;
font-size:15px;

}

/*==========================
Buttons
==========================*/

.slider-btns{

margin-top:45px;
display:flex;
gap:15px;

}

.slider-btns button{

width:55px;
height:55px;
border:none;
border-radius:50%;
background:#c9a063;
color:#fff;
font-size:20px;
cursor:pointer;
transition:.3s;

}

.slider-btns button:hover{

background:#9f6d27;
transform:translateY(-4px);

}

/*==========================
Dots
==========================*/

.dots{

display:flex;
gap:10px;
margin-top:30px;

}

.dot{

width:12px;
height:12px;
border-radius:50%;
background:#d7d7d7;
cursor:pointer;

}

.dot.active{

background:#b07b35;

}

/*==========================
Responsive
==========================*/

@media(max-width:1100px){

.testimonial-container{

grid-template-columns:1fr;

}

.slide h2{

font-size:38px;

}

}

@media(max-width:768px){

.testimonial-section{

padding:60px 20px;

}

.image-grid{

grid-template-columns:repeat(2,1fr);

}

.grid-item{

height:170px;

}

.testimonial-content{

padding:35px 25px;

}

.quote-icon{

font-size:60px;

}

.slide h2{

font-size:30px;

}

.slide p{

font-size:16px;
line-height:28px;

}

.slider-btns{

justify-content:center;

}

.dots{

justify-content:center;

}

}

@media(max-width:500px){

.image-grid{

grid-template-columns:1fr;

}

.grid-item{

height:230px;

}

.slide h2{

font-size:26px;

}

.client img{

width:55px;
height:55px;

}

.client h3{

font-size:18px;

}

.client span{

font-size:14px;

}

}