@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wdth,wght@0,6..12,75..125,200..1000;1,6..12,75..125,200..1000&display=swap');

html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

strong {
    font-weight: bold;
    color: #7b17a8;
}

.title-div {
    display: flex;
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    margin: auto;
    z-index: 100;
    align-items: end;
    position: sticky;
    flex-direction: column;
    color: #10a5de;
}

.title-div p {
    margin: min(1rem, 3vh, 2vw);
    padding: 0;
    font-size: min(1rem, 5vh, 2vw);
}


.slides-container {
    position: relative;
    width: min(800px, 90vw);
    height: min(450px, 50vw, 80vh);
    margin: min(50px, 5vh) auto;
    font-family: "Nunito", sans-serif;
    border: 1px solid #eee;
    box-shadow: 0px 0px 15px 1px #ebebeb;
    border-radius: min(0.5rem, 1vw);
    overflow: hidden;
}

.button-container {
    position: relative;
    width: min(800px, 90vw);
    height: min(1.5rem);
    margin: 0 auto;
    font-family: "Nunito", sans-serif;
}

.slide {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}


.slide__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 50%;
    float: left;
    overflow: hidden;
}

.slide--left {
    background: #f9f9f9;
}



.slide-done .slide--left{
    background: #83cedb;
}

.slide--right {
    position: relative;
    background: #fff;
    padding: 3%;
    
}

.slide--right * {
    -webkit-animation: fadeUp 1s forwards;
    animation: fadeUp 1s forwards;
}

.slide--right h1 {
    width: 100%;
    margin: 0.5vh 0;
    font-weight: 400;
    font-size: min(2rem, 4vw, calc(0.5rem + 4vh));
    text-align: left;
}

.slide--right p {
    font-size: min(1rem, 2vw, calc(0.5rem + 2vh));
    font-weight: lighter;
    color: #666;
    line-height: 170%;
    width: 100%;
    margin: min(4vh, 2vw);
}

.btn {
    font-family: "Nunito", sans-serif;
    height: 1.8rem;
    width: 3.5rem;
    font-weight: bold;
    font-size: .9rem;
    border-radius: 5px;
    border: 0;
    outline: none;
    color: #fff;
}






.btn__absolute {
    position: absolute;
    z-index: 10;
}

.btn--highlighted {
    bottom: 1vw;
    right: 0;
    background-color: #10a5de;
    border-style: outset;
    border-color: skyblue;
    border-width: 0.1rem;
}

.btn__done, .btn__close, .btn__return {
    right: 4rem;
}

.btn--highlighted:hover {
    background-color: #0278a7;
    border-style: inset;
    border-color: rgb(89, 153, 179);
    border-width: 0.1rem;
}

.btn--muted {
    bottom: 1vw;
    left: 1vw;
    background-color: #7e7d7d;
    border-style: outset;
    border-color: lightgray;
    border-width: 0.1rem;
}

.btn--muted:hover {
    background-color: #5e5e5e;
    border-style: inset;
    border-color: grey;
    border-width: 0.1rem;
}

.pagination {
    height: 1rem;
    max-width: 30vw;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    clear: both;
}

.paginationDot {
    width: 10px;
    height: 10px;
    margin: 0 3px;
    border: 2px solid #ddd;
    border-radius: 50%;
    transition: 0.4s all;
}

.paginationDot--active {
    background: #10a5de;
    border-color: #10a5de;
}



.card {
    /* height: 23%; */
    width: 80%;
    padding: 0.4rem;
    margin: 0.5rem 0;
    border-radius: 0.5rem;
    background: white;
    display: flex;
    align-items: center;
}

.card--profile:nth-child(2) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.card--profile:last-child {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.card--profile {
    box-shadow: -5px 5px 0px 0px rgba(235, 235, 235, 0.4);
    opacity: 0;
    -webkit-animation: fadeRight 0.8s forwards;
    animation: fadeRight 0.8s forwards;
}


.card__logo {
    display: flex;
    width: 25%;
    height: 92%;
}

.card__logo img {
    width: min(125%, 5vw);
    object-fit: cover;
    align-self: center;
    max-height: 100%;
    margin: auto;
}

.card__info {
    width: 75%;
    padding: 2%;
}

.card__info__name {
    margin: 0 0 0.1vw;
    font-size: min(1rem, 1.5vw, 3vh);
}

.card__data__stats {
    display: inline-block;
    margin-right: 0.3vw;
    font-size: min(0.8rem, 1.5vw, 3.5vh);
    font-weight: lighter;
    font-style: italic;
}




.tut-pic {
    width: 125%;
    height: 100%;
    object-fit: cover;
    animation: 0.8s fadeRight forwards;
}






@-webkit-keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes bounceUp {
    0% {
        transform: translateY(10%);
    }

    60% {
        transform: translateY(-5%);
    }


    100% {
        transform: translateY(0%);
    }
}

@keyframes bounceUp {
    0% {
        transform: translateY(10%);
    }

    60% {
        transform: translateY(-5%);
    }


    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes bounceUpOnce {
    0% {
        transform: translateY(0%);
    }

    35% {
        transform: translateY(45%);
    }

    70% {
        transform: translateY(-16%);
    }

    90% {
        transform: translateY(10%);
    }

    100% {
        transform: translateY(0%);
    }
}

@keyframes bounceUpOnce {
    0% {
        transform: translateY(0%);
    }

    35% {
        transform: translateY(45%);
    }

    70% {
        transform: translateY(-16%);
    }

    90% {
        transform: translateY(10%);
    }

    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes growRightLong {
    from {
        width: 0%;
    }

    to {
        width: 60%;
    }
}

@keyframes growRightLong {
    from {
        width: 0%;
    }

    to {
        width: 60%;
    }
}

@-webkit-keyframes growRightShort {
    from {
        width: 0%;
    }

    to {
        width: 35%;
    }
}

@keyframes growRightShort {
    from {
        width: 0%;
    }

    to {
        width: 35%;
    }
}

@-webkit-keyframes fadeRight {
    0% {
        opacity: 0;
        transform: translateX(-5%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@keyframes fadeRight {
    0% {
        opacity: 0;
        transform: translateX(-5%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideInRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideInLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0%);
    }
}