/* MyGurudwara.com - Modern Navbar */

:root {
    --nav-blue: #1a6fc4;
    --nav-blue-dark: #0d4a8a;
    --nav-blue-light: #2E86C1;
    --nav-orange: #ec8a22;
    --nav-height: 64px;
    --topbar-height: 36px;
}

body {
    padding-top: var(--nav-height);
}

body.has-topbar {
    padding-top: calc(var(--nav-height) + var(--topbar-height));
}

/* Top bar */
.top-bar {
    background: #f0f4f8;
    border-bottom: 1px solid #dde3ea;
    height: var(--topbar-height);
    line-height: var(--topbar-height);
    font-size: 13px;
    color: #555;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10001;
}

.top-bar-social a {
    color: #555;
    margin-left: 14px;
    font-size: 15px;
    transition: color 0.2s;
}

.top-bar-social a:hover {
    color: var(--nav-blue);
    text-decoration: none;
}

/* Main navbar */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: linear-gradient(135deg, var(--nav-blue-dark) 0%, var(--nav-blue-light) 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s, padding 0.3s;
}

body.has-topbar .main-navbar {
    top: var(--topbar-height);
}

.main-navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.navbar-inner {
    display: flex;
    align-items: center;
    height: var(--nav-height);
    gap: 12px;
    position: relative;
}

.nav-logo img {
    height: 48px;
    width: auto;
    transition: transform 0.3s;
}

.nav-logo:hover img {
    transform: scale(1.03);
}

/* Desktop nav links */
.nav-links {
    list-style: none;
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    padding: 8px 12px;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
}

.nav-badge {
    background: #ff4444;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    position: absolute;
    top: 2px;
    right: 0;
    line-height: 1.2;
}

.nav-caret {
    font-size: 10px;
    opacity: 0.7;
}

/* Dropdown */
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    list-style: none;
    padding: 6px 0;
    margin: 4px 0 0;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
    animation: fadeDown 0.2s ease;
}

.nav-dropdown-menu a {
    color: #333;
    text-decoration: none;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: background 0.2s;
}

.nav-dropdown-menu a:hover {
    background: #f0f6ff;
    color: var(--nav-blue);
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Action buttons */
.nav-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.nav-btn {
    color: #fff;
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.nav-btn:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-btn-home {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-btn-admin {
    background: var(--nav-orange);
    border: 1px solid var(--nav-orange);
}

/* Hamburger toggle */
.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile sidebar */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10002;
    backdrop-filter: blur(2px);
}

.nav-overlay.show {
    display: block;
}

.nav-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: linear-gradient(180deg, var(--nav-blue-dark) 0%, #0a3060 100%);
    z-index: 10003;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.3);
}

.nav-sidebar.open {
    left: 0;
}

.nav-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-sidebar-header img {
    height: 40px;
    filter: brightness(1.2);
}

.nav-sidebar-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
}

.nav-sidebar-links {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.nav-sidebar-links > li {
    position: relative;
}

.nav-sidebar-links > li > a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 13px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s, padding-left 0.2s;
}

.nav-sidebar-links > li > a:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 26px;
    color: #fff;
    text-decoration: none;
}

.nav-sidebar-links .nav-badge {
    position: static;
    margin-left: auto;
}

.nav-sidebar-submenu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.2);
}

.nav-sidebar-submenu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 11px 20px 11px 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.nav-sidebar-submenu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.nav-sidebar-footer {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
}

.sidebar-btn {
    text-align: center;
    padding: 11px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sidebar-btn:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
}

.sidebar-btn-primary { background: var(--nav-orange); }
.sidebar-btn-info { background: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.3); }

.fa-chevron-down.rotate {
    transform: rotate(180deg);
    transition: transform 0.2s;
}

.carousel-container {
    margin-top: 0;
}
.carousel-col {
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    width: var(--carousel-w, 100%);
    max-width: 100%;
}

.carousel-caption {
    right: 0;
    left: 0;
    padding-bottom: 0;
    bottom: 0 !important;
    position: static;
    padding-top: 1px;
    text-align: center;
}

.sign-btn {
    margin: 8px 5px;
}

.sub-gurdwara-name h2 {
    font-size: 45px;
    text-align: center;
    padding: 10px 0;
    font-weight: 700;
}

