*{
    scroll-behavior: smooth;
}
body::-webkit-scrollbar {
    width: 8px;               /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: #E8E9F3;
}

body::-webkit-scrollbar-thumb {
    background-color: #58F397;    /* color of the scroll thumb */
}
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}
.home {
    width: 100vw;
    height: 80vh;
    background-image: url("../Public/Images/home.svg"),url("../Public/Images/home.png");
    background-size: cover;
}
#img-como-funciona{
    width: 90vw;
    margin-left: 5vw;
    height: 80vh;
    background-image: url("../Public/Images/como-funciona.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.sign-up{
    padding: 24px;
    min-height: 40vh;
}

.video{
    padding-top: 24px;
    text-align: start;
}

iframe {
    aspect-ratio: 16 / 9;
    width: 100% !important;
    border-radius: 12px;
}

.btn-success{
    background-color: #58F397;
    color: #0F498A;
}

.btn-success:hover{
    background-color: #148843;
    color: #E8E9F3;
}

.btn-dark-blue{
    background-color: #0F498A;
    color: #E8E9F3;
}

.btn-dark-blue:hover{
    background-color: #072140;
    color: #E8E9F3;
}

.depoimentos {
    padding: 3rem;
    overflow-y: hidden;
}


.depoimentos div::-webkit-scrollbar {
    height: 8px;               /* width of the entire scrollbar */
}

.depoimentos div::-webkit-scrollbar-track {
    background: #E8E9F3;
}

.depoimentos div::-webkit-scrollbar-thumb {
    background-color: #58F397;    /* color of the scroll thumb */
}

.custom-card {
    background-color: #0F498A;
    border: 0;
    transition: .5s ease-in-out;
    width: 30vw;
}

.custom-card:hover{
    background-color: #0c4d97;
    box-shadow: 15px 15px 30px rgba(0,0,0,.7),
             -15px -15px 30px rgba(255,255,255,.7);
    transform: scale(1.1);
    z-index: 100;
}

.custom-card:hover i, .custom-card:hover img{
    animation: float 6s ease-in-out infinite;
}

.responsive-carrossel{
    min-width: 100%;
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-10px);
	}
	100% {
		transform: translatey(0px);
	}
}
@media only screen and (max-width: 600px) {
    .home {
        background-image: url("../Public/Images/home-mobile.svg"),url("../Public/Images/home-mobile.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }
    .home.hd{
        background-image: url("../Public/Images/home-mobile.svg"),url("../Public/Images/home-mobilehd.png");
    }
    #img-como-funciona{
        width: 90vw;
        margin-left: 0;
        height: 60vh;
        background-image: url("../Public/Images/como-funciona-mobile.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }
    .depoimentos{
        padding-left: 0;
        padding-right: 0;
    }
    .custom-card {
        width: 80vw;

    }
    .responsive-carrossel{
        min-width: auto;
    }
}