* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Open Sans', sans-serif;
  scroll-behavior: smooth;
  color: #000;
  font-size: 14px;
  line-height: 1.42857143;
  max-width: 992px;
  width: 100%;
  margin: 20px auto;
}

@media screen and (max-width: 599px) {
  body {
    margin: 0 auto;
  }
}

@media screen and (max-width: 599px) {
  body,
  header,
  nav,
  footer,
  main {
    max-width: 599px;
  }
}

h1,
h3,
p {
  margin: 0 auto;
  text-align: center;
}

header {
  background-image: url("https://images.clasohlson.com/SE/2020spring/header-de.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  height: 397px;
}

header h1 {
  font-size: 42px;
  background-color: #60AFDC;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  padding: 5px 20px;
  width: 560px;
}

@media screen and (max-width: 599px) {
  header h1 {
    font-size: 19px;
    margin-top: 20px;
    width: auto;
  }
  header p {
    font-size: 14px;
  }
}

header h3 {
  margin: 15px 20px 0;
  line-height: 1.2;
  font-size: 25px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.33);
}

header p {
  margin: 5px 20px 0;
  max-width: 850px;
}

header nav {
  margin: 0 auto;
}

header ul {
  padding: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header ul a {
  color: white;
  text-decoration: none;
  background-color: rgba(129, 196, 109, 0.8);
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 10px;
  margin: 10px;
  width: 160px;
  text-align: center;
}

header ul a:hover {
  background-color: #81c46d;
}

@media screen and (max-width: 720px) {
  ul {
    max-width: 388px;
  }
}

main {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main p {
  margin: 20px 10px;
}

main p:nth-of-type(2) {
  margin: 0;
}

main .btn__main {
  background-color: #81C46D;
  text-transform: uppercase;
  padding: 8px 15px;
  margin: 0 auto 20px;
  color: white;
  border-radius: 2px;
  text-decoration: none;
  font-size: 11px;
  font-weight: bold;
  width: 260px;
  text-align: center;
}

main h3 {
  font-size: 19px;
  color: #60AFDC;
  margin: 15px auto;
}

main h3:nth-child(2) {
  color: #000;
}

main img {
  margin: 20px 0;
  max-width: 992px;
  width: 100%;
}

main .insta__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 20px;
}

main .insta__links a {
  font-size: 13px;
  padding: 0 5px;
}

@media screen and (max-width: 599px) {
  main {
    padding: 0 20px;
  }
}

hr {
  border: 0;
  border-bottom: 1px dashed #D0D0D0;
  width: 100%;
}

aside {
  margin: 20px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto 1fr;
      grid-template-rows: auto 1fr;
  -ms-grid-columns: 1fr 10px 1fr;
  -ms-grid-rows: 1fr;
  grid-gap: 10px;
}

aside div {
  border-radius: 3px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr;
      grid-template-rows: auto 1fr;
}

aside .contact__info {
  -ms-grid-column: 1;
  -ms-grid-row: 1;
}

aside .contact__return {
  -ms-grid-column: 3;
  -ms-grid-row: 1;
}

aside .contact__info p,
aside .contact__return p:first-child {
  color: white;
  background-color: #60AFDC;
  width: 100%;
  font-weight: bold;
  padding: 5px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

aside .contact__info a,
aside .contact__return p:nth-child(2) {
  text-align: center;
  background-color: #F8F8F8;
  padding: 20px;
  border-right: 1px solid #D0D0D0;
  border-left: 1px solid #D0D0D0;
  border-bottom: 1px solid #D0D0D0;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

@media screen and (max-width: 599px) {
  aside {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: (1fr)[2];
        grid-template-rows: repeat(2, 1fr);
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    -ms-grid-rows: 1fr 1fr 1fr;
    grid-gap: 10px;
    padding: 0 20px;
  }
  div:first-child {
    -ms-grid-row: 1;
    grid-row: 1;
  }
  div:nth-child(2) {
    -ms-grid-row: 2;
    grid-row: 2;
  }
}

footer {
  max-width: 992px;
  width: 100%;
}

footer div {
  display: block;
  text-align: center;
}

@media screen and (max-width: 599px) {
  footer {
    padding: 0 0 40px;
  }
  footer a {
    font-size: 12px;
  }
}
/*# sourceMappingURL=style.css.map */