:root {
    --equity-blue: #0054a0;
    --equity-blue-secondary: #00D1FF;
    --equity-green: #228741;
    --equity-muted: #9a9898;
    --equity-muted-lighter: #F9F9F9;
    --equity-muted-with-transparency: #dadada75;
    --bs-body-color: rgba(30, 30, 30, 0.85);
}

html {
    font-size: 1em;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 1em;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center; /* new line: align items vertically in the center */
}

.adaptive-container {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {

    .w-sm-25 {
        width: 25%;
    }

    .w-sm-35 {
        width: 35%;
    }

    .w-sm-50 {
        width: 50%;
    }

    .w-sm-75 {
        width: 75%;
    }

    .w-sm-100 {
        width: 100%;
    }

    .mb-sm-100 {
        margin-bottom: 100px !important;
    }

    .adaptive-container {
        width: 80%;
    }

    .position-sm-relative {
        position: relative !important;
    }

    .position-sm-absolute {
        position: absolute !important;
    }

    .full-screen-background-discover {
        height: 580px !important;
    }

    .testimonial {
        height: 340px;
    }

    .about-image {
        height: auto !important;
    }
}

body {
    font-family: "Heebo", sans-serif;
    /*background-color: #DADADA; !* Dominant color *!*/
    /*color: rgba(30, 30, 30, 0.85) !important; !* Black for better readability *!*/
    font-size: 1.1em;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    font-family: "Manrope", sans-serif;
    word-spacing: 3px;
}

.navbar, .footer {
    background-color: var(--equity-blue); /* Secondary color */
    color: #DADADA; /* Light Grey for contrast */
}

.fs-1, .fs-2, .fs-3, .fs-4,
.display-1, .display-2, .display-3, .display-4, .display-4, .display-6 {
    font-family: "Manrope", sans-serif;
}

.btn {
    background-color: var(--equity-blue);
    font-weight: 500;
    color: white;
}

.btn:hover {
    border-color: var(--equity-blue) !important;
}

.navbar-left,
.navbar-right {
    display: flex;
    align-items: center; /* new line: align items vertically in the center */
}

.navbar-brand {
    margin-right: 55px;
    font-weight: bold;
}

.navbar-brand:last-child {
    margin-right: 0;
}

.full-screen-background-testimonials {
    background: url('/images/testimonial.png') no-repeat center center;
    background-size: cover;
}

.full-screen-background-growth-numbers {
    background: url('/images/growth-numbers-banner.png') no-repeat right center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.full-screen-background-contact {
    background: url('https://ecloudbackup.blob.core.windows.net/images/Recruiting%20Site/equitydotus/Contact%20Pic.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-screen-background-search {
    background: url('https://ecloudbackup.blob.core.windows.net/images/Recruiting%20Site/equitydotus/Search.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-screen-background-about {
    background: url('https://ecloudbackup.blob.core.windows.net/images/Recruiting%20Site/equitydotus/About%20Us.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-screen-background-discover {
    background: url('https://ecloudbackup.blob.core.windows.net/images/Recruiting%20Site/equitydotus/Form%20Hero.jpg') no-repeat center center;
    background-size: cover;
    height: 320px;
    width: 100%;
    display: flex;
    border-bottom-left-radius: 80px;
}

.section {
    background-color: #ffffff;
    /*border-radius: 8px;*/
    /*box-shadow: 0px 4px 4px 0px #00000040;*/
}

.testimonial {
    text-align: center;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0px 4px 4px 0px #00000040;
    height: 400px;
}

.border-right::after {
    content: '';
    position: absolute;
    top: 12.5%; /* This centers the pseudo-element vertically. It's calculated as (100 - 75) / 2 */
    right: 0;
    width: 2px; /* Set this to the width you want the border to be */
    height: 75%; /* Set this to the percentage of the parent's height you want the border to take up */
    background-color: #9c9c9c; /* Set this to the color you want the border to be */
}

.accent-color {
    color: var(--equity-blue);
}

.background-accent-grey {
    background-color: #DADADA;
}

.background-accent-light-grey {
    background-color: rgba(218, 218, 218, 0.18);
}

.border-accent {
    border-color: var(--equity-blue) !important;
}

.accent-color-secondary {
    color: var(--equity-green);
}

.border-accent-secondary {
    border-color: var(--equity-green) !important;
}

.w-150 {
    width: 150px;
}

.w-200 {
    width: 200px;
}

.w-250 {
    width: 250px;
}

.w-90 {
    width: 90%;
}

.bg-gray {
    background-color: #dadada;
}

.fit-content {
    width: fit-content;
}

.vh-90 {
    height: 90vh;
}

.vh-75 {
    height: 75vh;
}

.about-image {
    height: 350px;
}

.swal2-actions button {
    min-width: 150px;
}

.swal2-content .swal2-html-container {
    margin-left: 1em;
    margin-right: 1em;
    text-wrap: none;
}

.swal2-footer {
    background-color: #ffcdc6;
    border-top: 1px solid #E9EEF1;
    overflow: hidden;
    text-align: center;
    font-size: 0.9em !important;
    padding: 1em !important;
}


.tgl {
    display: none;
}

.tgl, .tgl:after, .tgl:before, .tgl *, .tgl *:after, .tgl *:before, .tgl + .tgl-btn {
    box-sizing: border-box;
}

.tgl::-moz-selection, .tgl:after::-moz-selection, .tgl:before::-moz-selection, .tgl *::-moz-selection, .tgl *:after::-moz-selection, .tgl *:before::-moz-selection, .tgl + .tgl-btn::-moz-selection {
    background: none;
}

.tgl::selection, .tgl:after::selection, .tgl:before::selection, .tgl *::selection, .tgl *:after::selection, .tgl *:before::selection, .tgl + .tgl-btn::selection {
    background: none;
}

.tgl + .tgl-btn {
    outline: 0;
    display: block;
    height: 1.3em;
    width: 2.5em;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tgl + .tgl-btn:after, .tgl + .tgl-btn:before {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
}

.tgl + .tgl-btn:after {
    left: 0;
}

.tgl + .tgl-btn:before {
    display: none;
}

.tgl:checked + .tgl-btn:after {
    left: 50%;
}

.tgl-light + .tgl-btn {
    background: #f0f0f0;
    border-radius: 2em;
    padding: 2px;
    transition: all 0.4s ease;
}

.tgl-light + .tgl-btn:after {
    border-radius: 50%;
    background: #fff;
    transition: all 0.2s ease;
}

.tgl-light:checked + .tgl-btn {
    background: #9FD6AE;
}

.tgl-flat + .tgl-btn {
    padding: 2px;
    transition: all 0.2s ease;
    background: #fff;
    border: 4px solid #f2f2f2;
    border-radius: 2em;
}

.tgl-flat + .tgl-btn:after {
    transition: all 0.2s ease;
    background: #f2f2f2;
    content: "";
    border-radius: 1em;
}

.tgl-flat:checked + .tgl-btn {
    border: 4px solid var(--equity-blue);
}

.tgl-flat:checked + .tgl-btn:after {
    left: 50%;
    background: var(--equity-blue);
}

.thumb32 {
    width: 32px !important;
    height: 32px !important;
}

.thumb64 {
    width: 64px !important;
    height: 64px !important;
}

.thumb72 {
    width: 72px !important;
    height: 72px !important;
}

.thumb96 {
    width: 96px !important;
    height: 96px !important;
}

.thumb128 {
    width: 128px !important;
    height: 128px !important;
}

.search-result-thumbnail {
    width: 50%;
    height: auto;
}

.search-result-thumbnail-lg {
    width: 250px;
    height: 250px;
}

@media only screen and (min-width: 768px) {
    .search-result-thumbnail {
        width: 96px;
        height: 96px;
    }
}

.search-result-link {
    text-decoration: none;
    color: var(--equity-blue);
    border-bottom: 1px dotted var(--equity-blue);
}

@media only screen and (min-width: 768px) {

    /* Columnize Text */
    .columnize-2 {
        margin: 0 0 1.313em;
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 3em;
        -moz-column-gap: 3em;
        column-gap: 3em;
    }

    .columnize-3 {
        margin: 0 0 1.313em;
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 3em;
        -moz-column-gap: 3em;
        column-gap: 3em;
    }
}

/** Dividers
*************************************************** **/
div.divider {
    margin: 0.5555em 0;
    position: relative;
    display: block;
    min-height: 1.111em;
}

div.divider i {
    line-height: 1;
    font-size: 18px;
    color: #ccc;
}

div.divider:after {
    content: '';
    position: absolute;
    top: 0.444em;
    left: 0;
    right: 0;
    height: 0;
    border-top: 1px solid #ddd;
}

section.dark div.divider:after {
    border-top: rgba(255, 255, 255, 0.1) 1px solid;
}

section.dark div.divider:before {
    border-top: rgba(255, 255, 255, 0.1) 1px solid;
}

div.divider.divider-left:after {
    left: 1.6666em;
    right: 0;
}

div.divider.divider-left i {
    float: left;
}

div.divider.divider-right:after {
    left: 0;
    right: 1.6666em;
}

div.divider.divider-right i {
    float: right;
}

div.divider.divider-center:after {
    left: 50% !important;
    right: 0;
    margin-left: 1.111em;
}

div.divider.divider-center:before {
    left: 0 !important;
    right: 50%;
    margin-right: 1.111em;
    content: '';
    position: absolute;
    top: 0.4444em;
    height: 0;
    border-top: 1px solid #ddd;
}

div.divider.divider-center {
    text-align: center;
}

div.divider.divider-center.divider-short:before {
    left: auto !important;
    right: 50%;
    margin-right: 1.111em;
    width: 15%;
}

div.divider.divider-center.divider-short:after {
    left: 50% !important;
    right: auto !important;
    margin-left: 1.111em;
    width: 15%;
}

/* color */
div.divider.divider-circle.divider-left:after {
    left: 2.7777em;
}

div.divider.divider-circle.divider-right:after {
    right: 2.7777em;
}

div.divider.divider-circle.divider-center:after {
    margin-left: 1.6666em;
}

div.divider.divider-circle.divider-center:before {
    margin-right: 1.6666em;
}

div.divider.divider-circle i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #F5F5F5;
    margin-top: -11px;
    text-align: center;
    z-index: 1;
    color: #999;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}


/* border */
div.divider.divider-border.divider-left:after {
    left: 50px;
}

div.divider.divider-border.divider-right:after {
    right: 50px;
}

div.divider.divider-border.divider-center:after {
    margin-left: 30px;
}

div.divider.divider-border.divider-center:before {
    margin-right: 30px;
}

div.divider.divider-border i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-top: -11px;
    text-align: center;
    z-index: 1;
    border: #ddd 1px solid;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

section.dark div.divider.divider-border i {
    border-color: rgba(255, 255, 255, 0.5);
}

/* scroll to top */
div.divider.divider-border > a > i.fa-chevron-up {
    line-height: 36px;
}

div.divider.divider-border > a > i {
    -webkit-transition: all .300s;
    -moz-transition: all .300s;
    -o-transition: all .300s;
    transition: all .300s;
}

div.divider.divider-border > a:hover > i {
    color: #333;
}

section.theme-color div.divider.divider-border > a:hover > i.fa-chevron-up {
    color: #fff;
}

span.badge {
    display: inline-flex !important;
    padding: 0.4em 0.75em;
}

.las {
    font-size: 1.2em !important;
    color: #777;
}

.social-icon {
    width: 42px;
    height: 42px;
}

.social-icon:hover {
    opacity: 50%;
}

.btn {
    border: none !important;
    border-radius: 4px;
    padding: 0.7em;
}

.btn-outline-secondary-hollow {
    background-color: transparent;
    color: white;
    border-color: white;
    border-width: 3px;
}

.btn-contrasting {
    background-color: white;
    color: black;
    border-color: var(--equity-blue);
}

.btn-contrasting:hover {
    background-color: var(--equity-muted-lighter);
}

.equity-muted {
    color: var(--equity-muted);
}

.py-xl {
    padding-top: 40px;
    padding-bottom: 40px;
}

.py-xxl {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pt-xl {
    padding-top: 20px;
}

.pb-xl {
    padding-bottom: 20px;
}

@media (min-width: 768px) {
    .py-xl {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .py-xxl {
        padding-top: 150px;
        padding-bottom: 150px;
    }

    .px-xl {
        padding-left: 100px;
        padding-right: 100px;
    }

    .ps-xl {
        padding-left: 100px;
    }

    .pe-xl {
        padding-right: 100px;
    }

    .pb-xl {
        padding-bottom: 100px;
    }

    .pt-xl {
        padding-top: 100px;
    }
}

.text-equity-primary {
    color: var(--equity-blue);
}

.text-equity-secondary {
    color: var(--equity-blue-secondary);
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

@media (min-width: 768px) {
    .feature {
        padding-bottom: 130px;
    }
}

.bg-equity-blue {
    background-color: var(--equity-blue);
}

.bg-muted {
    background-color: var(--equity-muted);
}

.bg-muted-lighter {
    background-color: var(--equity-muted-lighter);
}

.bg-muted-with-transparency {
    background-color: var(--equity-muted-with-transparency);
}

@media (min-width: 768px) {
    #current-post {
        margin-top: -120px;
    }
}

.transparency-50 {
    opacity: 0.50;
}

.fs-xs {
    font-size: 0.8em;
}

.vertical-divider-contrast {
    width: 1px;
    background-color: var(--equity-muted);
    height: auto;
}

@media (min-width: 768px) {
    #contact-info {
        position: relative; 
        top: -115px; 
        z-index: 10;
    }
}

footer .nav-link a {
    text-decoration: none;
    color: black;
    font-size: 1.1em;
}

footer .nav-link a:hover {
    color: rgba(30, 30, 30, 0.60);
}

.spinner {
    animation: spin-animation 0.5s infinite;
    display: inline-block;
}

@keyframes spin-animation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}

.nav-link {
    text-wrap: nowrap;
}

.dropdown-menu {
    padding: 10px;
}

.dropdown-menu .nav-link:hover {
    background-color: #ece8e8;
    border-radius: 5px;
}