/* footer */

.footer {
    position: relative;
    z-index: 2;
    margin-top: 130px;
    background: #151515;
    box-shadow: -8px -8px 15px #181818, 8px 8px 14px #000000;
    padding: 35px 0;
}

.footer-404 {
    position: relative;
    z-index: 2;
    background: #151515;
    box-shadow: -8px -8px 15px #181818, 8px 8px 14px #000000;
    padding: 35px 0;
}

.footer-copy {
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 40px;
}

.footer-text {
    font-size: 14px;
    line-height: 17px;
    color: #A2A2A2;
}

.footer-social {
    width: 220px;
}

.footer-social__item:nth-child(-n+4) {
    margin-bottom: 20px;
}

.footer-social__item {
    margin-right: 20px;
}

.footer-social__item:nth-child(4n) {
    margin-right: 0;
}

a path {
	
  fill:var(--c,#a8a8a8);
  stroke:none;
  pointer-events:all;
  transition:0.5s;
}

.footer-social__item:hover 
	{ --c:#ffffff; }

/* modal */

.modal-open {
    overflow: hidden;
}

.modal-open .modal {
    opacity: 1;
    pointer-events: all;
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    transition: .3s;
    pointer-events: none;
    opacity: 0;
}

.modal-cont {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 605px;
    box-sizing: border-box;
    padding: 44px 54px 59px;
    background: #151515;
    border: 6px solid #838383;
    box-sizing: border-box;
    border-radius: 10px;
}

.modal-title {
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.modal-form input {
    background: #1F1F1F;
    box-shadow: inset 0px 0px 44px -10px #151515;
    border-radius: 8px;
    width: 100%;
    height: 70px;
    outline: none;
    border: 0;
    margin-bottom: 30px;
    box-sizing: border-box;
    padding: 0 20px;
    font-size: 16px;
}

.modal-form textarea {
    background: #1F1F1F;
    box-shadow: inset 0px 0px 44px -10px #151515;
    border-radius: 8px;
    width: 100%;
    height: 145px;
    outline: none;
    border: 0;
    box-sizing: border-box;
    padding: 20px 20px 40px;
    resize: none;
    line-height: 19px;
}

.modal-form textarea::placeholder,
.modal-form input::placeholder {
    color: #7E7E7E;
}

.modal-form .btn {
    width: calc(100% - 168px);
    margin: 0 84px;
    margin-bottom: 20px;
}

.modal-dis {
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #A2A2A2;
}

.modal-got {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #151515;
    z-index: 0;
    border-radius: 10px;
    text-align: center;
    box-sizing: border-box;
    padding-top: 140px;
    z-index: 3;
}

.modal-got__text {
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    margin-top: 50px;
}

.modal-textarea {
    position: relative;
    margin-bottom: 30px;
}

.konf {
    position: absolute;
    bottom: 12px;
    left: 20px;
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 14px;
    color: #7E7E7E;
    pointer-events: none;
}

.konf>svg {
    margin-right: 6px;
}

@media screen and (max-width: 1300px) {
    .footer-col {
        max-width: 50%;
    }
}

@media screen and (max-width: 750px) {
    .footer {
        padding: 40px 0;
        margin-top: 60px;
    }
    .footer-col {
        width: 100%;
        max-width: 100%;
    }
    .footer-copy {
        margin-bottom: 30px;
    }
    .footer-text {
        margin-bottom: 30px;
    }
    /* modal */
    .modal-cont {
        width: 95%;
        padding: 30px 10px 35px;
        border: 0;
    }
    .modal-form .btn {
        width: 100%;
        margin: 0 0 20px 0;
    }
    .modal-title {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 30px;
    }
    .modal-got__text {
        font-size: 22px;
        line-height: 26px;
    }
}