@import url("https://fonts.googleapis.com/css2?family=Georama:wght@100;300;400;700&display=swap");
:root {
  --color-white: 255, 255, 255;
  --color-black: 0, 0, 0;
  --color-grey: 61, 74, 84;
  --color-yellow: 251, 186, 0;
}
html {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

body {
  font-family: "Akrobat";
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100%;
  background-color: rgba(var(--color-grey), 1);
  color: rgba(var(--color-white), 1);
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  overflow: auto;
  font-size: 16px;
}

h1 {
  font-family: "Georama", sans-serif;
  font-size: max(4vw, 26px);
  line-height: 100%;
}
body.home {
  background-image: url("../images/bg.png");
  display: flex;
  justify-content: center;
  align-items: center;
}
body.home h1 {
  color: rgba(var(--color-yellow), 1);
  font-style: normal;
  font-weight: 100;
}

body.home img.logo {
  width: max(15.657vw, 160px);
}

body.home .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}
body.home .container ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
body.home .container ul li {
  margin: 0;
  padding: 0;
  text-align: center;
}
body.home .container ul li a {
  color: rgba(var(--color-white), 1);
  text-decoration: none;
  font-size: max(1.095vw, 16px);
}
body.home .container ul li a:hover {
  color: rgba(var(--color-yellow), 1);
}
.footer {
  width: 100%;
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 1;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.footerul li {
  margin: 0;
  padding: 0;
  text-align: center;
}
.footer ul li img {
  width: max(1.641vw, 20px);
  height: max(1.641vw, 20px);
}

body.inner .container {
  display: grid;
  height: 100vh;
  width: 100vw;
  grid-template-columns: repeat(1, 4fr) repeat(1, 8fr);
}
body.inner .panel-left {
  background-image: url(../images/art.png);
  background-repeat: no-repeat;
  background-position: bottom -5px right;
  background-size: 100% auto;
  display: flex;
  position: relative;
  padding-right: 30px;
}
body.inner .panel-left::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: -30px;
  background-color: rgba(var(--color-yellow), 1);
  z-index: -1;
}
body.inner .panel-left .panel-left_inner {
  display: flex;
  padding: 100px 0px 50px 0px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}
body.inner .panel-left img {
  width: max(13vw, 100px);
}
body.inner .panel-left ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
body.inner .panel-left ul li {
  margin: 0;
  padding: 0;
  margin-bottom: 5px;
  text-align: center;
}
body.inner .container ul li a {
  color: rgba(var(--color-black), 1);
  text-decoration: none;
  font-size: max(1.095vw, 16px);
  font-weight: lighter;
}
body.inner .container ul li a:hover {
  text-decoration: underline;
}
body.inner .container ul li.active a {
  font-weight: bold;
  text-decoration: none;
}
body.inner .footer {
  bottom: 20px;
  right: 20px;
}
body.inner .panel-right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
body.inner .panel-right-contents {
  max-width: 100%;
  height: 100vh;
  overflow-y: auto;
  flex: 1;
  padding: 0px 100px;
}
body.inner .panel-right-contents.panel-right-contents-story {
  max-width: 500px;
}
body.inner .panel-right-contents-flex {
  display: flex;
  align-items: center;
  gap: 100px;
}
body.inner .panel-right-contents p {
  padding: 0px 0px 20px 0px;
  text-align: justify;
  font-weight: 300;
  line-height: 130%;
}
body.inner .panel-right-contents p.left {
  text-align: left;
}
body.inner .panel-right-contents-flex p.left {
  text-align: left;
  padding: 0;
  height: 90%;
  overflow: scroll;
}
body.inner .panel-right-contents-flex p.left a {
  display: inline-block;
  text-decoration: underline;
  cursor: pointer;
  padding-right: 15px;
  background-image: url(../images/arrow@2x.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px auto;
}
body.inner .panel-right-contents-flex p.left span {
  display: none;
}
body.inner .panel-right-contents-flex p.left.active a {
  display: none;
}
body.inner .panel-right-contents-flex p.left.active span {
  display: block;
}
body.inner .panel-right-contents b {
  font-size: max(6.313vw, 40px);
  line-height: 100%;
  float: left;
  color: rgba(var(--color-yellow), 1);
  font-style: normal;
  font-weight: 100;
  padding-right: 10px;
}
body.inner .panel-right-contents h1 {
  color: rgba(var(--color-yellow), 1);
  font-weight: lighter;
  text-align: center;
}

body.inner .testimonial {
  padding: 20px;
  position: relative;
  text-align: justify;
  display: flex;
  gap: 20px;
  max-width: 600px;
  margin: 0px auto;
}
body.inner .testimonial .testimonial-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.inner .testimonial .testimonial-text p {
  font-weight: 300;
  padding: 0px;
  margin: 0px;
}
/* body.inner .testimonial::after {
  content: "";
  background-image: url(../images/quote-right.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  position: absolute;
  right: 20px;
  bottom: 40px;
  width: 40px;
  height: 40px;
}

body.inner .testimonial::before {
  content: "";
  background-image: url(../images/quote-left.png);
  background-repeat: no-repeat;
  background-position: top left;
  position: absolute;
  left: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
} */
iframe {
  background-color: #ffffff;
}
body.inner .addresses {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 30px;
}
body.inner .addresses p {
  margin: 0px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-repeat: no-repeat;
  background-position: left top 5px;
  background-size: 12px auto;
  font-size: 18px;
}
body.inner .addresses p.location {
  background-image: url(../images/location@2x.png);
}
body.inner .addresses p.email {
  background-image: url(../images/email@2x.png);
}
body.inner .addresses p.phone {
  background-image: url(../images/phone@2x.png);
}
body.inner .addresses p.web {
  background-image: url(../images/web@2x.png);
}
@media (max-width: 867px) {
  body.inner .panel-right-contents.panel-right-contents-story {
    max-width: 100%;
  }
  body.inner .panel-right-contents {
    padding: 0px 40px;
  }
}
@media (max-width: 728px) {
  body.inner .panel-right-contents {
    padding: 0px 20px;
  }
  body.inner .panel-right-contents p {
    padding-top: 20px;
    padding: 0px;
  }
  body.inner .panel-left img {
    width: max(15.783vw, 80px);
  }
  body.inner .panel-left {
    padding-right: 10px;
  }
  body.inner .panel-left::before {
    left: -10px;
  }
  body.inner .panel-right-contents p {
    text-align: left;
    word-wrap: break-word;
  }
  body.inner .testimonial {
    flex-direction: column-reverse;
    padding: 20px 0px;
    gap: 10px;
  }
  body.inner .panel-right-contents-flex {
    flex-direction: column;
    gap: 0px;
  }
  body.inner .addresses {
      flex-direction:column;
  }
  body.inner .addresses p {
      padding-left:20px;
      margin-bottom:5px;
  }
  }
}
