html, body {
  max-width: 1440px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  -webkit-box-shadow: 1px 1px 24px grey;
          box-shadow: 1px 1px 24px grey;
}

a {
  color: black;
  text-decoration: none;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
a:hover {
  color: red;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

ul {
  margin: 0;
}

body {
  position: relative;
}

@media (max-width: 768px) {
  .burger {
    width: 70px;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    padding-right: 15px;
  }
  .burger__line {
    width: 100%;
    height: 15%;
    background: grey;
    border-radius: 25px;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
  }
  .line-1 {
    -webkit-transform-origin: 10%;
            transform-origin: 10%;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .line-2 {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
  .line-3 {
    -webkit-transform-origin: 10%;
            transform-origin: 10%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .burger__content {
    padding: 110px 0;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: grey;
    opacity: 0.8;
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
  }
  .burger__content .header__menu {
    height: 100%;
  }
  .burger__content .header__menu ul {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .burger__content .header__menu ul li {
    font-size: 45px;
  }
}
@media (min-width: 768px) {
  .burger__content > .header__menu {
    display: none;
  }
}

._active {
  left: 0;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
}

.header__top {
  position: sticky;
  top: 0;
  left: 0;
  min-height: 110px;
  background: white;
  max-width: 1440px;
  z-index: 15;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 1px 1px 24px grey;
          box-shadow: 1px 1px 24px grey;
}

.header__logo {
  font-family: Oswald, sans-serif;
  font-size: 36px;
  font-weight: 500;
  padding: 28px 15px 28px 80px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media (max-width: 992px) {
  .header__logo {
    padding: 0 15px;
    text-align: center;
  }
}

.header__menu {
  font-family: Oswald, sans-serif;
  font-size: 24px;
  font-weight: 300;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

@media (max-width: 768px) {
  .header__top .header__menu {
    display: none;
  }
}

.header__top .header__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__menu li {
  list-style: none;
  padding: 37px 0;
  margin: 0 46px 0 0;
}

.header__top .header__menu li:last-child {
  margin: 0 80px 0 0;
}
@media (max-width: 992px) {
  .header__top .header__menu li:last-child {
    margin: 0 40px 0 0;
  }
}

.header__center {
  padding: 110px 0 0 0;
  position: relative;
}

.header__center-text {
  z-index: 5;
  position: relative;
  text-align: center;
  font-family: Oswald, sans-serif;
  font-size: 60px;
  font-weight: 700;
  padding: 19% 0;
  color: white;
}
.header__center-text:after {
  content: "";
  position: absolute;
  top: 58%;
  left: 50%;
  width: 80px;
  height: 10px;
  background: #817070;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
@media (max-width: 992px) {
  .header__center-text {
    font-size: 25px;
  }
}

.header__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.title {
  text-align: center;
  padding: 60px 0;
  font-family: Oswald, sans-serif;
  font-size: 36px;
  font-weight: 500;
}

.story__contain {
  margin: 0 80px;
  padding: 0 0 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 992px) {
  .story__contain {
    display: block;
    margin: 0 10px;
  }
}

.story__contain-img {
  max-width: 600px;
}
@media (max-width: 992px) {
  .story__contain-img {
    max-width: none;
    width: 100%;
  }
}

.story__contain-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.story__contain-text {
  max-width: 600px;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Oswald, sans-serif;
  font-size: 20px;
  font-weight: 300;
}
@media (max-width: 992px) {
  .story__contain-text {
    padding: 0 15px;
  }
}

.blog {
  background: #EFEFEF;
  padding: 0 100px 65px;
}
@media (max-width: 992px) {
  .blog {
    padding: 0 15px 40px;
  }
}
@media (max-width: 768px) {
  .blog {
    padding: 0 15px 40px;
  }
}

.blog__container {
  margin: 0 -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog__container-card {
  -webkit-box-shadow: 1px 1px 10px grey;
          box-shadow: 1px 1px 10px grey;
  background: white;
  width: 365px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  margin: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .blog__container-card {
    margin: 5px auto;
    width: 100%;
  }
}

.card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 25px 0;
  font-family: Oswald, sans-serif;
  font-size: 24px;
  font-weight: 400;
  max-height: 35px;
}

.card-img {
  width: 325px;
  max-height: 216px;
}
@media (max-width: 768px) {
  .card-img {
    width: 100%;
  }
}

.card-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.card-text {
  padding: 25px 0 0 0;
  font-family: Oswald, sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.subscribe {
  background: #817070;
}

.subscribe__box {
  text-align: center;
}

.subscribe__title {
  padding: 60px 0 0 0;
  color: white;
}

.subscribe__enter {
  margin: 28px 0 0 0;
}

.subscribe__enter input {
  max-width: 300px;
  height: 55px;
  border: 2px solid white;
  background: #817070;
  text-align: center;
  font-family: Oswald, sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: white;
}

.subscribe__enter input::-webkit-input-placeholder {
  font-family: Oswald, sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: white;
}

.subscribe__enter input::-moz-placeholder {
  font-family: Oswald, sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: white;
}

.subscribe__enter input:-ms-input-placeholder {
  font-family: Oswald, sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: white;
}

.subscribe__enter input::-ms-input-placeholder {
  font-family: Oswald, sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: white;
}

.subscribe__enter input::placeholder {
  font-family: Oswald, sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: white;
}

.subscribe__submit {
  padding: 28px 0 58px 0;
}

.subscribe__enter input:focus {
  -webkit-box-shadow: 1px 1px 10px white;
          box-shadow: 1px 1px 10px white;
  outline: none;
}

.subscribe__submit button {
  width: 129px;
  height: 55px;
  color: #817070;
  font-family: Oswald, sans-serif;
  font-size: 20px;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.subscribe__submit button:hover {
  -webkit-box-shadow: 1px 1px 10px white;
          box-shadow: 1px 1px 10px white;
}

.copyrigh {
  text-align: center;
  font-family: Oswald, sans-serif;
  font-size: 20px;
  font-weight: 300;
  padding: 30px 0 15px 0;
}
/*# sourceMappingURL=style.css.map */