/* ###ROOT### */

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html, body {
  height: 100%;
  width: 100%;
}

::-webkit-scrollbar {
  display: none;
}

::-moz-selection {
    color: var(--clr-bg);
    background: var(--clr-pref-2);
}

::selection {
    color: var(--clr-bg);
    background: var(--clr-pref-2);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

:root {
    --clr-bg: #FFFFFF;
    --clr-primary: #063346;
    --clr-secondry: #F7BB0E;
    --clr-pref-1: #94CEE3;
    --clr-pref-2: #2AA9B9;
    --clr-pref-3: #EF8107;

    --font-title: "OPTIEdgarBold-Extended", sans-serif;
    --font-CG-thin: "CabinetGrotesk-Thin", sans-serif;
    --font-CG-extralight: "CabinetGrotesk-Extralight", sans-serif;
    --font-CG-light: "CabinetGrotesk-Light", sans-serif;
    --font-CG-regular: "CabinetGrotesk-Regular", sans-serif;
    --font-CG-medium: "CabinetGrotesk-Medium", sans-serif;
    --font-CG-bold: "CabinetGrotesk-Bold", sans-serif;
    --font-CG-extrabold: "CabinetGrotesk-Extrabold", sans-serif;
    --font-CG-black: "CabinetGrotesk-Black", sans-serif;
}

/* ###FONTS### */

@font-face {
  font-family: 'OPTIEdgarBold-Extended';
  src: url('../fonts/OPTIEdgarBold-Extended.otf') format('opentype');
  font-weight: 200 900;
  font-display: swap;
  font-style: normal;
}

/* Thin (100) */
@font-face {
  font-family: 'CabinetGrotesk';
  src: url('../fonts/CabinetGrotesk-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/* ExtraLight (200) */
@font-face {
  font-family: 'CabinetGrotesk';
  src: url('../fonts/CabinetGrotesk-Extralight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

/* Light (300) */
@font-face {
  font-family: 'CabinetGrotesk';
  src: url('../fonts/CabinetGrotesk-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Regular (400) */
@font-face {
  font-family: 'CabinetGrotesk';
  src: url('../fonts/CabinetGrotesk-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Medium (500) */
@font-face {
  font-family: 'CabinetGrotesk';
  src: url('../fonts/CabinetGrotesk-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Bold (700) */
@font-face {
  font-family: 'CabinetGrotesk';
  src: url('../fonts/CabinetGrotesk-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ExtraBold (800) */
@font-face {
  font-family: 'CabinetGrotesk';
  src: url('../fonts/CabinetGrotesk-Extrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Black (900) */
@font-face {
  font-family: 'CabinetGrotesk';
  src: url('../fonts/CabinetGrotesk-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ###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### */

.section-heading {
    color: var(--clr-primary);
    font-size: 3.5rem;
    font-family: var(--font-CG-extralight);
    font-weight: 100;
}

.section-heading span {
    font-weight: 600;
}

.underline-animation > p {
  position: relative;
}

.underline-animation > p::after {
  content: '';
  background: var(--clr-secondry);
  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 p::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;
}

.dot {
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: 1rem;
    width: 1rem;
    overflow: hidden;
    padding: .2rem;
    background-color: var(--clr-pref-2);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    -webkit-transition: all ease .1s;
    -o-transition: all ease .1s;
    transition: all ease .1s;
    pointer-events: none;
    mix-blend-mode: color-dodge;
}

.touch-device {
    opacity: 0 !important;
    scale: 0 !important;
}

.back-to-top {
    position: fixed;
    bottom: 5%;
    right: 2%;
    z-index: 4;
    background-color: var(--clr-secondry);
    height: 1.8rem;
    width: 1.8rem;
    border-radius: 50vw;
    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;
    padding: .5rem;
    border: none;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    scale: 0;
}

.back-to-top svg {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.back-to-top:hover > svg {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    scale: 1.2;
}

/* ###LOADER### */

.aibigo-preloader {
    position: fixed;
    height: 100vh;
    width: 100%;
    background-color: var(--clr-bg);
    z-index: 5;
}

.count {
    position: absolute;
    bottom: 5%;
    right: 5%;
    pointer-events: none;
}

.count p {
    font-size: 1.5rem;
    color: var(--clr-primary);
}

.loader-fg {
    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;
    height: 100%;
    width: 100%;
}

.loading-title-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 3.5rem;
    overflow: hidden;
}

.loading-title-container h1 {
    font-family: var(--font-title);
    color: var(--clr-primary);
    font-size: 2.5rem;
    margin: 0;
    -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
}

.loader-fg h2 {
    font-weight: 400;
    font-size: 4rem;
    font-family: var(--font-CG-thin);
    margin: 0;
    opacity: 0;
}

.loader-fg h2 span {
    font-weight: 600;
}

.loader-fg p {
    font-size: 1.5rem;
    opacity: 0;
}

/* ###INDEX### */

.aibigo-hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

.aibigo-hero-text {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--clr-bg);
    z-index: 4;
}

.aibigo-hero-text h1 {
    color: var(--clr-bg);
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin: 0;
}

.aibigo-hero-text h2 {
    font-weight: 400;
    font-size: 4rem;
    font-family: var(--font-CG-thin);
    margin: 0;
}

.aibigo-hero-text h2 span {
    color: var(--clr-secondry);
    font-weight: 600;
    text-wrap: nowrap;
}

.aibigo-hero-text p {
    font-size: 1.5rem;
}

.aibigo-hero-text i {
    margin-top: 2rem;
    text-align: center;
}

.aibigo-hero-text i a {
    color: var(--clr-secondry);
    text-decoration: none;
}

.aibigo-hero-text i a p {
    font-size: unset;
}

.hero-marquee {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--clr-primary);
    color: var(--clr-bg);
    padding: .5rem 0;
    z-index: 4;
    cursor: default;
}

.hero-marquee p {
    display: inline-block;
    white-space: nowrap;
    font-weight: 200;
}

.hero-marquee svg {
    height: 1.2rem;
    width: 1.2rem;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
}

.bg-grains {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 3;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    z-index: 1;
}

.aibigo-about {
    height: 100vh;
    padding: 2rem;
    width: 60%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    color: var(--clr-primary);
}

.aibigo-about p {
    font-size: 1.5rem;
    margin-block: 1rem;
    text-align: justify;
}

.aibigo-about ul li {
    margin-left: 3rem;
    font-size: 1.5rem;
    text-align: justify;
}

.line {
  overflow: hidden;
  display: block;
}

.aibigo-about-link {
    color: var(--clr-pref-2);
    font-weight: 600;
    text-decoration: none;
}

.aibigo-features {
    height: 100vh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.aibigo-features-cards {
    height: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 60%;
    gap: 1.2rem;
}

.feature-card {
    height: 18rem;
    width: 48%;
    background-color: var(--clr-primary);
    border-radius: 20px;
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
    color: var(--clr-bg);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.feature-card:hover {
    -webkit-box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
            box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.feature-card:hover .card-logo svg {
    scale: 1.1;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.feature-card:hover .card-logo svg path {
    fill: var(--clr-pref-1);
}

.card-logo svg {
    height: 5rem;
    width: 5rem;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.card-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: .5rem;
}

.card-content h5 {
    font-size: 1.2rem;
    font-weight: 500;
}

.aibigo-intro {
    height: 100vh;
    width: 80%;
    margin: auto;
    text-align: center;
    color: var(--clr-primary);
    font-size: 2.8rem;
    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;
}

.aibigo-intro span {
  display: inline-block;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}

.aibigo-approach {
    min-height: 100vh;
    width: 80%;
    margin: 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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
}

.approach-cards {
    min-height: 80%;
    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: 100%;
}

.approach-card {
    height: 8rem;
    background-color: var(--clr-primary);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
    padding: 1rem 3rem;
    color: var(--clr-bg);
    border-radius: 20px;
    font-size: 1.2rem;
    cursor: default;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

#appCard1:hover {
    background-color: var(--clr-pref-1);
}

#appCard2:hover {
    background-color: var(--clr-pref-2);
}

#appCard3:hover {
    background-color: var(--clr-secondry);
}

#appCard4:hover {
    background-color: var(--clr-pref-3);
}

.approach-card-logo {
    height: 2.8rem;
    width: 2.8rem;
    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;
}

.approach-card-logo svg {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
}

.aibigo-values {
    height: 100vh;
    width: 60%;
    margin: 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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    padding: 2rem;
}

.aibigo-val {
    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: 100%;
    text-align: center;
}

.aibigo-val p {
    font-size: 1.5rem;
    color: var(--clr-primary);
}

.aibigo-vision {
    height: 80vh;
    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;
}

.aibigo-vision-card {
    background-color: var(--clr-primary);
    width: 60%;
    margin: auto;
    padding: 2rem 5rem;
    border-radius: 20px;
    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;
    gap: 1rem;
    text-align: center;
    color: var(--clr-bg);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    height: 30rem;
}

.aibigo-vision-card:hover {
    background-color: var(--clr-pref-2);
}

.aibigo-vision-card h3 {
    color: var(--clr-bg);
}

.aibigo-vision-card p {
    font-size: 1.5rem;
    font-weight: 300;
}

.aibigo-contact {
    height: 100vh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.aibigo-contact p {
    font-size: 1.2rem;
    color: var(--clr-primary);
}

.contact-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.contact-options a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    color: var(--clr-primary);
    text-decoration: none;
}

.contact-options a img {
    height: 1.5rem;
    width: 1.5rem;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
}

.contact-op-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}

.aibigo-comming-soon {
    height: 100vh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--clr-bg);
    padding: 2rem;
    position: relative;
}

.aibigo-comming-soon h2 {
    font-weight: 400;
    font-size: 4rem;
    font-family: var(--font-CG-regular);
    margin: 0;
    text-align: center;
}

.aibigo-comming-soon h2 span {
    color: var(--clr-secondry);
}

.aibigo-footer {
    width: 100%;
    padding: 1rem .5rem;
    background-color: var(--clr-primary);
    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;
}

.copyright-foot,
.partners-foot a{
    font-size: .8rem;
    font-weight: 300;
    color: var(--clr-bg);
    text-decoration: none;
}

.redirecting {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--clr-primary);
    padding: 2rem 1rem;
    height: 100vh;
    width: 100%;
    text-transform: uppercase;
}

@media only screen and (max-width: 991px) and (min-width: 280px) {
    .aibigo-hero-text, .loader-fg {
        padding: 2rem .5rem;
    }

    .aibigo-hero-text h1, .loading-title-container h1 {
        font-size: 1.5rem;
    }

    .aibigo-hero-text h2, .loader-fg h2 {
        font-size: 3.2rem;
        text-align: center;
        text-wrap: balance;
        margin: 1rem auto;
    }

    .aibigo-hero-text p, .loader-fg p {
        text-align: center;
    }

    .aibigo-features, .aibigo-approach {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        padding: 2rem .5rem;
    }

    .feature-card, .approach-card {
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .aibigo-features-cards {
        width: 95% !important;
    }

    .section-heading, .aibigo-intro {
        font-size: 1.5rem;
    }

    .aibigo-intro {
        width: 95%;
        height: 60vh;
    }

    .aibigo-about {
        width: 95%;
    }

    .aibigo-about p {
        font-size: 1.1rem;
    }

    .aibigo-about ul li {
        margin-left: 2rem;
        font-size: 1.1rem;
    }

    .aibigo-approach {
        width: 95%;
        height: 70vh;
    }

    .approach-card {
        padding: .5rem;
        border-radius: 10px;
    }

    .approach-card-logo {
        height: 3rem;
        width: 3rem;
    }

    .approach-card-text p {
        font-size: 1rem;
    }

    .aibigo-values {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        width: 95%;
    }

    .aibigo-val p, .aibigo-vision-card p {
        font-size: 1rem;
    }

    .aibigo-vision {
        height: 50vh;
    }

    .aibigo-vision-card {
        height: 20rem;
        padding: .5rem .8rem;
        width: 95%;
        margin: unset;
    }

    .aibigo-contact {
        padding: 2rem .5rem 4rem;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content; 
    }

    .contact-options a {
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
    }

    .aibigo-footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .aibigo-comming-soon-text h2 {
        font-size: 3rem;
    }

    .back-to-top { 
        bottom: 2%;
    }

}
@media only screen and (max-width: 767px) and (min-width: 551px) {
    .feature-card {
        height: 18rem;
        border-radius: 10px;
    }
    .card-content p {
        font-size: .8rem;
    }

    .approach-card, .aibigo-vision-card {
        border-radius: 10px;
    }
}
@media only screen and (max-width: 991px) and (min-width: 768px) {

    .feature-card {
        height: 20rem;
        border-radius: 10px;
    }

    .aibigo-intro {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        padding: 5rem .5rem;
    }

    .approach-card, .aibigo-vision-card {
        border-radius: 10px;
    }

    .aibigo-comming-soon-text h2 {
        font-size: 3rem;
    }
}
@media only screen and (max-width: 1299px) and (min-width: 992px) {
    .aibigo-hero-text{
        padding: 2rem;
        text-align: center;
    }

    .aibigo-features-cards, .aibigo-vision-card, .aibigo-about {
        width: 80%;
    }
}