/* ###ROOT### */

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

:root {
    --offcanvas-bg: #0B0B0B;
    --loading-bg: #1D1D1D;
    --loading-text: #E8E9E9;
    --clr-primary: #e1e1e1;
    --clr-secondary: #FF006F;
    --clr-bg: #000000;
    --foot-gradient: linear-gradient(90deg, #FF006F 0%, rgba(255,190,74,1) 50%, #FF006F 100%);
    --gradient-bg : linear-gradient(90deg, #FF006F 0%, rgba(255,190,74,1) 50%);
    --gradient-bg-sec : linear-gradient(90deg, rgba(255,190,74,1) 0%, #FF006F 50%);
    --scroller-bg: linear-gradient(180deg, #FF006F 0%, rgba(255,190,74,1) 100%);

    --shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    display: none;
}

::-webkit-scrollbar-track {
    background: var(--clr-bg);
}

::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: var(--clr-secondary);
}

::-moz-selection {
    color: var(--clr-primary);
    background: var(--clr-secondary);
}

::selection {
    color: var(--clr-primary);
    background: var(--clr-secondary);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input:focus, input:active,
select:focus, select:active,
textarea:focus, textarea:active {
    -webkit-box-shadow: var(--shadow) !important;
            box-shadow: var(--shadow) !important;
    outline: none !important;
}

/* ###CSS_ANIMATION### */

@supports (animation-timeline: view()) {
    .summer-container img {
        -webkit-animation: autoShowAnimation both;
                animation: autoShowAnimation both;
        animation-timeline: view(90% 5%);
    }

    /* .scroll-reveal {
        -webkit-animation: scroll-reveal-animation linear forwards;
                animation: scroll-reveal-animation linear forwards;
        animation-timeline: view();
        animation-range-start: cover 20vh;
        animation-range-end: cover 50vh;
    } */
}

@-webkit-keyframes autoShowAnimation {
    from {
      opacity: 0;
      -webkit-transform: translateY(200px) scale(.3);
              transform: translateY(200px) scale(.3);
    }to {
      opacity: 1;
      -webkit-transform: translateY(0) scale(1);
              transform: translateY(0) scale(1);
    }
}

@keyframes autoShowAnimation {
    from {
      opacity: 0;
      -webkit-transform: translateY(200px) scale(.3);
              transform: translateY(200px) scale(.3);
    }to {
      opacity: 1;
      -webkit-transform: translateY(0) scale(1);
              transform: translateY(0) scale(1);
    }
}

/* @-webkit-keyframes scroll-reveal-animation {
    to {
        background-size: 100% 100%;
    }
}

@keyframes scroll-reveal-animation {
    to {
        background-size: 100% 100%;
    }
} */

@-webkit-keyframes pulse {
    from, to {
        scale: 1;
    } 50% {
        scale: 1.1;
    }
}

@keyframes pulse {
    from, to {
        scale: 1;
    } 50% {
        scale: 1.1;
    }
}

@-webkit-keyframes bg-pan {
    from {
        background-position: 0 center;
    } 100% {
        background-position: -200% center;
    }   
}

@keyframes bg-pan {
    from {
        background-position: 0 center;
    } 100% {
        background-position: -200% center;
    }   
}

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
} 

/* ###VIEW_TRANSITION### */

@-webkit-keyframes move-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    } to {
        opacity: 0.5;
        -webkit-transform: translateY(-35%);
                transform: translateY(-35%);
        background-color: #FF006F;
    }
}

@keyframes move-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    } to {
        opacity: 0.5;
        -webkit-transform: translateY(-35%);
                transform: translateY(-35%);
        background-color: #FF006F;
    }
}

