.contact-vinculum {
        background: linear-gradient(to right, 
            #010101,
            #010101,
            #01000a,
        );   
}


/* ------------------- */
/* S1 CONTACT vinculum */
/* ------------------- */
.s1-container-vc {
    height: 99.9vh;
    position: relative;
    background: #00000000;
    border-bottom: 1px solid #007fc8;
    padding-top: 6.5rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 2rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}


.vc-bg-1 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.s1-container-vc::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0,0,0, 0.7) 30%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0,0,0,0) 100%
    );
    pointer-events: none;
}

.s1-container-vc > *:not(.vc-bg-1) {
    z-index: 2;
}

.vc-title {
    font-family: serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #cecece;
    text-align: center;
}

@media (min-width:768px) {
    .vc-title {
        font-size: 5rem;
        text-align: left;
        margin-left: 10rem;
    }
}

@media (min-width: 1920px) {
    .vc-title {
        font-size: 10rem;
        margin-left: 8rem;
    }
}

.vc-title em {
    font-style: italic;
    color: #276dc9;
}

.vc-description {
    font-size: 1rem;
    color: #cecece;
    letter-spacing: 0.1rem;
    font-weight: 300;
    line-height: 1.9;
    margin: 0;
    text-align: left;
    background: #00012947;
    border: 1px solid #030020;
    border-radius: 0.1rem;
    padding: 0.5rem 1rem;
}

@media (min-width:768px) {
    .vc-description {
        font-size: 1.5rem;
        text-align: center;
        width: 70%;
        padding: 0.5rem 1rem;
    }
}

@media (min-width: 1920px) {
    .vc-description {
        font-size: 2.5rem;
    }
}

.vc-badge-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.vc-badge-row > *:last-child{
    grid-column: 1 / -1;
    justify-self: center;  
}

@media (min-width:768px) {
    .vc-badge-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 70%;
    }
}


.contact-vinculum-btn:active {
    transform: translateY(0);
}

.vc-down-button-container {
    position: absolute;
    bottom: 0;
    right: 40%;
    width: fit-content;
    z-index: 10;
}

@media (min-width: 768px) {
    .vc-down-button-container {
        left: 50%;
    }
}

.vc-down-button {
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid #00000000;
    border-radius: 50%;
    padding: 0.5rem;
    animation: bounce-arrow 5s infinite;
}

.vc-down-button img {
    width: 2rem;
    height: 2rem;
    filter: invert(1);
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-0.5rem);
    }
    60% {
        transform: translateY(-0.25rem);
    }
}


/* ------------------- */
/* S2 CONTACT vinculum */
/* ------------------- */
.s2-container-vc {
    background: #00000000;
    border-image: linear-gradient(
    to right,
    transparent,
    #007fc8,
    transparent
    ) 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 2rem;
    scroll-margin-top: 80px;
}

@media (min-width: 768px) {
    .s2-container-vc {
        width: 80%;
        justify-self: center;
    }
}

.s2-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 300;
    color: #00aac8;
    line-height: 1.05;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

@media (min-width: 1919px) {
    .s2-title {
        font-size: 1.6rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

.contact-vinculum-button-container {
    display: flex;
    justify-content: center;    
}

.contact-vinculum-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.8rem;
    padding-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #f5d76e;
    border: 2px solid #c9a227;
    border-radius: 50px;
    background: linear-gradient(
        135deg,
        rgba(20,20,20,0.95),
        rgba(40,40,40,0.95)
    );
    box-shadow:
        0 0 10px rgba(201,162,39,0.2),
        0 0 20px rgba(201,162,39,0.1);
    transition: all 0.35s ease;
    overflow: hidden;
}

@media (min-width: 768px) {
    .contact-vinculum-btn {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        padding-bottom: 0.6rem;
    }
}

.contact-vinculum-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,215,0,0.3),
        transparent
    );
    transition: all 0.6s ease;
}

.contact-vinculum-btn:hover::before {
    left: 120%;
}

