@charset "UTF-8";
/* CSS Document */
.sf-container {
  background-color: var(--night);
  margin: 1px auto 50px;
  width: 100%;
  max-width: 1220px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.sf-container-grid {
  display: grid;
  grid-template-columns: auto 59%;
}
.sf-container a:hover {
  text-decoration: none;
  color: inherit;
}
.sf-copy-container {
  text-align: center;
  display: flex;
  align-items: center;
  width: 100%;
}
.sf-grid-item {
  display: flex;
}
.sf-copy {
  position: relative;
  text-align: left;
  color: #ffffff;
  padding: 0 10%;
  width: 100%;
}
.sf-copy h2 {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 7px;
  margin-bottom: 8%;
  line-height: 2;	
}
.sf-copy h2 span {
  font-family: var(--font);
  font-size: 44px;
  font-weight: 400;
  color: var(--orange);
  text-transform: none;
  letter-spacing: normal;
  line-height: 1;	
}
.sf-copy p {
  font-family: var(--font);
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  margin: auto;
  text-decoration: none;
}
.sf-image img {
  width: 100%;
}
@media (max-width: 1200px) {
  .sf-copy h2 span {
    font-size: 38px;
  }
}
@media (max-width: 992px) {
  .sf-copy {
    padding: 0 8%;
  }
  .sf-copy h2 {
    margin-bottom: 4%;
  }
  .sf-copy h2 span {
    font-size: 24px;
  }
  .sf-copy p {
    font-size: 14px;
    padding-right: 0;
  }
}
@media (max-width:768px) {
  .sf-grid-item {
    display: block;
  }
  .sf-container {
    height: auto;
    max-height: none;
  }
  .sf-container-grid {
    grid-template-columns: 100%;
  }
  .sf-grid {
    grid-template-columns: 100%;
  }
  .sf-copy {
    padding: 8% 10%;
  }
  .sf-copy h2 {
    margin-bottom: 8%;
  }
  .sf-copy h2 span {
    font-size: 44px;
  }
}
@media (max-width:400px) {
  .sf-copy p {
    font-size: 14px;
  }
}