/*
 Theme Name:   Theme from Denis
 Description:  Wordpress Theme From Denis
 Author:       Denis R
 Version: 1.0
*/

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

  html,
  body {
    font-family: "Open Sans";
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    line-height: normal;
    min-height: 100vh;
    overflow-x: hidden;
    background: #141615;
  }

  body {
    position: relative;
    overflow-y: hidden;
  }

  a {
    text-decoration: none !important;
  }

  a:hover {
  }

  img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
  }

  button {
    cursor: pointer;
  }


  h1, h2, h3, h4, h6 {

  }

  p {
    margin-bottom: 10px;
  }

  .flexed {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
  }

  .flexed--between {
      justify-content: space-between;
  }

  .flexed--around {
      justify-content: space-around;
  }

  .flexed--top {
      align-items: flex-start;
  }

  .container {
      max-width: 1366px;
      margin: 0 auto;
      padding: 40px 10px;
  }

  .popup-menu-opener {
      position: relative;
      width: 40px;
      height: 18px;
      cursor: pointer;
  }

  .popup-menu-opener:after, .popup-menu-opener:before {
      position: absolute;
      top: 0;
      background: #fff;
      width: 100%;
      height: 5px;
      transition: all 0.2s linear 0s;
      content: '';
  }

  .popup-menu-opener:before {
      top: inherit;
      bottom: 0;
  }

  .popup-menu-opener.active:after {
      transform: rotate(45deg);
      top: 50%;
  }

  .popup-menu-opener.active:before {
      transform: rotate(-45deg);
      top: 50%;
  }

  ul#menu-main-menu {
      display: flex;
  }

  ul#menu-main-menu li {
      display: block;
      margin-right: 30px;
  }

  ul#menu-main-menu li a {
      color: #fff;
      font-size: 24px;
      text-transform: uppercase;
  }

  .home-logo {
      max-width: 700px;
      margin-left: auto;
      padding-right: 20px;
      padding-top: calc(25vh);
  }

  .nice-border {
    border-radius: 6% 7% 7% 6% / 9% 9% 10% 9% ;
  }