﻿/*==============================================================================
    GIS CURTAIN DÉCOR
    File        : common.css
    Version     : 2.0.0
    Description : Global Production Stylesheet
    Author      : GIS Curtain Décor

    ----------------------------------------------------------------------------
    TABLE OF CONTENTS
    ----------------------------------------------------------------------------
    01. CSS Reset
    02. Root Variables
    03. Base Elements
    04. Typography
    05. Images & Media
    06. Lists
    07. Links
    08. Layout
    09. Utilities
    10. Buttons
    11. Forms
    12. Header
    13. Navigation
    14. Mobile Navigation
    15. Section Components
    16. Footer
    17. Scroll Reveal
    18. Back To Top
    19. Animations
    20. Accessibility
    21. Responsive
==============================================================================*/


/*==============================================================================
    01. CSS RESET
==============================================================================*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/*==============================================================================
    02. ROOT VARIABLES
==============================================================================*/

:root {
    /*--------------------------------------------------------------------------
        Brand Colours
    --------------------------------------------------------------------------*/

    --primary: #C8A96A;
    --primary-dark: #B89255;
    --secondary: #222222;
    --white: #FFFFFF;
    --light: #F8F5F0;
    --text: #666666;
    --border: #E6E6E6;
    --success: #2E8B57;
    --danger: #D9534F;
    /*--------------------------------------------------------------------------
        Typography
    --------------------------------------------------------------------------*/

    --font-heading: "Cormorant Garamond",serif;
    --font-body: "Poppins",sans-serif;
    --fs-xs: .8125rem;
    --fs-sm: .9375rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.8rem;
    --fs-4xl: 4rem;
    /*--------------------------------------------------------------------------
        Radius
    --------------------------------------------------------------------------*/

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-round: 999px;
    /*--------------------------------------------------------------------------
        Shadows
    --------------------------------------------------------------------------*/

    --shadow-sm: 0 4px 12px rgba(0,0,0,.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,.08);
    --shadow-lg: 0 18px 50px rgba(0,0,0,.12);
    /*--------------------------------------------------------------------------
        Transition
    --------------------------------------------------------------------------*/

    --transition-fast: .25s ease;
    --transition: .35s ease;
    --transition-slow: .55s ease;
    /*--------------------------------------------------------------------------
        Layout
    --------------------------------------------------------------------------*/

    --header-height: 90px;
    --section-space: 120px;
    --container-width: 1200px;
}


/*==============================================================================
    03. BASE ELEMENTS
==============================================================================*/

body {
    font-family: var(--font-body);
    background: var(--light);
    color: var(--secondary);
    line-height: 1.7;
}

main {
    display: block;
}

section {
    position: relative;
}

::selection {
    background: var(--primary);
    color: var(--white);
}


/*==============================================================================
    04. TYPOGRAPHY
==============================================================================*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.8rem,6vw,4.5rem);
}

h2 {
    font-size: clamp(2.2rem,5vw,3.5rem);
}

h3 {
    font-size: clamp(1.4rem,3vw,2rem);
}

p {
    color: var(--text);
    font-size: var(--fs-base);
}

small {
    font-size: var(--fs-sm);
}


/*==============================================================================
    05. IMAGES
==============================================================================*/

img {
    height: auto;
    object-fit: cover;
}


/*==============================================================================
    06. LISTS
==============================================================================*/

ul,
ol {
    list-style: none;
}


/*==============================================================================
    07. LINKS
==============================================================================*/

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

    a:hover {
        text-decoration: none;
    }


/*==============================================================================
    08. LAYOUT
==============================================================================*/

.container {
    width: min(90%,var(--container-width));
    margin-inline: auto;
}

.section {
    padding: var(--section-space) 0px;
}


