/* ###ROOT### */

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

:root {
    --clr-first: #DDFF69;
    --clr-second: #00B1FF;
    --clr-third: #FF2891;
    --clr-fourth: #6237FF;
    --clr-fifth: #040424;
    --clr-sixth: #FFFFFF;
    --clr-seventh: #FAFF79;
    --clr-mob-link: #D5D5D5;

    --font-heading: 'The Artisan Marker', sans-serif;

    --cursor-auto: url('../images/Cursor.png');
    --cursor-pointer: url('../images/Pointcursor.png');
}

@font-face {
    font-family: 'The Artisan Marker';
    src: url('../fonts/The Artisan Marker.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    display: none;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: var(--clr-first);
}

::-moz-selection {
    color: var(--clr-sixth);
    background: var(--clr-fourth);
}

::selection {
    color: var(--clr-sixth);
    background: var(--clr-fourth);
}

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 {
    outline: none !important;
}

a {
    text-decoration: none;
    cursor: var(--cursor-pointer), pointer;
}

/* ###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;
}

/* ###COMMON### */

body {
    font-family: "Poppins", sans-serif;
    width: 100%;
    min-height: 100vh;
    position: relative;
    cursor: var(--cursor-auto), auto;
    /* user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none; */
}

section {
    padding-block: 3rem;
}

.underline-animation {
    position: relative;
}

.underline-animation::after {
    content: '';
    background: var(--clr-fifth);
    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;
}

.m-heading {
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin: 0;
    font-size: 2.3rem;
    font-weight: 400;
}

.back-to-top {
    position: fixed;
    bottom: 8%;
    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;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50vw;
    overflow: hidden;
    background-color: var(--clr-fifth);
    scale: 0;
    -webkit-transition: scale .5s ease;
    -o-transition: scale .5s ease;
    transition: scale .5s ease;
    z-index: 8;
}

.loader {
    position: fixed;
    z-index: 8;
    height: 100dvh;
    width: 100%;
    -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom left;
        -ms-transform-origin: bottom left;
            transform-origin: bottom left;
    pointer-events: none;
    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;
    text-align: center;
}

.loader h1 {
    color: var(--clr-sixth);
    opacity: 0;
    -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    -o-transition: opacity 0.4s ease, transform 0.4s ease;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.loader.active h1 {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

/* ###BUTTON### */

.m-btn {
    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;
    gap: 1.8rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    border-radius: 50vw;
    padding: .5rem 1.5rem;
    cursor: var(--cursor-pointer), pointer;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    text-wrap: nowrap;
}

.m-btn-primary {
    background-color: var(--clr-first);
    border: none;
    color: var(--clr-fifth);
}

.m-btn-primary:hover {
    -webkit-box-shadow: var(--clr-first) 5px 5px 5px;
            box-shadow: var(--clr-first) 5px 5px 5px;
    background-color: var(--clr-third);
    color: var(--clr-sixth);
}

.m-btn-secondry {
    background-color: var(--clr-third);
    border: none;
    color: var(--clr-sixth);
}

.m-btn-secondry:hover {
    -webkit-box-shadow: var(--clr-third) 5px 5px 5px;
            box-shadow: var(--clr-third) 5px 5px 5px;
    background-color: var(--clr-first);
    color: var(--clr-fifth);
}

.m-btn-darker {
    background-color: var(--clr-fifth);
    border: none;
    color: var(--clr-sixth);
}

.m-btn-darker:hover {
    -webkit-box-shadow: var(--clr-third) 5px 5px 5px;
            box-shadow: var(--clr-third) 5px 5px 5px;
    color: var(--clr-first);
}

.m-btn-darker svg path {
    fill: var(--clr-first);
}

.m-btt-btn {
    background: transparent;
    border: none;
    cursor: var(--cursor-pointer), pointer;
    padding: .5rem;
}

.m-btt-btn svg {
    height: 1.3rem;
    width: 1.3rem;
    -webkit-transform: rotate(65deg) scaleX(-1);
        -ms-transform: rotate(65deg) scaleX(-1);
            transform: rotate(65deg) scaleX(-1);
}

.m-btt-btn svg path {
    fill: var(--clr-first);
}

/* ###NAVBAR### */

.m-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--clr-first);
    padding: .5rem 5rem;
    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;
    border-radius: 0 0 60rem 60rem;
    z-index: 6;
}

.m-navlink {
    color: var(--clr-fifth);
    font-weight: 500;
}

.m-link-active {
    font-weight: 700;
}

/* ###HOME### */

.m-home-hero {
    width: 100%;
    position: relative;
    height: 800vh;
    padding: 0;
}

.m-hero-animation {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 7;
}

.m-hero-animation canvas {
    height: 100%;
    width: 100%;
}

.scroll-down {
    color: var(--clr-sixth);
    position: fixed;
    bottom: 2%;
    left: 2%;
    z-index: 4;
}

.m-skip-animation {
    position: fixed;
    height: 2.3rem;
    width: 2.3rem;
    bottom: 15%;
    right: 2%;
    z-index: 4;
    background: transparent;
    border: none;
    cursor: var(--cursor-pointer), pointer;
}

.m-skip-animation svg {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
}

.hero-content-animate {
    position: fixed;
    z-index: 8;
    top: 50%;
    width: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding: 1rem;
    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;
    text-align: center;
    background-color: var(--clr-seventh);
    opacity: .95;
    pointer-events: none;
    border-radius: 10px;
}

.hero-content-animate h1 {
    font-size: 1.3rem !important;
    text-wrap: balance;
}

.animate-advance {
    background-color: var(--clr-third) !important; 
    color: var(--clr-sixth) !important;
    opacity: 0;
}

#animateThree, #animateSix {
    background-color: var(--clr-seventh) !important;
    color: var(--clr-fifth) !important;
}

#animateFour {
background-color: var(--clr-fourth) !important;
}

#animateFive {
    background-color: var(--clr-third) !important;    
}

.m-home-secOne, .m-home-secTwo {
    min-height: 100vh;
    width: 100%;
    background-color: var(--clr-third);
    color: var(--clr-sixth);
    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;
    text-align: center;
}

.m-secOne-content, .m-secTwo-content {
    width: 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: 1rem;
}

.m-secTwo-content {
    gap: 2rem;
}

.m-secOne-content h3 {
    font-size: 2rem;
}

.m-home-secTwo {
    background-color: var(--clr-fifth);
    position: relative;
    overflow: hidden;
}

.m-home-secTwo img {
    position: absolute;
    height: 30rem;
    width: 30rem;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
}

#homeEye {
    left: -15%;
}

#homeUfo {
    bottom: -10%;
    right: -10%;
    -webkit-transform: rotate(-30deg);
        -ms-transform: rotate(-30deg);
            transform: rotate(-30deg);
}

.m-home-partners {
    min-height: 100vh;
    width: 100%;
    background-color: var(--clr-second);
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
    padding: 2rem;
    color: var(--clr-sixth);
    position: relative;
}

.m-home-partner-container {
    width: 80%;
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
}

