[data-scroll-container] {
    overflow: hidden;
}
@font-face {
    font-family: "Zurich BT";
    src: url("/assets/fonts/ZurichBT-Roman.eot");
    src: url("/assets/fonts/ZurichBT-Roman.eot?#iefix") format("embedded-opentype"),
        url("/assets/fonts/ZurichBT-Roman.woff2") format("woff2"),
        url("/assets/fonts/ZurichBT-Roman.woff") format("woff"),
        url("/assets/fonts/ZurichBT-Roman.ttf") format("truetype"),
        url("/assets/fonts/ZurichBT-Roman.svg#ZurichBT-Roman") format("svg");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
:root {
    --sk-color: rgb(17, 85, 161);
    --brand-color: rgb(17, 85, 161);
    --body-font-color: rgb(51, 51, 51);
    --invert-section-font-color: rgb(255, 255, 255);
    --invert-section-link-hover-font-color: rgb(230, 230, 230);
    --inset-section-bg-color: #f8f9fa;
    --loading-screen-bg-color: rgb(255, 255, 255);
}
body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
    min-height: 100vh;
    color: var(--body-font-color);
}
body,
html {
    overflow-x: hidden;
    max-width: 100%;
}
a:not(.nav-link):not(.btn) {
    color: var(--body-font-color);
    text-decoration: underline;
}
a:hover {
    color: var(--brand-color);
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
.fullscreen-menu-item a {
    font-family: "Zurich BT", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
    font-weight: 500;
    color: var(--brand-color);
}
footer {
    display: block;
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 1rem;
}
.navbar:not(.show > *) {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--brand-color);
}
.navbar-brand img {
    height: 60px;
}
@media only screen and (max-width: 525px) {
    .inset-section {
        padding: 1rem;
    }
    .content-column h2 {
        font-size: x-large;
    }
}
.inset-section {
    background-color: var(--inset-section-bg-color);
    padding: 2rem;
    border-radius: 1rem;
    margin: 10px;
}
.content-column .fa-solid {
    margin-right: 1rem;
}
.content-column p, .invert-section-title {
    margin-top: .4rem;
}
.content-column {
    padding: 2rem !important;
}
@media only screen and (max-width: 768px) {
    .content-column:not(:last-child) {
        margin-bottom: 2rem;
    }
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar-nav > * {
    padding: 5px;
    margin-right: 1rem;
}
.navbar-nav > *:hover,
.navbar-nav > *.active {
    background-color: var(--inset-section-bg-color);
    border-radius: 5px;
}
.navbar-toggler {
    border: none;
    outline: none;
    padding: 0;
    margin-right: 1rem;
}
.navbar-toggler:focus {
    outline: none;
}
.navbar-toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #000;
    position: relative;
    transition: all 0.3s ease;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    width: 30px;
    height: 2px;
    background-color: #000;
    position: absolute;
    transition: all 0.3s ease;
}
.navbar-toggler-icon::before {
    top: 8px;
}
.navbar-toggler-icon::after {
    top: -8px;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-color: transparent;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    transform: rotate(-45deg);
    top: 0;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    transform: rotate(45deg);
    top: 0;
}
.content-column h2,
.active > .nav-link,
.nav-link:focus {
    color: var(--brand-color) !important;
}
.fullscreen-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.fullscreen-menu.show {
    display: block;
    opacity: 1;
}
.fullscreen-menu-list {
    list-style: none;
    padding: 0;
}
.fullscreen-menu-item {
    font-size: 1.5rem;
    margin: 20px 0;
}
.fullscreen-menu-item a {
    text-decoration: none;
}
.navbar-toggler {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10000;
}
.navbar-toggler .navbar-toggler-icon {
    transition: background-color 0.3s ease;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-color: transparent;
}
.fullscreen-menu .navbar-toggler {
    z-index: 10001;
    display: flex;
    justify-content: flex-end;
    right: 1rem;
    top: 2rem;
}
.close-btn {
    position: fixed;
    top: 8px;
    left: 20px;
    background: transparent;
    border: none;
    z-index: 10001;
    cursor: pointer;
}
.close-btn .navbar-toggler-icon {
    transition: background-color 0.3s ease;
}
.close-btn.collapsed .navbar-toggler-icon {
    background-color: #000;
}
.close-btn:not(.collapsed) .navbar-toggler-icon {
    background-color: transparent;
}
.navbar,
.slide {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    will-change: transform;
}
@media only screen and (max-width: 991px) {
    #navbarNav {
        display: none;
    }
    footer {
        padding: 1rem 2rem;
    }
}
.fullscreen-logo {
    border-style: none;
    display: block;
    height: 55px;
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
}
.loading-screen {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--loading-screen-bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.loading-logo {
    width: 300px;
    margin-bottom: 2rem;
}
.loader {
    display: flex;
    justify-content: center;
}
.pagination-button {
    background-color: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    margin-left: 10px;
}
.pagination-button:disabled {
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
}
.card {
    flex: 0 0 auto;
    width: 200px;
    height: 300px;
    margin: 5px;
    border-radius: 2rem;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Arial", Gadget, sans-serif;
    font-variant: small-caps;
    font-weight: 600 !important;
}
.card.square {
    height: 200px;
}
.first-color {
    background: #69b6a9;
}
.second-color {
    background: #e28fb3;
}
.third-color {
    background: #f8fe85;
}
.fourth-color {
    background: #7b81d2;
}
.fifth-color {
    background: #47b583;
}
.full-width {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    margin: auto 0;
}
.invert-section {
    background-color: var(--brand-color);
    color: var(--invert-section-font-color);
}
.invert-section * {
    color: var(--invert-section-font-color) !important;
}
.invert-section a:hover {
    color: var(--invert-section-link-hover-font-color) !important;
}
.invert-section .content-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.invert-section .content-column h1 i {
    margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
    .invert-section .content-column {
        margin-bottom: 0;
    }
    .invert-section .content-column:first-child {
        margin-bottom: 0;
        padding: 2rem 2rem 0.5rem !important;
    }
    .invert-section .content-column:not(:first-child):not(:last-child) {
        padding: 1rem 2rem 0.5rem !important;
    }
    .invert-section .content-column:last-child {
        margin-top: 0;
        padding: 1rem 2rem 2rem !important;
    }
    .invert-section .content-column p {
        text-align: left;
    }
    .invert-section .content-column .invert-section-content h1,
    .invert-section .content-column .invert-section-content h4 {
        display: inline;
    }
}
@media only screen and (max-width: 525px) {
    .inset-section .content-column {
        padding: 0 !important;
    }
}
.content-column p {
    white-space: pre-line;
}
.content-column .invert-section-content {
    padding: 1rem;
    border: 2px #fff solid;
    border-radius: 1rem;
    height: 100%;
}
.our-services-list {
    margin-top: 2rem;
}
.our-services-list > li {
    margin-top: 10px;
}
.navbar-light .navbar-toggler-icon {
    background-image: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}
#why-choose-us {
    margin-top: 4rem;
}
.btn-primary {
    background-color: transparent;
    border: 2px solid var(--brand-color);
    color: var(--brand-color);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    width: fit-content;
    margin-top: 1rem;
}
.btn-primary:hover {
    background-color: var(--brand-color);
    color: #fff;
}
.btn-primary:hover .fa-phone {
    color: #fff !important;
}
.invert-section-title {
    display: flex;
}
.btn-primary * {
    color: var(--brand-color) !important;
}
@media only screen and (max-width: 525px) {
    .btn-primary {
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }
}
.btn-primary .fa-phone {
    margin-right: 0.5rem;
}
.accordion-body .btn-primary {
    margin-top: 2rem;
}