.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url("images/3.jpg");
    background-size: cover;
    background-position: center;
}

.home .content {
    max-width: 60rem;
}

.home .content h3 {
   font-size:4rem;
   text-transform: uppercase;
   color: #010000;
   filter: drop-shadow(5px 2px 4px #a0a0a3);
   font-weight: 800;
   margin-left: 20px;
   margin-top: 30px;
   margin-bottom: 15px;
   line-height:1.4;
}

.content h2 {
    font-size:4rem;
    color: #fff;
    margin-left: 10px;
    text-align: center;


}

.content .third {
    width: 25rem;
    filter: drop-shadow(7px 3px 6px #000006);
    margin-left:100px;
}

 .content p {
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.8;
    padding: 1rem 0;
    color: #ebdddd;
    margin-left: 20px;
    max-width: 60rem;
    filter: drop-shadow(10px 5px 2px #000009);
}

.content .btn {
    background-color: var(--main-color);
    margin: 20px;
    width: 50px;
    height: 50px;
}

span {
    color: #d3ad7f;
    text-transform: uppercase;
    border-bottom: 2px solid;
    
}

.social-icons {
    gap: 20px;
    margin-left: 20px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    color: var(--main-color);
    margin: 3rem 0.5rem;
    transition: 0.3s ease-in-out;
}

.social-icons a:hover {
    color: var(--text-color);
    background-color: var(--main-color);
    transform: scale(1.2) translateY(-5px);
    box-shadow: 0 0 8px var(--main-color);
}

        /* CHAT bot */

.container {
    position: fixed;
    width: 400px;
    top: 180px;
    right: 50px;
    padding: 20px;
    margin-right: 50px;
    border-radius: 10px;
    box-shadow: 2px 7px 29px 0px #64646f33;
    backdrop-filter: blur(10px);
    background-size: cover;
    background-position: center;
    border: 2px solid black;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.2s ease-in-out;
}

.container.active {
    transform: scaleY(1);
}

.bot {
    cursor: pointer;
}

.title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #eceae8;
}

.chat {
    height: 300px;
    overflow-y: scroll;
    margin: 10px 0;
    border-top: 2px solid rgb(92, 91, 89);
    border-radius: 5px;
    background: url("images/bg.jpg");
    background-size: cover;
    background-position: center;
}

.message {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.message.user {
    justify-content: flex-end;
}

.message.bot {
    justify-content: flex-start;
}

.avatar {
    background: url("images/chat-avter.jpg");
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 10px;
}

.message.user .avatar {
    order: 2;
    background: url("images/avtar.jpg");
    background-size: cover;
}

.message.bot .avatar {
    background-size: cover;
}

.text {
    max-width: 70%;
    padding: 10px;
    border-radius: 10px;
    font-size: 16px;
    color: white;
}

.message.user .text {
    background: #222831;
}

.message.bot .text {
    background-color: antiquewhite;
    color: black;
}

.input {
    position: relative;
    width: 95%;
    padding: 10px;
    border: 2px solid #cbcbce;
    border-radius: 5px;
    outline: none;
    font-size: 20px;
}

.input:focus {
    border-color: aquamarine;
    color: #000000;
}

.button {
    position: absolute;
    border: none;
    padding: 1px;
    backdrop-filter: blur(10px);
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    margin-top: .01rem;
    margin-left: -4.0rem;
    outline: none;
    border-radius: 5%;
}

button i {
    font-size: 4.5rem;
    color: rgb(1, 10, 4);
    border-radius: 20px;
}

button i:hover {
    color: rgb(132, 123, 123);
}

.chat::-webkit-scrollbar {
    width: 10px;
}

.chat::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 10px;
}


.bot img {
    top: 80%;
    right: 4%;
    position: fixed;
    width: 7rem;
    border-radius: 50%;
    transform: .2s;
}

.bot img:hover {
    transform: scale(1.1);
}


@media (max-width: 991px) {
    .home .content {
        max-width: 90%;
    }

    .home .content h3,
    .home .content h2 {
        font-size: 3.5rem;
    }

    .home .content p {
        font-size: 1.5rem;
    }

    .social-icons {
        justify-content: center;
    }

    .home {
        min-height: 100vh;
        display: flex;
        align-items: center;

    }

}

@media (max-width: 768px) {
    .home .content h3,
    .home .content h2 {
        font-size: 3rem;
    }

    .home .content p {
        font-size:1.5rem;
    }

    .social-icons a {
        font-size: 2.5rem;
        padding: 0.8rem;
    }
}

@media (max-width: 450px) {
    .home .content h3,
    .home .content h2 {
        margin-top: -80px;
        font-size: 2.2rem;
    }

    .home .content p {
        font-size: 1.5rem;
    }

    .home .content .btn {
        padding: 8px 16px;
        font-size: 1.5rem;
    }

    .social-icons a {
        font-size: 2.5rem;
        padding: 0.6rem;
    }
}

@media (max-width: 991px) {
    html {
        font-size: 55%;
    }

    #menu-btn {
        display: inline-block;
    }

    .header {
        padding: 1.5rem 2rem;
    }

    .header .navbar {
        display: none;
        position: absolute;
        top: 100%;
        right:0%;
        width: 50%;
        background-color:rgb(220, 190, 131);
        width: 20rem;
        height: calc(55vh - 9.5rem);
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;

    }

    .navbar.active {
        display: block;

    }

    .header .navbar a {
        display: block;
        color: black;
        margin: 1.5rem;
        padding: 1.5rem;
        font-size: 2rem;
    }

    .navbar a:hover {
        color:whitesmoke;
        border-bottom: .5rem solid white;
        padding-bottom: .5rem;
    }


    .header .search-form {
        width: 90%;
        right: 2rem;
    }

}