.m-home-join {
    min-height: 100vh;
    width: 100%;
    padding: 3rem;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    background-color: var(--clr-fifth);
}

.m-home-join-top {
    color: var(--clr-first);
    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;
}

.m-home-join-cards {
    width: 50%;
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
}

.m-home-join-card {
    padding: 2rem;
    width: 46%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    background-color: var(--clr-fourth);
    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-sixth);
    border-radius: 20px;
    height: 12rem;
}

.m-home-join-card:hover {
    color: var(--clr-fifth);
    background-color: var(--clr-first);
}

.m-home-join-card:hover > h4 {
    color: var(--clr-fifth);
}

.m-home-join-card h4 {
    color: var(--clr-first);
    font-size: 1.5rem;
}

.m-home-join-card p {
    font-size: 1rem;
}

.m-home-draw {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: var(--clr-fourth);
    position: relative;
    overflow: hidden;
}

.m-home-draw-img {
    height: 100%;
    width: 50%;
}

.m-home-draw-img img {
    position: absolute;
    bottom: -2%;
    left: -2%;
    height: 90%;
}

.m-home-draw-text {
    width: 50%;
}

.m-home-draw-text img {
    height: 20rem;
    width: 20rem;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    position: absolute;
    z-index: 0;
}

#drawHand {
    top: -12%;
    right: -5%;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
}

#drawPerson {
    bottom: 0;
    right: 0;
    height: 10rem;
    width: 10rem;
}

.draw-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;
    color: var(--clr-sixth);
    text-align: end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    padding: 1rem 10rem 1rem 2rem;
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.draw-content a {
    margin: 0;
}

.m-home-partner-with {
    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;
    text-align: center;
    min-height: 100vh;
    width: 100%;
    color: var(--clr-fifth);
    background-color: var(--clr-first);
    position: relative;
}

#antBgAnime {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 1;
}

.partner-with-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: 1.5rem;
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 2;
}

/* ###LAB### */