@-webkit-keyframes move-in {
    from {
        opacity: 0.5;
        -webkit-transform: translateY(35%);
                transform: translateY(35%);
    } to {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

@keyframes move-in {
    from {
        opacity: 0.5;
        -webkit-transform: translateY(35%);
                transform: translateY(35%);
    } to {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

::view-transition-old(root) {
    -webkit-animation: 1.5s cubic-bezier(0.87, 0, 0.13, 1) both move-out;
            animation: 1.5s cubic-bezier(0.87, 0, 0.13, 1) both move-out;
}

::view-transition-new(root) {
    -webkit-animation: 1.5s cubic-bezier(0.87, 0, 0.13, 1) both move-in;
            animation: 1.5s cubic-bezier(0.87, 0, 0.13, 1) both move-in;
}

::view-transition-old(root) {
    -webkit-animation: fade-out 0.3s ease forwards;
            animation: fade-out 0.3s ease forwards;
}

::view-transition-new(root) {
    -webkit-animation: fade-in 0.3s ease forwards;
            animation: fade-in 0.3s ease forwards;
}

@-webkit-keyframes fade-out {
    from { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
    to { opacity: 0; -webkit-transform: translateY(10px); transform: translateY(10px); }
}

@keyframes fade-out {
    from { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
    to { opacity: 0; -webkit-transform: translateY(10px); transform: translateY(10px); }
}

@-webkit-keyframes fade-in {
    from { opacity: 0; -webkit-transform: translateY(-10px); transform: translateY(-10px); }
    to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

@keyframes fade-in {
    from { opacity: 0; -webkit-transform: translateY(-10px); transform: translateY(-10px); }
    to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

/* ###COMMON### */

body {
    font-family: "Raleway", serif;
    background-color: var(--clr-bg);
}

main {
    position: relative;
}

.dot {
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: 1rem;
    width: 1rem;
    overflow: hidden;
    padding: .2rem;
    background-color: var(--clr-secondary);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    -webkit-transition: all ease .1s;
    -o-transition: all ease .1s;
    transition: all ease .1s;
    pointer-events: none;
}

.dot svg {
    opacity: 0;
    -webkit-transition: all ease .1s;
    -o-transition: all ease .1s;
    transition: all ease .1s;
}

.customer-container {
    padding: .5rem 1rem;
    background-color: var(--clr-bg);
}

.other-pages {
    background-color: var(--clr-bg);  
}

.text-gradient {
    background: var(--gradient-bg-sec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    font-weight: 500 !important;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.text-gradient-sec {
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    font-weight: 500 !important;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.arrow-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--clr-primary);
    gap: .5rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    text-wrap: nowrap;
}

.underline-animation {
    position: relative;
}

.underline-animation::after {
    content: '';
    background: var(--clr-primary);
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: bottom right;
        -ms-transform-origin: bottom right;
            transform-origin: bottom right;
    -webkit-transition: -webkit-transform 0.25s ease-out;
    transition: -webkit-transform 0.25s ease-out;
    -o-transition: transform 0.25s ease-out;
    transition: transform 0.25s ease-out;
    transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.underline-animation:hover::after{
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: bottom left;
        -ms-transform-origin: bottom left;
            transform-origin: bottom left;
}

.summer-container img {
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.summer-container ul li {
    margin-left: 2rem;
    list-style-type: disc;
}

.back-to-top {
    position: fixed;
    bottom: 2%;
    right: 2%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50vw;
    border: none;
    height: 2rem;
    width: 2rem;
    overflow: hidden;
    padding: .2rem;
    background-color: var(--clr-secondary);
}

.back-to-top svg {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}

.loading-anime {
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.loader {
    height: 1.5rem;
    width: 1.5rem;
    border: 4px solid var(--clr-primary);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-animation: rotation 1s linear infinite;
            animation: rotation 1s linear infinite;
}

/* ###FLATPICKER### */

.flatpickr-calendar {
    background-color: var(--clr-primary);
    -webkit-box-shadow: 1px 0 0 var(--clr-secondary),
    -1px 0 0 var(--clr-secondary),
    0 1px 0 var(--clr-secondary),
    0 -1px 0 var(--clr-secondary),
    0 3px 13px rgba(0,0,0,0.08);
            box-shadow: 1px 0 0 var(--clr-secondary),
    -1px 0 0 var(--clr-secondary),
    0 1px 0 var(--clr-secondary),
    0 -1px 0 var(--clr-secondary),
    0 3px 13px rgba(0,0,0,0.08);
}

.flatpickr-monthDropdown-months,
.cur-year,
.flatpickr-weekday,
.flatpickr-day {
    color: var(--clr-secondary) !important;
}

.prevMonthDay, .nextMonthDay,
.flatpickr-months .flatpickr-prev-month svg, 
.flatpickr-months .flatpickr-next-month svg {
    color: var(--loading-bg) !important;
    fill: var(--loading-bg) !important;
}

.flatpickr-day.selected {
    background: var(--clr-secondary) !important;
    border: var(--clr-secondary);
    color: var(--clr-primary) !important;
}

.flatpickr-calendar.arrowTop:before {
    border: var(--loading-bg) !important;
}

.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, 
.flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, 
.flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, 
.flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, 
.flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, 
.flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
    cursor: pointer;
    outline: 0;
    background: var(--loading-text) !important;
    border-color: var(--loading-text) !important;
    color: var(--loading-bg) !important;
}

/* ###SUMMERNOTE### */

.note-editor .note-toolbar {
    padding: .5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    background-color: var(--offcanvas-bg);
}

.note-editor .note-toolbar>.note-btn-group {
    margin: 0;
}

.note-btn-group>.note-btn {
    background-color: var(--loading-bg);
    color: var(--clr-primary);
}

.note-editor.note-frame {
    padding: .5rem 1rem;
    border-radius: 10px;
    color: var(--clr-primary);
    border: 2px solid var(--loading-bg);
    background: var(--offcanvas-bg);
}

.note-modal-footer {
    height: 60px;
}

/* ###BUTTONS### */

.glf-btn {
    background: transparent;
    border: none;
    padding: .5rem 1rem;
    text-align: center;
    text-wrap: nowrap;
    text-decoration: none;
    font-family: "MuseoModerno", serif;
    color: var(--clr-primary);
    min-width: 10rem;
    border-radius: 20px;
    cursor: pointer;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.glf-btn-primary {
    background: var(--foot-gradient);
    background-size: 200%;
    -webkit-animation: bg-pan 3s linear infinite;
            animation: bg-pan 3s linear infinite;
}

/* ###LENIS### */

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* ###LOADER### */

.preloader {
  position: fixed;
  height: 100dvh;
  width: 100%;
  background-color: var(--loading-bg);
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.count {
  pointer-events: none;
}

.count p {
  font-size: 10rem;
  color: var(--loading-text);
}

/* ###CONNECT### */

.connect-container {
    height: 100%;
    width: 100%;
    position: fixed;
    background: var(--gradient-bg);
    top: -100%;
    left: 0;
    z-index: 10;
    padding: 1.5rem;
}

.connect-wrapper {
    background-color: var(--offcanvas-bg);
    min-height: 95vh;
    height: 100%;
    width: 100%;
    padding: 2rem;
    color: var(--clr-primary);
    border-radius: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    overflow-y: scroll;
}

.connect-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.connect-close-btn {
    background-color: var(--clr-secondary);
    border-radius: 50vw;
    border: none;
    color: var(--clr-primary);
    font-size: 1.2rem;
    font-weight: 500;
    height: 2rem;
    width: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
}

.connect-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}

.connect-body h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0;
}

.connect-body p {
    font-size: 1rem;
    font-weight: 300;
}

.connect-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    overflow-y: scroll;
}

#error2 {
    color: var(--clr-secondary);
}

/* ###INFORMATION### */

.information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: .5rem;
}

.information label,
.file-label {
    font-size: 1rem;
    font-weight: 300;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}

.information input,
.information textarea,
.file-input {
    font-size: 1rem;
    border-radius: 20px;
    padding: .5rem 1rem;
    background: transparent;
    border: 2px solid var(--loading-bg);
    -webkit-box-shadow: var(--shadow);
            box-shadow: var(--shadow);
    color: var(--clr-primary);
}

.information textarea {
    height: 6rem;
    resize: none;
    font-family: "Raleway", serif;
}

.checkbox-conatiner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.checkbox-conatiner input[type=checkbox] {
    height: 1.2rem;
    width: 1.2rem;
    accent-color: var(--clr-secondary);
}

.information-submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    width: 100%;
}

/* ###NAVBAR### */

.glf-navbar {
    position: fixed;
    top: 0;
    z-index: 9;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 5rem;
    padding: .5rem 1rem;
    -webkit-transition: background-color .5s ease;
    -o-transition: background-color .5s ease;
    transition: background-color .5s ease;
}

.glf-navbar-scrolled {
    background-color: var(--clr-bg);
}

.glf-option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}

.glf-option a,
.glf-option button {
    color: var(--clr-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-active {
    font-style: italic;
    color: var(--clr-secondary) !important;
    font-weight: 600;
    text-decoration: underline !important;
}

.glf-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    gap: .5rem;
}

.glf-contact button {
    color: var(--clr-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* ###INDEX### */

.landing-container {
    width: 100%;
    position: sticky;
    top: 0;
}

.hero-wrapper {
    position: relative;
    height: 1500vh;
    width: 100%;
    background-color: var(--clr-bg);
}

.hero-frames {
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
}

.hero-canvas {
    height: 100vh;
    width: 100%; 
    scale: 0;
}

.scroll-down {
    position: fixed;
    bottom: 10%;
    right: 5%;
    color: var(--clr-primary);
    font-size: 1rem;
    opacity: 0;
}

.hero-content {
    position: fixed;
    bottom: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
    z-index: 1;
    width: 90%;
    height: 10rem;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.hero-content h1 {
    font-size: 3vw;
    color: var(--clr-primary);
    font-weight: 400;
    margin: 0;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(80%);
        -ms-transform: translateY(80%);
            transform: translateY(80%);
    opacity: 0;
}

.hero-cta {
    position: fixed;
    top: 0;
    text-align: center;
    z-index: 1;
    opacity: 0;
    height: 100%;
    width: 100%;
    -o-border-image: fill 0 -o-linear-gradient(#0001, #000);
       border-image: fill 0 -webkit-gradient(linear, left top, left bottom, from(#0001), to(#000));
       border-image: fill 0 linear-gradient(#0001, #000);
}

.cta-content {
    position: absolute;
    bottom: 20%;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.cta-content h1 {
    font-size: 3vw;
    color: var(--clr-primary);
    font-weight: 400;
    margin: 0;
    pointer-events: none;
}

.index-body {
    min-height: 100vh;
    width: 100%;
    position: sticky;
    top: 0;
    background-color: var(--clr-bg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15rem;
    padding-top: 20rem;
    color: var(--clr-primary);
    -webkit-mask: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(15rem, var(--clr-bg)));
    -webkit-mask: linear-gradient(transparent, var(--clr-bg) 15rem);
            mask: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(15rem, var(--clr-bg)));
            mask: linear-gradient(transparent, var(--clr-bg) 15rem);
}

.section-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}

.section-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 400;
    margin: 0;
}

.section-header h6 {
    font-size: 1rem;
    font-weight: 500;
}

.work-card-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    width: 100%;
}

.work-card {
    height: 75dvh;
    width: 45%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.work-img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.offer-card-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}

.offer-card {
    padding: 1rem;
    height: 20rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    min-width: 24%;
    border-radius: 20px;
    -webkit-box-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
            box-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
    position: relative;
}

.offer-card-logo img {
    height: 4rem;
    width: 4rem;
    -o-object-fit: contain;
       object-fit: contain;
}

.offer-card-title h6 {
    font-size: 1.5rem;
    font-weight: 300;
}

.offer-card-desc ul li {
    margin-left: 2rem;
    list-style-type: disc;
    font-weight: 300;
}

.offer-card-desc p {
    font-size: 1rem;
    font-weight: 300;
}

.offer-card::before{
    content: '';
    background: -o-radial-gradient(var(--mouse-x) var(--mouse-y), 400px circle, rgba(255, 255, 255, 0.199), transparent 80%);
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.199), transparent 80%);
    border-radius: inherit;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    -webkit-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    transition: opacity .5s ease;
}

.offer-card:hover::before {
    opacity: 1;
}

.approach-card-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.approach-card {
    padding: 2rem 0;
    border-top: 2px dashed var(--clr-primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}

.approach-card h3 {
    font-style: normal;
    font-size: 1.5rem;
    font-weight: 600;
}

.approach-card p {
    font-size: 1.2rem;
    font-weight: 400;
}

.blog-wrapper p {
    font-size: 1.2rem;
    font-weight: 400;
}

.blog-container {
    margin-top: 1rem;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem 1rem;
}

.blog-card {
    height: 30rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    color: var(--clr-primary);
    text-decoration: none;
}

.blog-img {
    height: 65%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
}

.blog-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: scale .5s ease;
    -o-transition: scale .5s ease;
    transition: scale .5s ease;
}

.blog-img img:hover {
    scale: 1.1;
}

.blog-data {
    height: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}

.blog-data span {
    color: var(--loading-text);
    font-size: .8rem;
}

.blog-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: .5rem;
}

.blog-meta h6 {
    font-size: 1.2rem;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.blog-meta p {
    font-size: 1rem;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.blog-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}

.blog-author img, .article-avatar img {
    height: 1.5rem;
    width: 1.5rem;
    object-fit: contain;
    border-radius: 50vw;
}

.blog-author p {
    font-size: .8rem;
}

.index-connect-link h2 {
    font-size: 5rem;
    font-weight: 300;
}

.index-connect-link h3 {
    font-size: 3rem;
    font-weight: 300;
}

.index-connect-link a svg {
    height: 2rem;
    width: 2rem;
    -o-object-fit: contain;
       object-fit: contain;
}

.scroll-reveal {
    color: hsl(0 0% 100% /0.2);
    background-image: -o-linear-gradient(var(--loading-text), var(--clr-primary));
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--loading-text)), to(var(--clr-primary)));
    background-image: linear-gradient(var(--loading-text), var(--clr-primary));
    -webkit-background-clip: text;
            background-clip: text;
    background-repeat: no-repeat;
    background-size: 0% 100%;
}

/* ###WORK### */

.page-header {
    min-height: 90dvh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    color: var(--clr-primary);
    padding-bottom: 2rem;
}

.text-reveal-animation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.text-reveal-animation h1 {
    font-size: 4rem;
    font-weight: 200;
    margin: 0;
    padding: 0;
}

.page-body {
    min-height: 100dvh;
    width: 100%;
    color: var(--clr-primary);
}

.work-container {
    padding-block: 2rem;
}

.project-card {
    height: 100dvh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    cursor: pointer;
    color: var(--clr-primary);
    font-size: 5rem;
    -o-border-image: fill 0 -o-linear-gradient(#00000050, #00000050);
       border-image: fill 0 -webkit-gradient(linear, left top, left bottom, from(#00000050), to(#00000050));
       border-image: fill 0 linear-gradient(#00000050, #00000050);
    text-align: center;
}

/* ###PROJECT_PAGE### */

.project-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.project-banner {
    height: 100vh;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    padding: 4rem;
    -o-border-image: fill 0 -o-linear-gradient(#0001, #000);
       border-image: fill 0 -webkit-gradient(linear, left top, left bottom, from(#0001), to(#000));
       border-image: fill 0 linear-gradient(#0001, #000);
}

.project-name {
    color: var(--clr-primary);
    font-weight: 400;
    font-size: 3rem;
    width: 61%;
}

.project-information {
    min-height: 100vh;
    width: 100%;
    z-index: 3;
    background-color: var(--clr-bg);
    color: var(--clr-primary);
}

.project-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 2rem;
}

.project-services {
    width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    font-size: 1.2rem;
}

.project-deatils {
    width: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
}

.project-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    font-size: 1.2rem;
}

.project-link a {
    text-decoration: none;
    color: var(--clr-primary);
    font-size: 1.5rem;
}

.project-desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: .2rem;
}

/* ###ABOUT### */

.about-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
}

.about-heading h2 {
    font-size: 3rem;
    font-weight: 400;
}

.about-head {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    height: 45dvh;
}

.about-image {
    width: 15%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
}

.about-content {
    width: 85%;
    padding-left: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
}

.about-content p {
    font-size: 1.3rem;
    color: var(--clr-primary);
}

.about-form-container {
    height: 100dvh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
}

.about-form-container h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0;
}

.about-form-container p {
    font-size: 1rem;
    font-weight: 300;
    margin: 0;
    width: 60%;
}

.about-page-form {
    margin-top: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
}

.about-information {
    width: 48%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.about-information textarea {
    height: 2.5rem;
}

/* ###SERVICE### */

.service-body {
    border-top: 2px dashed var(--clr-primary);
}

.services-container {
    padding: 2.5rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
}

.service-tag {
    width: 30%;
    height: 100%;
    position: sticky;
    top: 5rem;
}

.service-tag h3 {
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
}

.service-info {
    width: 60%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
}

.service-info-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}

.service-info-card h4 {
    font-weight: 300;
    font-size: 2.5rem;
}

.service-name {
    margin-left: 10rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: .5rem;
    font-size: 1.5rem;
    font-weight: 200;
}

/* ###BLOGS### */

.blogs-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
    background-color: var(--clr-bg);
}

.blogs-banner-container {
    height: 75vh;
    width: 100%;
    position: relative;
}

.blog-banner {
    height: 100%;
    width: 100%;
    position: absolute;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
    text-decoration: none;
    -o-border-image: fill 0 -o-linear-gradient(#0001, #000);
       border-image: fill 0 -webkit-gradient(linear, left top, left bottom, from(#0001), to(#000));
       border-image: fill 0 linear-gradient(#0001, #000);
    color: var(--clr-primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
}

.blog-meta-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    padding: .5rem 1rem;
    width: 100%;
}

.blog-meta-tag {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-meta-details {
    width: 20%;
    display: flex;
    flex-direction: column;
    text-align: start;
    justify-content: end;
    align-items: end;   
}

.blog-meta-tag > span {
    padding: .5rem 1.5rem;
    font-size: .8rem;
    display: none;
}

.blog-meta-desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.blog-meta-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    width: 70%;
}

.blog-meta-title h1 {
    font-weight: 400;
    font-size: 2.5rem;
    margin: 0;
}

.blog-meta-title h3 {
    font-weight: 300;
    font-size: 1.8rem;
    margin: 0;
}

.banner-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: .5rem;
}

.b-dot {
    border: 1px solid var(--loading-text);
    height: 1rem;
    width: 1rem;
    border-radius: 50vw;
    background: transparent;
}

.b-dot-active {
    background: var(--clr-secondary);
}

.blogs-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
}

.blog-tags-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    overflow-x: scroll;
    width: 100%;
    padding-bottom: 1rem;
}

.blog-tags-container::-webkit-scrollbar {
    display: block;
}

.blog-tags-container::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: var(--gradient-bg);
}

.blog-tag {
    color: var(--clr-primary);
    border: 1px solid var(--clr-primary);
    padding: .5rem 1rem;
    border-radius: 50vw;
    text-align: center;
    background: var(--clr-bg);
    cursor: pointer;
    text-wrap: nowrap;
}

.blog-tag-active {
    background: var(--gradient-bg);
    border: 1px solid var(--gradient-bg);
}

/* ###ARTICLE### */

.article-container {
    color: var(--clr-primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    padding-top: 8rem;
    padding-bottom: 4rem;
    position: relative;
    overflow-x: hidden;
}

.copy-to-clipboard {
    position: fixed;
    top: 5%;
    padding: .5rem 1rem;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    background-color: var(--clr-secondary);
    color: var(--clr-primary);
    border-radius: 5px;
    right: -100%;
    pointer-events: none;
}

.article-head {
    margin: auto;
    width: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
}

.article-tag-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow-x: scroll;
}

.article-tag {
    background: var(--gradient-bg);
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-family: "MuseoModerno", serif;
    border-radius: 50vw;
}

.art-tag {
    background: var(--clr-bg);
    padding: .5rem 1.5rem;
    margin: .2rem;
    border-radius: 50vw;
    font-size: .8rem;
    text-wrap: nowrap;
}

.article-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
}

.article-title h1 {
    font-size: 2.2rem;
    font-weight: 400;
}

.article-title h3 {
    font-size: 1.2rem;
    font-weight: 300;
}

.atricle-attr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.article-avatar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: .8rem;
}

.article-opt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
}

.atricle-date-time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: .5rem;
}

.article-share-btn {
    background: transparent;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer;
}

.article-share-btn svg path {
    stroke: var(--clr-secondary);
}

.article-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
}

.article-banner {
    height: 80dvh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
}

.article-banner img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-filter: url(#noise);
            filter: url(#noise);
}

.article-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    width: 60%;
    margin: auto;
}

.article-content > * {
    color: var(--clr-primary) !important;
}

.article-content p span a,
.article-content p a,
.article-content ul li a {
    color: var(--clr-secondary) !important;
    text-decoration: none;
}

.article-content ul li,
.article-content ol li {
    margin-left: 20px;
}

.simlar-article-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 4rem;
}

.recommended-articles {
    font-size: 2rem;
    font-weight: 300;
    color: var(--clr-primary);
}

.article-content h5 {
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    font-size: 2.5rem;
    font-weight: 500;
    margin-block: 2rem;
}

/* ###MENTORSHIP### */

.mentorship-head {
    height: 90dvh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    color: var(--clr-primary);
    gap: 1.5rem;
}

.mentorship-head h1 {
    font-size: 3rem;
    font-weight: 200;
    margin: 0;
    padding: 0;
}

.mentorship-head h5 {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.mentorship-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10rem;
    color: var(--clr-primary);
    padding: 8rem 0 0;
}

.mentorship-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
}

.mentorship-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
}

