:root {
    --green: #0b4d3b;
    --green2: #07372c;
    --gold: #d6a63a;
    --cream: #f8f5ec;
    --ink: #17231f;
    --muted: #68736e;
    --white: #fff;
    --line: #e6e5dd;
    --shadow: 0 20px 60px rgba(10, 55, 43, .12);
    --topbar-h: 37px;
    --nav-h: 82px
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.65
}

body.nav-open {
    overflow: hidden
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1160px, 92%);
    margin: auto
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 42;
    height: var(--topbar-h);
    background: var(--green2);
    color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center
}

.topbar a {
    color: #fff
}

header {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--topbar-h);
    z-index: 41;
    color: #fff
}

.nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(7, 55, 44, .94);
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 0 22px;
    border-radius: 0 0 18px 18px;
    position: relative;
    overflow: visible
}

.nav:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: -1;
    pointer-events: none
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700
}

.logo-mark {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(214, 166, 58, .7);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
    font-size: 20px
}

.logo-text strong {
    font-family: "Playfair Display";
    font-size: 22px;
    display: block;
    line-height: 1
}

.logo-text span {
    font-size: 9px;
    letter-spacing: 4px;
    color: #e8c875
}

header nav {
    display: flex;
    align-items: center;
    gap: 22px
}

nav ul {
    display: flex;
    list-style: none;
    gap: 22px;
    font-size: 14px;
    font-weight: 600
}

nav a:hover,
header nav a[aria-current="page"] {
    color: #e8c875
}

.nav-actions {
    display: flex;
    gap: 9px;
    align-items: center
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 19px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: .2s
}

.btn-gold {
    background: var(--gold);
    color: #10251e
}

.btn-gold:hover {
    transform: translateY(-2px)
}

.btn-outline {
    border-color: rgba(255, 255, 255, .35);
    color: #fff
}

.btn-outline:hover {
    background: #fff;
    color: var(--green)
}

.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 31, 24, 0.90),
            rgba(3, 31, 24, 0.65),
            rgba(3, 31, 24, 0.35)
        ),
        url("images/haram.jpg");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-content {
    color: #fff;
    max-width: 760px;
    padding-top: calc(var(--topbar-h) + var(--nav-h) + 18px)
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #f0d68d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 17px
}

.eyebrow:before {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--gold)
}

h1,
h2 {
    font-family: "Playfair Display", serif
}

h1 {
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 22px
}

.hero p {
    font-size: 19px;
    max-width: 680px;
    color: #edf3f0;
    margin-bottom: 30px
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.section {
    padding: 95px 0
}

.cream {
    background: var(--cream)
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px
}

.section-head .eyebrow {
    color: var(--green)
}

.section-head h2 {
    font-size: 43px;
    line-height: 1.15;
    margin-bottom: 14px
}

.section-head p {
    color: var(--muted)
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(20, 45, 38, .05)
}

.card-img {
    height: 220px;
    background-color: #1c4a3d;
    background-size: cover;
    background-position: center
}

.card-body {
    padding: 27px
}

.card h3 {
    font-family: "Playfair Display";
    font-size: 25px;
    margin-bottom: 8px;
    color: var(--green)
}

.card p {
    color: var(--muted);
    font-size: 15px
}

.card ul {
    list-style: none;
    margin: 17px 0 0;
    color: #42504a;
    font-size: 14px
}

.card li {
    margin: 7px 0
}

.card li i {
    color: var(--gold);
    margin-right: 7px
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.image-box {
    height: 550px;
    border-radius: 20px;
    background: #1c4a3d url("images/madinah.jpg") center/cover;
    box-shadow: var(--shadow);
    position: relative
}

.image-note {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px;
    background: rgba(7, 55, 44, .9);
    color: #fff;
    padding: 18px;
    border-radius: 12px
}

.image-note strong {
    display: block;
    color: #f1d47f
}

.copy h2 {
    font-size: 45px;
    line-height: 1.1;
    margin: 12px 0 18px
}

.copy>p {
    color: var(--muted);
    margin-bottom: 18px
}

.checks {
    display: grid;
    gap: 14px;
    margin: 24px 0
}

.checks div {
    display: flex;
    gap: 12px
}

.checks i {
    color: var(--gold);
    margin-top: 5px
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.step {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff
}

.number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    margin-bottom: 16px
}

.step h3 {
    font-size: 17px;
    margin-bottom: 7px
}

.step p {
    font-size: 14px;
    color: var(--muted)
}

.banner {
    background: linear-gradient(100deg, var(--green2), var(--green));
    color: #fff;
    border-radius: 22px;
    padding: 54px 58px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center
}

.banner h2 {
    font-size: 38px;
    margin-bottom: 8px
}

.banner p {
    color: #dfeae6;
    max-width: 650px
}

.form-wrap {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 50px;
    align-items: start
}

.contact-panel {
    background: var(--green2);
    color: #fff;
    border-radius: 20px;
    padding: 35px
}

.contact-panel h3 {
    font-family: "Playfair Display";
    font-size: 30px;
    margin-bottom: 10px
}

.contact-panel>p {
    color: #cbd9d4;
    margin-bottom: 25px
}

.contact-item {
    display: flex;
    gap: 13px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .13)
}

.contact-item i {
    color: var(--gold);
    font-size: 18px;
    width: 22px
}

.contact-item small {
    display: block;
    color: #9fb3ab;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.contact-item a {
    font-weight: 600
}

.form-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 34px;
    box-shadow: var(--shadow)
}

