.primary-btn {
    background-color: var(--Secondary-color);
    transition: all ease .3s;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    line-height: 32px;
    font-weight: 700;
    font-family: var(--EuclidCircularA);
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 8px;
    border-radius: 5px;
}

.secondary-btn {
    transform: translateY(0px) scale(1);
    transition: all ease .3s;
    background: #fff;
    overflow: hidden;
    position: relative;
    font-size: 16px;
    line-height: 32px;
    font-weight: 700;
    font-family: var(--EuclidCircularA);
    text-decoration: none;
    display: block;
    padding: 8px;
    border-radius: 5px;
}

.secondary-btn:hover {
    background-color: var(--Secondary-color);
    color: var(--Primary-color);
}

#masthead {
    z-index: 5;
    border-bottom: 1px solid #4E435D;
}

.content-wrapper {
    max-width: 1260px;
    margin: auto;
}

.inner-hero-sec {
    padding: 38px 0;
    background-color: var(--Primary-color);
    border-bottom: 1px solid #FFFFFF;
    box-shadow: 0px 4px 7px 1px rgba(222, 219, 219, 1);
    position: relative;
    z-index: 1;
}

.inner-hero-sec .content-wraper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.inner-hero-sec h1 {
    padding: 8px 15px 5px;
    background-color: #FFF;
    color: var(--Primary-color);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    font-family: var(--EuclidCircularA);
    text-transform: uppercase;
    border-radius: 100px;
}

.inner-hero-sec h2 {
    font-size: 56px;
    line-height: 40px;
    font-weight: 700;
    font-family: var(--EuclidCircularA);
    color: #fff;
}

.inner-hero-sec p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--EuclidCircularA);
    color: #fff;
    max-width: 60%;
}

.blog-section {
    margin: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.blog-grid .blog-item {
    display: block;
    width: 100%;
    transition: all ease .3s;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    text-decoration: none;
}

.blog-grid .blog-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
}

.blog-grid .blog-item .thumbnail {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.blog-grid .blog-item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all ease .3s;
}

.blog-grid .blog-item:hover .thumbnail img {
    transform: scale(1.04);
}

.blog-grid .blog-item .blog-content {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-grid .blog-item .publish-date p {
    color: #767676;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    font-family: var(--EuclidCircularA);
}

.blog-grid .blog-item .title h2 {
    font-size: 20px;
    line-height: 28px;
    color: var(--Primary-color);
    font-weight: 600;
    font-family: var(--EuclidCircularA);
}

.blog-grid .blog-item .content p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-color);
    font-family: var(--EuclidCircularA);
}

.blog-pagination {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.blog-pagination .pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--Primary-color);
    border: 1px solid #d9dade;
    border-radius: 8px;
    padding: 9px 18px;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    font-family: var(--EuclidCircularA);
    text-decoration: none;
    transition: all ease .3s;
}

.blog-pagination .pagination-btn i {
    font-size: 13px;
}

.blog-pagination .pagination-btn:hover {
    background-color: var(--Secondary-color);
    color: #fff;
    border-color: var(--Secondary-color);
}

.pagination-info {
    font-size: 16px;
    line-height: 20px;
    color: #888;
    font-weight: 500;
    font-family: var(--EuclidCircularA);
}

.sgl-hero {
    background-color: var(--Primary-color);
    padding: 80px 0 32px;
    border-bottom: 1px solid #FFFFFF;
    box-shadow: 0px 4px 7px 1px rgba(222, 219, 219, 1);
    position: relative;
    z-index: 2;
}

.sgl-hero .content-wrapper {
    max-width: 1260px;
    margin: auto;
    padding-left: 80px;
}

.sgl-hero .title {
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    font-family: var(--EuclidCircularA);
    color: #fff;
    margin-bottom: 34px;
    max-width: 720px;
}

.sgl-hero .author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sgl-hero .author-info .avatar {
    width: 37px;
    height: 37px;
    overflow: hidden;
    border-radius: 50%;
    background: #fff;
    padding: 7px;
}

