.slidePresentation * {
    box-sizing: border-box;
}

.slidePresentation {
    --colorText: #333;
    --arrows-size: 36px;

    position: relative;
    display: flex;
    max-width: 1280px;
    width: 100%;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    box-shadow: 0 4px 10px 3px hsla(0, 0%, 0%, .2);
    border-radius: 19px;
    background-color: hsla(0, 0%, 0%, .1);
}

.slidePresentation img {
    max-width: 100%;
}

.slidePresentation p {
    font-size: 20px;
    margin-bottom: 1rem;
}

@media (max-width: 576px) {
    .slidePresentation p {
        font-size: 20px;
    }
}

@keyframes backOutDown {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    20% {
        opacity: .7;
        transform: translateY(0) scale(.7)
    }

    to {
        opacity: .7;
        transform: translateY(700px) scale(.7)
    }
}

.slidePresentation__item {
    max-width: 100%;
    width: 100%;
    flex: 0 0 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    background: repeating-linear-gradient(-45deg, hsl(0, 0%, 94%), hsl(0, 0%, 94%) 5px, hsl(0, 0%, 96%) 5px, hsl(0, 0%, 96%) 25px);
    border-radius: 15px;
    color: var(--colorText);
    visibility: hidden;
    opacity: 0;
    transition: visibility 1s, opacity 1s;
    animation-name: backOutDown;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@media (max-width: 576px) {
    .slidePresentation__item {
        min-height: 450px;
    }
}

.slidePresentation__item--start {
    background: repeating-linear-gradient(-45deg, hsl(47, 100%, 62%), hsl(47, 100%, 62%) 5px, hsl(47, 100%, 68%) 5px, hsl(47, 100%, 68%) 25px);
}

@keyframes backInDown {
    0% {
        opacity: .7;
        transform: translateY(-1200px) scale(.7)
    }

    80% {
        opacity: .7;
        transform: translateY(0) scale(.7)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.slidePresentation__item--show {
    position: relative;
    visibility: visible;
    opacity: 1;
    transition: visibility 1s, opacity 1s;
    z-index: 2;

    animation-name: backInDown;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.slidePresentation__content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;

    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 60px 50px;
}

@media (max-width: 992px) {
    .slidePresentation__content {
        grid-template-columns: 1fr;
        padding: 20px 60px 50px;
    }
}


/*-- Nav arrows --*/
.slidePresentation__prev,
.slidePresentation__next {
    position: absolute;
    top: calc(50% - (var(--arrows-size) / 2));
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--arrows-size);
    height: var(--arrows-size);
    padding: 0 0 0 2px;
    border: 0;
    border-radius: 50%;
    background: hsl(0, 0%, 100%);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.slidePresentation__prev:hover,
.slidePresentation__next:hover {
    opacity: 1;
    cursor: pointer;
}

.slidePresentation__prev:focus,
.slidePresentation__next:focus {
    outline: none;
}

.slidePresentation__prev {
    left: 8px;
    transform: rotate(180deg);
}

.slidePresentation__next {
    right: 8px;
}

@media (max-width: 576px) {
    .slidePresentation__prev {
        left: 5px;
    }

    .slidePresentation__next {
        right: 5px;
    }
}

.slidePresentation__prev img,
.slidePresentation__next img {
    width: 45%;
}



/*-- Nav bullets --*/
.slidePresentation__bullets {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    background-color: hsl(0, 0%, 100%);
    padding: 4px 8px 3px;
    border-radius: 20px;
    text-align: center;
    width: max-content;
    max-width: 90%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    opacity: .7;
    transition: opacity .3s;
}

.slidePresentation__bullets:hover {
    opacity: 1;
}

.slidePresentation__bullet {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: hsl(0, 0%, 80%);
    border-radius: 50%;
    margin: 3px;
    transition: transform .3s;
}

@media (max-width: 576px) {
    .slidePresentation__bullet {
        width: 10px;
        height: 10px;
    }
}

.slidePresentation__bullet:hover {
    cursor: pointer;
    transform: scale(1.2);
}

.slidePresentation__bullet--active {
    background-color: hsl(0, 0%, 55%);
}



/*-- Nav play --*/
.slidePresentation__playpause {
    display: inline-flex;
    margin-left: 10px;
    padding: 0;
    background: none;
    border: none;
    opacity: .2;
    transition: opacity .4s;
    z-index: 3;
}

.slidePresentation__playpause:hover {
    cursor: pointer;
    opacity: .6;
}

.slidePresentation__playpause:focus {
    outline: none;
}

.slidePresentation__playpause img {
    width: 15px;
}



.conversation__perfil1,
.conversation__perfil2 {
    --color-perfil: #333;
    border-radius: 50%;
    border: 5px solid var(--color-perfil);
    box-shadow: 0 1px 5px hsla(0, 0%, 0%, .4);
}

.conversation__perfil1 {
    --color-perfil: #39b54a;
}

.conversation__perfil2 {
    --color-perfil: hsl(302, 58%, 36%);
}

.conversation__message {
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 3px hsla(0, 0%, 0%, .1);
}

.conversation__message.conversation__message--1 {
    margin-right: 40px;
    box-shadow: 0 2px 3px 1px hsla(128.2, 52.1%, 46.7%, .5);
}

.conversation__message.conversation__message--2 {
    margin-left: 40px;
    box-shadow: 0 2px 3px 1px hsla(302, 58%, 36%, .5);
}

.conversation__line--start {
    position: relative;
    border-bottom: 1px dashed #016d38;
    height: 0;
    width: calc(100% - 120px);
    display: block;
    margin: 30px auto 5px;
}

.conversation__line--start:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #016d38;
    transform: translateY(-50%);
}

.conversation__line--end {
    position: relative;
    border-bottom: 1px dashed #016d38;
    height: 0;
    width: calc(100% - 120px);
    display: block;
    margin: -15px auto 60px;
}

.conversation__line--end:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #016d38;
    transform: translateY(-50%);
}



/*-- Utilites --*/

.alignSelf--center {
    align-self: center;
}

.alignSelf--end {
    align-self: end;
}

.justifySelf--end {
    justify-self: end;
}

.dNone {
    display: none;
}