@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

:root {
    --clr-white: #FFFFFF;
    --clr-blue: #0081DE;
    --clr-dark-blue: #0D1329;
    --clr-black: #1b1d21;
    --fs-text: 1.125rem;
    --fs-1: .625rem;
    --fs-1-25: .75rem;
    --fs-1-5: .875rem;
    --fs-2: 1rem;
    --fs-3: 2rem;
    --fs-3-5: 2.5rem;
    --fs-4: 3rem;
    --fs-5: 4rem;
}

html {
    scroll-behavior: auto !important;
}

body {
    font-family: 'Ubuntu', 'Montserrat', sans-serif;
    font-size: var(--fs-text);
    font-weight: 300;
    line-height: 1.5;
    color: var(--clr-white);
    background-color: var(--clr-dark-blue);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: 'Montserrat', 'Ubuntu', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-white);
}

h1,
.h1 {
    font-size: 3rem;
    margin-bottom: .5em;
}

h2,
.h2 {
    font-size: 2rem;
}

h3,
.h3 {
    font-size: 1.5rem;
}

h4,
.h4 {
    font-size: 1.25rem;
}

h5,
.h5 {
    font-size: 1.125rem;
}

h6,
.h6 {
    font-size: 1rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3rem;
    }

    h3 {
        font-size: 2rem;
    }

    h4 {
        font-size: 1.5rem;
    }

    h5 {
        font-size: 1.25rem;
    }

    h6 {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    h1 {
        font-size: 4.5rem;
    }
}

a {
    text-decoration: none;
}

a,
.btn {
    color: var(--clr-blue);
}

img {
    height: auto;
    max-width: 100%;
}

ol,
ul {
    list-style: none;
}

.btn.btn-theme {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--clr-white);
    transition: all .3s;
}

.btn-theme.btn-outline-primary {
    border-width: .188rem;
}

.btn.btn-theme:hover {
    box-shadow: 0 .25rem 1.5rem #FFFFFF12;
    transform: translateY(-.125rem);
}

.btn.btn-theme.btn-primary {
    color: var(--clr-white);
    background-color: var(--clr-blue);
    border-color: var(--clr-blue);
}

.btn.btn-theme.btn-primary:hover {
    color: var(--clr-dark-blue);
    background-color: var(--clr-white);
    border-color: var(--clr-white);
}

button:focus {
    box-shadow: unset !important;
}

.reset-ul {
    margin: 0;
    padding: 0;
}

a.overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* CMS Custom Styles */
.imgSelector {
    position: relative;
}

.btn-img-selector.btn-absolute2,
.btn-alt-text-modal.btn-absolute {
    left: unset;
    transform: unset;
    z-index: 9;
}

.btn-img-selector.btn-absolute2 {
    top: 1rem;
    right: 1rem;
}
.btn-alt-text-modal.btn-absolute {
    top: 1rem;
    right: 4rem;
}

/* SCROLLBAR */
/* Width */
::-webkit-scrollbar {
    width: .75rem;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 .25rem var(--clr-blue);
    border-radius: 50em;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--clr-blue);
    border-radius: 50em;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--clr-blue);
}

/**/

.clr-white {
    color: var(--clr-white) !important;
}

.clr-blue {
    color: var(--clr-blue) !important;
}

.clr-dark-blue {
    color: var(--clr-dark-blue) !important;
}

.clr-black {
    color: var(--clr-black) !important;
}

.clr-white {
    color: var(--clr-white) !important;
}

.bg-blue {
    background-color: var(--clr-blue) !important;
}

.bg-dark-blue {
    background-color: var(--clr-dark-blue) !important;
}

.bg-black {
    background-color: var(--clr-black) !important;
}

.img-rounded img {
    border-radius: .25rem;
}

.img-shadowed img {
    box-shadow: 0 .5rem 2rem #FFFFFF12;
}

.full-height {
    min-height: 100vh;
}

.w-80 {
    width: 80%;
}

.h-80 {
    height: 80%;
}

/**/

.custom-heading {
    letter-spacing: .375rem;
}

.gap-025em {
    gap: .25em;
}

.gap-0375em {
    gap: .375em;
}

.gap-05em {
    gap: .5em;
}

.fs-1 {
    font-size: var(--fs-1) !important;
}

.fs-1-5 {
    font-size: var(--fs-1-5) !important;
}

.fs-2 {
    font-size: var(--fs-2) !important;
}

.fs-3 {
    font-size: var(--fs-3) !important;
}

.fs-3-5 {
    font-size: var(--fs-3-5) !important;
}

.fs-4 {
    font-size: var(--fs-4) !important;
}

.fs-5 {
    font-size: var(--fs-5) !important;
}

.first-section {
    padding-top: 6rem !important;
}

.shadow-blue-0-0-1-25 {
    box-shadow: 0 0 1rem #0081de40;
}