.form-card h3 {
    font-family: "Playfair Display";
    font-size: 30px;
    color: var(--green);
    margin-bottom: 5px
}

.form-card>p {
    color: var(--muted);
    margin-bottom: 23px
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.field.full {
    grid-column: 1/-1
}

.field label {
    font-size: 13px;
    font-weight: 700
}

.field input,
.field select,
.field textarea {
    font: inherit;
    border: 1px solid #d9ddd9;
    border-radius: 9px;
    padding: 13px 14px;
    outline: none;
    background: #fff
}

.field textarea {
    min-height: 120px;
    resize: vertical
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(11, 77, 59, .08)
}

.form-note {
    font-size: 12px;
    color: #77827d;
    margin-top: 12px
}

.form-status {
    display: none;
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px
}

.form-status.ok {
    display: block;
    background: #e8f5ee;
    color: #17613e
}

.form-status.err {
    display: block;
    background: #fdecea;
    color: #9d2d24
}

.faq {
    max-width: 850px;
    margin: auto
}

.faq details {
    border-bottom: 1px solid var(--line);
    padding: 20px 0
}

.faq summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 17px;
    color: var(--green)
}

.faq p {
    padding-top: 12px;
    color: var(--muted);
    font-size: 15px
}

.page-hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(3, 31, 24, .9), rgba(3, 31, 24, .5)), url("images/kaaba.jpg") center/cover
}

.page-hero .hero-content {
    padding-top: calc(var(--topbar-h) + var(--nav-h) + 18px)
}

.page-hero h1 {
    font-size: clamp(44px, 5.5vw, 68px)
}

.content-list {
    display: grid;
    gap: 20px
}

.content-list article {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px
}

.content-list h3 {
    font-family: "Playfair Display";
    color: var(--green);
    font-size: 25px;
    margin-bottom: 8px
}

.content-list p {
    color: var(--muted)
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.package-card {
    background: #f7f7f5;
    border: 1px solid #e4e4df;
    border-radius: 8px;
    overflow: hidden;
    transition: .25s
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(7, 55, 44, .13)
}

.package-img {
    height: 185px;
    background-color: #1c4a3d;
    background-size: cover;
    background-position: center
}

.package-body {
    padding: 16px
}

.package-title {
    font-family: "Playfair Display", serif;
    color: var(--green);
    font-size: 20px;
    margin-bottom: 12px
}

.package-divider {
    border: 0;
    border-top: 1px dashed #d6d8d4;
    margin: 10px 0 12px
}

.package-details {
    list-style: none
}

.package-details li {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    padding: 8px 0;
    border-bottom: 1px solid #dddeda;
    color: #53605b;
    font-size: 12px;
    line-height: 1.45
}

.package-details li:last-child {
    border-bottom: 0
}

.package-details i {
    width: 14px;
    color: var(--green);
    margin-top: 2px;
    text-align: center
}

.package-details li span {
    min-width: 0;
    overflow-wrap: anywhere
}

.package-details .hotel-madinah i {
    color: #d49d19
}

.package-price {
    font-size: 14px !important;
    font-weight: 700;
    color: var(--green) !important
}

.package-price i {
    color: var(--gold) !important;
    margin-right: 5px
}

.package-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px
}

.package-actions .btn {
    padding: 10px 8px;
    font-size: 11px;
    border-radius: 6px
}

.btn-details {
    background: var(--green);
    color: #fff
}

.btn-book {
    background: #f2c21b;
    color: #17231f
}

.package-note {
    text-align: center;
    margin-top: 28px;
    color: var(--muted);
    font-size: 12px
}

footer {
    background: #061f19;
    color: #c6d5d0;
    padding: 60px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 50px
}

.footer-logo {
    margin-bottom: 15px
}

