/*---------------------------------
   Base Reset
---------------------------------*/

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.container-fluid {
    max-width: 1905px;
    margin: 0 auto;
}

.container {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 32px;
}

html {
    scroll-behavior: smooth;
}


/*---------------------------------
   Root Variables
---------------------------------*/


/* Root Variables for easier theme management */

:root {
    --primary-color: rgb(16 144 203 / var(--tw-text-opacity, 1));
    --secondary-color: rgb(134 103 183 / var(--tw-text-opacity, 1));
    --font-color: rgb(84 84 84 / var(--tw-text-opacity, 1));
    --text-color: rgb(43, 41, 41);
    --border-color: #e0e0e0;
    --white-color: #fff;
    --danger-color: #dc3545;
}


/*---------------------------------
   Typography
---------------------------------*/

body {
    font-family: 'SolaimanLipi', sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: var(--body-clr);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
}


/* Placeholder */

::placeholder {
    color: #57595c;
    font-size: 15px;
    font-weight: 500;
    opacity: 1;
}


/* ...... header section start....... */

.header-section {
    width: 100%;
    height: 80px;
    background: #ffffff82;
    z-index: 999999;
    top: 0;
    left: 0;
    position: fixed;
    right: 0;
}

.header-content {
    padding: 0px 16px 0px;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    z-index: 999999;
    display: flex;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.logo .map {
    width: 35px;
    height: 45px;
    margin-right: 7px;
}

.logo-text {
    position: relative;
}

.logo-text::before {
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: #07d3bb;
    content: '';
    position: absolute;
    left: 54px;
    top: 28px;
}

.logo-text p {
    font-size: 12px;
    color: var(--text-color);
    margin: 0;
}

.logo-name .nagorik {
    width: 95px;
    height: 28px;
}

.logo-name .seba {
    width: 52px;
    height: 20px;
    margin-top: 7px;
}


/* ---- নেভিগেশন বাটন স্টাইল ---- */

.main-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    transition: background-color 0.3s;
}

.nav-btn:hover {
    background-color: #227ddd;
}


/* ---- language Change---- */

.language-switcher {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 31px;
}


/* Hide the default HTML checkbox */

.language-switcher input {
    opacity: 0;
    width: 0;
    height: 0;
}


/* The slider - our blue background */

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2196F3;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 38px;
    display: flex;
    align-items: center;
    user-select: none;
}

.thumb {
    position: absolute;
    height: 23px;
    width: 23px;
    left: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.lang-text {
    position: absolute;
    color: white;
    font-weight: bold;
    font-size: 12px;
    transition: opacity 0.4s ease;
}

.lang-en {
    right: 18px;
    opacity: 1;
}

.lang-bn {
    left: 10px;
    opacity: 0;
}

input:checked+.slider .thumb {
    transform: translateX(52px);
    /* Moves the thumb */
}


/* Hide English text */

input:checked+.slider .lang-en {
    opacity: 0;
}


/* Show Bengali text */

input:checked+.slider .lang-bn {
    opacity: 1;
}


/* Example content to demonstrate language change */

#greeting {
    margin-top: 20px;
    font-size: 24px;
    color: #333;
}


/* ---- হ্যামবার্গার মেন্যু (মোবাইলের জন্য) ---- */

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #333;
}


/* ...... header section end....... */


/* ...... banner section start....... */


/* Hero Section with Background Image */

