html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  font-family: "halyard-text", sans-serif;
  font-size: 100%;
  color: #231F20;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
}

embed,
iframe,
object {
  max-width: 100%;
}

input, select, option, textarea {
  font-family: inherit;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul, ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul, li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

p {
  margin: 0 0 1.5em;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

input[type=search],
input[type=submit],
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

/*Headings*/
h2 {
  font-style: normal;
  font-weight: 300;
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
h2.has-accent {
  position: relative;
  z-index: 1;
  padding-bottom: 29px;
}
h2.has-accent::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 10px;
  background: transparent url("../svg/divider.svg") no-repeat left top;
  background-size: 63.55px auto;
}

h3 {
  font-style: normal;
  font-weight: 300;
  font-size: 22px;
  line-height: auto;
  letter-spacing: 0.05em;
}

/*Links and Buttons*/
a {
  transition: -webkit-text-decoration-color 0.2s ease;
  transition: text-decoration-color 0.2s ease;
  transition: text-decoration-color 0.2s ease, -webkit-text-decoration-color 0.2s ease;
  color: inherit;
}
a:visited {
  color: inherit;
}
a:focus {
  color: inherit;
}
a:hover {
  color: inherit;
}
a:active {
  color: inherit;
}
a:hover {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: normal;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 2.833em;
  border: 0;
  background-color: #FDC364;
  transition: background-color 0.2s ease;
  cursor: pointer;
  color: #231F20;
}
.btn:visited {
  color: #231F20;
}
.btn:focus {
  color: #231F20;
}
.btn:hover {
  color: #231F20;
}
.btn:active {
  color: #231F20;
}
.btn:hover {
  background-color: #C6B898;
}

/*Styles*/
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.container {
  width: 95%;
  max-width: 1176px;
  margin: auto;
}

.menu {
  list-style: none;
  margin: 0;
  display: flex;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 37.22vw;
  padding: 50px 0;
  background: #626366 url("../images/header-bkgd-2x.jpg") no-repeat center;
  background-size: cover;
  color: #fff;
  text-align: center;
}
.site-header-logo {
  position: relative;
  z-index: 1;
  max-width: 424px;
  padding-bottom: 34px;
  margin: 0 auto 31px;
}
.site-header-logo::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 105px;
  height: 3px;
  background: #B6A58A;
}
.site-header-tagline {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0.05em;
}
@media (max-width: 1000px) {
  .site-header {
    padding: 100px 0;
  }
  .site-header-logo {
    max-width: 300px;
  }
  .site-header-tagline {
    font-size: 1rem;
  }
}

.content-wrapper {
  padding: 10px;
}

.site-main {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  padding-top: 50px;
}

.intro-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.intro-section-content {
  width: 565px;
  margin-bottom: 50px;
}
.intro-section-form {
  width: 534px;
}
@media (max-width: 1000px) {
  .intro-section {
    gap: 0;
    flex-direction: column;
    margin-bottom: 50px;
  }
  .intro-section-content, .intro-section-form {
    width: 100%;
    max-width: 565px;
    margin: 0;
  }
}

.intro-section-form .gform_wrapper.gravity-theme .gform_fields {
  grid-column-gap: 24px;
}
.intro-section-form .gform_wrapper.gravity-theme .gfield_label {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.666;
  letter-spacing: 0.01em;
  color: #231F20;
  margin: 0;
}
.intro-section-form .gform_wrapper.gravity-theme input[type=color],
.intro-section-form .gform_wrapper.gravity-theme input[type=date],
.intro-section-form .gform_wrapper.gravity-theme input[type=datetime-local],
.intro-section-form .gform_wrapper.gravity-theme input[type=datetime],
.intro-section-form .gform_wrapper.gravity-theme input[type=email],
.intro-section-form .gform_wrapper.gravity-theme input[type=month],
.intro-section-form .gform_wrapper.gravity-theme input[type=number],
.intro-section-form .gform_wrapper.gravity-theme input[type=password],
.intro-section-form .gform_wrapper.gravity-theme input[type=search],
.intro-section-form .gform_wrapper.gravity-theme input[type=tel],
.intro-section-form .gform_wrapper.gravity-theme input[type=text],
.intro-section-form .gform_wrapper.gravity-theme input[type=time],
.intro-section-form .gform_wrapper.gravity-theme input[type=url],
.intro-section-form .gform_wrapper.gravity-theme input[type=week],
.intro-section-form .gform_wrapper.gravity-theme select,
.intro-section-form .gform_wrapper.gravity-theme textarea {
  border: 0;
  border-radius: 0;
  background-color: #E6E7E8;
}
.intro-section-form .gform_wrapper.gravity-theme .gfield textarea,
.intro-section-form .gform_wrapper.gravity-theme .gfield textarea.large {
  height: 88px;
}
.intro-section-form .ginput_container_select {
  padding-right: 10px;
  background-color: #E6E7E8;
}
.intro-section-form .gfield_required::after {
  display: inline;
  content: "*";
  color: #231F20;
  font-size: 12px;
}
.intro-section-form .gfield_required .gfield_required,
.intro-section-form .gfield_required .gfield_required_text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.intro-section-form .gfield_required .gfield_required *::after,
.intro-section-form .gfield_required .gfield_required_text *::after {
  display: none;
}
.intro-section-form .gform_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: normal;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 2.833em;
  border: 0;
  background-color: #FDC364;
  transition: background-color 0.2s ease;
  cursor: pointer;
  color: #231F20;
}
.intro-section-form .gform_button:visited {
  color: #231F20;
}
.intro-section-form .gform_button:focus {
  color: #231F20;
}
.intro-section-form .gform_button:hover {
  color: #231F20;
}
.intro-section-form .gform_button:active {
  color: #231F20;
}
.intro-section-form .gform_button:hover {
  background-color: #C6B898;
}

