﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --red-color: #641320 !important;
    --maroon: #8B1A1A;
    --maroon-deep: #6B0F0F;
    --mar,oon-dark: #4A0A0A;
    --maroon-light: #A52A2A;
    --navy: #1B2A4A;
    --navy-mid: #243356;
    --gold: #C8960C;
    --gold-light: #E8B84B;
    --gold-pale: #F5E6B8;
    --cream: #F7F3EE;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-mid: #3D2B2B;
    --text-soft: #6B5050;
    --border-light: rgba(139,26,26,0.12);
}

body {
/*    font-family: 'Ranade', sans-serif;*/
    background: var(--cream);
    color: var(--text-dark);
}

/* ─── Section wrapper ─── */
.leadership-section {
    padding: 60px 20px 70px;
    background: var(--cream);
    position: relative;
}

    /* subtle background pattern matching the site's hex/dot decorations */
    .leadership-section::before {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 120px;
        height: 300px;
        background-image: radial-gradient(circle, rgba(139,26,26,0.12) 1.5px, transparent 1.5px);
        background-size: 14px 14px;
        pointer-events: none;
    }

    .leadership-section::after {
        content: '';
        position: absolute;
        left: 0;
        top: 30%;
        width: 80px;
        height: 200px;
        background-image: radial-gradient(circle, rgba(139,26,26,0.1) 1.5px, transparent 1.5px);
        background-size: 14px 14px;
        pointer-events: none;
    }

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* ─── Section heading — matches site style exactly ─── */
.section-heading {
    text-align: center;
    margin-bottom: 36px;
}

    .section-heading .head-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-bottom: 4px;
    }

        .section-heading .head-row .line {
            flex: 0 0 50px;
            height: 1.5px;
            background: var(--maroon);
        }

        .section-heading .head-row h2 {
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--maroon);
        }

    .section-heading .sub {
        font-size: 13px;
        color: var(--text-soft);
        letter-spacing: 0.04em;
    }

/* ─── Browser tab bar ─── */
.tab-bar {
    display: flex;
    align-items: flex-end;
    padding: 0 0 0 2px;
    gap: 3px;
    position: relative;
    z-index: 2;
}

.tab-btn {
    position: relative;
    bottom: -1px;
    padding: 9px 24px 10px;
/*    font-family: 'Ranade-Light', sans-serif;*/
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    cursor: pointer;
    border: 1px solid transparent;
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    background: rgba(139,26,26,0.06);
    color: var(--text-soft);
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    outline: none;
}

    .tab-btn:hover:not(.active) {
        background: rgba(139,26,26,0.11);
        color: var(--maroon);
    }

    .tab-btn .t-icon {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: currentColor;
        opacity: 0.4;
        transition: opacity 0.2s, background 0.2s;
        flex-shrink: 0;
    }

    .tab-btn.active {
        background: var(--white);
        color: var(--maroon-deep);
        font-weight: 600;
        border-color: rgba(139,26,26,0.18);
        border-bottom-color: var(--white);
        z-index: 3;
    }

        .tab-btn.active .t-icon {
            background: var(--gold);
            opacity: 1;
        }

        /* progress sweep inside active tab */
        .tab-btn.active::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--maroon-deep), var(--gold));
            border-radius: 6px 6px 0 0;
            animation: sweep 5s linear forwards;
        }

@keyframes sweep {
    from {
        width: 0%
    }

    to {
        width: 100%
    }
}

/* ─── Main card ─── */
.msg-card {
    background: var(--white);
    border: 1px solid rgba(139,26,26,0.18);
    border-radius: 0 8px 8px 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(107,15,15,0.08), 0 1px 4px rgba(107,15,15,0.05);
    position: relative;
    z-index: 1;
}

    /* maroon top stripe — exactly like the site's section banners */
    .msg-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--maroon);
    }

/* ─── Panels ─── */
.panel {
    display: none;
}

    .panel.active {
        display: flex;
        animation: fadeUp 0.4s ease;
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── Left: portrait column — styled like site's dark navy mission block ─── */
.portrait-col {
    width: 260px;
    flex-shrink: 0;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 44px 24px 36px;
    position: relative;
    overflow: hidden;
}

    /* subtle cross-hatch like the site's background patterns */
    .portrait-col::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
        background-size: 28px 28px;
    }

    .portrait-col::after {
        content: '';
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        border: 24px solid rgba(200,150,12,0.08);
    }

/* yellow square accent — mimics the ■ before "Mission" on the site */
.col-accent {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 10px;
    height: 10px;
    background: var(--gold);
    z-index: 1;
}

