.shg-box {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  flex-direction: column;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  /**
   * While `flex: 1` is enough here, we need to supply the rest
   * of the parameters (`1 auto`) to keep compatibility with IE11.
   * Otherwise, IE11 flex would break.
   */
  flex: 1 1 auto;
}

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
  /**
   * This is part of an IE11 fallback to avoid flex introducing
   * huge amount of weird space on the bottom on the section element.
   */
  min-height: 1px;
}

.shg-box-vertical-align-wrapper, .shg-box-vertical-center-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.shg-box-vertical-align-top {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.shg-box-vertical-align-center, .shg-box-vertical-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.shg-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}

.shg-box-video-wrapper {
  /*
    It's very important we don't create a new containing block for shg-box-video-wrapper
    Jarallax uses transforms + position: fixed to achieve it's parallaxing effect

    https://developer.mozilla.org/en-US/docs/Web/CSS/position

    position: fixed
    The element is removed from the normal document flow, and no space is created for the element in the page layout. 
    It is positioned relative to the initial containing block established by the viewport, 

    *
      except when one of its ancestors has a transform, perspective, or filter property set to something other than none 
      (see the CSS Transforms Spec), or the will-change property is set to transform, 
      in which case that ancestor behaves as the containing block. 
    *
  */

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

#s-759963f2-59d6-48e0-9c08-306377fc1d8a {
  min-height: 50px;
}
@media (max-width: 767px){#s-759963f2-59d6-48e0-9c08-306377fc1d8a {
  padding-top: 40px;
}
}







#s-759963f2-59d6-48e0-9c08-306377fc1d8a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-759963f2-59d6-48e0-9c08-306377fc1d8a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-section img {
    width: 100%;
    transform: scale(1) rotate(0deg);
    transition: transform 1s;
}

.banner-section:hover img {
    transform: scale(1.05);
    transition-duration: 1s;
}

.banner-section .mobile-option {
    display: none;
}

.banner-section img:nth-child(2) {
    display: none !important;
}

.banner-description {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-section .description {
    margin: 20px 0;
}

.banner-section h1 {
    margin: 0;
    font-family: tradegothicbold;
    text-transform: uppercase;
}

.banner-section p {
    margin: 0;
    font-family: 'Helvetica Light';
}

.banner-section a {
    color: white;
    text-decoration: unset;
    border: 2px solid white;
    font-family: tradegothicbold;
    letter-spacing: 1px;
    transition: 0.3s ease-in-out !important;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.banner-section a:hover {
    color: black;
    background-color: white;
    transition: 0.3s ease-in-out !important;
}

.banner-sub-decription {
    width: 100%;
}

.banner-section .title {
    position: relative;
}

.banner-section .title:before {
    content: "";
    position: absolute;
    left: 0;
    top: -20px;
    height: 5px;
    width: 70px;
    background: white;
}

@media screen and (min-device-width: 992px) and (max-device-width: 1199px) {
    .banner-section h1 {
        line-height: 36px !important;
    }
    .banner-section h1 span {
        font-size: 48px !important;
    }
    .banner-section p {
        line-height: 18px !important;
    }
    .banner-section p span {
        font-size: 13px !important;
    }
    .banner-description {
        max-width: 300px !important;
    }
    .banner-section a {
        width: 130px !important;
        height: 40px !important;
        font-size: 14px !important;
    }
}

@media only screen and (max-width: 991px) {
    .banner-section a {
        font-size: 11px !important;
        width: 100px !important;
        height: 30px !important;
        border-width: 2px !important;
    }
    .banner-sub-decription {
        margin-top: 20px;
    }
    .banner-section .description {
        margin: 5px 0 10px 0;
    }
    .banner-description {
        max-width: 250px !important;
    }
    .banner-section .title:before {
        top: -10px;
        height: 5px;
        width: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-section img:nth-child(1) {
        display: none !important;
    }
    .banner-section img:nth-child(2) {
        display: block !important;
    }
    .banner-section .description {
        margin: 5px 0 10px 0;
    }
    .banner-description {
        display: block;
        top: unset;
        bottom: 40px;
        height: auto;
    }
    .banner-section .title:before {
        top: -20px;
        width: 40px;
    }
    .banner-section:hover img {
        transform: unset;
    }
}

#s-c50baaa8-2d5e-4a46-a867-ec8e02e2727f {
  margin-top: 0px;
margin-bottom: 0px;
}
@media (min-width: 1200px){#s-c50baaa8-2d5e-4a46-a867-ec8e02e2727f {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c50baaa8-2d5e-4a46-a867-ec8e02e2727f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c50baaa8-2d5e-4a46-a867-ec8e02e2727f {
  display: none;
}
#s-c50baaa8-2d5e-4a46-a867-ec8e02e2727f, #wrap-s-c50baaa8-2d5e-4a46-a867-ec8e02e2727f { display:none !important; }}@media (max-width: 767px){#s-c50baaa8-2d5e-4a46-a867-ec8e02e2727f {
  display: none;
}
#s-c50baaa8-2d5e-4a46-a867-ec8e02e2727f, #wrap-s-c50baaa8-2d5e-4a46-a867-ec8e02e2727f { display:none !important; }}
#s-cd0ee306-e83e-48a2-92f6-7b7db1f2f1de {
  margin-top: 0px;
margin-bottom: 0px;
}
@media (min-width: 1200px){#s-cd0ee306-e83e-48a2-92f6-7b7db1f2f1de {
  display: none;
}
#s-cd0ee306-e83e-48a2-92f6-7b7db1f2f1de, #wrap-s-cd0ee306-e83e-48a2-92f6-7b7db1f2f1de { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-cd0ee306-e83e-48a2-92f6-7b7db1f2f1de {
  display: none;
}
#s-cd0ee306-e83e-48a2-92f6-7b7db1f2f1de, #wrap-s-cd0ee306-e83e-48a2-92f6-7b7db1f2f1de { display:none !important; }}@media (max-width: 767px){#s-cd0ee306-e83e-48a2-92f6-7b7db1f2f1de {
  display: none;
}
#s-cd0ee306-e83e-48a2-92f6-7b7db1f2f1de, #wrap-s-cd0ee306-e83e-48a2-92f6-7b7db1f2f1de { display:none !important; }}
#s-3d65d755-38e9-4a49-909b-f59d81aa5ada {
  margin-top: 0px;
