/* @import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Maven+Pro:200,300,400,500,600,700,800,900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css?family=Manrope:200,300,400,500,600,700,800,900&display=swap'); */
* {
    box-sizing: border-box;
}

:root {
    /* variables */
    --header-gradient: linear-gradient(99deg, #232323 44.56%, rgba(78, 142, 180, 0.88) 119.62%);
}

a {
    color:rgba(84, 17, 255, 0.875);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a.btn {
    text-decoration: none;
    padding: 0.85rem 1.1rem;
    border-radius: 100px;
    background: rgba(84, 17, 255, 0.875);
    color: #fff;
    font-size: smaller;
}

/* a.btn:visited {
    color:rgba(84, 17, 255, 0.875);
} */
body {
    max-width: 1200px;
    background: #fff;
    color: #232323;
    padding: 0;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    /* background: url('img/EtW-BG.png') top center no-repeat fixed; */
}

header {
    position: fixed;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 100;
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 5px;
    justify-content: center;
    align-content: center;
    background-color: #fff;
    /* border-bottom: 1px solid rgb(244, 244, 244); */
}


main {
    padding-top: 5em;
}

ul.contact {
    display: flex;
    align-items: space-between;
    list-style-type: none;    
}

ul.contact li {
    padding-right: 2em;
}

aside.quote {
    margin: 10px 20px;
    max-width: 80%;
    padding: 24px;
    background: rgba(0, 0, 0, 0, 0.2);
    font-size: 18px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    background: transparent url('img/quote-gradient.png') no-repeat center center;
    border-radius: 12px;
}

aside.quote span {
    margin-top: 10px;
    display: inline-block;
    font-style: normal;
    font-weight: 500;
}

video {
    width: 320px;
    height: auto;
    border: 1px solid #cccccc;
    border-radius: 32px;
  }

  .video-container {
    width: 100%;
    max-width: 320px;
  }


h1#logo {
    margin-top: 2em;
    font-family: 'Montserrat','Helevtica Neue', 'Helvetica', sans-serif;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -6%;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    background: var(--header-gradient);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h4.bubble {
    display: inline-block;
    border: 1px solid #232323;
    border-radius: 100px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

figure {
    padding: 0;
    margin: 0;
}

img.border {
    border: 1px solid #e1e1e1;
    border-radius: 10px;
}

img.fade {
    filter: saturate(15%);
    transition: 0.2s ease-in-out;
}

img.fade:hover {
    filter: saturate(100%);
    scale: 103%;
}

img.logo {
    width: 160px;
    max-width: 160px;
    scale: 100%;
    transition: all 1s ease-in-out;
}

img.round {
    border-radius: 100%;
    box-shadow: 1.5px 0 0 2px rgba(75, 75, 75, 0.2)
}

img.logo:hover {
    scale: 103%;
    transition: all 1s;
}

section h1 {
    font-family: 'Montserrat','Helevtica Neue', 'Helvetica', sans-serif;
    font-size: 55px;
    padding-top: 70px;
    text-align: center;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(2deg) rotateY(0deg) rotateZ(0.35deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    color: #121212;
    background: linear-gradient(99deg, #4945b7 44.56%, rgba(17, 104, 255, 0.875) 119.62%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s;
}

h1.hero {
    padding-top: 100px;
}

section h1:hover {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(1deg) rotateY(0deg) rotateZ(-0.2deg) skew(1deg, 0deg);
}

.company-name {
    font-weight: 700;
    color: #232323;
}

.product-title {
    background-image: linear-gradient(91.39deg, #0145ce, #b700ef 80%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    /* text-transform: uppercase; */
    font-style: normal;
}

nav {
    text-align: end;
    margin-top: 3.5em;
    font-family: 'Montserrat','Helevtica Neue', 'Helvetica', sans-serif;
}

nav a {
    display: inline-block;
    margin-right: 2rem;
    color: #232323;
    margin-top: 1em;
    margin-left: 1.25em;
    padding: 6px 12px;
    text-decoration: none;
    font-size: 1.15em;
    transition: all 0.3s;
}

nav a.active, nav a:hover {
    color: #232323;
    /* background-color: #fff; */
    /* border-radius: 20px; */
    border-bottom: 1px solid #4945b7;
}

section {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 1rem 2.5rem;
    font-size: 1.25em;
}

footer p {
    text-align: center;
    margin: 0 auto;
    min-height: 30px;
    height: 45px;
    font-size: 16px;
    text-align: center;
    padding: 10px 0 100px 0;
}

hr {
    margin: 3em 0;
    border: 1px solid #f4f4f4;
    border-radius: 1px;
    width: 45%;
}

section h2 {
    font-family: 'Montserrat','Helevtica Neue', 'Helvetica', sans-serif;
    /* margin-top: 1em; */
    padding-top: 5px;
    width: 100%;
    color: #292929;
    background: linear-gradient(-40deg, #6262fd 46%, rgba(0, 126, 223, 0.79) 119.62%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

p {
    color: #121212;
    line-height: 1.5em;
    font-size: 23px;
}

p.center {
    text-align: center;
}

p.section-intro {
    border-radius: 50px;
    padding: 4px 12px;
    font-family: 'Montserrat','Helevtica Neue', 'Helvetica', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #202020;
    background: rgba(255, 255, 255, 0.9);
    transition: all 1s ease-in;
}

p.section-intro:hover {
    border-bottom: 1px dotted #E459FB;
    transition: all 1s ease-out;
}

span.label {
    font-weight: 550;
}

.hidden {
    opacity: 0;
    transition-property: opacity, right, top, height;
    transition-duration: 2s, 2s, 2s, 3s;
}

.show {
    opacity: 1;
}

@media screen and (max-width: 900px) {

    img.profile {
        max-width: 120px;
    }

    figcaption {
        font-size: smaller;
    }    

    ul.contact {
        font-size: 12px;
        flex-direction: column;
    }

    ul.contact li {
        padding-bottom: 1.2em;
        font-size: 1.3em;
    }

    section h1 {
        font-size: 28px;
        /* padding-top: 80px; */
    }

    h1.hero {
        padding-top: 30px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 16px;
    }

    /* img {
        width: 100%;
        height: auto;
    } */

    img.fade {
        filter: saturate(100%);
    }

    p {
        font-size: 0.8em;
    }

    nav {
        align-items: start;
        text-align: center;
        margin-top: 0;
        /* padding-bottom: 1.5em; */
        color: #e1e1e1;
        font-size: small;
    }

    header {
        position: static;
        margin: 0 auto;
        margin-top: -2.5em;
        text-align: center;
        display: block;
    }
}