/*==============================================================================
    09. UTILITIES
==============================================================================*/

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.hidden {
    display: none !important;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.w-100 {
    width: 100%;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}


/*==============================================================================
    10. BUTTONS
==============================================================================*/

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    padding: 16px 34px;
    border-radius: var(--radius-round);
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

    .btn-primary:hover {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
        transform: translateY(-3px);
    }

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

    .btn-secondary:hover {
        background: var(--primary);
        color: var(--white);
    }


/*==============================================================================
    11. FORMS
==============================================================================*/

input,
textarea,
select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--secondary);
    transition: var(--transition-fast);
}

    input:focus,
    textarea:focus,
    select:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(200,169,106,.15);
    }

textarea {
    resize: vertical;
    min-height: 140px;
}


/*==============================================================================
    12. HEADER
==============================================================================*/

.site-header,
header {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    transition: var(--transition);
}

    header.sticky {
        background: rgba(255,255,255,.98);
        box-shadow: var(--shadow-md);
    }


/*==============================================================================
    13. NAVIGATION
==============================================================================*/

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}

    .logo img {
        width: 65px;
    }

    .logo span {
        font-family: var(--font-heading);
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--secondary);
    }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.8rem;
}

    .nav-menu li {
        position: relative;
    }

    .nav-menu a {
        position: relative;
        font-weight: 500;
        color: var(--secondary);
    }

        .nav-menu a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--primary);
        }

            .nav-menu a:hover::after,
            .nav-menu a.active::after {
                width: 100%;
            }

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary);
}
/*==============================================================================
    14. MOBILE NAVIGATION
==============================================================================*/

@media (max-width:992px) {

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        transition: var(--transition);
    }

        .menu-toggle:hover {
            background: rgba(200,169,106,.12);
            color: var(--primary);
        }

    .navbar .btn-primary {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 300px;
        height: calc(100vh - var(--header-height));
        padding: 2rem;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        background: var(--white);
        box-shadow: -12px 0 35px rgba(0,0,0,.08);
        overflow-y: auto;
        transition: var(--transition);
        z-index: 999;
    }

        .nav-menu.active {
            right: 0;
        }

        .nav-menu li {
            width: 100%;
        }

        .nav-menu a {
            display: block;
            width: 100%;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border);
        }
}


/*==============================================================================
    15. COMMON SECTION COMPONENTS
==============================================================================*/

.section-title {
    margin-bottom: 4rem;
    text-align: center;
}

.section-tag {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
}

.section-title h2 {
    margin-bottom: 1.25rem;
}

.section-title p {
    max-width: 720px;
    margin-inline: auto;
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}


/*==============================================================================
    COMMON FEATURE ITEMS
==============================================================================*/

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .feature-item i {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--primary);
        background: rgba(200,169,106,.12);
        flex-shrink: 0;
    }

    .feature-item span {
        font-weight: 500;
        color: var(--secondary);
    }


/*==============================================================================
    COMMON ICON BOX
==============================================================================*/

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(200,169,106,.12);
    transition: var(--transition);
}

    .icon-box i {
        font-size: 2rem;
        color: var(--primary);
    }

.card:hover .icon-box {
    background: var(--primary);
}

    .card:hover .icon-box i {
        color: var(--white);
    }


/*==============================================================================
    COMMON GRID HELPERS
==============================================================================*/

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 2rem;
}


/*==============================================================================
    COMMON PAGE HERO
==============================================================================*/

.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    overflow: hidden;
}

.page-hero-image {
    position: absolute;
    inset: 0;
}

    .page-hero-image img {
        width: 100%;
        height: 100%;
    }

.page-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    max-width: 850px;
    margin-inline: auto;
    text-align: center;
}

    .page-hero-content h1 {
        color: var(--white);
        margin: 1.25rem 0;
    }

    .page-hero-content p {
        color: rgba(255,255,255,.9);
        max-width: 700px;
        margin-inline: auto;
    }

    .page-hero-content .section-tag {
        color: var(--primary);
    }


/*==============================================================================
    BREADCRUMB
==============================================================================*/

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

    .breadcrumb a {
        color: var(--white);
    }

        .breadcrumb a:hover {
            color: var(--primary);
        }

    .breadcrumb span {
        color: rgba(255,255,255,.8);
    }