margin-bottom: 0px;
}
@media (min-width: 1200px){#s-3d65d755-38e9-4a49-909b-f59d81aa5ada {
  display: none;
}
#s-3d65d755-38e9-4a49-909b-f59d81aa5ada, #wrap-s-3d65d755-38e9-4a49-909b-f59d81aa5ada { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3d65d755-38e9-4a49-909b-f59d81aa5ada {
  display: none;
}
#s-3d65d755-38e9-4a49-909b-f59d81aa5ada, #wrap-s-3d65d755-38e9-4a49-909b-f59d81aa5ada { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3d65d755-38e9-4a49-909b-f59d81aa5ada {
  display: none;
}
#s-3d65d755-38e9-4a49-909b-f59d81aa5ada, #wrap-s-3d65d755-38e9-4a49-909b-f59d81aa5ada { display:none !important; }}
#s-f9670dd1-dac4-4b15-a5b2-3610ef727e01 {
  padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
background-color: rgba(243, 243, 243, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-f9670dd1-dac4-4b15-a5b2-3610ef727e01 {
  
}
}@media (max-width: 767px){#s-f9670dd1-dac4-4b15-a5b2-3610ef727e01 {
  
}
}







#s-f9670dd1-dac4-4b15-a5b2-3610ef727e01 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f9670dd1-dac4-4b15-a5b2-3610ef727e01.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.banner-below-badge {
    max-width: 1160px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-below-item {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.banner-below-item img {
    height: 35px;
    margin-right: 10px;
}

.banner-below-item p {
    margin: 0;
    color: rgba(153, 153, 153, 1);
    font-family: HelveticaNeue-CondensedBold;
    font-size: 15px;
    letter-spacing: 2px;
}

.banner-below-badge .setting {
    display: none;
}

@media only screen and (max-width: 991px) {
    .banner-below-item {
        padding: 0 10px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-below-item {
        display: block;
        text-align: center;
    }
    .banner-below-item img {
        margin: 0 0 10px 0;
    }
    .banner-below-item p {
        font-size: 13px;
        line-height: 1.2;
    }
}
#s-403c8dcb-7571-4d63-8dcd-4236c42563c3 {
  margin-top: -2px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-5d188b97-bd13-4135-9797-02023134285b {
  min-height: 50px;
}








#s-5d188b97-bd13-4135-9797-02023134285b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5d188b97-bd13-4135-9797-02023134285b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.mobile-image,
.switch-title.mobile,
.switch-title.tablet,
.tablet-button,
.mobile-button {
    display: none;
}

.comparison-switch {
    position: relative;
}

.switch-title {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.switch-title h1 {
    margin: 0 0 30px 0;
    padding: 0;
}

.switch-title p {
    margin: 0;
}

.desktop-button,
.tablet-button {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.desktop-button a,
.tablet-button a {
    border: 1px solid white;
    margin: auto;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'HELVETICANEUE REGULAR';
    font-weight: bold;
    letter-spacing: 1px;
    transition-duration: 0.5s;
    cursor: pointer;
}

.desktop-button a:hover,
.tablet-button a:hover {
    transition-duration: 0.5s;
    background: white;
    color: black;
}

@media screen and (max-width: 1399px) {
    .switch-title.desktop {
        top: 30px !important;
    }
    .switch-title.desktop h1 {
        line-height: 40px;
        margin-bottom: 20px;
    }
    .switch-title.desktop h1 span {
        font-size: 40px !important;
    }
    .switch-title.desktop p {
        line-height: 24px;
    }
    .switch-title.desktop p span {
        font-size: 24px !important;
    }
    .desktop-button a {
        width: 185px !important;
        height: 50px !important;
        font-size: 14px !important;
    }
    .desktop-button {
        bottom: 30px !important;
    }
}

@media screen and (max-width: 1199px) {
    .switch-title.desktop h1 {
        line-height: 32px !important;
        margin-bottom: 10px;
    }
    .switch-title.desktop h1 span {
        font-size: 32px !important;
    }
    .switch-title.desktop p {
        line-height: 20px;
    }
    .switch-title.desktop p span {
        font-size: 20px;
    }
    .desktop-button a {
        width: 150px !important;
        height: 40px !important;
        font-size: 10px !important;
        border-width: 1px !important;
    }
}

@media screen and (max-width: 991px) {
    .switch-title.desktop,
    .desktop-button {
        display: none;
    }
    .switch-title.tablet,
    .tablet-button {
        display: block;
    }
    .switch-title h1 {
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 767px) {
    .mobile-image,
    .switch-title.mobile,
    .mobile-button {
        display: block;
    }
    .desktop-image,
    .switch-title.tablet,
    .tablet-button {
        display: none;
    }
    .switch-title h1 {
        margin-bottom: 10px;
    }
    .mobile-button {
        position: absolute;
        left: 0;
        width: 100%;
        text-align: center;
    }
    .mobile-button a {
        color: white;
        font-family: 'HelveticaNeue Regular';
        font-weight: bold;
        letter-spacing: 2px;
        border: 2px solid white;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        line-height: 1;
        transition-duration: 0.5s;
    }
    .mobile-button a:hover {
        transition-duration: 0.5s;
        background: white;
        color: black;
    }
}
#s-1609c40d-45dd-498e-a392-86b069e2e07f {
  min-height: 50px;
}








#s-1609c40d-45dd-498e-a392-86b069e2e07f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1609c40d-45dd-498e-a392-86b069e2e07f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-33cb8c1d-03c7-4fa3-8730-677a76c52a1b {
  padding-top: 30px;
padding-bottom: 30px;
min-height: 50px;
}
@media (min-width: 1200px){#s-33cb8c1d-03c7-4fa3-8730-677a76c52a1b {
  padding-top: 50px;
padding-bottom: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-33cb8c1d-03c7-4fa3-8730-677a76c52a1b {
  padding-top: 50px;
padding-bottom: 50px;
}
}@media (max-width: 767px){#s-33cb8c1d-03c7-4fa3-8730-677a76c52a1b {
  padding-top: 30px;
padding-bottom: 30px;
}
}







#s-33cb8c1d-03c7-4fa3-8730-677a76c52a1b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-33cb8c1d-03c7-4fa3-8730-677a76c52a1b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.comparison-container {
    max-width: 1200px;
    padding: 0 30px;
    margin: auto;
}

.more-mobile-title {
    display: none;
}

.comparison-more h1 {
    padding: 0;
    text-align: center;
    margin: 0 0 80px 0;
}

.comparison-more .more-items {
    display: flex;
    align-items: flex-start;
}

.comparison-more .more-item {
    width: 33.3333%;
    margin: 0 10px;
    position: relative;
}

.comparison-more .more-item img {
    width: 100%;
}

.comparison-more .more-item-info {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.comparison-more .more-item-info-description {
    padding: 0 10px;
    max-width: 292px;
    margin: auto;
}

.more-item-info-description h2 {
    margin: 0 0 15px 0;
}

.more-item-info-description p {
    margin: 0;
}

@media screen and (max-width: 1199px) {
    .comparison-more .more-desktop-title h1 {
        line-height: 36px !important;
        margin-bottom: 50px;
    }
    .comparison-more .more-desktop-title h1 span {
        font-size: 36px !important;
    }
    .comparison-more .more-item {
        margin: 0 5px;
    }
}

@media screen and (max-width: 991px) {
    .comparison-container {
        padding: 0 10px;
    }
    .comparison-more .more-desktop-title h1 {
        line-height: 28px !important;
        margin-bottom: 30px;
    }
    .comparison-more .more-desktop-title h1 span {
        font-size: 28px !important;
    }
    .more-item-info-description h2 {
        margin-bottom: 10px;
    }
    .more-item-info-description h2 {
        line-height: 18px !important;
    }
    .more-item-info-description h2 span {
        font-size: 18px !important;
    }
    .more-item-info-description p {
        line-height: 14px !important;
    }
    .more-item-info-description p span {
        font-size: 12px !important;
    }
}
@media screen and (max-width: 767px) {
    .more-mobile-title {
        display: block;
    }
    .more-desktop-title {
        display: none;
    }
    .comparison-container {
        padding: 0 30px;
    }
    .comparison-more h1 {
        margin-bottom: 30px;
    }
    .comparison-more .more-items {
        display: block;
    }
    .comparison-more .more-item {
        width: 100%;
        margin: 0 0 20px 0;
    }
    .comparison-more .more-item:last-child {
        margin: 0;
    }
    .more-item-info-description h2 {
        line-height: 24px !important;
    }
    .more-item-info-description h2 span {
        font-size: 24px !important;
    }
    .more-item-info-description p {
        line-height: 20px !important;
    }
    .more-item-info-description p span {
        font-size: 16px !important;
    }
}
.closest-mobile {
    display: none;
}
.comparison-closest {
    position: relative;
}
.comparison-closest img {
    width: 100%;
}
.closest-info {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.closest-info.tablet,
.closest-info.mobile {
    display: none;
}
.closest-sub-info {
    text-align: center;
}
.closest-title h1,
.closest-description p {
    padding: 0;
    margin: 0;
}
.closest-info a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'HelveticaNeue Regular';
    font-weight: bold;
    letter-spacing: 2px;
    background: #69c762;
    margin: auto;
    transition-duration: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    cursor: pointer;
}
.closest-info a:hover {
    transition-duration: 0.5s;
    background: black !important;
    color: white !important;
}

@media screen and (max-width: 1199px) {
    .closest-info.desktop .closest-description h1 {
        line-height: 32px !important;
    }
    .closest-info.desktop.closest-description h1 span {
        font-size: 32px !important;
    }
    .closest-info.desktop.closest-description p {
        line-height: 22px !important;
        margin: 20px 0;
    }
    .closest-info.desktop.closest-description p span {
        font-size: 22px !important;
    }
    .closest-info.desktop a {
        width: 200px !important;
        height: 50px !important;
        font-size: 13px !important;
    }
    .closest-info.desktop .closest-sub-info {
        max-width: 500px;
    }
}

@media screen and (max-width: 991px) {
    .closest-info.tablet {
        display: flex;
    }
    .closest-info.desktop {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .closest-desktop {
        display: none;
    }
    .closest-mobile {
        display: block;
    }
    .closest-info.tablet {
        display: none;
    }
    .closest-info.mobile {
        display: flex;
    }
    .closest-info {
        align-items: flex-start;
    }
}
#s-53ae30ad-de5b-4c61-be7f-f49fb69aa507 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-bottom: 2px;
min-height: 620px;
background-position: left center;
}
@media (min-width: 1200px){#s-53ae30ad-de5b-4c61-be7f-f49fb69aa507 {
  display: none;
}
#s-53ae30ad-de5b-4c61-be7f-f49fb69aa507, #wrap-s-53ae30ad-de5b-4c61-be7f-f49fb69aa507 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-53ae30ad-de5b-4c61-be7f-f49fb69aa507 {
  display: none;
}
#s-53ae30ad-de5b-4c61-be7f-f49fb69aa507, #wrap-s-53ae30ad-de5b-4c61-be7f-f49fb69aa507 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-53ae30ad-de5b-4c61-be7f-f49fb69aa507 {
  display: none;
}
#s-53ae30ad-de5b-4c61-be7f-f49fb69aa507, #wrap-s-53ae30ad-de5b-4c61-be7f-f49fb69aa507 { display:none !important; }}@media (max-width: 767px){#s-53ae30ad-de5b-4c61-be7f-f49fb69aa507 {
  display: none;
}
#s-53ae30ad-de5b-4c61-be7f-f49fb69aa507, #wrap-s-53ae30ad-de5b-4c61-be7f-f49fb69aa507 { display:none !important; }}
#s-53ae30ad-de5b-4c61-be7f-f49fb69aa507 {
  background-image: url(https://i.shgcdn.com/6a8234a6-0028-479f-8033-30b44f11fadc/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-53ae30ad-de5b-4c61-be7f-f49fb69aa507 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-53ae30ad-de5b-4c61-be7f-f49fb69aa507.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5912e76d-fa09-419a-b0b4-7a4d02a4b27e {
  padding-top: 25px;
padding-left: 25px;
padding-bottom: 25px;
padding-right: 25px;
min-height: 50px;
}