.bg-gradient.cyan-purple {
    background: linear-gradient(120deg, #09bbfe 25%, #9f3bec 75%) !important;
}

/**/

.o-letter {
    background: conic-gradient(var(--clr-blue) 0%,
            var(--clr-white) 0%,
            var(--clr-white) 25%,
            var(--clr-blue) 25%,
            var(--clr-blue) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.w-letter {
    background: conic-gradient(var(--clr-blue) 0%,
            var(--clr-blue) 50%,
            var(--clr-white) 50%,
            var(--clr-white) 95%,
            var(--clr-blue) 95%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.o-letter::before,
.o-letter::after,
.w-letter::before,
.w-letter::after {
    content: '';
    position: absolute;
    left: 50%;
    background-color: var(--clr-dark-blue);
    z-index: 1;
}

.o-letter::before {
    top: 0;
    transform: translate(-100%, 50%);
    width: .125em;
    height: 25%;
}

.o-letter::after {
    top: 50%;
    right: 0;
    width: 50%;
    height: .125em;
}

.w-letter::before {
    top: 35%;
    transform: translate(-133%, -39%) rotate(-17deg);
    width: .125em;
    height: 35%;
}

/**/

main {
    transition: all .5s;
}

main>div>section {
    overflow: hidden;
}

.navbar {
    background-color: #0D1329CC;
    backdrop-filter: blur(.5rem);
    z-index: 9999;
}

.navbar-brand img {
    max-width: 4rem;
}

.navbar-toggler {
    font-size: 1.5rem;
    color: var(--clr-white);
    border: 0;
    padding: 0;
    backdrop-filter: blur(1rem);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFF' d='M16 18V20H5V18H16ZM21 11V13H3V11H21ZM19 4V6H8V4H19Z'%3E%3C/path%3E%3C/svg%3E");
}

.btn-close {
    --bs-btn-close-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFF' d='M12.0007 10.5865L16.9504 5.63672L18.3646 7.05093L13.4149 12.0007L18.3646 16.9504L16.9504 18.3646L12.0007 13.4149L7.05093 18.3646L5.63672 16.9504L10.5865 12.0007L5.63672 7.05093L7.05093 5.63672L12.0007 10.5865Z'%3E%3C/path%3E%3C/svg%3E");
    font-size: 2em;
}

.offcanvas-header .btn-close {
    padding: .5rem;
}

.offcanvas {
    background-color: var(--clr-black);
    min-height: 100vh;
}

.offcanvas::before,
.offcanvas::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    transition: all .3s ease;
}

.offcanvas::before {
    background: url(../img/logo.png) no-repeat bottom/contain;
}

.offcanvas::after {
    z-index: -1;
    background: #1b1d21e6;
}

.offcanvas-header {
    justify-content: end;
}

.offcanvas-footer img {
    opacity: 0.1;
}

.nav-item {
    width: 100%;
    display: flex;
    justify-content: center;
}

.nav-link {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--clr-white);
    padding: .75rem;
    border: .188rem solid var(--clr-blue);
    border-radius: 50em;
    background-color: var(--clr-black);
}

.nav-link:hover {
    color: var(--clr-white);
    background-color: var(--clr-blue);
    box-shadow: 0 .25rem 1rem #FFFFFF12;
}

.nav-link:focus {
    color: var(--clr-white);
}

/**/

.get-in-touch {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.get-in-touch a {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    padding: 1rem 2rem .875rem;
    border-radius: 2rem 2rem 0 0;
    border-color: var(--clr-white);
    background-color: var(--clr-dark-blue);
    border-bottom: 0 !important;
}

@media (max-width: 575px) {
    .get-in-touch {
        display: none;
    }
}

/* SCROLL PROGRESS */
.scroll-progress {
    display: none;
    position: fixed;
    top: 50%;
    right: 1.75rem;
    transform: translateY(-50%);
    backdrop-filter: blur(2rem);
    background-color: var(--clr-dark-blue);
}

.scroll-progress .progress-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-progress span {
    font-size: 1rem;
}

.scroll-progress ul {
    margin: 2rem 0;
}

.scroll-progress ul li:not(:last-child) {
    margin-bottom: 2rem;
}

.scroll-progress .dot {
    position: relative;
    width: 1.75rem;
    height: 1.75rem;
    border: .125rem solid transparent;
    border-radius: 50em;
    transition: all .3s ease;
}

.scroll-progress .dot.active {
    border: .125rem solid var(--clr-white);
}

.scroll-progress .dot::after {
    content: '';
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.5);
    transition: all .3s;
    background-color: var(--clr-white);
    border-radius: 50em;
    z-index: 9999;
}

.scroll-progress .dot:hover::after {
    background-color: var(--clr-blue);
    transform: translate(-50%, -50%) scale(1.5);
}

.scroll-progress .dot.active::after {
    background-color: var(--clr-blue);
    transform: translate(-50%, -50%) scale(.75);
}

@media (min-width: 576px) {
    .scroll-progress {
        display: block;
    }
}

/* DOTS NAV */
.dots-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 50%;
    right: 1.75rem;
    transform: translateY(-50%);
    transition: all .5s;
}

.dots-nav>span {
    font-size: 1rem;
}

.dots-nav #dot-nav a {
    position: relative;
    border: .125rem solid transparent;
    border-radius: 50%;
    width: 1.75rem;
    height: 1.75rem;
    display: block;
    margin: 2rem 0;
    transition: all .3s ease;
}

.dots-nav #dot-nav a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    border: .25rem solid transparent;
    border-radius: 50em;
    transition: all .3s ease;
}

