* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo img {
    height: 54px;
    width: 127px;
    margin-top: -4px;
}

/* Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    padding-right: 29px;
}

/* Button */
.btn-book {
    background: #000000;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 25px;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    display: none;
    flex-direction: column;
    border-radius: 6px;
    overflow: hidden;
    z-index: 999;
}

.dropdown-menu a {
    padding: 12px 15px;
    color: #222;
    text-decoration: none;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

/* Show dropdown */
.nav-dropdown.active .dropdown-menu {
    display: flex;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .nav-dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        width: 100%;
        border-radius: 0;
    }
}

/* hero section */
.hero {
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Black Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Content Center */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Button */
.hero-btn {
    padding: 12px 30px;
    background: linear-gradient(45deg, #000000, #000000);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.5);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero {
        height: 75vh;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 15px;
    }
}

/* about us */
/* ================= ABOUT SECTION ================= */
.about-section {
    padding: 29px 20px;
    background: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: stretch;
    /* 🔥 Equal height */
    gap: 40px;
}

/* Image */
.about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 18px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.about-content {
    flex: 1;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #222;
}

/* Stars */
.stars {
    color: #745419;
    font-size: 20px;
    margin-bottom: 15px;
}

.about-content p {
    color: #000000;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 15.5px;
}

/* Button */
.about-btn {
    margin-top: 15px;
    align-self: flex-start;
    padding: 12px 28px;
    background: linear-gradient(45deg, #000000, #000000);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.45);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
    }

    .about-image img {
        height: 260px;
    }

    .about-content {
        padding: 30px;
    }

    .about-content h2 {
        font-size: 26px;
    }
}


/* css tour packages */
.tour-section {
    padding: 5px 20px;
    background: #f9f9f9;
}

.tour-container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 34px;
    color: #222;
}

.section-title p {
    color: #000000;
    margin-top: 8px;
}

/* Grid */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.tour-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.tour-card:hover {
    transform: translateY(-8px);
}

/* Image */
.tour-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Title */
.tour-card h3 {
    padding: 18px;
    font-size: 18px;
    color: #222;
    text-align: center;
}

/* Buttons */
.tour-buttons {
    display: flex;
    gap: 15px;
    padding: 0 18px 20px;
}

.btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

/* Reserve Button */
.reserve {
    background: linear-gradient(45deg, #000000, #000000);
    color: #fff;
}

/* WhatsApp Button */
.whatsapp {
    background: #000000;
    color: #fff;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tour-grid {
        grid-template-columns: 1fr;
    }

    .tour-card img {
        height: 200px;
    }

    .section-title h2 {
        font-size: 26px;
    }
}

/* ================= TOUR INFO ROW ================= */
.tour-info {
    display: flex;
    justify-content: space-between;
    padding: 0 18px 10px;
    font-size: 14px;
    color: #000000;
}

.tour-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.tour-info .icon {
    font-size: 15px;
    color: #ff7a00;
}

/* Mobile fine-tuning */
@media (max-width: 600px) {
    .tour-info {
        font-size: 13px;
    }
}

/* why choose us */
.why-choose-section {
    padding: 41px 20px;
    background: #ffffff;
}

.why-container {
    max-width: 1200px;
    margin: auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.why-card {
    background: #f9f9f9;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Icon */
.why-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

/* Text */
.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}

.why-card p {
    font-size: 14.5px;
    color: #000000;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 26px;
    }
}

/* cta section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #5d35df, #0a101d);
    color: #fff;
    text-align: center;
}

.cta-container {
    max-width: 900px;
    margin: auto;
}

.cta-container h2 {
    font-size: 38px;
    margin-bottom: 12px;
    font-weight: 700;
}

.cta-container p {
    font-size: 17px;
    opacity: 0.95;
    margin-bottom: 35px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
    background: #fff;
    color: #222;
}

/* Hover */
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* Button Colors */
.cta-btn.call {
    color: #ff7a00;
}

