html,
body {
 	width: 100%;
 	height: 100%;
	margin: 0;
	padding: 0;
	color: #000;
 	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 20px 0 20px;
}

.container {
  max-width: 1200px;
  margin: 2.75rem auto;
  padding: 0 20px;
}

.two-column-text {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.two-column-text .column {
  flex: 1 1 48%;
}

.two-column-text h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.two-column-text p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .two-column-text .column {
    flex: 1 1 100%;
  }
}

section img {
    width:100%;
}

/* fonts *************************************************************/
h2.subline,
span.subline {
    color: #c00808;
    font-style: italic;
    line-height: 0.2rem;
    font-size: 1rem;
    font-weight: 400;
    padding-bottom: 1rem;
}

a.btn {
	text-decoration: none;
    font-weight: 500;
    color: #fff;
    background-color: #c00808;
    position: relative;
    padding: 20px;
    transition: all 0.2s ease;
}

	a.btn:hover {
		background-color: #333;
	}

