/****************/
/*** SITEWIDE ***/
/****************/


html, body {
    font-size: 16px;
    background-color: #ffffff;
    text-align: left;
    font-family: Lato, Roboto, Tahoma, Verdana, sans-serif;
    line-height: 1.5;
    color: #1a290e;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    padding: 25% 0 0 0;
}

#fixed-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.25);
}


/*************/
/*** lists ***/
/*************/


ul {
    list-style-position: outside;
    padding-left: 1.5em;
    margin-left: 0; 
}

li {
    text-indent: -0.5em;
    padding-left: 0.5em;
}


/***************/
/*** buttons ***/
/***************/


a.button-white,
a.button-green {
    font-weight: normal !important;
    border-radius: 20px !important;
    border: 1px solid !important;
    padding: 8px 16px !important;
    text-align: center !important;
    display: inline-block !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
}

a.button-white {
    color: #598f31 !important;
    background-color: #ffffff !important;
    border-color: #395c1f !important;
}

a.button-white:hover {
    color: #395c1f !important;
    background-color: #99f553 !important;
    border-color: #395c1f !important;
}

a.button-green {
    color: #ffffff !important;
    background-color: #7ac142 !important;
    border-color: #7ac142 !important;
}

a.button-green:hover {
    color: #395c1f !important;
    background-color: #8dd84c !important;
    border-color: #395c1f !important;
}
a.no-border {
        border: none !important;
}

a.no-border:hover {
        border: none !important;
}


/*************/
/*** boxes ***/
/*************/


.col-boxed {
    font-weight: normal;
    color: #1a290e;
    background-color: #ffffff;
    border-radius: 12px;
    border-color: #bfbfbf;
    border-width: 1px;
    border-style: solid;
    box-shadow: 0px 2px 12px rgba(0,0,0,0.1);
    gap: 1rem;
    padding: 1rem 2rem;
}

/* original - green outline
.col-boxed-outline-green {
    font-weight: normal;
    color: #1a290e;
    background-color: #ffffff;
    border-radius: 12px;
    border-color: #7ac142;
    border-width: 2px;
    border-style: solid;
    gap: 1rem;
    padding: 1rem 2rem;
}
*/

/* new - green shadow */
.col-boxed-outline-green {
    font-weight: normal;
    color: #1a290e;
    background-color: #ffffff;
    border-radius: 12px;
    border-color: #7ac142;
    border-width: 0px;
    border-style: solid;
    box-shadow: 0px 2px 12px rgba(89,143,49,0.2);
    gap: 1rem;
    padding: 1rem 2rem;
}

/* green fill and shadow */
.col-boxed-outline-green-ebffd9 {
    font-weight: normal;
    color: #1a290e;
    background-color: #ebffd9;
    border-radius: 12px;
    border-color: #7ac142;
    border-width: 0px;
    border-style: solid;
    box-shadow: 0px 2px 12px rgba(89,143,49,0.2);
    gap: 1rem;
    padding: 1rem 2rem;
}

/* gray fill and shadow */
.col-boxed-outline-gray-f4f4f4 {
    font-weight: normal;
    color: #1a290e;
    background-color: #f4f4f4;
    border-radius: 12px;
    border-color: #f4f4f4;
    border-width: 0px;
    border-style: solid;
    box-shadow: 0px 2px 12px rgba(89,143,49,0.2);
    gap: 1rem;
    padding: 1rem 2rem;
}

.col-boxed-green {
    font-weight: normal;
    color: #1a290e;
    background-color: #ebffd9;
    border-radius: 12px;
    border-color: #598f31;
    border-width: 1px;
    border-style: solid;
    gap: 1rem;
    padding: 1rem 2rem;
}