.details-section {
  position: relative;
  z-index: 2;
}
.details-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 50px;
}
.details-section-content {
  width: 421px;
}
@media (max-width: 1000px) {
  .details-section .container {
    flex-direction: column;
  }
  .details-section-content {
    width: auto;
    max-width: 565px;
  }
}

.image-panel-wrapper {
  max-width: 553px;
  margin-left: 23px;
}
@media (max-width: 1200px) {
  .image-panel-wrapper {
    max-width: 50%;
    margin-left: 0;
  }
}
@media (max-width: 1000px) {
  .image-panel-wrapper {
    max-width: 565px;
  }
}

.image-panel {
  margin-bottom: 10px;
  padding: 20px 40px 20px 0;
  background-color: #231F20;
  color: #fff;
}
.image-panel-inner {
  display: flex;
  align-items: stretch;
}
.image-panel-image, .image-panel-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.image-panel-image {
  width: 160px;
  flex-shrink: 0;
  margin-left: -63px;
  padding: 10px 0;
}
@media (max-width: 1000px) {
  .image-panel-image {
    width: 120px;
    margin-left: -2.5vw;
  }
}
.image-panel-content {
  flex-grow: 1;
  padding: 14px 0 14px 18px;
  margin-left: 18px;
  border-left: 1px #B6A58A solid;
}
.image-panel-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4285;
  letter-spacing: 0.01em;
  margin: 0;
}