.sgl-hero .author-info .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sgl-hero .author-info .content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sgl-hero .author-info .content p {
    font-size: 12px;
    color: #fff;
    line-height: 16px;
    font-family: var(--EuclidCircularA);
    font-weight: 400;
}

.sgl-content {
    padding: 80px 0;
}

.sgl-content .content-wrapper {
    gap: 30px;
    display: flex;
    align-items: stretch;
}

.sgl-content .social-share {
    border: 1px solid #ebebeb;
    background: #fff;
    padding: 15px 2px 10px;
    border-radius: 5px;
    text-align: center;
    height: fit-content;
    position: sticky;
    top: 105px;
}

.sgl-content .social-share ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sgl-content .social-share ul li.share-count {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    font-family: var(--EuclidCircularA);
    color: var(--text-color);
    margin-bottom: 10px;
    display: block;
}

.sgl-content .social-share ul li {
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sgl-content .social-share ul li a {
    display: block;
    width: 26px;
    height: 26px;
}

.sgl-content .social-share ul li a svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease .3s;
}

.sgl-content .social-share ul li:hover a svg {
    opacity: 0.75;
}

.sgl-content .social-share ul li.x a svg {
    fill: #0f1419;
}
.sgl-content .social-share ul li.facebook a svg {
    fill: #0866ff;
}
.sgl-content .social-share ul li.redit a svg {
    fill: #ff5700;
}
.sgl-content .social-share ul li.linkedin a svg {
    fill: #0a66c2;
}

.sgl-content .sgl-blog-content {
    width: 57%;
    border: 1px solid #ebebeb;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

.sgl-content .sgl-blog-content img {
    max-width: 100%;
    height: auto;
}

.sgl-content .sgl-blog-content p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    font-family: var(--EuclidCircularA);
    color: var(--text-color);
}

.sgl-content .sgl-blog-content ol,
.sgl-content .sgl-blog-content ul {
    margin: 0 0 20px 40px;
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    font-family: var(--EuclidCircularA);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sgl-content .sgl-blog-content h2 {
    margin-bottom: 20px;
    margin-top: 32px;
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
    font-family: var(--EuclidCircularA);
    color: var(--Primary-color);
}

.sgl-content .sgl-blog-content h3 {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    font-family: var(--EuclidCircularA);
    color: var(--Primary-color);
}

/* ---- Editor tables (Gutenberg / classic) ---- */
.sgl-content .sgl-blog-content .table-scroll {
    overflow-x: auto;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    border-radius: 6px;
    border: 1px solid #E7E4EF;
}

.sgl-content .sgl-blog-content .table-scroll table {
    margin-bottom: 0;
    border: none;
    border-radius: 0;
}

.sgl-content .sgl-blog-content table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-family: var(--EuclidCircularA);
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid #E7E4EF;
    border-radius: 6px;
    overflow: hidden;
}

.sgl-content .sgl-blog-content th,
.sgl-content .sgl-blog-content td {
    padding: 12px 18px;
    border: 1px solid #E7E4EF;
    text-align: left;
    color: var(--text-color);
    vertical-align: top;
}

.sgl-content .sgl-blog-content thead th {
    background-color: var(--Primary-color);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

.sgl-content .sgl-blog-content tbody tr:nth-child(even) td {
    background-color: var(--accent-color);
}

.sgl-content .sgl-blog-content tbody tr:hover td {
    background-color: #F0EDF7;
}

.sgl-content .sgl-sidebar {
    width: 33%;
    position: relative;
}

.sgl-content .sgl-sidebar .feature-iamge {
    width: 100%;
    height: 215px;
    border-radius: 5px;
    overflow: hidden;
    margin-top: -250px;
    position: relative;
    z-index: 3;
}

.hero-feature-iamge {
    display: none;
}

/* Tablet ( 768-1400px ): the sidebar image's -250px overlap trick is tuned
   for desktop hero height and collides with the title once it wraps to two
   lines at narrower widths. Let it sit at its natural position instead. */
@media (min-width: 768px) and (max-width: 1400px) {
    .sgl-content .sgl-sidebar .feature-iamge {
        margin-top: 0;
    }
}

.sgl-content .sgl-sidebar .feature-iamge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sgl-content .toc-wrapper {
    padding: 40px;
}

.sgl-content .toc-wrapper p {
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    font-family: var(--EuclidCircularA);
    color: var(--Primary-color);
    margin-bottom: 20px;
}

.sgl-content .toc-wrapper #toc-list {
    list-style: none;
    border-left: 1px solid rgb(204, 211, 232);
}

