@font-face {
  font-family: "BebasNeueLight";
  src: url("../fonts/BebasNeue\ Light.otf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  font-family: "BebasNeueLight", sans-serif;
}

.header {
  height: 39vh;
  background-image: url(../images/Background\ photo.png);
  background-size: cover;
}
.logo {
  width: 200px;
  height: auto;

  & img {
    margin-top: 130px;
    margin-left: 158px;
    width: 465px;
    height: auto;
  }
}

.main {
  position: relative;
  height: 62vh;
  background-color: #fff;
  display: flex;
  overflow: hidden;

  & h1 {
    margin-top: 100px;
    margin-left: 155px;
    font-weight: 300;
    color: black;
    font-size: 180px;
    text-align: left;
    line-height: 1.2;
  }
  .geoImg-1 {
    position: absolute;
    top: -20px;
    left: -330px;
    width: 850px;
    height: auto;
    transform: rotate(180deg);
  }
  .geoImg-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 900px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .header {
    height: 40vh;
    background-image: url("../images/Background photo.png");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
  }

  .logo img {
    margin: 75px auto;
    display: block;
    width: 200px;
    height: auto;
  }

  .main {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 20px;
  }

  .main h1 {
    font-size: 70px;
    margin: 40px 0;
    line-height: 1.1;
    text-align: center;
  }

  .geoImg-1{
    display: none;
  }

  .main .geoImg-2 {
    width: 700px;
    bottom: -220px;
    right: -140px;
  }
}
