* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
}

.wrapper-banner {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-rows: 60% 40%;
}

.banner {
    grid-column: 1/1;
}

.banner-img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    object-fit: cover;
}

.bottom-container {
    padding: 20px;
    gap: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bottom-container img {
    width: 100px;
    height: 100px;
    border-radius: 99px;
    cursor: pointer;
}

.bottom-container img:hover {
    transform: scale(1.1);
    transition: 0.5s;    
    box-shadow: 0 0 10px 0 #3596da;
}

.bottom-container h2 {
    font-size: 64px;
    line-height: 1.0625;
    font-weight: 600;
    letter-spacing: -0.009em;
    font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.bottom-componenents {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 10px;
    width: 30%;
}

#bilan {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chat-box {
    width: 300px;
    height: 400px;
    overflow-y: scroll;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.08);
}

.chat-header {
    height: 70px;
    width: 100%;
    /* background-color: #0044ff; */
    background: linear-gradient(-45deg,  #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 5s ease infinite;

    display: flex;
    justify-content: start;
    gap: 10px;
    padding: 5px 10px 5px 10px;
    color: white;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


.header-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.header-txt > p {
    color: #444444;
}

.chat-content {
    padding: 10px;
    height: 280px;
    overflow-x: scroll;
}

.bot {
    background-color: #e0e8ef;
    width: 75%;
    border-radius: 0px 20px 20px 20px;
    padding: 7px;
    margin-bottom: 5px;
}

.user {
    color: white;
    /* background-color: #0044ff; */
    background: linear-gradient(-45deg,  #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 5s ease infinite;
    width: 75%;
    border-radius: 20px 20px 0px 20px;
    padding: 7px;
    margin-left: auto;
    margin-bottom: 5px;
}

.chat-send-wrapper {
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    padding: 5px;
    box-shadow: 0px -4px 3px rgba(0,0,0,0.08);

}

.chat-send-wrapper > input {
    border-radius: 20px;
    background-color: #ffffff;
    border: none;
    padding: 2px;
}

.chat-send-wrapper > button {
    border-radius: 99px;
    width: 40px;
    height: 40px;
    background-color: #24cea9;
    border: none;
    padding: 2px;
    color: white;

    cursor: pointer;
}

.chat-send-wrapper > button:hover {
    transition: background-color 0.2s ease-in-out;
    background-color: #1fad8e;
}

.send-img {
    width: 75%;
    height: 75%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -60%);
}

input:focus {
    outline: none !important;
}
.chat-wrapper {
    position: absolute;
    border-radius: 20px;
    background-color: #ffffff;
    bottom: 0;
    right: 10px;
}

.nav {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 50px;

    display: flex;
    justify-content: space-between;  
    padding: 5px 40% 5px 40%;
}

.nav > p{
    color: white;
    font-size: 1.5em;
    line-height: 1.33333;
    font-family: "SF Pro Text","Myriad Set Pro","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
}

.nav > h1:hover {
    cursor: pointer;
}

.nav > button {
    font-size: 12px;
    line-height: 3.66667;
    font-weight: 400;
    letter-spacing: -.01em;
    font-family: "SF Pro Text","Myriad Set Pro","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
    color: #d6d6d6;
    position: relative;
    z-index: 1;
    display: inline-block;
    background: none;
    border: none;
}

.nav > button:hover {
    cursor: pointer;
    color: #fff;
    transition: 0.2s;
}

.nav > img {
    filter:         drop-shadow(1px 1px 1px #74747477)
                    drop-shadow(-1px -1px 1px #74747477)
                    drop-shadow(1px -1px 1px #74747477)
                    drop-shadow(-1px 1px 1px #74747477); 
}

.nav > img:hover {
    cursor: pointer;
    transform: scale(1.1);
    transition: 0.2s;
}

@media screen and (max-width: 768px) {
    .nav {
        padding: 5px 20% 5px 20%;
    }
    .chat-wrapper {
        position: inherit;
        margin-top: 30px;
    }
    .bottom-container
    {
        padding: 0;
    }
    .bottom-componenents {
        width: 80%;
        flex-wrap: wrap;
        flex-basis: 100%;
    }
    
}