.mentorship-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 1rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.mentorship-phase {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}

.phase-head h5 {
    font-size: 1.5rem;
    font-weight: 500;
    font-style: normal;
}

.phase-body ul li {
    margin-left: 1.5rem;
    list-style-type: disc;
    font-weight: 300;
    margin-bottom: .5rem;
}

.mentorship-card {
    width: 32%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    height: 15rem;
}

.mentorship-join {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.mentorship-desc-apply {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}

.mentorship-desc-apply h2 {
    font-size: 3rem;
    font-weight: 200;
    margin: 0;
    padding: 0;
}

.mentorship-desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8rem;
}

.mentorship-desc-card {
    padding: 2.5rem;
    height: 25rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.mentorship-desc-title h6 {
    font-size: 2.8rem;
}

.mentorship-desc-data ul li {
    font-size: 1.2rem;
}

.mentorship-application {
    min-height: 100vh;
    height: 100%;
    width: 100%;
    background: var(--gradient-bg);
    padding: 1.5rem;
}

.mentorship-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
}

.mentorship-information {
    width: 48%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.file-input {
    padding: 0;
}

.file-btn {
    background: var(--gradient-bg);
    height: 2rem;
    width: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-family: "MuseoModerno", serif;
    font-size: 1rem;
    cursor: pointer;
}

.file_name_class {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

/* ###EVENTS### */

.event-body {
    gap: 4rem !important;
    padding-top: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.event-body,
.event-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}

.event-thumb {
    height: 25rem;
    overflow: hidden;
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.event-thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    -webkit-transition: scale .5s ease;
    -o-transition: scale .5s ease;
    transition: scale .5s ease;
}

.event-thumb:hover img {
    -webkit-animation: pulse 800ms ease-in-out;
            animation: pulse 800ms ease-in-out;
}

.event-thumb:hover .event-desc {
    bottom: 0;
}

.event-thumb:hover .event-desc h5 {
    opacity: 1;
}

.event-thumb:hover .event-desc p {
    opacity: 1;
}

.event-img-arr {
    height: 10rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.event-img-arr img {
    height: 100%;
    width: 23%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    cursor: pointer;
}

.event-img-arr img:hover {
    outline: 1px solid var(--clr-secondary);
    outline-offset: .2rem;
}

.event-desc {
    position: absolute;
    color: var(--bg);
    bottom: -50%;
    padding: 1rem;
    -o-border-image: fill 0 -o-linear-gradient(#0001, #000);
       border-image: fill 0 -webkit-gradient(linear, left top, left bottom, from(#0001), to(#000));
       border-image: fill 0 linear-gradient(#0001, #000);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    -webkit-transition: bottom .5s ease;
    -o-transition: bottom .5s ease;
    transition: bottom .5s ease;
    min-height: 40%;
    width: 100%;
    color: var(--clr-primary);
}

.event-desc h5 {
    font-size: 2rem;
}

.event-foot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 2rem;
}

/* ###POPUP_IMAGE_SLIDER### */

.popup-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.popup-slider.visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.popup-slider .slider-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100dvh;
    width: 100%;
}

.popup-slider .slider-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    opacity: 0;
    -o-object-fit: contain;
       object-fit: contain;
}

.popup-slider .close-btn,
.popup-slider .prev-btn,
.popup-slider .next-btn {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    color: var(--bg);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    z-index: 1001;
    height: 2.5rem;
    width: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--clr-primary);
}

.popup-slider .close-btn {
    top: 2%;
    right: 2%;
}

.popup-slider .prev-btn {
    left: 2%;
}

.popup-slider .next-btn {
    right: 2%;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ###GET_FEATURED### */

.get-featured-card {
    height: 20rem;
}

.fb-5 {
    width: 45%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.fb-3 {
    width: 30%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.fb-10 {
    width: 100%;
}

/* ###SUPPORTING_PAGES### */

.supporting-wrapper {
    padding-top: 10rem;
    color: var(--clr-primary);
    width: 60%;
    margin: auto;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}

.supporting-wrapper h1 {
    font-size: 3rem;
    font-weight: 200;
}

.supporting-wrapper h4 {
    font-size: 1.5rem;
    font-weight: 300;
}

.supporting-wrapper h5 {
    font-size: 1.3rem;
}

.supporting-wrapper p {
    font-size: 1.2rem;
    font-weight: 300;
}

.supporting-wrapper ul li {
    margin-bottom: .5rem;
}

.supporting-wrapper a {
    text-decoration: none;
    font-weight: 600;
    color: var(--clr-primary);
}

/* ###ERROR_PAGES### */

.error-pages {
    align-items: center;
    justify-content: center;
}

.error-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.error-text h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
}

.error-text p {
    text-align: center;
    font-size: 1.2rem;
    margin: 0 auto;
}

/* ###FOOTER### */

.glf-footer {
    border-top: 2px dashed var(--clr-primary);
    padding: 2rem 0 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    height: 50dvh;
    background-color: var(--clr-bg);
    color: var(--clr-primary);
    margin-top: 6rem;
}

.glf-footer-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 90%;
    padding: 0 1rem;
}

.glf-foot-logo {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
}

.glf-foot-title h1{
    font-family: "MuseoModerno", serif;
    font-size: 3rem;
    font-weight: 500;
}

.glf-foot-title span {
    color: var(--clr-secondary);
}

.glf-foot-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: .8rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.glf-foot-info > *,
.glf-foot-write > * {
    color: var(--clr-primary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    border: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.glf-foot-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    width: 30%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
}

.glf-foot-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.glf-foot-links > div:first-child {
    width: 60%;
}

.glf-foot-links > div:last-child {
    width: 40%;
}

.glf-foot-write {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}

.glf-foot-gradient {
    padding: .2rem;
    background: var(--foot-gradient);
    background-size: 200%;
    -webkit-animation: bg-pan 3s linear infinite;
            animation: bg-pan 3s linear infinite;
}

/* ###NO_DISPLAY### */

.mobile-bottom-bar {
    display: none;
}

.mobile-sidebar {
    display: none;
}

@media only screen and (max-width: 767px) and (min-width: 280px) {

    /* ###FONT_RESET### */

    .connect-body h2, .text-reveal-animation h1,
    .project-card, .mentorship-head h1,
    .supporting-wrapper h1, .glf-foot-title h1, .article-title h1,
    .hero-content h1, .cta-content h1  {
        font-size: 1.8rem;
    }

    .mobile-sidebar a, .project-name, 
    .service-info-card h4, .mentorship-desc-title h6,
    .article-content h5  {
        font-size: 1.5rem;
    }

    .mobile-option, .about-content p, .project-text,
    .service-name, .mentorship-desc-data ul li,
    .supporting-wrapper p, .article-content p, .article-content span  {
        font-size: 1rem;
    }

    /* ###COMMON### */

    .customer-container {
        padding: .5rem;
    }

    .preloader {
        height: 100dvh;
    }

    .connect-container {
        padding: .5rem;
        height: 100vh;
        overflow-y: scroll;
        top: -150%;
    }

    .connect-wrapper {
        padding: 1rem;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        border-radius: 10px;
    }

    .dot {
        opacity: 0;
        visibility: hidden;
    }
    
    .mobile-bottom-bar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        position: sticky;
        bottom: 0;
        padding: .5rem 1rem;
        background: var(--foot-gradient);
        background-size: 200%;
        -webkit-animation: bg-pan 3s linear infinite;
                animation: bg-pan 3s linear infinite;
        width: 100%;
    }

    .mobile-option {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: .5rem;
        text-decoration: none;
        color: var(--clr-bg);
        font-weight: 500;
        background: transparent;
        border: none;
        font-size: .8rem;
    }

    .mobile-option svg {
        height: 1.5rem;
        width: 1.5rem;
        -o-object-fit: contain;
           object-fit: contain;
        -o-object-position: center;
           object-position: center;
    }

    .mobile-option svg path {
        stroke: var(--clr-bg);
    }

    .mobile-option-active,
    .mobile-option-active svg path {
        color: var(--clr-primary);
        stroke: var(--clr-primary);
    }

    .mobile-sidebar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding: 2.5rem 0;
        gap: 1.5rem;
        overflow-y: scroll;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100dvh;
        width: 100%;
        background-color: var(--clr-bg);
        z-index: 11;
    }

    .mobile-sidebar a {
        color: var(--clr-primary);
        text-decoration: none;
        padding-inline: 2rem;
    }

    .mobile-sidebar-close {
        position: absolute;
        right: 5%;
        top: 2%;
    }

    .mobile-sidebar-logo {
        position: absolute;
        left: 0;
        top: 2%;
    }

    .text-reveal-animation {
        gap: .5rem;
    }

    .fb-5, .fb-3 {
        width: 100%;
    }

    .note-editor .note-toolbar {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .back-to-top {
        bottom: 10%;
    }

    /* ###PAGES### */

    .page-header {
        padding-top: 5rem;
    }

    .about-head {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2rem;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .about-image {
        width: 100%;
    }

    .about-content {
        width: 100%;
        padding: 0;
    }

    .about-form-container h2 {
        font-size: 2rem;
    }

    .about-form-container p {
        width: 100%;
    }

    .about-heading h2 {
        font-size: 1.2rem;
    }

    .project-card {
        height: 40vh;
        background-attachment:unset;
        -o-border-image: fill 0 -o-linear-gradient(#0000008a, #0000008a);
           border-image: fill 0 -webkit-gradient(linear, left top, left bottom, from(#0000008a), to(#0000008a));
           border-image: fill 0 linear-gradient(#0000008a, #0000008a);
        text-decoration: none;
    }

    .project-banner {
        padding: 2rem .5rem 5rem;
        height: 50vh;
    }

    .project-name {
        width: 100%;
    }

    .project-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1rem;
    }

    .project-services {
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        overflow-x: scroll;
    }

    .project-service {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        text-wrap: nowrap;
        border: 1px solid var(--clr-secondary);
        padding: .5rem 1rem;
        border-radius: 20px;
        font-size: .8rem;
    }

    .project-deatils {
        width: 100%;
    }

    .services-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .service-tag {
        width: 100%;
        position: static;
    }

    .service-info {
        width: 100%;
    }

    .service-name {
        margin-left: unset;
    }

    .blogs-banner-container {
        display: none;
    }

    .blogs-body {
        margin-top: 5rem;
    }

    .blog-meta-container {
        padding: .5rem;
    }

    .blog-meta-desc {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .blog-meta-title, .blog-meta-details {
        width: 100%;
    }
    
    .blog-meta-title h1 {
        font-size: 1.3rem;
    }

    .blog-meta-title h3 {
        font-size: 1.1rem;
    }

    .article-head,
    .article-content {
        width: 100%;
    }

    .atricle-attr {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
        gap: 1rem;
    }

    .article-opt {
        width: 100%;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .article-banner {
        height: 25rem;
    }

    .copy-to-clipboard {
        top: 2%;
        min-width: 100%;
      }

    .mentorship-head h5 {
        font-size: 1.2rem;
    }

    .mentorship-steps {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .mentorship-phase {
        width: 100%;
    }

    .mentorship-desc-apply h2 {
        font-size: 2rem;
    }

    .mentorship-card {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .infromation-submit {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: end;
        margin-top: 1rem;
    }

    .mentorship-desc-card {
        padding: 1rem;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .mentorship-application {
        padding: 1rem;
    }

    .event-img-arr {
        overflow-y: scroll;
        height: 5rem;
    }

    .supporting-wrapper {
        width: 100%;
    }

    .supporting-wrapper h4 {
        font-size: .8rem;
    }
    
    /* ###NAVBAR### */
    .glf-option {
        display: none;
    }

    /* ###INDEX### */

    .hero-wrapper { 
        height: 1000vh;
    }

    .hero-content {
        height: 70vh;
    }

    .index-body {
        -webkit-mask: unset;
                mask: unset;
        padding-top: 2rem;
    }

    .section-header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header h6 {
        font-size: .8rem;
    }

    .work-card {
        width: 100%;
        height: 50dvh;
    }

    .offer-card-wrapper {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .offer-card {
        min-width: 48%;
    }

    .blog-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .blog-card {
        width: 100%;
    }

    .index-connect-link h2 {
        font-size: 2.5rem;
    }

    .index-connect-link h3 {
        font-size: 2rem;
    }

    .index-connect-link a svg {
        height: 1.5rem;
        width: 1.5rem;
    }

    /* ###FOOTER### */

    .glf-footer {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        margin: 2rem 0 !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 1rem;
    }

    .glf-foot-logo {
        width: 100%;
        gap: 1rem;
    }

    .glf-footer-data {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2rem;
        padding: 0;
    }

    .glf-foot-gradient,
    .glf-foot-info > a,
    .glf-foot-info button {
        display: none;
    }

    .glf-foot-nav {
        -webkit-box-orient: unset;
        -webkit-box-direction: unset;
            -ms-flex-direction: unset;
                flex-direction: unset;
        gap: unset;
        width: 100%;
        -webkit-box-pack: unset;
            -ms-flex-pack: unset;
                justify-content: unset;
    }

    .connon-title h2 {
        font-size: 2rem !important;
    }

}
@media only screen and (max-width: 767px) and (min-width: 550px) {
    .work-card, .offer-card {
        width: 48%;
    }

    .glf-footer-data {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }

    .page-header {
        padding-bottom: 4rem;
    }

    .about-head {
        position: relative;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        gap: 1rem;
    }

    .about-image {
        width: 35%;
        position: sticky;
        top: 15%;
    }

    .blogs-banner-container {
        height: 90vh;
    }

    .mentorship-head {
        height: 130dvh;
    }

    .mobile-sidebar {
        padding-block: 55%;
    }
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
    .dot {
        opacity: 0;
        visibility: hidden;
    }

    .glf-contact {
        display: none;
    }

    .work-card {
        height: 35dvh;
    }

    .offer-card-wrapper {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .offer-card {
        min-width: 48%;
    }

    .blog-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .glf-foot-logo {
        width: 50%;
    }

    .glf-foot-nav {
        width: 45%;
    }

    .about-head {
        position: relative;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .about-image {
        width: 40%;
        position: sticky;
        top: 10%;
    }

    .about-content {
        width: 40%;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
    }

    .blog-meta-desc {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1rem;
    }

    .mentorship-steps {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 2rem;
    }

    .mentorship-phase {
        width: 47%;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
    }

    .supporting-wrapper {
        width: 80%;
    }

    .blog-meta-details {
        width: fit-content;
    }

}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
    .dot {
        opacity: 0;
        visibility: hidden;
    }

    .work-card {
        height: 50dvh;
    }

    .offer-card-wrapper {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .offer-card {
        width: 48%;
    }

    
    .about-head {
        position: relative;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .about-image {
        width: 40%;
        position: sticky;
        top: 10%;
    }

    .blog-meta-title {
        width: 80%;
    }

    .blog-meta-details {
        width: 20%;
    }

    .mentorship-steps {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 2rem;
    }

    .mentorship-phase {
        width: 47%;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
    }

    .supporting-wrapper {
        width: 80%;
    }
}
@media only screen and (max-width: 1450px) and (min-width: 1200px) {}
@media only screen and (max-width: 1750px) and (min-width: 1451px) {}
@media only screen and (max-width: 1950px) and (min-width: 1751px) {}
@media only screen and (min-width: 1950px) {}

.cannon-wrapper {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
        flex-direction: column-reverse;
    gap: 1rem;
}

.connon-title {
    padding: 2rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.connon-title h2 {
    font-size: 3rem;
    font-weight: 200;
    color: var(--clr-primary);
}

.connon-title h3 {
    font-size: 2rem;
    font-weight: 200;
    color: var(--clr-primary);
}

.cannon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}
  
.cannon {
    position: relative;
    z-index: 10;
    background: transparent;
    border: none;
    cursor: pointer;
}
  
.flair-container {
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
  
.flair {
    width: 50px;
    height: 50px;
    background-image: url("../images/Canon/cannon.png");
    background-size: contain;
    background-repeat: no-repeat;
}
  
.flair-bullet {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    will-change: transform;
    opacity: 0;
}
  
.flair--2 {
    background-image: url("../images/Canon/shape-1.png");
}
  
.flair--3 {
    background-image: url("../images/Canon/shape-2.png");
}
  
.flair--4 {
    background-image: url("../images/Canon/shape-3.png");
}
  
.flair--5 {
    background-image: url("../images/Canon/shape-4.png");
}
  
.flair--6 {
    background-image: url("../images/Canon/shape-5.png");
}
  
.flair--7 {
    background-image: url("../images/Canon/shape-6.png");
}
  
.flair--8 {
    background-image: url("../images/Canon/shape-7.png");
}
  
.flair--9 {
    background-image: url("../images/Canon/shape-8png");
}
  
.flair--10 {
    background-image: url("../images/Canon/shape-9.png");
}
  
.flair--11 {
    background-image: url("../images/Canon/shape-10.png");
}
  
.flair--12 {
    background-image: url("../images/Canon/shape-11.png");
}
  
.flair--13 {
    background-image: url("../images/Canon/shape-12.png");
}
  
.flair--14 {
    background-image: url("../images/Canon/shape-13.png");
}
  
.flair--15 {
    background-image: url("../images/Canon/shape-14.png");
}
  
.flair--16 {
    background-image: url("../images/Canon/shape-15.png");
}
  
.flair--17 {
    background-image: url("../images/Canon/shape-16.png");
}
  
.flair--18 {
    background-image: url("../images/Canon/shape-17.png");
}
  
.flair--19 {
    background-image: url("../images/Canon/shape-18.png");
}
  
.flair--20 {
    background-image: url("../images/Canon/shape-19.png");
}
  
.flair--21 {
    background-image: url("../images/Canon/shape-20.png");
}
  
.flair--22 {
    background-image: url("../images/Canon/shape-21.png");
}
  
.flair--23 {
    background-image: url("../images/Canon/shape-22.png");
}
  
.flair--24 {
    background-image: url("../images/Canon/shape-23.png");
}
  
.flair--25 {
    background-image: url("../images/Canon/shape-24.png");
}
  
.flair--26 {
    background-image: url("../images/Canon/shape-25.png");
}
  
.flair--27 {
    background-image: url("../images/Canon/shape-26.png");
}
  
.flair--28 {
    background-image: url("../images/Canon/shape-27.png");
}
  
.flair--29 {
    background-image: url("../images/Canon/shape-28.png");
}
  
.flair--30 {
    background-image: url("../images/Canon/shape-29.png");
}
  
.flair--31 {
    background-image: url("../images/Canon/shape-30.png");
}
  
.flair--32 {
    background-image: url("../images/Canon/shape-31.png");
}
  
.flair--33 {
    background-image: url("../images/Canon/shape-32.png");
}
  
.flair--34 {
    background-image: url("../images/Canon/shape-33.png");
}
  
.flair--35 {
    background-image: url("../images/Canon/shape-34.png");
}
  
@media (min-width: 768px) {
    .flair, .flair-container {
      width: 100px;
      height: 100px;
    }
}