/* =====================================================
   MS INSURANCE - CLAIMS.CSS
===================================================== */


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;

    background: #f5f7fa;

    color: #17324d;

    line-height: 1.6;
}


a {
    text-decoration: none;
    color: inherit;
}


img {
    display: block;

    width: 100%;
}


button,
input {
    font-family: inherit;
}


.container {
    width: 92%;

    max-width: 1200px;

    margin: auto;
}



/* =====================================================
   TOP BAR
===================================================== */

.top-bar {
    background: #031f3d;

    color: #d7e3ee;

    font-size: 11px;
}


.top-inner {
    min-height: 35px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}


.top-left,
.top-right {
    display: flex;

    align-items: center;

    gap: 10px;
}


.top-separator {
    width: 1px;

    height: 12px;

    background: rgba(255,255,255,.25);
}


.top-right a {
    color: #fff;

    transition: .25s;
}


.top-right a:hover {
    color: #dfb744;
}



/* =====================================================
   HEADER
===================================================== */

.header {
    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(255,255,255,.97);

    border-bottom: 1px solid #e3eaf0;

    box-shadow: 0 4px 20px rgba(0,35,70,.07);
}


.header-inner {
    min-height: 82px;

    display: flex;

    align-items: center;

    gap: 22px;
}


.brand {
    display: flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;
}


.lic-logo {
    width: 62px;

    height: 62px;

    flex-shrink: 0;
}


.lic-logo img {
    width: 100%;

    height: 100%;

    object-fit: contain;
}


.brand-line {
    width: 1px;

    height: 44px;

    background: #dce4eb;
}


.ms-logo {
    width: 50px;

    height: 50px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #063b78;

    color: #fff;

    border: 3px solid #d5a932;

    font-size: 13px;

    font-weight: 900;
}


.brand-name strong {
    display: block;

    color: #063b78;

    font-size: 18px;

    letter-spacing: .4px;
}


.brand-name small {
    display: block;

    color: #7b8c9d;

    font-size: 9px;

    margin-top: 2px;
}



/* =====================================================
   DESKTOP NAV
===================================================== */

.desktop-nav {
    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 20px;
}


.desktop-nav a {
    position: relative;

    padding: 31px 0;

    color: #40556a;

    font-size: 11px;

    font-weight: 800;

    white-space: nowrap;
}


.desktop-nav a:hover,
.desktop-nav a.active {
    color: #063b78;
}


.desktop-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 21px;

    height: 2px;

    background: #d5a932;
}



/* =====================================================
   HEADER BUTTON
===================================================== */

.header-btn {
    padding: 11px 17px;

    background: #063b78;

    color: #fff;

    font-size: 10px;

    font-weight: 900;

    white-space: nowrap;

    transition: .25s;
}


.header-btn:hover {
    background: #d5a932;

    color: #062d55;
}



/* =====================================================
   MOBILE MENU
===================================================== */

.menu-btn {
    display: none;

    width: 42px;

    height: 42px;

    border: 1px solid #dbe3eb;

    background: #fff;

    color: #063b78;

    font-size: 20px;

    cursor: pointer;
}


.mobile-nav {
    display: none;

    background: #fff;

    border-top: 1px solid #e8edf2;
}


.mobile-nav a {
    display: block;

    padding: 14px 5%;

    border-bottom: 1px solid #e9eef3;

    color: #203c56;

    font-size: 13px;

    font-weight: 700;
}


.mobile-nav a:hover {
    background: #f5f7fa;

    color: #063b78;
}


.mobile-nav.open {
    display: block;
}



/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height: 590px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #032b54;
}


/*
=========================================================
HERO BACKGROUND IMAGE

CHANGE ONLY THIS IMAGE:

url("images/claims/claims-bg.jpg")

Example:

url("images/claims/my-photo.jpg")

=========================================================
*/

.hero-background {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(2,31,60,.96) 0%,
            rgba(3,51,94,.86) 45%,
            rgba(3,64,110,.55) 100%
        ),
        url("images/claims/claims-bg.jpg")
        center center / cover no-repeat;

    transform: scale(1.03);
}


.hero-background::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(219,178,61,.18),
            transparent 28%
        );
}


.hero-content {
    position: relative;

    z-index: 2;

    padding: 90px 0;
}


.hero-label {
    color: #dfb744;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 3px;
}


.hero h1 {
    max-width: 800px;

    margin-top: 16px;

    color: #fff;

    font-size: clamp(44px, 7vw, 78px);

    line-height: .99;

    font-weight: 500;

    letter-spacing: -2px;
}