.contact-vinculum-btn:hover {
    color: #000;
    background: linear-gradient(
        135deg,
        #ffd700,
        #c9a227
    );
    box-shadow:
        0 0 15px rgba(255,215,0,0.5),
        0 0 30px rgba(255,215,0,0.3),
        0 0 50px rgba(255,215,0,0.2);
    transform: translateY(-3px);
}


/* ------------------------------------- */
/* S3 CONTACT VINCULUM */
/* ------------------------------------- */
.s3-container-vc {
    background: #00000000;
    border-bottom: 1px solid #007fc8;
    border-image: linear-gradient(
    to right,
    transparent,
    #007fc8,
    transparent
    ) 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 2rem;
}

@media (min-width: 768px) {
    .s3-container-vc {
        width: 80%;
        justify-self: center;
    }
}

.vc-enterprise-header {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.vc-enterprise-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #00000086;
    border: 1px solid #000000;
    border-radius: 0.5rem;
    color: #00aac8;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
}

@media (min-width: 1919px) {
    .vc-enterprise-label {
        font-size: 1rem;
    }
}

.vc-enterprise-header h2 {
    margin-top: 1.5rem;
    font-size: 4rem;
    font-weight: 300;
    color: white;
}

.vc-enterprise-header h2 em {
    color: #00aac8;
    font-style: italic;
}

.vc-enterprise-header p {
    margin: 2rem;
    color: #bdbdbd;
    line-height: 1.5;
    font-size: 1.5rem;
    text-align: justify;
    hyphens: auto;
}

@media (min-width: 1919px) {
    .vc-enterprise-header p {
        margin: 0;
        justify-self: center;
        font-size: 1.5rem;
        width: 100%;
    }
}

.vc-enterprise-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .vc-enterprise-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 4rem;
    }
}

.vc-enterprise-card {
    background: rgba(0, 35, 37, 0.33);
    border: 1px solid rgb(6, 0, 26);
    padding: 1rem;
    transition: all .35s ease;
}

.vc-enterprise-card:hover {
    transform: translateY(-6px);
    border-color: rgb(0, 74, 172);
}

.vc-enterprise-icon-container {
    display: flex;
    justify-content: center;
}

.vc-enterprise-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    filter: invert(24%) sepia(86%) saturate(2873%) hue-rotate(257deg) brightness(92%) contrast(94%);
    border: 1px solid rgb(6, 0, 26);
    border-radius: 50%;
}

.vc-enterprise-card h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: .05em;
    text-align: left;
}

@media (min-width: 768px) {
    .vc-enterprise-card h3 {
        text-align: center;
    }
}

@media (min-width: 1919px) {
    .vc-enterprise-card h3 {
        font-size: 1.5rem;
    }
}

.vc-enterprise-card p {
    color: #a5a5a5;
    line-height: 1.8;
    text-align: left;
}

@media (min-width: 768px) {
    .vc-enterprise-card p {
        text-align: justify;
    }
}

@media (min-width: 1919px) {
    .vc-enterprise-card p {
        font-size: 1.5rem;
        text-align: center;
    }
}

.vc-enterprise-footer {
    margin-top: 2rem;
    text-align: center;
}

.vc-enterprise-footer span {
    display: inline-block;
    padding: 14px 28px;
    background: #00000038;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #00e1ff;
    letter-spacing: 0.1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
}

@media (min-width: 1919px) {
    .vc-enterprise-footer span {
        font-size: 1rem;
    }
}

/* ------------------------------------- */
/* S4 CONTACT VINCULUM */
/* ------------------------------------- */
.s4-container-vc {
    background: #00000000;
    border-bottom: 1px solid #0089c8;
    border-image: linear-gradient(
    to right,
    transparent,
    #007fc8,
    transparent
    ) 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 2rem;
}

