/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GLOBAL STYLES */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    background: #fafafa;
    color: #333;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.section {
    padding: 4rem 1.5rem;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.btn {
    background: #111;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn:hover {
    background: #444;
}

/* HEADER */
header {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    text-align: center;
    background: url("pictures/stable.jpeg") no-repeat center center/cover;
    overflow: hidden;
}

/* NAVBAR */
header nav {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    align-items: center;
    z-index: 2;
}

header nav .logo {
    height: 30px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

header nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

header nav a:hover {
    text-decoration: underline;
}

/* HERO TEXT */
.title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 2;
    position: relative;
}

.title-image {
    max-width: 1000px;
    width: 80%;
    height: auto;
}

.title-container p {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* RESPONSIVE HERO TEXT */
@media (max-width: 700px) {
    .title-image {
        max-width: 200px;
    }
    .title-container p {
        font-size: 1rem;
    }
}

/* ABOUT SECTION */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #222;
    font-family: 'Playfair Display', serif;
}

.about-text p {
    margin-bottom: 18px;
    line-height: 1.7;
    color: #444;
    font-size: 1.05rem;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 380px;
    border-radius: 18px;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;

}

/* AUTHOR IMAGE HOVER EFFECT */
.about-image img:hover {
    transform: scale(1.05);
    border-color: #f0a500;        /* gold border */
    box-shadow: 0 0 20px #f0a500, 0 8px 20px rgba(0,0,0,0.15); /* golden glow */
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* GRID & CARDS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* SERVICES */
#services {
    height: 50vh;
    background-image: url('pictures/womenpower.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.right-section {
    height: 300px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 350px;
    padding-left: 500px;
}

.right-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 40px;
    color: #fcfbf4;
}

/* EXPLORE SECTION */
.explore {
    background: #fff7f3;
    padding: 4rem 2rem;
    width: 100%;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
}

/* Explore & Testimonials Headings */
.explore h2,
.testimonials h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #111;
}

/* TAB BUTTONS (Explore Section) */
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tab-btn {
    background: #c89b7b;
    border: none;
    padding: 1rem 2rem;      /* bigger buttons */
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;       /* larger text */
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.tab-btn:hover {
    background: #a57354;
}

.tab-btn.active {
    background: #111;
}

.tab-content {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.6s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* TESTIMONIALS */
.testimonials {
    background: #f1f1f1;
    width: 100%;
    padding: 4rem 2rem;
    margin: 0;
}

.testimonials .grid {
    margin-top: 2rem;
}

/* EXPLORE GALLERY SLIDER */
.gallery {
    background: #fdfdfd;
    padding: 3rem 1.5rem;
}

.slider {
    position: relative;
    max-width: 900px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.slide {
    min-width: 100%;
    text-align: center;
    position: relative;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.caption {
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 10px;
    font-size: 1.2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 12px 12px;
}

.dots {
    text-align: center;
    margin-top: 1rem;
}

.dots button {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.dots button.active {
    background: #c89b7b;
}

/* FOOTER */
footer {
    background-color: #222;
    color: #fff;
    padding: 30px 10px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
}

.footer-content {
    text-align: center;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #f0a500;
}

.horse-icon {
    font-size: 2rem;
    color: #fff;
}

.corner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.corner-decor {
    width: 40px;
    height: 40px;
    border: 2px solid #f0a500;
    border-radius: 50%;
    margin-top: 5px;
}

.left-corner .corner-decor {
    transform: rotate(-15deg);
}

.right-corner .corner-decor {
    transform: rotate(15deg);
}

/* BOOKING / CONTACT FORM */
.booking-form form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.booking-form label {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;      /* bigger input fields */
    font-size: 1.1rem;         /* larger text */
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
    border-color: #c89b7b;
    box-shadow: 0 0 6px rgba(200, 155, 123, 0.5);
}

.booking-form button {
    padding: 1rem 2rem;       /* bigger button */
    font-size: 1.2rem;        /* larger text */
    border-radius: 8px;
    cursor: pointer;
    background: #111;
    color: #fff;
    border: none;
    transition: background 0.3s ease;
}

.booking-form button:hover {
    background: #444;
}

/*footer*/
.footer-links {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #ccc;
  }
  
  .footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #fff;
  }
  
  .footer-links span {
    margin: 0 8px;
    color: #888;
  }
  

/* EXPLORE GALLERY SECTION */
.gallery {
    width: 100%;
    background: #f7d1d8;
    text-align: center;
    padding: 80px 0;
  }
  
  .gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 600;
    color: #222;
  }
  
  /* Make the slider fill most of the screen */
  .slider {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 600px; /* Increase this for larger images */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  
  .slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
    width: 100%;
    height: 100%;
  }
  
  .slide {
    min-width: 100%;
    height: 100%;
    position: relative;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* makes the image fill fully without distortion */
    transition: transform 1s ease;
  }
  
  .slide img:hover {
    transform: scale(1.05);
  }
  
  /* Caption Overlay */
  .caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
  }
  
  /* Dots (pagination) */
  .dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
  }
  
  .dots span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .dots span.active {
    background: #fff;
    transform: scale(1.2);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .slider {
      height: 400px;
    }
  
    .caption {
      font-size: 0.9rem;
      bottom: 20px;
    }
  }
  
  @media (min-width: 1600px) {
    .slider {
      height: 700px; /* For large screens */
    }
  }

  /* AUTHOR / LUCIA SECTION */
.lucia-about {
    background: #f8f8f8;
    padding: 100px 0;
    text-align: center;
  }
  
  .about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px; /* more space between text and image */
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  /* TEXT STYLING */
  .about-text {
    flex: 1;
    min-width: 350px;
    text-align: left;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
  }
  
  .about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
  }
  
  /* IMAGE STYLING */
  .about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-image img {
    width: 420px; /* bigger image */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  
  .about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  }
  
  /* Responsive tweaks */
  @media (max-width: 992px) {
    .about-container {
      flex-direction: column;
      text-align: center;
      gap: 50px;
    }
  
    .about-text {
      text-align: center;
    }
  
    .about-text h2 {
      font-size: 2rem;
    }
  
    .about-text p {
      font-size: 1.05rem;
    }
  
    .about-image img {
      width: 320px;
    }
  }
  

  /* OUR EVENTS & EXPERIENCES SECTION */
