* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.p-1 {
  padding: 15px !important;
}

.pt-1 {
  padding-top: 15px !important;
}

.pb-1 {
  padding-bottom: 15px !important;
}

.p-2 {
  padding: 30px !important;
}

.pt-2 {
  padding-top: 30px !important;
}

.pb-2 {
  padding-bottom: 30px !important;
}

.p-3 {
  padding: 45px !important;
}

.pt-3 {
  padding-top: 45px !important;
}

.pb-3 {
  padding-bottom: 45px !important;
}

.p-4 {
  padding: 60px !important;
}

.pt-4 {
  padding-top: 60px !important;
}

.pb-4 {
  padding-bottom: 60px !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.m-1 {
  margin: 15px !important;
}

.mt-1 {
  margin-top: 15px !important;
}

.mb-1 {
  margin-bottom: 15px !important;
}

.m-2 {
  margin: 30px !important;
}

.mt-2 {
  margin-top: 30px !important;
}

.mb-2 {
  margin-bottom: 30px !important;
}

.m-3 {
  margin: 45px !important;
}

.mt-3 {
  margin-top: 45px !important;
}

.mb-3 {
  margin-bottom: 45px !important;
}

.m-4 {
  margin: 60px !important;
}

.mt-4 {
  margin-top: 60px !important;
}

.mb-4 {
  margin-bottom: 60px !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.wrapper {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

.content__section {
  max-width: 1920px;
  width: 100%;
  margin: auto;
  padding-block: 30px;
  padding-inline: 1em;
}
.content__section .wrapper > *:last-child {
  margin-bottom: 0;
}
@media (width < 36em) {
  .content__section .wrapper .text p img {
    float: none !important;
    display: block;
    margin-bottom: 10px !important;
    margin-top: 0 !important;
    margin-inline: 0 !important;
  }
}

table {
  margin-bottom: 25px;
  border-collapse: collapse;
}
table tr th {
  background-color: #F3A120;
  color: #000;
  padding: 5px 15px;
  border: 1px solid #F3A120;
}
table tr td {
  padding: 5px 15px;
  border: 1px solid #F3A120;
}

table[border="0"] tr th {
  background-color: #F3A120;
  color: #000;
  padding: 5px;
  border: none;
}
table[border="0"] tr td {
  padding: 5px;
  border: none;
}

ul li::marker {
  font-size: 14px;
}

ul,
ol {
  padding-left: 20px;
  margin-bottom: 25px;
}
ul li,
ol li {
  line-height: 19.6px;
  font-family: "Nunito", sans-serif;
}
ul ul,
ol ul {
  margin-bottom: 5px;
  margin-top: 5px;
}
ul ol,
ol ol {
  margin-bottom: 5px;
  margin-top: 5px;
}

pre {
  white-space: break-spaces;
}

blockquote {
  margin-bottom: 25px;
}

figure figcaption {
  background: #fff;
  margin-top: -50px;
  position: relative;
  border-radius: 5px;
  width: calc(100% - 15px);
  margin-inline: auto;
  padding-inline: 0.5em;
  text-align: center;
  color: #474747;
  padding-block: 0.5em;
}

.image__left .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.image__left .wrapper .image {
  order: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.image__left .wrapper .image:has([class^=btn__]) {
  justify-content: flex-start;
  align-items: center;
}
.image__left .wrapper .image img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.image__left .wrapper .image figure figcaption {
  color: #000;
}
.image__left .wrapper .text {
  order: 2;
}
.image__left .wrapper .text > :last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 567px) {
  .image__left .wrapper {
    grid-template-columns: 1fr;
  }
}

.image__left.img--25 .wrapper {
  grid-template-columns: 25% 1fr;
}
@media screen and (max-width: 567px) {
  .image__left.img--25 .wrapper {
    grid-template-columns: 1fr;
  }
}

.image__left.img--33 .wrapper {
  grid-template-columns: 33% 1fr;
}
@media screen and (max-width: 567px) {
  .image__left.img--33 .wrapper {
    grid-template-columns: 1fr;
  }
}

.image__right .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.image__right .wrapper .image {
  order: 2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.image__right .wrapper .image:has([class^=btn__]) {
  justify-content: flex-end;
  align-items: center;
}
.image__right .wrapper .image img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.image__right .wrapper .text {
  order: 1;
}
.image__right .wrapper .text > :last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 567px) {
  .image__right .wrapper {
    grid-template-columns: 1fr;
  }
}

.image__right.img--25 .wrapper {
  grid-template-columns: 1fr 25%;
}
@media screen and (max-width: 567px) {
  .image__right.img--25 .wrapper {
    grid-template-columns: 1fr;
  }
}

.image__right.img--33 .wrapper {
  grid-template-columns: 1fr 33%;
}
@media screen and (max-width: 567px) {
  .image__right.img--33 .wrapper {
    grid-template-columns: 1fr;
  }
}

.image__left.img--100 {
  padding: 0;
}
.image__left.img--100 .wrapper {
  max-width: 1920px;
  display: grid;
  grid-template-columns: 1fr 600px 600px 1fr;
  gap: 0;
}
.image__left.img--100 .image {
  grid-column: 1/3;
  position: relative;
}
.image__left.img--100 .image img, .image__left.img--100 .image figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image__left.img--100 .text {
  grid-column: 3/4;
  padding: 60px 0 60px 60px;
}
.image__left.img--100 .text > :last-child {
  margin-bottom: 0;
}
@media (width < 67em) {
  .image__left.img--100 .wrapper {
    grid-template-columns: 50% 50%;
  }
  .image__left.img--100 .image {
    grid-column: 1/2;
  }
  .image__left.img--100 .text {
    grid-column: 2/-1;
    padding-right: 1em;
  }
}
@media (width < 56em) {
  .image__left.img--100 .wrapper {
    grid-template-columns: 1fr;
  }
  .image__left.img--100 .image {
    grid-column: 1/-1;
    min-height: 300px;
  }
  .image__left.img--100 .image img {
    object-position: center;
  }
  .image__left.img--100 .text {
    grid-column: 1/-1;
    padding-inline: 1em;
  }
}

.image__right.img--100 {
  padding: 0;
}
.image__right.img--100 .wrapper {
  max-width: 1920px;
  display: grid;
  grid-template-columns: 1fr 600px 600px 1fr;
  gap: 0;
}
.image__right.img--100 .image {
  grid-column: 3/-1;
  position: relative;
}
.image__right.img--100 .image img, .image__right.img--100 .image figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image__right.img--100 .text {
  grid-column: 2/3;
  padding: 60px 60px 60px 0px;
}
.image__right.img--100 .text > :last-child {
  margin-bottom: 0;
}
@media (width < 67em) {
  .image__right.img--100 .wrapper {
    grid-template-columns: 50% 50%;
  }
  .image__right.img--100 .image {
    grid-column: 2/1;
  }
  .image__right.img--100 .text {
    grid-column: 1/2;
    padding-left: 1em;
  }
}
@media (width < 56em) {
  .image__right.img--100 .wrapper {
    grid-template-columns: 1fr;
  }
  .image__right.img--100 .image {
    grid-column: 1/-1;
    min-height: 300px;
  }
  .image__right.img--100 .image img {
    object-position: center;
  }
  .image__right.img--100 .text {
    grid-column: 1/-1;
    padding-inline: 1em;
  }
}

.background__image {
  position: relative;
  isolation: isolate;
  display: grid;
}
.background__image .wrapper {
  position: unset !important;
}
.background__image .text > :last-child {
  margin-bottom: 0;
}
.background__image .text h2,
.background__image .text p {
  color: #ffffff;
}
.background__image .image {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.background__image .image figure {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.background__image .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  -webkit-filter: brightness(0.5);
  display: block;
}

.banner__image {
  padding: 0;
}
.banner__image .wrapper {
  max-width: 1920px;
}
.banner__image img,
.banner__image figure {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}

.grid {
  display: grid;
}
.grid img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}
.grid.grid--contained {
  max-width: 1200px;
  margin: auto;
  padding-inline: 0;
  gap: 30px;
}
.grid.grid--fullwidth {
  max-width: 1920px;
  margin: auto;
  padding-inline: 0;
}
.grid.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid.grid--6 {
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 1025px) {
  .grid.grid--contained {
    padding-inline: 1em;
  }
}
@media screen and (max-width: 769px) {
  .grid.grid--fullwidth.grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.grid--contained.grid--6 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.grid--fullwidth.grid--6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 567px) {
  .grid.grid--fullwidth.grid--2 {
    grid-template-columns: 1fr;
  }
  .grid.grid--contained.grid--2 {
    grid-template-columns: 1fr;
  }
  .grid.grid--fullwidth.grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.grid--contained.grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.grid--contained.grid--6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.grid--fullwidth.grid--6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bg__main {
  background-color: #F3A120;
}
.bg__main h1,
.bg__main h2,
.bg__main h3,
.bg__main h4,
.bg__main h5,
.bg__main h6,
.bg__main p,
.bg__main li,
.bg__main figcaption {
  color: #ffffff !important;
}
.bg__main a:not([class]) {
  color: #4e1300;
}
.bg__main a:not([class]):hover {
  text-decoration: underline;
  color: #4e1300;
}
.bg__main table {
  margin-bottom: 25px;
  border-collapse: collapse;
}
.bg__main table tr th {
  background-color: #4e1300;
  color: #fff;
  padding: 5px 15px;
  border: 1px solid #4e1300;
}
.bg__main table tr td {
  padding: 5px 15px;
  border: 1px solid #4e1300;
  color: #fff;
}
.bg__main table[border="0"] tr th {
  background-color: #4e1300;
  color: #fff;
  padding: 5px;
  border: none;
}
.bg__main table[border="0"] tr td {
  padding: 5px;
  border: none;
  color: #fff;
}

.bg__accent {
  background-color: #4e1300;
}
.bg__accent h1,
.bg__accent h2,
.bg__accent h3,
.bg__accent h4,
.bg__accent h5,
.bg__accent h6,
.bg__accent p,
.bg__accent li,
.bg__accent figcaption {
  color: #ffffff !important;
}
.bg__accent a:not([class]) {
  color: #F3A120;
}
.bg__accent a:not([class]):hover {
  text-decoration: underline;
  color: #F3A120;
}
.bg__accent table {
  margin-bottom: 25px;
  border-collapse: collapse;
}
.bg__accent table tr th {
  background-color: #F3A120;
  color: #fff;
  padding: 5px 15px;
  border: 1px solid #F3A120;
}
.bg__accent table tr td {
  padding: 5px 15px;
  border: 1px solid #F3A120;
  color: #fff;
}
.bg__accent table[border="0"] tr th {
  background-color: #F3A120;
  color: #fff;
  padding: 5px;
  border: none;
}
.bg__accent table[border="0"] tr td {
  padding: 5px;
  border: none;
  color: #fff;
}

.bg__gray {
  background-color: #f2f2f2;
}
.bg__gray a:not([class]) {
  color: #4e1300;
}
.bg__gray a:not([class]):hover {
  text-decoration: underline;
  color: #4e1300;
}
.bg__gray table {
  margin-bottom: 25px;
  border-collapse: collapse;
}
.bg__gray table tr th {
  background-color: #F3A120;
  color: #000;
  padding: 5px 15px;
  border: 1px solid #F3A120;
}
.bg__gray table tr td {
  padding: 5px 15px;
  border: 1px solid #F3A120;
  color: #000;
}
.bg__gray table[border="0"] tr th {
  background-color: #F3A120;
  color: #000;
  padding: 5px;
  border: none;
}
.bg__gray table[border="0"] tr td {
  padding: 5px;
  border: none;
  color: #000;
}

.btn__main--solid {
  display: block;
  text-align: center;
  min-width: 175px;
  padding-inline: 40px;
  width: fit-content;
  padding-block: 10px;
  background-color: #F3A120;
  color: #fff;
  border: 1px solid #F3A120;
  cursor: pointer;
}
.btn__main--solid:hover {
  background-color: #4e1300;
  border-color: #4e1300;
  color: #fff;
}

.btn__main--ghost {
  display: block;
  text-align: center;
  min-width: 175px;
  padding-inline: 40px;
  width: fit-content;
  padding-block: 10px;
  background-color: transparent;
  color: #F3A120;
  border: 1px solid #F3A120;
  cursor: pointer;
}
.btn__main--ghost:hover {
  background-color: hsl(36.682464455, 89.7872340426%, 133.9215686275%);
  color: #F3A120;
}

.btn__accent--solid {
  display: block;
  text-align: center;
  min-width: 175px;
  padding-inline: 40px;
  width: fit-content;
  padding-block: 10px;
  background-color: #4e1300;
  color: #fff;
  border: 1px solid #4e1300;
  cursor: pointer;
}
.btn__accent--solid:hover {
  background-color: #F3A120;
  border-color: #F3A120;
  color: #fff;
}

.btn__accent--ghost {
  display: block;
  text-align: center;
  min-width: 175px;
  padding-inline: 40px;
  width: fit-content;
  padding-block: 10px;
  background-color: transparent;
  color: #4e1300;
  border: 1px solid #4e1300;
  cursor: pointer;
}
.btn__accent--ghost:hover {
  background-color: rgb(255, 121.1153846154, 78);
  color: #4e1300;
}

.content-col-1 {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  margin-inline: auto;
}

.content-col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 567px) {
  .content-col-2 {
    grid-template-columns: 1fr;
  }
}

.content-col-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 769px) {
  .content-col-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 567px) {
  .content-col-3 {
    grid-template-columns: 1fr;
  }
}

.content-col-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  margin-inline: auto;
}
.content-col-4 img {
  margin-inline: auto;
}
@media screen and (max-width: 769px) {
  .content-col-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 567px) {
  .content-col-4 {
    grid-template-columns: 1fr;
  }
}

.features__section {
  background-repeat: no-repeat;
  background-size: cover;
}
.features__section .wrapper {
  display: grid;
  gap: 30px;
}
.features__section.grid--fullwidth .wrapper {
  max-width: 1920px;
}
.features__section.features__grid--2 .wrapper {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 567px) {
  .features__section.features__grid--2 .wrapper {
    grid-template-columns: 1fr;
  }
}
.features__section.features__grid--3 .wrapper {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 567px) {
  .features__section.features__grid--3 .wrapper {
    grid-template-columns: 1fr;
  }
}
.features__section.features__grid--4 .wrapper {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 769px) {
  .features__section.features__grid--4 .wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 567px) {
  .features__section.features__grid--4 .wrapper {
    grid-template-columns: 1fr;
  }
}
.features__section.featureimage--full .features__box {
  padding: 0 !important;
}
.features__section.featureimage--full .features__box .image img {
  width: 100%;
  object-fit: cover;
}
.features__section.featureimage--full .features__box .text {
  padding: 30px 30px 30px 30px;
}
.features__section.featureimage--full .features__box .text > :last-child {
  margin-bottom: 0;
}
.features__section .boxshadow {
  box-shadow: 0 8px 15px 0 rgba(80, 80, 80, 0.37);
}
.features__section .boxshadow:hover {
  box-shadow: 0px 10px 15px 8px rgba(57, 57, 57, 0.37);
}
.features__section .features__box {
  padding: 30px;
  transition: all 0.5s ease-in-out;
}
.features__section .features__box .image {
  display: flex;
  justify-content: center;
}
.features__section .features__box .image img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.features__section .features__box .text {
  padding: 0 !important;
  color: #000;
  display: grid;
  align-content: flex-start;
}
.features__section .features__box .text > *:last-child {
  margin: 0 !important;
}
.features__section .features__box .text h2,
.features__section .features__box .text h3,
.features__section .features__box .text p {
  margin: 0;
}
.features__section .features__box .text h2 {
  font-size: 21px;
  line-height: 25px;
  text-align: center;
  padding-top: 15px;
  margin-bottom: 15px;
}
.features__section .features__box .text p {
  font-size: 16px;
}
.features__section .features__box p {
  margin-bottom: 0;
}
.features__section .features__box p,
.features__section .features__box a {
  color: inherit;
}

.features__section.img__position--left .features__box {
  display: flex;
  gap: 30px;
}
.features__section.img__position--left .features__box .image {
  flex: 0 0 33%;
}
.features__section.img__position--left .features__box .text {
  flex: 0 1 auto;
  width: 100%;
  padding-block: 0;
}
.features__section.img__position--left .features__box .text > :last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 567px) {
  .features__section.img__position--left .features__box {
    flex-direction: column;
  }
  .features__section.img__position--left .features__box .image {
    flex: 0 1 auto;
    width: 100%;
  }
}
.features__section.img__position--left.featureimage--full .features__box .text {
  padding-left: 0;
  padding-block: 10px;
}
.features__section.img__position--left.featureimage--full .features__box .text > :last-child {
  margin-bottom: 0;
}