.m-lab-hero {
    min-height: 155vh;
    background-color: var(--clr-fifth);
    background-image: url(../images/m-lab/lab-bg.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.m-lab-top {
    position: absolute;
    top: 25%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -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;
    color: var(--clr-sixth);
    text-align: center;
    width: 60%;
}

.m-lab-top h5 {
    font-weight: 400;
}

.m-lab-heading {
    color: var(--clr-sixth);
    text-shadow: 0 0 7.5px var(--clr-sixth);
}

.m-lab-top-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;
}

.m-lab-top-content h3 {
    font-weight: 400;
    font-size: 1.2rem;
}

.m-lab-top-content p {
    font-size: 1.2rem;
}

.m-text-highlight {
    font-weight: 500;
    color: var(--clr-first);
}

.m-lab-intro {
    background-color: var(--clr-fifth);
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
}

.m-lab-row {
    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;
}

.m-lab-col-text {
    padding-left: 4rem;
    color: var(--clr-sixth);
    width: 45%;
}

.m-lab-col-text h1 {
    text-wrap: nowrap;
}

.m-lab-col-text p {
    font-size: 1.5rem;
}

.m-lab-col-img {
    width: 45%;
    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;
}

.m-lab-col-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.m-lab-youll {
    background-color: var(--clr-fifth);
    min-height: 200vh;
    background-image: url(../images/m-lab/lab-youll-bg.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

.m-lab-youll-text-container {
    width: 100%;
    min-height: 150vh;
    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;
}

.m-lab-youll-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: 1.5rem;
    width: 50%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.m-lab-youll-text h1 {
    color: var(--clr-sixth);
}

.m-lab-youll-cards {
    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;
    width: 90%;
}

.m-lab-youll-text a {
    margin-top: 1rem;
}

.m-lab-youll-card {
    background-color: var(--clr-fourth);
    color: var(--clr-sixth);
    padding: 1rem;
    text-align: center;
    width: 48%;
    height: 10rem;
    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: 20px;
    font-size: 1.1rem;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.m-lab-looking {
    min-height: 100vh;
    width: 100%;
    background-color: var(--clr-fourth);
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
}

.m-lab-looking h1 {
    color: var(--clr-sixth);
}

.m-lab-looking-cards {
    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;
    gap: 1rem;
    padding: 1.5rem;
    width: 100%;
}

.m-lab-looking-card {
    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;
    text-align: center;
    color: var(--clr-sixth);
    font-size: 1.1rem;
    gap: 1rem;
    width: 20%;
}

.m-lab-looking-card-img {
    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;
    width: 100%;
    height: 80%;
    border-radius: 50vw;
    overflow: hidden;
}

.m-lab-looking-card-img img {
    height: 100%;
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-transition: scale .3s ease;
    -o-transition: scale .3s ease;
    transition: scale .3s ease;
}

.m-lab-looking-card-img:hover img {
    scale: 1.05;
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1)
}

.m-lab-offer {
    min-height: 180vh;
    background-color: var(--clr-fifth);
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    color: var(--clr-sixth);
    padding-block: 2rem;
}

.m-lab-offer p {
    font-size: 1.5rem;
}

.m-lab-offer-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;
    text-align: center;
    gap: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 60%;
}

.m-lab-offer-card-wrapper {
    width: 50%;
    height: 50%;
    background-image: url(../images/m-lab/lab-offer-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.m-lab-offer-cards {
    height: 100%;
    width: 33.33%;
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}

.m-lab-offer-card {
    height: 18rem;
    width: 18rem;
    background-color: var(--clr-first);
    padding: 1rem;
    color: var(--clr-fifth);
    border-radius: 50vw;
    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;
    text-align: center;
}

.m-lab-offer-card p {
    font-size: 1.2rem;
}

.m-lab-offer-label {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.m-lab-offer-label > .m-lab-offer-card {
    background-color: var(--clr-second);
    color: var(--clr-sixth);
}

.m-lab-offer-label > .m-lab-offer-card > p {
    font-size: 1.8rem;
}

.m-lab-mentors {
    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;
    min-height: 100vh;
    background-color: var(--clr-fifth);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    color: var(--clr-sixth);
    padding: 3rem 0 5rem;
}

.m-lab-mentor-cards {
    width: 80%;
    margin-inline: auto;
    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 1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.m-lab-mentor-card {
    padding: .5rem;
    width: calc(33.33% - 1rem);
    height: 45rem;
    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;
    border-radius: 10px;
}

.m-lab-mentor-img {
    height: 50%;
    width: 100%;
    overflow: hidden;
    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: 10px;
}

.m-lab-mentor-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

.m-lab-mentor-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;
    text-align: start;
    height: 40%;
}

.m-lab-mentor-text h5 {
    font-size: 1.2rem;
}

.m-lab-mentor-text p {
    font-size: 1rem;
}

.m-lab-mentor-socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 1rem;
    height: 5%;
}

.m-lab-mentor-socials a {
    color: inherit;
    font-weight: 600;
}

.m-lab-upcomming {
    min-height: 100vh;
    background-color: var(--clr-first);
    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;
}

.m-lab-upcomming-container {
    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-fifth);
    width: 90%;
}

.m-lab-upcomming-card {
    padding: 1rem;
    border: 2px dashed var(--clr-fifth);
    width: 50%;
    text-align: center;
}

.m-lab-upcomming-card > h1 {
    font-size: 2.5vw;
}

.m-lab-upcomming-card:last-child {
    border-left: none;
}

/* ###CAMPAIGN### */

.m-campaign-hero {
    min-height: 185vh;
    background-color: var(--clr-fifth);
    background-image: url(../images/campaign/hero.webp);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.m-campaign-top {
    top: 20%;
}

.m-campaign-info {
    min-height: 100vh;
    background-color: var(--clr-fourth);
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-block: 3rem;
    text-align: center;
    overflow: hidden;
}

.m-campaign-info h1 {
    color: var(--clr-sixth);
}

.m-compaign-info-cards {
    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;
    gap: 1rem;
    width: 80%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.m-compaign-info-card {
    height: 20rem;
    width: 32%;
    background-color: var(--clr-fifth);
    border-radius: 20px;
    padding: 1.5rem;
    color: var(--clr-sixth);
    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;
    gap: 2rem;
}

.m-compaign-info-card h3 {
    color: var(--clr-first);
    height: 20%;
}

.m-compaign-info-card a {
    margin: 0;
    border: 1px solid var(--clr-sixth);
    width: 100%;
    font-size: .8rem;
    color: var(--clr-sixth);
}

.m-compaign-info-card a:hover {
    color: var(--clr-fifth);
    background-color: var(--clr-first);
    border: 1px solid var(--clr-first);
}

.m-campaign-info a {
    margin: 0;
}

.m-compaign-philosophy {
    height: 100vh;
    background-color: var(--clr-first);
    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;
    position: relative;
}

.m-compaign-philosophy-text {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 2;
}

.m-compaign-philosophy-text p {
    font-size: 1.5rem;
}

.m-compaign-work {
    background-color: var(--clr-fifth);
    color: var(--clr-sixth);
}

.m-compaign-text a {
    margin-top: 1.5rem;
}

/* ###ABOUT### */

.m-about-hero {
    min-height: 160vh;
    background-color: var(--clr-fifth);
    background-image: url(../images/about/hero.webp);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.m-about-top h1 {
    color: var(--clr-first);
    text-shadow: 0 0 7.5px var(--clr-first);
}

.sc-img {
    width: 15rem;
    margin: auto;
    margin-bottom: 1rem;
}

.m-about-top-content p {
    font-size: 1rem;
}

.m-about-info {
    position: relative;
}

.m-about-eye {
    position: absolute;
}

#aboutEyeOne {
    top: 5%;
    right: 2%;
    height: 20rem;
    width: 20rem;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    -webkit-transform: rotate(-30deg);
        -ms-transform: rotate(-30deg);
            transform: rotate(-30deg);
}

#aboutEyeTwo {
    bottom: 5%;
    left: 2%;
    height: 20rem;
    width: 20rem;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    -webkit-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
            transform: rotate(30deg);
}

.m-about-info-text {
    width: 50%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
    text-align: center;
    color: var(--clr-sixth);
}

.m-about-info-text p {
    font-size: 1.2rem;
}

.m-about-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
}

.m-about-team-wrapper {
    min-height: 200vh;
    background-color: var(--clr-fifth);
    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;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-block: 3rem;
}

.m-about-team-text {
    width: 60%;
    color: var(--clr-sixth);
    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;
}

.m-about-team-text h2 {
    color: var(--clr-first);
}

.m-about-team-text p a {
    color: var(--clr-first);
}

.m-about-team-text p > .underline-animation::after {
    background-color: var(--clr-first);
}

.m-about-team-cards {
    width: 60%;
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem 1rem;
}

.m-about-team-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;
    padding: .5rem;
    border-radius: 10px;
    height: 25rem;
    width: 32%;
}

.m-team-card-img {
    height: 60%;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.m-team-card-img img {
    height: 100%;
    width: 100%;
    -o-object-position: center;
       object-position: center;
    -o-object-fit: cover;
       object-fit: cover;
}

.m-team-card-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: .5rem;
}

.m-team-card-text h4 {
    margin: 0;
}

.m-title-link {
    color: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: .2rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.m-title-link svg {
    height: .8rem;
    width: .8rem;
}

.m-team-card-text h6 {
    font-size: .8rem;
    font-weight: 400;
}

.m-team-card-text p {
    font-size: .9rem;
}

.m-team-socials svg {
    height: 1.8rem;
    width: 1.8rem;
    -o-object-fit: contain;
       object-fit: contain;
}

.m-about-quoat {
    min-height: 100vh;
    background-color: var(--clr-first);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.m-about-quote-span-1 {
    color: var(--clr-fourth);
}

.m-about-quote-span-2 {
    color: var(--clr-third);
}

/* ###PARTNER### */

.m-partner-hero {
    min-height: 150vh;
    background-color: var(--clr-fifth);
    background-image: url(../images/partner/partner-bg.webp);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.m-partner-top h1 {
    color: var(--clr-first);
    text-shadow: 0 0 7.5px var(--clr-first);
}

.m-our-partners {
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 3rem;
    color: var(--clr-sixth);
    background-color: var(--clr-third);
}

.m-partner-slider {
    padding: .5rem 0;
    overflow-x: hidden;
}

.slider {
    width: 100%;
    height: calc(var(--heigth-slider) + 1rem);
}

.slider-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    width: 100%;
    min-width: calc(var(--width-slider) * var(--slider-quant));
    position: relative;
}

.slider-item {
    height: var(--heigth-slider);
    width: var(--width-slider);
    position: absolute;
    left: 100%;
    -webkit-animation: autoRun 20s linear infinite;
            animation: autoRun 20s linear infinite;
    -webkit-animation-delay: calc( (20s / var(--slider-quant)) * (var(--item-position) - 1) - 20s) !important;
            animation-delay: calc( (20s / var(--slider-quant)) * (var(--item-position) - 1) - 20s) !important;
}

.slider-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

@-webkit-keyframes autoRun {
    from {
        left: 100%;
    }to {
        left: calc(var(--width-slider) * -1);
    }
}

@keyframes autoRun {
    from {
        left: 100%;
    }to {
        left: calc(var(--width-slider) * -1);
    }
}

.slider:hover .slider-item {
    -webkit-animation-play-state: paused !important;
            animation-play-state: paused !important;
}

.m-partner-with {
    min-height: 180vh;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    padding: 3rem;
    color: var(--clr-sixth);
    background-color: var(--clr-fifth);
}

.m-partner-cards-container {
    min-height: 80vh;
    width: 60%;
    background-image: url(../images/partner/partnet-with.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    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;
}

.m-partner-cards {
    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;
}

.m-partner-card {
    height: 17rem;
    width: 17rem;
    background-color: var(--clr-first);
    padding: 1.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;
    text-align: center;
    color: var(--clr-fifth);
    font-size: 1.2rem;
    border-radius: 50vw;
}

.m-partner-colab {
    background-color: var(--clr-fourth);
    color: var(--clr-sixth);
    min-height: 100vh;
    padding-block: 3rem;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
}

.m-partner-colab-cards {
    width: 95%;
    margin-inline: auto;
    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;
    gap: 1rem;
    position: relative;
}

.m-partner-colab-card {
    height: 10rem;
    background-color: var(--clr-third);
    color: var(--clr-sixth);
    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;
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.2rem;
    width: 18%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    z-index: 2;
}

.colab-anime {
    position: absolute;
    max-height: 20rem;
    max-width: 20rem;
    -o-object-fit: contain;
       object-fit: contain;
    pointer-events: none;
}

#animeOne {
    top: -40%;
    left: -5%;
    height: 10rem;
}

#animeTwo {
    right: 50%;
    top: -30%;
    height: 7rem;
    width: 7rem;
}

#animeThree {
    right: 20%;
    bottom: -30%;
    z-index: 1;
    height: 10rem;
    width: 10rem;
}

#animeFour {
    z-index: 1;
    top: -60%;
    -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
            transform: rotate(15deg);
    right: 0%;
}

#animeFive {
    bottom: -50%;
    left: 10%;
    height: 10rem;
    width: 10rem;
}

