.feature-two__button-wrapper {
    text-align: center;
    margin-top: 20px;
}

.more-services-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color:#26b3fb;    
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}


.more-services-btn:hover {
    background: linear-gradient(135deg, #26b3fb,#26b3fb);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}



/* ============================quick contact================== */
.quick_whtsp{
    font-size: 20px;
      width: 50px;
      height: 50px;
      display: flex;
      padding: 10px;
      align-items: center;
      justify-content: center;
      color: white;
      border: 2px solid;
      border-radius: 5px;
      position: fixed;
      right: 10px;
      bottom: 25%;
      z-index: 999;
      background: linear-gradient(15deg, #15774a, #26a76b);
  }
  .quick_call{
    font-size: 18px;
    width: 50px;
    height: 50px;
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: center;
    color: white;
    border: 2px solid;
    border-radius: 5px;
    position: fixed;
    right: 10px;
    bottom: 15%;
    z-index: 999;
    background: linear-gradient(15deg, #155573, #3389b1);
  }
  /* ================quick contact========================= */
#mt-landing-wrapper {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.7;
    background: #fff;
    overflow-x: hidden;
}

#mt-landing-wrapper * { box-sizing: border-box; }

/* --- HERO SECTION --- */
#mt-landing-wrapper .mt-hero {
    position: relative;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1506953823976-52e1bdc0149a?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
}

#mt-landing-wrapper .mt-hero-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

#mt-landing-wrapper .mt-subtitle {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: clamp(0.7rem, 2vw, 1rem);
    margin-bottom: 20px;
}

/* FLUID RESPONSIVE TITLE */
#mt-landing-wrapper .mt-giant-title {
    font-family: 'Playfair Display', serif;
    /* clamp(minimum, preferred, maximum) */
    font-size: clamp(5rem, 18vw, 22rem); 
    color: #fff;
    line-height: 0.8;
    margin: 0;
    margin-bottom: -1vw;
    letter-spacing: -2px;
    text-align: center;
    width: 100%;
}

/* --- SECTIONS --- */
#mt-landing-wrapper .mt-section { padding: 80px 20px; }
#mt-landing-wrapper .mt-container { max-width: 1200px; margin: 0 auto; }
#mt-landing-wrapper .mt-heading-serif { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 20px; }
#mt-landing-wrapper .mt-heading-center { text-align: center; font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 50px;}

/* FLEX LAYOUTS */
#mt-landing-wrapper .mt-flex-row { display: flex; align-items: center; gap: 60px; }
#mt-landing-wrapper .mt-col-text { flex: 1; }
#mt-landing-wrapper .mt-col-image { flex: 1; }

#mt-landing-wrapper .mt-image-frame img { width: 100%; border-radius: 4px; box-shadow: 20px 20px 0px #f8f8f8; }
#mt-landing-wrapper .mt-image-frame-rounded img { width: 100%; border-radius: 100px 100px 0 0; height: 500px; object-fit: cover; }

#mt-landing-wrapper .mt-full-bg-section {
    background: url('assets/images/destination/banner-maldives.jpg') center/cover fixed;
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
}
#mt-landing-wrapper .mt-full-bg-overlay { width: 100%; height: 100%; background: rgba(0,0,0,0.4); display: flex; align-items: center; }

/* GRID & ICONS */
#mt-landing-wrapper .mt-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
#mt-landing-wrapper .mt-feature-card { background: #fff; padding: 40px; text-align: center; border: 1px solid #eee; }
#mt-landing-wrapper .mt-icon-box { width: 50px; height: 50px; margin: 0 auto 20px; color: #c9a050; }