.event-showcase {
    background: #f7d2d8;
    padding: 100px 0;
    text-align: center;
  }
  
  .event-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #222;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  /* Each row with image + text */
  .event-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin: 80px auto;
    max-width: 1200px;
    flex-wrap: wrap;
  }
  
  /* Reverse layout for 2nd row */
  .event-row.reverse {
    flex-direction: row-reverse;
  }
  
  /* Images */
  .event-image {
    flex: 1;
    position: relative;
    max-width: 500px;
  }
  
  .event-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
  }
  
  /* Tilt effect */
  .tilt-left img {
    transform: rotate(-3deg);
  }
  
  .tilt-right img {
    transform: rotate(3deg);
  }
  
  .event-image img:hover {
    transform: scale(1.05) rotate(0deg);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  }
  
  /* Text beside image */
  .event-text {
    flex: 1;
    text-align: left;
    padding: 20px;
  }
  
  .event-text h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .event-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
  }
  
  /* Responsive for mobile */
  @media (max-width: 992px) {
    .event-row {
      flex-direction: column;
      text-align: center;
    }
  
    .event-text {
      text-align: center;
      padding: 0 20px;
    }
  
    .event-image img {
      transform: rotate(0);
    }
  }
  
  /* OUR EVENTS & EXPERIENCES SECTION WITH ARTISTIC BORDERS */
.event-showcase {
    background: #E6E6FA;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  /* Artistic side borders */
  .event-showcase::before,
  .event-showcase::after {
    content: "";
    position: absolute;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #d4af37, #f0e68c, #d4af37);
    border-radius: 4px;
    opacity: 0.9;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  }
  
  .event-showcase::before {
    left: 40px; /* left artistic border */
  }
  
  .event-showcase::after {
    right: 40px; /* right artistic border */
  }
  
  /* Title */
  .event-showcase h2 {
    font-size: 2.6rem;
    margin-bottom: 60px;
    color: #222;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  /* Event row styling */
  .event-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin: 100px auto;
    max-width: 1200px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }
  
  /* Reverse layout for 2nd row */
  .event-row.reverse {
    flex-direction: row-reverse;
  }
  
  /* Image styling */
  .event-image {
    flex: 1;
    max-width: 500px;
    position: relative;
  }
  
  .event-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
  }
  
  /* Tilt effect */
  .tilt-left img {
    transform: rotate(-3deg);
  }
  
  .tilt-right img {
    transform: rotate(3deg);
  }
  
  .event-image img:hover {
    transform: scale(1.05) rotate(0deg);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  }
  
  /* Text beside image */
  .event-text {
    flex: 1;
    text-align: left;
    padding: 20px;
  }
  
  .event-text h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .event-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .event-row {
      flex-direction: column;
      text-align: center;
    }
  
    .event-text {
      text-align: center;
      padding: 0 20px;
    }
  
    .event-image img {
      transform: rotate(0);
    }
  
    .event-showcase::before,
    .event-showcase::after {
      display: none; /* Hide borders on small screens */
    }
  }

  .event-showcase::before,
