@charset "UTF-8";
/** Colorの定義 **/
/** 文字の定義**/
/* ==============================
  
	  共通
  
  ============================== */
* {
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-appearance: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  overflow: hidden;
  color: #0071bc;
}

a:hover {
  color: #ffb700;
}

img {
  border: none;
  line-height: 0;
  vertical-align: bottom;
  max-width: 100%;
}

img[data-echo] {
  background-image: url(../images/common/loader-white.gif);
  background-size: 30px 30px;
  background-position: center center;
  border: solid 1px #ddd;
  border-radius: 5px;
}

img[data-echo].loaded {
  background-image: none;
}

i {
  font-style: normal;
}

.clear {
  clear: both;
  height: 0;
  line-height: 0;
  font-size: 0;
}

.space10 {
  height: 10px;
}

.space20 {
  height: 20px;
}

.space30 {
  height: 30px;
}

.space40 {
  height: 40px;
}

.space50 {
  height: 50px;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .space50 {
    height: 30px;
  }
}

.space100 {
  height: 100px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

.bold {
  font-weight: bold;
}

.txt-left {
  text-align: left;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.red {
  color: #c00;
}

ul li {
  list-style: none;
}

.alpha {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media (hover: hover) {
  .alpha:hover {
    opacity: 0.7;
  }
}

.wrap-alpha a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media (hover: hover) {
  .wrap-alpha a:hover {
    opacity: 0.7;
  }
}

.bd-01 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, rgba(252, 238, 33, 0.8)));
  background: linear-gradient(transparent 60%, rgba(252, 238, 33, 0.8) 0%);
  font-weight: 400;
}

.bd-02 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, rgba(228, 0, 3, 0.4)));
  background: linear-gradient(transparent 60%, rgba(228, 0, 3, 0.4) 0%);
  font-weight: bold;
}

.bd-03 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, rgba(0, 65, 219, 0.5)));
  background: linear-gradient(transparent 60%, rgba(0, 65, 219, 0.5) 0%);
  font-weight: bold;
}

.cursor {
  cursor: pointer;
}

input[type="text"]:focus {
  outline: 0;
}

button:focus {
  outline: 0;
  -webkit-appearance: none;
  border-radius: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-table;
}

.link a {
  color: #0071bc;
}

.link a:hover {
  color: #ffb700;
}

/** Loader **/
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  z-index: 5;
  -webkit-transition: all 0.8s .8s;
  transition: all 0.8s .8s;
}

#loader-bg.on {
  opacity: 0;
  visibility: hidden;
}

#loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#loader img {
  width: 30px;
  height: 30px;
}

/** ***********************************************

COMMON

*********************************************** **/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 79px;
}

@media screen and (max-width: 700px) {
  html {
    scroll-padding-top: 59px;
  }
}

body {
  font-family: "Noto Sans JP","Helvetica Neue", Arial ,"Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  letter-spacing: 0.8px;
  font-weight: 500;
  background-color: #000;
  -webkit-text-size-adjust: 100%;
}

#wrapper {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

#wrapper.on {
  opacity: 1;
}

.inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 0 50px;
}

@media screen and (max-width: 900px) {
  .inner {
    padding: 0 20px;
  }
}

.wrap-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bt-lineup {
  display: block;
  margin: 0 auto;
  font-size: 16px;
  background-color: #fbead4;
  border: solid 1px #ffb700;
  -webkit-box-shadow: 0 5px 0 #ffb700;
          box-shadow: 0 5px 0 #ffb700;
  border-radius: 100px;
  text-align: center;
  padding: 20px;
  max-width: 250px;
  color: #333;
  font-weight: 400;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .bt-lineup {
    font-size: 14px;
  }
}

.bt-lineup span {
  position: relative;
  z-index: 3;
}

.bt-lineup::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -100%;
  background-color: #e9f4f0;
  width: 100%;
  height: 100%;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}

.bt-lineup:hover {
  color: #333;
}

.bt-lineup:hover::after {
  left: 0;
}

.enlarge {
  position: relative;
}

.enlarge::after {
  content: url(../images/common/search.svg);
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: 3px;
  right: 3px;
  z-index: 3;
  opacity: 0.4;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .enlarge::after {
    opacity: 1;
  }
}