.banner-section {
    min-height: 100vh;
    background-image: url('https://i.ibb.co.com/cSMKfLqv/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: -10vh;
}


/* --- Top Content --- */

.top-content {
    align-items: center;
    position: absolute;
    inset: 0;
    padding: 0px 23px 0px 162px;
    margin-bottom: 140px;
}


/* Logo Area */

.banner-logo-wrapper {
    min-width: 100px;
    margin-right: 32px;
}

.banner-logo-wrapper img {
    display: block;
}

.banner-logo-wrapper .logo-text {
    color: #212529;
    font-size: 1.25rem;
    font-weight: 600;
}


/* Title Text Area */

.banner-content h1 {
    font-size: 50px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 0;
}

.banner-content p {
    color: var(--text-color);
    font-size: 20px;
    margin-top: 10px;
}

.banner-content.tagline {
    font-size: 20px;
    color: var(--text-color);
    font-weight: 500;
    margin-top: 11px;
}

.banner-logo-wrapper .nagorik {
    width: 103px;
    height: 60px;
    margin-top: -16px;
    margin-left: -12px;
}


/* --- Bottom Content --- */

.bottom-content {
    padding-bottom: 2rem;
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    padding: 0px 16px;
    background-color: #0000004c;
}

.banner-text {
    max-width: 1024px;
    margin: 0px auto;
}

.bottom-content p {
    font-size: 18px;
    font-weight: 500;
    padding: 24px 16px;
    color: white;
    font-weight: 500;
    line-height: 28px;
}


/* ...... banner section start....... */


/* ...... our section start....... */

.our-content {
    height: 100%;
    background-color: #8667b712;
}

.our-seba-content {
    min-height: 400px;
}


/* section-title */

.section-title {
    max-width: 516px;
}

.our-section-title {
    padding: 48px 24px;
}

.section-heading .bold {
    width: 26px;
    height: 26px;
    border-radius: 100%;
    margin-top: 8px;
}

.our-section-title .section-heading .bold {
    background-color: rgb(255 229 0 / var(--tw-bg-opacity, 1));
    margin-left: 40px;
}

.section-heading {
    gap: 12px;
    margin-bottom: 12px;
}

.section-heading .heading span {
    font-size: clamp(1.688rem, 1.539rem + 0.74vw, 2.25rem);
    font-weight: 600;
    line-height: 1.2;
}

.section-text p {
    font-size: 16px;
    line-height: 24px;
    color: var(--font-color);
    font-weight: 400;
    margin-bottom: 0px;
}

.our-section-title .section-title .section-text p {
    padding-left: 80px;
    padding-right: 10px;
}

.our-section-title .section-heading .heading .left {
    color: var(--secondary-color);
}

.our-section-title .section-heading .heading .right {
    color: var(--primary-color);
}

.our-seba-image img {
    width: 100%;
    min-height: 400px;
}


/* ----------------- our-section-end--------------------- */


/* ----------------- why-important-section start--------------------- */

.why-important-section {
    max-width: 1536px;
    margin: 0px auto;
    padding: 96px 24px;
}

.why-important-image {
    position: relative;
    max-width: 500px;
    max-height: 500px;
    margin: 0px auto;
}

.why-important-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.why-important-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #e1f3fe;
    top: 7%;
    left: -7%;
    border-radius: 100%;
    z-index: 1;
    right: 20px;
}

.why-important-section-title .bold {
    background-color: var(--secondary-color);
}

.why-important-section-title .left {
    color: rgb(255 216 0 / var(--tw-text-opacity, 1));
}

.why-important-section .right {
    color: var(--secondary-color);
}

.why-important-section .section-text {
    margin-left: 40px;
}


/* ----------------- why-important-section end--------------------- */


/* ----------------- nagorik-seba-section start--------------------- */

.nagorik-seba-section {
    background-image: url('https://i.ibb.co.com/ZzSxRByY/Whats-App-Image-2025-08-23-at-11-44-14-40758a01.jpg');
    min-height: 800px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.nagorik-seba-sm-section {
    display: none;
}

.nagorik-section-title .bold {
    background-color: rgb(255 229 0 / var(--tw-bg-opacity, 1));
}

.nagorik-section-title .heading .right {
    color: var(--secondary-color);
    font-size: 48px;
    line-height: 1.1;
    margin-top: 20px;
}

.nagorik-section-title .section-heading h4 {
    font-size: 24px;
    font: 400;
    line-height: 32px;
    color: var(--primary-color);
    margin-bottom: -12px;
    margin-left: 16px;
}

.nagorik-section-title .heading {
    margin: 16px 0px 24px 43px;
}

.nagorik-section-title .section-text {
    background-color: #fff;
    max-width: 384px;
    border-radius: 12px;
    margin-left: 43px;
    padding: 24px;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    margin-bottom: 42px;
}

.nagorik-section-btn a {
    padding: 14px 24px;
    font-size: 16px;
    color: white;
    background-color: var(--primary-color);
    border-radius: 8px;
    font-weight: 500;
    margin-left: 43px;
}


/* ----------------- nagorik-seba-section end--------------------- */


/* ----------------- promo-section start--------------------- */

.promo-section {
    padding: 48px 0px;
    background-color: #ffd8001a;
}

h1.heading-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
}