#s-5912e76d-fa09-419a-b0b4-7a4d02a4b27e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5912e76d-fa09-419a-b0b4-7a4d02a4b27e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-rich-text {
  overflow-wrap: break-word;
}

.shg-rich-text img {
  margin: 0 20px;
}

@media (max-width: 768px) {
  .shg-rich-text img {
    display: block;
    float: none !important;
    margin: 0 auto;
  }
}

.shg-default-text-content *:first-child {
  margin-top: 0;
}

.shg-default-text-content {
  text-align: left;
}

.shg-default-text-content p,
.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6,
.shg-default-text-content address,
.shg-default-text-content pre,
.shg-default-text-content div,
.shg-default-text-content ol,
.shg-default-text-content ul {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: #000000;
  font-family: inherit;
  font-style: normal;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-transform: none;
}

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-default-text-content a {
  background-color: inherit;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
  text-decoration: underline;
  text-transform: inherit;
}

.shg-default-text-content strong,
.shg-default-text-content em {
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  text-transform: inherit;
}

.shg-default-text-content em {
  font-weight: inherit;
}

.shg-default-text-content strong {
  font-style: inherit;
  font-weight: 700;
}

/* https://stackoverflow.com/a/16094931/3696652 */
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

.shg-default-text-content p {
  font-size: 1em;
  font-weight: ;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: ;
  font-family: ;
}

