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

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

/*  @font-face {
    font-family: 'Aero';
    src: local('At Hauss Aero Retina'), local('At-Hauss-Aero-Retina'),
        url('fonts/AtHaussAero-Retina.woff2') format('woff2'),
        url('fonts/AtHaussAero-Retina.woff') format('woff'),
        url('fonts/AtHaussAero-Retina.ttf') format('truetype');
    font-weight: 350;
    font-style: normal;
  }

  @font-face {
    font-family: 'Aero';
    src: local('At Hauss Aero Regular'), local('At-Hauss-Aero-Regular'),
        url('fonts/AtHaussAero-Regular.woff2') format('woff2'),
        url('fonts/AtHaussAero-Regular.woff') format('woff'),
        url('fonts/AtHaussAero-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }*/

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

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

  a {
    text-decoration: none !important;
  }

  a:hover {
  }

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

  button {
    cursor: pointer;
  }


  h1, h2, h3, h4, h6 {

  }

  .container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .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;
  }
  
  .flexed--bottom {
    align-items: flex-end;
  }

  .flexed--center {
    justify-content: center;
  }

  .rel {
    position: relative;
  }

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

  header .menu li {
      display: block;
  }