.footer-grid h4 {
    color: #fff;
    margin-bottom: 14px
}

.footer-grid a {
    display: block;
    margin: 8px 0;
    font-size: 14px
}

.footer-grid a:hover {
    color: #e8c875
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    gap: 15px
}

.float-wa {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    z-index: 50
}

.mobile-menu {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 8px;
    position: relative;
    z-index: 40
}

.mobile-menu:hover,
.mobile-menu:focus-visible {
    background: rgba(255, 255, 255, .1);
    outline: 0
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(3, 20, 16, .55);
    z-index: 40
}

body.nav-open .nav-backdrop {
    display: block
}

body.nav-open .float-wa {
    opacity: 0;
    pointer-events: none
}

@media(max-width:850px) {
    .topbar .container span:first-child {
        display: none
    }

    .topbar .container {
        justify-content: center
    }

    header {
        top: var(--topbar-h);
        z-index: 41
    }

    .nav {
        border-radius: 0;
        position: relative;
        z-index: 31;
        width: 100%
    }

    header nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(330px, 86%);
        background: var(--green2);
        z-index: 32;
        padding: 96px 24px 36px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        transform: translateX(110%);
        transition: transform .28s ease;
        box-shadow: -16px 0 40px rgba(0, 0, 0, .28);
        overflow-y: auto
    }

    body.nav-open header nav {
        transform: translateX(0)
    }

    header nav ul {
        display: flex;
        flex-direction: column;
        gap: 0
    }

    header nav li {
        border-bottom: 1px solid rgba(255, 255, 255, .12)
    }

    header nav a {
        display: block;
        padding: 15px 0;
        font-size: 16px
    }

    .nav-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 22px
    }

    .nav-actions .btn {
        width: 100%
    }

    .mobile-menu {
        display: grid
    }
}

@media(max-width:560px) {
    .form-grid {
        grid-template-columns: 1fr
    }

    .field.full {
        grid-column: auto
    }

    .copyright {
        flex-direction: column
    }

    .logo-text strong {
        font-size: 18px
    }

    .package-img {
        height: 200px
    }
}

.include-row,
.values-grid,
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.values-grid,
.service-grid {
    grid-template-columns: repeat(3, 1fr)
}

.include-item,
.value-card,
.service-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 22px;
    box-shadow: 0 8px 30px rgba(20, 45, 38, .05)
}

.include-item {
    text-align: center
}

.include-item i,
.value-card i,
.service-item i {
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 12px
}

.include-item h3,
.value-card h3,
.service-item h3 {
    font-family: "Playfair Display", serif;
    color: var(--green);
    font-size: 20px;
    margin-bottom: 8px
}

.include-item p,
.value-card p,
.service-item p {
    color: var(--muted);
    font-size: 14px
}

.prose p {
    color: var(--muted);
    margin-bottom: 16px
}

.prose p:last-child {
    margin-bottom: 0
}

.tier-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin: 10px 0 22px
}

.tier-head h2 {
    font-size: 32px;
    color: var(--green)
}

.tier-head p {
    color: var(--muted);
    max-width: 520px;
    text-align: right;
    font-size: 15px
}

.packages-grid.hajj-grid {
    grid-template-columns: repeat(2, 1fr)
}

.package-card {
    position: relative
}

.package-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: #10251e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 6px
}

.hotel-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.hotel-col {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px
}

.hotel-col h3 {
    font-family: "Playfair Display", serif;
    color: var(--green);
    font-size: 22px;
    margin-bottom: 6px
}

.hotel-col .price-range {
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 14px
}

.hotel-col ul {
    list-style: none;
    display: grid;
    gap: 8px
}

.hotel-col li {
    font-size: 14px;
    color: #42504a;
    padding-left: 16px;
    position: relative
}

.hotel-col li:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    position: absolute;
    left: 0;
    top: 8px
}

.data-table-wrap {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: #fff
}

.data-table {
    width: 100%;
    border-collapse: collapse
}

.data-table th,
.data-table td {
    padding: 14px 16px;
    text-align: left;
    font-size: 14px
}

.data-table th {
    background: var(--green2);
    color: #fff;
    font-weight: 700
}

.data-table td {
    border-top: 1px solid var(--line);
    color: #42504a
}

.data-table tr:nth-child(even) td {
    background: #fbfaf6
}

.note-card {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px
}