p.sub-text.mx-auto {
    text-align: start;
    max-width: 700px;
    color: rgb(37 37 37 / var(--tw-text-opacity, 1));
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}


/* ----------------- promo-section end--------------------- */


/* ----------------- footer-section start--------------------- */

.footer-section {
    padding: 48px 24px;
}

.footer-logo p {
    font-size: 16px;
    margin-top: 24px;
    color: var(--text-color);
    line-height: 24px;
}

.site-footer {
    background-color: #ffffff;
    color: #555;
    font-size: 15px;
}


/* --- Footer Logo and Tagline --- */

.tagline {
    color: #6c757d;
    /* A muted gray color */
    font-size: 14px;
}


/* --- Footer Headings --- */

.footer-heading {
    font-size: 16px;
    font-weight: 500;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1));
    margin-bottom: 16px;
    line-height: 24px;
}


/* --- Footer Links --- */

.footer-links li {
    margin-bottom: 12px;
}

.footer-top-content {
    margin-bottom: 48px;
}

.footer-links a {
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
}

.footer-links a:hover {
    color: rgb(134 103 183 / var(--tw-text-opacity, 1))
}


/* --- Contact Info --- */

.footer-contact li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
}


/* --- Social Icons Styling --- */

.social-icons {
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    text-decoration: none;
    margin: 0 6px;
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 5px 12px 3px rgb(0, 0, 0, 0.1);
}

.social-icons a:hover {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    box-shadow: 2px 5px 12px 3px rgb(0, 0, 0, 0.2);
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.copyright-text {
    color: rgb(104 104 104 / var(--tw-text-opacity, 1));
    font-size: 14px;
    margin-bottom: 0;
    line-height: 20px;
}


/* ----------------- footer-section end--------------------- */


/* ----------------- popup-section start--------------------- */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* কালো ব্যাকগ্রাউন্ড */
    z-index: 1000;
    /* সবকিছুর উপরে দেখানোর জন্য */
    display: flex;
    justify-content: center;
    align-items: center;
}


/* পপ-আপ কন্টেন্ট বক্স */

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-popup {
    position: absolute;
    top: -9px;
    right: 13px;
    font-size: 34px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    border: none;
    background: none;
}

.close-popup:hover {
    color: #000;
}

.popup-content img {
    margin-top: 10px;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
    height: auto;
}

.popup-content-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #4db6ac;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: 0.6s;
    border: none;
}

.popup-content-btn:hover {
    background-color: #3a9e96;
}


/* ----------------- popup-section end--------------------- */


/* ----------------- addmembar-section-start--------------------- */


/* addmember css */