.m-partner-work {
    min-height: 140vh;
    background-color: var(--clr-fifth);
    color: var(--clr-sixth);
    padding: 3rem;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
}

.m-partner-work h5 {
    font-weight: 500;
    font-size: 1.5rem;
}

.m-partner-work-cards {
    width: 60%;
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
}

.m-partner-work-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;
    padding: 2rem;
    height: 20rem;
    width: 48%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: var(--clr-first);
    border-radius: 20px;
    font-size: 1.2rem;
    color: var(--clr-fifth);
    text-align: center;
    -webkit-transition: background-color .3s ease;
    -o-transition: background-color .3s ease;
    transition: background-color .3s ease;
}

.m-partner-work-card-img {
    height: 10rem;
    width: 10rem;
    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;
    background-color: var(--clr-fifth);
    border-radius: 50vw;
    overflow: hidden;
}

.m-partner-work-card:hover {
    background-color: var(--clr-fourth);
    color: var(--clr-sixth);
}

.m-partner-work-card:hover > .m-partner-work-card-img img {
    scale: 1.1;
}

.m-partner-work-card-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    -webkit-transition: scale .4s ease;
    -o-transition: scale .4s ease;
    transition: scale .4s ease;
}

.m-partner-foot {
    min-height: 50vh;
    padding: 3rem;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    background-color: var(--clr-fifth);
    color: var(--clr-sixth);
    text-align: center;
}

.m-partner-foot h2 {
    font-size: 2rem;
    width: 80%;
}

/* ###CONTACT### */

.m-contact-container {
    min-height: 100vh;
    width: 100%;
    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;
    background-color: var(--clr-fifth);
    padding: 0;
}

.m-contact-video {
    width: 60%;
    background-color: var(--clr-fourth);
    height: 100vh;
}

.m-contact-video video {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 60%;
    -o-object-position: center;
       object-position: center;
    -o-object-fit: cover;
       object-fit: cover;
}

.m-contact-form {
    width: 40%;
    padding: 2rem 1rem;
    min-height: 100vh;
    color: var(--clr-sixth);
    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;
}