@media (min-width: 768px) {
    .s4-container-vc {
        width: 80%;
        justify-self: center;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

.s4-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
    color: #00aac8;
    line-height: 1.05;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

@media (min-width: 1919px) {
    .s4-title {
        font-size: 1.6rem;
    }
}

.vc-pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.vc-pricing-table th {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: #ff9100;
    text-transform: uppercase;
    text-align: left;
    padding: 10px 14px;
    border-bottom: 0.5px solid #c9a84c22;
    font-weight: 500;
}

@media (min-width: 1919px) {
    .vc-pricing-table th {
        font-size: 1.2rem;
    }
}

.vc-pricing-table td {
    font-size: 1rem;
    color: #cecece;
    padding: 13px 14px;
    border-bottom: 0.5px solid #9e9e9e11;
    font-weight: 300;
    vertical-align: middle;
}

@media (min-width: 1919px) {
    .vc-pricing-table td {
        font-size: 1.5rem;
    }
}

.vc-pricing-table tr:last-child td {
    border-bottom: none;
}
.vc-pricing-table td:first-child {
    color: #ffffff;
    font-weight: 400;
}
.vc-pricing-table td:nth-child(2) {
    color: #ff9100;
    font-size: 17px;
}

@media (max-width: 768px) {
    .vc-pricing-table th:nth-child(3),
    .vc-pricing-table td:nth-child(3),
    .vc-pricing-table th:nth-child(4),
    .vc-pricing-table td:nth-child(4) {
        display: none;
    }
}

.vc-pricing-table tr {
    transition: background 0.2s;
}
.vc-pricing-table tbody tr:hover {
    background: #c9a84c06;
}

.free {
    font-size: 1rem;
    padding: 0.2rem 0.5rem;
    margin-left: 1rem;
    color: #b1b1b1;
    border: 1px solid #b1b1b1;
}

.popular {
    font-size: 1rem;
    padding: 0.2rem 0.5rem;
    margin-left: 1rem;
    color: #ff0000;
    border: 1px solid #ff0000;
}

.unlimited {
    font-size: 1.5rem;
    padding: 0rem 0.5rem;
    margin-left: 1rem;
    color: #fffb00;
    border: 1px solid #ffc400;
}

/* ------------------------------------- */
/* S5 CONTACT VINCULUM */
/* ------------------------------------- */
.s5-container-vc {
    background: #00000000;
    border-bottom: 1px solid #007fc8;
    border-image: linear-gradient(
    to right,
    transparent,
    #007fc8,
    transparent
    ) 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 2rem;
}

@media (min-width: 768px) {
    .s5-container-vc {
        width: 80%;
        justify-self: center;
    }
}

.s5-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
    color: #00aac8;
    line-height: 1.05;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

@media (min-width: 1919px) {
    .s5-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
}

.vc-grid-4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.vc-num-card {
    background: #0a0a0a;
    border: 0.5px solid #c9a84c22;
    padding: 1.4rem 1rem;
    text-align: center;
}

.vc-num-value {
    font-size: 32px;
    font-weight: 300;
    color: #ff3300;
    display: inline;
}

@media (min-width: 1919px) {
    .vc-num-value {
        font-size: 2.5rem;
    }
}

.vc-num-suffix {
    font-size: 22px;
    color: #ff3300;
    opacity: 0.7;
}

.vc-num-label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    color: #cecece;
    text-transform: uppercase;
    margin-top: 8px;
}

@media (min-width: 1919px) {
    .vc-num-label {
        font-size: 1rem;
    }
}

/* ------------------------------------- */
/* S6 CONTACT VINCULUM */
/* ------------------------------------- */
.s6-container-vc {
    background: #00000000;
    border-bottom: 1px solid #007fc8;
    border-image: linear-gradient(
    to right,
    transparent,
    #007fc8,
    transparent
    ) 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 2rem;
}

@media (min-width: 768px) {
    .s6-container-vc {
        width: 80%;
        justify-self: center;
    }
}

.s6-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
    color: #00aac8;
    line-height: 1.05;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

@media (min-width: 1919px) {
    .s6-title {
        font-size: 1.6rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

.vc-grid-2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .vc-grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.vc-card {
    background: #111111;
    padding: 1.6rem;
    position: relative;
}

.vc-card-corner::before,
.vc-card-corner::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: #00eeff;
    border-style: solid;
}

.vc-card-corner::before {
    top: 0;
    left: 0;
    border-width: 1px 0 0 1px;
}

.vc-card-corner::after {
    bottom: 0;
    right: 0;
    border-width: 0 1px 1px 0;
}

.vc-card-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: #cecece;
    margin-bottom: 0.6rem;
}

@media (min-width: 1919px) {
    .vc-card-title {
        font-size: 2.5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

.vc-card-title--sm {
    font-size: 17px;
}

.vc-card-title em {
    font-style: italic;
    color: #006eff;
}

.vc-card-body {
    font-size: 1rem;
    color: #cecece;
    line-height: 1.9;
    font-weight: 300;
}

@media (min-width: 1919px) {
    .vc-card-body {
        font-size: 1.5rem;
    }
}


/* ------------------------------------- */
/* S7 CONTACT VINCULUM */
/* ------------------------------------- */
.s7-container-vc {
    background: #00000000;
    border-bottom: 1px solid #007fc8;
    border-image: linear-gradient(
    to right,
    transparent,
    #007fc8,
    transparent
    ) 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 2rem;
}

@media (min-width: 768px) {
    .s7-container-vc {
        width: 80%;
        justify-self: center;
    }
}

.s7-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
    color: #00aac8;
    line-height: 1.05;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

@media (min-width: 1919px) {
    .s7-title {
        font-size: 1.6rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

.vc-tag-cloud {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: fit-content;
    justify-self: center;
    margin-bottom: 4rem;
    text-align: center;
}

@media (min-width:768px) {
    .vc-tag-cloud {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        margin: 3rem;
    }
}

.vc-badge,
.vc-tag {
    border: 0.5px solid #00161f;
    background: #003d4718;
    color: #007fc8;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.3rem 0.5rem;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    align-self: center;
}

@media (min-width:768px) and (max-width: 1919px) {
    .vc-badge,
    .vc-tag {
        font-size: 1rem;
        white-space: nowrap;
    } 
}

@media (min-width: 1920px) {
    .vc-badge,
    .vc-tag {
        font-size: 1.5rem;
        white-space: nowrap;
    } 
}

.vc-list {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
    justify-self: center;
}

.vc-list li {
    font-size: 1.1rem;
    color: #cecece;
    font-weight: 300;
    padding: 8px 0;
    border-bottom: 0.5px solid #9e9e9e11;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.7;
}

@media (min-width: 1919px) {
    .vc-list li {
        font-size: 2rem;
    }
}

.vc-list li::before {
    content: '—';
    color: #00d9ff;
    flex-shrink: 0;
}

/* ------------------- */
/* S8 CONTACT VINCULUM */
/* ------------------- */
.s8-container-vc {
    background: #00000000;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 2rem;
}

@media (min-width: 768px) {
    .s8-container-vc {
        width: 80%;
        justify-self: center;
    }
}

.s8-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
    color: #00aac8;
    line-height: 1.05;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

@media (min-width: 1919px) {
    .s8-title {
        font-size: 1.6rem;
    }
}

/* ------------------- */
/* S9 CONTACT VINCULUM */
/* ------------------- */
.s9-container-vc {
    background: #00000000;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 2rem;
}

@media (min-width: 768px) {
    .s9-container-vc {
        width: 80%;
        justify-self: center;
    }
}

.s9-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
    color: #00aac8;
    line-height: 1.05;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

@media (min-width: 1919px) {
    .s9-title {
        font-size: 1.6rem;
    }
}

.vc-notice {
    border: 0.5px solid #c9a84c22;
    background: #c9a84c08;
    padding: 1.4rem 1.6rem;
}

.vc-notice-title {
    font-size: 1rem;
    letter-spacing: 0.22em;
    color: #00b1c8;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.7rem;
}

@media (min-width: 1919px) {
    .vc-notice-title {
        font-size: 1.5rem;
    }
}

.vc-notice-body {
    font-size: 1rem;
    color: #cecece;
    line-height: 1.9;
    font-weight: 300;
}

@media (min-width: 1919px) {
    .vc-notice-body {
        font-size: 1.2rem;
    }
}