@media (hover: hover) {
  .enlarge:hover::after {
    opacity: 1;
  }
}

/* ==============================
  
	  ファイル読み込み 
  
  ==============================   */
.header {
  position: fixed;
  z-index: 9999;
  background-color: #000;
  width: 100%;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5%;
  -webkit-transition: height 0.4s;
  transition: height 0.4s;
}

@media screen and (max-width: 700px) {
  .header {
    height: 80px;
  }
}

.header.on {
  height: 80px;
}

@media screen and (max-width: 700px) {
  .header.on {
    height: 60px;
  }
}

@media screen and (max-width: 700px) {
  .header.on #bt-nav {
    top: 10px;
  }
}

.header .logo-leupold {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 700px) {
  .header .logo-leupold {
    margin: 0 auto;
  }
}

.header .logo-leupold img {
  display: block;
  width: 100%;
  max-width: 200px;
}

@media screen and (max-width: 700px) {
  .header .logo-leupold img {
    max-width: 150px;
  }
}

@media screen and (max-width: 700px) {
  .header .gnav {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    padding: 100px 20px 50px;
    z-index: 1;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition: all .4s;
    transition: all .4s;
  }
}

.header .gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 700px) {
  .header .gnav ul {
    display: block;
  }
}

.header .gnav ul li {
  list-style: disc;
  color: #CEAE5A;
}

@media screen and (max-width: 700px) {
  .header .gnav ul li {
    list-style: none;
  }
}

@media screen and (max-width: 700px) {
  .header .gnav ul li:last-child a {
    border-bottom: solid 1px #CEAE5A;
  }
}

.header .gnav ul a {
  color: #CEAE5A;
  font-weight: bold;
  letter-spacing: 1px;
}

@media (hover: hover) {
  .header .gnav ul a:hover {
    text-decoration: underline;
  }
}

@media screen and (max-width: 1200px) {
  .header .gnav ul a {
    font-size: 14px;
  }
}

@media screen and (max-width: 700px) {
  .header .gnav ul a {
    padding: 10px 0;
    font-size: 16px;
    display: block;
    border-top: solid 1px #CEAE5A;
  }
}

.header .gnav.on {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#bt-nav {
  display: none;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: fixed;
  top: 20px;
  right: 10px;
  padding: 8px;
  cursor: pointer;
  z-index: 999999;
  border-radius: 3px;
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 700px) {
  #bt-nav {
    display: block;
  }
}

#bt-nav span {
  position: absolute;
  width: 30px;
  display: block;
  border-top: solid 1.5px #CEAE5A;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

#bt-nav .item-01 {
  top: 10px;
  left: 10px;
}

#bt-nav .item-02 {
  top: 18px;
  left: 10px;
}

#bt-nav .item-03 {
  top: 26px;
  left: 10px;
}

#bt-nav .txt {
  font-size: 10px;
  top: 32px;
  border-top: none;
  width: 50px;
  text-align: center;
  left: 0px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

#bt-nav.on .item-01 {
  -webkit-transform: rotate(-34deg);
          transform: rotate(-34deg);
  -webkit-transform-origin: right;
          transform-origin: right;
}

#bt-nav.on .item-02 {
  width: 0;
}

#bt-nav.on .item-03 {
  -webkit-transform: rotate(34deg);
          transform: rotate(34deg);
  -webkit-transform-origin: right;
          transform-origin: right;
}

#back-top {
  position: fixed;
  bottom: 0px;
  right: 30px;
  z-index: 9999;
  width: 50px;
  opacity: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (max-width: 700px) {
  #back-top {
    bottom: 20px;
    right: 10px;
    width: 40px;
  }
}

#back-top img {
  width: 100%;
  height: auto;
}

#back-top.on {
  bottom: 30px;
  opacity: 1;
}

@media (hover: hover) {
  #back-top:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}

footer {
  background-color: #111;
  color: #fff;
  padding-bottom: 10px;
  text-align: center;
  position: relative;
  z-index: 9999;
}

footer .inner {
  padding: 100px 50px;
}

@media screen and (max-width: 834px) {
  footer .ft-logo {
    max-width: 200px;
  }
}

footer .copy {
  letter-spacing: 1.5px;
  font-size: 10px;
  color: #666;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  footer .copy {
    letter-spacing: 1px;
  }
}