.hero h1 span {
    color: #dfb744;

    font-weight: 800;
}


.hero p {
    max-width: 650px;

    margin-top: 24px;

    color: #d4e1ed;

    font-size: 14px;

    line-height: 1.9;
}


.hero-actions {
    display: flex;

    gap: 12px;

    margin-top: 31px;
}


.btn-primary,
.btn-outline {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 165px;

    padding: 14px 20px;

    font-size: 10px;

    font-weight: 900;

    transition: .3s;
}


.btn-primary {
    background: #d6aa35;

    color: #062d55;
}


.btn-outline {
    border: 1px solid rgba(255,255,255,.5);

    color: #fff;
}


.btn-primary:hover,
.btn-outline:hover {
    transform: translateY(-4px);
}


.btn-outline:hover {
    background: #fff;

    color: #063b78;
}



/* =====================================================
   HERO STATS
===================================================== */

.hero-stats {
    display: flex;

    margin-top: 58px;

    max-width: 650px;
}


.hero-stats div {
    min-width: 190px;

    padding: 0 25px;

    border-left: 1px solid rgba(255,255,255,.2);
}


.hero-stats div:first-child {
    padding-left: 0;

    border-left: 0;
}


.hero-stats strong {
    display: block;

    color: #fff;

    font-size: 27px;
}


.hero-stats span {
    display: block;

    margin-top: 2px;

    color: #aebfd0;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;
}



/* =====================================================
   COMMON SECTION
===================================================== */

.section-label {
    color: #b28724;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2.5px;
}



/* =====================================================
   INTRO
===================================================== */

.intro {
    padding: 90px 0 60px;

    background: #fff;
}


.intro-content {
    max-width: 780px;

    text-align: center;
}


.intro h2 {
    margin-top: 13px;

    color: #063b78;

    font-size: clamp(31px, 5vw, 46px);

    line-height: 1.15;
}


.intro h2 span {
    color: #b28724;
}


.intro p {
    margin-top: 18px;

    color: #758799;

    font-size: 13px;

    line-height: 1.8;
}



/* =====================================================
   CLAIM TYPES
===================================================== */

.claim-types {
    padding: 35px 0 100px;

    background: #fff;
}


.section-top {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 32px;
}


.section-top h2 {
    margin-top: 9px;

    color: #063b78;

    font-size: 38px;

    line-height: 1.1;
}


.section-top > p {
    max-width: 350px;

    color: #758799;

    font-size: 12px;

    line-height: 1.8;
}



/* =====================================================
   CLAIM GRID
===================================================== */

.claim-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


.claim-card {
    overflow: hidden;

    background: #fff;

    border: 1px solid #e0e8ef;

    transition:
        transform .35s,
        box-shadow .35s,
        border-color .35s;
}


.claim-card:hover {
    transform: translateY(-8px);

    border-color: #d6aa35;

    box-shadow:
        0 20px 45px rgba(0,40,80,.13);
}



/* =====================================================
   CLAIM IMAGE

   CHANGE EACH IMAGE IN HTML
===================================================== */

.claim-image {
    position: relative;

    height: 225px;

    overflow: hidden;

    background: #dbe5ee;
}


.claim-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .65s ease;
}


.claim-card:hover .claim-image img {
    transform: scale(1.08);
}


.claim-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 35%,
            rgba(2,31,60,.82)
        );
}


.claim-number {
    position: absolute;

    top: 15px;

    right: 16px;

    z-index: 2;

    color: rgba(255,255,255,.9);

    font-size: 23px;

    font-weight: 900;
}


.claim-tag {
    position: absolute;

    left: 15px;

    bottom: 15px;

    z-index: 2;

    padding: 6px 9px;

    background: #d6aa35;

    color: #062d55;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;
}



/* =====================================================
   CLAIM BODY
===================================================== */

.claim-body {
    padding: 23px;
}


.claim-body h3 {
    color: #063b78;

    font-size: 19px;
}


.claim-body p {
    min-height: 80px;

    margin-top: 9px;

    color: #758799;

    font-size: 11px;

    line-height: 1.7;
}


.claim-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 15px;

    color: #063b78;

    font-size: 10px;

    font-weight: 900;
}


.claim-link span {
    transition: .25s;
}


.claim-link:hover {
    color: #b28724;
}


.claim-link:hover span {
    transform: translateX(5px);
}



/* =====================================================
   PROCESS
===================================================== */

.process-section {
    padding: 100px 0;

    background: #f5f7fa;
}


.process-heading {
    max-width: 680px;
}


