* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

section {
  position: relative;
  width: 100%;
  padding: 80px 0;
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.select-location {
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.select-location .vector1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 200px;
}
.select-location .vector2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 300px;
  transform: rotate(180deg);
}
.select-location .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.select-location .wrapper .logo {
  width: 200px;
  margin-bottom: 50px;
}
.select-location .wrapper .title {
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
.select-location .wrapper .subtitle {
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
}
.select-location .wrapper .country-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 800px;
  margin-top: 50px;
}
.select-location .wrapper .country-container .country {
  display: flex;
  align-items: center;
  background-color: white;
  border: 2px solid #F9F9F9;
  padding: 15px 20px;
  border-radius: 10px;
  transition: 0.2s;
  color: #595969;
}
.select-location .wrapper .country-container .country svg {
  margin-right: 10px;
}
.select-location .wrapper .country-container .country:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 8px;
  color: #000000;
}

@media (max-width: 767px) {
  .select-location .wrapper .country-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .select-location {
    padding: 50px 0;
  }
  .select-location .wrapper .logo {
    width: 200px;
    margin-bottom: 40px;
  }
  .select-location .wrapper .title {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .select-location .wrapper .subtitle {
    font-size: 18px;
  }
  .select-location .wrapper .country-container {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 10px;
  }
}

/*# sourceMappingURL=olimpsport.css.map */
