* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: 'Ubuntu', sans-serif;
}

h1,
h2 {
  font-family: 'Open Sans', sans-serif;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.2rem;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 50px;
}

.seperator {
  width: 50px;
  height: 2px;
  background: #000;
  margin: 25px 0;
}

.section-top {
  padding: 50px 0;
  min-height: 400px;
}

.section-top .content {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}

.section-top .content p {
  font-size: 2rem;
  margin-bottom: 20px;
}

.section-top .content p span{
  font-weight: 400;
}

@media screen and (max-width: 1330px) {
  .section-top {
    padding: 70px 20px 50px;
  }
  h1 {
    font-size: 3.2rem;
  }
  h2 {
    font-size: 2.8rem;
  }
  .section-top .content p {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 991px) {
  .section-top {
    padding: 50px 20px;
  }
}

@media screen and (max-width: 600px) {
  h2 {
    font-size: 2rem;
  }
  .section-top .content {
    flex-direction: column;
    align-items: center;
  }
}
