/* Service and Gallery Page Banners */
@media (max-width: 1200px) {

  /* Apply to all three section grids */
  #sectiongrid_1022517,
  #sectiongrid_1023999,
  #sectiongrid_1024099 {
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    position: static !important;
    height: auto !important;
  }

  #sectiongrid_1022517 > .skn-cell,
  #sectiongrid_1023999 > .skn-cell,
  #sectiongrid_1024099 > .skn-cell {
    position: static !important;
    width: 100% !important;
    top: auto !important;
    left: auto !important;
    margin-bottom: 20px; /* adjust spacing if needed */
  }

  #sectiongrid_1022517 .masonry-column-sizer,
  #sectiongrid_1022517 .masonry-gutter-sizer,
  #sectiongrid_1023999 .masonry-column-sizer,
  #sectiongrid_1023999 .masonry-gutter-sizer,
  #sectiongrid_1024099 .masonry-column-sizer,
  #sectiongrid_1024099 .masonry-gutter-sizer {
    display: none !important;
  }
}
/* Service and Gallery Page Banners */

/* HEADER */
/* ===== DEFAULT (desktop and up) ===== */
.skn-front-end #sectiongrid_1023516 {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.skn-front-end #sectiongrid_1023516 #cell_1023540 {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}

.skn-front-end #sectiongrid_1023516 #cell_1023517,
.skn-front-end #sectiongrid_1023516 #cell_1023541 {
  flex: 0 0 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
}

/* Show desktop section, hide mobile section */
.skn-front-end #sectiongrid_1020210 {
  display: block;
}
.skn-front-end #section_1023515 {
  display: none;
}

/* ===== MOBILE (1200px and below) ===== */
@media (max-width: 1200px) {
  .skn-front-end #sectiongrid_1023516 {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    position: static !important;
    height: auto !important;
  }

  .skn-front-end #sectiongrid_1023516 > .skn-cell {
    position: static !important;
    width: auto !important;
    top: auto !important;
    left: auto !important;
  }

  .skn-front-end #sectiongrid_1023516 #cell_1023540 {
    flex: 1 1 auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  .skn-front-end #sectiongrid_1023516 #cell_1023517,
  .skn-front-end #sectiongrid_1023516 #cell_1023541 {
    flex: 0 0 30px;
    width: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    box-sizing: border-box;
    text-align: right;
  }

  /* Show mobile section, hide desktop section */
  .skn-front-end #sectiongrid_1020210 {
    display: none !important;
  }
  .skn-front-end #section_1023515 {
    display: block !important;
  }
}

/* HEADER */

.instagram-icon i {
  color: #3C3C3B;
  font-size: 24px;
  float: right;
  transition: color 0.3s ease;
}

.instagram-icon:hover i {
  color: #949494;
}

/* Image offsets */

.big-jump {
  margin-top: -250px;
}

@media (max-width: 768px) {
  .big-jump {
    margin-top: -50px !important;
  }
}


.jump {
  margin-top: -100px;
}

@media (max-width: 768px) {
  .jump {
    margin-top: -50px !important;
  }
}
/* Image offsets */

/* Makes images in this cell full width on mobile */
@media (max-width: 768px) {
  .img-100-mobile img {
    width: 100% !important;
    height: auto !important;
  }
}

  
  /* Cookies */

/* Popup container - fixed bottom right */
.cookie-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  transform: translateY(20px);
  background: #fff;
  padding: 20px 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-radius: 5px; /* less rounded */
  width: 320px;
  max-width: 90vw;
  font-family: 'Proxima Nova', Arial, sans-serif; /* tablet gothic */
  color: #3c3c3b; /* all text color */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 9999;
  text-align: left; /* align all text left */
}

/* Show popup */
.cookie-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Heading */
.cookie-popup h3 {
  margin: 0 0 10px 0;
  font-weight: 700; /* bold */
  font-size: 2.0rem;
  color: #3c3c3b;
  text-align: left;
  font-family: 'Proxima Nova', sans-serif;
}

/* Paragraph text */
.cookie-popup p {
  font-weight: 300; /* light */
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2e2e2e;
  text-align: left;
}


/* Buttons container - flex spread */
.cookie-buttons {
  display: flex;
  justify-content: space-between; /* read more left, others right */
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

/* Container for right side buttons */
.accept-reject-buttons {
  display: flex;
  gap: 10px;
}

/* All buttons base style */
.cookie-buttons button {
  padding: 8px 18px;
  border-radius: 0; /* square corners */
  border: 1px solid #3c3c3b; /* border color */
  background-color: transparent;
  cursor: pointer;
  font-family: 'Proxima Nova', Arial, sans-serif;
  font-weight: 300; /* light */
  font-size: 0.9rem;
  color: #3c3c3b;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.cookie-buttons button:hover {
  background-color: #EAE6DD;
  color: #3c3c3b;
  border-color: #3c3c3b;
}

/* Cookies */

/* Page Fades */
.animate-in {
  -webkit-animation: fadeIn 0.5s ease-in;
  animation: fadeIn 1s ease-in;
}


.animate-out {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  opacity: 0;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Page Fades*/ 



/* Black Button aligned left */

a.a_1023426 {
  display: inline-block;
  padding-top: 7px;
  padding-right: 8px;
  padding-bottom: 9px;
  padding-left: 0;
  border-radius: 0px;
  border: 1px solid #3c3c3b;
  width: 140px;
  max-width: 100%;
  text-align: center;
  transition-duration: 0.3s;  margin-right: 8px; margin-left: 0;/* ???? adds space between buttons */
    margin-bottom: 14px; /* ???? adds space between buttons */
}

a.a_1023426:hover {
  border: 1px solid #949494;
}
/* Black Button aligned left */

/* Black Button */

a.a_1020474 {
  display: inline-block;
  padding-top: 7px;
  padding-right: 8px;
  padding-bottom: 9px;
  padding-left: 8px;
  border-radius: 0px;
  border: 1px solid #3c3c3b;
  width: 140px;
  max-width: 100%;
  text-align: center;
  transition-duration: 0.3s;  margin-right: 8px; margin-left: 8px;/* ???? adds space between buttons */
    margin-bottom: 14px; /* ???? adds space between buttons */
}

a.a_1020474:hover {
  border: 1px solid #949494;
}
/* Black Button */


/* UX Effects */@media (max-width: 768px) {
  .skn-effects-ready .skn-cell.drop-in > *,
  .skn-effects-ready .skn-section.drop-in > .skn-sectiongrid,
  .skn-effects-ready .skn-cell.drop-in.skn-onscreen-trigger > *,
  .skn-effects-ready .skn-section.drop-in.skn-onscreen-trigger > .skn-sectiongrid {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .skn-effects-ready .image-wipe-front:after,
  .skn-effects-ready .image-wipe-front.skn-onscreen-trigger:after {
    transform: none !important;
    transition: none !important;
  }
}

/* UX Effects */

/* Separator line */
.border-bottom:after{
    border-bottom: 1px solid #C3C3C3;
    max-width: 1500px;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 94%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
.border-top:after{
    border-top: 1px solid #C3C3C3;
    max-width: 1500px;
    position: absolute;
    top: 0;
    left: 50%;
    width: 94%;
    transform: translateX(-50%);
}
}


/* Accordion */

.accordion-panel {
    transition: opacity 1s ease;
   
}

.accordion-panel.closed {
    height: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    opacity: 0;
    overflow: hidden;
}

.accordion-panel.open {
    height: auto;
    opacity: 1;
}

.accordion-trigger,
.accordion-trigger * {
    cursor: pointer;
}



  .no-background {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
  }





/* Accordion */

/* Fixes text in window gallery on homepage: show cell only below 1080px */
#cell_1023425 {
  display: none;
}

@media (max-width: 1080px) {
  #cell_1023425 {
    display: block; /* or flex/inline-block if needed */
  }
}

/* Form */

#sknforminput_1020346,
#sknforminput_1020344,
#sknforminput_1020345 {
  background-color: #F9F8F6;
  border: 1px solid #3C3C3B;
}