.process-heading h2 {
    margin-top: 10px;

    color: #063b78;

    font-size: 40px;
}


.process-heading p {
    margin-top: 12px;

    color: #758799;

    font-size: 12px;

    line-height: 1.8;
}


.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

    margin-top: 40px;
}


.process-card {
    position: relative;

    min-height: 235px;

    padding: 30px 25px;

    background: #fff;

    border: 1px solid #e0e8ef;

    transition: .3s;
}


.process-card:hover {
    transform: translateY(-6px);

    border-color: #d6aa35;

    box-shadow:
        0 15px 35px rgba(0,40,80,.09);
}


.process-number {
    position: absolute;

    top: 18px;

    right: 18px;

    color: #d5a932;

    font-size: 20px;

    font-weight: 900;
}


.process-icon {
    width: 52px;

    height: 52px;

    display: grid;

    place-items: center;

    background: #edf3f8;

    font-size: 23px;
}


.process-card h3 {
    margin-top: 20px;

    color: #063b78;

    font-size: 18px;
}


.process-card p {
    margin-top: 7px;

    color: #758799;

    font-size: 11px;

    line-height: 1.7;
}



/* =====================================================
   DOCUMENTS
===================================================== */

.documents-section {
    padding: 100px 0;

    background: #fff;
}


.documents-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}


.documents-content h2 {
    margin-top: 12px;

    color: #063b78;

    font-size: 43px;

    line-height: 1.1;
}


.documents-content h2 span {
    color: #b28724;
}


.documents-content > p {
    max-width: 560px;

    margin-top: 17px;

    color: #758799;

    font-size: 12px;

    line-height: 1.8;
}


.document-list {
    display: grid;

    gap: 12px;

    margin-top: 30px;
}


.document-item {
    display: grid;

    grid-template-columns: 40px 1fr;

    gap: 14px;

    padding: 16px 0;

    border-bottom: 1px solid #dce5ec;
}


.document-item > span {
    color: #b28724;

    font-size: 11px;

    font-weight: 900;
}


.document-item h3 {
    color: #183650;

    font-size: 14px;
}


.document-item p {
    margin-top: 3px;

    color: #758799;

    font-size: 10px;
}



/* =====================================================
   DOCUMENT IMAGE
===================================================== */

.documents-image {
    position: relative;

    min-height: 500px;

    overflow: hidden;

    background: #dbe5ee;
}


.documents-image img {
    width: 100%;

    height: 100%;

    min-height: 500px;

    object-fit: cover;
}


.documents-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            145deg,
            rgba(3,51,94,.18),
            rgba(2,31,60,.65)
        );
}


.image-badge {
    position: absolute;

    left: 30px;

    bottom: 30px;

    z-index: 2;

    padding: 18px 22px;

    background: #d6aa35;

    color: #062d55;
}


.image-badge strong {
    display: block;

    font-size: 18px;
}


.image-badge span {
    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;
}



/* =====================================================
   IMPORTANT
===================================================== */

.important-section {
    padding: 0 0 90px;

    background: #fff;
}


.important-box {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 22px;

    padding: 35px 40px;

    background: #f5f7fa;

    border-left: 4px solid #d6aa35;
}


.important-icon {
    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #d6aa35;

    color: #062d55;

    font-size: 24px;

    font-weight: 900;
}


.important-box span {
    color: #b28724;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;
}


.important-box h2 {
    margin-top: 5px;

    color: #063b78;

    font-size: 25px;
}


.important-box p {
    max-width: 800px;

    margin-top: 7px;

    color: #758799;

    font-size: 11px;

    line-height: 1.8;
}



/* =====================================================
   CTA
===================================================== */

.cta {
    padding: 80px 0;

    background: #fff;
}


.cta-box {
    padding: 45px 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    background:
        linear-gradient(
            110deg,
            #063b78,
            #07538b
        );
}


.cta-box > div:first-child > span {
    color: #dfb744;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;
}


.cta-box h2 {
    margin-top: 8px;

    color: #fff;

    font-size: 31px;
}


.cta-box p {
    margin-top: 7px;

    color: #c4d4e2;

    font-size: 11px;
}


.cta-actions {
    display: flex;

    gap: 10px;
}


.cta-call,
.cta-whatsapp {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 125px;

    padding: 13px 18px;

    font-size: 10px;

    font-weight: 900;

    transition: .25s;
}


.cta-call {
    background: #d6aa35;

    color: #062d55;
}


.cta-whatsapp {
    border: 1px solid rgba(255,255,255,.4);

    color: #fff;
}