/* LISTS */
#mt-landing-wrapper .mt-pro-list, #mt-landing-wrapper .mt-pro-list-cross { list-style: none; padding: 0; }
#mt-landing-wrapper .mt-bullet-check::before { content: "L"; transform: scaleX(-1) rotate(-35deg); display: inline-block; color: #2e8b57; font-weight: bold; margin-right: 15px;}
#mt-landing-wrapper .mt-bullet-cross::before { content: "✕"; color: #cd5c5c; font-weight: bold; margin-right: 15px;}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
    #mt-landing-wrapper .mt-flex-row { flex-direction: column; text-align: center; }
    #mt-landing-wrapper .mt-reverse { flex-direction: column-reverse; }
    #mt-landing-wrapper .mt-image-frame img, #mt-landing-wrapper .mt-image-frame-rounded img { height: auto; max-width: 90%; }
}

@media (max-width: 600px) {
    #mt-landing-wrapper .mt-section { padding: 50px 20px; }
    #mt-landing-wrapper .mt-giant-title { font-size: 18vw; } /* Slightly smaller for mobile to prevent cut-off */
}






/* --- CORE STYLES --- */
#mt-landing-wrapper {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.7;
    background: #fff;
    overflow-x: hidden;
}

#mt-landing-wrapper * { box-sizing: border-box; }

/* TYPOGRAPHY */
#mt-landing-wrapper .mt-heading-serif {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 20px;
    color: #004d4d; /* Deep Teal for Lakshadweep vibe */
}

#mt-landing-wrapper .mt-text-lead { font-size: 1.1rem; color: #555; margin-bottom: 20px; }
#mt-landing-wrapper .mt-tag { color: #d4af37; text-transform: uppercase; font-weight: 600; letter-spacing: 2px; font-size: 0.8rem; }
#mt-landing-wrapper .mt-divider { width: 60px; height: 3px; background: #d4af37; margin: 15px 0; }

/* 1. HERO BANNER */
#mt-landing-wrapper .mt-hero {
    position: relative;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1590053913043-f119e7104b2b?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    flex-direction: column;
}

#mt-landing-wrapper .mt-hero-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

#mt-landing-wrapper .mt-subtitle {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: clamp(0.7rem, 2vw, 1rem);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

#mt-landing-wrapper .mt-giant-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 13vw, 18rem); 
    color: #fff;
    line-height: 0.8;
    margin: 0;
    margin-bottom: -1.5vw;
    letter-spacing: -2px;
    text-align: center;
    width: 100%;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* 2. Z-PATTERN LAYOUT */
#mt-landing-wrapper .mt-section { padding: 80px 20px; }
#mt-landing-wrapper .mt-container { max-width: 1200px; margin: 0 auto; }
#mt-landing-wrapper .mt-flex-row { display: flex; align-items: center; gap: 60px; }
#mt-landing-wrapper .mt-col-text { flex: 1; }
#mt-landing-wrapper .mt-col-image { flex: 1; }

#mt-landing-wrapper .mt-image-frame-arch img {
    width: 100%; height: 550px; object-fit: cover;
    border-radius: 300px 300px 0 0;
    box-shadow: 20px 20px 0 #e0f2f1;
}

#mt-landing-wrapper .mt-image-frame-square img {
    width: 100%; height: 500px; object-fit: cover;
    border-radius: 4px; box-shadow: -20px 20px 0 #f9f9f9;
}

/* ICON LIST */
#mt-landing-wrapper .mt-icon-list { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
#mt-landing-wrapper .mt-icon-item { display: flex; gap: 15px; align-items: flex-start; }
#mt-landing-wrapper .mt-small-icon { width: 40px; height: 40px; color: #004d4d; flex-shrink: 0; }
#mt-landing-wrapper .mt-small-text { font-size: 0.9rem; margin: 0; color: #666; }

/* 3. HIGHLIGHTS & SVG ICONS */
#mt-landing-wrapper .mt-full-bg-section {
    background: url('https://images.unsplash.com/photo-1505118380757-91f5f5632de0?q=80&w=2000&auto=format&fit=crop') center/cover fixed;
    padding: 100px 20px;
    position: relative;
}
#mt-landing-wrapper .mt-full-bg-overlay { width: 100%; height: 100%; }
#mt-landing-wrapper .mt-text-white { color: #fff !important; text-align: center; }

