/* font */
@font-face {
  font-family: 'Teodor';
  src: url("./fonts/Teodor-SemiBold.eot");
  src: url("./fonts/Teodor-SemiBold.eot?#iefix") format("embedded-opentype"), url("./fonts/Teodor-SemiBold.woff2") format("woff2"), url("./fonts/Teodor-SemiBold.woff") format("woff"), url("./fonts/Teodor-SemiBold.ttf") format("truetype"), url("./fonts/Teodor-SemiBold.svg#Teodor-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

header.displayAfter, footer.displayAfter {
  display: none;
}

html, body {
  min-height: 100vh;
}

body {
  font-family: 'Merriweather Sans', sans-serif;
  color: white;
  background-color: #FFFFFF;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin: 0;
  text-align: center;
  font-family: 'Teodor';
  color:#00263e;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 3.125rem;
  text-align: center;
  line-height: 1.3;
}

h3 {
  font-size: 1.625rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
}

.button {
  font-size: 1.625rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  padding: 0.9375rem 1.875rem;
  margin: 0 auto 3.125rem;
  color: white;
  background-color: transparent;
  border: 3px solid white;
  display: table;
  -webkit-transition: background  0.5s ease-out;
  transition: background  0.5s ease-out;
}

.button:hover, .button:active {
  background: white;
  color:  #00263e;
  -webkit-transition: background  0.5s ease-out;
  transition: background  0.5s ease-out;
}

/* header */
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5625rem 3.125rem;
  background-color: #001D2F;
}

.logo {
  line-height: 0;
}

.space, .logo img {
  height: 8vh;
}

/* main */
main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.container {
  height: 100vh;
  width: 50%;
}

.container .header {
  height: 10vh;
  background-color: rgba(0, 0, 0, 0.5);

  display: flex;
  align-items: center;
}

.container .header .logo {
  margin-left: 20px;
}

.container .footer {
  height: 10vh;
  background-color: rgba(0, 0, 0, 0.5);

  display: flex;
  align-items: center;
  justify-content: center;
}

.container .footer a {
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  color: white;
}

.container .footer a:hover, .container .footer a:active {
  text-decoration: underline;
}


.container:first-child {
  background: url(../images/main/photo1.webp);
  background-size: cover;
  background-position: center center;
}

.container:nth-child(2) {
  background: url(../images/main/photo2.jpg);
  background-size: cover;
  background-position: center center;
}

.container:last-child {
  background: url(../images/main/photo3.jpg);
  background-size: cover;
  background-position: center center;
}

.container a {
  text-decoration: none;
}

.container a h2, .container a h3 {
  color: white;
}

.wrapper {
  width: 100%;
  height: 80vh;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: background  0.5s ease-out;
  transition: background  0.5s ease-out;
}

.wrapper .text {
  opacity: 1;
  -webkit-transition: opacity  0.5s ease-out;
  transition: opacity  0.5s ease-out;
}

.wrapper:hover {
  background: rgba(0, 0, 0, 0);
  -webkit-transition: background  0.5s ease-out;
  transition: background  0.5s ease-out;
}

.wrapper:hover .text {
  opacity: 0;
  -webkit-transition: opacity  0.5s ease-out;
  transition: opacity  0.5s ease-out;
}

.wrapper .space {
  width: 1px;
  height: 1px;
}

/* footer */
footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2.5rem 3.125rem;
  background-color: #001D2F;
}

.copy {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  color: white;
}

footer a {
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  color: white;
}

footer a:hover, footer a:active {
  text-decoration: underline;
}

/*** MEDIA ***/
/* 2000 */
@media (max-width: 125rem) {
  h2 {
    font-size: 2.25rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  .button {
    font-size: 1.5rem;
  }
}

/* 1430 */
@media (max-width: 89.375rem) {
  .space, .logo img {
    width: 14.375rem;
  }
  h1 {
    font-size: 2.4375rem;
  }
  h2 {
    font-size: 2.125rem;
    margin: 0 0 2.5rem;
  }
  h3 {
    font-size: 1.4375rem;
  }
  .button {
    font-size: 1.4375rem;
  }
}

/* 1270 */
@media (max-width: 79.375rem) {
  .space, .logo img {
    width: 11.25rem;
  }
  h1 {
    font-size: 2.25rem;
  }
  h2 {
    font-size: 2rem;
    margin: 0 0 2.1875rem;
  }
  h3 {
    font-size: 1.375rem;
  }
  .button {
    font-size: 1.375rem;
    padding: 0.8125rem 1.875rem;
  }
  footer {
    padding: 1.875rem 3.125rem;
  }
  .copy, footer a {
    font-size: 0.875rem;
  }
}

/* 1120 */
@media (max-width: 70rem) {
  .space, .logo img {
    width: 10rem;
  }
  h1 {
    font-size: 2.125rem;
  }
  h2 {
    font-size: 1.875rem;
    margin: 0 0 2.1875rem;
  }
  h3 {
    font-size: 1.3125rem;
  }
  .button {
    padding: 0.625rem 1.5625rem;
    font-size: 1.3125rem;
  }
}

/* 1020 */
@media (max-width: 63.75rem) {
  .space, .logo img {
    width: 8.125rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
    margin: 0 0 2.1875rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  .button {
    padding: 0.625rem 1.5625rem;
    font-size: 1.25rem;
  }
}

/* 900 */
@media (max-width: 56.25rem) {
  header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .space {
    display: none;
  }

  main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .backgroundBlue {
    width: 100%;
  }
  .button {
    margin: 2.5rem auto;
    border: 1px solid white;
  }
  .container {
    height: 43.75rem;
    width: 100%;
  }
  h2 {
    font-size: 2.375rem;
  }
  h3 {
    font-size: 1.625rem;
  }
  .button {
    font-size: 1.625rem;
  }

  header.displayAfter, footer.displayAfter {
    display: flex;
  }

  .container .header, .container .footer  {
    display: none;
  }

  .wrapper {
    height: 100%;
  }
}

/* 700 */
@media (max-width: 43.75rem) {
  header, footer {
    padding: 1.25rem;
  }
  h1 {
    font-size: 1.875rem;
    max-width: 18.75rem;
  }
  h2 {
    font-size: 2.25rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  .button {
    font-size: 1.5rem;
  }
  .copy, footer a {
    font-size: 0.75rem;
  }
}

/* 470 */
@media (max-width: 29.375rem) {
  footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer a {
    margin-bottom: 0.625rem;
  }
  .button {
    margin: 1.875rem auto;
  }
}

/* 400 */
@media (max-width: 25rem) {
  h1 {
    font-size: 1.625rem;
    max-width: 15rem;
  }
  h2 {
    font-size: 2.125rem;
  }
  h3 {
    font-size: 1.375rem;
  }
  .button {
    font-size: 1.375rem;
  }
}
/*# sourceMappingURL=style.css.map */