.cta-call:hover,
.cta-whatsapp:hover {
    transform: translateY(-3px);
}



/* =====================================================
   FOOTER
===================================================== */

.footer {
    padding: 58px 0 0;

    background: #021b34;

    color: #9fb2c4;
}


.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 45px;
}


.footer-logo {
    color: #fff;

    font-size: 17px;
}


.footer-grid > div:first-child > p {
    margin-top: 4px;

    font-size: 10px;
}


.footer-text {
    max-width: 250px;

    margin-top: 15px !important;

    line-height: 1.7;
}


.footer-column {
    display: flex;

    flex-direction: column;

    gap: 9px;
}


.footer-column strong {
    margin-bottom: 6px;

    color: #fff;

    font-size: 11px;
}


.footer-column a,
.footer-column span {
    color: #9fb2c4;

    font-size: 10px;

    transition: .25s;
}


.footer-column a:hover {
    color: #dfb744;
}


.footer-bottom {
    margin-top: 45px;

    padding: 18px 0;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255,255,255,.09);

    font-size: 8px;
}



/* =====================================================
   FLOATING CONTACT
===================================================== */

.floating-contact {
    position: fixed;

    right: 18px;

    bottom: 18px;

    z-index: 999;

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.floating-contact a {
    width: 52px;

    height: 52px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    box-shadow:
        0 7px 20px rgba(0,0,0,.20);

    font-size: 11px;

    font-weight: 900;

    transition: .25s;
}


.float-whatsapp {
    background: #25d366;

    color: #fff;
}


.float-call {
    background: #063b78;

    color: #fff;
}


.floating-contact a:hover {
    transform: scale(1.09);
}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .desktop-nav {
        gap: 12px;
    }


    .desktop-nav a {
        font-size: 9px;
    }


    .header-btn {
        padding: 10px 12px;
    }


    .claim-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .footer-grid {
        grid-template-columns:
            1.5fr 1fr 1fr;
    }

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {


    .top-inner {
        min-height: 31px;
    }


    .top-left span:first-child {
        display: none;
    }


    .desktop-nav,
    .header-btn {
        display: none;
    }


    .menu-btn {
        display: block;

        margin-left: auto;
    }


    .header-inner {
        min-height: 70px;
    }


    .lic-logo {
        width: 48px;

        height: 48px;
    }


    .brand-line {
        height: 35px;
    }


    .ms-logo {
        width: 42px;

        height: 42px;

        font-size: 11px;
    }


    .brand-name strong {
        font-size: 13px;
    }


    .brand-name small {
        font-size: 8px;
    }



    /* HERO */

    .hero {
        min-height: auto;
    }


    .hero-content {
        padding: 65px 0;
    }


    .hero h1 {
        font-size: 43px;

        letter-spacing: -1px;
    }


    .hero p {
        font-size: 12px;
    }


    .hero-actions {
        flex-direction: column;
    }


    .btn-primary,
    .btn-outline {
        width: 100%;
    }


    .hero-stats {
        margin-top: 45px;

        display: grid;

        grid-template-columns: repeat(3, 1fr);
    }


    .hero-stats div {
        min-width: 0;

        padding: 0 10px;
    }


    .hero-stats strong {
        font-size: 20px;
    }


    .hero-stats span {
        font-size: 7px;
    }



    /* INTRO */

    .intro {
        padding: 65px 0 45px;
    }


    .intro h2 {
        font-size: 32px;
    }



    /* CLAIMS */

    .claim-types {
        padding-bottom: 70px;
    }


    .section-top {
        display: block;
    }


    .section-top h2 {
        font-size: 33px;
    }


    .section-top > p {
        margin-top: 12px;
    }


    .claim-grid {
        grid-template-columns: 1fr;

        gap: 17px;
    }


    .claim-image {
        height: 235px;
    }



    /* PROCESS */

    .process-section {
        padding: 70px 0;
    }


    .process-heading h2 {
        font-size: 34px;
    }


    .process-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .process-card {
        min-height: auto;

        padding: 25px;
    }



    /* DOCUMENTS */

    .documents-section {
        padding: 70px 0;
    }


    .documents-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .documents-content h2 {
        font-size: 34px;
    }


    .documents-image {
        min-height: 380px;
    }


    .documents-image img {
        min-height: 380px;
    }



    /* IMPORTANT */

    .important-section {
        padding-bottom: 70px;
    }


    .important-box {
        grid-template-columns: 1fr;

        gap: 15px;

        padding: 28px 22px;
    }



    /* CTA */

    .cta {
        padding: 55px 0;
    }


    .cta-box {
        display: block;

        padding: 32px 25px;
    }


    .cta-box h2 {
        font-size: 27px;
    }


    .cta-actions {
        margin-top: 25px;

        display: grid;

        grid-template-columns: 1fr 1fr;
    }


    .cta-call,
    .cta-whatsapp {
        width: 100%;

        text-align: center;
    }



    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 30px;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }



    /* FLOATING */

    .floating-contact {
        right: 13px;

        bottom: 13px;
    }


    .floating-contact a {
        width: 48px;

        height: 48px;
    }

}



