:root {
    --text-color: #272727;
    --background-color: #f7f7f7;
    --blue-color: #0BA2FF;
    --green-color: #12D702;
    --pink-color: #F00042;
    --orange-color: #ff6c08;
    --purple-color: #4D3DF4;
    --purple2-color: #c000f0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    /* 10px */
    font-size: 62.5%; 
}
.mobile-phone, .desktop-computer{
	opacity: 0;
	height: 10px!important;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    background: linear-gradient(45deg, whitesmoke, var(--background-color));
    line-height: 1.5;
    font-weight: 400;
    overflow-x: hidden;
}
a {
    text-decoration: none;
}

h1,h2,h3,h4,h5,h6,
.btn, a {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

h1,h2,h3,h4 {
    font-weight: 200;
}

h1 {
    font-size: 6.2rem
}

h2 {
    font-size: 4.2rem;
}

h3 {
    font-size: 2.8rem;
}

p, h4 {
    font-size: 1.8rem;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
}

.min-100vh {
    min-height: 100vh;
}

footer {
    background-color: black;
    color: #c0c0c0;
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

footer a {
    color: #c0c0c0 !important;
    transition: color .3s ease;
}

footer a:hover {
    color: var(--blue-color) !important;
}

footer a:hover {
    color: var(--blue-color);
}

footer .line-separator {
    height: 4px; 
    border-radius: 1px; 
    background-color: rgba(50, 50, 50);
}

header .container {
    padding: 6rem 4rem 6rem 4rem;
}

header .bg-image {
    position: absolute;
    opacity: .15;
    z-index: 1;
}

header .bg-image-1 {
    top: 0;
    right: 0;
    width: 50rem;
    max-width: 25vw;
    height: auto;
    min-width: 200px;
}

header .bg-image-2 {
    bottom: 0;
    left: 0;
    transform: translateX(-50%) translateY(50%);
    width: 60rem;
    max-width: 35vw;
    height: auto;
    min-width: 350px;
}

header .navbar-brand {
    width: 15rem;
    min-width: 100px;
}

header .navbar-nav {
    margin-left: 6rem;
}

header .navbar-nav {
   font-size: 1.6rem; 
   font-weight: 600;
}

header .navbar-nav .nav-item:not(:last-child) {
    margin-right: 5rem;
}

header .navbar-nav .nav-link {
    position: relative;
    transition: color .3s ease;
    padding: 1rem 0;
}

header .navbar-nav .nav-link.active {
    color: var(--text-color) !important;
}

header .navbar-nav .nav-link:hover {
    color: var(--blue-color) !important;
}

header .navbar-nav .nav-link.active::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: .5rem;
    border-radius: 1px;
    background-color: var(--blue-color);
}


.header-p {
    font-size: 2.1rem;
    max-width: 70rem;
    line-height: 1.8;
    margin: 2.5rem 0 4rem 0;
}

main .container {
    max-width: 1400px;
}

.bg-squares {
    position: relative;
}

.bg-squares::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("assets/img/abstract-squares.png");
    opacity: .6;
    background-size: 30%;
    background-repeat: repeat;
    background-position: center;
    background-attachment: fixed;
}

.bg-dna {
    overflow: hidden;
}

.bg-dna::before {
    content: '';
    width: 300px;
    height: 100%;
    position: absolute;
    left: 77%;
    transform: translateX(-50%);
    background-image: url("assets/img/genetic-dna.png");
    background-size: contain;
    background-repeat: repeat-y;
    background-position: center;
    filter: brightness(.8) invert(55%) sepia(37%) saturate(5057%) hue-rotate(178deg) brightness(99%) contrast(106%);
}

main section:not(.jumbotron-section) .container {
    padding-top: 0;
    padding-bottom: 0;
}

.section-spacer {
    height: 15rem;
}

.jumbotron-section {
    padding: 6rem 0;
    background-color: #a2dbff73;
}

.quotation-marks {
    width: 7rem;
    min-width: 30px;
    height: auto;
    fill: var(--text-color);
    opacity: .9;
}

.jumbotron {
    max-width: 120rem;
    display: flex;
}

.jumbotron p {
    font-size: 2.3rem;
    padding: 5rem 2rem !important;
    line-height: 1.8;
    text-align: center;
}