.series-section {
  position: relative;
  z-index: 1;
  margin-top: -55px;
}
.series-section-header {
  position: relative;
  z-index: 1;
  padding: 144px 0 104px;
  text-align: center;
}
.series-section-header .container {
  position: relative;
  z-index: 2;
  max-width: 634px;
}
.series-section-header::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -251px;
  left: 0;
  width: 51.8%;
  min-height: 412px;
  padding-top: 29%;
  background: url("../images/details-bkgd-2x.jpg") no-repeat center;
  background-size: cover;
}
.series-section-header::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 9%;
  background: #B6A58A url("../images/wood-pattern-2x.png") no-repeat center;
  background-size: cover;
  -webkit-clip-path: polygon(45% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 70px, 45% 70px);
          clip-path: polygon(45% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 70px, 45% 70px);
}
@media (max-width: 1400px) {
  .series-section-header::after {
    right: 5%;
  }
}
@media (max-width: 1200px) {
  .series-section-header::after {
    right: 2%;
  }
}
@media (max-width: 1000px) {
  .series-section-header::after {
    right: 0;
  }
}
.series-section-title em {
  font-style: inherit;
  position: relative;
  z-index: 1;
  text-decoration: none;
  display: inline;
  background-image: linear-gradient(#C6B898, #C6B898);
  background-repeat: no-repeat;
  background-size: 100% 0.3em;
  background-position: 0 80%;
}
.series-section-bottom {
  padding: 1px 0 92px;
  background: url("../images/series-bottom-bkgd-2x.jpg") no-repeat center;
  background-size: cover;
}
@media (max-width: 1000px) {
  .series-section-bottom {
    padding-bottom: 50px;
  }
}

.series-column-grid {
  max-width: 1364px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: -60px;
}
@media (max-width: 1000px) {
  .series-column-grid {
    max-width: 436px;
    grid-template-columns: 1fr;
  }
}

.series-column {
  display: flex;
  align-items: stretch;
  text-align: center;
  padding: 20px;
  -webkit-clip-path: polygon(1em 0%, calc(100% - 1em) 0%, 100% 1em, 100% calc(100% - 1em), calc(100% - 1em) 100%, 1em 100%, 0% calc(100% - 1em), 0% 1em);
          clip-path: polygon(1em 0%, calc(100% - 1em) 0%, 100% 1em, 100% calc(100% - 1em), calc(100% - 1em) 100%, 1em 100%, 0% calc(100% - 1em), 0% 1em);
}
.series-column-inner {
  flex-grow: 1;
  padding: 57px 35px 30px;
  border: 1px #4A494B solid;
}
@media (max-width: 1000px) {
  .series-column-inner {
    padding: 30px;
  }
}
.series-column-title {
  margin-bottom: 37px;
}
@media (max-width: 1200px) {
  .series-column-title {
    margin-bottom: 20px;
  }
}
.series-column-image {
  display: block;
  margin: auto;
  height: 190px;
  width: auto;
  max-width: 100%;
}
@media (max-width: 1200px) {
  .series-column-image {
    height: 120px;
  }
}
@media (max-width: 1000px) {
  .series-column-image {
    height: 150px;
  }
}
.series-column--advantage {
  background-color: #e7e8e9;
}
.series-column--advantage .series-column-image {
  fill: #4A494B;
}
.series-column--debut {
  background-color: #808285;
  color: #fff;
}
.series-column--debut .series-column-inner {
  border-color: #fff;
}
.series-column--debut .series-column-image {
  fill: #E6E7E8;
}
.series-column--capstone {
  background-color: #211D1E;
  color: #fff;
}
.series-column--capstone .series-column-inner {
  border-color: #A99B80;
}
.series-column--capstone .series-column-image {
  fill: #A99B80;
}

.site-footer {
  padding: 50px 0;
  background: #231F20;
  color: #E6E7E8;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: normal;
  letter-spacing: 0.07em;
}
.site-footer-columns {
  display: grid;
  grid-template-columns: 3fr 1fr 3fr;
  gap: 10px;
  max-width: 1206px;
}
.site-footer-columns p {
  margin: 0;
}
@media (max-width: 1000px) {
  .site-footer-columns {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
}
.site-footer .menu--social {
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.site-footer .menu--social li {
  width: 24px;
  margin: 0;
}
.site-footer .menu--social a {
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.site-footer .menu--social a:hover {
  opacity: 0.5;
}
.site-footer .menu--social svg {
  fill: #fff;
}
.site-footer .menu--footer {
  align-items: flex-start;
  justify-content: flex-end;
}
.site-footer .menu--footer li {
  display: flex;
  align-items: center;
  margin: 0;
}
.site-footer .menu--footer li::after {
  display: block;
  content: "|";
  padding: 0 0.5em;
}
.site-footer .menu--footer li:last-child::after {
  display: none;
}
