.constractors {
    background-image: url("../img/contracting.png");
    background-color: var(--color-primary);
    height: 55vh;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.constractors .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* border: 2px solid var(--static-white); */
}

.constractors .container h1 {
    color: var(--color-default);
    color: #fff;
    font-weight: 3rem;
    width: 70%;
    text-align: center;
    font-weight: bold;
    /* text-shadow: 1px 1px 0px #fff; */

}

.constractors .container p {
    font-size: 1.4rem;
    color: var(--color-default);
    color: #fff;
    width: 400px;
    text-align: center;
    font-weight: 500;
}

.constractors .container a {
    background-color: #fff;
    color: var(--color-primary);
    width: 150px;
    border-radius: 30px !important;
    font-weight: bold !important;
}


@media (max-width:767px) {
    .constractors {
        background-image: none;

        height: 45vh;
  
    }

    .constractors .container h1 {
 
        font-weight: 2.5rem;
     
        /* text-shadow: 1px 1px 0px #fff; */

    }

    .constractors .container p {
        font-size: 1.1rem;
    
        width: 90%;
    
        
    }

}