#mt-landing-wrapper .mt-grid-3-transparent {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

#mt-landing-wrapper .mt-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    color: #fff;
    text-align: center;
    transition: 0.3s;
}
#mt-landing-wrapper .mt-glass-card:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-5px); }

/* SVG CONTAINER IN GLASS CARD */
#mt-landing-wrapper .mt-icon-circle-svg {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    color: #fff; /* White icons */
}

/* 4. SERVICES LIST */
#mt-landing-wrapper .mt-clean-check-list { list-style: none; padding: 0; }
#mt-landing-wrapper .mt-clean-check-list li {
    display: flex; align-items: center; gap: 15px;
    padding: 12px 0; border-bottom: 1px solid #eee;
}
#mt-landing-wrapper .check-icon {
    width: 24px; height: 24px; background: #004d4d; color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* 5. CTA */
#mt-landing-wrapper .mt-cta-bg { background: #f4f8f8; text-align: center; }
#mt-landing-wrapper .mt-cta-box { max-width: 800px; margin: 0 auto; }
#mt-landing-wrapper .mt-btn-gold {
    background: #d4af37; color: #fff; border: none; padding: 15px 40px;
    font-size: 1rem; text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; margin-top: 30px; font-weight: 600;
    transition: 0.3s; font-family: 'Montserrat', sans-serif;
}
#mt-landing-wrapper .mt-btn-gold:hover { background: #b59021; }

/* RESPONSIVE */
@media (max-width: 992px) {
    #mt-landing-wrapper .mt-flex-row { flex-direction: column; }
    #mt-landing-wrapper .mt-reverse { flex-direction: column-reverse; }
    #mt-landing-wrapper .mt-image-frame-arch img, 
    #mt-landing-wrapper .mt-image-frame-square img { width: 100%; max-width: 500px; height: auto; }
    #mt-landing-wrapper .mt-col-text, #mt-landing-wrapper .mt-col-image { width: 100%; text-align: center; }
    #mt-landing-wrapper .mt-icon-item { align-items: center; text-align: left; } 
    #mt-landing-wrapper .mt-icon-list { align-items: center; }
    #mt-landing-wrapper .mt-clean-check-list li { justify-content: flex-start; text-align: left; }
}

@media (max-width: 600px) {
    #mt-landing-wrapper .mt-giant-title { font-size: 13vw; margin-bottom: -1vw; }
    #mt-landing-wrapper .mt-section { padding: 60px 20px; }
}






/* SCOPED CSS - ONLY AFFECTS THIS ID */
#muhaimin-thailand-v3 {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
}

#muhaimin-thailand-v3 * { box-sizing: border-box; margin: 0; padding: 0; }

/* TYPOGRAPHY SCOPED */
#muhaimin-thailand-v3 .mt-serif-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #1a1a1a;
    margin-bottom: 20px;
}
#muhaimin-thailand-v3 .mt-center { text-align: center; }
#muhaimin-thailand-v3 .mt-white-text { color: #fff !important; }

/* HERO BANNER */
#muhaimin-thailand-v3 .mt-hero-main {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1528181304800-2f140819adbc?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
}
#muhaimin-thailand-v3 .mt-hero-overlay {
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}
#muhaimin-thailand-v3 .mt-hero-subtitle {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
#muhaimin-thailand-v3 .mt-hero-giant-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 18vw, 22rem);
    color: #fff;
    line-height: 0.8;
    margin-bottom: -1.5vw;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* CONTAINER & FLEX */
#muhaimin-thailand-v3 .mt-content-section { padding: 100px 20px; }
#muhaimin-thailand-v3 .mt-content-container { max-width: 1100px; margin: 0 auto; }
#muhaimin-thailand-v3 .mt-flex-row { display: flex; align-items: center; gap: 60px; }
#muhaimin-thailand-v3 .mt-text-column, #muhaimin-thailand-v3 .mt-image-column { flex: 1; }