.addmember-section {
    background-image: url('https://i.ibb.co.com/cSMKfLqv/banner.jpg');
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.form-container {
    width: 350px;
    margin: 0px auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    left: 0;
    bottom: 0px;
    top: 0;
    right: 0;
}

.form-group {
    margin-bottom: 10px;
}

.form-group .form-label {
    display: block;
    margin: 4px 0 2px 3px;
    font-size: 14px;
    font-weight: 500;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
}

.form-header {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.form-header .back {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    font-weight: 700;
}

.form-content h1 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin: 0px;
}

hr {
    margin: 0px;
    color: inherit;
    border: 0;
    border-top: 1px solid #9d9090;
    padding-bottom: 18px;
}

.form-control,
.form-select {
    border: none;
    background-color: #f1f3f5;
    border-radius: 8px;
    padding: 10px 15px;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    box-shadow: none;
    border: 2px solid black;
}

.address-column .address-title {
    font-size: 15px;
    font-weight: 700;
    color: rgb(5, 5, 5);
    border-bottom: 2px solid #ddd4d4;
    text-align: center;
    padding-bottom: 4px;
    margin-top: 6px;
    margin-bottom: 0;
}

.header a {
    margin-bottom: 0;
}

.address-column.present .address-title {
    margin-bottom: 40px;
}

label.form-check-label.same-address-label {
    font-size: 14px;
    font-weight: 400;
    color: #22C55E;
    margin-left: -6px;
}

.form-check-input {
    height: 13px;
    width: 13px;
    margin-top: 7px;
    border: 1px solid gray;
}

label.form-label span {
    font-weight: 700;
}

.address-column.permanent-address {
    padding-left: 8px;
    border-left: 2px solid rgb(207, 202, 202);
}

.address-column.present {
    padding-right: 8px;
}

.form-control,
.form-select {
    width: 100%;
    padding: 7px;
    border: 2px solid #ccc;
    border-radius: 6px;
    font-size: 13px;
    box-sizing: border-box;
    background-color: transparent;
}

.section-divider {
    margin-top: -12px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #12b09a;
    margin-bottom: 15px;
}

#captchaText {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2f2f2;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 5px;
    text-decoration: line-through;
    font-family: 'Courier New', Courier, monospace;
    user-select: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    height: 50px;
    flex-grow: 1;
}

.captcha-actions {
    margin-left: 10px;
    margin-top: -5px;
}

.captcha-wrapper {
    margin-top: 10px;
}

.captcha-wrapper .form-label {
    display: block;
    margin: 4px 0 0px 3px;
    font-size: 14px;
    font-weight: 500;
}

button#refreshCaptcha i {
    font-size: 18px;
}

.submit-btn {
    width: 100%;
    padding: 8px;
    background-color: #00aaff;
    color: white;
    border: none;
    border-radius: 999px;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    box-shadow: #008fcc;
}


/* ----------------- addmembar-section-end--------------------- */


/* --- Hero Section Styling --- */

*/ .nagorik-content {}


/* --- Responsive Design using Media Queries --- */


/* 6. Extra Extra Large Devices (Very Large Desktops) */

@media (min-width: 1400px) {}


/* 5. Extra Large Devices (Large Desktops) */

@media (min-width: 1200px) and (max-width: 1399.98px) {}


/* 4. Large Devices (Laptops & Desktops) */

@media (min-width: 992px) and (max-width: 1199.98px) {}


/* 3. Medium Devices (Landscape Tablets & Small Laptops) */

@media (min-width: 680px) and (max-width: 991.98px) {
    .banner-section {
        min-height: 100vh;
        background-image: url('https://i.ibb.co.com/tPknYjYB/Screenshot-2025-08-26-043825.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        margin-top: -10vh;
    }
    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }
    .top-content {
        padding: 0px 23px 0px 127px;
    }
    .our-section-title {
        padding: 0px;
    }
    .our-seba-image img {
        width: 100%;
        min-height: 321px;
    }
    .our-section-title {
        padding: 32px 16px;
    }
    .our-seba-content {
        min-height: 321px;
    }
    .nagorik-section-title .heading .right {
        font-size: 43px;
    }
    .nagorik-content.container {
        padding-top: 14px;
        padding-bottom: 36px;
    }
    .nagorik-seba-section {
        min-height: 600px;
    }
    .nagorik-seba-sm-section {
        display: none;
    }
}