.cta-btn.email {
    color: #ff9800;
}

.cta-btn.whatsapp {
    color: #25d366;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .cta-container h2 {
        font-size: 28px;
    }

    .cta-container p {
        font-size: 15px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* footer */
.footer {
    background: #f7e6e6;
    color: #ccc;
    padding-top: 26px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Logo */
.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

/* Text */
.footer-col p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #000000;
}

/* Headings */
.footer-col h3 {
    font-size: 18px;
    color: #000000;
    margin-bottom: 18px;
}

/* Lists */
.footer-col ul {
    list-style: none;
    color: black;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 13.5px;
}

.footer-col ul li a {
    color: #000000;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ff7a00;
}

/* Contact Info */
.contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #000000;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}

/* scroller button css */
#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #000000;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

#scrollTopBtn:hover {
    background: #ff9800;
    transform: translateY(-3px);
}

/* contact us */
.att-contact-section {
    padding: 70px 20px;
    background: #f8f9fb;
    font-family: 'Poppins', sans-serif;
}

.att-contact-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* LEFT */
.att-contact-info {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.att-title {
    font-size: 26px;
    margin-bottom: 15px;
}

.att-desc {
    color: #000000;
    margin-bottom: 30px;
}

.att-info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.att-icon {
    font-size: 20px;
    background: #000000;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
}

.att-info-box h4 {
    margin: 0;
    font-size: 16px;
}

.att-info-box p {
    margin-top: 4px;
    font-size: 14px;
    color: #000000;
}

/* RIGHT */
.att-contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.att-form-row {
    display: flex;
    gap: 15px;
}

.att-form input,
.att-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

.att-form input:focus,
.att-form textarea:focus {
    outline: none;
    border-color: #ff9f1c;
}

.att-btn {
    background: #000000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

.att-btn:hover {
    background: #e88900;
}

/* MOBILE */
@media (max-width: 768px) {
    .att-contact-wrapper {
        grid-template-columns: 1fr;
    }

    .att-form-row {
        flex-direction: column;
    }
}

/* hotel bookinng css */
.tpPlanSection {
    padding: 34px 0;
    background: #ffffff;
}

.tpContainer {
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 45px;
    padding: 0 25px;
}

/* LEFT SIDE */
.tpLeft {
    width: 50%;
}

.tpTitle {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tpIntro {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: black;
}

.tpSubTitle {
    font-size: 22px;
    margin-bottom: 15px;
}

.tpSteps li {
    margin-bottom: 18px;
    line-height: 1.5;
}

.tpSteps p {
    margin: 4px 0 0;
    color: #000000;
}

/* RIGHT FORM BOX */
.tpRight {
    width: 50%;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.12);
}

.tpForm label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.tpForm input,
.tpForm select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 18px;
    background: #fff;
    transition: 0.3s;
}

.tpForm input:focus,
.tpForm select:focus {
    border-color: #c49b69;
    box-shadow: 0 0 7px rgba(196, 155, 105, 0.4);
}

.tpRow {
    display: flex;
    gap: 20px;
}

.tpGroup {
    flex: 1;
}

.tpContactTitle {
    margin: 25px 0 15px;
    text-align: center;
    font-size: 20px;
}

/* BUTTON */
.tpSubmitBtn {
    width: 100%;
    padding: 14px;
    background: #16285a;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.tpSubmitBtn:hover {
    background: #000000;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .tpContainer {
        flex-direction: column;
    }

    .tpLeft,
    .tpRight {
        width: 100%;
    }
}

@media(max-width: 576px) {
    .tpRow {
        flex-direction: column;
    }

    .tpRight {
        padding: 25px;
        border-radius: 15px;
    }
}

.tpForm textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 18px;
    background: #fff;
    resize: vertical;
    transition: 0.3s;
    font-family: inherit;
}