.contact-overlay {
    background: -webkit-gradient(linear, left top, left bottom, from(#0003), to(#0000008d));
    background: -o-linear-gradient(#0003, #0000008d);
    background: linear-gradient(#0003, #0000008d);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 60%;
    z-index: 2;
    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;
    padding: 1rem;
}

.m-contact-logo img {
    width: 10rem;
    -o-object-fit: contain;
       object-fit: contain;
}

.m-contact-socials {
    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;
}

.m-contact-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: .5rem;
    color: var(--clr-sixth);
}

.m-contact-social svg {
    height: 1.5rem;
    width: 1.5rem;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
}

.m-contact-social span {
    width: 80%;
}

.m-contact-social a {
    color: var(--clr-sixth);
}

.m-contact-social > .underline-animation::after {
    background: var(--clr-sixth);
}

.m-contact-social-ico {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}

.m-contact-form h1 {
    color: var(--clr-first);
    margin: 0;
}

.contact-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: 1.2rem;
}

.m-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: 1rem;
}

.m-information input,
.m-information textarea {
    background: transparent;
    border: 1px solid var(--clr-sixth);
    padding: .5rem 1.5rem;
    font-size: 1rem;
    border-radius: 50vw;
    resize: none;
    color: var(--clr-first);
}

.m-information input:active,
.m-information input:focus,
.m-information textarea:active,
.m-information textarea:focus {
    border: 1px solid var(--clr-first);
}

.m-information button {
    font-size: 1rem;
}

.m-information textarea {
    font-family: "Poppins", sans-serif !important;
    border-radius: 20px;
}

/* ###ARCHIVE### */

.m-archive-hero {
    background-color: var(--clr-fifth);
    color: var(--clr-sixth);
    min-height: 80vh;
    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;
}

.m-archive-top {
    width: 60%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.m-archive-top h1 {
    color: var(--clr-first);
    text-shadow: 0 0 7.5px var(--clr-first);
}

.m-archive-top p {
    font-size: 1.2rem;
}

.m-archive-form {
    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;
    gap: 1.5rem;
    margin-top: 1rem;
}

.m-archive-form input {
    width: 70%;
    padding: .5rem 1.5rem;
    font-size: 1.5rem;
    background: transparent;
    border: 1px solid var(--clr-first);
    color: var(--clr-first);
    border-radius: 50vw;
}

.m-archive-form button {
    padding: .3rem 1.5rem;
    font-size: 1rem;
    margin: 0;
}

.m-archive-container {
    min-height: 100vh;
    padding: 3rem 1rem;
    background-color: var(--clr-fifth);
    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.2rem;
    color: var(--clr-sixth);
    text-align: center;
}

.m-archive-wrapper {
    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: 2.5rem 2rem;
}

.m-archive-card {
    height: 25rem;
    width: calc(33.33% - 1.4rem);
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.m-archive-card 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;
}

.m-archive-title {
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    color: var(--clr-sixth);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -o-border-image: fill 0 -o-linear-gradient(rgba(0, 0, 0, 0), #000);
       border-image: fill 0 -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000));
       border-image: fill 0 linear-gradient(rgba(0, 0, 0, 0), #000);
    -webkit-transition: bottom .3s ease;
    -o-transition: bottom .3s ease;
    transition: bottom .3s ease;
    font-size: 1.2rem;
    padding-bottom: 1rem;
}

.m-archive-card:hover > .m-archive-title {
    bottom: 0;
}

.m-archive-card:hover > img {
    scale: 1.1;
}

.m-archive-container button {
    font-size: .8rem;
    margin-top: 2rem;
}

/* ###POST### */

.m-post-hero {
    padding: 0;
    min-height: 100dvh;
    width: 100%;
    background-color: var(--clr-fifth);
}

.m-post-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
}

.m-post-image-wrapper {
    position: fixed;
    width: 50%;
    top: 0;
    left: 0;
    height: 100vh;
    overflow: hidden;
}

.m-post-image {
    width: 100%;
    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;
}

.m-post-image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

.m-post-image img:not(img:first-child) {
    display: none;
}

#slideNext {
    position: absolute;
    right: -25%;
    top: 0;
    -o-border-image: fill 0 -o-linear-gradient(right, #000, rgba(0,0,0,0));
       border-image: fill 0 -webkit-gradient(linear, right top, left top, from(#000), to(rgba(0,0,0,0)));
       border-image: fill 0 linear-gradient(to left, #000, rgba(0,0,0,0));
}

#slidePrev {
    position: absolute;
    left: -25%;
    top: 0;
    -o-border-image: fill 0 -o-linear-gradient(left, #000, rgba(0,0,0,0));
       border-image: fill 0 -webkit-gradient(linear, left top, right top, from(#000), to(rgba(0,0,0,0)));
       border-image: fill 0 linear-gradient(to right, #000, rgba(0,0,0,0));
}

.m-post-image-wrapper button {
    height: 100%;
    width: 25%;
    background: transparent;
    color: var(--clr-sixth);
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    cursor: var(--cursor-pointer), pointer;
}

.m-post-image-wrapper button svg path {
    stroke: var(--clr-sixth);
}

#slidePrev svg {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.m-post-image-wrapper:hover > #slideNext {
    right: -2%;
}

.m-post-image-wrapper:hover > #slidePrev {
    left: -2%;
}

.m-post-content {
    width: 50%;
    padding: 2rem 1rem;
    color: var(--clr-sixth);
    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;
}

.m-post-content h1 {
    color: var(--clr-first);
    margin: 0;
}

/* ###BLOG### */

.m-blog-hero {
    background-color: var(--clr-fifth);
    color: var(--clr-sixth);
    min-height: 70vh;
    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: .2rem;
}

.m-blogs-banner-wrapper {
    height: 90vh;
    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;
    position: relative;
}

.m-blog-banner {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
}

.m-banner-blog-data {
    height: 40vh !important;
    width: 100%;
    padding: 1rem .5rem 2rem;
    color: var(--clr-sixth);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -o-border-image: fill 0 -o-linear-gradient(rgba(0, 0, 0, 0), #000);
       border-image: fill 0 -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000));
       border-image: fill 0 linear-gradient(rgba(0, 0, 0, 0), #000);
}

.m-banner-blog-data > .m-blog-title> h3 {
    font-size: 1.8rem;
    font-weight: 400;
}

.m-blogs-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 1.5rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 1rem;
}

.m-blog-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;
    width: calc(33.333% - 1rem);
    height: 25rem;
    color: var(--clr-sixth);
}

.m-blog-image {
    height: 60%;
    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;
}

.m-blog-image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    -webkit-transition: scale .3s ease;
    -o-transition: scale .3s ease;
    transition: scale .3s ease;
}

.m-blog-image:hover > img {
    scale: 1.1;
}

.m-blog-data {
    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;
    height: 40%
}

.m-blog-data span {
    font-size: .8rem;
}

.m-blog-title h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.m-blog-content {
    margin: 0;
    font-size: .8rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.m-blog-author {
    font-size: .8rem;
}

/* ###ARTICLE### */

.m-article-hero {
    background-color: var(--clr-fifth);
    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;
    min-height: 70vh;
    color: var(--clr-sixth);
}

.m-article-header {
    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;
    gap: 1rem;
}

.m-article-title h1 {
    font-size: 1.5rem;
}

.m-article-subtitle h2 {
    font-size: 1.2rem;
    font-weight: 500;
}

.m-article-info {
    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;
}

.m-article-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: .8rem;
}

.article-share-btn {
    background: transparent;
    border: none;
    cursor: var(--cursor-pointer), pointer;
}

.article-share-btn svg {
    height: 1.2rem;
    width: 1.2rem;
    -o-object-fit: contain;
       object-fit: contain;
}

.m-article-banner {
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.m-article-banner 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;
}

.m-article-banner:hover > img {
    scale: 1.1;
}

.m-blog-body {
    background-color: var(--clr-fifth);
    min-height: 50vh;
    padding-block: 2rem;
}

.m-article-content {
    width: 70%;
    margin: auto;
    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;
}

.m-article-content > * {
    color: var(--clr-sixth) !important;
}

.m-article-content p span a,
.m-article-content p a,
.m-article-content ul li a {
    color: var(--clr-first) !important;
    text-decoration: none;
    font-weight: 600;
}

.m-article-content ul li,
.m-article-content ol li {
    margin-left: 20px;
}

.copy-to-clipboard {
    position: fixed;
    top: 15%;
    padding: .5rem 1rem;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    background-color: var(--clr-third);
    color: var(--clr-sixth);
    border-radius: 5px;
    right: -100%;
    pointer-events: none;
    z-index: 9;
}

/* ###SUPPORTING_PAGES### */

.m-supporting-hero {
    background-color: var(--clr-fifth);
    color: var(--clr-sixth);
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.m-supporting-title {
    min-height: 50vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 60%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: flex;
}

.m-supporting-title h1 {
    color: var(--clr-first);
}

.m-supporting-title p {
    margin-bottom: 1rem;
}

.m-supporting-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: 1.5rem;
    width: 60%;
}

.m-supporting-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.m-supporting-content p,
.m-supporting-content ol li,
.m-supporting-content ul li {
    font-size: 1rem;
}

.m-supporting-content p a {
    color: var(--clr-sixth);
    text-decoration: underline;
}

.m-supporting-content ol li,
.m-supporting-content ul li {
    margin-left: 20px;
}

/* ###ERROR### */

.m-error-page {
    height: 100vh;
    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;
    background-color: var(--clr-fifth);
    color: var(--clr-sixth);
    position: relative;
}

.m-error-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: 1.5rem;
    width: 60%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 2;
}

.m-error-logo img {
    height: 5rem;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
}

.m-error-content h4 {
    font-size: 1.2rem;
    font-weight: 500;
}

.m-error-content p {
    width: 80%;
}

.m-error-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}

.m-error-options a {
    font-size: .8rem;
    padding-inline: 2rem;
}

/* ###FOOTER### */

.m-footer {
    background-color: var(--clr-fifth);
    padding: 2rem;
}

.foot-container {
    border-block: 2px dashed var(--clr-first);
    padding: 2rem 0;
    width: 100%;
    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;
    gap: 1.5rem;
}

.foot-logo {
    width: 20%;
    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;
}