.sgl-content .toc-wrapper #toc-list a {
    display: block;
    padding: 8px 0px 8px 15px;
    text-decoration: underline transparent;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    font-family: var(--EuclidCircularA);
    color: var(--Primary-color);
    position: relative;
}

.sgl-content .toc-wrapper #toc-list a::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0px;
    bottom: 8px;
    width: 2px;
    background-color: transparent;
    transition: all 0.1s linear;
}

.sgl-content .toc-wrapper #toc-list a:hover {
    color: var(--Secondary-color);
    text-decoration-color: var(--Secondary-color);
}

.sgl-content .toc-wrapper #toc-list a:hover::before {
    background-color: var(--Secondary-color);
}

.sgl-content .disclosure {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #ebebeb;
}

.sgl-content .sgl-blog-content .disclosure p {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 30px;
}

.sgl-content .disclosure .about-author {
    border-radius: 6px;
    padding: 32px;
    background-color: #f9f9f9;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.sgl-content .disclosure .about-author .author-image {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    padding: 15px;
    background-color: #fff;
}

.sgl-content .disclosure .about-author .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sgl-content .disclosure .about-author .content {
    width: 80%;
}

.sgl-content .sgl-blog-content .disclosure .about-author .content h2 {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    font-family: var(--EuclidCircularA);
    color: var(--Primary-color);
}

.sgl-content .sgl-blog-content .disclosure .about-author .content p {
    font-size: 14px;
    line-height: 22px;
}


.sgl-content .keyword-search {
    padding: 40px;
    border-radius: 5px;
    background: var(--Primary-color);
}

.sgl-content .keyword-search h4 {
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    font-family: var(--EuclidCircularA);
    color: #fff;
    margin-bottom: 20px;
}

.info-block--icon-box-1 {
    background: #f6f8ff;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 3px solid #D2DDFF;
    margin: 30px 0;
}

.info-block--icon-box-1 img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.info-block--icon-box-1 .info-block__content {
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    font-family: var(--EuclidCircularA);
    color: #1a1f3a;
}

.info-block--icon-box-1 .info-block__content a {
    text-decoration: none;
    color: var(--Secondary-color);
    transition: all ease .3s;
}

.info-block--icon-box-1 .info-block__content a:hover {
    color: var(--Primary-color);
}

.info-block--email-capture-2 {
    padding: 32px;
    margin: 30px 0;
    background-color: var(--Primary-color);
    border-radius: 5px;
}

.audit-block h4 {
    margin-bottom: 15px;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    font-family: var(--EuclidCircularA);
    color: #fff;
}

.audit-block h4 span {
    color: var(--Secondary-color);
}

.audit-block-title {
    margin-bottom: 15px;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    font-family: var(--EuclidCircularA);
    color: var(--Primary-color);
}

.sgl-content .sgl-blog-content .audit-block p {
    margin: 0;
    color: #fff;
}

.audit-block .images {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.audit-block .images img {
    height: 25px;
}

.audit-block form,
#audit_div {
    margin: 32px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
}

.audit-block input[type="email"] {
    background-color: #fff;
    border: 1px solid #fff;
    width: 100%;
    padding: 16px 20px;
    border-radius: 6px;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--EuclidCircularA);
    font-weight: 400;
}

.audit-block input[type="email"]::placeholder {
    color: var(--text-color);
}