/* IMAGE FRAMES */
#muhaimin-thailand-v3 .mt-arch-frame img {
    width: 100%; height: 500px; object-fit: cover;
    border-radius: 250px 250px 0 0;
    box-shadow: 15px 15px 0 #f0f0f0;
}
#muhaimin-thailand-v3 .mt-square-frame img {
    width: 100%; height: 450px; object-fit: cover;
    box-shadow: -15px 15px 0 #f0f0f0;
}

/* ELEMENTS */
#muhaimin-thailand-v3 .mt-premium-tag { color: #d4af37; font-weight: 600; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; }
#muhaimin-thailand-v3 .mt-gold-divider { width: 50px; height: 3px; background: #d4af37; margin-bottom: 20px; }
#muhaimin-thailand-v3 .mt-feature-item { display: flex; gap: 15px; margin-top: 25px; }
#muhaimin-thailand-v3 .mt-svg-icon { width: 35px; color: #d4af37; flex-shrink: 0; }

/* HIGHLIGHTS SECTION */
#muhaimin-thailand-v3 .mt-parallax-highlights {
    background: url('https://images.unsplash.com/photo-1552465011-b4e21bf6e79a?q=80&w=2000&auto=format&fit=crop') center/cover fixed;
    padding: 100px 20px;
}
#muhaimin-thailand-v3 .mt-parallax-overlay { background: rgba(0,0,0,0.4); margin: -100px -20px; padding: 100px 20px; }

#muhaimin-thailand-v3 .mt-glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}
#muhaimin-thailand-v3 .mt-glass-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 40px;
    text-align: center;
    color: #fff;
}
#muhaimin-thailand-v3 .mt-glass-svg { width: 50px; margin: 0 auto 15px; }

/* LISTS */
#muhaimin-thailand-v3 .mt-check-list { list-style: none; margin-top: 25px; }
#muhaimin-thailand-v3 .mt-check-list li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
#muhaimin-thailand-v3 .mt-check-dot { color: #d4af37; font-weight: bold; }

/* FOOTER CTA */
#muhaimin-thailand-v3 .mt-cta-footer { padding: 80px 20px; text-align: center; background: #fafafa; }
#muhaimin-thailand-v3 .mt-gold-button {
    display: inline-block;
    background: #1a1a1a; color: #fff;
    padding: 18px 45px; margin-top: 30px;
    text-decoration: none; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    transition: 0.3s;
}
#muhaimin-thailand-v3 .mt-gold-button:hover { background: #d4af37; transform: translateY(-3px); }

/* RESPONSIVE */
@media (max-width: 992px) {
    #muhaimin-thailand-v3 .mt-flex-row { flex-direction: column; text-align: center; }
    #muhaimin-thailand-v3 .mt-row-reverse { flex-direction: column-reverse; }
    #muhaimin-thailand-v3 .mt-check-list li { justify-content: center; }
    #muhaimin-thailand-v3 .mt-feature-item { flex-direction: column; align-items: center; }
    #muhaimin-thailand-v3 .mt-arch-frame img, #muhaimin-thailand-v3 .mt-square-frame img { height: auto; max-width: 100%; }
}




/* SCOPED CSS FOR SAUDI VISA PAGE */
#muhaimin-saudi-visa {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.7;  
    background: #fff;
    overflow-x: hidden;
}

#muhaimin-saudi-visa * { box-sizing: border-box; margin: 0; padding: 0; }

/* HERO SECTION */
#muhaimin-saudi-visa .visa-hero {
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1590053913043-f119e7104b2b?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
}
#muhaimin-saudi-visa .visa-hero-overlay {
    height: 100%;
    background: rgba(10, 25, 47, 0.4); /* Navy tinted overlay */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}
#muhaimin-saudi-visa .visa-subtitle {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
#muhaimin-saudi-visa .visa-giant-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 15vw, 18rem);
    color: #fff;
    line-height: 0.8;
    margin-bottom: -1.5vw;
}

