/*reset.min.css*/
* {
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
}

html,
body,
p,
section {
  display: block;
  margin: 0;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  border: 0;
  font-size:100%;
  vertical-align: baseline;
}

body {
  font-family: 'Arial';
}

@font-face {
  font-family: "RockwellStd";
  src:url("../fonts/RockwellStd.woff2") format("woff2"),
      url("../fonts/RockwellStd.woff") format("woff"),
      url("../fonts/RockwellStd.otf") format("opentype");

  font-style:   normal;
  font-weight: 400;
}


.main_header { padding: 20px 0; text-align: center; background-color:#ffb520; }
.main_header img { width: 220px; }

.image_wrapper {
  background-color: #ffb520;
  height: 500px;
  width: 100%;
  overflow: hidden;
}
.image_wrapper img {
  font-family: 'object-fit: cover; object-position: top center;'; /* IE Edge fallback */
  height: 500px;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

@media (max-width:1300px){
  
  .image_wrapper {
    height: auto;
    width: 100%;
  }
  .image_wrapper img {
    height: auto;
    object-fit: contain;
    object-position: initial;
    width: 100%;
    max-width: 100%;
  }
}
.content_wrapper {
  background-color: #ffffff;
  color: #000000;
  font-family: 'Arial';
  font-size: 12px;
  padding: 50px 40px;
  text-align: left;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.content_wrapper h1 {
  font-size: 24px;
}
.content_wrapper h1,
.content_wrapper p {
  margin-bottom: 30px;
}
.content_wrapper button {
  background-color: #ffb520;
  border: 0;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  display: block;
  font-size: 18px;
  line-height: 1;
  margin: 0 auto;
  min-width: 230px;
  padding: 15px 50px 10px;
  text-transform: uppercase;
  transition: background-color .3s ease-in-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.content_wrapper button:hover,
.content_wrapper button:focus {
  background-color: #ccc;
}

footer {
  font-size: 10px;
  font-family: 'Arial';
  padding: 25px 50px;
  text-align:center;
  line-height: 12px;
background-color: #ffb520;
}

footer ul {
  display: flex;
  justify-content: space-between;
}
footer a {
  color: #ffffff;

  text-decoration: none;
}
footer a:hover,
footer a:focus {
  text-decoration: underline;
}

@media (max-width: 767px){
  footer ul {
    display: flex;
    flex-direction: column;
  }
  footer li:not(:last-of-type) {
    margin-bottom: 30px;
  }
}