main {
  position: relative;
  z-index: 2;
  overflow-x: hidden;
}

.mv {
  width: 100%;
  position: relative;
}

.mv .mv-slide {
  height: 100vh;
}

.mv .cover-img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100vh !important;
  -webkit-transition: -webkit-filter 3s;
  transition: -webkit-filter 3s;
  transition: filter 3s;
  transition: filter 3s, -webkit-filter 3s;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

@-webkit-keyframes cover {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes cover {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media screen and (max-width: 1024px) {
  .mv .cover-img {
    width: auto !important;
    height: 100vh !important;
  }
}

.mv .add-animation {
  -webkit-animation: cover 24s;
          animation: cover 24s;
}

.mv .slick-current .cover-img {
  -webkit-filter: blur(0);
          filter: blur(0);
}

.mv .wrap-logo-bk {
  position: absolute;
  top: 45%;
  right: 5%;
  width: 300px;
  -webkit-filter: drop-shadow(0 0 3px #fff);
          filter: drop-shadow(0 0 3px #fff);
  z-index: 5;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .mv .wrap-logo-bk {
    right: 15%;
    width: 70%;
    text-align: center;
  }
}

.mv .wrap-logo-bk img {
  display: block;
}

.mv .wrap-logo-bk span {
  display: block;
  border-top: solid 1.5px #111;
  padding: 10px;
  margin-top: 10px;
  text-align: right;
}

.mv .bar {
  width: 0;
  height: 5px;
  background-color: #eee;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  -webkit-animation: bar 5.5s infinite;
          animation: bar 5.5s infinite;
}

@-webkit-keyframes bar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes bar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.mv .layer {
  display: block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  -webkit-transition: all 0.8s .8s;
  transition: all 0.8s .8s;
  opacity: 1;
}

.mv .layer.on {
  opacity: 0;
  visibility: hidden;
}

.sec-common {
  padding: 150px 0;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .sec-common {
    padding: 100px 0;
  }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-common {
    padding: 80px 0;
  }
}

.sec-about {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-bottom: 0;
}

.sec-about .inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 0;
  width: 90%;
  margin-bottom: 200px;
}

@media screen and (max-width: 1024px) {
  .sec-about .inner {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-about .inner {
    margin-bottom: 80px;
  }
}

.sec-about .inner::after {
  content: "";
  display: block;
  width: 0;
  height: 1.5px;
  background-color: #000;
  position: absolute;
  bottom: -50px;
  left: 0;
  -webkit-transition: width 0.6s 0.2s;
  transition: width 0.6s 0.2s;
}

.sec-about .inner.on::after {
  width: 100%;
}

.sec-about .title {
  position: relative;
}

.sec-about .title.on::after {
  width: 50%;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-about .title.on::after {
    width: 20%;
  }
}

.sec-about .title::after {
  content: "";
  width: 0;
  position: absolute;
  top: 10px;
  right: 0;
  height: 1.5px;
  background-color: #000;
  -webkit-transition: width 0.6s 0.2s;
  transition: width 0.6s 0.2s;
}

.sec-about .title img {
  max-width: 40%;
  display: block;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-about .title img {
    max-width: 70%;
  }
}

.sec-about .title span {
  display: block;
  font-size: 14px;
  margin-top: 20px;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-about .title span {
    font-size: 12px;
  }
}

.sec-about .desc {
  margin: 50px 0;
}

.sec-about .desc p {
  line-height: 2.4;
  letter-spacing: 2px;
  text-align: justify;
  font-size: 20px;
}

@media screen and (max-width: 1200px) {
  .sec-about .desc p {
    font-size: 18px;
  }
}

@media screen and (max-width: 1024px) {
  .sec-about .desc p {
    font-size: 16px;
  }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-about .desc p {
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: 1.5px;
  }
}

.sec-about .bg-about {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec-about .about-imgs {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-about .about-imgs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.sec-about .about-imgs picture {
  display: block;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-about .about-imgs picture:nth-of-type(1) {
    width: 50%;
    height: 150px;
    display: block;
    background-color: #fff;
  }
  .sec-about .about-imgs picture:nth-of-type(1) img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-about .about-imgs picture:nth-of-type(2) {
    width: 50%;
    height: 150px;
    display: block;
  }
  .sec-about .about-imgs picture:nth-of-type(2) img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-about .about-imgs picture:nth-of-type(3) {
    width: 100%;
    height: 180px;
  }
  .sec-about .about-imgs picture:nth-of-type(3) img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
    -o-object-position: bottom;
       object-position: bottom;
  }
}

.sec-products {
  position: relative;
  padding-bottom: 0;
  background-color: #000;
}

.sec-products .container {
  position: relative;
  z-index: 2;
}

.sec-products .wrap-title {
  margin-bottom: 150px;
}

@media screen and (max-width: 1024px) {
  .sec-products .wrap-title {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .wrap-title {
    margin-bottom: 50px;
  }
}

.sec-products .title {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.sec-products .title.on::before {
  width: 30%;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .title.on::before {
    width: 40px;
  }
}

.sec-products .title.on::after {
  width: 30%;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .title.on::after {
    width: 40px;
  }
}

.sec-products .title::before {
  content: "";
  width: 0;
  position: absolute;
  top: 10px;
  left: 0;
  height: 1.5px;
  background-color: #CEAE5A;
  -webkit-transition: width 0.6s 0.2s;
  transition: width 0.6s 0.2s;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .title::before {
    left: 10%;
  }
}

.sec-products .title::after {
  content: "";
  width: 0;
  position: absolute;
  top: 10px;
  right: 0;
  height: 1.5px;
  background-color: #CEAE5A;
  -webkit-transition: width 0.6s 0.2s;
  transition: width 0.6s 0.2s;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .title::after {
    right: 10%;
  }
}

.sec-products .title img {
  max-width: 250px;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .sec-products .title img {
    max-width: 200px;
  }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .title img {
    max-width: 150px;
  }
}

.sec-products .title span {
  display: block;
  font-size: 14px;
  margin-top: 20px;
  color: #CEAE5A;
  text-align: center;
  letter-spacing: 2px;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .title span {
    font-size: 12px;
  }
}

.sec-products .wrap-pd-title {
  position: relative;
  margin-bottom: 80px;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .wrap-pd-title {
    margin-bottom: 50px;
  }
}

.sec-products .wrap-pd-title .pd-title {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 3;
}

@media screen and (max-width: 1400px) {
  .sec-products .wrap-pd-title .pd-title {
    width: 80%;
    height: 80%;
    max-width: 250px;
    max-height: 250px;
  }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .wrap-pd-title .pd-title {
    max-width: 180px;
    max-height: 180px;
  }
}

.sec-products .wrap-pd-title .pd-title h3 {
  width: 80%;
  max-width: 200px;
}

.sec-products .wrap-pd-title .pd-title h3.title-txt {
  color: #fff;
  font-size: 30px;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .wrap-pd-title .pd-title h3.title-txt {
    font-size: 20px;
  }
}

.sec-products .wrap-pd-title .pd-title img {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 1400px) {
  .sec-products .wrap-pd-title .pd-title img {
    max-width: 150px;
  }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .wrap-pd-title .pd-title img {
    max-width: 100px;
  }
}

.sec-products .wrap-pd-title span {
  display: block;
  font-size: 14px;
  margin-top: 20px;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
}

.sec-products .wrap-pd-title .imgs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1200px) {
  .sec-products .wrap-pd-title .imgs {
    width: 120%;
    -webkit-transform: translateX(-8%);
            transform: translateX(-8%);
  }
}

@media screen and (max-width: 834px) {
  .sec-products .wrap-pd-title .imgs {
    width: 140%;
    -webkit-transform: translateX(-14.2%);
            transform: translateX(-14.2%);
  }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .wrap-pd-title .imgs {
    width: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.sec-products .wrap-pd-title .imgs picture {
  width: calc(100% / 3);
  display: block;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .wrap-pd-title .imgs picture:nth-of-type(1) {
    display: none;
  }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .wrap-pd-title .imgs picture:nth-of-type(3) {
    display: none;
  }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .wrap-pd-title .imgs picture {
    width: 100%;
  }
}

.sec-products .block {
  background-image: url(../images/bg-products.webp);
  background-size: cover;
  background-color: #fff;
  padding-bottom: 80px;
  overflow-x: hidden;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .block {
    padding-bottom: 40px;
  }
}

.sec-products .block.block-2 {
  border-top: solid 1px #CEAE5A;
  padding-top: 80px;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .block.block-2 {
    padding-top: 40px;
  }
}

.sec-products .wrap-flex-pd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 50px;
  max-width: 1400px;
  margin: 0 auto;
}

@media screen and (max-width: 834px) {
  .sec-products .wrap-flex-pd {
    display: block;
    padding: 20px 30px;
  }
}

.sec-products .wrap-flex-pd .col {
  width: 50%;
  padding: 30px;
}

@media screen and (max-width: 834px) {
  .sec-products .wrap-flex-pd .col {
    width: 100%;
  }
}

@media screen and (max-width: 834px) and (max-width: 500px) and (orientation: portrait) {
  .sec-products .wrap-flex-pd .col {
    padding: 20px 0;
  }
}

.sec-products .wrap-flex-pd .col.col-img {
  padding: 30px 60px;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .wrap-flex-pd .col.col-img {
    padding: 20px 0 40px;
  }
}

.sec-products .title-pd {
  margin-bottom: 20px;
  border-bottom: solid 1.5px #000;
  padding-bottom: 20px;
}

.sec-products .title-pd.title-txt {
  font-size: 30px;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .title-pd.title-txt {
    font-size: 24px;
  }
}

.sec-products .title-pd img {
  display: block;
}

.sec-products .title-pd .title-img-1 {
  max-width: 60px;
  margin-bottom: 15px;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .title-pd .title-img-1 {
    max-width: 40px;
  }
}

.sec-products .title-pd .title-img-2 {
  height: 35px;
  width: auto;
  margin: 0 0 5px;
}

@media screen and (max-width: 1200px) {
  .sec-products .title-pd .title-img-2 {
    height: 30px;
  }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .title-pd .title-img-2 {
    height: 24px;
  }
}

.sec-products .title-pd .zoom {
  display: block;
  color: #CEAE5A;
  font-size: 40px;
}

@media screen and (max-width: 1200px) {
  .sec-products .title-pd .zoom {
    font-size: 35px;
  }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .title-pd .zoom {
    font-size: 26px;
  }
}

.sec-products .catch {
  margin-bottom: 20px;
}

.sec-products .catch p {
  font-weight: bold;
  font-size: 20px;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .catch p {
    font-size: 18px;
  }
}

.sec-products .desc {
  margin-bottom: 20px;
}

.sec-products .desc p {
  font-size: 16px;
  line-height: 1.8;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .desc p {
    font-size: 14px;
  }
}

.sec-products .desc .note {
  display: block;
  margin-top: 10px;
  font-size: smaller;
}

.sec-products .wrap-bts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding-top: 30px;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .wrap-bts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sec-products .wrap-bts .bt {
  display: block;
  width: calc(50% - 5px);
  background-color: #000;
  color: #CEAE5A;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
  -webkit-filter: drop-shadow(0 0 3px #666);
          filter: drop-shadow(0 0 3px #666);
  -webkit-transition: -webkit-filter .2s;
  transition: -webkit-filter .2s;
  transition: filter .2s;
  transition: filter .2s, -webkit-filter .2s;
}

@media screen and (max-width: 1024px) {
  .sec-products .wrap-bts .bt {
    padding: 15px;
    font-size: 14px;
  }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .wrap-bts .bt {
    width: 100%;
    font-size: 15px;
  }
}

@media (hover: hover) {
  .sec-products .wrap-bts .bt:hover {
    -webkit-filter: drop-shadow(0 0 0px transparent);
            filter: drop-shadow(0 0 0px transparent);
  }
}

.sec-products .wrap-bts .bt .arrow {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #CEAE5A;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 1024px) {
  .sec-products .wrap-bts .bt .arrow {
    width: 20px;
    height: 20px;
  }
}

.sec-products .wrap-bts .bt .arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 1.5px #000;
  border-right: solid 1.5px #000;
  display: block;
  position: absolute;
  top: 50%;
  left: 45%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (max-width: 1024px) {
  .sec-products .wrap-bts .bt .arrow::after {
    width: 6px;
    height: 6px;
  }
}

.sec-products .slick {
  background-color: #fff;
  overflow: visible;
}

.sec-products .slick .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sec-products .slick .slick-slide {
  padding: 30px 0;
}

@media screen and (max-width: 1024px) {
  .sec-products .slick .slick-slide {
    padding: 20px 0;
  }
}

.sec-products .slick .slick-slide img {
  display: block;
  margin: 0 auto;
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 450px !important;
}

@media screen and (max-width: 1024px) {
  .sec-products .slick .slick-slide img {
    max-height: 330px !important;
  }
}

.sec-products .slick .slick-slide.img-pd img {
  padding: 30px;
}

.sec-products .slick .slick-dots {
  text-align: center;
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 10;
  background-color: transparent;
  padding: 0;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sec-products .slick .slick-dots button {
  display: none;
}

.sec-products .slick .slick-dots li {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 100%;
  cursor: pointer;
}

.sec-products .slick .slick-dots li.slick-active {
  background-color: #CEAE5A;
}

.sec-products .slick .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 30px;
  height: 30px;
  background-color: black;
  cursor: pointer;
  border-radius: 100px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .slick .slick-arrow {
    width: 30px;
    height: 30px;
  }
}

.sec-products .slick .slick-arrow i {
  width: 8px;
  height: 8px;
  border-top: solid 1.5px #CEAE5A;
  border-right: solid 1.5px #CEAE5A;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .slick .slick-arrow i {
    width: 8px;
    height: 8px;
  }
}

.sec-products .slick .slick-arrow.prev {
  left: -50px;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .slick .slick-arrow.prev {
    left: -20px;
  }
}

.sec-products .slick .slick-arrow.prev i {
  -webkit-transform: translate(-45%, -50%) rotate(-135deg);
          transform: translate(-45%, -50%) rotate(-135deg);
}

.sec-products .slick .slick-arrow.next {
  right: -50px;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-products .slick .slick-arrow.next {
    right: -20px;
  }
}

.sec-products .slick .slick-arrow.next i {
  -webkit-transform: translate(-45%, -50%) rotate(45deg);
          transform: translate(-45%, -50%) rotate(45deg);
}

.ft-image {
  height: 600px;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .ft-image {
    height: 500px;
  }
}

.ft-image .wrap-logo-ft {
  width: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: hidden;
}

.ft-image .wrap-logo-ft::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #CEAE5A;
  display: block;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.ft-image .wrap-logo-ft.on::after {
  left: 100%;
}

.ft-image .wrap-logo-ft.on .ft-logo {
  opacity: 1;
}

@media screen and (max-width: 1200px) {
  .ft-image .wrap-logo-ft {
    width: 350px;
  }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .ft-image .wrap-logo-ft {
    width: 250px;
  }
}

.ft-image .wrap-logo-ft .ft-logo {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  -webkit-transition: opacity 0.4s 0.2s;
  transition: opacity 0.4s 0.2s;
}

.ft-image .ft-image-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.4;
}

.slick {
  width: 100%;
  position: relative;
  -webkit-backface-visibility: hidden;
}

.slick .slick-slide {
  display: inline-block;
  overflow: hidden;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .slick-arrow {
    width: 30px;
    height: 30px;
  }
}

.slick-arrow i {
  width: 12px;
  height: 12px;
  border-top: solid 1px #eee;
  border-right: solid 1px #eee;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  .slick-arrow i {
    width: 8px;
    height: 8px;
  }
}

.slick-arrow.prev {
  left: 0;
}

.slick-arrow.prev i {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}

.slick-arrow.next {
  right: 0;
}

.slick-arrow.next i {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}

.fa-angle-left {
  width: 50px;
  height: 50px;
  display: block;
  border-top: solid 1px #333;
  border-left: solid 1px #333;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.fa-angle-right {
  width: 50px;
  height: 50px;
  display: block;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.slick-dots {
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px 30px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slick-dots button {
  display: none;
}

.slick-dots li {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 6px;
  background-color: #eee;
  border-radius: 100%;
  cursor: pointer;
}

.slick-dots li.slick-active {
  background-color: #CEAE5A;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.visible {
  opacity: 1;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
}

.invisible {
  opacity: 0;
}

.fromTopIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}

.fromTopOut {
  -webkit-transform: translate(0, -20px);
          transform: translate(0, -20px);
  opacity: 0;
}

.fromBottomIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}

.fromBottomOut {
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
  opacity: 0;
}

.fromLeftIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}

.fromLeftOut {
  -webkit-transform: translate(-20px, 0);
          transform: translate(-20px, 0);
  opacity: 0;
}

.fromRightIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}

.fromRightOut {
  -webkit-transform: translate(20px, 0);
          transform: translate(20px, 0);
  opacity: 0;
}

.scaleUpIn {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  opacity: 1;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}

.scaleUpOut {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
  opacity: 0;
}

.scaleDownIn {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  opacity: 1;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}

.scaleDownOut {
  -webkit-transform: scale(0.7, 0.7);
          transform: scale(0.7, 0.7);
  opacity: 0;
}

.rotateIn {
  -webkit-transform: rotate(0deg) scale(1);
          transform: rotate(0deg) scale(1);
  opacity: 1;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}

.rotateOut {
  -webkit-transform: rotate(30deg) scale(0.9);
          transform: rotate(30deg) scale(0.9);
  opacity: 0;
}

.delay1 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.delay2 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.delay3 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.delay4 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.delay5 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.delay6 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.delay7 {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.delay8 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.delay9 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.delay10 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.speed1 {
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
}

.speed2 {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.speed3 {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.speed4 {
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.speed5 {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.speed6 {
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
}

.speed7 {
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
}

.speed8 {
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.speed9 {
  -webkit-transition-duration: 0.9s;
          transition-duration: 0.9s;
}

.speed10 {
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

.carousel {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.carousel *, .carousel *:before, .carousel *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.carousel.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.carousel.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.carousel__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.carousel__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: .25;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  -webkit-box-shadow: var(--carousel-button-shadow, none);
          box-shadow: var(--carousel-button-shadow, none);
  -webkit-transition: opacity .15s ease;
  transition: opacity .15s ease;
}

.carousel__button.is-prev, .carousel__button.is-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.carousel__button.is-prev {
  left: 10px;
}

.carousel__button.is-next {
  right: 10px;
}

.carousel__button[disabled] {
  cursor: default;
  opacity: .3;
}

.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  -webkit-filter: var(--carousel-button-svg-filter, none);
          filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

html.with-fancybox {
  scroll-behavior: auto;
}

body.compensate-for-scrollbar {
  overflow: hidden !important;
  -ms-touch-action: none;
      touch-action: none;
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: none;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.fancybox__container :focus {
  outline: none;
}

body:not(.is-using-mouse) .fancybox__container :focus {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
          box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width:48px;
    --carousel-button-height:48px;
    --carousel-button-svg-width:27px;
    --carousel-button-svg-height:27px;
  }
}

.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10;
}

.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}

.fancybox__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.fancybox__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  overscroll-behavior: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0px;
          flex: 0 0 0;
  margin: auto;
}

@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}

.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 20;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.fancybox__caption {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow-wrap: anywhere;
}

.is-loading .fancybox__caption {
  visibility: hidden;
}

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
  right: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}

.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}

.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}

@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}

.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__no-click, .fancybox__no-click button {
  pointer-events: none;
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}

.fancybox__spinner svg {
  -webkit-animation: fancybox-rotate 2s linear infinite;
          animation: fancybox-rotate 2s linear infinite;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1,200;
  stroke-dashoffset: 0;
  -webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
          animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124px;
  }
}

@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124px;
  }
}