/* Styled submit button with Proxima Nova and iOS override */
#form1020340 input[type="submit"] {
  display: inline-block;
  padding-top: 7px;
  padding-right: 8px;
  padding-bottom: 7px;
  padding-left: 0;
  border-radius: 0px;
  border: 1px solid #3c3c3b;
  color: #3c3c3b;
  background-color: #F9F8F6;
  width: 100px;
  max-width: 100%;
  text-align: center;
  transition-duration: 0.3s;
  margin-right: 8px;
  margin-left: 0;
  margin-bottom: 14px;
  font-family: 'Proxima Nova', sans-serif;
  font-size: 13px;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

#form1020340 input[type="submit"]:hover {
  border: 1px solid #949494;
  color: #949494;
}

.preloader{color:#000000; }
#wrap{min-width:0px; }
.baseparagraph, .fakep, .skn-cell-standard ul, .skn-cell-standard ol, .p_1020147, p{font-family:proxima-nova; font-size:15.6px; font-size:1.3rem; color:#949494; font-weight:400; font-style:normal; text-decoration:none; text-align:left; letter-spacing:normal; word-spacing:normal; text-transform:inherit; font-variant:inherit; line-height:1.35; text-shadow:none; width:100%; margin-top:0%; margin-right:auto; margin-bottom:0%; margin-left:auto; padding-top:0%; padding-right:0%; padding-bottom:0%; padding-left:0%; }
.skn-post-content.p_1020149 p, .skn-post-content.p_1020149 ul.skn-text-list, .skn-post-content.p_1020149 ol.skn-text-list, .p_1020149{font-family:proxima-nova; font-size:10.8px; font-size:0.9rem; color:#3C3C3B; word-spacing:normal; text-transform:inherit; font-variant:inherit; margin-right:auto; margin-left:auto; }
.skn-post-content.p_1020444 p, .skn-post-content.p_1020444 ul.skn-text-list, .skn-post-content.p_1020444 ol.skn-text-list, .p_1020444{font-family:freight-big-pro; font-size:24px; font-size:2rem; font-weight:400; text-align:center; line-height:1.2; margin-right:auto; margin-left:auto; }
.skn-post-content.p_1024314 p, .skn-post-content.p_1024314 ul.skn-text-list, .skn-post-content.p_1024314 ol.skn-text-list, .p_1024314{font-size:14.4px; font-size:1.2rem; margin-right:auto; margin-left:auto; padding-top:1%; padding-right:1%; padding-bottom:1%; padding-left:1%; }
.skn-post-content.p_1021439 p, .skn-post-content.p_1021439 ul.skn-text-list, .skn-post-content.p_1021439 ol.skn-text-list, .p_1021439{font-size:12px; font-size:1rem; text-transform:uppercase; margin-right:auto; margin-left:auto; padding-top:1.5%; }
.skn-post-content.p_1021348 p, .skn-post-content.p_1021348 ul.skn-text-list, .skn-post-content.p_1021348 ol.skn-text-list, .p_1021348{font-size:15.6px; font-size:1.3rem; font-weight:400; line-height:1.6; margin-right:auto; margin-left:auto; -webkit-column-count:2; -webkit-column-gap:1.8em; -webkit-column-width:300px; -moz-column-count:2; -moz-column-gap:1.8em; -moz-column-width:300px; column-count:2; column-gap:1.8em; column-width:300px; }
.skn-post-content.p_1021348 p, .skn-post-content.p_1021348 ul.skn-text-list, .skn-post-content.p_1021348 ol.skn-text-list, .p_1021348 *{float:none !important; }
.skn-post-content.p_1021348 p, .skn-post-content.p_1021348 ul.skn-text-list, .skn-post-content.p_1021348 ol.skn-text-list, .p_1021348 img{display:block !important; }
.span_1020348{font-weight:700; word-spacing:normal; text-transform:inherit; font-variant:inherit; }
.span_1020355{color:#ffffff; word-spacing:normal; text-transform:inherit; font-variant:inherit; }
.span_1020379{color:#2E2E2E; font-weight:100; }
.span_1020451{font-size:33.6px; font-size:2.8rem; }
.span_1020483{color:#949494; }
.span_1022625{color:#3C3C3B; }
.baseheading, h1, h2, h3, h4, h5, h6, .h2_1020157, h2{font-family:freight-big-pro; font-size:24px; font-size:2rem; color:#3C3C3B; font-weight:100; font-style:normal; text-decoration:none; text-align:center; letter-spacing:normal; word-spacing:normal; text-transform:inherit; font-variant:inherit; line-height:1.4; text-shadow:none; width:100%; margin-top:0%; margin-right:auto; margin-bottom:0%; margin-left:auto; padding-top:0%; padding-right:0%; padding-bottom:0%; padding-left:0%; }
.h2_1020158{font-family:proxima-nova; font-size:26.4px; font-size:2.2rem; font-weight:400; text-align:center; letter-spacing:normal; word-spacing:normal; text-transform:inherit; font-variant:inherit; margin-right:auto; margin-left:auto; }
.h2_1020405{font-size:50.4px; font-size:4.2rem; font-weight:100; line-height:1; margin-right:auto; margin-left:auto; }
.h2_1020714{font-family:freight-big-pro; font-size:48px; font-size:4rem; font-weight:100; line-height:0.85; margin-right:auto; margin-left:auto; }
.h2_1020476{font-family:proxima-nova; font-size:15.6px; font-size:1.3rem; font-weight:600; text-align:left; letter-spacing:normal; text-transform:uppercase; margin-right:auto; margin-left:auto; padding-bottom:1%; }
.h2_1021343{font-size:28.8px; font-size:2.4rem; line-height:1.2; margin-right:auto; margin-left:auto; }
.h2_1024245{font-family:proxima-nova; font-size:14.4px; font-size:1.2rem; text-align:left; margin-right:auto; margin-left:auto; }
.h2_1023480{font-family:proxima-nova; font-size:15.6px; font-size:1.3rem; font-weight:600; text-align:left; text-transform:uppercase; margin-right:auto; margin-left:auto; }
.h2_1024349{font-size:48px; font-size:4rem; margin-right:auto; margin-left:auto; }
.h2_1023548{font-size:24px; font-size:2rem; line-height:0.85; margin-right:auto; margin-left:auto; }
a{font-family:inherit; font-size:0px; font-size:inherit; color:#606061; font-weight:inherit; font-style:inherit; text-decoration:inherit; text-align:inherit; letter-spacing:inherit; word-spacing:normal; text-transform:inherit; font-variant:inherit; line-height:inherit; text-shadow:none; }
a:hover{text-shadow:none; }
.a_1020474{font-family:proxima-nova; font-size:15.6px; font-size:1.3rem; color:#3C3C3B; font-weight:400; font-style:inherit; text-decoration:inherit; text-align:inherit; letter-spacing:inherit; word-spacing:inherit; text-transform:inherit; font-variant:inherit; line-height:inherit; }
.a_1020474:hover{color:#949494; }
.a_1023475{font-family:proxima-nova; font-size:15.6px; font-size:1.3rem; color:#3C3C3B; font-weight:inherit; font-style:inherit; text-decoration:inherit; text-align:inherit; letter-spacing:inherit; word-spacing:inherit; text-transform:inherit; font-variant:inherit; line-height:inherit; }
.a_1023475:hover{color:#949494; }
.a_1023547{font-family:inherit; font-size:0px; font-size:inherit; color:inherit; font-weight:inherit; font-style:inherit; text-decoration:inherit; text-align:inherit; letter-spacing:inherit; word-spacing:inherit; text-transform:inherit; font-variant:inherit; line-height:inherit; }
.a_1023547:hover{color:#3C3C3B; }
.a_1023426{font-family:inherit; font-size:15.6px; font-size:1.3rem; color:#3C3C3B; font-weight:400; font-style:inherit; text-decoration:inherit; text-align:inherit; letter-spacing:inherit; word-spacing:inherit; text-transform:inherit; font-variant:inherit; line-height:inherit; }
.a_1023426:hover{color:#949494; }
.a_1020501{font-family:proxima-nova; font-size:15.6px; font-size:1.3rem; color:#FFFFFF; font-weight:inherit; font-style:inherit; text-decoration:inherit; text-align:inherit; letter-spacing:inherit; word-spacing:inherit; text-transform:inherit; font-variant:inherit; line-height:inherit; }
.ul_1020150> li.selected, .icon.ul_1020155:after{font-family:freight-big-pro; font-size:14.4px; font-size:1.2rem; color:#000000; font-weight:400; font-style:normal; text-decoration:none; text-align:center; letter-spacing:0.08em; word-spacing:normal; text-transform:uppercase; font-variant:inherit; line-height:1.2; text-shadow:none; margin-top:0%; margin-right:0%; margin-bottom:0%; margin-left:0%; padding-top:0%; padding-right:4%; padding-bottom:0%; padding-left:4%; }
.ul_1020151> li:hover, .icon.ul_1023545:after{font-family:1; font-size:12px; font-size:1rem; color:#3C3C3B; font-weight:400; font-style:normal; text-decoration:none; text-align:left; letter-spacing:0.08em; word-spacing:normal; text-transform:uppercase; font-variant:inherit; line-height:1.2; text-shadow:none; margin-top:0%; margin-right:0%; margin-bottom:0%; margin-left:0%; padding-top:0%; padding-right:0%; padding-bottom:0%; padding-left:0%; }
.ul_1020151> li, .icon.ul_1020151:after{font-family:termina; font-size:12px; font-size:1rem; color:#3C3C3B; font-weight:400; font-style:normal; text-decoration:none; text-align:left; letter-spacing:0.08em; word-spacing:normal; text-transform:uppercase; font-variant:inherit; line-height:1.2; text-shadow:none; margin-top:0%; margin-right:0%; margin-bottom:0%; margin-left:0%; padding-top:0%; padding-right:0%; padding-bottom:0%; padding-left:0%; }
.ul_1020150> li:hover, .icon.ul_1020152:after{font-size:14.4px; font-size:1.2rem; color:#949494; font-style:normal; text-decoration:none; text-align:center; letter-spacing:0.08em; word-spacing:normal; text-transform:1; font-variant:inherit; line-height:1.2; text-shadow:none; margin-top:0%; margin-right:0%; margin-bottom:0%; margin-left:0%; padding-top:0%; padding-right:4%; padding-bottom:0%; padding-left:4%; }
.ul_1023874> li, .icon.ul_1023874:after{font-family:termina; font-size:12px; font-size:1rem; color:#2E2E2E; font-weight:400; font-style:normal; text-decoration:none; text-align:center; letter-spacing:0.08em; word-spacing:normal; text-transform:uppercase; font-variant:inherit; line-height:1.2; text-shadow:none; margin-top:0%; margin-right:0%; margin-bottom:0%; margin-left:0%; padding-top:0%; padding-right:4%; padding-bottom:0%; padding-left:4%; }
.ul_1023874> li.selected, .icon.ul_1023875:after{word-spacing:normal; font-variant:inherit; }
.ul_1023874> li.selected, .icon.ul_1023876:after{word-spacing:normal; font-variant:inherit; }
.ul_1020151> li.selected, .icon.ul_1020154:after{color:#3C3C3B; font-weight:400; word-spacing:normal; text-transform:uppercase; font-variant:inherit; text-shadow:none; }
.ul_1020150> li, .icon.ul_1020150:after{font-family:freight-big-pro; font-size:14.4px; font-size:1.2rem; color:#2E2E2E; font-weight:400; font-style:normal; text-decoration:none; text-align:center; letter-spacing:0.08em; word-spacing:normal; text-transform:uppercase; font-variant:inherit; line-height:1.2; text-shadow:none; margin-top:0%; margin-right:0%; margin-bottom:0%; margin-left:0%; padding-top:0%; padding-right:4%; padding-bottom:0%; padding-left:4%; }
.custom-stylesheet-var{z-index:20211209; position:relative; }
.grid-stylsheet-test{position:absolute; z-index:-5;; }
.width_1020088{width:100%; }
.width_1021355{width:95%; }
.max_width_1020089{max-width:960px; }
.max_width_1020126{max-width:1200px; }
.max_width_1020136{max-width:800px; }
.max_width_1020387{max-width:1920px; }
.max_width_1020388{max-width:1680px; }
.max_width_1021356{max-width:1000px; }
.max_width_1021410{max-width:1500px; }
.grid-setting-1020090 .masonry-column-sizer{width:12.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020090 .skn-cell.cols1{width:12.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020090 .skn-cell.cols2{width:30%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020090 .skn-cell.cols3{width:47.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020090 .skn-cell.cols4{width:65%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020090 .skn-cell.cols5{width:82.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020090 .skn-cell.cols6{width:100%; }
.grid-setting-1020090 .masonry-gutter-sizer{width:5%; }
.skn-section:not(.custom-grid) .grid-setting-1020090 .skn-cell{margin-bottom:3%; }
.grid-setting-1020139 .masonry-column-sizer{width:12.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020139 .skn-cell.cols1{width:12.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020139 .skn-cell.cols2{width:30%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020139 .skn-cell.cols3{width:47.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020139 .skn-cell.cols4{width:65%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020139 .skn-cell.cols5{width:82.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020139 .skn-cell.cols6{width:100%; }
.grid-setting-1020139 .masonry-gutter-sizer{width:5%; }
.skn-section:not(.custom-grid) .grid-setting-1020139 .skn-cell{margin-bottom:3%; }
.grid-setting-1020140 .masonry-column-sizer{width:7.4166666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020140 .skn-cell.cols1{width:7.4166666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020140 .skn-cell.cols2{width:15.833333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020140 .skn-cell.cols3{width:24.25%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020140 .skn-cell.cols4{width:32.666666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020140 .skn-cell.cols5{width:41.083333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020140 .skn-cell.cols6{width:49.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020140 .skn-cell.cols7{width:57.916666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020140 .skn-cell.cols8{width:66.333333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020140 .skn-cell.cols9{width:74.75%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020140 .skn-cell.cols10{width:83.166666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020140 .skn-cell.cols11{width:91.583333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020140 .skn-cell.cols12{width:100%; }
.grid-setting-1020140 .masonry-gutter-sizer{width:1%; }
.skn-section:not(.custom-grid) .grid-setting-1020140 .skn-cell{margin-bottom:0%; }
.grid-setting-1020372 .masonry-column-sizer{width:calc(100% / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020372 .skn-cell.cols1{width:calc(100% * 1 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020372 .skn-cell.cols2{width:calc(100% * 2 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020372 .skn-cell.cols3{width:calc(100% * 3 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020372 .skn-cell.cols4{width:calc(100% * 4 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020372 .skn-cell.cols5{width:calc(100% * 5 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020372 .skn-cell.cols6{width:calc(100% * 6 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020372 .skn-cell.cols7{width:calc(100% * 7 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020372 .skn-cell.cols8{width:calc(100% * 8 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020372 .skn-cell.cols9{width:calc(100% * 9 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020372 .skn-cell.cols10{width:calc(100% * 10 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020372 .skn-cell.cols11{width:calc(100% * 11 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020372 .skn-cell.cols12{width:calc(100% * 12 / 12); }
.grid-setting-1020372 .masonry-gutter-sizer{width:0%; }
.skn-section:not(.custom-grid) .grid-setting-1020372 .skn-cell{margin-bottom:0%; }
.grid-setting-1020395 .masonry-column-sizer{width:5.5833333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020395 .skn-cell.cols1{width:5.5833333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020395 .skn-cell.cols2{width:14.166666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020395 .skn-cell.cols3{width:22.75%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020395 .skn-cell.cols4{width:31.333333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020395 .skn-cell.cols5{width:39.916666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020395 .skn-cell.cols6{width:48.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020395 .skn-cell.cols7{width:57.083333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020395 .skn-cell.cols8{width:65.666666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020395 .skn-cell.cols9{width:74.25%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020395 .skn-cell.cols10{width:82.833333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020395 .skn-cell.cols11{width:91.416666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020395 .skn-cell.cols12{width:100%; }
.grid-setting-1020395 .masonry-gutter-sizer{width:3%; }
.skn-section:not(.custom-grid) .grid-setting-1020395 .skn-cell{margin-bottom:6%; }
.grid-setting-1020419 .masonry-column-sizer{width:6.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020419 .skn-cell.cols1{width:6.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020419 .skn-cell.cols2{width:15%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020419 .skn-cell.cols3{width:23.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020419 .skn-cell.cols4{width:32%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020419 .skn-cell.cols5{width:40.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020419 .skn-cell.cols6{width:49%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020419 .skn-cell.cols7{width:57.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020419 .skn-cell.cols8{width:66%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020419 .skn-cell.cols9{width:74.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020419 .skn-cell.cols10{width:83%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020419 .skn-cell.cols11{width:91.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020419 .skn-cell.cols12{width:100%; }
.grid-setting-1020419 .masonry-gutter-sizer{width:2%; }
.skn-section:not(.custom-grid) .grid-setting-1020419 .skn-cell{margin-bottom:1.5%; }
.grid-setting-1020469 .masonry-column-sizer{width:4.6666666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020469 .skn-cell.cols1{width:4.6666666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020469 .skn-cell.cols2{width:13.333333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020469 .skn-cell.cols3{width:22%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020469 .skn-cell.cols4{width:30.666666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020469 .skn-cell.cols5{width:39.333333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020469 .skn-cell.cols6{width:48%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020469 .skn-cell.cols7{width:56.666666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020469 .skn-cell.cols8{width:65.333333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020469 .skn-cell.cols9{width:74%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020469 .skn-cell.cols10{width:82.666666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020469 .skn-cell.cols11{width:91.333333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1020469 .skn-cell.cols12{width:100%; }
.grid-setting-1020469 .masonry-gutter-sizer{width:4%; }
.skn-section:not(.custom-grid) .grid-setting-1020469 .skn-cell{margin-bottom:2%; }
.grid-setting-1022353 .masonry-column-sizer{width:calc(100% / 1); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1022353 .skn-cell.cols1{width:calc(100% * 1 / 1); }
.grid-setting-1022353 .masonry-gutter-sizer{width:0%; }
.skn-section:not(.custom-grid) .grid-setting-1022353 .skn-cell{margin-bottom:0%; }
.grid-setting-1022371 .masonry-column-sizer{width:calc(100% / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1022371 .skn-cell.cols1{width:calc(100% * 1 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1022371 .skn-cell.cols2{width:calc(100% * 2 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1022371 .skn-cell.cols3{width:calc(100% * 3 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1022371 .skn-cell.cols4{width:calc(100% * 4 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1022371 .skn-cell.cols5{width:calc(100% * 5 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1022371 .skn-cell.cols6{width:calc(100% * 6 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1022371 .skn-cell.cols7{width:calc(100% * 7 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1022371 .skn-cell.cols8{width:calc(100% * 8 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1022371 .skn-cell.cols9{width:calc(100% * 9 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1022371 .skn-cell.cols10{width:calc(100% * 10 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1022371 .skn-cell.cols11{width:calc(100% * 11 / 12); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1022371 .skn-cell.cols12{width:calc(100% * 12 / 12); }
.grid-setting-1022371 .masonry-gutter-sizer{width:0%; }
.skn-section:not(.custom-grid) .grid-setting-1022371 .skn-cell{margin-bottom:0%; }
.grid-setting-1023448 .masonry-column-sizer{width:5.5833333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023448 .skn-cell.cols1{width:5.5833333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023448 .skn-cell.cols2{width:14.166666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023448 .skn-cell.cols3{width:22.75%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023448 .skn-cell.cols4{width:31.333333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023448 .skn-cell.cols5{width:39.916666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023448 .skn-cell.cols6{width:48.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023448 .skn-cell.cols7{width:57.083333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023448 .skn-cell.cols8{width:65.666666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023448 .skn-cell.cols9{width:74.25%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023448 .skn-cell.cols10{width:82.833333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023448 .skn-cell.cols11{width:91.416666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023448 .skn-cell.cols12{width:100%; }
.grid-setting-1023448 .masonry-gutter-sizer{width:3%; }
.skn-section:not(.custom-grid) .grid-setting-1023448 .skn-cell{margin-bottom:4%; }
.grid-setting-1023464 .masonry-column-sizer{width:5.5833333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023464 .skn-cell.cols1{width:5.5833333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023464 .skn-cell.cols2{width:14.166666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023464 .skn-cell.cols3{width:22.75%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023464 .skn-cell.cols4{width:31.333333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023464 .skn-cell.cols5{width:39.916666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023464 .skn-cell.cols6{width:48.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023464 .skn-cell.cols7{width:57.083333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023464 .skn-cell.cols8{width:65.666666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023464 .skn-cell.cols9{width:74.25%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023464 .skn-cell.cols10{width:82.833333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023464 .skn-cell.cols11{width:91.416666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1023464 .skn-cell.cols12{width:100%; }
.grid-setting-1023464 .masonry-gutter-sizer{width:3%; }
.skn-section:not(.custom-grid) .grid-setting-1023464 .skn-cell{margin-bottom:3%; }
.grid-setting-1024090 .masonry-column-sizer{width:5.5833333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024090 .skn-cell.cols1{width:5.5833333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024090 .skn-cell.cols2{width:14.166666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024090 .skn-cell.cols3{width:22.75%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024090 .skn-cell.cols4{width:31.333333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024090 .skn-cell.cols5{width:39.916666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024090 .skn-cell.cols6{width:48.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024090 .skn-cell.cols7{width:57.083333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024090 .skn-cell.cols8{width:65.666666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024090 .skn-cell.cols9{width:74.25%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024090 .skn-cell.cols10{width:82.833333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024090 .skn-cell.cols11{width:91.416666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024090 .skn-cell.cols12{width:100%; }
.grid-setting-1024090 .masonry-gutter-sizer{width:3%; }
.skn-section:not(.custom-grid) .grid-setting-1024090 .skn-cell{margin-bottom:4%; }
.grid-setting-1024315 .masonry-column-sizer{width:calc(100% / 11); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024315 .skn-cell.cols1{width:calc(100% * 1 / 11); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024315 .skn-cell.cols2{width:calc(100% * 2 / 11); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024315 .skn-cell.cols3{width:calc(100% * 3 / 11); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024315 .skn-cell.cols4{width:calc(100% * 4 / 11); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024315 .skn-cell.cols5{width:calc(100% * 5 / 11); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024315 .skn-cell.cols6{width:calc(100% * 6 / 11); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024315 .skn-cell.cols7{width:calc(100% * 7 / 11); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024315 .skn-cell.cols8{width:calc(100% * 8 / 11); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024315 .skn-cell.cols9{width:calc(100% * 9 / 11); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024315 .skn-cell.cols10{width:calc(100% * 10 / 11); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1024315 .skn-cell.cols11{width:calc(100% * 11 / 11); }
.grid-setting-1024315 .masonry-gutter-sizer{width:0%; }
.skn-section:not(.custom-grid) .grid-setting-1024315 .skn-cell{margin-bottom:0%; }
.padding_1020092{padding:1% 0% 1% 0%; }
body[data-skn-threshold="620"] .padding_1020092{padding:2% 0% 2% 0%; }
.padding_1020093{padding:2% 0% 2% 0%; }
body[data-skn-threshold="620"] .padding_1020093{padding:4% 0% 4% 0%; }
.padding_1020094{padding:3% 0% 3% 0%; }
body[data-skn-threshold="620"] .padding_1020094{padding:6% 0% 6% 0%; }
.padding_1020095{padding:4% 0% 4% 0%; }
body[data-skn-threshold="620"] .padding_1020095{padding:8% 0% 8% 0%; }
.padding_1020096{padding:5% 0% 5% 0%; }
body[data-skn-threshold="620"] .padding_1020096{padding:10% 0% 10% 0%; }
.padding_1020098{padding:1% 1% 1% 1%; }
body[data-skn-threshold="620"] .padding_1020098{padding:2% 2% 2% 2%; }
.padding_1020099{padding:2% 2% 2% 2%; }
body[data-skn-threshold="620"] .padding_1020099{padding:4% 4% 4% 4%; }
.padding_1020100{padding:3% 3% 3% 3%; }
body[data-skn-threshold="620"] .padding_1020100{padding:6% 6% 6% 6%; }
.padding_1020101{padding:4% 4% 4% 4%; }
body[data-skn-threshold="620"] .padding_1020101{padding:8% 8% 8% 8%; }
.padding_1020102{padding:5% 5% 5% 5%; }
body[data-skn-threshold="620"] .padding_1020102{padding:10% 8% 10% 8%; }
.padding_1020104{padding:1% 0% 0% 0%; }
body[data-skn-threshold="620"] .padding_1020104{padding:2% 0% 0% 0%; }
.padding_1020105{padding:2% 0% 0% 0%; }
body[data-skn-threshold="620"] .padding_1020105{padding:4% 0% 0% 0%; }
.padding_1020106{padding:3% 0% 0% 0%; }
body[data-skn-threshold="620"] .padding_1020106{padding:6% 0% 0% 0%; }
.padding_1020107{padding:4% 0% 0% 0%; }
body[data-skn-threshold="620"] .padding_1020107{padding:8% 0% 0% 0%; }
.padding_1020108{padding:2% 5% 0% 0%; }
body[data-skn-threshold="620"] .padding_1020108{padding:4% 8% 0% 0%; }
.padding_1020109{padding:0% 0% 1% 0%; }
body[data-skn-threshold="620"] .padding_1020109{padding:0% 0% 2% 0%; }
.padding_1020110{padding:0% 0% 2% 0%; }
body[data-skn-threshold="620"] .padding_1020110{padding:0% 0% 4% 0%; }
.padding_1020111{padding:0% 3% 3% 3%; }
body[data-skn-threshold="620"] .padding_1020111{padding:0% 6% 6% 6%; }
.padding_1020112{padding:0% 0% 4% 0%; }
body[data-skn-threshold="620"] .padding_1020112{padding:0% 0% 8% 0%; }
.padding_1020113{padding:0% 0% 6% 0%; }
body[data-skn-threshold="620"] .padding_1020113{padding:0% 0% 12% 0%; }
.padding_1020114{padding:0% 1% 0% 1%; }
body[data-skn-threshold="620"] .padding_1020114{padding:0% 2% 0% 2%; }
.padding_1020115{padding:0% 2% 0% 2%; }
body[data-skn-threshold="620"] .padding_1020115{padding:0% 4% 0% 4%; }
.padding_1020116{padding:0% 3% 4% 3%; }
body[data-skn-threshold="620"] .padding_1020116{padding:0% 6% 8% 6%; }
.padding_1020117{padding:0% 4% 0% 4%; }
body[data-skn-threshold="620"] .padding_1020117{padding:0% 8% 0% 8%; }
.padding_1020118{padding:0% 5% 0% 5%; }
body[data-skn-threshold="620"] .padding_1020118{padding:0% 8% 0% 8%; }
.padding_1020132{padding:15% 0% 15% 0%; }
body[data-skn-threshold="620"] .padding_1020132{padding:20% 0% 20% 0%; }
.padding_1020134{padding:10% 0% 10% 0%; }
body[data-skn-threshold="620"] .padding_1020134{padding:20% 0% 20% 0%; }
.padding_1020135{padding:0% 0% 20% 0%; }
body[data-skn-threshold="620"] .padding_1020135{padding:0% 0% 20% 0%; }
.padding_1020138{padding:0% 3% 4% 3%; }
body[data-skn-threshold="620"] .padding_1020138{padding:0% 6% 8% 6%; }
.padding_1020142{padding:1% 3% 1% 3%; }
body[data-skn-threshold="620"] .padding_1020142{padding:2% 6% 2% 6%; }
.padding_1020384{padding:1% 0% 1% 0%; }
body[data-skn-threshold="620"] .padding_1020384{padding:2% 0% 2% 0%; }
.padding_1020394{padding:0.8% 3% 0.8% 3%; }
body[data-skn-threshold="620"] .padding_1020394{padding:1.6% 6% 1.6% 6%; }
.padding_1020617{padding:2% 3% 2% 3%; }
body[data-skn-threshold="620"] .padding_1020617{padding:4% 6% 4% 6%; }
.padding_1020713{padding:4% 3% 4% 3%; }
body[data-skn-threshold="620"] .padding_1020713{padding:8% 6% 8% 6%; }
.padding_1021344{padding:0% 3% 0% 3%; }
body[data-skn-threshold="620"] .padding_1021344{padding:0% 6% 0% 6%; }
.padding_1021349{padding:2% 3% 4% 3%; }
body[data-skn-threshold="620"] .padding_1021349{padding:4% 6% 8% 6%; }
.padding_1022352{padding:1% 3% 1% 3%; }
body[data-skn-threshold="620"] .padding_1022352{padding:2% 6% 2% 6%; }
.padding_1022381{padding:0% 2% 0% 0%; }
body[data-skn-threshold="620"] .padding_1022381{padding:0% 4% 0% 0%; }
.padding_1022385{padding:3% 3% 2% 3%; }
body[data-skn-threshold="620"] .padding_1022385{padding:6% 6% 4% 6%; }
.padding_1022410{padding:0% 3% 2% 3%; }
body[data-skn-threshold="620"] .padding_1022410{padding:0% 6% 4% 6%; }
.padding_1022605{padding:0% 3% 0% 3%; }
body[data-skn-threshold="620"] .padding_1022605{padding:0% 6% 0% 6%; }
.padding_1022651{padding:4% 3% 2% 3%; }
body[data-skn-threshold="620"] .padding_1022651{padding:8% 6% 4% 6%; }
.padding_1022653{padding:6% 3% 3% 3%; }
body[data-skn-threshold="620"] .padding_1022653{padding:12% 6% 6% 6%; }
.padding_1023447{padding:0% 2% 4% 0%; }
body[data-skn-threshold="620"] .padding_1023447{padding:0% 4% 8% 0%; }
.padding_1023524{padding:0% 3% 1.5% 3%; }
body[data-skn-threshold="620"] .padding_1023524{padding:0% 6% 3% 6%; }
.padding_1023857{padding:2% 3% 3% 3%; }
body[data-skn-threshold="620"] .padding_1023857{padding:4% 6% 6% 6%; }
.skn-cell-widget-menu[data-menu-id="1020097"] .skn-menu-wrap{top:0px; left:0px; }
.skn-subnav[data-menu-id="1020097"] .skn-menu-wrap{top:0px; left:0px; }
.skn-cell-widget-menu[data-menu-id="1020103"] .skn-menu-wrap{top:-1px; left:0px; }
.skn-subnav[data-menu-id="1020103"] .skn-menu-wrap{top:-1px; left:0px; }
.skn-cell-widget-menu[data-menu-id="1020133"] .skn-menu-wrap{top:0px; left:0px; }
.skn-subnav[data-menu-id="1020133"] .skn-menu-wrap{top:0px; left:0px; }
.skn-cell-widget-menu[data-menu-id="1020137"] .skn-menu-wrap{top:0px; left:0px; }
.skn-subnav[data-menu-id="1020137"] .skn-menu-wrap{top:0px; left:0px; }
.gallery_setting_1020124 .slide{margin-right:10px; margin-left:10px; }
.gallery_setting_1020124 .carousel-dot-group{display:none; }
.gallery_setting_1020124 .carousel-dot-row{justify-content:center; }
.gallery_setting_1020124 .carousel-dot{margin:0 0px; }
.gallery_setting_1020124 .carousel-dot:before{height:px; width:px; }
.lightbox .gallery_setting_1020125 .slide{width:100% !important; transition:opacity 1s ease; will-change:opacity; }
.gallery_setting_1020125 .carousel-dot-group{display:none; }
.gallery_setting_1020125 .carousel-dot-row{justify-content:center; }
.gallery_setting_1020125 .carousel-dot{margin:0 0px; }
.gallery_setting_1020125 .carousel-dot:before{height:px; width:px; }
.lightbox .gallery_setting_1020129 .slide{width:100% !important; transition:opacity 1s ease; will-change:opacity; }
.gallery_setting_1020129 .carousel-dot-group{display:none; }
.gallery_setting_1020129 .carousel-dot-row{justify-content:center; }
.gallery_setting_1020129 .carousel-dot{margin:0 0px; }
.gallery_setting_1020129 .carousel-dot:before{height:px; width:px; }
.gallery_setting_1020416 .slide{transition:opacity 3s cubic-bezier(0.250, 0.100, 0.250, 1.000); will-change:opacity; width:calc((100% - 0px) / 1); }
.gallery_setting_1020416 .caption_container{background-color:transparent; }
.gallery_setting_1020416 .snimagegrid .caption_container{background-color:transparent; }
.gallery_setting_1020416 .flickity-prev-next-button{color:rgba(0,0,0,1); }
.gallery_setting_1020416 .flickity-prev-next-button:hover{color:rgba(0,0,0,1); }
.gallery_setting_1020416 .flickity-button{background-color:rgba(255,255,255,0.75); width:20px; height:20px; }
.gallery_setting_1020416 .flickity-button:hover{background-color:rgba(255,255,255,1); }
.gallery_setting_1020416 .carousel-dot-group{display:none; }
.gallery_setting_1020416 .carousel-dot-row{justify-content:center; }
.gallery_setting_1020416 .carousel-dot{margin:0 1px; }
.gallery_setting_1020416 .carousel-dot:before{height:8px; width:8px; }
.gallery_setting_1020614 .slide{margin-right:10px; margin-left:10px; }
.gallery_setting_1020614 .caption_container{background-color:transparent; }
.gallery_setting_1020614 .snimagegrid .caption_container{background-color:transparent; }
.gallery_setting_1020614 .flickity-prev-next-button{color:rgba(46,46,46,1); }
.gallery_setting_1020614 .flickity-prev-next-button:hover{color:rgba(46,46,46,1); }
.gallery_setting_1020614 .flickity-button{background-color:rgba(255,255,255,0.75); width:20px; height:20px; }
.gallery_setting_1020614 .flickity-button:hover{background-color:rgba(255,255,255,1); }
.gallery_setting_1020614 .carousel-dot-group{display:none; }
.gallery_setting_1020614 .carousel-dot-row{justify-content:center; }
.gallery_setting_1020614 .carousel-dot{margin:0 1px; }
.gallery_setting_1020614 .carousel-dot:before{height:8px; width:8px; }
.gallery_setting_1022395 .slide{transition:opacity 2s cubic-bezier(0.250, 0.100, 0.250, 1.000); will-change:opacity; width:calc((100% - 0px) / 1); }
.gallery_setting_1022395 .caption_container{background-color:transparent; }
.gallery_setting_1022395 .snimagegrid .caption_container{background-color:transparent; }
.gallery_setting_1022395 .flickity-prev-next-button{color:rgba(0,0,0,1); }
.gallery_setting_1022395 .flickity-prev-next-button:hover{color:rgba(0,0,0,1); }
.gallery_setting_1022395 .flickity-button{background-color:rgba(255,255,255,0.75); width:20px; height:20px; }
.gallery_setting_1022395 .flickity-button:hover{background-color:rgba(255,255,255,1); }
.gallery_setting_1022395 .carousel-dot-group{display:none; }
.gallery_setting_1022395 .carousel-dot-row{justify-content:center; }
.gallery_setting_1022395 .carousel-dot{margin:0 1px; }
.gallery_setting_1022395 .carousel-dot:before{height:8px; width:8px; }
.margin_1020127{margin-top:2%; margin-bottom:0%; }
.skn-inline.margin_1020127{margin-right:0%; margin-left:0%; }
.background_1020398.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/160/1748275976bone.jpg"); background-size:100% 21%; background-repeat:no-repeat; background-position:50% 103%; background-attachment:scroll; }
.webp .background_1020398.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/160/1748275976bone.webp"); }
.avif .background_1020398.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/160/1748275976bone.avif"); }
.background_1020398.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/320/1748275976bone.jpg"); background-size:100% 21%; background-repeat:no-repeat; background-position:50% 103%; background-attachment:scroll; }
.webp .background_1020398.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/320/1748275976bone.webp"); }
.avif .background_1020398.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/320/1748275976bone.avif"); }
.background_1020398.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/480/1748275976bone.jpg"); background-size:100% 21%; background-repeat:no-repeat; background-position:50% 103%; background-attachment:scroll; }
.webp .background_1020398.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/480/1748275976bone.webp"); }
.avif .background_1020398.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/480/1748275976bone.avif"); }
.background_1020398.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/683/1748275976bone.jpg"); background-size:100% 21%; background-repeat:no-repeat; background-position:50% 103%; background-attachment:scroll; }
.webp .background_1020398.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/683/1748275976bone.webp"); }
.avif .background_1020398.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/683/1748275976bone.avif"); }
.background_1020398.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/960/1748275976bone.jpg"); background-size:100% 21%; background-repeat:no-repeat; background-position:50% 103%; background-attachment:scroll; }
.webp .background_1020398.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/960/1748275976bone.webp"); }
.avif .background_1020398.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/960/1748275976bone.avif"); }
.background_1020398.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1366/1748275976bone.jpg"); background-size:100% 21%; background-repeat:no-repeat; background-position:50% 103%; background-attachment:scroll; }
.webp .background_1020398.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1366/1748275976bone.webp"); }
.avif .background_1020398.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1366/1748275976bone.avif"); }
.background_1020398.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1920/1748275976bone.jpg"); background-size:100% 21%; background-repeat:no-repeat; background-position:50% 103%; background-attachment:scroll; }
.webp .background_1020398.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1920/1748275976bone.webp"); }
.avif .background_1020398.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1920/1748275976bone.avif"); }
.background_1020398.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/2400/1748275976bone.jpg"); background-size:100% 21%; background-repeat:no-repeat; background-position:50% 103%; background-attachment:scroll; }
.webp .background_1020398.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/2400/1748275976bone.webp"); }
.avif .background_1020398.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/2400/1748275976bone.avif"); }
.background_1020398.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/2880/1748275976bone.jpg"); background-size:100% 21%; background-repeat:no-repeat; background-position:50% 103%; background-attachment:scroll; }
.webp .background_1020398.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/2880/1748275976bone.webp"); }
.avif .background_1020398.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/2880/1748275976bone.avif"); }
.background_1020398.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3360/1748275976bone.jpg"); background-size:100% 21%; background-repeat:no-repeat; background-position:50% 103%; background-attachment:scroll; }
.webp .background_1020398.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3360/1748275976bone.webp"); }
.avif .background_1020398.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3360/1748275976bone.avif"); }
.background_1020398.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3840/1748275976bone.jpg"); background-size:100% 21%; background-repeat:no-repeat; background-position:50% 103%; background-attachment:scroll; }
.webp .background_1020398.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3840/1748275976bone.webp"); }
.avif .background_1020398.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3840/1748275976bone.avif"); }
.background_1021338.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/320/1750728552smooth-boots.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 0%; background-attachment:scroll; }
.webp .background_1021338.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/320/1750728552smooth-boots.webp"); }
.avif .background_1021338.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/320/1750728552smooth-boots.avif"); }
.background_1021338.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/480/1750728552smooth-boots.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 0%; background-attachment:scroll; }
.webp .background_1021338.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/480/1750728552smooth-boots.webp"); }
.avif .background_1021338.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/480/1750728552smooth-boots.avif"); }
.background_1021338.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/683/1750728552smooth-boots.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 0%; background-attachment:scroll; }
.webp .background_1021338.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/683/1750728552smooth-boots.webp"); }
.avif .background_1021338.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/683/1750728552smooth-boots.avif"); }
.background_1021338.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/960/1750728552smooth-boots.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 0%; background-attachment:scroll; }
.webp .background_1021338.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/960/1750728552smooth-boots.webp"); }
.avif .background_1021338.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/960/1750728552smooth-boots.avif"); }
.background_1021338.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1366/1750728552smooth-boots.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 0%; background-attachment:scroll; }
.webp .background_1021338.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1366/1750728552smooth-boots.webp"); }
.avif .background_1021338.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1366/1750728552smooth-boots.avif"); }
.background_1021338.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1920/1750728552smooth-boots.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 0%; background-attachment:scroll; }
.webp .background_1021338.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1920/1750728552smooth-boots.webp"); }
.avif .background_1021338.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1920/1750728552smooth-boots.avif"); }
.background_1021338.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/2880/1750728552smooth-boots.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 0%; background-attachment:scroll; }
.webp .background_1021338.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/2880/1750728552smooth-boots.webp"); }
.avif .background_1021338.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/2880/1750728552smooth-boots.avif"); }
.background_1021338.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3360/1750728552smooth-boots.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 0%; background-attachment:scroll; }
.webp .background_1021338.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3360/1750728552smooth-boots.webp"); }
.avif .background_1021338.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3360/1750728552smooth-boots.avif"); }
.background_1021338.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3840/1750728552smooth-boots.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 0%; background-attachment:scroll; }
.webp .background_1021338.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3840/1750728552smooth-boots.webp"); }
.avif .background_1021338.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3840/1750728552smooth-boots.avif"); }
.background_1021338.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3360/1750728552smooth-boots.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 0%; background-attachment:scroll; }
.webp .background_1021338.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3360/1750728552smooth-boots.webp"); }
.avif .background_1021338.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3360/1750728552smooth-boots.avif"); }
.background_1021338.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3840/1750728552smooth-boots.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 0%; background-attachment:scroll; }
.webp .background_1021338.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3840/1750728552smooth-boots.webp"); }
.avif .background_1021338.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3840/1750728552smooth-boots.avif"); }
.background_1021354.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/160/1748723199window-white.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1021354.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/160/1748723199window-white.webp"); }
.avif .background_1021354.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/160/1748723199window-white.avif"); }
.background_1021354.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/320/1748723199window-white.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1021354.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/320/1748723199window-white.webp"); }
.avif .background_1021354.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/320/1748723199window-white.avif"); }
.background_1021354.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/480/1748723199window-white.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1021354.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/480/1748723199window-white.webp"); }
.avif .background_1021354.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/480/1748723199window-white.avif"); }
.background_1021354.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/683/1748723199window-white.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1021354.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/683/1748723199window-white.webp"); }
.avif .background_1021354.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/683/1748723199window-white.avif"); }
.background_1021354.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/960/1748723199window-white.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1021354.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/960/1748723199window-white.webp"); }
.avif .background_1021354.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/960/1748723199window-white.avif"); }
.background_1021354.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1366/1748723199window-white.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1021354.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1366/1748723199window-white.webp"); }
.avif .background_1021354.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1366/1748723199window-white.avif"); }
.background_1021354.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1920/1748723199window-white.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1021354.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1920/1748723199window-white.webp"); }
.avif .background_1021354.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1920/1748723199window-white.avif"); }
.background_1021354.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/2400/1748723199window-white.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1021354.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/2400/1748723199window-white.webp"); }
.avif .background_1021354.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/2400/1748723199window-white.avif"); }
.background_1021354.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/2880/1748723199window-white.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1021354.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/2880/1748723199window-white.webp"); }
.avif .background_1021354.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/2880/1748723199window-white.avif"); }
.background_1021354.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3360/1748723199window-white.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1021354.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3360/1748723199window-white.webp"); }
.avif .background_1021354.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3360/1748723199window-white.avif"); }
.background_1021354.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3840/1748723199window-white.jpg"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1021354.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3840/1748723199window-white.webp"); }
.avif .background_1021354.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/3840/1748723199window-white.avif"); }
.background_1022365.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022365.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif .background_1022365.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="160"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="160"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="160"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022365.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022365.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif .background_1022365.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="320"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="320"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="320"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022365.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022365.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif .background_1022365.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="480"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="480"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="480"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022365.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022365.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif .background_1022365.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="683"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="683"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="683"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022365.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022365.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif .background_1022365.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="960"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="960"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="960"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022365.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022365.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif .background_1022365.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="1366"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="1366"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="1366"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022365.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022365.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif .background_1022365.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="1920"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="1920"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="1920"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022365.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022365.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif .background_1022365.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="2400"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="2400"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="2400"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022365.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022365.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif .background_1022365.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="2880"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="2880"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="2880"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022365.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022365.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif .background_1022365.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="3360"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="3360"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="3360"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022365.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022365.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif .background_1022365.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="3840"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="3840"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022365.in-view[data-skn-threshold="3840"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"); }
body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022365.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748654478plus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022373.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022373.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif .background_1022373.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="160"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="160"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="160"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022373.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022373.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif .background_1022373.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="320"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="320"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="320"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022373.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022373.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif .background_1022373.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="480"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="480"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="480"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022373.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022373.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif .background_1022373.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="683"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="683"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="683"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022373.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022373.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif .background_1022373.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="960"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="960"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="960"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022373.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022373.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif .background_1022373.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="1366"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="1366"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="1366"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022373.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022373.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif .background_1022373.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="1920"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="1920"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="1920"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022373.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022373.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif .background_1022373.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="2400"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="2400"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="2400"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022373.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022373.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif .background_1022373.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="2880"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="2880"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="2880"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022373.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022373.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif .background_1022373.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="3360"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="3360"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="3360"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1022373.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); background-size:25px auto, 20px auto; background-repeat:no-repeat, no-repeat; background-position:50% 50%, 0% 50%; background-attachment:scroll, scroll; }
.webp .background_1022373.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif .background_1022373.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="3840"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.webp body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="3840"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
.avif body[data-skn-threshold="620"] .background_1022373.in-view[data-skn-threshold="3840"]{background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"); }
body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.png"); }
.webp body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.webp"); }
.avif body[data-skn-threshold="960"] .background_1022373.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1748655402minus.svg"), url("https://cloudfront.sketchanet.com/assets/image/transparent.avif"); }
.background_1023519.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); background-size:auto 90%; background-repeat:no-repeat; background-position:6% 60%; background-attachment:scroll; }
.webp .background_1023519.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.avif .background_1023519.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.background_1023519.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); background-size:auto 90%; background-repeat:no-repeat; background-position:6% 60%; background-attachment:scroll; }
.webp .background_1023519.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.avif .background_1023519.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.background_1023519.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); background-size:auto 90%; background-repeat:no-repeat; background-position:6% 60%; background-attachment:scroll; }
.webp .background_1023519.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.avif .background_1023519.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.background_1023519.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); background-size:auto 90%; background-repeat:no-repeat; background-position:6% 60%; background-attachment:scroll; }
.webp .background_1023519.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.avif .background_1023519.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.background_1023519.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); background-size:auto 90%; background-repeat:no-repeat; background-position:6% 60%; background-attachment:scroll; }
.webp .background_1023519.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.avif .background_1023519.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.background_1023519.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); background-size:auto 90%; background-repeat:no-repeat; background-position:6% 60%; background-attachment:scroll; }
.webp .background_1023519.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.avif .background_1023519.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.background_1023519.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); background-size:auto 90%; background-repeat:no-repeat; background-position:6% 60%; background-attachment:scroll; }
.webp .background_1023519.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.avif .background_1023519.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.background_1023519.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); background-size:auto 90%; background-repeat:no-repeat; background-position:6% 60%; background-attachment:scroll; }
.webp .background_1023519.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.avif .background_1023519.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.background_1023519.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); background-size:auto 90%; background-repeat:no-repeat; background-position:6% 60%; background-attachment:scroll; }
.webp .background_1023519.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.avif .background_1023519.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.background_1023519.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); background-size:auto 90%; background-repeat:no-repeat; background-position:6% 60%; background-attachment:scroll; }
.webp .background_1023519.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.avif .background_1023519.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.background_1023519.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); background-size:auto 90%; background-repeat:no-repeat; background-position:6% 60%; background-attachment:scroll; }
.webp .background_1023519.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.avif .background_1023519.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1020062/images/1749570238sujin-kim-logo.svg"); }
.postlist_setting_1023463 .post-item .post-link-after{margin-top:10px !important; }
.postlist_setting_1023463{grid-template-columns:repeat(auto-fill, minmax(400px, 1fr)); grid-column-gap:60px; grid-row-gap:60px; }
.postlist_setting_1023463 .post-item{display:flex; flex-direction:column; justify-content:space-between; }
.no-cssgrid .postlist_setting_1023463{display:flex; max-width:none; width:calc(100% + 60px); margin-left:-30px; margin-right:-30px; flex-flow:row wrap; justify-content:flex-start; }
.no-cssgrid .postlist_setting_1023463 .post-item{width:400px; flex:1 0 400px; margin:0 30px 60px 30px ; }
.postlist_setting_1023463 .post-item .limit-lines{-webkit-line-clamp:4; max-height:120px; }
.postlist_setting_1024244 .post-item .post-link-after{margin-top:10px !important; }
.postlist_setting_1024303 .post-item .post-link-after{margin-top:0px !important; }
.postlist_setting_1024303{grid-template-columns:repeat(auto-fill, minmax(400px, 1fr)); grid-column-gap:60px; grid-row-gap:60px; }
.postlist_setting_1024303 .post-item{display:flex; flex-direction:column; justify-content:space-between; }
.no-cssgrid .postlist_setting_1024303{display:flex; max-width:none; width:calc(100% + 60px); margin-left:-30px; margin-right:-30px; flex-flow:row wrap; justify-content:flex-start; }
.no-cssgrid .postlist_setting_1024303 .post-item{width:400px; flex:1 0 400px; margin:0 30px 60px 30px ; }
.complexSwatch1023600{border-top:none; border-right:none; border-bottom:1px solid rgb(46, 46, 46); border-bottom:1px solid rgba(46, 46, 46, 1); border-left:none; }
.complexSwatch1023414{background-color:#3C3C3B; background-color:rgba(60, 60, 59, 1); border:none; }
.complexSwatch1021414{border-top:none; border-right:1px solid rgb(0, 0, 0); border-right:1px solid rgba(0, 0, 0, 1); border-bottom:none; border-left:none; }
.complexSwatch1021400{background-color:#EAE6DD; background-color:rgba(234, 230, 221, 1); border:none; }
.complexSwatch1021385{background-color:#F9F8F6; background-color:rgba(249, 248, 246, 1); border:none; }
.sknform, .sknform *{-webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; }
@media screen and (max-width:460px){
.postlist_setting_1023463{grid-template-columns:1fr; }
.postlist_setting_1024303{grid-template-columns:1fr; }
}