.jumbotron p span {
    font-weight: 600;
}

.card,
.card-header,
.card-body,
.card-footer {
    background-color: transparent;
    border: unset;
    padding: 0;
    border-radius: 0;
}

.custom-card {
    max-width: 750px;
    position: relative;
}

.custom-card.left-padding {
    padding-left: 6rem;
}

.custom-card.right-padding {
    padding-right: 6rem;
}

.custom-card.border-start.border-purple {
    border-left: 2px solid var(--purple-color) !important;
}
.custom-card.border-start.border-purple2 {
    border-left: 2px solid var(--purple2-color) !important;
}

.custom-card.border-end.border-pink {
    border-right: 2px solid var(--pink-color) !important;
}

.custom-card.border-end.border-orange {
    border-right: 2px solid var(--orange-color) !important;
}

.custom-card.border-start.border-green {
    border-left: 2px solid var(--green-color) !important;
}

.custom-card h2 {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

.custom-card p {
    font-size: 2.2rem;
    line-height: 1.7;
    margin-bottom: 4rem;
}

.desktop-computer {
    width: 550px;
    max-width: 100%;
}

.mobile-phone {
    width: auto;
    height: 700px;
}

.metric-card h3 {
    font-size: 3.6rem;
    font-family: 'Rubik Mono', sans-serif;
    letter-spacing: .15rem;
}

.metric-card h4 {
    font-size: 2.6rem;
    font-weight: 500;
}

.metric-card h5 {
    font-size: 2.1rem;
}

.about-us-section {
    position: relative;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    width: 100%; 
    height: 65rem;
    background-image: url("assets/img/wave1.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    right: 0;   
    bottom: 0;
    opacity: .6;
}

.fw-400 {
    font-weight: 400;
}

.text-primary {
    color: var(--blue-color) !important;
}

.text-purple {
    color: var(--purple-color) !important;
}
.text-purple2 {
    color: var(--purple2-color) !important;
}

.text-pink {
    color: var(--pink-color) !important;
}

.text-orange {
    color: var(--orange-color) !important;
}

.text-green {
    color: var(--green-color) !important;
}

.btn {
    font-size: 1.4rem;
    min-height: 64px;
    font-weight: 500;
    border-radius: 1rem;
    padding: 1rem 3rem;
    min-width: 250px;
    outline: none;
    white-space: nowrap;
    transition: all .3s ease;
}

.btn:focus,
.btn:active  {
    outline: none !important;
}

.btn:not(.btn-outline) {
    border-color: transparent !important;
}

.btn-primary {
    background-color: var(--blue-color);
    box-shadow: rgba(11, 162, 255,.5) 0px 4px 12px;
}

.btn.btn-primary:focus,
.btn.btn-primary:active  {
    box-shadow: rgba(11, 162, 255,.5) 0px 4px 12px !important; 
}

.btn-arrow {
    display: inline-block;
    width: 3.2rem;
    height: 3.2rem;
    transform: translateX(10%);
    -webkit-clip-path:polygon(100% 30%, 50% 0, 0 30%, 0% 70%, 50% 100%, 100% 70%);
    -moz-clip-path: polygon(100% 30%, 50% 0, 0 30%, 0% 70%, 50% 100%, 100% 70%);
    clip-path:polygon(100% 30%, 50% 0, 0 30%, 0% 70%, 50% 100%, 100% 70%);
    margin-left: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}

.btn-arrow svg {
    width: 55%;
    height: 55%;
    stroke-width: 1.5;
    transition: all .3s ease;
}

.btn-primary .btn-arrow {
    background-color: var(--background-color);
} 

.btn-primary .btn-arrow svg {
    stroke: var(--blue-color);
    fill: var(--blue-color);
}

.btn-outline {
    background-color: transparent !important;
    box-shadow: unset !important;
    position: relative;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-color: var(--text-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease-in-out;
}

.btn-outline:hover::before {
    transform: scaleX(1);
    border-radius: 4px;
}

.btn.btn-primary.btn-outline {
    color: var(--blue-color);
    border: 2px solid var(--blue-color);
}

.btn.btn-primary.btn-outline .btn-arrow {
    background-color: var(--blue-color);
}

.btn.btn-primary.btn-outline .btn-arrow svg {
    stroke: #fff;
    fill: #fff;
}

.btn.btn-dark.btn-outline {
    color: var(--text-color);
    border: 2px solid var(--text-color) !important;
    transition: .3s ease-in-out;
}

.btn.btn-dark.btn-outline:hover {
    color: var(--background-color);

    .btn-arrow {
        background-color: var(--background-color);

        svg {
            stroke: black;
            fill: black;
        }
    }
}

.btn.btn-dark.btn-outline .btn-arrow {
    background-color: var(--text-color);
    transition: .3s ease-in-out;
}

.btn.btn-dark.btn-outline .btn-arrow:hover {
    background-color: var(--background-color);
}

.btn.btn-dark.btn-outline .btn-arrow svg,
.btn.btn-purple2.btn-outline .btn-arrow svg,
.btn.btn-purple.btn-outline .btn-arrow svg,
.btn.btn-pink.btn-outline .btn-arrow svg,
.btn.btn-green.btn-outline .btn-arrow svg {
    stroke: #fff;
    fill: #fff;
}

.btn.btn-purple {
    background-color: var(--purple-color);
    color: var(--background-color);
    box-shadow: rgba(77, 61, 244, .5) 0px 4px 12px;
}
.btn.btn-purple2 {
    background-color: var(--purple2-color);
    color: var(--background-color);
    box-shadow: rgba(192, 0, 240, 0.5) 0px 4px 12px;
}

.btn.btn-purple:focus,
.btn.btn-purple:active  {
    box-shadow: rgba(77, 61, 244, .5) 0px 4px 12px !important; 
}
.btn.btn-purple2:focus,
.btn.btn-purple2:active  {
    box-shadow: rgba(192, 0, 240, 0.5) 0px 4px 12px !important;
}

.btn.btn-purple .btn-arrow{
    background-color: var(--background-color);
}
.btn.btn-purple2 .btn-arrow{
    background-color: var(--background-color);
}

.btn.btn-purple .btn-arrow svg {
    stroke: var(--purple-color);
    fill: var(--purple-color);
}
.btn.btn-purple2 .btn-arrow svg {
    stroke: var(--purple2-color);
    fill: var(--purple2-color);
}

.btn.btn-pink {
    background-color: var(--pink-color);
    color: var(--background-color);
    box-shadow: rgba(240, 0, 66, .5) 0px 4px 12px;
}

.btn.btn-pink:focus,
.btn.btn-pink:active  {
    box-shadow: rgba(240, 0, 66, .5) 0px 4px 12px;
}
    
.btn.btn-pink .btn-arrow{
    background-color: var(--background-color);
}

.btn.btn-pink .btn-arrow svg {
    stroke: var(--pink-color);
    fill: var(--pink-color);
}

.btn.btn-orange {
    background-color: var(--orange-color);
    color: var(--background-color);
    box-shadow: rgba(255, 108, 8, 0.5) 0px 4px 12px;
}

.btn.btn-orange:focus,
.btn.btn-orange:active  {
    box-shadow: rgba(255, 108, 8, 0.5) 0px 4px 12px;
}

.btn.btn-orange .btn-arrow{
    background-color: var(--background-color);
}

.btn.btn-orange .btn-arrow svg {
    stroke: var(--orange-color);
    fill: var(--orange-color);
}

.btn.btn-green {
    background-color: var(--green-color);
    color: var(--background-color);
    box-shadow: rgba(18, 215, 2, .5) 0px 4px 12px;
}

.btn.btn-green:focus,
.btn.btn-green:active  {
    box-shadow: rgba(18, 215, 2, .5) 0px 4px 12px;
}

.btn.btn-green .btn-arrow{
    background-color: var(--background-color);
}

.btn.btn-green .btn-arrow svg {
    stroke: var(--green-color);
    fill: var(--green-color);
}


.btn-primary:hover {
    background-color: #418eff;
}

.btn.btn-primary:focus,
.btn.btn-green:focus,
.btn.btn-blue:focus,
.btn.btn-purple:focus,
.btn.btn-purple2:focus,
.btn.btn-orange:focus {
    box-shadow: rgba(39, 39, 39, .5) 0px 4px 12px !important;
}


.flex-auto {
    flex: 1 1 auto;
}

.about-us-card {
    max-width: 750px;
    margin: 0 auto;
}

.about-us-card h2 {
    font-size: 5rem;
}

.about-us-card p {
    font-size: 2.2rem;
    line-height: 1.8;
}

.about-us-card .card-body {
    width: 80%;
}

.people {
    position: relative;
    width: 250px; 
    height: 250px; 
    max-height: 100%; 
    max-width: 100%; 
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    overflow: hidden;
    border-radius: 1rem;
    transition: all .3s ease;
    border: 0px solid var(--blue-color);
    color: rgba(0,0,0,0);
    user-select: none;
    background-color: var(--blue-color);
}

.people-name { 
    font-size: 2rem;
    margin-bottom: .2rem;
    font-weight: 500;
}

.people-role {
    color: rgba(255,255,255,0);
    font-size: 1.6rem;
    font-weight: 300;
    transition: all .3s ease;
}

.people .img-addon {
    z-index: 2;
}

.people .linkedin-link {
    width: 5rem;
    height: 5rem;
    max-width: 30px;
    max-height: 30px;
    opacity: 0;
    transition: all .3s ease;
}

.people::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.people::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .3s ease;
}

.people:hover,
.people:focus {
    color: var(--background-color);
    box-shadow: 0px 6px 1px var(--blue-color);;
    transform: translateY(-4px);

    .linkedin-link {
        opacity: 1;
    }

    .people-role {
        color: rgba(255,255,255,.75);
    }
}

.people:hover::after,
.people:focus::after {
    background-color: rgba(0,0,0,.7);
}

.people-1::before {
    background-image: url("assets/img/1.jpg");
}

.people-2::before {
    background-image: url("assets/img/2.jpg");
}

.people-3::before {
    background-image: url("assets/img/3.jpg");
}

.people-4::before {
    background-image: url("assets/img/4.jpg");
}

.hexagon {
    clip-path: polygon(0% 25%,0% 75%,50% 100%,100% 75%,100% 25%,50% 0%);
    background-color: black;
    width: 300px;
    height: 300px;
    position: absolute;
    z-index: -1;
}

.integration-box {
    min-height: 140px;
}
.lh-125 {
    line-height: 1.25;
}

.lh-15 {
    line-height: 1.5;
}

.lh-175 {
    line-height: 1.75;
}

.z-2 {
    z-index: 2;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.max-w-300 {
    max-width: 300px;
}

footer svg {
    width: 100%;
    max-width: 2.2rem !important;
    margin-right: 1.3rem !important;
    stroke: var(--blue-color);
}


@media (max-width: 1400px) {
    h1 {
        font-size: 5rem;
    }

    .header-p {
        font-size: 2rem;
    }
}

@media (max-width: 1200px) {
    html {
        font-size: 45%;
    }

    main section:not(.jumbotron-section) + section .container {
        padding-top: 0 !important;
    }

    .header-p {
        font-size: 2.3rem;
        max-width: 90rem;
    }


    .custom-card.border-end.border-pink,
    .custom-card.border-start.border-purple,
    .custom-card.border-start.border-purple2,
    .custom-card.border-start.border-green,
    .custom-card.border-end.border-orange {
        border: 0 !important;
        padding: 0 !important;
    }

    .hexagon,
    .bg-dna::before {
        display: none;
    }

    .about-us-card .card-body {
        width: 100%;
    }

    .metric-card h3 {
        font-size: 4rem;
    }

    .metric-card h5 {
        font-size: 2.4rem;
    }

    .bg-squares::before {
        background-size: 70%;
        background-attachment: unset;
    }

    footer .fs-3 {
        font-size: 2.25rem !important;
    }
}

@media (max-width: 767px) {
    main::before {
        display: none;
    }

    h1 {
        font-size: 4.5rem;
    }

    .mobile-phone {
        height: 450px;
    }

    .jumbotron p {
        padding: 5rem 0 !important;
    }

    .people-name {
        font-size: 2.8rem;
    }

    .people-role {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 4rem;
    }   

    .header-p,
    .jumbotron p {
        font-size: 2.4rem;
    }

    .custom-card .card-footer .btn,
    .about-us-card .card-footer .btn {
        width: 80%;
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .custom-card h2 {
        font-size: 3.5rem;
    }

    .custom-card .card-footer .btn span,
    .about-us-card .card-footer .btn span {
        font-size: 2.1rem !important;
    }
}
