/* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
button, hr, input {
  overflow: visible;
}

progress, sub, sup {
  vertical-align: baseline;
}

[type=checkbox], [type=radio], legend {
  box-sizing: border-box;
  padding: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

details, main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: ButtonText dotted 1px;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

[hidden], template {
  display: none;
}

/* basic-tags */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  position: relative;
}

main {
  background-color: #000;
}

.dom-load-only {
  display: none;
}

header {
  position: relative;
  height: 100%;
  width: 100%;
}

.header__contents {
  display: grid;
  grid-template-areas: "sgrlogo" "title" "sign";
  grid-template-columns: 1fr;
  grid-template-rows: 53px 1fr 131px;
  height: 100%;
  padding: 15px 15px 23px;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .header__contents {
    padding: 25px 25px 32px;
    grid-template-rows: 73px 1fr 188px;
  }
}
@media screen and (min-width: 768px) {
  .header__contents {
    padding: 34px 60px 90px;
    grid-template-rows: 159px 1fr 188px;
  }
}

.header__sgrlogo {
  grid-area: sgrlogo;
  height: 22px;
  width: 80px;
  justify-self: end;
}
@media screen and (min-width: 576px) {
  .header__sgrlogo {
    height: 31px;
    width: 115px;
  }
}
@media screen and (min-width: 768px) {
  .header__sgrlogo {
    height: 39px;
    width: 143px;
  }
}
.header__sgrlogo a {
  background: url(../img/head/sgr_logo.svg) right top/contain no-repeat;
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .header__sgrlogo a {
    transition: opacity 0.15s ease-in 0s;
  }
  .header__sgrlogo a:hover {
    opacity: 0.65;
  }
}

h1 {
  background: url(../img/head/luxe-title.svg) center top/290px auto no-repeat;
  grid-area: title;
  margin: 0;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 3s 0.1s ease-out, filter 3s 0s ease-out;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (min-width: 576px) {
  h1 {
    background-size: 420px auto;
  }
}
@media screen and (min-width: 576px) {
  h1 {
    background-size: 385px auto;
  }
}
h1.active {
  opacity: 1;
  filter: blur(0px);
}

.header__scrollsign {
  animation: 0.85s ease-out 0s infinite alternate-reverse none running scroll_sign;
  grid-area: sign;
}
.header__scrollsign img {
  display: block;
  margin: 0 auto;
  height: 100%;
  width: auto;
}

@keyframes scroll_sign {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-20px);
  }
}
.slid__app {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.slid__img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s 0s ease-in;
}
.slid__img.active {
  opacity: 1;
}

.slid__img img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.caro__app {
  overflow: hidden;
  padding: 40px 0 70px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .caro__app {
    padding: 60px 0 155px;
  }
}
@media screen and (min-width: 768px) {
  .caro__app {
    padding: 90px 0 155px;
  }
}
@media screen and (min-width: 992px) {
  .caro__app {
    padding: 90px 0 176px;
  }
}

.caro__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 0 14px;
}

.caro__nav-item {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 28px;
  justify-content: center;
  margin: 0 5px;
  width: 28px;
}

.caro__nav-item::after {
  background-color: transparent;
  border: 1px solid #8e602f;
  border-radius: 50%;
  content: "";
  display: block;
  height: 15px;
  width: 15px;
}
@media screen and (min-width: 768px) {
  .caro__nav-item::after {
    transition: background-color 0.15s 0s linear;
  }
}

@media screen and (min-width: 768px) {
  .caro__nav-item:hover::after {
    background-color: #b47a3c;
  }
}

.caro__nav-item.active::after {
  background-color: #8e602f;
}

.caro__img-container {
  position: relative;
}

.caro__img-container {
  display: flex;
  position: absolute;
}
.caro__img-container.moving {
  transition: left 1s 0s ease-in-out;
}

