* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
}

input {
    outline: none;
    border: none;
}

button {
    outline: none !important;
    border: none;
}

.container-100-100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #eee;
}

.wrap-100 {
    width: 1170px;
    background: #fff;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row-reverse;
}

.left-part {
    width: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.left-part::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.right-part {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    padding: 225px 100px 225px 100px;
    top: 0;
}

.right-part-title {
    font-size: 20px;
    color: #555555;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    width: 100%;
    display: block;
}

.wrap-full-width {
    width: 100%;
    position: relative;
    border: 1px solid #e6e6e6;
}

.first-wrap-full-width,
.second-wrap-full-width {
    width: 50%;
}

.second-wrap-full-width {
    border-left: none;
}

.full-width {
    display: block;
    width: 100%;
    line-height: 1.2;
    padding: 0 25px;
    height: 50px;
}

.focus-full-width {
    position: absolute;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    pointer-events: none;
    border: 1px solid #f5cf00;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scaleX(1.1) scaleY(1.5);
    -moz-transform: scaleX(1.1) scaleY(1.5);
    -ms-transform: scaleX(1.1) scaleY(1.5);
    -o-transform: scaleX(1.1) scaleY(1.5);
    transform: scaleX(1.1) scaleY(1.5);
}

.full-width:focus + .focus-full-width {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.container-right-part-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.right-part-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    border-radius: 3px;
    background: #f5cf00;
    font-size: 12px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.right-part-btn:hover {
    background: #333333;
    cursor: pointer;
}

@media (max-width: 992px) {
    .right-part {
        width: 50%;
        padding-left: 30px;
        padding-right: 30px;
    }

    .left-part {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .right-part {
        width: 100%;
    }

    .left-part {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .right-part {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 150px;
    }

    .first-wrap-full-width,
    .second-wrap-full-width {
        width: 100%;
    }

    .second-wrap-full-width {
        border-left: 1px solid #e6e6e6;
    }
}