.col-boxed-gray-fade {
    font-weight: normal;
    color: #1a290e;
    background: linear-gradient(to right, #f4f4f4, #ffffff);
    border-radius: 25px;
    border-color: #bfbfbf;
    border-width: 0px;
    border-style: solid;
    box-shadow: 0px 2px 12px rgba(0,0,0,0.1);
    gap: 1rem;
    padding: 1rem 2rem;
}


/**************/
/*** tables ***/
/**************/


table {
    border-collapse: collapse;
    width: 100%;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

thead {
    color: #ffffff !important;
    font-weight: bold;
    background-color: #7ac142;
}

th,
td {
    text-align: left;
    padding: 8px 12px;
}

tbody td {
    border-width: 1px;
    border-style: solid;
    border-color: #bfbfbf;
    background-color: #ffffff;
}

table.invisible {
    border-collapse: collapse;
    width: 100%;
}

table.invisible thead {
    color: #598f31 !important;
    font-weight: bold;
    background-color: #ffffff;
}

table.invisible th,
table.invisible td {
    text-align: left;
    padding: 2px 12px;
    border: none;
    background-color: #ffffff;
}


/******************/
/*** font sizes ***/
/******************/


.footer-navigation ul {
  font-size: 2.0rem;
}

.footer-navigation li a:link,
.footer-navigation li a:visited,
.footer-navigation li a:active,
.footer-navigation li a:hover {
  font-size: 1.5rem;
}

.footer-information {
    font-size: 1.5rem;
}

.footer-information a:link,
.footer-information a:visited,
.footer-information a:active,
.footer-information a:hover {
    font-size: 1.5rem;
}

.footer-legal {
    font-size: 1.25rem;
}

.footer-legal a:link,
.footer-legal a:visited,
.footer-legal a:active,
.footer-legal a:hover {
    font-size: 1.25rem;
}

.footer-floating-box {
    font-size: 2.0rem;
}

.footer-floating-box a:link,
.footer-floating-box a:visited,
.footer-floating-box a:active,
.footer-floating-box a:hover {
    font-size: 2.0rem;
}
    
.footer-floating-box-text {
        font-size: 2.0rem;
}


/***********************************/
/*** SECTIONS ONE-THREE - HEADER ***/
/***********************************/


.header {}


/**********************************/
/*** SECTION ONE - ANNOUNCEMENT ***/
/**********************************/


.header-announcement {
    font-size: 2.0rem;
    font-family: Lato, Roboto, Tahoma, Verdana, sans-serif;
    text-align: center;
    color: #1a290e;
    background-color: #7ac142;
    padding: 5px 20px 5px 10px;
}

.header-announcement a:link,
.header-announcement a:visited {
    color: #1a290e;
    text-decoration: none;
}

.header-announcement a:hover,
.header-announcement a:active {
    color: #ffffff;
    text-decoration: none;
}


/***************************************/
/*** SECTION TWO - SYSTEM NAVIGATION ***/
/***************************************/


.header-system-nav {
    font-size: 2.0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Lato, Roboto, Tahoma, Verdana, sans-serif;
    color: #ffffff;
    background-color: #395c1f;
    padding: 10px 20px;
}

.header-system-nav a:link,
.header-system-nav a:visited,
.header-system-nav a:active,
.header-system-nav a:hover {
    font-size: 2.0rem;
    text-decoration: none;
}

.header-system-nav a:link,
.header-system-nav a:visited {
    font-size: 2.0rem;
    color: #ffffff;
}

.header-system-nav a:hover,
.header-system-nav a:active {
    font-size: 2.0rem;
    color: #99f553;
}

.system-logo img {
    height: 3.5rem;
}

.system-middle {
    display: none;
}

.system-nav a {
    margin-left: 10px;
}


/***************************************************/
/*** SECTION THREE (PHONE) - WEB SITE NAVIGATION ***/
/***************************************************/


.header-web-nav {
    font-size: 2.0rem;
    display: flex;
    justify-content: center;
    font-family: Lato, Roboto, Tahoma, Verdana, sans-serif;
    color: #395c1f;
    background-color: #ffffff;
    padding: 10px 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #598f31;
}

.header-web-nav a {
    font-size: 2.0rem;
    text-decoration: none;
    margin: 0 0.25rem;
}

.header-web-nav a:link,
.header-web-nav a:visited {
    font-size: 2.0rem;
    color: #395c1f;
}

.header-web-nav a:hover,
.header-web-nav a:active {
    font-size: 2.0rem;
    color: #598f31;
}


/***********************************/
/*** SECTION FOUR - MAIN CONTENT ***/
/***********************************/


/***************/
/*** headers ***/
/***************/


h1 {
    color: #7ac142;
    font-family: Montserrat, Lato, Roboto, Tahoma, Verdana, sans-serif;
    font-size: 2.75rem;
    line-height: 1.25;
    margin-bottom: 0.5em;
    font-weight: bold;
}

h2 {
    color: #7ac142;
    font-family: Montserrat, Lato, Roboto, Tahoma, Verdana, sans-serif;
    font-size: 2.5rem;
    line-height: 1.25;
    margin-top: 0.75em;
    margin-bottom: 0.5em;
    font-weight: bold;
}

h3 {
    color: #7ac142;
    font-family: Montserrat, Lato, Roboto, Tahoma, Verdana, sans-serif;
    font-size: 2.5rem;
    line-height: 1.25;
    margin-top: 0.75em;
    margin-bottom: 0.5em;
    font-weight: bold;
    font-style: italic;
}

h4 {
    color: #598f31;
    font-family: Lato, Roboto, Tahoma, Verdana, sans-serif;
    font-size: 1.75rem;
    line-height: 1.1;
    margin-top: 0.5em;
    margin-bottom: 0.25em;
    font-weight: bold;
}

h5 {
    color: #598f31;
    font-family: Lato, Roboto, Tahoma, Verdana, sans-serif;
    font-size: 1.75rem;
    line-height: 1.1;
    margin-top: 0.5em;
    margin-bottom: 0.25em;
    font-weight: bold;
    font-style: italic;
}

h6 {
    color: #395c1f;
    font-family: Lato, Roboto, Tahoma, Verdana, sans-serif;
    font-size: 1.33rem;
    line-height: 1.1;
    margin-top: 0.25em;
    margin-bottom: 0.25em;
}

.h6-white {
    color: #ffffff;
    font-family: Lato, Roboto, Tahoma, Verdana, sans-serif;
    font-size: 1.33rem;
    line-height: 1.1;
    margin-top: 0.25em;
    margin-bottom: 0.25em;
}

.h7 {
    display: block;
    color: #395c1f;
    font-family: Lato, Roboto, Tahoma, Verdana, sans-serif;
    font-size: 1.33rem;
    line-height: 1.1;
    margin-top: 0.25em;
    margin-bottom: 0.25em;
    font-style: italic;
}

.h8 {
    display: block;
    color: #1a290e;
    font-family: Lato, Roboto, Tahoma, Verdana, sans-serif;
    font-size: 1.10rem;
    line-height: 1.2;
    margin-top: 0.25em;
    margin-bottom: 0.25em;
}

.h8-white {
    display: block;
    color: #ffffff;
    font-family: Lato, Roboto, Tahoma, Verdana, sans-serif;
    font-size: 1.10rem;
    line-height: 1.2;
    margin-top: 0.25em;
    margin-bottom: 0.25em;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .h6-white a, .h7 a, .h8 a, .h8-white a,
h1 a:link, h2 a:link, h3 a:link, h4 a:link, h5 a:link, h6 a:link, .h6-white a:link, .h7 a:link, .h8 a:link, .h8-white a:link,
h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited, h6-white a:visited, .h7 a:visited, .h8 a:visited, .h8-white a:visited,
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, .h6-white a:hover, .h7 a:hover, .h8 a:hover, .h8-white a:hover,
h1 a:active, h2 a:active, h3 a:active, h4 a:active, h5 a:active, h6 a:active, .h6-white a:active, .h7 a:active, .h8 a:active, .h8-white a:active {
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    text-decoration: none;
    margin-top: inherit;
    margin-bottom: inherit;
}

/************************/
/*** horizontal rules ***/
/************************/


hr {
  border: none;
  height: 1px;
  width: 75%;
  margin: 0.5rem auto;
}

.hr-ffffff {
  background: #ffffff;
}

.hr-8e8e8e {
  background: #8e8e8e;
}

.hr-7ac142 {
  background: #7ac142;
}


/*************/
/*** links ***/
/*************/


.main-content a:link,
.main-content a:visited,
.main-content a:active {
    font-size: inherit;
    color: #598f31;
    background-color: none;
    text-decoration: none;
}

.main-content a:hover {
    font-size: inherit;
    color: #598f31;
    background-color: none;
    text-decoration: none;
}


/*******************/
/*** color pairs ***/
/*******************/


.main-section-ffffff,
.main-section-ebffd9,
.main-section-99f553,
.main-section-7ac142,
.main-section-598f31,
.main-section-395c1f,
.main-section-1a290e,
.main-section-f4f4f4,
.main-section-bfbfbf,
.main-section-8e8e8e,
.main-section-5b5b5b {
    padding: 0 3rem;
}

.main-content {
    padding: 1.5rem 3rem;
}

.main-section-ffffff {
    color: #1a290e;
    background-color: #ffffff;
}

.main-section-ebffd9 {
    color: #1a290e;
    background-color: #ebffd9;
}

.main-section-99f553 {
    color: #1a290e;
    background-color: #99f553;
}

.main-section-7ac142 {
    color: #1a290e;
    background-color: #7ac142;
}

.main-section-598f31 {
    color: #ffffff;
    background-color: #598f31;
}

.main-section-395c1f {
    color: #ffffff;
    background-color: #395c1f;
}

.main-section-1a290e {
    color: #ffffff;
    background-color: #1a290e;
}

.main-section-f4f4f4 {
    color: #1a290e;
    background-color: #f4f4f4;
}

.main-section-bfbfbf {
    color: #1a290e;
    background-color: #bfbfbf;
}

.main-section-8e8e8e {
    color: #ffffff;
    background-color: #8e8e8e;
}

.main-section-5b5b5b {
    color: #7ac142;
    background-color: #5b5b5b;
}


/***************/
/*** layouts ***/
/***************/


.row, .row-information {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: stretch;
}

.row-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.col, .col-information {
    flex: 1 1 0;
    min-width: 0;
    box-sizing: border-box;
}

.col-information:first-child {
    flex: 1 1 45%;
}

.col-information:nth-child(2),
.col-information:nth-child(3) {
    flex: 1 1 22.5%;
}

.col video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border-width: 1px;
    border-style: solid;
    border-color: #bfbfbf;
    border-radius: 12px;
    background-color: white;
    box-sizing: border-box;
    box-shadow: 0px 2px 12px rgba(0,0,0,0.2);
    object-fit: cover;
}

.col-left {
    align-items: left;
    text-align: left;
}

.col-center {
    align-items: center;
    text-align: center;
}

.col-right {
    align-items: right;
    text-align: right;
}

.col-top {
    justify-content: flex-start;
}


/***********************/
/*** form formatting ***/
/***********************/


.form-ebffd9 {
    background-color: #ebffd9;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"] {
    height: 1.5em;
    padding: 0.25em;
    border-radius: 8px;
    font-size: 0.9em;
}

input[type="submit"],
select {
    height: 2.5em;
    padding: 0.5em;
    border-radius: 8px;
    font-size: 1em;   
}

textarea {
    padding: 0.25em;
    border-radius: 8px;
    font-size: 0.9em;
    line-height: 1.25;
}


/***************************/
/*** dropdown formatting ***/
/***************************/


.dropdown label {
    color: #395c1f;
    font-weight: bold;
    font-style: italic;
}

.dropdown select {
    height: 2.5em;
    padding: 0.5em;
    border-width: 1px;
    border-radius: 8px;
    border-style: solid;
    border-color: #7ac142;
    font-size: 1em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}


/************************/
/*** enlarging awards ***/
/************************/

.awards img {
  width: 8%;
  transition: width 0.3s ease;
}

.awards img:hover {
  width: 12%;
}


/******************************/
/*** FAQ ACCORDIAN CONTROLS ***/
/******************************/


/*********************/
/*** basic styling ***/
/*********************/


.faq-section h6 {
  cursor: pointer;
  background-color: #ffffff;
  padding: 10px;
  margin: 0;
  border-top: 1px solid #598f31;
}

.faq-section h6.active {
  background-color: #ffffff;
  font-weight: bold;
  border-top: 3px solid #598f31;
  border-bottom: 3px solid #598f31;
}

.accordion-section-title {
  display: block;
  padding: 10px 15px;
  color: #395c1f !important;
  background-color: #ffffff;
  font-size: 1.15em !important;
  font-weight: normal !important;
  text-decoration: none;
  cursor: pointer;
}

.accordion-section-title.active {
    color: #ffffff !important;
    background-color: #598f31;
    font-weight: bold;
    border-top: 1px solid #598f31;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.accordion-section-content {
  display: none;
  padding: 10px 25px;
  background-color: #ebffd9;
  border-top: 1px solid #598f31;
}

.accordion-section-content.show {
  display: block;
  border: 1px solid #598f31;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.accordion.section.content ol {
    start: decimal;
}

.accordion.section.content ul {
  list-style-type: square;
}

.table-icons-floating {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* optional: centers items horizontally */
    gap: 25px;
    padding: 0;
}
    
.table-icon-reflow {
    flex: 0 1 67px; /* grow, shrink, basis */
    justify-content: center;
    text-align: center;
}

.table-floating {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* optional: centers items horizontally */
    gap: 20px;
    padding: 5px 10px;
}
    
.table-item-reflow {
    flex: 0 1 250px; /* grow, shrink, basis */
    box-sizing: border-box;
}


/**************/
/*** FOOTER ***/
/**************/


/***************************************/
/*** SECTION SIX - FOOTER NAVIGATION ***/
/***************************************/


.footer-navigation {
  text-align: center;
  padding: 5px 10px;
}

.footer-navigation ul {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: left;
  list-style-type: none;
  color: #7ac142;
}

.footer-navigation ul li a:link,
.footer-navigation ul li a:visited,
.footer-navigation ul li a:active {
  color: #ffffff;
  text-decoration: none;
}

.footer-navigation ul li a:hover {
  color: #99f553;
  text-decoration: none;
}


/******************************/
/*** SECTION SEVEN - SOCIAL ***/
/******************************/


.footer-social {
    padding: 1rem 0 0 0;
}

.footer-social img {
    height: 3.5rem;
    padding: 0 5px;
}


/***********************************/
/*** SECTION EIGHT - INFORMATION ***/
/***********************************/


.footer-information a:link,
.footer-information a:visited,
.footer-information a:active {
    color: #ffffff;
    text-decoration: none;
}

.footer-information a:hover {
    color: #1a290e;
    text-decoration: none;
}


/****************************/
/*** SECTION NINE - LEGAL ***/
/****************************/


.footer-legal {
    color: #ffffff;
    padding: 0.5rem 0;
}

.footer-legal a:link,
.footer-legal a:visited,
.footer-legal a:active {
    color: #ffffff;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #99f553;
    text-decoration: none;
}


/********************/
/*** FLOATING BOX ***/
/********************/


.footer-floating-box {
    font-size: 2.0rem;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Lato, Roboto, Tahoma, Verdana, sans-serif;
    color: #1a290e;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
}

.footer-floating-box-text {
    font-size: 2.0rem;
    margin-left: 10px;
}

.footer-floating-box-nav a:link,
.footer-floating-box-nav a:visited,
.footer-floating-box-nav a:active,
.footer-floating-box-nav a:hover {
    font-size: 2.0rem;
    margin-left: 10px;
}


/*********************/
/*** TABLET STYLES ***/
/*********************/


@media (min-width: 960px) {

    html, body {
        font-size: 16px;
    }

    .container {
        padding: 10.0% 0 0 0;
    }

    .main-content {
        padding: 3rem 6rem;
    }

    .system-logo img {
        height: 3.0rem;
    }

    a.button-white,
    a.button-green {
        padding: 9px 18px !important;
    }

    .header-announcement {
        font-size: 1.25rem;
    }

    .header-announcement a,
    .header-announcement a:link,
    .header-announcement a:visited,
    .header-announcement a:active,
    .header-announcement a:hover {
        font-size: 1.25rem;
    }

    .header-system-nav {
        font-size: 1.25rem;
    }

    .header-system-nav a:link,
    .header-system-nav a:visited,
    .header-system-nav a:active,
    .header-system-nav a:hover {
        font-size: 1.25rem;
    }

    .system-logo img {
        height: 3.0rem;
    }

    .header-web-nav {
        font-size: 1.25rem;
    }

    .header-web-nav a:link,
    .header-web-nav a:visited,
    .header-web-nav a:active,
    .header-web-nav a:hover {
        font-size: 1.25rem;
        margin: 0 0.75rem;
    }

    .row, .row-information {
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }

    .row-height {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        gap: 2rem;
    }

    .row-center {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }

    .row-top {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .col, .col-information {
        flex: 1;
        min-width: 300px;
    }

    .col-information:first-child {
        flex: 1 1 45%;
    }

    .col-information:nth-child(2),
    .col-information:nth-child(3) {
        flex: 1 1 22.5%;
    }

    .col-single {
        padding: 0 15%;
    }

    .footer-social img {
        height: 2.25rem;
        padding: 0;
    }

    .footer-navigation ul {
        font-size: 1.1rem;
    }

    .footer-navigation li a:link,
    .footer-navigation li a:visited,
    .footer-navigation li a:active,
    .footer-navigation li a:hover {
        font-size: 0.9rem;
    }

    .footer-information {
        font-size: 1.0rem;
        padding: 0 6rem 2rem 6rem;
    }

    .footer-information a:link,
    .footer-information a:visited,
    .footer-information a:active,
    .footer-information a:hover {
        font-size: 1.0rem;
    }

    .footer-legal {
        font-size: 0.85rem;
    }

    .footer-legal a:link,
    .footer-legal a:visited,
    .footer-legal a:active,
    .footer-legal a:hover {
        font-size: 0.85rem;
    }

    .footer-floating-box {
        font-size: 1.0rem;
        width: 40%;
        bottom: 20px;
    }

    .footer-floating-box a:link,
    .footer-floating-box a:visited,
    .footer-floating-box a:active,
    .footer-floating-box a:hover {
        font-size: 1.0rem;
    }
    
    .footer-floating-box-text {
            font-size: 1.0rem;
    }
    
}


/**********************/
/*** DESKTOP STYLES ***/
/**********************/


@media (min-width: 1601px) {

    html, body {
        font-size: 16px;
    }

    .container {
        padding: 5.0% 0 0 0;
    }

    .header-system-nav {
        padding: 10px 40px;
    }

    .system-logo img {
        height: 3.0rem;
    }

    .system-middle {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .system-middle a {
        margin: 0 10px;
    }

    .header-web-nav {
        display: none;
    }

    a.button-white,
    a.button-green {
        padding: 10px 20px !important;
    }

    .main-section-ffffff,
    .main-section-ebffd9,
    .main-section-99f553,
    .main-section-7ac142,
    .main-section-598f31,
    .main-section-395c1f,
    .main-section-1a290e,
    .main-section-f4f4f4,
    .main-section-bfbfbf,
    .main-section-8e8e8e,
    .main-section-5b5b5b {
        padding: 0 6rem;
    }

    .main-content {
        padding: 3rem 6rem;
    }

    .row, .row-information {
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }

    .row-height {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        gap: 2rem;
    }

    .row-center {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }

    .row-top {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }

    .col, .col-information {
        flex: 1;
        min-width: 300px;
    }

    .col-information:first-child {
        flex: 1 1 45%;
    }

    .col-information:nth-child(2),
    .col-information:nth-child(3) {
        flex: 1 1 22.5%;
    }

    .col-single {
        padding: 0 15%;
    }

    .footer-information {
        padding: 0 6rem 2rem 6rem;
    }

    .footer-floating-box {
        width: 40%;
        bottom: 20px;
    }

}