.sub-you-container {
    background-image: url(../images/bg-blue.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    padding: 100px 0;
}

.sub-gur-link-block {
    margin-top: 1px;
}

.big-box-link {
    background: #5DADE2;
    border: 1px solid #ccc;
    text-align: center;
    padding: 31px 20px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.big-box-link:hover {
    background: #ec8a22;
    border: 1px solid #ec8a22;
    color: #fff;
    text-decoration: none;
}

.big-box-link i {
    font-size: 30px;
}

.big-box-link h3 {
    font-size: 22px;
    margin-top: 10px;
}

a:hover .big-box-link {
    background: #ec8a22;
    border-color: #ec8a22;
    color: #fff;
    text-decoration: none;
}

.feature-section {
    padding: 50px 0;
    background-image: url(../images/bg-blue.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    border-bottom: 1px solid #ccc;
    height: auto;
    min-height: 200px;
}

.section-title-col h2 {
    text-align: center;
    font-size: 55px;
    color: #fff;
}

.feature-section-row {
    margin-top: 10px;
}

.col-md-6 .card-block {
    margin-top: 20px;
}

.card-block p {
    color: #000;
}

.pro-even-cont {
    background-image: url(../images/sub-banner.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    padding: 30px 0 80px;
}

.pro-even-col h2 {
    color: #fff;
}

.event-scroll-card {
    padding: 40px;
}

.pro-even-cont .card-block-event {
    background: rgba(0, 0, 0, 0) !important;
}

.member-card-bg {
    background: #eee;
    box-shadow: 0 0 4px 2px rgba(173, 173, 173, 1);
    padding: 20px;
}

.member-photo {
    max-width: 200px;
    max-height: 180px;
    width: auto;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.member-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a2b42;
}

.member-role {
    font-size: 15px;
    margin-bottom: 0;
}

.member-slide {
    padding: 15px 10px 20px;
}

#event-carousel .carousel-item,
#member-carousel .carousel-item {
    min-height: 120px;
}

.embed-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.reach-sub-container {
    padding: 100px 0 70px;
}

.reach-sub-container h2 {
    text-align: center;
    font-size: 55px;
    padding-bottom: 40px;
    width: 100%;
}

.sub-dom-add-col {
    height: 348px;
    background: #33b5e5;
    padding-top: 10px;
}

.sub-dom-add-col h3,
.sub-dom-add-col h4,
.sub-dom-add-col p {
    color: #fff;
}

#map-container {
    height: 350px;
    width: 100%;
}

.all-about-con {
    background-image: url(../images/bg-shadow.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    padding: 50px 0;
    border: 1px solid #eee;
    box-shadow: 0 0 3px 1px rgba(184, 184, 184, 1);
}

.daily-hukamnama h2 {
    text-align: center;
    font-size: 55px;
}

.daily-hukamnama p {
    text-align: justify;
}

.card-block h4 {
    font-size: 18px;
    color: #013372;
}

/* Site Footer */
.site-footer {
    margin-top: 0;
}

.site-footer-main {
    background: #0c1a3a;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(30, 60, 120, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(30, 60, 120, 0.2) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    border-top: 3px solid #e8913a;
    padding: 50px 0 30px;
    color: #d0d8e8;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-title {
    color: #e8913a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #c8d0e0;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links a i {
    color: #e8913a;
    font-size: 10px;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
    text-decoration: none;
}

.footer-contact p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #c8d0e0;
}

.footer-label {
    color: #e8913a;
    font-weight: 600;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 16px;
}

.footer-gallery a {
    display: block;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: border-color 0.2s, transform 0.2s;
}

.footer-gallery a:hover {
    border-color: #e8913a;
    transform: scale(1.03);
}

.footer-gallery img {
    width: 100%;
    height: 58px;
    object-fit: cover;
    display: block;
}

.footer-gallery-btn {
    display: inline-block;
    background: #fff;
    color: #666;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.footer-gallery-btn:hover {
    background: #e8913a;
    color: #fff;
    text-decoration: none;
}

.footer-social-wrap {
    text-align: center;
    padding-top: 20px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-follow {
    color: #e8913a;
    font-weight: 600;
    font-size: 15px;
    margin-right: 12px;
}

.footer-social {
    display: inline-flex;
    gap: 10px;
    vertical-align: middle;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}

.footer-social a:hover {
    transform: scale(1.1);
    opacity: 0.9;
    color: #fff;
    text-decoration: none;
}

.footer-social-fb { background: #3b5998; }
.footer-social-yt { background: #ff0000; }
.footer-social-mail { background: #e8913a; }

.site-footer-bottom {
    background: #081428;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-bottom p {
    font-size: 12px;
    color: #8899b0;
    margin: 0;
}

.site-footer-bottom a {
    color: #aabbcc;
    text-decoration: none;
}

.site-footer-bottom a:hover {
    color: #e8913a;
    text-decoration: none;
}

@media screen and (max-width: 991px) {
    .site-footer-bottom .text-md-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .footer-gallery img {
        height: 70px;
    }
}

.imgGurudwaraCarousal {
    height: var(--carousel-h, 500px) !important;
    width: 100% !important;
    object-fit: cover;
}

.carousel .controls-top {
    text-align: center;
    font-size: 25px;
}

.btn-floating {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #33b5e5;
    color: #fff;
    border-radius: 50%;
    margin: 0 5px;
}

.btn-floating:hover {
    background: #0099cc;
    color: #fff;
    text-decoration: none;
}

.md-form {
    position: relative;
    margin-bottom: 1.5rem;
}

.md-form label {
    color: #757575;
    position: absolute;
    top: 0.1rem;
    left: 2rem;
    font-size: 1rem;
    pointer-events: none;
    transition: 0.2s ease-out;
}

.md-form .prefix {
    position: absolute;
    top: 0.5rem;
    left: 0;
    font-size: 1.2rem;
}

.md-form input:focus + label,
.md-form input:not(:placeholder-shown) + label,
.md-form textarea:focus + label,
.md-form textarea:not(:placeholder-shown) + label {
    top: -1rem;
    font-size: 0.8rem;
    color: #33b5e5;
}

.md-form input,
.md-form textarea,
.md-form select {
    padding-left: 2rem;
}

.modal-ext .modal-header h5 {
    color: #33b5e5;
    font-weight: bold;
}

#modal-login { z-index: 100000; }
#modal-register { z-index: 100001; }

.cont {
    position: relative;
    margin-top: -45px;
    display: inline-block;
}

.cont img {
    height: 20px;
}

/* Contact Form - Modern */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0f5fb 0%, #e8f0fa 100%);
}

.contact-header {
    margin-bottom: 40px;
}

.contact-badge {
    display: inline-block;
    background: rgba(26, 111, 196, 0.1);
    color: var(--nav-blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a2b42;
    margin-bottom: 10px;
}

.contact-header p {
    color: #6b7c93;
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(26, 111, 196, 0.12);
    overflow: hidden;
}

.contact-card-side {
    background: linear-gradient(160deg, var(--nav-blue-dark) 0%, var(--nav-blue-light) 100%);
    color: #fff;
}

.contact-side-inner {
    padding: 40px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-side-inner h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-side-inner h3 i {
    margin-right: 8px;
    opacity: 0.9;
}

.contact-side-inner > p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 28px;
}

.contact-quick-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-quick-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-quick-list li i {
    width: 20px;
    opacity: 0.8;
}

.contact-form {
    padding: 36px 32px;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 6px;
}

.form-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input-wrap > i {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    font-size: 14px;
    z-index: 1;
    pointer-events: none;
}

.form-input-wrap input,
.form-input-wrap select,
.form-input-wrap textarea {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    color: #1a2b42;
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
    appearance: none;
}

.form-input-wrap select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-input-wrap-textarea {
    align-items: flex-start;
}

.form-input-wrap-textarea > i {
    top: 14px;
}

.form-input-wrap textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.5;
}

.form-input-wrap input:focus,
.form-input-wrap select:focus,
.form-input-wrap textarea:focus {
    border-color: var(--nav-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 111, 196, 0.12);
}

.form-input-wrap input::placeholder,
.form-input-wrap textarea::placeholder {
    color: #b0bec5;
}

.contact-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--nav-blue-dark) 0%, var(--nav-blue-light) 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 4px;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 111, 196, 0.35);
}

.contact-submit-btn i {
    transition: transform 0.2s;
}

.contact-submit-btn:hover i {
    transform: translateX(4px);
}

@media screen and (max-width: 991px) {
    body, body.has-topbar {
        padding-top: var(--nav-height);
    }

    .nav-logo {
        margin: 0 auto;
    }

    .nav-actions {
        position: absolute;
        right: 12px;
    }

    .nav-btn {
        padding: 7px 10px;
        font-size: 14px;
    }

    .imgGurudwaraCarousal {
        height: var(--carousel-h-mobile, 280px) !important;
    }

    .sub-gurdwara-name h2 {
        font-size: 22px;
    }

    .section-title-col h2,
    .reach-sub-container h2,
    .daily-hukamnama h2 {
        font-size: 22px;
    }

    .member-photo {
        max-width: 160px;
        max-height: 140px;
    }

    .event-scroll-card {
        padding: 20px;
    }

    .sub-you-container {
        padding: 50px 0;
    }

    .big-box-link {
        padding: 20px 10px;
    }

    .big-box-link h3 {
        font-size: 16px;
    }

    .reach-sub-container {
        padding: 50px 0 40px;
    }

    .reach-sub-container h2 {
        font-size: 24px;
        padding-bottom: 20px;
    }

    .sub-dom-add-col {
        height: auto;
        min-height: 280px;
    }

    .contact-header h2 {
        font-size: 26px;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .contact-side-inner {
        padding: 28px 24px;
    }
}
