*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Nunito Sans", sans-serif !important;
    /* outline: var(--border); */
}

:root {
    --transition: all 0.2s ease-in-out;
    --border: 1px solid red;

    --accent-color: #6610f2;
    --accent-dark: #4b0082;

    --border-color: rgba(130, 130, 130, 0.1);
    --background-hover: rgba(130, 130, 130, 0.2);
    --platinum: #e3e3e3ff;
    --text-hover: rgb(255, 255, 255);
    --night: #150624;
}

.fi {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.bi {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    color: inherit !important;
}

span {
    display: flex;
}

p,
h1,
h2,
h3,
h4 {
    padding: 0 !important;
    margin: 0 !important;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
}

li {
    list-style: none;
    padding: 0;
    margin: 0;
    object-fit: cover !important;
    object-position: center !important;
}

a {
    text-decoration: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    color: inherit;
    opacity: 0.95;
}

a:hover {
    opacity: 1;
    color: inherit;
    text-decoration: none !important;
}

img {
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

button {
    outline: none;
    border: none;
    background: none;
    color: inherit;
}

.nunito-sans {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}

body {
    top: 0;
    left: 0;
    float: left;
    width: 100%;
    height: 100dvh;
    position: relative;
    text-size-adjust: 100% !important;
    background: var(--background-color) !important;
}

.dropdown-menu {
    overflow: hidden;
}

.dropdown-item {
    border-radius: 0.25rem !important;
}

.bg-night {
    background: var(--night) !important;
    color: var(--bs-light) !important;
}

.bg-indigo {
    background: var(--accent-color) !important;
    color: var(--bs-light) !important;
}

.grad-indigo {
    background: linear-gradient(
        -45deg,
        var(--accent-color),
        var(--accent-dark)
    ) !important;
}

.feature-icon {
    width: 4.5rem;
    height: 4.5rem;
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature img {
    width: 100%;
}

.reasons,
.con-test {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
    grid-template-rows: auto;
    justify-content: center;
    gap: 2rem;
}

.accordion-body {
    font-size: 0.9rem;
    opacity: 0.9 !important;
}

.accordion-button {
    font-weight: 400;
}

.icon-square {
    overflow: hidden;
    outline: 3px solid var(--accent-color);
}

.testimony {
    display: flex;
    flex-direction: column;
}

.testimony > p {
    font-size: 0.8rem !important;
}

.testimonial-info h3 {
    color: var(--accent-color);
    font-weight: 700 !important;
    font-size: .9rem;
}

.testimonial-info p {
    font-size: .8rem;
    opacity: 0.5;
}

.text-night {
    color: var(--night) !important;
}

.text-indigo {
    color: var(--accent-color) !important;
}

.bi-chevron-down {
    font-size: 0.8rem;
    padding-top: 0.1rem;
    transition: var(--transition);
}

.foot-section a {
    opacity: .5;
    transition: var(--transition);
    color: var(--bs-light) !important;
}

.foot-section a:hover, .foot-section a:active, .foot-section a:visited, .foot-section a:focus {
    opacity: 1;
    color: var(--bs-light) !important;
}

.testimony {
    display: flex;
    padding: 0 !important;
    gap: 0.5rem;
}

.nav-item a:hover {
    text-decoration: underline !important;
    text-decoration-thickness: 1px !important;
}

.main-section {
    position: relative;
    isolation: isolate;
}

.main-sect {
    position: relative;
    isolation: isolate;
    background: linear-gradient(to bottom, var(--bs-light), var(--bs-dark) 100%);
}

.border-indigo {
    border-color: var(--accent-color) !important;
}

.btn-outline-indigo {
    border-color: var(--accent-color) !important;
    color: var(--accent-color) !important;
}

.btn-outline-indigo:hover {
    border-color: var(--accent-color) !important;
    background: var(--accent-color) !important;
    color: var(--bs-light) !important;
}

.card {
    width: 100%;
}

.text-small {
    font-size: .9rem !important;
}

.bg-indigo {
    background: var(--bs-indigo) !important;
}

.placeholder-box {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: blink 1.5s ease-in-out infinite;
}

#popupBox {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    opacity: 0;
    display: none;
    transition: var(--transition);
}

#contactPopup {
    max-width: 600px;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#closePop {
    position: absolute;
    float: right;
    top: 1rem;
    right: 1rem;
}

.popSect {
    width: 50%;
}

.popLeft > img {
    width: 40%;
}

.popLeft > p {
    font-size: 12px;
}

.popLeft > small {
    font-size: 10px;
}

.popRight > img {
    width: 100%;
}

#closePop {
    cursor: pointer;
    opacity: .9;
    transition: var(--transition);
}

#closePop:hover {
    opacity: 1;
}

.caro {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
    transition: var(--transition);
    height: 24rem;
}

.caroContent {
    z-index: 1;
    left: 0;
    position: absolute;
}

.caroImgContainer {
    z-index: 0;
    position: relative;
    height: 100%;
    width: auto;
}

.caroOverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--accent-color) 0%, transparent 100%);
}

#caroImg {
    height: 100%;
}

.topServicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
    gap: 2rem;
    align-items: center;
    justify-content: center;
    padding: 0 1rem !important;
}

.topServicesGrid > span {
    align-self: center;
    justify-self: center;
}

.topServicesGrid p {
    font-size: 14px;
}

.topStats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(10rem, 18%));
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.topStats > span {
    justify-self: center;
}

.topClients {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(3rem, calc(16% - 1rem)));
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.topClients > img {
    max-width: 3rem;
    justify-self: center;
    /* filter: grayscale(1); */
}

#social-icons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(16.6% - 2em), 1fr));
    align-items: center;
    justify-content: center;
    /* grid-template-rows: 1fr; */
    gap: 2rem;
}

#social-icons > a {
    align-self: center;
    aspect-ratio: 1/1;
    font-size: clamp(1.5rem, 3vw, 3rem);
    transition: var(--transition);
    border-radius: 1rem;
    color: var(--bs-light);
}

#social-icons > a:hover {
    background: rgba(255, 255, 255, 0.2);
}

#location-map {
    position: relative;
    width: 100%;
    height: 30rem;
    overflow: hidden;
}

#location-map > iframe {
    width: 100%;
    height: 100%;
    border: 0 !important;
}

#map-overlay {
    position: absolute;
    inset: 0 0 0 0;
    background: rgba(255, 255, 255, 0.9);
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

#contact-icons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15rem, calc(33% - 1rem)));
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

#contact-icons > span {
    align-self: center;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    cursor: default;
}

#contact-form {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(26rem, 1fr));
    gap: 4rem;
    justify-content: space-between;
}

.folio-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(auto, calc(25% - 2rem)));
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.folio-nav > span {
    position: relative;
    text-align: center !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    opacity: .7;
    padding: .5rem 1rem;
    width: 1fr;
}

.folio-nav > span > i {
    display: none;
}

.folio-nav > span::after {
    content: "";
    position: absolute;
    width: 100%;
    bottom: -2.8px;
    height: 2.8px;
    border-radius: 1.4px;
    background: black;
    opacity: .7;
}

.folio-nav.btn-group > span::after {
    background: var(--bs-light);
}

.folio-nav > span:hover {
    opacity: 1;
}

.folio-nav > span:hover::after {
    opacity: 1;
}

.folio-nav > span.active {
    color: var(--accent-color);
    opacity: 1;
}

.folio-nav > span.active::after {
    background: var(--accent-color);
}

.folio-nav > span.active:hover {
    color: var(--accent-dark);
    opacity: 1;
}

.folio-nav > span.active:hover::after {
    background: var(--accent-dark);
}

#folio {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(18rem, calc(25% - 1rem)));
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.grid-box {
    align-self: center;
    justify-self: center;
    border-radius: 1rem;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1/1;
    transition: var(--transition);
}

.grid-box.loaded {
    cursor: pointer;
}

.grid-box.loaded > a {
    width: 100%;
    height: 100%;
}

.grid-box.loaded > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -o-object-fit: cover;
    -o-object-position: center;
}

.imgBox {
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    -o-object-fit: cover;
    -o-object-position: center;
}

.imgBox > img {
    width: 100%;
}

#services-top {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 2rem), 1fr));
    gap: 2rem;
}

.services-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    -o-object-fit: cover;
    -o-object-position: center;
}

.services-img > h1 {
    z-index: 2;
}

.overlay {
    position: absolute;
    inset: 0 0 0 0;
    z-index: 1;
}

.services-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    transition: var(--transition);
    animation: zoomInOut 10s ease-in-out infinite alternate;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

.service-box {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bs-white);
    color: var(--night);
}

.service-box > div {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.service-box > span i,
.service-box > span h1 {
    transition: var(--transition);
}

.service-box:hover > span {
    color: var(--accent-color) !important;
}

.service-box.active > span {
    color: var(--bs-light) !important;
}

.service-box.active > div {
    max-height: 100rem;
}

.service-box.active {
    background: var(--night);
}

.service-box > span > h1 {
    font-weight: 800 !important;
}

.service-box > span > i {
    font-size: 3rem;
}

.service-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    overflow: hidden;
}

.service-info > div:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    object-position: center;
    -o-object-fit: cover;
    -o-object-position: center;
    max-height: 16rem;
}

.service-info > div > img {
    height: 100%;
    width: 100%;
}

#service-plans {
    transition: var(--transition);
}

#service-plans div {
    transition: var(--transition);
}

.colons, #colon-left {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(auto, calc(50% - 1rem)));
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.colons > small {
    padding: .4rem;
    outline: 1px solid rgba(0, 0, 0, 0.6);
    opacity: .6;
    border-radius: .4rem;
}

#colon-left > span {
    padding: 1.8rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: .8rem;
    background: white;
    box-shadow: 0 4px 20px -14px rgba(0, 0, 0, 0.4);
}

#colon-left > span > h1 {
    font-weight: 800;
}