/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 430px) {


    .brand-name {
        display: none;
    }


    .hero h1 {
        font-size: 36px;
    }


    .hero-stats {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .hero-stats div {
        padding: 0;

        border: 0;
    }


    .claim-image {
        height: 220px;
    }


    .documents-image {
        min-height: 320px;
    }


    .documents-image img {
        min-height: 320px;
    }


    .footer-grid {
        grid-template-columns: 1fr;
    }


    .cta-actions {
        grid-template-columns: 1fr;
    }

}
/* =====================================================
   FINAL FLOATING WHATSAPP + CALL
===================================================== */

.floating-contact {
    position: fixed !important;

    right: 22px !important;
    bottom: 22px !important;

    width: auto !important;
    height: auto !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;

    gap: 12px !important;

    z-index: 999999 !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* =========================
   WHATSAPP BUTTON
========================= */

.floating-contact .float-whatsapp {
    width: 205px !important;
    height: 58px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex-direction: row !important;

    gap: 10px !important;

    margin: 0 !important;
    padding: 0 22px !important;

    background: #25D366 !important;
    color: #ffffff !important;

    border: none !important;
    border-radius: 30px !important;

    text-decoration: none !important;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;

    line-height: 1 !important;

    box-shadow: 0 8px 24px rgba(0,0,0,.18) !important;

    transition: transform .25s ease,
                background .25s ease,
                box-shadow .25s ease !important;
}


/* WHATSAPP SVG */

.floating-contact .float-whatsapp svg {
    width: 30px !important;
    height: 30px !important;

    min-width: 30px !important;
    max-width: 30px !important;

    display: block !important;

    fill: #ffffff !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* TEXT */

.floating-contact .float-whatsapp span {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #ffffff !important;

    white-space: nowrap !important;

    font-size: 15px !important;
    font-weight: 700 !important;

    line-height: 1 !important;
}


/* WHATSAPP HOVER */

.floating-contact .float-whatsapp:hover {
    background: #1ebe5d !important;

    transform: translateY(-3px) !important;

    box-shadow: 0 12px 28px rgba(0,0,0,.22) !important;
}


/* =========================
   CALL BUTTON
========================= */

.floating-contact .float-call {
    width: 58px !important;
    height: 58px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #063b78 !important;
    color: #ffffff !important;

    border: none !important;
    border-radius: 50% !important;

    text-decoration: none !important;

    box-shadow: 0 8px 24px rgba(0,0,0,.18) !important;

    transition: transform .25s ease,
                background .25s ease !important;
}


.floating-contact .float-call span {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-size: 23px !important;

    line-height: 1 !important;
}


.floating-contact .float-call:hover {
    background: #07539c !important;

    transform: translateY(-3px) !important;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {

    .floating-contact {
        right: 14px !important;
        bottom: 14px !important;

        gap: 10px !important;
    }


    .floating-contact .float-whatsapp {
        width: 180px !important;
        height: 52px !important;

        padding: 0 18px !important;

        border-radius: 27px !important;

        font-size: 13px !important;
    }


    .floating-contact .float-whatsapp svg {
        width: 27px !important;
        height: 27px !important;

        min-width: 27px !important;
        max-width: 27px !important;
    }


    .floating-contact .float-whatsapp span {
        font-size: 13px !important;
    }


    .floating-contact .float-call {
        width: 52px !important;
        height: 52px !important;
    }


    .floating-contact .float-call span {
        font-size: 21px !important;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 430px) {

    .floating-contact {
        right: 12px !important;
        bottom: 12px !important;
    }


    .floating-contact .float-whatsapp {
        width: 165px !important;
        height: 50px !important;

        padding: 0 16px !important;
    }


    .floating-contact .float-whatsapp svg {
        width: 25px !important;
        height: 25px !important;

        min-width: 25px !important;
        max-width: 25px !important;
    }


    .floating-contact .float-whatsapp span {
        font-size: 12px !important;
    }


    .floating-contact .float-call {
        width: 50px !important;
        height: 50px !important;
    }

}