.foot-logo svg {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.foot-logo p {
    color: var(--clr-first);
    font-size: .7rem;
    text-align: justify;
}

.foot-link-container {
    width: 75%;
    gap: 1rem;
    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;
}

.foot-links {
    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: 20%;
}

.foot-link-socials {
    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: 30%;
}

.foot-link-social {
    color: var(--clr-first);
    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;
    gap: 1rem;
}

.foot-link-social span {
    width: 80%;
}

.foot-link-social > .underline-animation::after {
    background: var(--clr-first) !important;
}

.foot-links a {
    color: var(--clr-first);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.foot-bottom {
    width: 100%;
    color: var(--clr-first);
    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-top: 1rem;
}

.foot-bot-copy {
    width: 50%;
}

.foot-bot-span {
    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;
    width: 70%;
}

.foot-bottom span a {
    color: var(--clr-first);
}

.foot-bottom span .underline-animation::after,
.foot-links .underline-animation::after{
    background: var(--clr-first);
}

.foot-socials {
    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;
}

.foot-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: .5rem;
}

.foot-social span {
    color: var(--clr-first);
}

/* ###NO_DISPLAY### */

.mobile-bottom-bar {
    display: none;
}

.mob-contact-link {
    display: none;
}

.mob-sidebar {
    display: none;
}

@media only screen and (max-width: 767px) and (min-width: 280px) {

    .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;
        gap: 1rem;
        padding: .8rem .2rem;
        position: sticky;
        bottom: 0;
        background: var(--clr-fourth);
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        -webkit-box-shadow: 1px 1px 5px var(--clr-fifth);
                box-shadow: 1px 1px 5px var(--clr-fifth);
        z-index: 3;
    }

    .mob-link {
        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;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        text-align: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 15%;
    }

    .mob-link svg {
        height: 1.5rem;
        width: 1.5rem;
        -o-object-fit: contain;
           object-fit: contain;
    }

    .mob-link span {
        color: var(--clr-mob-link);
        font-size: .6rem;
        text-wrap: nowrap;
    }

    .mob-link-active > span {
        color: var(--clr-first);
    }

    .mob-link-active > svg path {
        fill: var(--clr-first);
    }

    .mob-sidebar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 100dvh;
        width: 80%;
        z-index: 15;
        background-color: var(--clr-third);
        position: fixed;
        top: 0;
        right: -100%;
        -webkit-transition: right .5s ease;
        -o-transition: right .5s ease;
        transition: right .5s ease;
        padding: .5rem 1rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: .5rem;
        border-radius: 20px 0 0 0;
    }

    #mobAside:checked ~ .mob-sidebar {
        right: 0;
    }

    #mobAside:checked ~ .overlay {
        background: -webkit-gradient(linear, left top, left bottom, from(#0003), to(#0000008d));
        background: -o-linear-gradient(#0003, #0000008d);
        background: linear-gradient(#0003, #0000008d);
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        -webkit-transition: background .5s ease;
        -o-transition: background .5s ease;
        transition: background .5s ease;
        z-index: 8;
    }

    .mob-sidear-head {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: end;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .mob-sidear-head label svg path {
        fill: var(--clr-sixth);
    }

    .mob-sidear-options {
        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;
        height: 90vh;
        overflow-y: scroll;
    }

    .mob-sidear-options a {
        color: var(--clr-sixth);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: .2rem;
    }

    .mob-sidear-options a svg {
        height: .8rem;
        width: .8rem;
    }

    .mob-sidear-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;
    }

    .mob-sidear-foot a {
        color: var(--clr-sixth);
        font-size: .7rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: .2rem;
    }

    .mob-sidear-foot a svg {
        height: .5rem;
        width: .5rem;
    }

    .m-heading {
        font-size: 1.2rem;
    }

    .m-btn {
        font-size: .8rem;
        width: 90%;
    }

    .m-btn svg {
        height: 1.2rem;
        width: 1.2rem;
        -o-object-fit: contain;
           object-fit: contain;
    }

    .m-navbar {
        border-radius: 0;
        padding: 1rem;
        -webkit-box-shadow: 1px 1px 5px var(--clr-fifth);
                box-shadow: 1px 1px 5px var(--clr-fifth);
    }

    .m-navbar a {
        display: none;
    }

    .mob-navlink {
        display: block !important;
    }

    .mob-contact-link {
        display: block !important;
        font-size: 1rem;
        font-family: var(--font-heading);
        text-transform: uppercase;
    }
    
    .back-to-top {
        bottom: 10%;
    }

    .m-skip-animation {
        bottom: 18%;
    }

    .hero-content-animate {
        width: 90%;
    }

    .m-home-secOne, .m-home-secTwo {
        padding: 2rem .2rem;
        min-height: 100dvh;
    }

    .m-secOne-content h3 {
        font-size: 1.5rem;
    }

    .m-secOne-content, .m-secTwo-content {
        width: 100%;
    }

    .m-home-secTwo img {
        height: 10rem;
        width: 10rem;
    }

    #homeEye {
        top: -8%;
    }

    #homeUfo {
        bottom: -8%;
    }

    .m-home-partners {
        padding: 2rem .2rem;
        text-align: center;
    }

    .m-home-partner-container {
        width: 100%;
    }

    .m-home-join {
        padding: 2rem .5rem;
    }

    .m-home-join-cards {
        width: 100%;
    }

    .m-home-join-card {
        width: 100%;
    }

    .m-home-join-card h4 {
        font-size: 1.5rem;
    }

    .m-home-join-card p {
        font-size: 1rem;
    }

    .m-blogs-container {
        padding: .5rem;
        gap: 1rem;
    }

    .m-blog-card {
        width: 100%;
    }

    #drawHand {
        height: 10rem;
        top: -7%;
        right: -30%;
    }

    .draw-content {
        padding: 1rem;
    }

    .m-home-draw-img img {
        height: 30%;
    }

    .partner-with-text {
        width: 100%;
    }

    .m-lab-hero {
        min-height: 100vh;
    }

    .m-lab-top {
        top: 45%;
        width: 100%;
        padding-inline: .2rem;
    }

    .m-lab-top-content p,
    .m-lab-col-text p,
    .m-compaign-philosophy-text p,
    .m-lab-offer p {
        font-size: .8rem;
    }

    .m-lab-intro {
        min-height: 75vh;
        padding-block: 2rem;
    }

    .m-lab-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 3rem;
    }

    .m-lab-col-img {
        width: 100%;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        overflow: hidden;
    }

    .m-lab-col-text {
        width: 100%;
        padding: 1rem;
    }

    .m-lab-youll {
        min-height: 140vh;
        background-position: center;
        background-size: cover;
    }

    .m-lab-youll-text-container {
        min-height: 140vh;
    }

    .m-lab-youll-text {
        width: 100%;
    }

    .m-lab-looking-cards {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .m-lab-looking-card {
        width: 100%;
    }

    .m-lab-looking {
        padding: 2rem 1rem;
        text-align: center;
    }

    .m-lab-looking-card-img {
        width: 50%;
    }


    .m-lab-offer-content {
        width: 100%;
        padding: .5rem;
    }

    .m-lab-offer-card-wrapper {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1rem;
        background-image: unset;
    }

    .m-lab-offer-cards {
        width: 100%;
        gap: 1rem;
    }

    .m-lab-offer-card p {
        font-size: 1.2rem;
    }

    .m-lab-mentor-cards {
        width: 95%;
    }

    .m-lab-mentor-card {
        width: 100%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .m-lab-upcomming {
        padding-block: 2rem;
        min-height: -webkit-fit-content;
        min-height: -moz-fit-content;
        min-height: fit-content;
    }

    .m-lab-upcomming-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .m-lab-upcomming-card {
        width: 100%;
    }

    .m-lab-upcomming-card:last-child {
        border-top: none;
        border-left: 2px dashed var(--clr-fifth);
    }

    .m-lab-upcomming-card > h1 {
        font-size: 2rem;
    }

    .m-campaign-info {
        padding-inline: .2rem;
        min-height: 120vh;
    }

    .m-campaign-hero {
        min-height: 100vh;
    }

    .m-compaign-info-cards {
        width: 100%;
        padding: .5rem;
    }

    .m-compaign-info-card {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        width: 100%;
    }

    .m-compaign-philosophy {
        height: 100vh;
        padding-block: 3rem;
    }

    .m-about-hero {
        min-height: 115vh;
    }

    #aboutEyeOne, #aboutEyeTwo {
        height: 5rem;
        width: 5rem;
    }

    #aboutEyeTwo {
        bottom: 0;
    }

    .m-about-info-text, .m-about-team-text,
    .m-about-team-cards {
        width: 100%;
        padding: .2rem;
    }

    .m-about-team-cards {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .m-about-team-card {
        width: 100%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .sc-img {
        width: 10rem;
        margin-bottom: 0;
    }

    .m-contact-container {
        min-height: 100dvh;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }

    .m-contact-video {
        position: relative;
        width: 100%;
    }

    .m-contact-video video, .contact-overlay {
        position: absolute;
        width: 100%;
    }

    .m-contact-form {
        width: 100%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .m-lab-top-content h3 {
        font-size: .8rem;
    }

    .m-partner-hero {
        min-height: 100vh;
    }

    .m-partner-with {
        padding: 3rem .2rem;
        min-height: -webkit-fit-content;
        min-height: -moz-fit-content;
        min-height: fit-content;
        text-align: center;
    }

    .m-partner-cards-container {
        width: 100%;
        background-image: none;
        gap: 1rem;
    }

    .m-partner-cards {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1rem;
    }

    .m-partner-colab {
        width: 100%;
        padding-inline: .2rem;
        min-height: -webkit-fit-content;
        min-height: -moz-fit-content;
        min-height: fit-content;
    }

    .m-partner-colab-cards {
        width: 60%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .m-partner-colab-card {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        width: 100%;
    }

    .colab-anime {
        display: none;
    }

    .m-partner-work {
        padding: 2rem .2rem;
        text-align: center;
        min-height: -webkit-fit-content;
        min-height: -moz-fit-content;
        min-height: fit-content;
    }

    .m-partner-work-cards {
        width: 80%;
    }

    .m-partner-work-card {
        width: 100%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .m-partner-foot h2 {
        font-size: 1rem;
    }

    .m-supporting-title, .m-supporting-content {
        width: 95%;
        min-height: 50vh;
    }

    .m-archive-top {
        width: 95%;
    }

    .m-archive-form, .m-post-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .m-archive-form input, .m-archive-card,
    .m-post-content {
        width: 100%;
    }

    .m-archive-wrapper {
        gap: 1rem;
    }

    .m-archive-title {
        bottom: 0;
    }

    .m-post-image-wrapper {
        position: relative;
        height: 80dvh;
        width: 100%;
    }

    #slideNext {
        right: -2%;
    }

    #slidePrev {
        left: -2%;
    }

    .m-article-header {
        width: 100%;
        padding: 1rem;
    }

    .m-article-title h1 {
        font-size: 1rem;
    }

    .m-article-subtitle h2 {
        font-size: .9rem;
    }

    .m-article-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: .5rem;
    }

    .m-article-info p {
        margin-right: auto;
    }

    .m-article-action {
        margin-left: auto;
    }

    .m-article-content {
        width: 100%;
        padding: 1rem;
    }

    .copy-to-clipboard {
        top: 5%;
    }

    /* ###FOOTER### */

    .m-footer {
        display: none;
    }

    .foot-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2rem;
    }

    .foot-logo,
    .foot-link-container {
        width: 100%;
    }

    .foot-links {
        font-size: .8rem;
    }

    .m-error-content {
        width: 95%;
    }

    .m-error-options {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}

@media only screen and (max-width: 767px) and (min-width: 550px) {
    .mobile-bottom-bar {
        padding-inline: 1rem;
    }
    .m-lab-hero {
        min-height: 200vh;
    }
    
    .m-lab-top {
        top: 40%;
    }

    .m-campaign-hero {
        min-height: 160vh;
    }

    .m-lab-top {
        top: 30%;
    }

    .m-about-hero {
        min-height: 180vh;
    }

    .draw-content {
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        text-align: center;
    }

    .m-blog-card {
        width: calc(50% - .8rem);
    }

    .m-skip-animation {
        bottom: 24%;
    }

    .m-lab-mentor-card {
        width: 48%;
        height: 50rem;
    }

    .m-about-team-card {
        width: 48%;
        height: 28rem;
    }

    .m-home-join-card {
        width: 46%;
    }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
    .hero-content-animate {
        width: 90%;
    }

    .m-navbar {
        padding: .5rem 1rem;
        border-radius: 0 0 2rem 2rem;
    }

    .m-navlink {
        font-size: .8rem;
    }

    .m-navlink img {
        height: 1.5rem;
    }

    .m-heading {
        font-size: 1.8rem;
    }

    .m-secOne-content, .m-secTwo-content {
        width: 95%;
    }

    .m-home-secOne, .m-home-secTwo {
        padding: 2rem .2rem;
        min-height: 80vh;
    }

    #homeEye {
        left: -20%;
        top: -5%;
    }

    .m-home-secTwo img {
        height: 20rem;
        width: 20rem;
    }

    .m-home-join-cards {
        width: 100%;
    }

    .m-home-draw, .m-home-partner-with {
        min-height: 70vh;
    }

    .m-home-draw-img img {
        height: 60%;
    }

    .m-lab-hero {
        min-height: 100vh;
    }

    .m-lab-top {
        top: 40%;
        width: 80%;
    }

    .m-lab-intro, .m-lab-youll-text-container,
    .m-lab-looking, .m-lab-offer, .m-lab-upcomming,
    .m-compaign-philosophy, .m-partner-with, .m-partner-colab,
    .m-partner-work, .m-partner-foot, .m-about-quoat {
        padding-block: 2rem;
        min-height: 60vh;
    }

    .m-lab-mentor-cards {
        width: 95%;
    }

    .m-lab-youll {
        min-height: 90vh;
    }

    .m-lab-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2rem;
    }

    .m-lab-col-text, .m-lab-youll-text {
        width: 100%;
    }

    .m-lab-looking-cards {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .m-lab-looking-card {
        width: 48%;
    }

    .m-lab-looking-card-img {
        width: 70%;
        height: 70%;
    }

    .m-lab-offer-card-wrapper {
        width: 90%;
    }

    .m-lab-offer-card {
        height: 15rem;
        width: 15rem;
    }

    .m-lab-offer-card p {
        font-size: 1rem;
    }

    .m-lab-offer-label > .m-lab-offer-card > p {
        font-size: 1.2rem;
    }

    .m-lab-mentor-card {
        width: calc(50% - 1rem);
        height: 50rem;
    }

    .m-campaign-hero, .m-partner-hero,
    .m-about-hero {
        min-height: 100vh;
    }

    .m-compaign-info-cards {
        width: 100%;
    }

    .m-compaign-info-card {
        width: 48%;
    }

    .m-compaign-philosophy-text {
        width: 95%;
    }

    .m-partner-cards-container {
        min-height: 60vh;
        width: 95%;;
    }

    .m-partner-colab-cards {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .m-partner-colab-card {
        width: 30%;
    }

    .colab-anime {
        display: none;
    }

    .m-partner-work-cards {
        width: 100%;
    }

    .m-partner-work-card {
        width: 47%;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
    }

    .m-partner-foot h2 {
        font-size: 1.5rem;
        width: 100%;
    }

    .m-campaign-info {
        min-height: 80vh;
    }

    #aboutEyeOne {
        right: 5%;
        height: 10rem;
        width: 10rem;
    }

    #aboutEyeTwo {
        bottom: 0;
        height: 10rem;
        width: 10rem;
    }

    .m-about-info-text {
        width: 85%;
    }

    .m-about-team-text {
        width: 80%;
    }

    .m-about-team-cards {
        width: 100%;
        padding-inline: 1rem;
    }

    .m-about-team-card {
        width: 47%;
    }

    .m-supporting-title, .m-supporting-content {
        min-height: 30vh;
        width: 90%;
    }

    .m-archive-wrapper {
        gap: 1rem;
    }

    .m-archive-card, .m-blog-card {
        width: 48%;
    }

    .m-blogs-container {
        padding: .5rem;
    }

    .m-contact-video, .m-contact-video video, 
    .contact-overlay, .m-contact-form {
        width: 50%;
    }

    .contact-overlay {
        padding-bottom: 5rem;
    }
    
    /* ###FOOTER### */

    .m-footer {
        display: none;
    }

    .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;
        gap: 1rem;
        padding: .8rem .2rem;
        position: sticky;
        bottom: 0;
        background: var(--clr-fourth);
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        -webkit-box-shadow: 1px 1px 5px var(--clr-fifth);
                box-shadow: 1px 1px 5px var(--clr-fifth);
        z-index: 3;
    }

    .mob-link {
        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;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        text-align: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 15%;
    }

    .mob-link svg {
        height: 1.5rem;
        width: 1.5rem;
        -o-object-fit: contain;
           object-fit: contain;
    }

    .mob-link span {
        color: var(--clr-mob-link);
        font-size: .6rem;
        text-wrap: nowrap;
    }

    .mob-link-active > span {
        color: var(--clr-first);
    }

    .mob-link-active > svg path {
        fill: var(--clr-first);
    }

}