.portrait-wrap {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.portrait-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    display: block;
}

/* placeholder avatar */
.portrait-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    background: rgba(200,150,12,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .portrait-placeholder svg {
        width: 80px;
        height: 80px;
        fill: rgba(200,150,12,0.4);
    }

.portrait-ring {
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    border: 1px dashed rgba(200,150,12,0.3);
}

.person-meta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.person-position {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.person-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
}

.gold-rule {
    width: 36px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
}

/* ─── Right: message column ─── */
.message-col {
    flex: 1;
    padding: 40px 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

/* big open-quote exactly like the site's italic quote style */
.open-quote {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 72px;
    line-height: 0.7;
    color: var(--maroon);
    opacity: 0.12;
    display: block;
    margin-bottom: 8px;
    user-select: none;
}

.msg-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .msg-label::after {
        content: '';
        flex: 0 0 30px;
        height: 1.5px;
        background: var(--maroon);
        opacity: 0.4;
    }

.msg-text {
    font-size: 0.97rem;
    font-weight: 400;
    color: var(--text-mid);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 28px;
}

    .msg-text strong {
        font-style: normal;
        font-weight: 600;
        color: var(--maroon-deep);
    }

/* signature row */
.msg-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

.sign-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--maroon-deep);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.sign-title {
    font-size: 0.78rem;
    color: var(--text-soft);
    letter-spacing: 0.04em;
}

.sign-divider {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border-light), transparent);
}

/* ─── Dot navigation ─── */
.dot-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(139,26,26,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

    .dot.active {
        background: var(--maroon);
        width: 26px;
        border-radius: 4px;
    }

/* ─── Responsive ─── */
@media (max-width: 700px) {
    .panel.active {
        flex-direction: column;
    }

    .portrait-col {
        width: 100%;
        flex-direction: row;
        padding: 20px 24px;
        gap: 18px;
        justify-content: flex-start;
        align-items: center;
    }

    .portrait-wrap {
        margin-bottom: 0;
    }

    .portrait-img,
    .portrait-placeholder {
        width: 80px;
        height: 80px;
    }

        .portrait-placeholder svg {
            width: 44px;
            height: 44px;
        }

    .portrait-ring {
        display: none;
    }

    .person-meta {
        text-align: left;
    }

    .gold-rule {
        margin: 0;
    }

    .portrait-col::after {
        display: none;
    }

    .message-col {
        padding: 24px 20px 24px;
    }

    .open-quote {
        font-size: 48px;
    }

    .msg-text {
        font-size: 0.92rem;
    }

    .tab-bar {
        overflow-x: hidden;
        overflow-y:hidden;
        padding-bottom: 0;
    }

    .tab-btn {
        font-size: 12px;
        padding: 8px 16px 9px;
    }

    .msg-card {
        border-radius: 0 6px 6px 6px;
    }
}

/*Common Page header Css*/
.page-header-hero {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #0f1923;
}

.ph-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.45;
}

.ph-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,25,35,0.2) 0%, rgba(15,25,35,0.55) 60%, rgba(116, 15, 19, 0.7) 100%);
}

.ph-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 48px 32px;
}

.ph-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

    .ph-breadcrumbs a, .ph-breadcrumbs span {
        font-size: 13px;
        color: rgba(255,255,255,0.7);
        text-decoration: none;
    }

        .ph-breadcrumbs a:hover {
            color: #fff;
        }

.ph-sep {
    color: rgba(255,255,255,0.35);
    margin: 0 2px;
}

.ph-current {
    color: rgba(255,255,255,0.95);
    font-weight: 500;
}

.ph-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 18px;
    line-height: 1.2;
}

.ph-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ph-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}

.ph-btn-home {
    background: rgba(255,255,255,0.18);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}

    .ph-btn-home:hover {
        background: rgba(255,255,255,0.28);
        color: #fff;
    }

.ph-btn-back {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.15);
}

    .ph-btn-back:hover {
        background: rgba(255,255,255,0.16);
        color: #fff;
    }

.ph-divider {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.2);
}
.section-header {
    height: 150px;
    background: url('/assets/images/bg/new-about-img-1.png');
    
}
    .section-header h1 {
        color: var(--gold-pale);
        font-size: 52px;
    }
/*     Page header */
.page_head {
    /*    background-image: url('../images/svg/page-header.svg');*/
    background: linear-gradient(rgba( 116, 15, 19, 0.5), rgba( 116, 15, 19, 0.5)),url("/assets/images/svg/page-header.svg") repeat;
    background-size: 400px;
    border-bottom: 3px solid #dcdbd7;
    padding: 35px 0 0;
    -moz-box-shadow: 0 10px 10px -5px rgba(0,0,0,0.30) inset;
    -webkit-box-shadow: 0 10px 10px -5px rgba(0,0,0,0.30) inset;
    box-shadow: 0 10px 10px -5px rgba(0,0,0,0.30) inset;
}

