:root {
  --base-font-color: #fff;
  --menu-hover-color: #ff9061;
}

a {
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  font-family: 'Roboto', sans-serif;
}

a:hover {
  border-bottom: 1px solid var(--base-font-color);
}

html, body {
  height: 100%;
  margin: 0;
}

img {
  max-width: 100%;
}

.main-wrap {
  height: 100%;
  background-image: url("img/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.main-wrap .page {
  height: 100%;
  overflow: hidden;
}
.main-wrap .page .header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 40px;
  padding-bottom: 25px;
}
@media (max-width: 768px) {
  .main-wrap .page .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.main-wrap .page .header .logo-section {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
}
@media (max-width: 768px) {
  .main-wrap .page .header .logo-section {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.main-wrap .page .header .logo-section .logo {
  padding-left: 40px;
  max-width: 160px;
}
.main-wrap .page .header .logo-section .logo a {
  border: none;
}
@media (max-width: 768px) {
  .main-wrap .page .header .logo-section .logo {
    padding: 20px;
  }
}
.main-wrap .page .header .menu-section {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80%;
          flex: 0 0 80%;
}
@media (max-width: 768px) {
  .main-wrap .page .header .menu-section {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.main-wrap .page .header .menu-section nav {
  text-align: right;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .main-wrap .page .header .menu-section nav {
    padding: 20px;
    text-align: center;
  }
}
.main-wrap .page .header .menu-section nav .item {
  display: inline-block;
  padding: 10px;
}
.main-wrap .page .header .menu-section nav .item a {
  color: var(--base-font-color);
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: none;
}
.main-wrap .page .header .menu-section nav .item a:hover {
  color: var(--menu-hover-color);
}
.main-wrap .page .header .menu-section nav .item .facebook {
  padding-left: 30px;
}
.main-wrap .page .middle {
  padding: 20px;
  height: calc(100% - 150px);
}
.main-wrap .page .middle .middle-links {
  text-align: center;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.main-wrap .page .middle .middle-links .link-wrap {
  display: inline-block;
  padding: 20px;
}
.main-wrap .page .middle .middle-links .link-wrap .link {
  display: inline-block;
  font-size: 5vw;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--base-font-color);
}
.main-wrap .page .middle .middle-links .link-wrap .link a {
  color: var(--base-font-color);
  text-decoration: none;
}
.main-wrap .page .middle .middle-links .link-wrap .text {
  color: var(--base-font-color);
  font-size: 25px;
  max-width: 500px;
  margin: auto;
  padding-top: 10px;
}
.main-wrap .page .middle .middle-links .link-wrap .text p {
  margin: 0;
}
.main-wrap .page .footer {
  padding: 20px;
}
.main-wrap .page .footer .info-wrap {
  text-align: center;
}
.main-wrap .page .footer .info-wrap address {
  color: var(--base-font-color);
  font-size: 25px;
}
.main-wrap .page .footer .phone {
  font-size: 25px;
  color: var(--base-font-color);
}
.main-wrap .page .footer .phone a {
  color: var(--base-font-color);
  text-decoration: none;
}
.main-wrap.items .page {
  overflow: auto;
}
.main-wrap.items .page .header {
  position: relative;
}
.main-wrap.items .page .middle {
  height: auto;
  background: var(--base-font-color);
}
.main-wrap.items .page .middle .box-wrap .box {
  float: left;
  width: 50%;
  text-align: center;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.main-wrap.items .page .middle .box-wrap .box img {
  width: 100%;
}
.main-wrap.items .page .middle .box-wrap .box .title {
  font-size: 35px;
  padding: 30px 10px;
}
.main-wrap.items .page .middle .box-wrap .box .text {
  font-size: 20px;
}
.main-wrap.items .page .middle .box-wrap:after {
  display: block;
  content: "";
  clear: both;
}
.main-wrap.home {
  height: auto;
}
.main-wrap.home .page .header {
  position: relative;
}
.main-wrap.home .page .middle .middle-links {
  top: 0;
  -webkit-transform: none;
          transform: none;
}