.tpForm textarea:focus {
    border-color: #c49b69;
    box-shadow: 0 0 7px rgba(196, 155, 105, 0.4);
    outline: none;
}

/* about us 8 cards css */
.syAboutSection {
    padding: 0px 20px;
    background: #f8f9fc;
}

.syAboutContainer {
    max-width: 1500px;
    /* thoda wide for 5 cards */
    margin: auto;
}

.syAboutTitle {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

/* GRID - 5 CARDS PER ROW */
.syAboutGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.syCard {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: all 0.4s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.syCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
}

/* ICON */
.syIcon {
    font-size: 30px;
    margin-bottom: 15px;
}

/* TEXT */
.syCard p {
    font-size: 14px;
    line-height: 1.7;
    color: #000000;
}

/* TABLET */
@media (max-width: 1200px) {
    .syAboutGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .syAboutGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE - Horizontal Swipe */
@media (max-width: 576px) {
    .syAboutGrid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 10px;
    }

    .syCard {
        min-width: 85%;
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .syAboutSection {
        padding: 30px 20px;
    }

    .syAboutTitle {
        font-size: 22px;
    }
}

/* about tour css */
.syToursSection {
    padding: 30px 20px;
    background: #ffffff;
}

.syToursContainer {
    max-width: 1100px;
    margin: auto;
}

.syToursTitle {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.syToursList {
    list-style: none;
    padding: 0;
}

.syToursList li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
}

/* Custom Bullet Icon */
.syToursList li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #16285a;
    font-weight: bold;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .syToursTitle {
        font-size: 26px;
    }

    .syToursList li {
        font-size: 15px;
    }
}

/* about us cta */
.syCtaSection {
    padding: 80px 20px;
    background: linear-gradient(135deg, #16285a, #0f1c3d);
    color: #ffffff;
}

.syCtaContainer {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */
.syCtaLeft {
    flex: 1;
}

.syCtaTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.syCtaText {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.9;
}

/* RIGHT */
.syCtaRight {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    text-align: center;
}

.syCtaActionText {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 500;
}

/* BUTTONS */
.syCtaButtons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.syWhatsappBtn,
.syCallBtn {
    display: inline-block;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

/* WhatsApp */
.syWhatsappBtn {
    background: #25D366;
    color: #fff;
}

.syWhatsappBtn:hover {
    background: #1ebe5d;
}

/* Call Button */
.syCallBtn {
    background: #ffffff;
    color: #16285a;
}

.syCallBtn:hover {
    background: #f1f1f1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .syCtaContainer {
        flex-direction: column;
        text-align: center;
    }

    .syCtaLeft,
    .syCtaRight {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .syCtaTitle {
        font-size: 26px;
    }

    .syCtaText {
        font-size: 15px;
    }
}

/* popup css */
/* OVERLAY */
.syPopupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

/* POPUP BOX */
.syPopupBox {
    background: #ffffff;
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    animation: popupFade 0.3s ease;
}

/* Animation */
@keyframes popupFade {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* CLOSE BUTTON */
.syCloseBtn {
    position: absolute;
    right: 18px;
    top: 12px;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

/* TITLE */
.syPopupTitle {
    text-align: center;
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 700;
}

/* FORM */
.syPopupForm input,
.syPopupForm textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    font-size: 14px;
    transition: 0.3s;
}

.syPopupForm input:focus,
.syPopupForm textarea:focus {
    border-color: #16285a;
    box-shadow: 0 0 6px rgba(22, 40, 90, 0.3);
    outline: none;
}

.syPopupRow {
    display: flex;
    gap: 15px;
}

/* BUTTON */
.syPopupBtn {
    width: 100%;
    padding: 14px;
    background: #16285a;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.syPopupBtn:hover {
    background: #000;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .syPopupRow {
        flex-direction: column;
    }

    .syPopupBox {
        padding: 25px;
    }
}

/*  */
a {
  text-decoration: none;
}