/*==============================================================================
    CONTACT SHARED
==============================================================================*/

.contact {
    padding: 90px 0 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2rem;
}

.contact-info-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

    .contact-info li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

        .contact-info li i {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: var(--white);
            border-radius: 14px;
            flex-shrink: 0;
        }

.map-box {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

    .map-box iframe {
        width: 100%;
        min-height: 450px;
        border: 0;
    }


/*==============================================================================
    16. FOOTER
==============================================================================*/

.footer {
    background: var(--secondary);
    color: rgba(255,255,255,.75);
    padding-top: 90px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-about img {
    width: 90px;
    margin-bottom: 1.5rem;
}

.footer h3 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    transition: var(--transition);
}

    .footer-links a:hover {
        color: var(--primary);
        padding-left: .4rem;
    }

.footer-contact li {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary);
    margin-top: .2rem;
}

.footer-contact span,
.footer-contact a {
    color: rgba(255,255,255,.75);
}

.footer-social {
    display: flex;
    gap: .8rem;
    margin-top: 2rem;
}

    .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255,255,255,.1);
        color: var(--white);
        transition: var(--transition);
    }

        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.5rem 0;
    text-align: center;
}

    .footer-bottom p {
        color: rgba(255,255,255,.65);
        font-size: .9375rem;
    }
/*==============================================================================
    17. SCROLL REVEAL
==============================================================================*/

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity .8s ease, transform .8s ease;
    will-change: opacity,transform;
}

    .reveal.show {
        opacity: 1;
        transform: translateY(0);
    }


/*------------------------------------------------------------------------------
    Shared Reveal Targets
------------------------------------------------------------------------------*/

.section-title,
.product-grid,
.products-grid,
.about-grid,
.story-grid,
.mission-grid,
.values-grid,
.process-grid,
.why-grid,
.contact-grid,
.footer {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity .8s ease, transform .8s ease;
}

    .section-title.show,
    .product-grid.show,
    .products-grid.show,
    .about-grid.show,
    .story-grid.show,
    .mission-grid.show,
    .values-grid.show,
    .process-grid.show,
    .why-grid.show,
    .contact-grid.show,
    .footer.show {
        opacity: 1;
        transform: translateY(0);
    }


/*==============================================================================
    18. BACK TO TOP BUTTON
==============================================================================*/

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: var(--secondary);
        transform: translateY(-5px);
    }

    .back-to-top:focus-visible {
        outline: 3px solid rgba(200,169,106,.35);
        outline-offset: 4px;
    }