.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  -webkit-animation: .15s ease backwards fancybox-fadeIn;
          animation: .15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
  -webkit-animation: .15s ease both fancybox-fadeOut;
          animation: .15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
  -webkit-animation: .15s ease both fancybox-fadeIn;
          animation: .15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
  -webkit-animation: .1s ease both fancybox-fadeOut;
          animation: .1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
  -webkit-animation: .2s ease both fancybox-zoomInUp;
          animation: .2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
  -webkit-animation: .15s ease both fancybox-zoomOutDown;
          animation: .15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp {
  -webkit-animation: .15s ease both fancybox-throwOutUp;
          animation: .15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
  -webkit-animation: .15s ease both fancybox-throwOutDown;
          animation: .15s ease both fancybox-throwOutDown;
}

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

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

@-webkit-keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}

@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}

@-webkit-keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

@keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

@-webkit-keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
            transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}

@keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
            transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}

@-webkit-keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
            transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}

@keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
            transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}

.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__image {
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: transparent;
  min-height: 1px;
}

.is-closing .has-image .fancybox__content {
  overflow: visible;
}

.has-image[data-image-fit=contain] {
  overflow: visible;
  -ms-touch-action: none;
      touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}

.has-image[data-image-fit=cover] {
  overflow: visible;
  -ms-touch-action: none;
      touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  max-width: 100%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: transparent;
}