.tabbed__section {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: block;
  position: relative;
  padding-inline: 1em;
  /* Style the tab */
  /* Style the buttons inside the tab */
  /* Change background color of buttons on hover */
  /* Create an active/current tablink class */
  /* Style the tab content */
}
.tabbed__section .wrapper {
  display: flex;
  gap: 30px;
}
.tabbed__section .wrapper .tabs {
  flex: 0 1 auto;
  width: 100%;
}
.tabbed__section .wrapper .image {
  flex: 0 0 300px;
  max-width: 300px;
  position: relative;
}
.tabbed__section .wrapper .image .owl-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0%);
  display: flex;
  gap: 30px;
  line-height: 1;
}
.tabbed__section .wrapper .image .owl-nav .owl-next,
.tabbed__section .wrapper .image .owl-nav .owl-prev {
  height: 50px;
  width: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.3137254902);
}
.tabbed__section .wrapper .image .owl-nav .owl-next span,
.tabbed__section .wrapper .image .owl-nav .owl-prev span {
  display: block;
  margin-top: -5px;
  font-size: 40px;
}
.tabbed__section .wrapper .image .owl-dots {
  display: none;
}
.tabbed__section .tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}
.tabbed__section .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}
.tabbed__section .tab button:hover {
  background-color: #4e1300;
  color: #fff;
}
.tabbed__section .tab button.active {
  background-color: #4e1300;
  color: #fff;
}
.tabbed__section .tabcontent {
  display: none;
  padding: 15px;
  border: 1px solid #ccc;
  border-top: none;
}
.tabbed__section .tabcontent h2,
.tabbed__section .tabcontent h3,
.tabbed__section .tabcontent h4,
.tabbed__section .tabcontent h5,
.tabbed__section .tabcontent h6 {
  margin-bottom: 15px;
}
.tabbed__section .tabcontent > *:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 567px) {
  .tabbed__section .wrapper {
    flex-direction: column;
  }
  .tabbed__section .wrapper .image {
    flex: 0 1 auto;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
}

.banner__strip {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding-block: 30px;
  padding-inline: 1em;
  display: block;
}
.banner__strip h2 {
  text-align: center;
  margin: 0;
}

.newsletter--solid {
  display: block;
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
  background-color: #f5f5f5;
  padding-inline: 1em;
  padding-block: 30px;
  color: #000;
}
.newsletter--solid .newsletter {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.newsletter--solid .newsletter .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.newsletter--solid .newsletter .text > :last-child {
  margin-bottom: 0;
}
.newsletter--solid .newsletter .text h2 {
  margin: 0;
  padding-bottom: 10px;
  font-size: 36px !important;
}
.newsletter--solid .newsletter .text p {
  margin: 0;
  padding: 0;
}
.newsletter--solid .newsletter .button {
  display: flex;
  align-items: center;
}
.newsletter--solid.bg__main {
  background-color: rgba(195, 46, 0, 0.1176470588);
}
.newsletter--solid.bg__main .text > :last-child {
  margin-bottom: 0;
}
.newsletter--solid.bg__main .text h2,
.newsletter--solid.bg__main .text p {
  color: #000 !important;
}
.newsletter--solid.bg__main .text a {
  color: #000;
}
.newsletter--solid.bg__main .text a:hover {
  text-decoration: underline;
}
.newsletter--solid.bg__main .button .btn__main--ghost {
  border-color: #000;
  color: #000;
}
.newsletter--solid.bg__main .button .btn__main--ghost:hover {
  background-color: #F3A120;
  color: #fff;
  border-color: #F3A120;
}
.newsletter--solid.bg__accent {
  background-color: rgba(205, 153, 51, 0.1176470588);
}
.newsletter--solid.bg__accent .text > :last-child {
  margin-bottom: 0;
}
.newsletter--solid.bg__accent .text h2,
.newsletter--solid.bg__accent .text p {
  color: #000 !important;
}
.newsletter--solid.bg__accent .text a {
  color: #000;
}
.newsletter--solid.bg__accent .text a:hover {
  text-decoration: underline;
}
.newsletter--solid.bg__accent .button .btn__main--ghost {
  border-color: #000;
  color: #000;
}
.newsletter--solid.bg__accent .button .btn__main--ghost:hover {
  background-color: #F3A120;
  color: #fff;
  border-color: #F3A120;
}
.newsletter--solid.bg__gray {
  background-color: #f2f2f2;
}
.newsletter--solid.bg__gray .text > :last-child {
  margin-bottom: 0;
}
.newsletter--solid.bg__gray .text h2,
.newsletter--solid.bg__gray .text p {
  color: #000 !important;
}
.newsletter--solid.bg__gray .text a {
  color: #F3A120;
}
.newsletter--solid.bg__gray .text a:hover {
  color: #4e1300;
  text-decoration: underline;
}
@media screen and (max-width: 567px) {
  .newsletter--solid .newsletter {
    flex-direction: column;
  }
  .newsletter--solid .newsletter .text {
    align-items: center;
  }
  .newsletter--solid .newsletter .text h2,
  .newsletter--solid .newsletter .text p {
    text-align: center;
  }
}

.services__stack {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  background-color: #f2f2f2;
  padding-block: 60px;
  padding-inline: 1em;
}
.services__stack h2 {
  font-size: 36px;
  font-weight: 700;
}
.services__stack h2,
.services__stack p {
  text-align: center;
}
.services__stack .btn__main {
  background-color: #ccc;
  color: #000;
}
.services__stack .btn__main:hover {
  background-color: #000;
  color: #ccc;
  cursor: pointer;
}
.services__stack .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.services__stack .text > :last-child {
  margin-bottom: 0;
}
.services__stack .text p,
.services__stack .text h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.services__stack .image {
  position: relative;
  overflow: hidden;
}
.services__stack .image:hover img {
  scale: 1.2;
}
.services__stack img {
  filter: brightness(0.5);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.services__stack .services__stack--grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 175px 175px;
}
.services__stack .services__stack--grid .main {
  grid-row: 1/-1;
}
@media screen and (max-width: 1281px) {
  .services__stack .services__stack--grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 175px 175px 175px;
  }
  .services__stack .services__stack--grid .main {
    grid-row: 1/3;
  }
  .services__stack .services__stack--grid figure,
  .services__stack .services__stack--grid img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 567px) {
  .services__stack .services__stack--grid {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }
  .services__stack .services__stack--grid .main {
    grid-row: unset;
  }
}
.services__stack .button {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.grid__stack {
  display: block;
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
  padding-block: 30px;
}
.grid__stack .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
}
.grid__stack .box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.grid__stack .box .grid__stack__heading {
  font-family: "Bebas Neue", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  width: 100%;
  padding-inline: 1em;
  text-align: center;
  text-transform: uppercase;
}
.grid__stack img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.5);
}
.grid__stack .grid__three--1 {
  grid-template-columns: unset;
  grid-template-areas: "box-one box-one box-two box-two" "box-one box-one box-three box-three";
}
.grid__stack .grid__three--1 .box--one {
  grid-area: box-one;
}
.grid__stack .grid__three--1 .box--two {
  grid-area: box-two;
}
.grid__stack .grid__three--1 .box--three {
  grid-area: box-three;
}
@media (width < 48em) {
  .grid__stack .grid__three--1 {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "box-one box-one" "box-two box-two" "box-three box-three";
  }
}
.grid__stack .grid__three--1.mirror {
  grid-template-columns: unset;
  grid-template-areas: "box-two box-two box-one box-one" "box-three box-three box-one box-one";
}
.grid__stack .grid__three--1.mirror .box--one {
  grid-area: box-one;
}
.grid__stack .grid__three--1.mirror .box--two {
  grid-area: box-two;
}
.grid__stack .grid__three--1.mirror .box--three {
  grid-area: box-three;
}
@media (width < 48em) {
  .grid__stack .grid__three--1.mirror {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "box-two box-two" "box-three box-three" "box-one box-one";
  }
}
.grid__stack .grid__three--2 {
  grid-template-columns: unset;
  grid-template-areas: "box-one box-one box-two box-three";
}
.grid__stack .grid__three--2 .box--one {
  grid-area: box-one;
}
.grid__stack .grid__three--2 .box--two {
  grid-area: box-two;
}
.grid__stack .grid__three--2 .box--three {
  grid-area: box-three;
}
@media (width < 48em) {
  .grid__stack .grid__three--2 {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "box-one box-one" "box-two box-three";
  }
}
.grid__stack .grid__three--2.mirror {
  grid-template-columns: unset;
  grid-template-areas: "box-two box-three box-one box-one";
}
.grid__stack .grid__three--2.mirror .box--one {
  grid-area: box-one;
}
.grid__stack .grid__three--2.mirror .box--two {
  grid-area: box-two;
}
.grid__stack .grid__three--2.mirror .box--three {
  grid-area: box-three;
}
@media (width < 48em) {
  .grid__stack .grid__three--2.mirror {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "box-two box-three" "box-one box-one";
  }
}
.grid__stack .grid__four--1 {
  grid-template-columns: unset;
  grid-template-areas: "box-one box-two box-four box-four" "box-three box-three box-four box-four";
}
.grid__stack .grid__four--1 .box--one {
  grid-area: box-one;
}
.grid__stack .grid__four--1 .box--two {
  grid-area: box-two;
}
.grid__stack .grid__four--1 .box--three {
  grid-area: box-three;
}
.grid__stack .grid__four--1 .box--four {
  grid-area: box-four;
}
@media (width < 48em) {
  .grid__stack .grid__four--1 {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "box-one box-two" "box-three box-three" "box-four box-four";
  }
}
.grid__stack .grid__four--1.mirror {
  grid-template-columns: unset;
  grid-template-areas: "box-four box-four box-one box-two" "box-four box-four box-three box-three";
}
.grid__stack .grid__four--1.mirror .box--one {
  grid-area: box-one;
}
.grid__stack .grid__four--1.mirror .box--two {
  grid-area: box-two;
}
.grid__stack .grid__four--1.mirror .box--three {
  grid-area: box-three;
}
.grid__stack .grid__four--1.mirror .box--four {
  grid-area: box-four;
}
@media (width < 48em) {
  .grid__stack .grid__four--1.mirror {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "box-four box-four" "box-one box-two" "box-three box-three";
  }
}
.grid__stack .grid__five--1 {
  grid-template-areas: "box-one box-one box-two box-three" "box-one box-one box-four box-five";
}
.grid__stack .grid__five--1 .box--one {
  grid-area: box-one;
}
.grid__stack .grid__five--1 .box--two {
  grid-area: box-two;
}
.grid__stack .grid__five--1 .box--three {
  grid-area: box-three;
}
.grid__stack .grid__five--1 .box--four {
  grid-area: box-four;
}
.grid__stack .grid__five--1 .box--five {
  grid-area: box-five;
}
@media (width < 48em) {
  .grid__stack .grid__five--1 {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "box-one box-one" "box-one box-one" "box-two box-three" "box-four box-five";
  }
}
.grid__stack .grid__five--1.mirror {
  grid-template-areas: "box-two box-three box-one box-one" "box-four box-five box-one box-one";
}
.grid__stack .grid__five--1.mirror .box--one {
  grid-area: box-one;
}
.grid__stack .grid__five--1.mirror .box--two {
  grid-area: box-two;
}
.grid__stack .grid__five--1.mirror .box--three {
  grid-area: box-three;
}
.grid__stack .grid__five--1.mirror .box--four {
  grid-area: box-four;
}
.grid__stack .grid__five--1.mirror .box--five {
  grid-area: box-five;
}
@media (width < 48em) {
  .grid__stack .grid__five--1.mirror {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "box-two box-three" "box-four box-five" "box-one box-one" "box-one box-one";
  }
}
.grid__stack .grid__five--2 {
  grid-template-columns: unset;
  grid-template-areas: "box-one box-one box-two box-two" "box-one box-one box-three box-three" "box-four box-four box-five box-five";
}
.grid__stack .grid__five--2 .box--one {
  grid-area: box-one;
}
.grid__stack .grid__five--2 .box--two {
  grid-area: box-two;
}
.grid__stack .grid__five--2 .box--three {
  grid-area: box-three;
}
.grid__stack .grid__five--2 .box--four {
  grid-area: box-four;
}
.grid__stack .grid__five--2 .box--five {
  grid-area: box-five;
}
@media (width < 48em) {
  .grid__stack .grid__five--2 {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "box-one box-one" "box-two box-two" "box-three box-three" "box-four box-four" "box-five box-five";
  }
}
.grid__stack .grid__five--2.mirror {
  grid-template-columns: unset;
  grid-template-areas: "box-two box-two box-one box-one" "box-three box-three box-one box-one" "box-five box-five box-four box-four";
}
.grid__stack .grid__five--2.mirror .box--one {
  grid-area: box-one;
}
.grid__stack .grid__five--2.mirror .box--two {
  grid-area: box-two;
}
.grid__stack .grid__five--2.mirror .box--three {
  grid-area: box-three;
}
.grid__stack .grid__five--2.mirror .box--four {
  grid-area: box-four;
}
.grid__stack .grid__five--2.mirror .box--five {
  grid-area: box-five;
}
@media (width < 48em) {
  .grid__stack .grid__five--2.mirror {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "box-two box-two" "box-three box-three" "box-five box-five" "box-one box-one" "box-four box-four";
  }
}
.grid__stack .grid__five--3 {
  grid-template-columns: unset;
  grid-template-areas: "box-one box-one box-two box-three" "box-four box-four box-five box-five";
}
.grid__stack .grid__five--3 .box--one {
  grid-area: box-one;
}
.grid__stack .grid__five--3 .box--two {
  grid-area: box-two;
}
.grid__stack .grid__five--3 .box--three {
  grid-area: box-three;
}
.grid__stack .grid__five--3 .box--four {
  grid-area: box-four;
}
.grid__stack .grid__five--3 .box--five {
  grid-area: box-five;
}
@media (width < 48em) {
  .grid__stack .grid__five--3 {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "box-one box-one" "box-four box-four" "box-two box-three" "box-five box-five";
  }
}
.grid__stack .grid__five--3.mirror {
  grid-template-columns: unset;
  grid-template-areas: "box-two box-three box-one box-one" "box-five box-five box-four box-four";
}
.grid__stack .grid__five--3.mirror .box--one {
  grid-area: box-one;
}
.grid__stack .grid__five--3.mirror .box--two {
  grid-area: box-two;
}
.grid__stack .grid__five--3.mirror .box--three {
  grid-area: box-three;
}
.grid__stack .grid__five--3.mirror .box--four {
  grid-area: box-four;
}
.grid__stack .grid__five--3.mirror .box--five {
  grid-area: box-five;
}
@media (width < 48em) {
  .grid__stack .grid__five--3.mirror {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "box-two box-three" "box-five box-five" "box-one box-one" "box-four box-four";
  }
}
.grid__stack .grid__five--4 {
  grid-template-columns: unset;
  grid-template-areas: "box-one box-two box-two box-three" "box-four box-four box-five box-five";
}
.grid__stack .grid__five--4 .box--one {
  grid-area: box-one;
}
.grid__stack .grid__five--4 .box--two {
  grid-area: box-two;
}
.grid__stack .grid__five--4 .box--three {
  grid-area: box-three;
}
.grid__stack .grid__five--4 .box--four {
  grid-area: box-four;
}
.grid__stack .grid__five--4 .box--five {
  grid-area: box-five;
}
@media (width < 48em) {
  .grid__stack .grid__five--4 {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "box-one box-three" "box-two box-two" "box-four box-four" "box-five box-five";
  }
}
.grid__stack .grid__five--4.mirror {
  grid-template-columns: unset;
  grid-template-areas: "box-four box-four box-five box-five" "box-one box-two box-two box-three";
}
.grid__stack .grid__five--4.mirror .box--one {
  grid-area: box-one;
}
.grid__stack .grid__five--4.mirror .box--two {
  grid-area: box-two;
}
.grid__stack .grid__five--4.mirror .box--three {
  grid-area: box-three;
}
.grid__stack .grid__five--4.mirror .box--four {
  grid-area: box-four;
}
.grid__stack .grid__five--4.mirror .box--five {
  grid-area: box-five;
}
@media (width < 48em) {
  .grid__stack .grid__five--4.mirror {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "box-four box-four" "box-five box-five" "box-one box-three" "box-two box-two";
  }
}
@media (width < 67em) {
  .grid__stack {
    padding-inline: 1em;
  }
}

/*# sourceMappingURL=content_controlls.css.map */
