/*
Table of Contents
1. Global Setting
    A. Color Settings
    B. Navigation
    C. Spacing
2. Container Settings
    A. Navigation
    B. Page Layout
3. Font Settings
4. Control Settings
    A. Buttons
5. Responsive Settings
==========================================================
*/

/*Global Setting START*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    overflow-x: clip;
    font-family: 'Poppins', sans-serif;
}

:root {
    /*Typography*/
    --text-header: #293056;
    --text-body: #3E4784;
    --on-dark-text: white;

    /*Surfaces*/
    --surface-dark: #2D0538;
    --surface-dark-800: #711E8A;
    /*Modal Component*/
    --dialog-body: #F8F9FC;
    --dialog-border: #8722A9;

    /*Shadows*/
    --text-shadow-color: #FF6D92;

    /*Color Palette -- can delete this -- */
    --clairvoyant-50: #FBF4FF;
    --clairvoyant-100: #F6E9FE;
    --clairvoyant-200: #EDD2FC;
    --clairvoyant-300: #E2AFF8;
    --clairvoyant-400: #D17FF3;
    --clairvoyant-500: #BB4DE8;

    --clairvoyant-600: #A12ECB;
    --clairvoyant-700: #8722A9;
    --clairvoyant-900: #5F1E71;

    /*-- can delete this --*/
    --razzmatazz-400: #FF6D92;
    --razzmatazz-500: #F93A70;

    --tangerine-50: #FFF4F1;
    --tangerine-300: #FFB7A0;
    --tangerine-400: #FFA385;
    --tangerine-600: #E54E1D;

    /*Spacing*/
    --space-0: 0px;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 32px;
    --space-8: 40px;
    --space-9: 48px;
    --space-10: 60px;
}

/*--Color Settings START--*/
.surface-dark {
    background-color: var(--surface-dark);
    color: var(--on-dark-text);
}

.surface-primary-800 {
    background-color: var(--surface-dark-800);
    color: var(--on-dark-text);
}