.fancybox-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.fancybox__thumbs {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  -webkit-animation: .15s ease-in backwards fancybox-fadeIn;
          animation: .15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}

.fancybox__thumbs .carousel__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: visible;
  cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  -webkit-transition: opacity .15s ease;
  transition: opacity .15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: .92;
}

.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100%/(var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(8.1%, rgba(0, 0, 0, 0.006)), color-stop(15.5%, rgba(0, 0, 0, 0.021)), color-stop(22.5%, rgba(0, 0, 0, 0.046)), color-stop(29%, rgba(0, 0, 0, 0.077)), color-stop(35.3%, rgba(0, 0, 0, 0.114)), color-stop(41.2%, rgba(0, 0, 0, 0.155)), color-stop(47.1%, rgba(0, 0, 0, 0.198)), color-stop(52.9%, rgba(0, 0, 0, 0.242)), color-stop(58.8%, rgba(0, 0, 0, 0.285)), color-stop(64.7%, rgba(0, 0, 0, 0.326)), color-stop(71%, rgba(0, 0, 0, 0.363)), color-stop(77.5%, rgba(0, 0, 0, 0.394)), color-stop(84.5%, rgba(0, 0, 0, 0.419)), color-stop(91.9%, rgba(0, 0, 0, 0.434)), to(rgba(0, 0, 0, 0.44)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.006) 8.1%, rgba(0, 0, 0, 0.021) 15.5%, rgba(0, 0, 0, 0.046) 22.5%, rgba(0, 0, 0, 0.077) 29%, rgba(0, 0, 0, 0.114) 35.3%, rgba(0, 0, 0, 0.155) 41.2%, rgba(0, 0, 0, 0.198) 47.1%, rgba(0, 0, 0, 0.242) 52.9%, rgba(0, 0, 0, 0.285) 58.8%, rgba(0, 0, 0, 0.326) 64.7%, rgba(0, 0, 0, 0.363) 71%, rgba(0, 0, 0, 0.394) 77.5%, rgba(0, 0, 0, 0.419) 84.5%, rgba(0, 0, 0, 0.434) 91.9%, rgba(0, 0, 0, 0.44) 100%);
  padding: 0;
  -ms-touch-action: none;
      touch-action: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}

@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  -webkit-animation: .15s ease-in backwards fancybox-fadeIn;
          animation: .15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}

.fancybox__toolbar__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fancybox__toolbar__items--left {
  margin-right: auto;
}

.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.fancybox__toolbar__items--right {
  margin-left: auto;
}

@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}

.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__container:-webkit-full-screen::backdrop {
  opacity: 0;
}

.fancybox__container:-moz-full-screen::backdrop {
  opacity: 0;
}

.fancybox__container:-ms-fullscreen::backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-moz-full-screen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:-moz-full-screen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}
/*# sourceMappingURL=common.css.map */