@media(max-width:850px) {
    html {
        scroll-padding-top: calc(var(--topbar-h) + var(--nav-h) + 12px)
    }

    .container {
        width: min(1160px, calc(100% - 32px))
    }

    header .container.nav {
        width: 100%;
        max-width: none;
        border-radius: 0;
        padding: 0 16px
    }

    h1,
    .page-hero h1 {
        font-size: clamp(28px, 8vw, 40px);
        line-height: 1.18;
        letter-spacing: -.4px
    }

    .hero,
    .page-hero {
        min-height: 0;
        align-items: flex-end
    }

    .hero-content,
    .page-hero .hero-content {
        padding-top: calc(var(--topbar-h) + var(--nav-h) + 28px);
        padding-bottom: 36px;
        max-width: none
    }

    .hero p,
    .page-hero p {
        font-size: 16px;
        line-height: 1.55
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch
    }

    .hero-buttons .btn {
        width: 100%
    }

    .section {
        padding: 56px 0
    }

    .section-head {
        margin-bottom: 32px
    }

    .section-head h2,
    .copy h2,
    .banner h2,
    .tier-head h2 {
        font-size: clamp(24px, 6.4vw, 28px);
        line-height: 1.22
    }

    .image-box {
        height: auto;
        min-height: 240px;
        aspect-ratio: 4 / 3;
        display: flex;
        flex-direction: column;
        justify-content: flex-end
    }

    .image-note {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 12px;
        padding: 14px 16px;
        font-size: 14px;
        line-height: 1.45;
        max-width: calc(100% - 24px);
        overflow-wrap: break-word
    }

    .cards,
    .split,
    .form-wrap,
    .footer-grid,
    .include-row,
    .values-grid,
    .hotel-lists,
    .service-grid,
    .packages-grid,
    .packages-grid.hajj-grid,
    .steps {
        grid-template-columns: 1fr
    }

    .split {
        gap: 28px
    }

    .card-body,
    .package-body {
        padding: 18px 16px
    }

    .package-title {
        font-size: 22px;
        line-height: 1.25
    }

    .package-details li {
        font-size: 13px;
        padding: 9px 0
    }

    .package-price {
        font-size: 15px !important;
        padding-top: 12px !important
    }

    .tier-head {
        flex-direction: column;
        align-items: flex-start;
        margin: 28px 0 18px
    }

    .tier-head p {
        text-align: left;
        max-width: none
    }

    .banner {
        flex-direction: column;
        align-items: stretch;
        padding: 28px 22px;
        gap: 18px
    }

    .banner .btn {
        width: 100%
    }

    .package-card:hover,
    .btn-gold:hover {
        transform: none
    }

    .package-actions {
        grid-template-columns: 1fr
    }

    .package-actions .btn {
        font-size: 13px;
        padding: 13px 10px
    }

    .data-table-wrap {
        overflow: visible;
        border: 0;
        background: transparent
    }

    .data-table {
        min-width: 0;
        width: 100%
    }

    .data-table thead {
        display: none
    }

    .data-table,
    .data-table tbody,
    .data-table tr,
    .data-table td {
        display: block
    }

    .data-table tr {
        margin-bottom: 14px;
        border: 1px solid var(--line);
        border-radius: 12px;
        overflow: hidden;
        background: #fff
    }

    .data-table td {
        border-top: 0;
        border-bottom: 1px solid var(--line);
        padding: 12px 16px;
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 16px
    }

    .data-table td:last-child {
        border-bottom: 0
    }

    .data-table tr:nth-child(even) td {
        background: #fff
    }

    .data-table td:before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--green);
        flex: 0 0 44%;
        max-width: 48%
    }

    .hotel-col,
    .value-card,
    .service-item,
    .include-item,
    .note-card {
        padding: 20px 18px
    }

    .faq summary {
        font-size: 16px;
        line-height: 1.4;
        padding-right: 12px
    }

    .float-wa {
        width: 50px;
        height: 50px;
        right: 14px;
        bottom: 14px;
        font-size: 22px
    }

    header nav {
        padding-top: calc(var(--topbar-h) + var(--nav-h) + 12px)
    }
}

@media(max-width:560px) {
    .topbar {
        font-size: 12px
    }

    .hero-content,
    .page-hero .hero-content {
        padding-bottom: 28px
    }

    .section {
        padding: 48px 0
    }

    .section-head h2,
    .copy h2,
    .banner h2,
    .tier-head h2 {
        font-size: 24px
    }

    .card-img {
        height: 190px
    }
}

@media(max-width:420px) {
    .topbar .container span:last-child {
        font-size: 0
    }

    .topbar .container span:last-child a[href^="tel"] {
        font-size: 12px
    }

    .topbar .container span:last-child a[href^="tel"] i {
        font-size: 12px;
        margin-right: 6px
    }

    .topbar .container span:last-child a[href^="mailto"] {
        display: none
    }
}