.text-body {color: #3E4784}
/*--Color Settings END--*/

/*--Navigation START--*/
nav {z-index: 10;}

.brand-logo-tablet-mobile {display: none;}

.nav-wrapper svg {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
}

.nav-wrapper a {
    text-decoration: none;
}

.nav-item-link-active {
    padding: 4px 3px;
    border-radius: 12px;
    border: 1px solid rgba(255, 163, 133, 0.40);
    background-color: rgba(255, 163, 133, 0.30);
    align-self: stretch;
}

.nav-item-link-active svg, .nav-item-link:hover svg {stroke:#FFA385;}

.social-icon {
    display: inline-block;
    background-color: #BB4DE8;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    transition: background-color 0.2s ease;
}

.social-icon-contra {
    width: 28px;
    height: 28px;
    -webkit-mask-image: url(imgs/contra.svg);
    mask-image: url(imgs/contra.svg);
}

.social-icon-twitter {
    width: 24px;
    height: 24px;
    -webkit-mask-image: url(imgs/twitter.svg);
    mask-image: url(imgs/twitter.svg);
}

.social-icon-linkedin {
    width: 24px;
    height: 24px;
    -webkit-mask-image: url(imgs/linkedin.svg);
    mask-image: url(imgs/linkedin.svg);
}

.hm-nav-outbound-links a:hover .social-icon {
    background-color: #FFA385;
}

.nav-item-link {
    padding: 4px 3px;
    border-radius: 12px;
    border: 1px solid transparent;
    background-color: none;
    align-self: stretch;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nav-item-link svg {stroke: #BB4DE8; transition: stroke 0.2s ease;}

.nav-item-link:hover {
    border-color: rgba(255, 163, 133, 0.40);
    background-color: rgba(255, 163, 133, 0.30);
}

.nav-item-link:hover .nav-desktop-text {
    color: #FFF4F1;
}

.nav-desktop-text-active {
    color:#FFF4F1;
    font-size: 11px;
    font-weight: 500;
    line-height: 14px; /* 181.818% */
}

.nav-desktop-text {
    color:#FBF4FF;
    font-size: 11px;
    font-weight: 500;
    line-height: 14px; /* 181.818% */
    transition: color 0.2s ease;
}

.nav-service-dropdown-menu {
    display: none;
    padding: 8px 20px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    position: absolute;
    top: 250px;
    left: 95px;
    width: 270px;

    background-color: var(--surface-dark);
    border-radius: var(--space-2);
    box-shadow: 0 0 17px 0 var(--System-Colors-Gray-Blue-400, #717BBC);
}

.nav-service-dropdown-menu.dropdown-open {
    display: inline-flex;
}

.nav-service-dropdown-menu a {
    color: white;
    text-decoration: none;
    text-align: left;

    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}

.nav-service-dropdown-menu a:hover {
    color: var(--tangerine-400);
}

.social-links-wrapper {
    display: flex;
    width: auto;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hm-nav-outbound-links {
    display: flex;
    width: auto;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.social-links-wrapper-2 {
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.mobile-menu-overlay {display: none;}

.mobile-menu {display: none;}

/*--Navigation END--*/

/*--Spacing START -> equivalent to Figma Primitive Variables > Spacing--*/
.space-0 {gap:var(--space-0);}
.space-1 {gap:var(--space-1);}
.space-2 {gap:var(--space-2);}
.space-3 {gap:var(--space-3);}
.space-4 {gap:var(--space-4);}
.space-5 {gap:var(--space-5);}
.space-6 {gap:var(--space-6);}
.space-7 {gap:var(--space-7);}
.space-8 {gap:var(--space-8);}  
.space-9 {gap:var(--space-9);}  
.space-10 {gap: var(--space-10);}

.space-40 {height: 40px;}
/*--Spacing END--*/
/*Global Setting END*/

/*========================================================================*/
/*Container Settings START*/
.nav-container {
    width: 90px;
    display: inline-flex;
    position: fixed;
    height: 100vh;
    padding: var(--Spacing-8, 40px) var(--Spacing-4, 16px);
    flex-direction: column;
    justify-content: space-between;
}

.main-page {
    background-image: url(imgs/line\ bg.svg);
    background-repeat: repeat;
}

.section-container {
    margin-left: 90px;
    padding: 40px 5% 60px 5%;
}

.section-container-mt-0 {
    margin-left: 90px;
    padding: 0px 5% 60px 5%;
}

.testimonials-container {
    margin-left: 90px;
    padding: 40px 5% 170px 5%;
}

.gallery-wrapper {
    display: flex;
    gap: var(--space-4);
}

.newsletter {
    background-color: white;
    border-top: 1px solid #FFA1B7;
}

.newsletter-inner {
    display: flex;
    gap: var(--space-4);
}

.newsletter-copy {width: 25%;}

.newsletter-form-col {
    width: 75%;
}

.formkit-form[data-uid="2cce5a189f"] {max-width: none !important; width: 100%;}

.formkit-form[data-uid="2cce5a189f"] [data-style="clean"] {padding-top: 0 !important;}

/*Newsletter Modal Kit Form*/
.formkit-form[data-uid="e53b34d164"] {max-width: none !important; width: 100%;}

.formkit-form[data-uid="e53b34d164"] [data-style="clean"] {padding: 0 !important;}

.formkit-form[data-uid="e53b34d164"] .formkit-field {
    flex: 1 1 100% !important;
    width: 100%;
}

.newsletter-form {
    display: flex;
    gap: var(--space-3);
    align-items: end;
}

.newsletter-field {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    flex: 1 0 0;
}

.newsletter-field label {
    color: var(--text-header);
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}

.newsletter-field .form-control {
    height: 44px;
    border: 0.5px solid var(--clairvoyant-700);
    border-radius: var(--space-1);
    padding: var(--space-2) 10px;
    box-shadow: none;
}

.newsletter-field .form-control:focus {
    border-color: var(--clairvoyant-700);
    box-shadow: none;
}

.formkit-input::placeholder {
    color: #717680 !important;
}

.form-select:required:invalid {
    color: #717680;
}

.newsletter-submit {
    flex-shrink: 0;
    width: 184px;
    text-align: center;
}

.w-67 {width: 67%;}
.w-33 {width: 33%;}

.h-stack { /*equivalent of Auto Layout*/
    display: flex;
    align-items: flex-start;
}

.v-stack { /*equivalent of Auto Layout*/
    display: flex;
    flex-direction: column;
}

footer {
    margin-left: 90px;
}

.end {
    background-color: #F8F9FC;
    padding: 10px 5%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.end p, .end a {
    font-size: 14px;
    font-weight: 500;
}

.end a {
    text-decoration: none;
    color: #3E4784;
}

.selection-container {
    margin: 10px;
    position: relative;
}

.selection-content {
    border: 0.5px #8722A9 solid;
    overflow: hidden;
    padding: 24px 32px;
}

.selection-content .row {
    --bs-gutter-x: 0;
}

.selector-box-top-left, .selector-box-top-right, .selector-box-bottom-left, .selector-box-bottom-right {position: absolute;}

.selector-box-top-left, .selector-box-top-right {top: -8px;}

.selector-box-bottom-left, .selector-box-bottom-right {bottom: -8px;}

.selector-box-top-left, .selector-box-bottom-left {left: -8px;}

.selector-box-top-right, .selector-box-bottom-right {right: -8px;}

.service-thumbnail {height: 650px;}


/*Container Settings END*/
/*========================================================================*/

/*Font Settings*/
@font-face {
    font-family: 'Hello Radio';
    src: url(Hello\ Radio.ttf);
}

h1, h2, h3, h4, h5, h6 {color: #293056; margin-bottom: 0px;}

h2 {
    font-size: 41px;
    line-height: 48px;
    font-weight: 600;
}

h3 {
    font-size: 36px;
    line-height: 36px;
    font-weight: 500;
}

h4 {
    font-size: 31px;
    line-height: 36px;
    font-weight: 600;
}

h5 {
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px; /* 146.154% */
}

h6 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
}

p {
    color: #3E4784;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 28px;
    margin-bottom: 0px;
}

.display-text { /*The pink one*/
    font-family: "Hello Radio";
    font-size: 94px;
    font-weight: 400;
    line-height: 60px; /* 63.83% */

    color: var(--razzmatazz-400);
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: var(--Brand-Razzmatazz-50, #FFF1F4);
    paint-order: stroke fill;
    transform: rotate(-7.45deg);
    display: inline-block;
}

.display-paragraph {
    color: var(--text-body);
    font-family: "Hello Radio";
    font-size: 50px;
    font-weight: 400;
    line-height: 46px; /* 92% */

    transform: rotate(-3.45deg);
    display: inline-block;
}

.display-section-text { /*The white one with the pink stroke*/
    color: var(--dialog-body);
    text-shadow: -3px 3px 0 var(--text-shadow-color);
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--dialog-border);
    paint-order: stroke fill;
    font-family: "Hello Radio";
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: 73px; /* 77.66% */
    transform: rotate(-7.45deg);
    z-index: 2;
    position: relative;
}

.md-text {
    font-size: 14px;
    line-height: 23px;
    font-weight: 600;
}

.sm-text {
    font-size: 14px;
    line-height: 23px;
    font-weight: 400;
}

.w-400 {font-weight: 400;}
.w-500 {font-weight: 500;}
.w-600 {font-weight: 600;}

a, .underline {color: #A12ECB;}

.small-title {font-weight: 600;}

.label-primary, .label-secondary {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.label-primary {
    color: var(--clairvoyant-600);
}

.label-secondary {
    color: #3E4784;
}

.required-point {color: #F63D68;}

.case-study-point {
    color: var(--clairvoyant-600);
    font-size: 14px;
    font-weight: 600;
    line-height: 23px;
    text-transform: uppercase;
}

.case-study-img-caption {
    color: var(--text-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    margin-top: var(--space-1);
}

.case-study-subtitle, .features-title, .research-title, .design-iteration-title, .reflection-title, .discovery-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 28px;
    color: var(--text-body);
}

.side-note {
    color: var(--clairvoyant-600);
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    line-height: 23px; /* 164.286% */
}

.side-note-2 { /*Used for additional context na <h6> and above.*/
    color: var(--text-body);
    font-size: 19px;
} 

.service-extended-title {
    color: var(--clairvoyant-500);
    font-size: 26px;
    font-weight: 500;
    line-height: 38px; /* 146.154% */
}

.ICP-header-section {
    font-size: 19px;
    font-weight: 600;
}

/*========================================================================*/

/*Control Settings*/
.btn-primary {
    background-color: var(--clairvoyant-600);
    color: white;
    border: 1px solid var(--clairvoyant-600);
    border-radius: 30px;
    padding: 4px 28px;
    cursor: pointer;
    line-height: 30px;
    font-size: 15px;
    width: fit-content;
    text-decoration: none;
}
.btn-primary a {color: white; text-decoration: none;}


.btn-primary:hover, .btn-primary-outline:hover, .btn-secondary:hover, .btn-outline-white:hover {
    background-color: #FFA385;
    border: 1px solid #FFA385;
    color: white;
}

.btn-primary-outline {
    text-decoration: none;
    background-color: transparent;
    color: var(--clairvoyant-600);
    border: 1px solid var(--clairvoyant-600);
    border-radius: 30px;
    padding: 4px 28px;
    cursor: pointer;
    line-height: 30px;
    font-size: 15px;
}

.btn-secondary {
    background-color: transparent;
    color: #FBF4FF;
    border: 1px solid #FBF4FF;
    border-radius: 30px;
    padding: 4px 28px;
    cursor: pointer;
    line-height: 30px;
    font-size: 15px;
}

.btn-secondary-outline {
    text-decoration: none;
    background-color: transparent;
    color: var(--tangerine-600);
    border: 1.5px solid var(--tangerine-300);
    border-radius: 30px;
    padding: 4px 28px;
    cursor: pointer;
    line-height: 30px;
    font-size: 15px;
}

.btn-outline-white {
    text-decoration: none;
    background-color: transparent;
    color: white;
    border: 1.5px solid white;
    border-radius: 30px;
    padding: 4px 28px;
    cursor: pointer;
    line-height: 30px;
    font-size: 15px;
}

/* only shows error state after user has interacted with it */
input:user-invalid {
    border: 1px solid red;
}


/*========================================================================*/

/*Responsive Settings*/
@media screen and (min-width: 1920px) {
    .section-container {
        padding-left: 15%;
        padding-right: 15%;
    }
}

/*Widescreen*/ /*xxl*/ 
@media screen and (min-width: 1440px) {
    /*insert code*/
}

/*Tablet LG START*/ /*lg*/
@media screen and (max-width: 992px) {
    .section-container {
        margin-left: 0px;
        padding-left: 4%;
        padding-right: 4%;
    }

    .section-container-mt-0 {
    margin-left: 0px;
    padding: 0px 4% 60px 4%;
}

    .gallery-wrapper {
        gap: 12px;
    }

    .newsletter-copy {width: 50%;}

    .newsletter-form-col {width: 50%;}

    .newsletter-form-col {
        width: 100%;
    }

    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: var(--space-3);
    }

    .newsletter-field {width: 100%;}
    
    .newsletter-submit {align-self:flex-start;}

    .nav-container {
        width: 100vw;
        height: 80px;
        position:static;
        padding: 16px 4%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    footer {
        margin-left: 0px;
    }

    .brand-logo-tablet-mobile {display: block;}

    .brand-logo-tablet-mobile img {height: 28px;}

    .brand-logo-desktop, .nav-wrapper, .hm-nav-outbound-links {display: none;}

    .mobile-menu-toggle {
        display: block;
        width: 45px;
        height: 32px;
        position: relative;
    }

    .mobile-menu-toggle span {
        position: absolute;
        left: 0;
        display: block;
        width: 45px;
        height: 2px;
        background-color: var(--clairvoyant-500);
        margin: 0;
        transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
    }

    .mobile-menu-toggle span:nth-child(1) {
        top: 0;
    }

    .mobile-menu-toggle span:nth-child(2) {
        top: 14px;
    }

    .mobile-menu-toggle span:nth-child(3) {
        top: 28px;
    }

    .mobile-menu-toggle.is-active span:nth-child(1) {
        top: 14px;
        transform: rotate(45deg);
        background-color: var(--text-shadow-color);
    }

    .mobile-menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.is-active span:nth-child(3) {
        top: 14px;
        transform: rotate(-45deg);
        background-color: var(--text-shadow-color);
    }

    .mobile-menu {
        background: var(--surface-dark);
        padding: 12px 20px 32px 20px;
        width: 390px;
        display: none;
        flex-direction: column;
        align-items: start;
        gap: var(--space-7);
        border-radius: 20px;
        /*box-shadow: 10px 14px 0px 0px rgba(255, 163, 133, 0.40);*/
        position: absolute;
        right: 0px;
        z-index: 2;
        margin-top: 10px;
        margin-right: 4%;
    }

    .mobile-menu.is-open {
        display: flex;
    }

    .mobile-nav-wrapper {
        display: flex;
        flex-direction: column;
        gap: 0px;
        width: 100%;
    }

    .mobile-menu-item {
        width: 100%;
        padding: var(--space-4);
        border-bottom: 1.5px solid var(--clairvoyant-700);
        text-decoration: none;
    }

    .mobile-menu-item p {color: white;}

    .mobile-dropdown {
    position: relative;
    display: block;
    }

    .mobile-dropdown button {
        background: none;
        border: none;
        outline: none;
        border-bottom: 1.5px solid var(--clairvoyant-700);
        color: white;
        font-size: 16px;
        cursor: pointer;
        width: 100%;
        text-align: left;
    }

    .mobile-dropdown-item {
        text-align: left;
        display: flex;
        justify-content: space-between;
    }

    .mobile-dropdown-menu {
        display: none;
        position: relative;
        top: 0px;
        left: 0;
        list-style: none;
        background-color: var(--clairvoyant-900);
        border: 0.5px solid #8722A9;
        padding: 0px;
        
        z-index: 100;
    }

    .mobile-dropdown-menu li a {
        display: block;
        padding: 14px 12px 14px 32px;
        text-decoration: none;
        color: white;
        cursor: pointer;
        border-bottom: 1.5px solid var(--clairvoyant-700);
    }

    .mobile-dropdown-menu li a:hover {
        background-color: #FBF4FF;
        color: #A12ECB;
    }

    .mobile-dropdown-menu.is-open {
        display: block;
    }

    .dropdown-arrow {
    transition: transform 0.3s ease;
    }

    .dropdown-arrow.is-open {
        transform: rotate(180deg);
    }

    .mobile-nav-socmed {
        display: flex;
        flex-direction: column;
        gap: var(--space-2);  
    }

    .mobile-nav-socmed a {
        color: white;
        text-decoration: none;
    }

    .mobile-nav-socmed .md-text {color: var(--clairvoyant-300);}

    .display-section-text {font-size: 78px;}

    .service-thumbnail {height: 300px;}

    .testimonials-container {
        margin-left: 0px;
        width: auto;
        padding-left: 4%;
        padding-right: 4%;
    }

    .lightbox-overlay.is-open .lightbox-dialog {
        width: min(780px, 100%);
    }

    .lightbox-overlay.is-open .lightbox-card {
        flex-direction: column;
        align-items: stretch;
    }

    .lightbox-overlay.is-open .lightbox-media {
        width: 100%;
        height: auto;
    }

    .lightbox-overlay.is-open .lightbox-image {
        max-width: 100%;
    }

    .lightbox-overlay.is-open .lightbox-info {
        flex: initial;
        align-items: flex-start;
    }

    .lightbox-overlay.is-open .lightbox-title {
        font-size: 24px;
    }

    .gallery-masonry {
        column-count: 2;
        column-gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .gallery-masonry {
        column-count: 1;
    }

    .gallery-card-tall img,
    .gallery-card-wide img {
        min-height: 0;
    }
}

/*Tablet*/ /*md*/
@media screen and (max-width: 768px) {
    .formkit-form[data-uid="2cce5a189f"] .formkit-field {
        flex: 1 1 100% !important;
        width: 100%;
    }
}

/*Mobile*/ /*sm*/
@media screen and (max-width: 567px) {
    .formkit-form[data-uid="2cce5a189f"] [data-style="clean"] {
        padding: 0 !important;
    }

    .nav-container {
        padding: 16px 8%;
        position: relative;
        z-index: 4;
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background-color: rgba(20, 6, 28, 0.62);
        z-index: 2;
    }

    .mobile-menu-overlay.is-open {
        display: block;
    }

    .end {
        flex-direction: column;
        align-items: center;
    }

    .section-container {
        margin-left: 0px;
        padding-left: 8%;
        padding-right: 8%;
    }

    .mobile-menu {
        width: 100%;
        padding: 12px 8% 32px 8%;
        border-radius: 0px 0px 20px 20px;
        box-shadow: none;
        position: absolute;
        z-index: 11;
        margin-top: 0px;
        margin-right: 0px;
    }

    .mobile-menu-item {
        padding: 20px 0px;
    }

    .newsletter-inner {
        display: flex;
        flex-direction: column;
    }

    .gallery-wrapper {flex-direction: column; width: 100%;}

    .newsletter-copy {width: 100%;}

    .newsletter-form-col {width: 100%;}

    .newsletter-submit {align-self:center; width: 100%;}

    .btn-primary-outline {text-align: center;}

    .lightbox-overlay.is-open {
        padding: 12px;
    }

    .lightbox-overlay.is-open .lightbox-dialog {
        width: 100%;
        max-height: calc(100vh - 24px);
    }

    .lightbox-overlay.is-open .lightbox-card {
        max-height: calc(100vh - 24px);
    }

    .lightbox-overlay.is-open .lightbox-media {
        padding: 20px;
    }

    .lightbox-overlay.is-open .lightbox-media-frame,
    .lightbox-overlay.is-open .lightbox-image {
        max-height: 46vh;
    }

    .lightbox-overlay.is-open .lightbox-info {
        padding: 20px;
        gap: 12px;
    }

    .lightbox-overlay.is-open .lightbox-close {
        top: 8px;
        right: 8px;
        z-index: 1;
    }

    .lightbox-overlay.is-open .lightbox-nav {
        top: 42%;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lightbox-overlay.is-open .lightbox-prev {
        left: 8px;
    }

    .lightbox-overlay.is-open .lightbox-next {
        right: 8px;
    }

    .lightbox-overlay.is-open .lightbox-title {
        font-size: 20px;
        line-height: 28px;
    }
}
/*========================================================================*/