@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
html {
    color: #fafafa;
    font-size: 1em;
    line-height: 1.75em;
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #0070F7;
    height: 100%;
    width:100%;
    min-height: 560px;
    text-align: center;
    touch-action: pan-y;
}

.internal-wrapper {
    height: 100%;
}

.wrapper {
    max-width: 450px;
}

h1 {
    font-size: 1.5rem;
    margin: 0 0 50px 0;
    font-weight: 500;
}

/* Buttons */


.btn {
    border: none;
    border-radius: 26px;
    font-size: 1.125rem;
    height: 88px;
    margin: 0 0 10px 0;
    cursor: pointer;
    font-family: inherit;
}

.btn-main {
    background: #006BEB;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: center;
    flex-direction:column;
    align-items:center;
}
.btn-main > span {
    display: flex;
    width: 100%;
}
.btn-main > span:nth-child(2n) {
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 3px;
}
.btn-secondary {
    color: #fafafa;
    background: none;
    border: 5px solid rgba(255, 255, 255, 0.28);
    box-sizing: border-box;
}

.btn-nav {
    height: 48px;
    box-sizing: border-box;
    border-radius: 3px;
    border: none;
    font-size: 1.0625rem;
    padding: 0 24px;
}

.btn-solo,
.btn-next {
    background-color: #E0A33A;
    color:#333333;
}

.btn-next {
    margin: 0 0 0 12px;
}

.btn-solo {
    margin: 30px auto;
}

.btn-back {
    background: none;
    border: 1px solid #FFFFFF;
    margin: 0 12px 0 0;
    color: #fff;
}

.btn-icon,
.meet-icon,
.light-icon {
    margin: 0 0 0 auto;
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.25));
}

.btn-icon {
    width: 22px;
    height: 22px;
}

.meet-icon {
    width: 32px;
    height: 22px;
}

.light-icon {
    width: 25px;
    height: 22px;
}


p {
    font-size: 22px;
    line-height: 33px;
}


.home-link {
    cursor: pointer;
    line-height: initial
}
.zoom-logo {
    width: 67px;
    height: 23px; 
    margin: auto;
}
.teams-logo {
    margin-left: auto;
    position: relative;
    top: -4px;
}
.hero-illustration {
    width: 188px;
    margin: auto;
    display: flex;
}

/* Utils */

.hidden {
    display: none;
}

.align-center {
    align-items: center;
    justify-content: center;
}

.flex-centered {
    align-items: center;
    justify-content: center;
}

.b-box {
    box-sizing: border-box;
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
    width: 100%;
}

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

.flex-item {
  padding: 5px;
  text-align: center;
}


.logo {
    margin: 24px 0;
}

.nav {
    text-align: center;
    margin-top: auto;
}

.progress-dots {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.progress-dots li {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #56A2FF;
    padding: 0;
    margin: 0 10px;
    border-radius: 40px;
}

.progress-dots .current {
    background-color: #E0A33A;
}
.content-wrapper {
    height: calc(100vh - 76px);
    overflow: auto;
    top: 76px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap:10%;
    position:relative;
    box-sizing:border-box;
}
.content-wrapper.index{
    gap:0;
}
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 99;
    text-align: left;
    display: flex;
    text-align: left;
    align-items: center;
}
button{
    font-family:inherit;
}
@media screen and (max-width: 360px) {
    .internal-wrapper, .wrapper {
        margin-top: 0;
    }

    h1 {
        margin: 40px 0;
    }

    .btn {
        font-size: 1rem;
        height: 78px;
    }

    .btn-nav {
        height: 30px;
    }

    .btn-solo {
        margin: 30px auto;
        height: 40px;
    }

    p {
        font-size: 17px;
        line-height: 25px;
    }
 

}


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

    .internal-wrapper {
        max-height: 850px;
    }

    .btn-main {
        box-shadow: none;
    }

    .btn-main:hover, 
    .btn-solo:hover {
        box-shadow: 0 0 35px rgba(0, 0, 0, 0.24);
        -webkit-transition: box-shadow 0.3s ease-in-out 0s;
        -moz-transition: box-shadow 0.3s ease-in-out 0s;
        -o-transition: box-shadow 0.3s ease-in-out 0s;
        -ms-transition: box-shadow 0.3s ease-in-out 0s;
        transition: box-shadow 0.3s ease-in-out 0s;
    }

}