/*==============================================================================
    19. GLOBAL ANIMATIONS
==============================================================================*/

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {

    from {
        opacity: 0;
        transform: scale(.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(200,169,106,.55);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(200,169,106,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(200,169,106,0);
    }
}

@keyframes bounce {

    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(8px);
    }

    60% {
        transform: translateY(4px);
    }
}


/*------------------------------------------------------------------------------
    Animation Helpers
------------------------------------------------------------------------------*/

.fade-up {
    animation: fadeUp .8s ease both;
}

.fade-in {
    animation: fadeIn .8s ease both;
}

.zoom-in {
    animation: zoomIn .7s ease both;
}

.float {
    animation: float 4s ease-in-out infinite;
}

.pulse {
    animation: pulse 2.2s infinite;
}


/*==============================================================================
    20. ACCESSIBILITY
==============================================================================*/

:focus-visible {
    outline: 3px solid rgba(200,169,106,.45);
    outline-offset: 3px;
}

[hidden] {
    display: none !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}

html:focus-within {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion:reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}


/*------------------------------------------------------------------------------
    Better Tap Targets
------------------------------------------------------------------------------*/

button,
a,
input,
textarea,
select {
    touch-action: manipulation;
}

    button:disabled {
        opacity: .6;
        cursor: not-allowed;
    }


/*------------------------------------------------------------------------------
    Better Image Rendering
------------------------------------------------------------------------------*/

img {
    image-rendering: auto;
    vertical-align: middle;
}


/*------------------------------------------------------------------------------
    Responsive Embeds
------------------------------------------------------------------------------*/

iframe {
    max-width: 100%;
    display: block;
}


/*------------------------------------------------------------------------------
    Horizontal Overflow Protection
------------------------------------------------------------------------------*/

body {
    overflow-x: hidden;
}

.container {
    overflow: visible;
}
/*==============================================================================
    21. RESPONSIVE DESIGN
==============================================================================*/


/*------------------------------------------------------------------------------
    Large Tablets
------------------------------------------------------------------------------*/

@media (max-width:1200px) {

    :root {
        --section-space: 100px;
    }

    .container {
        width: min(92%,1100px);
    }
}


/*------------------------------------------------------------------------------
    Tablets
------------------------------------------------------------------------------*/

@media (max-width:992px) {

    :root {
        --header-height: 80px;
        --section-space: 90px;
    }

    .container {
        width: 92%;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .grid-3 {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .grid-4 {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        min-height: 60vh;
    }

    .page-hero-content {
        max-width: 700px;
    }

    .logo img {
        width: 58px;
    }

    .logo span {
        font-size: 1.5rem;
    }
}


/*------------------------------------------------------------------------------
    Mobile Devices
------------------------------------------------------------------------------*/

@media (max-width:768px) {

    :root {
        --section-space: 80px;
    }

    body {
        font-size: 15px;
    }

    .container {
        width: 92%;
    }

    .section {
        padding: var(--section-space) 0;
    }

    .section-title {
        margin-bottom: 3rem;
    }

        .section-title h2 {
            font-size: clamp(2rem,8vw,2.75rem);
        }

        .section-title p {
            font-size: .97rem;
        }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .page-hero {
        min-height: 55vh;
    }

    .page-hero-content h1 {
        font-size: clamp(2.2rem,8vw,3rem);
    }

    .page-hero-content p {
        font-size: .95rem;
    }

    .breadcrumb {
        gap: .5rem;
        font-size: .9rem;
    }

    .contact {
        padding: 80px 0 30px;
    }

    .contact-info-box {
        padding: 2rem;
    }

    .map-box iframe {
        min-height: 380px;
    }

    .footer {
        padding-top: 70px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}


/*------------------------------------------------------------------------------
    Small Phones
------------------------------------------------------------------------------*/

@media (max-width:480px) {

    :root {
        --section-space: 70px;
    }

    .container {
        width: 94%;
    }

    .logo img {
        width: 50px;
    }

    .logo span {
        font-size: 1.25rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-tag {
        font-size: .75rem;
        letter-spacing: 1.5px;
    }

    .page-hero {
        min-height: 50vh;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .page-hero-content p {
        font-size: .9rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 15px 24px;
        font-size: .95rem;
    }

    .feature-item {
        align-items: flex-start;
    }

        .feature-item i {
            width: 38px;
            height: 38px;
            font-size: .95rem;
        }

    .contact-info-box {
        padding: 1.5rem;
    }

    .contact-info li {
        align-items: flex-start;
    }

    .map-box iframe {
        min-height: 300px;
    }

    .back-to-top {
        width: 50px;
        height: 50px;
        right: 18px;
        bottom: 18px;
    }
}


/*------------------------------------------------------------------------------
    Extra Small Devices
------------------------------------------------------------------------------*/

@media (max-width:360px) {

    .logo span {
        display: none;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .btn-primary,
    .btn-secondary {
        font-size: .9rem;
    }
}


/*==============================================================================
    PRINT STYLES
==============================================================================*/

@media print {

    * {
        box-shadow: none !important;
        text-shadow: none !important;
        animation: none !important;
        transition: none !important;
    }

    body {
        background: #ffffff;
        color: #000000;
    }

    header,
    .menu-toggle,
    .back-to-top,
    .footer-social {
        display: none !important;
    }

    a {
        color: #000000;
        text-decoration: underline;
    }
}


/*==============================================================================
    END OF FILE
==============================================================================*/body
{
}