.audit-block input[type="submit"] {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    font-family: 'EuclidCircularA';
    background: var(--Secondary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 19px 40px;
    cursor: pointer;
    text-align: center;
}

#pricing_submit:disabled,
#audit_div_submit:disabled {
    cursor: not-allowed;
}

.info-block--email-capture-1 {
    border: 1px solid #d9dade;
    border-radius: 6px;
    padding: 32px;
    background-color: #f9f9f9;
    margin: 30px 0;
}

.sgl-content .sgl-blog-content .audit-block.info-block--email-capture-1 p {
    color: var(--Primary-color);
}

.info-block--email-capture-1 .header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: space-between;
}

.info-block--email-capture-1 .header img {
    width: 230px;
    border-radius: 6px;
}

.info-block--email-capture-1 .header .content {
    max-width: 325px;
}

.audit-block.info-block--email-capture-1 form input[type="email"] {
    border: 1px solid #d9dade;
}

.sgl-sidebar .info-block--email-capture-1 {
    position: sticky;
    top: 105px;
}

.sgl-sidebar .info-block--email-capture-1 .header {
    flex-direction: column;
}

.sgl-sidebar .info-block--email-capture-1 .header img {
    margin: auto;
}

.sgl-sidebar .audit-block form {
    flex-direction: column;
    margin-bottom: 0;
}

.sgl-sidebar .audit-block input[type="submit"] {
    width: 100%;
}

.sgl-sidebar .audit-block .images {
    display: none;
}

#audit_form_popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.8);
    z-index: 9999;
}

#audit_form_popup .popup-wrapper {
    background: #fff;
    max-width: 550px;
    width: 90%;
    margin: auto;
    padding: 30px;
    border-radius: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#audit_form_popup .popup-wrapper .close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--Secondary-color);
}

#audit_form_popup .popup-wrapper .close::after {
    content: '✕';
    font-size: 15px;
    color: #fff;
    font-weight: 700;
}

#audit_form_popup input[type="text"] {
    border: 1px solid #d9dade;
    background-color: #fff;
    width: 100%;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--EuclidCircularA);
    font-weight: 400;
}

#audit_form_popup .field-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
}