.dots-nav #dot-nav a:hover::after {
    border: .75rem solid var(--clr-blue);
}

.dots-nav #dot-nav a.active {
    border-color: var(--clr-white);
}

.dots-nav #dot-nav a.active::after {
    border: .375rem solid var(--clr-blue);
    border-radius: 50em;
}

/* SCROLL INDICATOR */
.scroll-indicator-controller>div {
    position: relative;
    display: flex;
    width: 1.75rem;
    height: 1.75rem;
    justify-content: center;
    align-items: center;
    border-radius: 50em;
    border: .125rem solid transparent;
    margin: 1.75rem 0;
    cursor: pointer;
}

.scroll-indicator-controller>div.active {
    border: .125rem solid #fff;
}

.scroll-indicator-controller>div::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--clr-white);
    width: .625rem;
    height: .625rem;
    border-radius: 50em;
    transition: all .3s;
}

.scroll-indicator-controller>div.active::before {
    background-color: var(--clr-blue);
    width: .75rem;
    height: .75rem;
}

.scroll-indicator-controller>div:hover::before {
    background-color: var(--clr-blue);
    width: 1.5rem;
    height: 1.5rem;
}

.scroll-indicator-controller>div>span {
    display: none;
}


@media (max-width: 575px) {
    .dots-nav {
        display: none;
        width: 100%;
        height: unset;
        top: unset;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
        flex-direction: row;
        background-color: #0D1329CC;
        backdrop-filter: blur(.5rem);
    }

    .dots-nav #dot-nav {
        display: flex;
        margin: 0 .5rem;
    }

    .dots-nav #dot-nav a {
        margin: .5rem;
    }
}

/* FOOTER */
footer {
    padding: 6rem 0;
}

footer p {
    font-size: 1rem;
}

/**/

form input,
form textarea {
    width: 100%;
    border: .125rem solid var(--clr-white);
    padding: 1rem 1.5rem;
    border-radius: 1.25rem;
    color: var(--clr-white);
    background-color: var(--clr-dark-blue);
    outline: 0;
    transition: all .3s;
}

form input {
    margin-bottom: 2rem;
}

form input::placeholder,
form textarea::placeholder {
    color: var(--clr-white);
}

form input:focus,
form textarea:focus {
    box-shadow: 0 0 1rem #FFFFFF24;
}

form button[type="submit"] {
    border-radius: 1.25rem;
}

form input[type=date]::-webkit-calendar-picker-indicator {
    color-scheme: dark;
}

/**/

.welcome-intro {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--clr-dark-blue);
    z-index: 9999;
    transition: all .5s;
}

.welcome-intro .logo {
    opacity: 0;
    visibility: hidden;
    user-select: none;
    pointer-events: none;
}

.welcome-intro .parts img {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 1rem;
    user-select: none;
    pointer-events: none;
}

.welcome-intro .subtitle {
    font-size: var(--fs-3-5);
    font-weight: 600;
    line-height: 1;
}


#caseStudySlider .carousel-item img {
    padding: 0 6%;
}

#caseStudySlider .carousel-indicators {;
    bottom: -50px;
}

#caseStudySlider .carousel-control-next {
    right: -6%;
}

#caseStudySlider .carousel-control-prev {
    left: -6%;
}

/**/

@media (min-width: 576px) {
    :root {
        --fs-text: 1.25rem;
        --fs-1: 1rem;
        --fs-1-25: 1.25rem;
        --fs-1-5: 1.5rem;
        --fs-2: 2rem;
        --fs-3: 3rem;
        --fs-3-5: 3.5rem;
        --fs-4: 4rem;
        --fs-5: 5rem;
    }
}

@media (min-width: 768px) {
    .navbar-brand img {
        max-width: 6rem;
    }
}

@media (min-width: 992px) {}

@media (min-width: 1200px) {
    .navbar {
        background-color: transparent;
        backdrop-filter: unset;
    }
}

@media (min-width: 1400px) {
    .nav-link {
        font-size: 1.25rem;
    }
}