.page_title h2 {
    color: #181818;
    background: rgba(255,255,255,0.7);
    float: left;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 -3px 0;
    padding: 7px 15px;
    text-transform: uppercase;
    border-bottom: 4px solid #661013;
}

/* Breadcrumbs
====================================*/
#breadcrumbs {
    background: #661013;
    float: right;
    padding: 3px 10px;
}

    #breadcrumbs ul {
        font-size: 16px;
        padding: 0 5px 0 0;
        margin: 0;
    }

        #breadcrumbs ul li {
            display: inline-block;
            padding: 0 11px 1px 0;
            margin: 0 0 0 5px;
            background-image: url('../images/svg/breadcrumbs.png');
            background: url(/assets/images/svg/breadcrumbs.png) no-repeat 100% 50%;
            color: #fff;
        }

            #breadcrumbs ul li a {
                color: #fff;
            }

            #breadcrumbs ul li:last-child {
                background: none;
                padding: 0;
            }

@media only screen and (max-width: 480px) {

   
    #breadcrumbs {
        display: none;
    }
}


@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loader-wrapper {
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    background-color: var(--red-color);
    left: 0;
    position: fixed;
    top: 0;
    z-index: 9999;
}

.loaded .loader-wrapper {
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -ms-filter: progid: DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
    z-index: -1;
}

.no-loading .loader-wrapper {
    display: none;
}

.loader {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    display: block;
    left: 50%;
    margin: -75px 0 0 -75px;
    position: relative;
    top: 50%;
    z-index: 100;
}

    .loader:before,
    .loader:after {
        border-radius: 50%;
        border: 3px solid transparent;
        content: "";
        position: absolute;
    }

    .loader:before {
        -webkit-animation: spin 3s linear infinite;
        animation: spin 3s linear infinite;
        border-top-color: #fff;
        bottom: 5px;
        left: 5px;
        right: 5px;
        top: 5px;
    }

    .loader:after {
        -webkit-animation: spin 1.5s linear infinite;
        animation: spin 1.5s linear infinite;
        border-top-color: var(--primary-color);
        bottom: 15px;
        left: 15px;
        right: 15px;
        top: 15px;
    }

.loaded .loader {
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -ms-filter: progid: DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}


/* 8. newslater-area */
.newslater-box {
    background: var(--primary-color);
    border-radius: 5px;
    display: inline-block;
    padding: 45px;
}

    .newslater-box h2 {
        font-size: 22px;
        color: #fff;
    }

    .newslater-box p {
        color: #fff;
        opacity: 0.8;
        margin-bottom: 0px;
        margin-top: 15px;
    }

.newslater-area .newslater-box #contact-form4 button {
    position: relative;
    border-radius: 5px;
    background: var(--primary-color);
    width: 100%;
    margin-top: 20px;
}

.newslater-area .newslater-box #contact-form4 input {
    width: 100% !important;
    margin-right: 0;
    background: #FFFFFF33 !important;
    border-radius: 5px !important;
    border: none !important;
}

.newslater-area .newslater-box ::placeholder {
    color: #fff;
}

.newslater-area .newslater-box #contact-form4 {
    float: left;
    width: 100%;
    margin-bottom: 0;
}

.newslater .input-bg {
    background: #3A3D3E;
    border-radius: 30px !important;
    float: left;
    padding-right: 5px;
    position: relative;
    z-index: 3;
    width: 40%;
}

.newslater .input-bg2 {
    background: #3A3D3E;
    border-radius: 30px !important;
    float: left;
    padding-right: 5px;
    position: relative;
    z-index: 2;
    margin-left: -35px;
    width: 40%;
}

.newslater input {
    background: #fff !important;
    border: 1px solid #FFF !important;
    box-shadow: none !important;
    padding: 9px 20px !important;
    color: #000 !important;
    height: calc(2em + .75rem + 20px);
    width: 100% !important;
    border-radius: 0px !important;
    position: relative;
    z-index: 1;
    margin-right: 7px;
    border-radius: 4px !important;
}

.newslater .form-group {
    margin-bottom: 0;
}

.newslater button {
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    color: #000;
}

    .newslater button:hover {
        background: #111;
        color: #fff;
    }

.newslater *::-moz-placeholder {
    color: #939393;
    font-size: 14px;
    opacity: 0.8;
    opacity: 1;
}

