@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;500&family=Roboto+Condensed:wght@300;400&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Roboto Condensed', sans-serif;
}

.main-container {
  max-width: 1200px;
  margin: auto;
}

h1, h2, h3, h4, h5, h6 {
  color: #6699cc;
  font-weight: 300;
  margin: 0;
}

.header-main {
  position: relative;
  background-color: #333;
  padding: 2rem;
  font-family: 'Oswald', sans-serif;
}

.header-main img {
  position: absolute;
  top: 1.5rem;
  left: 1.2rem;
  width: 25%;
}

.header-main hgroup {
  margin-left: 6rem;
}

.header-main hgroup h1 {
  color: #fff;
  margin-bottom: 0;
  font-size: 1.9rem;
  font-weight: 500;
}

.header-main hgroup h2 {
  color: #6699cc;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .header-main img {
    width: 20%;
    top: 2.5rem;
    left: 3rem;
  }
  .header-main hgroup {
    margin-left: 12rem;
  }
  .header-main hgroup h1 {
    font-size: 4rem;
  }
  .header-main hgroup h2 {
    font-size: 3rem;
  }
}

@media screen and (min-width: 1200px) {
  .header-main img {
    width: 17%;
    top: 4rem;
    left: 17rem;
  }
  .header-main hgroup {
    margin-left: 35rem;
  }
  .header-main hgroup h1 {
    font-size: 8rem;
  }
  .header-main hgroup h2 {
    font-size: 5.9rem;
  }
}

.nav-main {
  background-color: #333;
}

.nav-main ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.nav-main ul li {
  list-style: none;
  padding: 0.5rem;
}

.nav-main ul li a {
  color: #ccc;
  text-decoration: none;
  margin: 0.3rem;
  -webkit-transition: ease-in 0.2s;
  transition: ease-in 0.2s;
}

.nav-main ul li a:hover {
  color: #6699cc;
}

@media screen and (min-width: 768px) {
  .nav-main ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 1200px) {
  .nav-main ul {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-right: 8rem;
  }
}

.section-header {
  margin: 1rem 0.5rem;
}

.section-header h3 {
  color: #6699cc;
  font-size: 2rem;
  font-weight: 400;
}

.section-header p {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.artic h4 {
  font-size: 1.3rem;
  margin: 1rem 0.5rem;
}

.artic p {
  margin: 1rem 0.5rem;
}

.highlight {
  font-weight: 600;
}

.artic-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0.5rem 0.5rem;
}

.artic-footer a {
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .artic h4 {
    font-size: 2rem;
  }
  .artic p {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1200px) {
  .section-header {
    margin: 2rem 0;
  }
  .section-header h3 {
    font-size: 2.5rem;
  }
  .section-header p {
    font-size: 1.2rem;
  }
  .artic-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .artic-grid .artic h4 {
    font-size: 1.8rem;
    margin: 0;
  }
  .artic-grid .artic p {
    font-size: 1.2rem;
    margin: 1rem 0;
  }
}

.gallery-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

.gallery-grid img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .gallery-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media screen and (min-width: 1200px) {
  .gallery-grid {
    -ms-grid-columns: (1fr)[6];
        grid-template-columns: repeat(6, 1fr);
  }
  .gallery-grid img {
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    -webkit-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
  }
  .gallery-grid img:hover {
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
  }
}

.card-figure {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  margin: 0;
}

.card-figure img {
  display: block;
  width: 100%;
  margin: 1rem 0;
}

.card-header h4 {
  font-size: 2rem;
  font-weight: 300;
  margin: 1rem 0.3rem;
}

.card-figure article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.card-figure p {
  margin: 0.3rem 0.3rem;
  font-size: 1.3rem;
}

@media screen and (min-width: 1200px) {
  .card-figure {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.contact .form-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  margin: 0.5rem;
}

.contact .form-grid img {
  width: 100%;
}

.contact fieldset {
  border: none;
}

.contact textarea, .contact input[type=text], .contact input[type=email], .contact input[type=tel] {
  border: solid 3px #ccc;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px;
  margin: 0.4em 0;
  width: 100%;
  resize: none;
}

.contact form ::-webkit-input-placeholder {
  color: #bbb;
}

.contact form :-ms-input-placeholder {
  color: #bbb;
}

.contact form ::-ms-input-placeholder {
  color: #bbb;
}

.contact form ::placeholder {
  color: #bbb;
}

.contact button {
  background-color: #0066cc;
  color: #eee;
  text-transform: uppercase;
  border-radius: 2px;
  border: solid 1px #ccc;
  margin-bottom: 0.5rem;
  width: 100%;
  padding: 1em;
  cursor: pointer;
}

.contact #btn-light {
  background-color: #6699cc;
}

.contact input[type=text].field-error, .contact input[type=email].field-error, .contact input[type=tel].field-error, .contact textarea.field-error {
  border-color: #f0005e;
}

.contact .text-error {
  font-size: 1em;
  color: #f0005e;
}

@media screen and (min-width: 768px) {
  .contact .form-grid {
    -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
    gap: 1rem;
  }
  .contact textarea {
    padding-bottom: 4rem;
  }
}

@media screen and (min-width: 1200px) {
  .contact .form-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 0;
  }
  .contact input[type=text], .contact input[type=email], .contact input[type=tel] {
    margin-bottom: 1rem;
  }
  .contact textarea {
    padding-bottom: 10rem;
  }
  .contact button {
    width: 49.692%;
  }
}

.footer-main {
  background-color: #333;
}

.footer-main .footer-section {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  padding: 1rem;
}

.footer-main .footer-section article {
  margin: 1rem 0;
}

.footer-main .footer-section article h2 {
  color: #0066cc;
}

.footer-main .footer-section article a {
  margin: 0.5rem 0;
  color: #ccc;
  text-decoration: none;
}

.footer-main .footer-section article p {
  color: #ccc;
  margin-bottom: 0.2rem;
}

.footer-main .footer-section img {
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .footer-main {
    margin-top: 2rem;
  }
  .footer-main .footer-section {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    margin: 0 5rem;
  }
  .footer-main .footer-section article h2 {
    font-size: 3rem;
  }
  .footer-main .footer-section article a {
    font-size: 1.5rem;
  }
  .footer-main .footer-section article p {
    font-size: 1.5rem;
  }
  .footer-main .footer-section img {
    width: 50%;
  }
}
/*# sourceMappingURL=main.css.map */