/*
=============== 
Fonts
===============
*/

@font-face {
  font-family: "Shrikhand";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: local("Shrikhand Regular"), local("Shrikhand-Regular"),
    url(https://fonts.gstatic.com/s/shrikhand/v5/a8IbNovtLWfR7T7bMJwrA4KR.woff2)
      format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

@import url("https://fonts.googleapis.com/css2?family=Open+Sans&family=Roboto:wght@400;700&display=swap");

/*
  =============== 
  Variables
  ===============
  */

:root {
  overflow-x: hidden;
  --clr-primary: #70c9d5;
  --clr-secondary: rgb(186, 95, 122);
  --clr-text: rgb(59, 59, 59);
  --clr-white: #fff;
  --clr-black: #222;
  --ff-primary: "Roboto", sans-serif;
  --ff-secondary: "Open Sans", sans-serif;
  --transition: all 0.3s linear;
  --spacing: 0.25rem;
  --radius: 0.5rem;
  scroll-behavior: smooth;
}

html,
body {
  /* position: fixed; */
  max-width: 100% !important;
  overflow: hidden !important;
  overflow-y: auto !important;
}

/*
  =============== 
  Global Styles
  ===============
  */

ul {
  list-style-type: none;
}
a {
  text-decoration: none;
  color: var(--clr-primary);
  transition: var(--transition);
}

a:active {
  color: var(--clr-primary);
}

a:visited {
  color: var(--clr-primary);
}

a:hover {
  color: var(--clr-secondary);
}

/* TITLE */

.title {
  width: auto;
  display: flex;
  flex-direction: column;
  place-content: center;
  margin: 0;
  padding: 0;
  text-align: center;
}

.title h1 {
  color: var(--clr-primary);
  font-family: "Shrikhand";
  text-align: center;
  font-size: 4rem;
  line-height: 1;
  transition: var(--transition);
}

.title h2 {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  margin-top: -1rem;
  margin-bottom: 3rem;
  color: var(--clr-primary);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: var(--spacing);
}

h1:hover {
  color: var(--clr-secondary);
}

h1:active {
  color: #222;
}

.title__bottom {
  width: 5%;
  margin-bottom: 4rem;
  margin-top: -1rem;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 3px solid rgb(73, 206, 213);
}

/* MAIN MAP CONTENT */

main {
  /* position: absolute; */
  /* height: 80vh; */
  width: 100vw;
  display: flex;
  justify-content: center;
  align-content: center;
  /* top: 80%;
  left: 10%; */
  /* transform: translateX(-85%); */
  /* transform: translateY(-50%); */
  /* width: 100vw; */
  /* display: flex;
  flex-direction: column;
  place-content: center;
  text-align: center; */
  /* margin: 0 auto; */
}

img {
  width: 80%;
}

iframe {
  margin-bottom: -30px;
}

.block {
  position: absolute;
  width: 100%;
  height: 30px;
  z-index: 100000;
  background: #fff;
  /* border: rgb(255, 255, 255) solid 3px; */
}

@media screen and (max-width: 650px) {
  main {
    width: 100%;
    /* top: 90%;
    left: 0; */
  }

  .title h1 {
    font-size: 3rem;
  }

  .title h2 {
    font-size: 1.5rem;
  }

  img {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .title h1 {
    font-size: 2.5rem;
  }

  .title h2 {
    font-size: 1rem;
  }

  .title__bottom {
    display: none;
  }
}