.newslater *::placeholder {
    color: #939393;
    opacity: 0.8;
    font-size: 14px;
    opacity: 1;
}

.newslater-area #contact-form4 {
    float: left;
    width: 95%;
    margin-bottom: 30px;
}

    .newslater-area #contact-form4 button {
        border-radius: 4px;
        background: var(--primary-color);
        color: #fff;
        height: 55px;
        padding: 0 30px;
        z-index: 1;
        text-align: center;
        margin-top: 4px;
        margin-right: 4px;
        border: none;
    }

.newslater-title {
    display: flex;
}

    .newslater-title .icon {
        margin-right: 30px;
        line-height: 74px;
    }

    .newslater-title .text h2 {
        font-size: 40px;
    }

.newslater-area2 .container {
    border: 1px solid #eee;
    padding: 20px;
    background: #fff;
    z-index: 2;
    position: relative;
}

.newslater-area2 .newslater-img img {
    width: 100%;
}

.newslater-box-text {
    padding: 60px;
}

    .newslater-box-text input {
        width: 70%;
        border: none;
        font-size: 16px;
        padding: 18px 24px;
        background: #F5F5F5;
    }

    .newslater-box-text .form-group {
        display: flex;
    }

    .newslater-box-text button {
        padding: 18px 24px;
        background: var(--red-color);
        color: #fff;
        border: none;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
    }

        .newslater-box-text button i {
            transform: rotate(45deg);
            margin-left: 5px;
            color: #fff;
        }
@media only screen and (max-width: 320px) {
    .testimonial-d-p p {
        font-size: 12px;
    }
}


/* Gallery Page css Start */
.gallery-right-row .col-lg-4 {
    margin-bottom: 1.5rem;
}

.img-raduis img {
    border-radius: 2rem;
}

.gallert-tab li {
    color: #070707;
    font-size: 2.5rem;
    text-align: left;

    font-weight: 500;
    line-height: 1.1;
    opacity: 0.8;
    letter-spacing: -1.12px;
    padding: 2rem;
    border-bottom: 2px solid #C1C1C1;
    border-radius: 0 !important;
    list-style: none;
    cursor: pointer;
}
    .gallert-tab li a {
        font-size: 2.5rem;
    }

    .gallert-tab li.active, .gallert-tab li:hover {
        color: #070707;
        background: #FFE3AD;
        border-color: #FFE3AD;
    }

.gallery-img img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 2rem;
}

.gallery-content .row .col-lg-4 {
    margin-bottom: 2rem;
}
/* gallery page tab css start */




/* the nitty gritty */
.gallery-tab-section .tabs-container {
    position: relative;
}

    .gallery-tab-section .tabs-container nav {
        /* position: absolute; */
        width: 100%;
    }

        .gallery-tab-section .tabs-container nav ul li.active:after {
            width: 1px;
            height: 1px;
            border: 5px solid transparent;
            border-top: 5px solid #555;
            content: "";
            position: absolute;
            right: 1.5em;
            top: 1.4em;
            z-index: 9999;
        }

        .gallery-tab-section .tabs-container nav ul li:not(.active) {
            position: absolute;
            top: -999em;
        }

        .gallery-tab-section .tabs-container nav ul.expanded li.active:after {
            border-top-color: transparent;
            border-bottom-color: #555;
            top: 1em;
        }

        .gallery-tab-section .tabs-container nav ul.expanded li:not(.active) {
            position: relative;
            top: auto;
        }

.gallery-tab-section .tab-content {
    display: none;
    padding: 15px;
}

    .gallery-tab-section .tab-content.current {
        display: inherit;
    }
/* gallery page tab css end */

@media screen and (max-width: 575px) {
    /* gallery section start */


    .gallery {
        flex-wrap: wrap;
    }

    .gallery__column {
        width: 20%;
    }

    .gallery .gallery__column:last-child {
        display: none;
    }

    /* gallery section ednd */

}
@media all and (min-width: 992px) {
    .gallery-tab-section nav {
        background: transparent;
    }

    .gallert-tab li a {
        font-size: 1.5rem;
    }

    .gallery-tab-section .tabs-container nav ul li:not(.active) {
        position: relative;
        top: auto;
    }


    .gallery-tab-section .tabs-container nav ul li.active:after {
        display: none;
    }
}
@media screen and (max-width: 414px) {
    .gallery-img img {
        height: 180px;
    }
    .gallert-tab li a {
        font-size: 1.5rem;
    }
    .gallert-tab li {
        padding: 1rem;
    }
}
