/* body */
body {
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    background-position-x: 50%;
    background-color: #000;
    background-repeat: no-repeat;
}

/* mainbody */
.mainbody {
    width: 1200px;
    max-width: 90%;
    padding-top: 15px;
    margin: 0 auto;
    background: transparent;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* header */
.header {
    padding: 0;
    padding-top: 10px;
    margin: 0 auto;
    width: 100%;
    background-color: #fff;
    text-align: center;
}

.header img {
    width: 90%;
}

.header-mobile {
    padding-top: 10px;
    text-align: center;
    display: none;
}

.header-mobile img {
    max-width: 80%;
}

/* menu */
.navbar {
    width: 100%;
    background-color: #fff;
    border-top: solid 3px black;
    border-bottom: solid 3px black;
}

/* desktop menu */
ul {
    width: 100%;
    margin: 0;
    padding: 0;
}

ul li {
    display: inline-flex;
    list-style: none;
    margin: 10px;
    transition: 0.5s;
}

ul li a {
    text-decoration: none;
    padding: 5px;
    font-size: 20px;
    font-family: sans-serif;
    color: #000;
    text-transform: uppercase;
    transition: 0.5s;
}

ul:hover li a {
    transform: scale(1.5);
    opacity: .5;
    filter: blur(5px);
}

ul li a:hover {
    transform: scale(2);
    opacity: 1;
    filter: blur(0);
    color: #fff;
}

ul li a:hover:before {
    transition: transform 0.5s;
    transform-origin: left;
    transform: scaleX(1);
}

ul li a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transition: 0.5s;
    transform-origin: right;
    transform: scaleX(0);
    z-index: -1;
}

.active {
    transform: scale(1.3);
    opacity: 1;
    background: #000;
    color: #fff;
}

/* mobile menu */
.open-slide {
    display: none;
}

.side-nav {
    display: none;
}

/* Content */
.content {
    width: 100%;
    margin-top: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #fff;
}

.content2 {
    display: flex;
    width: 100%;
    padding-bottom: 25px;
}

.block-left {
    width: 45%;
    margin-left: 2.5%;
    margin-right: 2.5%;
}

.block-right {
    flex: 1;
    margin-left: 2.5%;
    margin-right: 2.5%;
}

.center-text {
    width: 100%;
    text-align: center;
}

/* Contact Form */
form {
	width: 80%;
}

.input-container {
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
  }

.icon {
    padding: 10px;
    background: #000;
    color: white;
    width: 20px;
}

.icon1 {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 55px;
    background: #000;
    color: white;
    width: 20px;
}

.input-field {
    width: 100%;
    padding: 10px;
}

textarea {
    height:110px;
    width: 100%;
    padding: 10px;
    outline: none;
}

.submit {
    width:127px;
    height:38px;
    border: 2px solid #000;
    border-radius: 5px;
    margin-top:10px;
    cursor:pointer;
    font-weight: bold;
    background: #000;
    color: #fff;
}

.submit:hover {
    transform: scale(1.3);
    opacity: 1;
    filter: blur(0);
    background-color: #000;
    color: #fff;
}

/* Footer */
.footer {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    padding:  5px 0 5px 0;
    background-color: #fff;
	color: #000;
    text-align: center;
    font-size: 1vw;
    font-weight: bold;
}