
/* Секция с техникой */

.machines h3 {
    font-size: 30px;
    margin-top: 30px;
} 

.projects .see-all, .email .block button {
    background: #000;
    color: #fff;
    border-radius: 5px;
    padding: 12px 23px;
    float: right;
    display: block;
    transition: all 300ms ease;
}

.projects .see-all:hover, .email .block button:hover {
    transform: scale(1.03);
}

.big-text {
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    width: 900px;
}

/* Секция с изображением */
.features {
    background: url('/img/feauters_back.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 1.5rem 0px;
    position: relative;
}

.features h3 {
    font-size: 30px;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 1px 1px #000;
}

.services-item {
    position: relative;
    display: flex;
    justify-content: space-around;
}

.services-item-block {
    display: grid;
    align-items: center;
    transition: all 300ms ease;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 10px;
    width: 30%;
    margin: 0rem 0.15rem;
}

.services-item img {
    width: 25rem;
    height: 20rem;
    border-radius: 10px;
    object-fit: cover;
}

.services-item h3 {
    font-size: 25px;
    text-align: center;
    word-wrap: break-word;
    word-break: normal;
    white-space: normal;
    margin: .5rem 0rem;
}

.services-item p {
    text-align: center;
    text-shadow: 1px 1px black;
}

.services-item-block:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-services-more {
    position: relative;
    padding: 10px 20px;
    background-color: #fb8b14;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0px 0px;
    outline: none;
}

.projects {
    padding: 30px 0px;
}

.projects h3 {
    font-size: 30px;
    text-align: center;
    text-shadow: 1px 1px #000;
}

.projects p {
    margin: 10px 0px 20px 0px;
    text-align: center;
    text-shadow: 1px 1px #000;
}

.projects .shop-sundry {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
}

.projects .shop-sundry img {
    border-radius: 10px;
    width: 15rem;
    height: 10rem;
}

.shop-block {
    display: block;
    transition: all 300ms ease;
    box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    opacity: 0.5;
    transform: scale(1.001);
}

.shop-block:hover {
    transform: scale(1.005);
    opacity: 1; 
}

.shop-item {
    position: relative;
}

.shop-item img:hover {
    box-shadow: 0px 0px 10px 0px white;
}

.shop-name {
    display: block;
    text-align: center;
    margin: 10px;
    border-radius: 1rem;
    padding: 5px;
    text-shadow: 1px 1px #000;
}

.discount-overlay-shop-block {
    position: absolute;
    border-radius: 10px 0px;
    background: rgba(0, 128, 0, 0.8);
    text-align: center;
    font-size: 14px;
    top: 0;
}

.discount-overlay-shop-block p {
    margin: 7px;
    text-shadow: none;
}

.price-overlay-shop-block {
    position: absolute;
    border-radius: 0px 10px 0px;
    background: rgba(255, 213, 0, 1);
    text-align: center;
    bottom: 3.05rem;
    padding: 5px;
}

.price-overlay-shop-block p {
    margin: 0px;
    color: black;
    text-shadow: none;
}

.projects .see-all {
    float: none;
    width: 100px;
    background: #DC7000;
    margin: 0 auto;
    text-align: center;
    font-size: 15px;
    outline: none;
}

/* Нижняя часть */
.email {
    padding-bottom: 120px;
}

.email h3 {
    margin-top: 30px;
    font-size: 30px;
}

.email .block {
    background: #1c1c1c9e;
    margin-top: 30px;
    border-radius: 15px;
    padding: 40px 3%;
    width: 94%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.email .block h4 {
    font-size: 30px;
    font-weight: 500;
}

.email .block p {
    width: 500px;
}

.email .block input {
    background: #fff;
    outline: none;
    border: 0;
    border-radius: 5px;
    width: 380px;
    padding: 18px 30px;
    position: relative;
    right: -120px;
    padding-right: 150px;
}

.email .block input::placeholder {
    color: #898989;
}

.email .block button {
    background: #DC7000;
    cursor: pointer;
    border: 0;
    position: relative;
    top: 6px;
    right: 13px;
    outline: none;
}