@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --body-fonts: 'Montserrat', sans-serif;
    --secondary-fonts: 'Montserrat', sans-serif;
    --color-primary: #DC110B;
    --color-primary-light: #f1807d;
    --color-secondary: #F6ECB7;
    --body-text-light: #8184a3;
    --body-text-dark: #14142b;
    --color-white: #ffffff;
    --shadow-default-card: rgba(8, 15, 52, .03);
    --shadow-style-1-card: rgba(31, 37, 89, .08);
}


body {
    font-family: var(--body-fonts) !important;
    color: var(--body-text-light);
}

/*--- Override Colors Start ---*/
.w-nav-menu li a,
h1,
.title.hero,
.split-content-wrapper .text-200.icon-text,
body h3,
body h5 {
    color: var(--body-text-dark);
}

.w-nav-menu li a:hover {
    color: var(--body-text-light);
}

.hero p,
section h2 {
    color: var(--body-text-dark) !important;
}

.footer-input .footer-content-top p {
    color: var(--color-white) !important;
}

.features-tabs-section .section-title h2 {
    color: var(--color-primary) !important;
}

.text-200.link.footer-nav-link,
.footer-nav li a {
    color: var(--body-text-light);
}

@media (min-width: 992px) {

    .blue-background .perks-left p,
    .blue-background h2 {
        color: var(--color-white) !important;
    }
}

/*--- Override Colors End ---*/



a:hover {
    text-decoration: none;
}


.dropdown-arrow {
    transition: 0.25s all ease-in-out;
    font-size: 14px;
}

.header-logo {
    width: 150px;
}

body li>.header-link:hover {
    color: var(--neutral-500);
}

.header-link {
    text-transform: capitalize;
}

.dropdown-nav-main-wrapper {
    padding: 40px;
}

.social-list {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}

.social-list a {
    color: #ffffff;
    font-size: 30px;
}

.pb-0 {
    padding-bottom: 0 !important;
}

p:last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .pb-lg-0 {
        padding-bottom: 0 !important;
    }
}

html body .section.hero,
body .section.contact-form-v3 {
    background-image: none !important;
    background-color: #0a0a0a !important;
}

body .triangle-top-right.gradient-secondary-3 {
    background-image: none !important;
}


.header.not-homepage .header-navigation,
.header.not-homepage .menu-button.w-nav-button {
    display: none;
}

@media (min-width: 768px) {
    .header.not-homepage .button-primary.small.header-button.headerhome-btn {
        display: flex !important;
        background-color: var(--color-primary);
        box-shadow: none;
        background-image: url(../images/home-icon.png);
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: 30px 27px;
        border-width: 0;
        align-self: stretch;
        margin-right: 20px;
        transform: none;
    }
}

