* {
  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;
}

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

table[border="0"] tr th {
  background-color: #ffffff;
  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;
}
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: -30px;
  position: relative;
  border-radius: 5px;
  width: calc(100% - 15px);
  margin-inline: auto;
  padding-inline: 1em;
  text-align: center;
  color: #474747;
  padding-block: 1em;
}

.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 img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.image__left .wrapper .image figure figcaption {
  color: #000;
}
.image__left .wrapper .text {
  order: 2;
}
@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 img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.image__right .wrapper .text {
  order: 1;
}
@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;
  }
}

.background__image {
  position: relative;
  isolation: isolate;
  display: grid;
}
.background__image .wrapper {
  position: unset !important;
}
.background__image .text h2,
.background__image .text p {
  color: #ffffff;
}
.background__image .image {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.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 {
  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: 1280px;
  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: #454545;
}
.bg__main h1,
.bg__main h2,
.bg__main h3,
.bg__main h4,
.bg__main h5,
.bg__main h6,
.bg__main p, .bg__main li {
  color: #ffffff !important;
}
.bg__main a:not([class]) {
  color: #ffffff;
  text-decoration: underline;
}
.bg__main a:not([class]):hover {
  color: #ED2224;
}
.bg__main table {
  margin-bottom: 25px;
  border-collapse: collapse;
}
.bg__main table tr th {
  background-color: #ED2224;
  color: #fff;
  padding: 5px 15px;
  border: 1px solid #ED2224;
}
.bg__main table tr td {
  padding: 5px 15px;
  border: 1px solid #ED2224;
  color: #fff;
}
.bg__main table[border="0"] tr th {
  background-color: #ED2224;
  color: #fff;
  padding: 5px;
  border: none;
}
.bg__main table[border="0"] tr td {
  padding: 5px;
  border: none;
  color: #fff;
}

.bg__accent {
  background-color: #ED2224;
}
.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: #ffffff;
}
.bg__accent a:not([class]):hover {
  text-decoration: underline;
  color: #ffffff;
}
.bg__accent table {
  margin-bottom: 25px;
  border-collapse: collapse;
}
.bg__accent table tr th {
  background-color: #ffffff;
  color: #fff;
  padding: 5px 15px;
  border: 1px solid #ffffff;
}
.bg__accent table tr td {
  padding: 5px 15px;
  border: 1px solid #ffffff;
  color: #fff;
}
.bg__accent table[border="0"] tr th {
  background-color: #ffffff;
  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: #ED2224;
}
.bg__gray a:not([class]):hover {
  text-decoration: underline;
  color: #ED2224;
}
.bg__gray table {
  margin-bottom: 25px;
  border-collapse: collapse;
}
.bg__gray table tr th {
  background-color: #ffffff;
  color: #000;
  padding: 5px 15px;
  border: 1px solid #ffffff;
}
.bg__gray table tr td {
  padding: 5px 15px;
  border: 1px solid #ffffff;
  color: #000;
}
.bg__gray table[border="0"] tr th {
  background-color: #ffffff;
  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: #454545;
  color: #fff;
  border: 1px solid #454545;
  cursor: pointer;
}
.btn__main--solid:hover {
  background-color: #ED2224;
  border-color: #ED2224;
  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: #454545;
  border: 1px solid #454545;
  cursor: pointer;
}
.btn__main--ghost:hover {
  background-color: #ED2224;
  border-color: #ED2224;
  color: #fff;
}

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

.btn__accent--ghost {
  display: block;
  text-align: center;
  min-width: 175px;
  padding-inline: 40px;
  width: fit-content;
  padding-block: 10px;
  background-color: transparent;
  color: #ED2224;
  border: 1px solid #ED2224;
  cursor: pointer;
}
.btn__accent--ghost:hover {
  background-color: hsl(359.4088669951, 84.9372384937%, 103.137254902%);
  color: #ED2224;
}

.content-col-1 {
  display: grid;
  grid-template-columns: 1fr;
}

.content-col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@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;
}
@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;
  }
}

.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 .features__box {
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 15px 0 rgba(80, 80, 80, 0.37);
  backdrop-filter: blur(14.5px);
  -webkit-backdrop-filter: blur(14.5px);
  border-radius: 10px;
  padding: 30px;
  overflow: hidden;
  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-top: 30px;
  color: #000;
  display: grid;
  align-content: flex-start;
  gap: 25px;
}
.features__section .features__box .text h2, .features__section .features__box .text h3, .features__section .features__box .text p {
  margin: 0;
}
.features__section .features__box p {
  margin-bottom: 0;
}
.features__section .features__box p, .features__section .features__box a {
  color: inherit;
}
.features__section .features__box:hover {
  box-shadow: 0px 10px 15px 8px rgba(57, 57, 57, 0.37);
}

.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;
}
@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;
}

.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 50%;
  max-width: 50%;
  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: #ED2224;
  color: #fff;
}
.tabbed__section .tab button.active {
  background-color: #ED2224;
  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;
  background-color: #ED2224;
}
.banner__strip h2 {
  text-align: center;
  color: #ffffff !important;
  margin: 0;
}
.banner__strip .bg__main {
  background-color: #454545;
}
.banner__strip .bg__main h1,
.banner__strip .bg__main h2,
.banner__strip .bg__main h3,
.banner__strip .bg__main h4,
.banner__strip .bg__main h5,
.banner__strip .bg__main h6,
.banner__strip .bg__main p, .banner__strip .bg__main li, .banner__strip .bg__main figcaption {
  color: #ffffff !important;
  margin: 0;
}
.banner__strip .bg__main a:not([class]) {
  color: #ED2224;
}
.banner__strip .bg__main a:not([class]):hover {
  text-decoration: underline;
  color: #ED2224;
}
.banner__strip .bg__accent {
  background-color: #ED2224;
}
.banner__strip .bg__accent h1,
.banner__strip .bg__accent h2,
.banner__strip .bg__accent h3,
.banner__strip .bg__accent h4,
.banner__strip .bg__accent h5,
.banner__strip .bg__accent h6,
.banner__strip .bg__accent p, .banner__strip .bg__accent li, .banner__strip .bg__accent figcaption {
  color: #ffffff !important;
  margin: 0;
}
.banner__strip .bg__accent a:not([class]) {
  color: #ffffff;
}
.banner__strip .bg__accent a:not([class]):hover {
  text-decoration: underline;
  color: #ffffff;
}
.banner__strip .bg__gray {
  background-color: #f2f2f2;
}
.banner__strip .bg__gray h2, .banner__strip .bg__gray h3, .banner__strip .bg__gray h4, .banner__strip .bg__gray h5, .banner__strip .bg__gray h6, .banner__strip .bg__gray p {
  margin: 0;
}
.banner__strip .bg__gray a:not([class]) {
  color: #ED2224;
}
.banner__strip .bg__gray a:not([class]):hover {
  text-decoration: underline;
  color: #ED2224;
}

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