@media (max-width: 680px) {
    .banner-section {
        min-height: 78vh;
        background-image: url('https://i.ibb.co.com/VpqkqXtM/Screenshot-2025-08-26-043429.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        margin-top: -3vh;
    }
    .header-content {
        height: 100%;
        text-align: center;
    }
    .header-section {
        height: auto;
    }
    .logo {
        justify-content: center;
        margin-bottom: 7px;
    }
    .logo-name .nagorik {
        width: 80px;
        height: 24px;
        margin-left: -40px;
    }
    .logo .map {
        width: 30px;
        height: 40px;
        margin-bottom: 7px;
    }
    .logo-name .seba {
        width: 45px;
        height: 17px;
    }
    .main-nav {
        gap: 7px;
    }
    .logo-text::before {
        left: 45px;
        top: 27px;
    }
    .header-content {
        flex-direction: column;
        padding: 8px 0px;
    }
    .top-content {
        padding: 0px;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        margin: 0px;
    }
    .banner-logo-wrapper img.map {
        display: block;
        width: 35px;
        margin-bottom: 15px;
    }
    .bottom-content {
        padding: 0px 0px;
    }
    .banner-logo-wrapper .nagorik {
        margin-top: -12px;
        margin-left: 0px;
    }
    .banner-content p {
        font-size: 18px;
        line-height: 26px;
    }
    .banner-logo-wrapper img.nagorik {
        display: block;
        width: 44px;
        height: 27px;
        margin-bottom: 15px;
    }
    .banner-logo-wrapper {
        min-width: 0;
        margin: 0px 0px 24px 0px;
    }
    .banner-content h1 {
        font-size: 36px;
    }
    .title-wrapper.banner-content {
        text-align: center;
    }
    .bottom-content p {
        font-size: 15px;
        line-height: 24px;
    }
    /* our-seba-section */
    .our-section-title .section-title .section-text p {
        padding-left: 59px;
    }
    .our-section-title .section-heading .bold {
        background-color: rgb(255 229 0 / var(--tw-bg-opacity, 1));
        margin-left: 20px;
    }
    .why-important-section {
        padding: 32px 16px;
    }
    .our-section-title {
        padding: 32px 16px;
    }
    .section-text p {
        font-size: 14px;
    }
    .our-seba-image img {
        min-height: 323px;
    }
    /* why-section */
    .why-important-image img {
        padding: 34px;
    }
    .why-important-image::before {
        width: 80%;
        height: 80%;
        top: 18%;
        left: 1%;
    }
    .nagorik-seba-section {
        display: none;
    }
    .nagorik-seba-sm-section {
        background-image: url('https://i.ibb.co.com/XktvJZLZ/rectangle-869-s-1.png');
        min-height: 800px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        position: relative;
        width: 100%;
        display: flex;
        align-items: center
    }
    .nagorik-section-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: 800px;
        padding: 32px 16px;
    }
    .nagorik-section-title .section-heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .nagorik-section-title .section-text {
        margin-left: 0px;
    }
    .nagorik-section-btn a {
        margin-left: 0px;
    }
    .nagorik-section-title .heading {
        margin: 18px 0px 0px 0px;
    }
    .nagorik-section-title .section-heading h4 {
        font-size: 20px;
    }
    .nagorik-section-title .heading .right {
        font-size: 24px;
        line-height: 20px;
    }
    .section-heading .bold {
        width: 20px;
        height: 20px;
    }
    .container {
        padding: 0 10px;
    }
    /* promo */
    .promo-section {
        padding: 32px 15px;
    }
    h1.heading-title {
        font-size: 28px;
    }
    /* footer start */
    .row.footer-main-content {
        text-align: center;
    }
    .footer-logo .logo .logo-text {
        margin-left: 39px;
        margin-bottom: 14px;
    }
    .footer-logo .logo .logo-text::before {
        left: 6px;
    }
    .footer-logo p {
        font-size: 14px;
        line-height: 24px;
    }
    .footer-links a {
        font-size: 14px;
        line-height: 20px;
    }
    .footer-links li {
        margin-bottom: -2px;
    }
    .footer-logo p {
        margin-top: -6px;
    }
    .footer-contact li {
        font-size: 14px;
        line-height: 20px;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-heading {
        margin-bottom: 6px;
    }
}

@media (max-width: 370px) {
    .form-group .form-label {
        font-size: 10px;
    }
    .address-column .address-title {
        font-size: 10px;
    }
    .form-group {
        margin-bottom: 9px;
    }
    .captcha-wrapper .form-label {
        font-size: 10px;
    }
    .form-control,
    .form-select {
        padding: 7px;
        font-size: 10px;
    }
    label.form-check-label.same-address-label {
        font-size: 12px;
    }
}