@media only screen and (max-width: 1199px) and (min-width: 992px) {
    .m-heading{
        font-size: 1.8rem;
    }

    .m-btn {
        font-size: 1rem;
    }

    .hero-content-animate {
        width: 55%;
    }

    .m-secOne-content, .m-secTwo-content,
    .m-home-join-cards, .m-lab-youll-text,
    .m-lab-offer-card-wrapper, .m-partner-cards-container,
    .m-lab-top, .m-about-team-cards,
    .m-supporting-title, .m-supporting-content {
        width: 80%;
    }

    .m-home-secTwo img {
        height: 20rem;
        width: 20rem;
    }

    .m-home-draw-text img {
        height: 18rem;
        width: 16rem;
    }
    
    .m-lab-top {
        top: 30%;
    }

    .m-lab-hero {
        min-height: 140vh;
    }

    .m-lab-col-text {
        padding-left: 2rem;
    }

    .m-lab-looking-card p {
        font-size: .8rem;
    }

    .m-lab-offer {
        min-height: 140vh;
    }

    .m-lab-mentor-card {
        padding: .5rem;
        width: 48%;
    }

    .m-lab-mentor-img {
        height: 75%;
    }

    .m-campaign-hero {
        min-height: 140vh;
    }

    .m-compaign-info-card, .m-about-team-card {
        width: 49%;
    }

    .m-partner-hero, .m-partner-with, .m-about-hero {
        min-height: 125vh;
    }

    .m-partner-work-cards {
        width: 90%;
    }

    #aboutEyeOne, #aboutEyeTwo{
        height: 15rem;
        width: 15rem;
    }

    .foot-logo {
        width: 25%;
    }
}