.shg-default-text-content h1 {
  font-size: 1.714em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.166;
  margin-top: 0.67em;
}

.shg-default-text-content h2 {
  font-size: 1.43em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 0.83em;
}

.shg-default-text-content h3 {
  font-size: 1.142em;
  font-weight: 500;
  letter-spacing: -0.008em;
  line-height: 1.5;
  margin-top: 1em;
}

.shg-default-text-content h4 {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: -0.006em;
  line-height: 1.428;
  margin-top: 1.33em;
}

.shg-default-text-content h5 {
  font-size: 0.857em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.333;
  margin-top: 1.43em;
}

.shg-default-text-content h6 {
  font-size: 0.785em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.454;
  margin-top: 1.42em;
  text-transform: uppercase;
}

.shg-default-text-content ul {
  list-style: disc;
}

.shg-default-text-content ol {
  list-style: decimal;
}

.shg-default-text-content ul,
.shg-default-text-content ol {
  margin-block-end: 1em;
  margin-block-start: 1em;
  margin-bottom: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  margin-top: 0;
  padding-inline-start: 40px;
}

.shg-default-text-content li {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1;
  list-style: inherit;
  margin-top: 0.67em;
}

.shg-default-text-content pre {
  font-family: monospace;
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 1em;
  white-space: pre-wrap;
  word-break: normal;
}

.shg-default-text-content address {
  font-size: 1em;
  font-style: italic;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0;
}

.shg-default-text-content div {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-bottom: 0;
  margin-top: 0.67em;
}

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-theme-text-content p {
  color: ;
  font-family: ;
  font-weight: ;
}

#s-13345022-c14f-4b71-a3f9-d5bc95580503 {
  
}

#s-a2535f59-96c1-4e0d-ac1b-56503aa17b67 {
  margin-top: -5px;
margin-bottom: -5px;
}

.shg-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.shg-row > * {
  min-height: inherit;
  max-height: inherit;
}

[class*=shg-c-xs],
[class*=shg-c-sm],
[class*=shg-c-md],
[class*=shg-c-lg] {
  position: relative;
}

#s-4e1a1ee4-f26b-408e-b544-927ccd9d70ea {
  padding-top: 10px;
}

@media (min-width: 0px) {
[id="s-4e1a1ee4-f26b-408e-b544-927ccd9d70ea"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-4e1a1ee4-f26b-408e-b544-927ccd9d70ea"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4e1a1ee4-f26b-408e-b544-927ccd9d70ea"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4e1a1ee4-f26b-408e-b544-927ccd9d70ea"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4e1a1ee4-f26b-408e-b544-927ccd9d70ea"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4e1a1ee4-f26b-408e-b544-927ccd9d70ea"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4e1a1ee4-f26b-408e-b544-927ccd9d70ea"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-btn {
  cursor: pointer;
  box-sizing: border-box;
}

.shg-btn-text {
  font-weight: ;
  font-family: ;
}

.shg-btn.shg-btn-stretch {
  display: block;
}

.shg-btn:not(.shg-btn-stretch) {
  display: inline-block;
}

.shg-btn-wrapper.shg-align-left {
  text-align: left;
}

.shg-btn-wrapper.shg-align-center {
  text-align: center;
}

.shg-btn-wrapper.shg-align-right {
  text-align: right;
}

#s-dc0fed44-0e90-4d92-9480-f19dc5a92c3b {
  padding-top: 10px;
padding-left: 55px;
padding-bottom: 10px;
padding-right: 55px;
border-radius: 0px;
text-align: left;
background-color: rgba(255, 255, 255, 1);
text-decoration: none;
}
#s-dc0fed44-0e90-4d92-9480-f19dc5a92c3b:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-dc0fed44-0e90-4d92-9480-f19dc5a92c3b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-dc0fed44-0e90-4d92-9480-f19dc5a92c3b-btn-wrapper {
    text-align: left;
  }


#s-dc0fed44-0e90-4d92-9480-f19dc5a92c3b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-dc0fed44-0e90-4d92-9480-f19dc5a92c3b-btn-wrapper {
    text-align: left;
  }


#s-dc0fed44-0e90-4d92-9480-f19dc5a92c3b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-dc0fed44-0e90-4d92-9480-f19dc5a92c3b-btn-wrapper {
    text-align: left;
  }


#s-dc0fed44-0e90-4d92-9480-f19dc5a92c3b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-dc0fed44-0e90-4d92-9480-f19dc5a92c3b-btn-wrapper {
    text-align: left;
  }


#s-dc0fed44-0e90-4d92-9480-f19dc5a92c3b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-dc0fed44-0e90-4d92-9480-f19dc5a92c3b-btn-wrapper {
    text-align: left;
  }


