@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700;800&display=swap');

:root{
    --overlay-color: #0a0a0ad2;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

html, body {
    height: 100%;
}

.main {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/fareeda-jwellery.jpg);
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
}
.navbar{
    display: flex;
    justify-content: center;
    margin-left: 175px;
    margin-bottom: 5px;
}
.logo {
    width: 100%;
}
.logo img {
    max-width: 120px;
}

.chat-box {
    bottom: 0;
    position: absolute;
    right: 0;
    background: #6161610a;
    border-radius: 10px 0 0 0;
    padding: 25px;
}
.touch {
    display: flex;
    justify-content: center;
    margin-bottom:15px;
    margin-left: 115px;
}
.social {
    display: flex;
    justify-content: center;
    align-items: center;
}
ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.social li {
    list-style: none;
    /* width:40px;
    height:40px; */
    /* line-height:40px; */
    border-radius: 50%;
    text-align: center;
    border: 1px #fff solid;
    margin-right:10px;
    background: #fff;
}
.social li a{
    display: inline-block;
    /* filter: invert(1); */
    margin-right:0px;
    transform: scale(0.5);
    transition: 0.5s;
}
.social li a:hover{
    transform: scale(0.5) translateY(-15px);
}
.social li a img {
    width:45px;
    height:45px;
}

.social h3 {
    color: #fff;
    padding-top: 13px;
    margin-right: 15px;
    font-size: 18px;
    font-weight: 600;
}

.btn-light {
    color: #ffffff;
    background-color: #eb4228;
    border-color: #eb4228;
    font-weight: 700;
}
.btn-light:hover {
    color: #ffffff;
    background-color: #0000001c;
    border-color: #0000001c;
}
.btn-light.focus, .btn-light:focus {
    color: #ffffff;
    background-color: #0000001c;
    border-color: #0000001c;
    box-shadow: 0 0 0 0.2rem rgb(216 217 219 / 50%);
}


@media (max-width:767px) {

    .navbar {
        display: flex;
        justify-content: center;
        margin-left: 148px;
        margin-bottom: 5px;
    }
    .logo {
        width: 100%;
    }

    .social h3 {
        padding-top: 9px;
        margin-right: 7px;
        font-size: 13px;
    }
    .social li a img {
        width:35px;
        height:35px;
    }
    .social li {
        margin-right: 3px;
    }
    .touch {
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
        margin-left: 75px;
    }
    .chat-box {
        border-radius: 10px 10px 0 0;
        padding: 25px 0 25px 0;
    }

}

