*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    scroll-behavior: smooth;
    font-family: "Albert Sans", sans-serif;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #001819;
  border-radius: 0;
}

body::-webkit-scrollbar-thumb {
  background-color: #79b900;
  border-radius: 0;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #79b900;
  cursor: pointer;
}

footer{
    width: 100%;
    background-image: url(../images/footer-bg.jpg);
    padding: 80px 0 10px 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer{
    width: 70%;
    margin: auto;
}

.footer-social{
    background-image: url(../images/footer-social.jpg);
    background-size: cover;
    width: 100%;
    padding: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-social h1{
    color: #fff;
    font-size: 40px;
}

.footer-social-media{
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-media h2{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.footer-social-media-buttons{
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-media-buttons button{
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 50%;
    width: 35px;
    font-size: 14px;
    height: 35px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}


.footer-social-media-buttons button:hover{
    background-color: #fff;
}

.footer-social-media-buttons button:hover i{
    color: #79b900;
}

.footer-boxs{
    display: flex;
    justify-content: space-between;
    padding: 50px 0;
}

.footer-box{
    display: flex;
    flex-direction: column;
}

.footer-box img{
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.footer-box p{
    color: #fff;
    margin: 18px 0 5px 0;
}

.footer-box p i{
    color: #79b900;
}

.footer-box h3{
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 18px;
}

.footer-box a{
    color: #868681;
    font-size: 17px;
    text-decoration: none;
    padding-bottom: 12px;
    transition: all 0.2s ease-in-out;
}

.footer-box a:hover{
    color: #79b900;
}

.footer-box a:hover i{
    color: #868681;
}

.footer-box span{
    color: gray;
    margin-bottom: 18px;
}

.footer-box {
  position: relative;
  z-index: 10;
}

.footer-box input {
    position: relative;
    z-index: 11;
    border: 1px solid #79b900;
    outline: none;
    padding: 8px 24px;
    background-color: transparent;
    width: 100%;
    height: 60px;
    border-radius: 30px;
    margin-bottom: 18px;
    color: #fff; /* që teksti të shihet mbi bg */
}

.footer-box input::placeholder {
    color: #fff;
    font-size: 14px;
}

.footer-box button {
    position: relative;
    z-index: 11;
    background-color: #79b900;
    padding: 8px 2%;
    border-radius: 30px;
    height: 50px;
    border: none;
    color: #fff;
    font-size: 15px;
    width: 100%;
    cursor: pointer;
}

.footer-box button i {
    font-size: 12px;
}

.footer-down{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.footer-down p{
    color: white;
    font-size: 14px;
}

.footer-down span{
    color: #79b900;
    font-size: 14px;
}

@media screen and (max-width:768px) {
    
    .footer{
        width: 90%;
        margin: auto;
    }

    .footer-social{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
    }

    .footer-social h1{
        font-size: 25px;
        margin-bottom: 20px;
    }

    .footer-social-media h2{
        font-weight: 400;
        font-size: 17px;
    }

    .footer-boxs{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .footer-box{
        width: 100%;
    }

    .footer-down{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .footer-down p{
        font-size: 10px;
    }

    .footer-down span{
        font-size: 10px;
    }

    

}

.footer-down span{
    padding-left: 3px;
}