/* TYPOGRAPHY & LAYOUT */
#muhaimin-saudi-visa .visa-section { padding: 100px 20px; }
#muhaimin-saudi-visa .visa-container { max-width: 1200px; margin: 0 auto; }
#muhaimin-saudi-visa .visa-flex-row { display: flex; align-items: center; gap: 60px; }
#muhaimin-saudi-visa .visa-col-text, #muhaimin-saudi-visa .visa-col-image { flex: 1; }
#muhaimin-saudi-visa .visa-heading-serif { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3rem); color: #0a192f; margin-bottom: 20px; }
#muhaimin-saudi-visa .visa-tag { color: #b08d57; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; }
#muhaimin-saudi-visa .visa-gold-line { width: 60px; height: 3px; background: #b08d57; margin-bottom: 25px; }

/* IMAGES */
#muhaimin-saudi-visa .visa-image-arch img { width: 100%; height: 550px; object-fit: cover; border-radius: 300px 300px 0 0; border: 1px solid #eee; }
#muhaimin-saudi-visa .visa-image-square img { width: 100%; height: 450px; object-fit: cover; box-shadow: -20px 20px 0 #f4f4f4; }

/* BADGE */
#muhaimin-saudi-visa .visa-expert-badge { display: flex; gap: 15px; margin-top: 30px; background: #f9f9f9; padding: 20px; border-left: 4px solid #b08d57; }
#muhaimin-saudi-visa .visa-badge-icon { width: 40px; color: #b08d57; flex-shrink: 0; }

/* DARK GRID SECTION */
#muhaimin-saudi-visa .visa-dark-bg { background: #0a192f; color: #fff; }
#muhaimin-saudi-visa .visa-text-white { color: #fff; }
#muhaimin-saudi-visa .visa-text-gold { color: #b08d57; margin-top: -10px; margin-bottom: 40px; }
#muhaimin-saudi-visa .visa-center-head { text-align: center; }
#muhaimin-saudi-visa .visa-doc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
#muhaimin-saudi-visa .visa-doc-card { padding: 30px; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }
#muhaimin-saudi-visa .visa-doc-card:hover { border-color: #b08d57; background: rgba(255,255,255,0.05); }
#muhaimin-saudi-visa .visa-doc-num { font-size: 0.8rem; color: #b08d57; font-weight: bold; border-bottom: 1px solid #b08d57; margin-bottom: 15px; display: inline-block; }

/* LISTS */
#muhaimin-saudi-visa .visa-check-list { list-style: none; margin-top: 30px; }
#muhaimin-saudi-visa .visa-check-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; }
#muhaimin-saudi-visa .v-icon { width: 22px; height: 22px; background: #0a192f; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 4px; }

/* CTA */
#muhaimin-saudi-visa .visa-cta-section { padding: 80px 20px; background: #f4f4f4; text-align: center; }
#muhaimin-saudi-visa .visa-btn { display: inline-block; padding: 18px 40px; background: #b08d57; color: #fff; text-decoration: none; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 25px; transition: 0.3s; }
#muhaimin-saudi-visa .visa-btn:hover { background: #0a192f; transform: translateY(-3px); }

/* RESPONSIVE */
@media (max-width: 992px) {
    #muhaimin-saudi-visa .visa-flex-row { flex-direction: column; text-align: center; }
    #muhaimin-saudi-visa .visa-reverse { flex-direction: column-reverse; }
    #muhaimin-saudi-visa .visa-image-arch img { height: auto; max-width: 100%; border-radius: 150px 150px 0 0; }
    #muhaimin-saudi-visa .visa-image-square img { height: auto; max-width: 100%; }
    #muhaimin-saudi-visa .visa-check-list li { text-align: left; }
    #muhaimin-saudi-visa .visa-expert-badge { text-align: left; }
}
@media (max-width: 600px) {
    #muhaimin-saudi-visa .visa-section { padding: 60px 20px; }
    #muhaimin-saudi-visa .visa-giant-title { font-size: 14vw; }
}