.header {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header .header-link {
    color: var(--supporting-color-25);
}

/*--- Features Tabs Section Style Start ---*/


.section-title span {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 700;
    display: flex;
    position: relative;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.section-title span:before {
    content: "";
    width: 100px;
    height: 2px;
    background-color: #D8D8D8;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-primary);
    margin-bottom: 50px;
}

.section-title p {
    font-size: 18px;
    color: var(--body-text-dark);
    line-height: 1.5;
    text-align: justify;
}

.tabs-row {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-bottom: 150px;
}

.tab-pane {
    display: none;
    min-height: 370px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.tab-pane.show.active {
    display: block;
    opacity: 1;
}

.features-tabs-section .section-title,
.features-tabs-section .tab-content {
    max-width: 45%;
    width: 100%;
}

.tabs-inner-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.tabs-inner-row>div {
    width: 100%;
}

.tab-content {
    text-align: center;
}

.tab-content p {
    font-size: 18px;
    color: var(--body-text-dark);
    line-height: 1.5;
    text-align: justify;
}

.tab-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color-primary);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}

.tab-icon img {
    width: 60%;
}

.tab-icon svg {
    width: 70px;
    height: 70px;
}

.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: none;
    margin: 50px 0 0 0;
    padding: 0;
    gap: 50px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.nav-tabs li {
    margin-bottom: 0;
    text-align: center;
}

.nav-tabs .nav-link {
    background-color: transparent;
    border: none;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    color: var(--body-text-dark);
    line-height: 1.5;
    transition: 0.35s all ease-in-out;
}

.nav-tabs .nav-link .tab-icon-sm {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    border-radius: 50%;
    border: 3px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #A6A2A2;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 7px;
    transition: 0.35s all ease-in-out;
}

.nav-tabs .nav-link .tab-icon-sm svg {
    width: 30px;
    height: 30px;
}

.nav-tabs .nav-link:hover {
    color: var(--body-text-dark);
}

.nav-tabs .nav-link.active .tab-icon-sm,
.nav-tabs .nav-link:hover .tab-icon-sm {
    background-color: var(--color-primary);
}

/*--- Features Tabs Section Style End ---*/

/*--- Web Text Section Style Start ---*/
.web-text-section {
    padding: 100px 0;
}

.text-sidebar {
    position: sticky;
    top: 100px;
    padding-bottom: 30px;
}

.text-sidebar a {
    font-weight: 700;
}

.text-sidebar ul {
    padding-left: 0 !important;
    list-style-type: none !important;
}

.text-sidebar a:hover {
    text-decoration: underline;
}

.web-text-section .text-sidebar li+li {
    margin-top: 12px;
}

.web-text-section h2,
.web-text-section h3,
.web-text-section h4 {
    font-family: var(--body-fonts);
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--body-text-dark);
}
.web-text-section p strong,
.web-text-section p b {
    color: var(--body-text-dark);
    font-weight: 700;
}

.web-text-section p,
.web-text-section li {
    font-size: 1.125rem;
}

.web-text-section p+h3,
.web-text-section p+h4 {
    margin-top: 35px;
}

.web-text-section ul {
    padding-left: 30px;
    list-style-type: disc;
    margin-bottom: 30px;
}

.web-text-section ul ul {
    list-style-type: circle;
    padding-top: 20px;
}

.web-text-section li+li {
    margin-top: 15px;
}

.web-text-section li p:first-child {
    margin-bottom: 3px;
}

.web-text-section .table {
    margin-bottom: 35px;
}

.web-text-section table thead {
    vertical-align: middle;
}

.web-text-section table thead tr {
    border: none;
}

.web-text-section table th {
    border-bottom: none;
}

.web-text-section table {
    margin-bottom: 35px;
}

.web-text-section table th,
.web-text-section table th p,
.web-text-section table td p {
    color: var(--body-text-dark);
}

.web-text-section table {
    border-collapse: collapse;
    border-spacing: 0;
}

.web-text-section table> :not(caption)>*>* {
    padding: .75rem;
}

.web-text-section table th {
    font-size: 20px;
}

.web-text-section table th:last-child {
    min-width: 210px;
}

.web-text-section .text-main-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.web-text-section .text-main-content a:hover {
    text-decoration: none;
}

