* {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: arboria, sans-serif;
  background-color: #98694b;
}

h1,
h2,
h3 {
  text-align: center;
}

h1,
h3 {
  line-height: 1.1;
}

h1 {
  font-size: clamp(1.8rem, 10vw, 4.5rem);
  font-weight: 500;
  color: #ffffff;
  text-transform: none;
}

h2 {
  font-size: clamp(2.8rem, 10vw, 6rem);
  line-height: 1;
  font-weight: 400;
}

h3 {
  font-size: clamp(1.8rem, 5vw, 2rem);
  font-weight: 300;
  color: white;
}

p {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  font-weight: 300;
  color: #ffffff;
}
p a {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease-out;
}

a:hover {
  text-decoration: underline;
  color: #df986c;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  width: 80%;
  max-width: 1920px;
  min-height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.flex-container {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.flex-item {
  display: flex;
  align-items: center;
  flex-basis: 50%;
  padding-top: 40px;
  padding-bottom: 60px;
}

.right {
  background-color: #6d1f37;
}

.left {
  background-color: #000000;
}

.logo_container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: clamp(120px, 20vw, 150px);
  margin-bottom: clamp(40px, 2vw, 80px);
}

.content {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.title {
  margin-bottom: 30px;
}

.intro {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}
.intro p:first-of-type {
  font-size: clamp(1.4rem, 2vw, 2.2rem);
}
.intro p {
  margin-bottom: 20px;
}

.email {
  color: #ffffff;
}

.phone {
  color: #ffffff;
}

.address {
  margin-top: 30px;
  margin-bottom: 60px;
  color: #ffffff;
}

.footer {
  height: 80px;
  width: 80%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #222222;
}

.footer_content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer_content p {
  color: #222222;
  font-weight: 400;
}

.copyright,
.clear {
  min-width: 100px;
}

.clear {
  text-align: right;
}

.copyright > span,
.clear > a {
  font-size: inherit;
}

.background {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: -20;
}

@media only screen and (max-width: 1300px) {
  .flex-container {
    flex-direction: column;
  }
  .content {
    max-width: 80%;
  }
}
@media only screen and (max-width: 600px) {
  .footer_content {
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }
}/*# sourceMappingURL=style.css.map */