@media only screen and (max-width: 1439px) and (min-width: 1200px) {
    .hero-content-animate {
        width: 50%;
    }

    .m-secOne-content, .m-secTwo-content,
    .m-home-join-cards, .m-lab-youll-text,
    .m-lab-offer-card-wrapper {
        width: 80%;
    }

    #homeEye {
        top: 0;
    }

    .m-campaign-hero, .m-lab-hero, .m-lab-youll,
    .m-lab-youll-text-container, .m-lab-offer,
    .m-partner-hero, .m-partner-with {
        min-height: 120vh;
    }

    .m-lab-top {
        top: 30%;
    }

    .m-lab-col-text {
        padding-left: 3rem;
    }

    .m-lab-intro {
        min-height: 80vh;
    }

    .m-about-team-cards {
        width: 80%;
    }

}

@media only screen and (max-width: 1535px) and (min-width: 1440px) {
    .m-campaign-hero {
        min-height: 155vh;
    }

    .m-partner-hero, .m-about-hero, 
    .m-lab-hero {
        min-height: 145vh;
    }

    .m-lab-top h5 {
        width: 70%;
        margin: auto;
    }
}

@media only screen and (max-width: 1950px) and (min-width: 1751px) {
    .m-home-secTwo img {
        height: 40rem;
        width: 40rem;
    }

    .m-lab-mentor-cards, .m-partner-colab-cards {
        width: 80%;
    }

    .m-lab-mentor-img {
        height: 60%;
    }

    .m-partner-cards-container {
        width: 50%;
    }

    .m-partner-card {
        height: 22rem;
        width: 22rem;
        padding: 1.2rem;
        font-size: 1.4rem;
    }

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

#Suc {
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: .5rem;
    background-color: var(--clr-fourth);
    border-radius: 5px;
}

#Suc h4,
#Err h4 {
    color: var(--clr-sixth);
    font-size: 1rem;
    text-align: center;
}

#Err {
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: .5rem;
    background-color: var(--clr-third);
}

.error {
    font-size: .8rem;
    color: var(--clr-first);
    font-weight: 600;
    margin-bottom: 1rem;
}