#s-dc0fed44-0e90-4d92-9480-f19dc5a92c3b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
}
#s-5b94796f-5c7a-43e9-83dc-7578f301429d {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 2px;
margin-bottom: 2px;
min-height: 550px;
background-position: center center;
}
@media (min-width: 1200px){#s-5b94796f-5c7a-43e9-83dc-7578f301429d {
  display: none;
}
#s-5b94796f-5c7a-43e9-83dc-7578f301429d, #wrap-s-5b94796f-5c7a-43e9-83dc-7578f301429d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5b94796f-5c7a-43e9-83dc-7578f301429d {
  display: none;
}
#s-5b94796f-5c7a-43e9-83dc-7578f301429d, #wrap-s-5b94796f-5c7a-43e9-83dc-7578f301429d { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5b94796f-5c7a-43e9-83dc-7578f301429d {
  display: none;
}
#s-5b94796f-5c7a-43e9-83dc-7578f301429d, #wrap-s-5b94796f-5c7a-43e9-83dc-7578f301429d { display:none !important; }}@media (max-width: 767px){#s-5b94796f-5c7a-43e9-83dc-7578f301429d {
  display: none;
}
#s-5b94796f-5c7a-43e9-83dc-7578f301429d, #wrap-s-5b94796f-5c7a-43e9-83dc-7578f301429d { display:none !important; }}
#s-5b94796f-5c7a-43e9-83dc-7578f301429d {
  background-image: url(https://i.shgcdn.com/c785523d-a642-40b1-a975-a80993641574/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-5b94796f-5c7a-43e9-83dc-7578f301429d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5b94796f-5c7a-43e9-83dc-7578f301429d {
  cursor: pointer;
}#s-5b94796f-5c7a-43e9-83dc-7578f301429d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3da11fcb-ba67-4759-b148-001f5141d455 {
  padding-top: 25px;
padding-bottom: 25px;
min-height: 50px;
}








#s-3da11fcb-ba67-4759-b148-001f5141d455 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3da11fcb-ba67-4759-b148-001f5141d455.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-ab7d764d-7192-4854-af48-f5d686467fc6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ab7d764d-7192-4854-af48-f5d686467fc6"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ab7d764d-7192-4854-af48-f5d686467fc6"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ab7d764d-7192-4854-af48-f5d686467fc6"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ab7d764d-7192-4854-af48-f5d686467fc6"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ab7d764d-7192-4854-af48-f5d686467fc6"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ab7d764d-7192-4854-af48-f5d686467fc6"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

#s-a1d3e5d9-c319-4772-ba6a-9b71f895615b {
  padding-left: 15px;
padding-right: 15px;
}

#s-cfffeddf-62c6-4e1b-8e40-f1729947bffc {
  margin-top: -5px;
margin-bottom: -5px;
padding-left: 15px;
padding-right: 15px;
}

#s-afe63174-9c76-4626-8cc9-0bca51c32b29 {
  padding-top: 10px;
padding-left: 25px;
padding-bottom: 10px;
padding-right: 25px;
border-radius: 0px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
text-decoration: none;
}
#s-afe63174-9c76-4626-8cc9-0bca51c32b29:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-afe63174-9c76-4626-8cc9-0bca51c32b29:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-afe63174-9c76-4626-8cc9-0bca51c32b29-btn-wrapper {
    text-align: center;
  }


#s-afe63174-9c76-4626-8cc9-0bca51c32b29.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-afe63174-9c76-4626-8cc9-0bca51c32b29-btn-wrapper {
    text-align: center;
  }


#s-afe63174-9c76-4626-8cc9-0bca51c32b29.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-afe63174-9c76-4626-8cc9-0bca51c32b29-btn-wrapper {
    text-align: center;
  }


#s-afe63174-9c76-4626-8cc9-0bca51c32b29.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-afe63174-9c76-4626-8cc9-0bca51c32b29-btn-wrapper {
    text-align: center;
  }


#s-afe63174-9c76-4626-8cc9-0bca51c32b29.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-afe63174-9c76-4626-8cc9-0bca51c32b29-btn-wrapper {
    text-align: center;
  }


#s-afe63174-9c76-4626-8cc9-0bca51c32b29.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
}
#s-76d73ca2-2feb-424b-b102-88e6762e342d {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 2px;
margin-bottom: 2px;
min-height: 550px;
background-position: center center;
}
@media (min-width: 1200px){#s-76d73ca2-2feb-424b-b102-88e6762e342d {
  display: none;
}
#s-76d73ca2-2feb-424b-b102-88e6762e342d, #wrap-s-76d73ca2-2feb-424b-b102-88e6762e342d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-76d73ca2-2feb-424b-b102-88e6762e342d {
  display: none;
}
#s-76d73ca2-2feb-424b-b102-88e6762e342d, #wrap-s-76d73ca2-2feb-424b-b102-88e6762e342d { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-76d73ca2-2feb-424b-b102-88e6762e342d {
  display: none;
}
#s-76d73ca2-2feb-424b-b102-88e6762e342d, #wrap-s-76d73ca2-2feb-424b-b102-88e6762e342d { display:none !important; }}@media (max-width: 767px){#s-76d73ca2-2feb-424b-b102-88e6762e342d {
  display: none;
}
#s-76d73ca2-2feb-424b-b102-88e6762e342d, #wrap-s-76d73ca2-2feb-424b-b102-88e6762e342d { display:none !important; }}







#s-76d73ca2-2feb-424b-b102-88e6762e342d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-76d73ca2-2feb-424b-b102-88e6762e342d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c66c5fad-0466-4808-9a03-5095cb3231b0 {
  padding-top: 25px;
padding-bottom: 25px;
min-height: 50px;
}








#s-c66c5fad-0466-4808-9a03-5095cb3231b0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c66c5fad-0466-4808-9a03-5095cb3231b0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-803b0a85-0484-4eb3-8071-b17bd3acb6fa {
  padding-top: 25px;
padding-bottom: 25px;
min-height: 50px;
}








#s-803b0a85-0484-4eb3-8071-b17bd3acb6fa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-803b0a85-0484-4eb3-8071-b17bd3acb6fa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-7488ca20-6002-4b55-b3cc-b56d0ce4a3ca"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7488ca20-6002-4b55-b3cc-b56d0ce4a3ca"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-7488ca20-6002-4b55-b3cc-b56d0ce4a3ca"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-7488ca20-6002-4b55-b3cc-b56d0ce4a3ca"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-252f78ee-3eb6-41ae-9521-a35f10ffa430 {
  padding-left: 15px;
