/* FOOTER */

footer {
    color: #FFF;
    background: #242428;
}

footer .inner {
    max-width: calc(1100px + 5vw);
    box-sizing: border-box;
    padding: 0 5vw;
}

.footerTopinner {
    background: #242428;
    padding: 35px 0;
    margin-bottom: -1px;
}

.footerBottom {
    background: #28282c;
    padding: 50px 0 50px;
}

.footerTopinner .footerWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.footerBottom .footerWrap {
    display: flex;
    justify-content: space-between;
}

.footerBottom .footerBlock {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}

.footerBlock {
    margin: 0 1% 0 0;
    width: 23%;
}

.footerBlock:last-child {
    margin-right: 0;
}

.footerTopSocial {
    display: none;
}

/* .footerBottom .footerCompany {
    width: 20%;
} */

.footerMenu2 {
    -webkit-transform: translateX(.55vw);
    transform: translateX(.55vw);
}

.footerSlogan {
    -webkit-transform: translateX(-2vw);
    transform: translateX(-2vw);
}

.footerLogo {
    display: flex;
    align-items: center;
}

.footerLogo-logoImg {
    /* width: 11.2vw;
    transform: translateY(10px); */
    width: 15vw;
    transform: translateY(3px);
}

.footerLogo-logoImg img {
    width: 100%;
}

.footerLogo-logoTxt {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.footerStext {
    font-size: 12px;
    line-height: 1;
}

.footerMtext {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.footerBtext {
    font-weight: 600;
    font-size: 24px;
}

.footerCompany_content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fbTitle {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 35px;
}

.fbText {
    font-size: 12px;
    line-height: 1.6;
    opacity: .8;
    margin-bottom: 3.2vw;
}

.fbText p {
    margin-bottom: 10px;
}

.fbADD-logo img {
    display: block;
    height: 45px;
    line-height: 0;
    margin-top: -2px;
}

.fbADD-logo a {
    display: flex;
    align-items: center;
}

.fbADD-logoText {
    color: #FFF;
    margin-left: 15px;
}

.fbADD-logoText span {
    display: block;
    font-size: 11px;
    line-height: 1.4;
    opacity: .8;
}

.fbADDmobile {
    display: none;
}

.footerMenu li {
    font-size: 14px;
    line-height: 160%;
    margin-bottom: 29px;
    opacity: .8;
}

.footerMenu li:last-child {
    margin-bottom: 0;
}

.footerContscts-block_title {
    font-size: 14px;
    font-weight: 600;
}

.footerContscts-block_text {
    font-size: 13px;
    line-height: 1.6;
    opacity: .8;
}

.footerContscts-block {
    margin-bottom: 21px;
}

.footerBottom .fcb-social {
    display: flex;
    margin-bottom: 0;
}

.fcb-social a {
    width: 40px;
    height: 40px;
    background: #242428;
    border-radius: 50px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fcb-social a img {
    display: block;
    line-height: 0;
    max-width: 15px;
}

@media screen and (min-width: 1900px) {
    footer .inner {
        padding: 0 20px;
    }

    .footerLogo-logoTxt {
        font-size: 14px;
    }

    .footerBtext {
        font-size: 24px;
    }

    .footerStext {
        font-size: 12px;
    }

    .footerLogo-logoImg {
        width: 215px;
    }
}

@media screen and (max-width: 1050px) {
    .footerLogo-logoTxt {
        font-size: 9px;
    }

    .footerBtext {
        font-size: 16px;
    }

    .footerStext {
        font-size: 10px;
    }
}

@media screen and (max-width: 980px) {
    .sitewrap {
        padding-bottom: 190px;
    }

    footer {
        margin-top: -190px;
        height: 190px;
        background: #242428;
    }

    .footerLogo-logoTxt,
    .footerMail,
    .footerTime,
    .footerStext {
        display: none;
    }

    .footerLogo-logoImg {
        width: 145px;
        margin-bottom: 25px;
    }

    footer .inner {
        padding: 0 5%;
    }

    .footerBottom,
    .footerBlock {
        display: none;
    }

    .footerLogo,
    .footerTopSocial {
        display: flex;
        width: auto;
    }

    .fcb-social a {
        background: #444348;
    }

    .fbADDmobile {
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .footerTopinner .footerWrap {
        flex-direction: column;
    }

    .fbADDmobile {
        margin-top: 35px;
    }

    footer {
        margin-top: -350px;
        height: 350px;
    }

    .sitewrap {
        padding-bottom: 350px;
    }
}

@media screen and (max-width: 500px) {
    .footerTopSocial {
        margin-top: 10px;
    }
}


/* VIDEO FRAME */

.videoFrame {
    position: fixed;
    z-index: 8;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 24, 27, 0.92);
    transition: all .5s ease;
    visibility: hidden;
    opacity: 0;
}

.videoFrame.active {
    visibility: visible;
    opacity: 1;
}

.videoFrameContent {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 80vw;
    height: 80vh;
    border-radius: 5px;
    background: #323137;
    box-shadow: 10px 35px 50px rgba(50, 49, 55, 0.6);
}

.videoFrame .close-form {
    position: absolute;
    z-index: 5;
    top: -3%;
    right: -4%;
    width: 20px;
    height: 20px;
}

@media screen and (min-width: 1300px) {
    .videoFrame .close-form {
        right: -2%;
    }
}

.vf-wrap {
    width: 100%;
    height: 100%;
}

.vf-wrap video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 1060px) {

    .videoFrameContent {
        width: 90%;
        height: auto;
    }
}

@media screen and (max-width: 980px) {

    .videoFrameContent iframe {
        height: 50vh;
        display: block;
        line-height: 0;
    }

    .videoFrameContent {
        margin-top: 30px;
    }

    .videoFrameContent {
        max-height: 80%;
    }
}


@media screen and (max-width: 1060px) and (orientation: portrait) {
    .videoFrameContent iframe {
        height: 50.99vw;
    }

    .videoFrame .close-form {
        top: -11%;
        right: -5%;
    }
}

.footerCopy {
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.6;
    color: #a0a0a0;
    padding: 30px 0;
    text-align: center;
}

@media screen and (max-width: 980px) {
    .footerCopy br {
        display: none;
    }

    .footerCopy {
        padding-top: 0px;
        font-size: 11px;
        font-weight: 300;
    }
}