.caro__img {
  flex: 0 0 auto;
  height: 171px;
  margin-right: 15px;
  opacity: 0;
  width: 266px;
  transition: opacity 1s 0s linear;
}
@media screen and (min-width: 576px) {
  .caro__img {
    height: 297px;
    margin-right: 26px;
    width: 462px;
  }
}
@media screen and (min-width: 768px) {
  .caro__img {
    height: 396px;
    margin-right: 35px;
    width: 616px;
  }
}
@media screen and (min-width: 992px) {
  .caro__img {
    height: 450px;
    margin-right: 40px;
    width: 700px;
  }
}
.caro__img > img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.caro__logos {
  height: 70px;
  margin: 15px auto 0;
  position: relative;
  width: 266px;
}
@media screen and (min-width: 576px) {
  .caro__logos {
    height: 80px;
    margin-top: 25px;
    width: 303.99999924px;
  }
}
@media screen and (min-width: 768px) {
  .caro__logos {
    height: 90px;
    margin-top: 42px;
    width: 342.00000114px;
  }
}

.caro__logo {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 1s 0s ease-out;
}
.caro__logo.active {
  opacity: 1;
}
.caro__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__section {
  display: grid;
  gap: 50px 0;
  grid-template-columns: 260px;
  grid-template-rows: repeat(auto-fit, 209px);
  grid-auto-rows: 209px;
  justify-content: center;
  margin: 0 auto;
  padding-bottom: 70px;
  width: 260px;
}
@media screen and (min-width: 576px) {
  .brand__section {
    gap: 81px 64px;
    grid-template-columns: repeat(2, 226px);
    grid-template-rows: repeat(auto-fit, 188px);
    grid-auto-rows: 188px;
    padding-bottom: 145px;
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .brand__section {
    gap: 68px 55px;
    grid-template-columns: repeat(3, 193px);
    grid-template-rows: repeat(auto-fit, 157px);
    grid-auto-rows: 175px;
  }
}
@media screen and (min-width: 992px) {
  .brand__section {
    gap: 93px 71px;
    grid-template-columns: repeat(3, 250px);
    grid-template-rows: repeat(auto-fit, 203px);
    grid-auto-rows: 203px;
    padding-bottom: 165px;
  }
}
@media screen and (min-width: 1200px) {
  .brand__section {
    gap: 112px 85px;
    grid-template-columns: repeat(3, 300px);
    grid-template-rows: repeat(auto-fit, 242px);
    grid-auto-rows: 242px;
  }
}

.brand__item {
  overflow: hidden;
  position: relative;
}

.brand__item::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  right: 0;
  top: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), black 50%, black 100%);
  transition: right 1s 0s ease-out;
}

.brand__item.active::after {
  right: -200%;
}

.brand__label {
  color: #b48b49;
  font-family: "Cormorant SC", serif;
  font-size: 22px;
  height: 32px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .brand__label {
    font-size: 17px;
    height: 24px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .brand__label {
    font-size: 22px;
    height: 32px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .brand__label {
    font-size: 26px;
    height: 38px;
    margin: 0;
  }
}

.brand__logo > a,
.brand__logo > span {
  border: 1px solid #664321;
  display: block;
}
.brand__logo img {
  object-fit: contain;
  height: 100%;
  width: 100%;
  transition: transform 0.5s 0s ease-in-out;
}
@media screen and (min-width: 768px) {
  .brand__logo > a:hover img {
    transform: scale(1.1);
  }
}

footer {
  background-color: #7e5819;
  height: 121px;
  padding-top: 46px;
}
@media screen and (min-width: 576px) {
  footer {
    height: 161px;
    padding-top: 62px;
  }
}
@media screen and (min-width: 992px) {
  footer {
    height: 183px;
    padding-top: 70px;
  }
}

.footer__psplogo a {
  background: url(../img/foot/kps_logo.svg) center top/contain no-repeat;
  display: block;
  height: 13px;
  margin: 0 auto;
  width: 290px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (min-width: 576px) {
  .footer__psplogo a {
    height: 18px;
    width: 388px;
  }
}
@media screen and (min-width: 768px) {
  .footer__psplogo a {
    transition: opacity 0.15s ease-in 0s;
  }
  .footer__psplogo a:hover {
    opacity: 0.65;
  }
}
@media screen and (min-width: 992px) {
  .footer__psplogo a {
    height: 20px;
    width: 442px;
  }
}

.footer__colophpn {
  color: #fff;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: normal;
  line-height: 1;
  margin-top: 27px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@media screen and (min-width: 576px) {
  .footer__colophpn {
    font-size: 11px;
    margin-top: 38px;
  }
}
@media screen and (min-width: 992px) {
  .footer__colophpn {
    font-size: 12px;
    margin-top: 45px;
  }
}
/*# sourceMappingURL=cssmaps/style.css.map */