padding-right: 15px;
}

#s-e46a408a-a934-4c12-a635-afd41a3bbbff {
  padding-top: 10px;
padding-left: 25px;
padding-bottom: 10px;
padding-right: 25px;
border-radius: 0px;
text-align: center;
background-color: rgba(0, 0, 0, 1);
text-decoration: none;
}
#s-e46a408a-a934-4c12-a635-afd41a3bbbff:hover {background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;}#s-e46a408a-a934-4c12-a635-afd41a3bbbff:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e46a408a-a934-4c12-a635-afd41a3bbbff-btn-wrapper {
    text-align: center;
  }


#s-e46a408a-a934-4c12-a635-afd41a3bbbff.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e46a408a-a934-4c12-a635-afd41a3bbbff-btn-wrapper {
    text-align: center;
  }


#s-e46a408a-a934-4c12-a635-afd41a3bbbff.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e46a408a-a934-4c12-a635-afd41a3bbbff-btn-wrapper {
    text-align: center;
  }


#s-e46a408a-a934-4c12-a635-afd41a3bbbff.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e46a408a-a934-4c12-a635-afd41a3bbbff-btn-wrapper {
    text-align: center;
  }


#s-e46a408a-a934-4c12-a635-afd41a3bbbff.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e46a408a-a934-4c12-a635-afd41a3bbbff-btn-wrapper {
    text-align: center;
  }


#s-e46a408a-a934-4c12-a635-afd41a3bbbff.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
}
#s-b8c810d6-5439-4d61-bfeb-9fd599fde52a {
  min-height: 50px;
}
@media (min-width: 1200px){#s-b8c810d6-5439-4d61-bfeb-9fd599fde52a {
  display: none;
}
#s-b8c810d6-5439-4d61-bfeb-9fd599fde52a, #wrap-s-b8c810d6-5439-4d61-bfeb-9fd599fde52a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b8c810d6-5439-4d61-bfeb-9fd599fde52a {
  display: none;
}
#s-b8c810d6-5439-4d61-bfeb-9fd599fde52a, #wrap-s-b8c810d6-5439-4d61-bfeb-9fd599fde52a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b8c810d6-5439-4d61-bfeb-9fd599fde52a {
  display: none;
}
#s-b8c810d6-5439-4d61-bfeb-9fd599fde52a, #wrap-s-b8c810d6-5439-4d61-bfeb-9fd599fde52a { display:none !important; }}@media (max-width: 767px){#s-b8c810d6-5439-4d61-bfeb-9fd599fde52a {
  display: none;
}
#s-b8c810d6-5439-4d61-bfeb-9fd599fde52a, #wrap-s-b8c810d6-5439-4d61-bfeb-9fd599fde52a { display:none !important; }}







#s-b8c810d6-5439-4d61-bfeb-9fd599fde52a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b8c810d6-5439-4d61-bfeb-9fd599fde52a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-a22ebd3b-a90f-447d-9f0f-4b3399e126ce"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a22ebd3b-a90f-447d-9f0f-4b3399e126ce"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-a22ebd3b-a90f-447d-9f0f-4b3399e126ce"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-a22ebd3b-a90f-447d-9f0f-4b3399e126ce"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

}

#s-763f8bcb-60f8-436f-89f6-df8cebbb7343 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 2px;
margin-bottom: 2px;
min-height: 300px;
background-position: center center;
}
@media (min-width: 1200px){#s-763f8bcb-60f8-436f-89f6-df8cebbb7343 {
  display: none;
}
#s-763f8bcb-60f8-436f-89f6-df8cebbb7343, #wrap-s-763f8bcb-60f8-436f-89f6-df8cebbb7343 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-763f8bcb-60f8-436f-89f6-df8cebbb7343 {
  display: none;
}
#s-763f8bcb-60f8-436f-89f6-df8cebbb7343, #wrap-s-763f8bcb-60f8-436f-89f6-df8cebbb7343 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-763f8bcb-60f8-436f-89f6-df8cebbb7343 {
  
}
}







#s-763f8bcb-60f8-436f-89f6-df8cebbb7343 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-763f8bcb-60f8-436f-89f6-df8cebbb7343 {
  cursor: pointer;
}#s-763f8bcb-60f8-436f-89f6-df8cebbb7343.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e1121772-5dee-4b76-92d4-99182aee53b3 {
  padding-left: 10px;
padding-right: 10px;
}

@media (min-width: 0px) {
[id="s-e1121772-5dee-4b76-92d4-99182aee53b3"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e1121772-5dee-4b76-92d4-99182aee53b3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e1121772-5dee-4b76-92d4-99182aee53b3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e1121772-5dee-4b76-92d4-99182aee53b3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c8ae6dd5-6b6f-4375-ba52-3da846016ec3 {
  margin-top: -7px;
margin-bottom: -7px;
padding-top: 10px;
padding-left: 25px;
padding-bottom: 10px;
padding-right: 25px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-c8ae6dd5-6b6f-4375-ba52-3da846016ec3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c8ae6dd5-6b6f-4375-ba52-3da846016ec3:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c8ae6dd5-6b6f-4375-ba52-3da846016ec3-btn-wrapper {
    text-align: center;
  }


#s-c8ae6dd5-6b6f-4375-ba52-3da846016ec3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c8ae6dd5-6b6f-4375-ba52-3da846016ec3-btn-wrapper {
    text-align: center;
  }


#s-c8ae6dd5-6b6f-4375-ba52-3da846016ec3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c8ae6dd5-6b6f-4375-ba52-3da846016ec3-btn-wrapper {
    text-align: center;
  }


#s-c8ae6dd5-6b6f-4375-ba52-3da846016ec3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c8ae6dd5-6b6f-4375-ba52-3da846016ec3-btn-wrapper {
    text-align: center;
  }


#s-c8ae6dd5-6b6f-4375-ba52-3da846016ec3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c8ae6dd5-6b6f-4375-ba52-3da846016ec3-btn-wrapper {
    text-align: center;
  }


