/* css */
:root {
  --max-content-width: 1790px;
  --max-content-secondary-width: 1920px;
}

header {box-shadow: 0px 0px 0px #f903;}

.flex-direction-nav a {line-height:1;}
.homeslide {
  display:grid;
  grid-template-columns: minmax(min-content, calc(100vw / 2.5)) 1fr;
  grid-gap:0;
  color:#fff;
  align-items: stretch;
  font-size: 3rem;
  background:#000;
  overflow:hidden;
  padding:0;
  max-height:600px;
}
.homeslide img {object-fit: cover;height:600px;width:auto; }
.homeslide h2 {color: #fff;font-size:6rem;font-family: 'Archivo Black', sans-serif;}
.homeslide h3 {color: orange;font-size:5rem;font-family: 'Ubuntu', sans-serif;}

.homeslide .content-column {
  text-align:center;
  background:
    url(images/flame.svg) no-repeat center center / 60%, 
    url(images/slideshow_bg_v2.svg) no-repeat center right / 130% 130%;
  display:flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 20px;
  position:relative;
}

.homeslide .image-column {
  display:flex;
  flex-direction: row;
  justify-content: center;
}

main {padding:0;}
.hero {padding:20px; background:#efefef;}
.hero-slideshow {overflow:hidden;background:none;padding:0;}
.hero-slideshow img {}

.corporate-icons {padding:0;}
.corporate-icons p {
  display: flex;
  flex: 1 1 auto;
  display: flex;
  flex: 1 1 calc(100% / 6);
  align-content: center;
  align-items: center;
  justify-content: space-evenly;
  margin: 20px 0;
  flex-wrap: wrap;
}

.corporate-icons img {margin:15px 30px;}

.grid-cards-4 {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-cards-4 .card {
  padding:10px 28px;
  background:#efefef;
  border:6px solid #fff;
  border-width: 6px 4px 6px 4px;
  height: 100%;
}

.grid-cards-4 .card-header p {margin:0;}
.grid-cards-4 .card-header {
  margin: 0;
  background: #262626;
  text-align: center;
  color: #999;
  border-right: 2px solid #666;
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 2;
  padding: 8px 22px;
}

.grid-cards-4 .card h2 {font-size: 2.4rem;font-weight: bold;margin-bottom:1.5rem;line-height:1.5;}
.grid-cards-4 .card h2::before {
  content: '';
  background: url(images/flame_color.svg) no-repeat center center / contain;
  height: 45px;
  width: 56px;
  display: block;
  float: left;
  margin-right: 16px;
  line-height:1.5;
}

.grid-cards-4 a:last-of-type {
  display: block;
  text-align: center;
  margin-top: 12px;
}

@media (max-width: 1024px),(max-device-width: 1024px){
  .grid-cards-4 {grid-template-columns: 1fr 1fr;}
  .homeslide h2 {font-size:4rem;}
  .homeslide h3 {font-size:3rem;}
}

@media (max-width: 800px),(max-device-width: 800px){
  .grid-cards-4 {grid-template-columns: 1fr;}
  .hero-slideshow {margin-bottom: 10px;}
  .homeslide {grid-template-columns: 1fr;max-height:none;}
  .homeslide img {height:360px;}
}

main > * {
    padding: 20px;
    background: #fff;
}