#audit_form_popup button {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    font-family: 'EuclidCircularA';
    background: var(--Secondary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 19px 40px;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

@media (max-width: 767px) {
    .inner-hero-sec {
        padding: 30px 10px;
    }

    .inner-hero-sec h2 {
        font-size: 30px;
        line-height: 44px;
    }

    .inner-hero-sec p {
        font-size: 16px;
        line-height: 28px;
        max-width: 100%;
    }

    .inner-hero-sec h1 {
        padding: 4px 15px 2px;
        font-size: 12px;
        line-height: 24px;
    }
    .blog-section {
        margin: 50px 0;
        padding: 0 24px;
    }
    .blog-pagination {
        margin-top: 40px;
        gap: 10px;
    }
    .blog-pagination .pagination-btn {
        gap: 8px;
        padding: 8px 12px;
        font-size: 14px;
    }
    .pagination-info {
        font-size: 14px;
    }
    .blog-grid .blog-item .thumbnail {
        height: 210px;
    }
    .blog-grid .blog-item .title h2 {
        font-size: 18px;
        line-height: 26px;
    }
    .blog-grid .blog-item .content p {
        font-size: 14px;
        line-height: 24px;
    }
    .sgl-hero .title {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 28px;
    }
    .sgl-hero {
        padding: 30px 20px 180px;
    }
    .sgl-hero .content-wrapper {
        padding-left: 0;
    }
    .hero-feature-iamge {
        display: block;
        margin-top: -160px;
        padding: 20px;
        position: relative;
        z-index: 3;
        width: 100%;
        height: 215px;
        overflow: hidden;
    }
    .hero-feature-iamge img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }
    .sgl-content .content-wrapper {
        gap: 0;
        flex-direction: column;
        padding: 30px 20px;
    }
    .sgl-content .social-share {
        display: none;
    }
    .sgl-content {
        padding: 0;
    }
    .sgl-content .sgl-blog-content {
        width: 100%;
        padding: 0;
        border-radius: 0;
        background: transparent;
        border: none;
    }
    .sgl-content .sgl-blog-content table {
        font-size: 14px;
        min-width: 420px;
    }
    .sgl-content .sgl-blog-content th,
    .sgl-content .sgl-blog-content td {
        padding: 10px 12px;
    }
    .sgl-content .sgl-blog-content thead th {
        font-size: 13px;
    }
    .sgl-content .disclosure .about-author {
        padding: 20px;
        gap: 15px;
        flex-direction: column;
    }
    .sgl-content .disclosure .about-author .author-image {
        width: 70px;
        height: 70px;
        padding: 12px;
    }
    .sgl-content .disclosure .about-author .content {
        width: 100%;
    }
    .sgl-content .sgl-sidebar {
        width: 100%;
    }
    .sgl-content .sgl-sidebar .feature-iamge {
        display: none;
    }
    .sgl-content .toc-wrapper {
        padding: 40px 20px;
        display: none;
    }
    .info-block--email-capture-1 {
        padding: 20px;
        margin: 30px 0;
    }
    .info-block--email-capture-1 .header {
        gap: 24px;
        flex-direction: column;
    }
    .audit-block h4 {
        margin-bottom: 10px;
        font-size: 24px;
        line-height: 32px;
    }
    .audit-block-title {
        margin-bottom: 10px;
        font-size: 24px;
        line-height: 32px;
    }
    .info-block--email-capture-1 .header img {
        width: 230px;
        margin: auto;
    }
    .audit-block form, #audit_div {
        margin: 32px 0 0;
        padding: 0;
        flex-direction: column;
    }
    .audit-block input[type="email"] {
        padding: 12px 15px;
        font-size: 14px;
        line-height: 22px;
    }
    .audit-block input[type="submit"] {
        font-size: 14px;
        padding: 14px 35px;
        width: 100%;
    }
    .audit-block .images {
        display: none;
    }
    .info-block--icon-box-1 {
        padding: 20px;
        gap: 16px;
        margin: 30px 0;
        flex-direction: column;
        align-items: flex-start;
    }
    #audit_form_popup .field-group {
        gap: 16px;
        margin: 16px 0;
        flex-direction: column;
    }
    #audit_form_popup .popup-wrapper {
        padding: 35px 25px 25px;
    }
    #audit_form_popup .popup-wrapper .close {
        top: 10px;
        right: 10px;
        width: 25px;
        height: 25px;
    }
    #audit_form_popup .popup-wrapper .close::after {
        font-size: 12px;
    }
}


/* Floating CTA (Instagram News articles only): pinned bottom-left on
   desktop so it doesn't overlap the chat widget on the right; centered
   on mobile, raised above the Intercom launcher bubble. Hidden until the
   visitor scrolls past 10% of the page and has made a cookie-consent
   choice (custom.js toggles .is-visible). Markup is injected
   conditionally in footer.php. Duplicated from internal.css since blog
   posts load blog.css, not internal.css. */
.gv-floating-cta {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 950;
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--Primary-color);
    padding: 14px 16px 14px 22px;
    border-radius: 5px;
    box-shadow: 0 12px 30px rgba(34, 19, 58, .25);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity ease .3s, visibility ease .3s;
}

.gv-floating-cta.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gv-floating-cta__text {
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    font-family: var(--EuclidCircularA);
    color: #fff;
    white-space: nowrap;
}

.gv-floating-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 22px;
    border-radius: 5px;
    background: var(--Secondary-color);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--EuclidCircularA);
    text-decoration: none;
    white-space: nowrap;
    transition: all ease .3s;
}

.gv-floating-cta__btn:hover {
    opacity: .85;
}

@media (max-width: 767px) {
    .gv-floating-cta {
        left: 50%;
        transform: translateX(-50%);
        bottom: 90px;
        width: calc(100% - 32px);
        max-width: 380px;
        justify-content: center;
        padding: 12px 16px;
    }

    .gv-floating-cta__text {
        font-size: 14px;
    }
}