table {
    color: #212529;
    vertical-align: top;
    border: 1px solid #dee2e6;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

.table-bordered> :not(caption)>* {
    border-width: 1px 0;
}

.table-bordered> :not(caption)>* {
    border-width: 1px 0;
}

.table-bordered> :not(caption)>*>* {
    border-width: 0 1px;
}


/*--- Web Text Section Style End ---*/
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.row>* {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
}

.mt-5 {
    margin-top: 3rem !important;
}

@media (min-width: 992px) {
    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .order-lg-first {
        order: -1 !important;
    }

    .mt-lg-0 {
        margin-top: 0 !important;
    }
}


.pr-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.p-logo {
    width: 100%;
    max-width: 200px;
    flex: 0 0 200px;
    display: block;
    margin-top: 15px;
}

.footer-content-bottom .footer-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-content-bottom .footer-nav a {
    font-weight: 400;
}

.footer-content-bottom .footer-nav a:hover {
    text-decoration: underline;
}


@media (min-width: 992px) {
    .w-dropdown-list {
        display: block !important;
        visibility: hidden;
        z-index: -1;
        opacity: 0;
        top: calc(100% + 10px);
        transition: 0.2s all ease-in-out;
    }

    .nav-link-dropdown:hover .dropdown-arrow {
        transform: rotate(-180deg);
    }

    .nav-link-dropdown:hover .w-dropdown-list,
    .nav-link-dropdown .w-dropdown-list:hover {
        visibility: visible;
        z-index: 10;
        opacity: 1;
        top: 100%;
    }
}


@media (max-width: 991px) {
    .nav-menu-mobile {
        border: 0px solid var(--neutral-300);
        background-color: var(--color-primary);
        padding: 36px 24px;
        box-shadow: 0 4px 10px rgba(74, 58, 255, .18);
        position: absolute;
        top: calc(100% - 50px);
        left: 0;
        width: 100%;
        visibility: hidden;
        opacity: 0;
        transition: 0.2s all ease-in-out;
        z-index: -1;
    }

    .nav-menu-mobile.show {
        top: 100%;
        visibility: visible;
        opacity: 1;
        z-index: 10;
    }

    header .w-dropdown-list {
        visibility: visible;
        z-index: 5;
        position: relative;
        opacity: 1;
        left: 0;
        top: 0 !important;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        max-height: 0;
        height: 100%;
    }

    .dropdown-nav-main-wrapper {
        padding: 20px 0;
    }

    .w-dropdown-toggle.active .dropdown-arrow {
        transform: rotate(-180deg);
    }

    .split-content.header-right {
        z-index: 10;
        position: relative;
    }

    .menu-button .icon-wrapper {
        justify-content: center;
        gap: 5px;
    }

    .menu-button.active {
        background-color: #b70a05;
    }

    .menu-button.active .icon-wrapper>div {
        display: none;
    }

    .menu-button.active .icon-wrapper .header-menu-button-icon-medium {
        display: block;
    }

    .button-primary.small.header-button.headerhome-btn.w--current {
        align-self: inherit;
    }

    .dropdown-nav-pages-wrapper {
        margin-bottom: 0;
        margin-right: 0;
    }

    .header .header-link {
        color: #ffffff;
    }

    .table-responsive-lg {
        overflow: auto;
    }

    .web-text-section .table {
        width: 767px;
    }

    .nav-tabs {
        gap: 20px;
    }

    .tabs-row {
        padding-bottom: 120px;
    }

    .nav-item img {
        width: 55%;
    }
}

@media (max-width: 767px) {
    .content-top.margin-bottom-40px.max-width-474px {
        margin-left: 20px;
        margin-right: 20px;
    }

    .split-content.contact-form-v3-left {
        margin-bottom: 0;
    }

    .contact-block {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .pr-row {
        flex-direction: column;
    }

    .p-logo {
        flex: 0 0 auto;
        margin-top: 0;
    }

    .tabs-row {
        flex-wrap: wrap;
    }

    .features-tabs-section .section-title,
    .features-tabs-section .tab-content {
        max-width: 100%;
    }

    .features-tabs-section .tab-content {
        margin-top: 35px;
    }

    .tab-icon {
        width: 80px;
        height: 80px;
    }

    .tab-icon svg {
        width: 50px;
        height: 50px;
    }

    .tab-pane {
        min-height: auto;
        height: 330px;
    }

    .nav-tabs {
        gap: 10px;
    }

    .nav-tabs .nav-link .tab-icon-sm {
        width: 50px;
        height: 50px;
    }

    .nav-tabs .nav-link {
        font-size: 16px;
        padding: 0;
    }

    .nav-tabs .nav-link .tab-icon-sm svg {
        width: 25px;
        height: 25px;
    }

    .section-title h2 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .footer-content-bottom .footer-nav {
        flex-wrap: wrap;
    }

    .web-text-section {
        padding: 60px 0;
    }
}

@media (max-width: 479px) {
    .footer-content-bottom .footer-nav {
        text-align: left;
        align-items: flex-start;
    }

    .ft-tab-img {
        margin-bottom: 50px;
    }

    .nav-tabs .nav-link {
        font-size: 12px;
        white-space: nowrap;
    }

    .nav-tabs .nav-link .tab-icon-sm {
        width: 45px;
        height: 45px;
    }

    .nav-tabs .nav-link .tab-icon-sm svg {
        width: 22px;
        height: 22px;
    }
}

body, .page-wrapper {
    background-color: #000000 !important;
    color: #ffffff !important;
}

h1, h2, h3, h4, h5, h6, p {
    color: #ffffff !important;
}

.header {
    background-color: #000000 !important;
}

.header {
    border-bottom: 2px solid #00bcd4 !important;
    box-shadow: 0 2px 20px rgba(0, 188, 212, 0.6) !important;
}

/* Cyan neon section dividers */
.section {
    border-bottom: 1px solid #00bcd4 !important;
    box-shadow: 0 2px 15px rgba(0, 188, 212, 0.4) !important;
}

.section.hero {
    position: relative !important;
    overflow: hidden !important;
}

/* Contact info boxes */
a.card.style-9.card-link {
    background-color: #0a0a0a !important;
    border: 1px solid #00bcd4 !important;
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.2) !important;
    border-radius: 8px !important;
}

/* Icons inside - change red to cyan */
a.card.style-9.card-link img,
a.card.style-9.card-link svg {
    filter: brightness(0) saturate(100%) invert(72%) sepia(98%) saturate(400%) hue-rotate(145deg) !important;
}

/* Text inside */
a.card.style-9.card-link p,
a.card.style-9.card-link span {
    color: #ffffff !important;
}

/* Contact page form only */
.contact-form-v3 .card.style-1.contact-form-card {
    background-color: #000000 !important;
    border: 1px solid #00bcd4 !important;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.3) !important;
}

@media (max-width: 768px) {
    /* Contact info boxes mobile */
    a.card.style-9.card-link {
        background-color: #0a0a0a !important;
        border: 1px solid #00bcd4 !important;
        box-shadow: 0 0 10px rgba(0, 188, 212, 0.2) !important;
        border-radius: 8px !important;
    }

    a.card.style-9.card-link img,
    a.card.style-9.card-link svg {
        filter: brightness(0) saturate(100%) invert(72%) sepia(98%) saturate(400%) hue-rotate(145deg) !important;
    }

    a.card.style-9.card-link p,
    a.card.style-9.card-link span {
        color: #ffffff !important;
    }

    /* Contact form mobile */
    .contact-form-v3 .card.style-1.contact-form-card {
        background-color: #000000 !important;
        border: 1px solid #00bcd4 !important;
        box-shadow: 0 0 15px rgba(0, 188, 212, 0.3) !important;
    }
}

/* Montserrat for body content only */
p, li, label, input, select, textarea, 
.text-200, span:not(.button-text) {
    font-family: 'Montserrat', sans-serif !important;
}

body, .page-wrapper {
    overflow-x: hidden !important;
}

/* Services/Features section fix */
.features-tabs-section p,
.features-tabs-section .tab-content p,
.section-title p {
    text-align: left !important;
}

/* Fix large icon size */
.features-tabs-section .tab-icon {
    width: 80px !important;
    height: 80px !important;
}

.features-tabs-section .tab-icon svg,
.features-tabs-section .tab-icon img {
    width: 45px !important;
    height: 45px !important;
}

/* Bottom tab icons alignment */
.nav-tabs {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 30px !important;
}

.nav-tabs .nav-link {
    font-size: 14px !important;
    text-align: center !important;
}

/* Section title heading alignment */
.features-tabs-section .section-title h2 {
    text-align: left !important;
    font-size: 40px !important;
}

/* Mobile fix */
@media (max-width: 768px) {
    .features-tabs-section p {
        text-align: left !important;
    }
    .tabs-row {
        flex-direction: column !important;
    }
    .features-tabs-section .section-title,
    .features-tabs-section .tab-content {
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    .tabs-row {
        flex-direction: column !important;
        padding-bottom: 0 !important;
    }

    .nav-tabs {
        position: relative !important;
        left: auto !important;
        transform: none !important;
        bottom: auto !important;
        margin-top: 30px !important;
        padding: 0 15px !important;
        gap: 15px !important;
        flex-wrap: wrap !important;
    }

    .features-tabs-section .section-title,
    .features-tabs-section .tab-content {
        max-width: 100% !important;
        width: 100% !important;
    }

    .tab-pane {
        height: auto !important;
        min-height: auto !important;
    }

    .nav-tabs .nav-link {
        font-size: 11px !important;
        white-space: normal !important;
        max-width: 70px !important;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif !important;
}