#s-c8ae6dd5-6b6f-4375-ba52-3da846016ec3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
}
#s-b958c2a8-1b61-4626-a41f-00dd32a60e44 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 2px;
margin-bottom: 4px;
min-height: 300px;
background-position: center center;
}
@media (min-width: 1200px){#s-b958c2a8-1b61-4626-a41f-00dd32a60e44 {
  display: none;
}
#s-b958c2a8-1b61-4626-a41f-00dd32a60e44, #wrap-s-b958c2a8-1b61-4626-a41f-00dd32a60e44 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b958c2a8-1b61-4626-a41f-00dd32a60e44 {
  display: none;
}
#s-b958c2a8-1b61-4626-a41f-00dd32a60e44, #wrap-s-b958c2a8-1b61-4626-a41f-00dd32a60e44 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b958c2a8-1b61-4626-a41f-00dd32a60e44 {
  
}
}
#s-b958c2a8-1b61-4626-a41f-00dd32a60e44 {
  background-image: url(https://i.shgcdn.com/c7be8f1a-4631-4177-8b34-c7f12cb38740/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-b958c2a8-1b61-4626-a41f-00dd32a60e44 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b958c2a8-1b61-4626-a41f-00dd32a60e44 {
  cursor: pointer;
}#s-b958c2a8-1b61-4626-a41f-00dd32a60e44.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ac705be4-c372-4b3e-b4e1-2f29b4bec679 {
  padding-left: 10px;
padding-right: 10px;
}

@media (min-width: 0px) {
[id="s-ac705be4-c372-4b3e-b4e1-2f29b4bec679"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-ac705be4-c372-4b3e-b4e1-2f29b4bec679"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ac705be4-c372-4b3e-b4e1-2f29b4bec679"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ac705be4-c372-4b3e-b4e1-2f29b4bec679"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-2acbe45d-e1a4-4404-84ec-c5c9f7ee28b8 {
  margin-top: -7px;
margin-bottom: -7px;
padding-top: 10px;
padding-left: 25px;
padding-bottom: 10px;
padding-right: 25px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-2acbe45d-e1a4-4404-84ec-c5c9f7ee28b8:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2acbe45d-e1a4-4404-84ec-c5c9f7ee28b8:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-2acbe45d-e1a4-4404-84ec-c5c9f7ee28b8-btn-wrapper {
    text-align: center;
  }


#s-2acbe45d-e1a4-4404-84ec-c5c9f7ee28b8.shg-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2acbe45d-e1a4-4404-84ec-c5c9f7ee28b8-btn-wrapper {
    text-align: center;
  }


#s-2acbe45d-e1a4-4404-84ec-c5c9f7ee28b8.shg-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2acbe45d-e1a4-4404-84ec-c5c9f7ee28b8-btn-wrapper {
    text-align: center;
  }


#s-2acbe45d-e1a4-4404-84ec-c5c9f7ee28b8.shg-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2acbe45d-e1a4-4404-84ec-c5c9f7ee28b8-btn-wrapper {
    text-align: center;
  }


#s-2acbe45d-e1a4-4404-84ec-c5c9f7ee28b8.shg-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2acbe45d-e1a4-4404-84ec-c5c9f7ee28b8-btn-wrapper {
    text-align: center;
  }


#s-2acbe45d-e1a4-4404-84ec-c5c9f7ee28b8.shg-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
}
@media (min-width: 0px) {
[id="s-c3e44bfb-3016-47c0-9aee-e4c92aa57df6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c3e44bfb-3016-47c0-9aee-e4c92aa57df6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-c3e44bfb-3016-47c0-9aee-e4c92aa57df6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-c3e44bfb-3016-47c0-9aee-e4c92aa57df6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

}

#s-c1af9af9-5c32-4a3f-b5c7-576f86e0fd16 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 2px;
margin-bottom: 2px;
min-height: 300px;
background-position: center center;
}
@media (min-width: 1200px){#s-c1af9af9-5c32-4a3f-b5c7-576f86e0fd16 {
  display: none;
}
#s-c1af9af9-5c32-4a3f-b5c7-576f86e0fd16, #wrap-s-c1af9af9-5c32-4a3f-b5c7-576f86e0fd16 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c1af9af9-5c32-4a3f-b5c7-576f86e0fd16 {
  display: none;
}
#s-c1af9af9-5c32-4a3f-b5c7-576f86e0fd16, #wrap-s-c1af9af9-5c32-4a3f-b5c7-576f86e0fd16 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c1af9af9-5c32-4a3f-b5c7-576f86e0fd16 {
  
}
}







#s-c1af9af9-5c32-4a3f-b5c7-576f86e0fd16 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c1af9af9-5c32-4a3f-b5c7-576f86e0fd16 {
  cursor: pointer;
}#s-c1af9af9-5c32-4a3f-b5c7-576f86e0fd16.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b37cf34d-30d1-4817-abbc-6988ed29575a {
  padding-left: 10px;
padding-right: 10px;
}

@media (min-width: 0px) {
[id="s-b37cf34d-30d1-4817-abbc-6988ed29575a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-b37cf34d-30d1-4817-abbc-6988ed29575a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b37cf34d-30d1-4817-abbc-6988ed29575a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b37cf34d-30d1-4817-abbc-6988ed29575a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-0d0b91e4-1314-4ed6-9ca8-6373e74742eb {
  margin-top: -7px;
margin-bottom: -7px;
padding-top: 10px;
padding-left: 25px;
padding-bottom: 10px;
padding-right: 25px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-0d0b91e4-1314-4ed6-9ca8-6373e74742eb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0d0b91e4-1314-4ed6-9ca8-6373e74742eb:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-0d0b91e4-1314-4ed6-9ca8-6373e74742eb-btn-wrapper {
    text-align: center;
  }


#s-0d0b91e4-1314-4ed6-9ca8-6373e74742eb.shg-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-0d0b91e4-1314-4ed6-9ca8-6373e74742eb-btn-wrapper {
    text-align: center;
  }


#s-0d0b91e4-1314-4ed6-9ca8-6373e74742eb.shg-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0d0b91e4-1314-4ed6-9ca8-6373e74742eb-btn-wrapper {
    text-align: center;
  }


#s-0d0b91e4-1314-4ed6-9ca8-6373e74742eb.shg-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0d0b91e4-1314-4ed6-9ca8-6373e74742eb-btn-wrapper {
    text-align: center;
  }


#s-0d0b91e4-1314-4ed6-9ca8-6373e74742eb.shg-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-0d0b91e4-1314-4ed6-9ca8-6373e74742eb-btn-wrapper {
    text-align: center;
  }


