body {
    min-height: 100vh;
    background: #f9f9f9 url('/images/main.jpg') no-repeat top right;
    background-size: 60vw auto;
    font-family: 'Inter', sans-serif;
    color: rgba(0, 0, 0, .91);
}

h1, h2, h3, h4, h5, h6, div, p {
    color: rgba(0, 0, 0, .91);
}

.form-control {
    background-color: #fafafa;
    border-color: #eee;
}

.nav a {
    position: relative;
    color: rgba(0, 0, 0, .4);
}
.nav a.active, .nav a:hover {
    color: #000;
}
.nav a:before {
    display: block;
    content: '';
    width: 14px;
    height: 12px;
    background: url('/images/mitsu.png') no-repeat center center;
    background-size: contain;
    position: absolute;
    top: -14px;
    left: 50%;
    margin-left: -6px;
    opacity: 0;
    transition: all .2s ease-in;
}
.nav a.active:before, .nav a:hover:before {
    opacity: 1;
}

.ff-2 {
    font-family: 'Montserrat', sans-serif;
}

.text-red {
    color: #F00A11;
}

.fs-7 {
    font-size: 14px;
}

.fs-8 {
    font-size: 12px;
}

.main-wrapper {
    max-width: 40vw;
    min-height: 100vh;
    background: #fff url('/images/wrapper-bg.jpg') no-repeat center center;
    background-size: cover;
    padding-left: 5rem !important;
    padding-right: 5rem !important;
}

@media only screen and (max-width: 991px) {
    .main-wrapper {
        max-width: 100vw;
    }
}

.mitsu-bg {
    background: url('/images/mitsu-text.png') no-repeat left center;
    background-size: contain;
}