/**
 * Three Column Table Component Styles
 */
/**************************************************
Stylesheet: Defaults Stylesheet
**************************************************/
/**************************************************
Theme Color Variables
Description: Centralized theme color system for component portability
**************************************************/
/**************************************************
Stylesheet: Defaults Stylesheet
**************************************************/
/**
 * Three Column Table Component Styles
 */
/**************************************************
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);
*********************/
/*********************
Enhanced CTA Button with Ripple Effect
Usage: @include enhanced-cta-button($bg-color, $text-color, $border-color, $hover-bg, $hover-text);
Example: @include enhanced-cta-button($brand-primary, $brand-white, $brand-primary, transparent, $brand-primary);
*********************/
.three-column-table-component {
  width: 100%;
  padding: 52px 0;
}
.three-column-table-component .three-column-table-container {
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 20px;
}
.three-column-table-component .three-column-table-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 45px;
  margin: 0 0 32px 0;
  text-transform: uppercase;
  color: #252526;
  text-align: center;
}
@media (max-width: 768px) {
  .three-column-table-component .three-column-table-title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 24px;
  }
}
.three-column-table-component .three-column-table-wrapper {
  overflow-x: auto;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .three-column-table-component .three-column-table-wrapper {
    -webkit-overflow-scrolling: touch;
  }
}
.three-column-table-component .three-column-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.three-column-table-component .three-column-table thead tr {
  background-color: #A32135;
}
.three-column-table-component .three-column-table thead tr th {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 16px 20px;
  text-align: left;
  border-bottom: 2px solid rgb(120.5867346939, 24.4132653061, 39.2091836735);
}
@media (max-width: 768px) {
  .three-column-table-component .three-column-table thead tr th {
    font-size: 16px;
    padding: 12px 16px;
  }
}
@media (max-width: 480px) {
  .three-column-table-component .three-column-table thead tr th {
    font-size: 14px;
    padding: 10px 12px;
  }
}
.three-column-table-component .three-column-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
}
.three-column-table-component .three-column-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
.three-column-table-component .three-column-table tbody tr:last-child {
  border-bottom: none;
}
.three-column-table-component .three-column-table tbody tr td {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #252526;
  padding: 16px 20px;
  vertical-align: top;
}
@media (max-width: 768px) {
  .three-column-table-component .three-column-table tbody tr td {
    font-size: 14px;
    line-height: 20px;
    padding: 12px 16px;
  }
}
@media (max-width: 480px) {
  .three-column-table-component .three-column-table tbody tr td {
    font-size: 13px;
    line-height: 18px;
    padding: 10px 12px;
  }
}
.three-column-table-component .three-column-table tbody tr td p {
  margin: 0 0 8px 0;
}
.three-column-table-component .three-column-table tbody tr td p:last-child {
  margin-bottom: 0;
}
.three-column-table-component .three-column-table tbody tr td ul, .three-column-table-component .three-column-table tbody tr td ol {
  margin: 0;
  padding-left: 20px;
}
.three-column-table-component .three-column-table tbody tr td ul li, .three-column-table-component .three-column-table tbody tr td ol li {
  margin-bottom: 4px;
}
.three-column-table-component .three-column-table tbody tr td ul li:last-child, .three-column-table-component .three-column-table tbody tr td ol li:last-child {
  margin-bottom: 0;
}
.three-column-table-component .three-column-table tbody tr td strong {
  font-weight: 600;
}
.three-column-table-component .three-column-table tbody tr td em {
  font-style: italic;
}
.three-column-table-component .three-column-table tbody tr td a {
  color: #A32135;
  text-decoration: underline;
}
.three-column-table-component .three-column-table tbody tr td a:hover {
  color: rgb(99.3801020408, 20.1198979592, 32.3137755102);
}

@media (max-width: 1024px) {
  .three-column-table-component {
    padding: 40px 0;
  }
  .three-column-table-component .three-column-table-container {
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .three-column-table-component {
    padding: 30px 0;
  }
  .three-column-table-component .three-column-table {
    min-width: 600px;
  }
}
@media (max-width: 480px) {
  .three-column-table-component {
    padding: 25px 0;
  }
  .three-column-table-component .three-column-table-container {
    padding: 0 10px;
  }
  .three-column-table-component .three-column-table {
    min-width: 500px;
  }
}