.event-showcase::after {
    content: "";
    position: absolute;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #d4af37, #f0e68c, #d4af37);
    border-radius: 4px;
    opacity: 0.9;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    z-index: 1; /* behind content */
}

.event-showcase::before {
    left: 0; /* start from very left */
}

.event-showcase::after {
    right: 0; /* start from very right */
}

.event-showcase {
    width: 100vw;          /* full viewport width */
    max-width: 100vw;      /* override max-width from .section */
    margin: 0;             /* remove auto centering */
    padding: 100px 0;      /* keep vertical padding */
    position: relative;
    overflow: hidden;
}

/* Artistic Side Borders */
.event-showcase::before,
.event-showcase::after {
    content: "";
    position: absolute;
    top: 0;
    width: 12px; /* thicker for more impact */
    height: 100%;
    background: linear-gradient(
        180deg,
        #ffb6c1,  /* light pink */
        #ff69b4,  /* hot pink */
        #ff1493,  /* deep pink */
        #ff69b4,
        #ffb6c1
    ); /* gold gradient stripes */
    border-radius: 6px;
    opacity: 0.95;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6), 
                0 0 40px rgba(212, 175, 55, 0.3); /* subtle glow */
    z-index: 1; /* behind content */
}

/* Left border */
.event-showcase::before {
    left: 0; 
    transform: skewY(-10deg); /* artistic tilt */
}

/* Right border */
.event-showcase::after {
    right: 0;
    transform: skewY(10deg); /* opposite tilt */
}

/* Make borders hidden on smaller screens */
@media (max-width: 992px) {
    .event-showcase::before,
    .event-showcase::after {
        display: none;
    }
}

/* Main Header */
.event-showcase h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    font-weight: 700;
    text-transform: none; /* let calligraphy flow naturally */
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ffb6c1, #ff69b4, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 80px;
    animation: headerSlideIn 1s ease forwards;
}

/* Sub-header */
.event-text h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.6rem;
    font-weight: 700;
    color: #ff1493;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

/* Paragraph */
.event-text p {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    font-weight: 500;
    color: #555;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

/* Event Row Images */
.event-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin: 80px auto;
    max-width: 1200px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.event-row.reverse { flex-direction: row-reverse; }

.event-image { flex: 1; max-width: 500px; position: relative; }
.event-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.event-image img:hover { transform: scale(1.05); box-shadow: 0 14px 40px rgba(0,0,0,0.35); }

/* Animations */
@keyframes headerSlideIn {
    0% { opacity: 0; transform: translateY(-50px) rotateX(10deg); }
    100% { opacity: 1; transform: translateY(0) rotateX(0deg); }
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
    .event-row { flex-direction: column; text-align: center; }
    .event-text { text-align: center; padding: 0 20px; }
    .event-showcase::before, .event-showcase::after { display: none; }
}

/* Strong selector to target all event headers */
.event-grid .event-item h3,
.event-grid h3,
.event-card h3,
.event-showcase h3,
.carousel-slide h3,
.event h3 {
    display: inline-block;
    padding: 10px 20px;
    border: 3px solid #ff69b4;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 12px rgba(255, 105, 180, 0.6);
    margin-bottom: 12px;
    text-align: center;
}

/* --- EXPLORE MORE SECTION WITH GREY OUTER BACKGROUND --- */
.explore-wrapper {
  background: #e5e5e5;   /* grey background behind the border */
  padding: 40px 0;
}

.explore {
  position: relative;
  border: 4px solid #c89b7b;
  border-radius: 14px;
  padding: 4rem 2rem;
  margin: 0 auto;
  max-width: 1200px;
  background: #fff7f3;   /* inside section background */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.explore::before,
.explore::after {
  content: "";
  position: absolute;
  top: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, #d4af37, #f7e88b, #d4af37);
  border-radius: 4px;
  opacity: 0.9;
}

.explore::before { left: -15px; }
.explore::after  { right: -15px; }



/* --- TESTIMONIALS SECTION WITH GREY OUTER BACKGROUND --- */
.testimonials-wrapper {
  background: #e5e5e5;   /* grey background */
  padding: 40px 0;
}

.testimonials {
  position: relative;
  border: 4px solid #c89b7b;
  border-radius: 14px;
  padding: 4rem 2rem;
  margin: 0 auto;
  max-width: 1200px;
  background: #f1f1f1;   /* inside section background */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonials::before,
.testimonials::after {
  content: "";
  position: absolute;
  top: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, #d4af37, #f7e88b, #d4af37);
  border-radius: 4px;
  opacity: 0.9;
}

.testimonials::before { left: -15px; }
.testimonials::after  { right: -15px; }