#s-0d0b91e4-1314-4ed6-9ca8-6373e74742eb.shg-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
}
#s-41b04742-7c44-4cd4-89c9-a6dd2b886d36 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 2px;
margin-bottom: 4px;
min-height: 300px;
background-position: center center;
}
@media (min-width: 1200px){#s-41b04742-7c44-4cd4-89c9-a6dd2b886d36 {
  display: none;
}
#s-41b04742-7c44-4cd4-89c9-a6dd2b886d36, #wrap-s-41b04742-7c44-4cd4-89c9-a6dd2b886d36 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-41b04742-7c44-4cd4-89c9-a6dd2b886d36 {
  display: none;
}
#s-41b04742-7c44-4cd4-89c9-a6dd2b886d36, #wrap-s-41b04742-7c44-4cd4-89c9-a6dd2b886d36 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-41b04742-7c44-4cd4-89c9-a6dd2b886d36 {
  
}
}
#s-41b04742-7c44-4cd4-89c9-a6dd2b886d36 {
  background-image: url(https://i.shgcdn.com/1b939325-91d7-4fef-a251-d49e20a5000c/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-41b04742-7c44-4cd4-89c9-a6dd2b886d36 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-41b04742-7c44-4cd4-89c9-a6dd2b886d36 {
  cursor: pointer;
}#s-41b04742-7c44-4cd4-89c9-a6dd2b886d36.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4b9556dc-973c-448e-8fca-5833dd5c7b0a {
  padding-left: 10px;
padding-right: 10px;
}

@media (min-width: 0px) {
[id="s-4b9556dc-973c-448e-8fca-5833dd5c7b0a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-4b9556dc-973c-448e-8fca-5833dd5c7b0a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4b9556dc-973c-448e-8fca-5833dd5c7b0a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4b9556dc-973c-448e-8fca-5833dd5c7b0a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-39ef50c3-634c-4705-8b00-f82766f2ecca {
  margin-top: -7px;
margin-bottom: -7px;
padding-top: 10px;
padding-left: 25px;
padding-bottom: 10px;
padding-right: 25px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-39ef50c3-634c-4705-8b00-f82766f2ecca:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-39ef50c3-634c-4705-8b00-f82766f2ecca:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-39ef50c3-634c-4705-8b00-f82766f2ecca-btn-wrapper {
    text-align: center;
  }


#s-39ef50c3-634c-4705-8b00-f82766f2ecca.shg-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-39ef50c3-634c-4705-8b00-f82766f2ecca-btn-wrapper {
    text-align: center;
  }


#s-39ef50c3-634c-4705-8b00-f82766f2ecca.shg-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-39ef50c3-634c-4705-8b00-f82766f2ecca-btn-wrapper {
    text-align: center;
  }


#s-39ef50c3-634c-4705-8b00-f82766f2ecca.shg-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-39ef50c3-634c-4705-8b00-f82766f2ecca-btn-wrapper {
    text-align: center;
  }


#s-39ef50c3-634c-4705-8b00-f82766f2ecca.shg-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-39ef50c3-634c-4705-8b00-f82766f2ecca-btn-wrapper {
    text-align: center;
  }


#s-39ef50c3-634c-4705-8b00-f82766f2ecca.shg-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
}
#s-0ead86d8-c326-4d9f-9927-f956e1cdb197 {
  margin-top: -12px;
min-height: 50px;
background-color: rgba(35, 42, 54, 1);
}
@media (min-width: 1200px){#s-0ead86d8-c326-4d9f-9927-f956e1cdb197 {
  padding-top: 50px;
padding-bottom: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0ead86d8-c326-4d9f-9927-f956e1cdb197 {
  padding-top: 50px;
padding-bottom: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0ead86d8-c326-4d9f-9927-f956e1cdb197 {
  padding-top: 30px;
padding-bottom: 30px;
}
}@media (max-width: 767px){#s-0ead86d8-c326-4d9f-9927-f956e1cdb197 {
  padding-top: 50px;
padding-bottom: 50px;
}
}







#s-0ead86d8-c326-4d9f-9927-f956e1cdb197 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0ead86d8-c326-4d9f-9927-f956e1cdb197.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.comparison-confident {
    max-width: 1000px;
    padding: 0 30px;
    margin: 30px auto;
    text-align: center;
}

.cofident-mobile-title {
    display: none;
}

.comparison-confident h1 {
    padding: 0;
    margin: 0 0 80px 0;
}

.confident-items {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.confident-item {
    width: 250px;
}

.confident-item img {
    height: 50px;
    margin-bottom: 20px;
}

.confident-item h2 {
    margin: 0 0 20px 0;
}

.confident-item p {
    margin: 0;
}

@media screen and (max-width: 991px) {
    .comparison-confident .cofident-desktop-title h1 {
        line-height: 24px !important;
        margin-bottom: 50px;
    }
    .comparison-confident .cofident-desktop-title h1 span {
        font-size: 24px !important;
    }
    .confident-item img {
        height: 40px;
    }
    .confident-item-info h2 {
        line-height: 16px !important;
        margin-bottom: 10px;
    }
    .confident-item-info h2 span {
        font-size: 16px !important;
    }
    .confident-item-info p {
        line-height: 16px !important;
    }
    .confident-item-info p span {
        font-size: 12px !important;
    }
    .confident-item {
        width: 210px;
    }
}

@media screen and (max-width: 767px) {
    .comparison-confident {
        margin: 0px;
        padding: 0 10px;
    }
    .cofident-desktop-title {
        display: none;
    }
    .cofident-mobile-title {
        display: block;
    }
    .comparison-confident h1 {
        margin-bottom: 50px;
    }
    .confident-items {
        display: block;
    }
    .confident-item img {
        height: 45px;
    }
    .confident-item-info h2 {
        line-height: 18px !important;
    }
    .confident-item-info h2 span {
        font-size: 18px !important;
    }
    .confident-item-info p {
        line-height: 18px !important;
    }
    .confident-item-info p span {
        font-size: 14px !important;
    }
    .confident-item {
        width: 250px;
        margin: 0 auto 50px auto;
    }
    .confident-item:last-child {
        margin-bottom: 0;
    }
}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
