/**************************************************
Stylesheet: Defaults Stylesheet
**************************************************/
/**************************************************
Stylesheet: Mixins Stylesheet
**************************************************/
/*******************
FONT MIXINS (size, color, weight, line-height)
********************/
/*********************
Column split into X columns
@include column-count(3);
*********************/
/*********************
Column split with px gap
@include column-gap(40px);
*********************/
/*********************
Column split style
@include column-rule-style(solid);
*********************/
/*********************
Column split border
@include column-rule(1px solid #ededed);
*********************/
/*********************
Background gradient 2 color
@include background-gradient($gray, #000);
*********************/
/*********************
Background gradient 3 color
@include accordion-gradient($gray, #000, #666);
*********************/
/*********************
Transform duration by X seconds
@include transition(1.5s);
*********************/
/*********************
Transform Rotate element by x degrees
@include rotate(180);
*********************/
/*********************
Creates a 6px arrow with pure css
@include arrow(#000);
*********************/
/*********************
Clip 10px corner off the bottom right corner
@include cornerclip(#000);
*********************/
/*********************
Clip 3px corner off the bottom right corner
@include cornerclipsmall(#000);
*********************/
/*********************
Clip 10px corner off the top right corner
@include cornercliptop(#000);
*********************/
/*********************
Clip 10px corner off the top left corner
@include cornercliptopleft(#000);
*********************/
.home-commercial {
  padding-top: 32px;
  padding-bottom: 16px;
  position: relative;
  z-index: 9;
  background-color: #fff;
}
.home-commercial h2 {
  font-family: "Oleo Script Swash Caps", cursive;
  font-display: swap;
  font-size: 80px;
  color: #000000;
  font-weight: 500;
  line-height: 80px;
  text-transform: lowercase;
  text-align: center;
  margin-bottom: 12px;
}
.home-commercial h3 {
  font-family: "Jost", sans-serif, Helvetica, Arial, sans-serif;
  font-display: swap;
  font-size: 20px;
  color: #BE413F;
  font-weight: 800;
  line-height: 26px;
  text-align: center;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  margin-top: 0;
}
.home-commercial .wrapper {
  position: relative;
}
.home-commercial .wrapper:before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -50%;
  width: 100%;
  height: 95%;
  border: 2px solid #BE413F;
}
.home-commercial .wrapper-video {
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 */
  position: relative;
}
.home-commercial .wrapper-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .home-commercial {
    padding-top: 64px;
    padding-bottom: 32px;
  }
}
