.content-blocks{
    margin-top: 40px;
    padding: 12px;
   
    .container{
        display: flex;
            flex-direction: column;
            gap: 16px;
    }
}


.content-blocks img{
    width: 100%;
}
.content-blocks p{
    margin-bottom: 10px;
}

ul{
    list-style: none;
    padding-left: 0;
}
li{
    list-style: none;
 
}
ul li{
    position: static;
}
.list{

    padding-left: 20px;

}
.list li{
    position: relative;
}
.block{
    margin: 0   ;
}
blockquote{
    background: #dddddd;
    border-left: 3px solid #121212;
    padding: 10px 0 10px 10px;
}
@media (min-width: 768px) {
    .content-blocks{
        margin-top: 200px;
        padding: 20px;
      
        .container{
            gap: 24px;
        }
    }
}

/* form  */
.contacts{
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url(../img/4.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    position: relative;
}
.contacts::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* 50% black overlay */
    z-index: 0;
}
.contacts .container{
    position: relative;
    z-index: 1;  
}
.contact-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.form-button {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}



/* footer */
.footer{
    padding-top: 32px;
    padding-bottom: 32px;
    background: #000;
    color: #fff;
}
.footer-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.social-container{
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.footer-logo{
    max-width: 300px;
}
.footer-nav{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    a{
        font-weight: 400;
        color: #7d7d7d;
        font-size: 16px;
    }
    a:hover,a:focus{
        color: #fff;
        
    }
}
.footer p {
    font-weight: 400;
        color: #7d7d7d;
        font-size: 16px;
}
footer hr{
    margin-top: 32px;
    margin-bottom: 32px;
}
@media (min-width: 768px) {
    .footer{
   
    }
}