@charset "UTF-8";
@font-face {
  font-family: "Pretendard-Regular";
  src: url("../font/Pretendard-Regular.woff");
  font-weight: normal;
}
@font-face {
  font-family: "Pretendard-Medium";
  src: url("../font/Pretendard-Medium.woff2");
  font-weight: normal;
}
@font-face {
  font-family: "Pretendard-ExtraBold";
  src: url("../font/Pretendard-ExtraBold.woff");
  font-weight: normal;
}
* {
  color: #fff;
}
* h1 {
  font-family: "Pretendard-Regular";
}

.wp-text-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

html {
  width: 100vw;
  overflow-x: hidden;
}

body {
  background: #000;
  overflow-x: hidden;
  width: 100vw;
}
body .mainSection {
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
body .mainSection:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  position: absolute;
}
body .mainSection:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url(../img/main-background.png);
  background-size: cover;
  animation: scaleBig 60s linear infinite;
}
@keyframes scaleBig {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
body .mainSection .title {
  width: 1200px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 15vh;
  padding-top: calc(var(--vh, 1vh) * 15);
  margin: 0 auto;
  padding-left: 100px;
  position: relative;
  z-index: 100;
}
body .mainSection .title > h2 {
  font-size: 25px;
  font-weight: 100;
  padding-bottom: 10px;
}
body .mainSection .title > h2 span {
  font-weight: lighter;
  font-size: 18px;
  letter-spacing: 5px;
}
body .mainSection .title > .wp-text-row {
  padding: 5px 0;
}
body .mainSection .title > .wp-text-row h1 {
  color: #FFDA00;
  font-weight: 100;
}
body .mainSection .title > .wp-text-row h1:nth-child(2) {
  padding: 0 20px;
  font-size: 26px;
}
body .mainSection .title > .wp-text-row h4 {
  color: #FFDA00;
  font-size: 17px;
  letter-spacing: -1px;
  margin-right: 15px;
  padding-top: 5px;
}
body .mainSection .title > .wp-text-row p {
  color: #fff;
  font-size: 20px;
  font-family: "Pretendard-Regular";
}
body .mainSection .title > .wp-text-row p.big {
  font-weight: bold;
  font-size: 30px;
  letter-spacing: -1.5px;
}
body .mainSection .title > img {
  padding: 20px 0;
  width: 66%;
}
body .mainSection .title button {
  font-size: 30px;
  padding: 12px 0;
  width: 163px;
  margin-top: 40px;
  font-weight: bold;
  font-family: "Pretendard-Bold", sans-serif;
  letter-spacing: 4px;
  border: 1px solid #a8a8a8;
  position: relative;
  color: #fff;
  transition: color 0.5s ease-in-out;
}
body .mainSection .title button:after {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  background: #FFDA00;
  left: 0;
  top: 0;
  z-index: -1;
  transition: 0.5s ease-in-out;
}
body .mainSection .title button:hover {
  color: #000;
}
body .mainSection .title button:hover:after {
  width: 100%;
}
body .mainSection .organizer {
  position: absolute;
  display: flex;
  bottom: 35px;
  left: 25vw;
  z-index: 100;
  align-items: center;
}
body .mainSection .organizer span {
  color: #FFDA00;
  margin-right: 10px;
  margin-top: 5px;
}
body .mainSection .organizer p {
  font-family: "Pretendard-Regular";
  margin-right: 20px;
}
body .mainSection .bottomDeco {
  position: absolute;
  width: 54vw;
  z-index: 10;
  bottom: -10px;
  right: 130px;
}
body .bottomSection {
  position: relative;
}
body .bottomSection .discription {
  width: 1200px;
  margin: 0 auto;
  padding: 30vh 15vh 50vh;
  padding: calc(var(--vh, 1vh) * 30) calc(var(--vh, 1vh) * 15) calc(var(--vh, 1vh) * 50);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  position: relative;
}
body .bottomSection .discription > img {
  width: 70%;
  opacity: 0;
  transition: opacity 0.5s linear;
}
body .bottomSection .discription p {
  margin-top: 10vh;
  margin-top: calc(var(--vh, 1vh) * 10);
  font-family: "Pretendard-Regular";
  font-size: 14px;
  width: 60%;
  line-height: 3;
  opacity: 0;
  transition: opacity 1s linear;
}
body .bottomSection .discription.active img {
  opacity: 1;
}
body .bottomSection .discription.active p {
  opacity: 1;
}
body .bottomSection .discription .deco {
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 0;
  z-index: -1;
}
body .bottomSection .discription .deco > img {
  width: 90%;
  margin: 0 10px;
}
body .bottomSection .artist {
  padding: 15vh 0;
  padding: calc(var(--vh, 1vh) * 15) 0;
  width: 1200px;
  display: flex;
  margin: 0 auto;
  align-items: flex-end;
}
body .bottomSection .artist .left, body .bottomSection .artist .right {
  width: 50%;
  position: relative;
  display: flex;
}
body .bottomSection .artist .left .artist-wp {
  width: 100%;
  height: 80vh;
  height: calc(var(--vh, 1vh) * 80);
  position: relative;
}
body .bottomSection .artist .left .artist-wp img {
  position: absolute;
}
body .bottomSection .artist .left .artist-wp img:first-child {
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s linear;
}
body .bottomSection .artist .left .artist-wp img:nth-child(2) {
  height: 70%;
  bottom: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.8s linear;
}
body .bottomSection .artist .left .artist-wp img:last-child {
  bottom: 0;
  z-index: 3;
  height: 12%;
  left: 20%;
  opacity: 0;
  transition: opacity 1s linear;
}
body .bottomSection .artist.active .left .artist-wp img:first-child {
  opacity: 1;
}
body .bottomSection .artist.active .left .artist-wp img:nth-child(2) {
  opacity: 1;
}
body .bottomSection .artist.active .left .artist-wp img:nth-child(3) {
  opacity: 1;
}
body .bottomSection .artist .right {
  flex-direction: column;
  padding-left: 15%;
}
body .bottomSection .artist .right h2 {
  font-family: "ONE-Mobile-Light";
  font-size: 30px;
  font-weight: 100;
  margin-bottom: 65px;
  opacity: 0;
  transition: opacity 0.5s linear;
}
body .bottomSection .artist .right h2 span {
  font-family: "Pretendard-Regular";
}
body .bottomSection .artist .right p {
  font-family: "Pretendard-Medium", sans-serif;
  font-size: 14px;
  width: 95%;
  line-height: 3;
  margin-bottom: 10vh;
  margin-bottom: calc(var(--vh, 1vh) * 10);
  opacity: 0;
  transition: opacity 0.89s linear;
}
body .bottomSection .artist.active .right h2, body .bottomSection .artist.active .right p {
  opacity: 1;
}
body .bottomSection .artist.henry {
  margin-top: 20vh;
  margin-top: calc(var(--vh, 1vh) * 20);
}
body .bottomSection .artist.henry .right {
  transition: all 1s ease-in-out;
}
body .bottomSection .artist.henry .right h2 span {
  color: #AEFF36;
}
body .bottomSection .artist.aiki {
  flex-direction: row-reverse;
}
body .bottomSection .artist.aiki .right {
  padding-left: 0;
  padding-right: 15%;
}
body .bottomSection .artist.aiki .right h2 span {
  color: #FFDA00;
}
body .bottomSection .artist.kino .left .artist-wp img:last-child {
  left: 55%;
}
body .bottomSection .artist.kino .right h2 span {
  color: #00CC9C;
}
body .bottomSection .artist.hee {
  flex-direction: row-reverse;
  margin-bottom: 20vh;
  margin-bottom: calc(var(--vh, 1vh) * 20);
}
body .bottomSection .artist.hee .left .artist-wp img:nth-child(2) {
  right: 0;
}
body .bottomSection .artist.hee .left .artist-wp img:last-child {
  left: -15%;
}
body .bottomSection .artist.hee .right {
  padding-left: 0;
  padding-right: 15%;
}
body .bottomSection .artist.hee .right h2 span {
  color: #00F3FF;
}
body .bottomSection .press {
  width: 1200px;
  margin: 0 auto 35vh;
  margin: 0 auto calc(var(--vh, 1vh) * 35);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: all 0.5s linear;
}
body .bottomSection .press.active {
  opacity: 1;
}
body .bottomSection .press img {
  width: 200px;
  margin-bottom: 5vh;
  margin-bottom: calc(var(--vh, 1vh) * 5);
}
body .bottomSection .press ul.pressbox li h1 {
  font-size: 30px;
  padding-bottom: 20px;
}
body .bottomSection .press ul.pressbox li:nth-child(1) > ul.active-press img.icon {
  transform: rotate(180deg);
}
body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li {
  margin-bottom: 20px;
  cursor: pointer;
}
body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li .title-wp {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #555;
  padding-bottom: 20px;
  justify-content: space-between;
  width: 100%;
}
body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li .title-wp > h3 {
  font-size: 20px;
  padding-right: 10px;
}
body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li .title-wp > p {
  font-size: 15px;
  font-family: "Pretendard-Regular";
}
body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li .title-wp img {
  filter: invert(1);
  width: 25px;
}
body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li .title-wp img.icon {
  margin-bottom: 0;
  cursor: pointer;
}
body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li .title-wp.active-press img.icon {
  transform: rotate(180deg);
}
body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li ul.cont {
  display: none;
}
body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li ul.cont .img-wp {
  height: 500px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 0;
}
body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li ul.cont .img-wp img {
  width: 100%;
}
body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li ul.cont p {
  font-size: 14px;
  font-family: "Pretendard-Regular";
  line-height: 2.3;
  padding: 20px 0;
}
body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li ul.cont button {
  margin: 20px 0;
  border: 1px solid #fff;
  padding: 10px 20px;
}
body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li ul.cont.active-press {
  display: block;
}
body .bottomSection .press ul.pressbox li:nth-child(2) {
  margin-top: 100px;
}
body .bottomSection .press ul.pressbox li:nth-child(2) h3 {
  font-family: "Pretendard-Regular";
  font-size: 20px;
  background: rgba(198, 251, 24, 0.9921568627);
  color: #000;
  padding: 20px 10px;
}
body .bottomSection .press ul.pressbox li:nth-child(2) .press-wp {
  padding: 25px 0;
  display: flex;
  align-items: center;
}
body .bottomSection .press ul.pressbox li:nth-child(2) .press-wp p {
  font-family: "Pretendard-Regular";
  font-size: 20px;
}
body .bottomSection .press ul.pressbox li:nth-child(2) .press-wp button {
  border: 1px solid rgba(198, 251, 24, 0.9921568627);
  color: rgba(198, 251, 24, 0.9921568627);
  padding: 10px;
  cursor: pointer;
  margin-left: 20px;
}
body .bottomSection .map {
  width: 1200px;
  margin: 0 auto 35vh;
  margin: 0 auto calc(var(--vh, 1vh) * 35);
  display: flex;
  flex-direction: column;
}
body .bottomSection .map img {
  width: 200px;
  margin-bottom: 5vh;
  margin-bottom: calc(var(--vh, 1vh) * 5);
  opacity: 0;
  transition: all 0.5s linear;
}
body .bottomSection .map .wp {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
body .bottomSection .map .wp svg {
  width: 50%;
  height: auto;
  opacity: 0;
  transform: translateX(-30%);
  transition: all 0.5s ease-in-out;
}
body .bottomSection .map .wp svg #here {
  animation: opacity infinite 1.8s linear;
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
body .bottomSection .map .wp .txt {
  width: 50%;
  height: auto;
  padding: 30px;
  opacity: 0;
  transform: translateX(30%);
  transition: all 0.5s ease-in-out;
}
body .bottomSection .map .wp .txt h2 {
  color: #FFDA00;
  font-family: "Pretendard-Regular";
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #FFDA00;
}
body .bottomSection .map .wp .txt p {
  font-size: 14px;
  font-family: "Pretendard-Regular";
  text-transform: uppercase;
  line-height: 2;
}
body .bottomSection .map.active img {
  opacity: 1;
}
body .bottomSection .map.active .wp svg, body .bottomSection .map.active .wp .txt {
  opacity: 1;
  transform: translate(0);
}
body .bottomSection .info {
  width: 1200px;
  margin: 0 auto 20vh;
  margin: 0 auto calc(var(--vh, 1vh) * 20);
  display: flex;
  flex-direction: column;
}
body .bottomSection .info img:first-child {
  width: 200px;
  margin-bottom: 5vh;
  margin-bottom: calc(var(--vh, 1vh) * 5);
}
body footer {
  text-align: center;
  padding: 5vh 0 10vh;
  padding: calc(var(--vh, 1vh) * 5) 0 calc(var(--vh, 1vh) * 10);
}
body footer img {
  height: 50px;
  padding: 0 10px;
}
body footer img:last-child {
  cursor: pointer;
}

/* ========================================

    테블릿 - 가로

======================================== */
@media (max-width: 1366px) {
  body .mainSection .organizer {
    left: 100px;
    bottom: 60px;
  }
  body .mainSection .title {
    margin: 0;
    width: 100%;
  }
  body .mainSection .bottomDeco {
    width: 69vw;
    right: 100px;
  }
  body .bottomSection .discription {
    width: 100%;
  }
  body .bottomSection .discription p {
    line-height: 2.5;
    font-size: 14px;
  }
  body .bottomSection .artist {
    width: 100%;
    padding: 10vh 15vh;
    padding: calc(var(--vh, 1vh) * 10) calc(var(--vh, 1vh) * 15);
  }
  body .bottomSection .artist .right {
    padding-left: 10%;
  }
  body .bottomSection .artist .right h2 {
    font-size: 20px;
  }
  body .bottomSection .artist .right p {
    font-size: 14px;
    line-height: 2.3;
  }
  body .bottomSection .artist.aiki .right {
    padding-right: 10%;
  }
  body .bottomSection .artist.hee {
    margin-bottom: 10vh;
    margin-bottom: calc(var(--vh, 1vh) * 10);
  }
  body .bottomSection .map, body .bottomSection .info, body .bottomSection .press {
    width: 100%;
    padding: 10vh 15vh;
    padding: calc(var(--vh, 1vh) * 10) calc(var(--vh, 1vh) * 15);
    margin: 0 auto;
  }
}
/* ========================================

    테블릿 - 세로

======================================== */
@media (max-width: 1024px) {
  body .mainSection .title {
    width: 100%;
    padding: 15vh 80px;
    padding: calc(var(--vh, 1vh) * 15) 80px;
  }
  body .mainSection .title h2 {
    font-size: 20px;
    padding-bottom: 20px;
  }
  body .mainSection .title h2 span {
    font-size: 20px;
  }
  body .mainSection .title img {
    width: 100%;
  }
  body .mainSection .title > .wp-text-row {
    padding: 10px 0;
  }
  body .mainSection .title > .wp-text-row h1:nth-child(2) {
    font-size: 20px;
  }
  body .mainSection .title > .wp-text-row h4 {
    font-size: 20px;
  }
  body .mainSection .title > .wp-text-row p {
    font-size: 35px;
  }
  body .mainSection .title > .wp-text-row p.big {
    font-size: 20px;
  }
  body .mainSection .title button {
    font-size: 70px;
    width: 350px;
  }
  body .mainSection:before {
    right: 0;
  }
  body .mainSection .bottomDeco {
    width: 100vw;
    left: 20px;
    bottom: 20px;
    right: 0;
  }
  body .mainSection .organizer {
    width: 100%;
    left: 0px;
    bottom: 0;
    background: #000;
    padding: 10px 0;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  body .mainSection .organizer span {
    font-size: 20px;
    display: block;
  }
  body .mainSection .organizer p {
    font-size: 20px;
  }
  body .bottomSection {
    overflow: hidden;
  }
  body .bottomSection .discription {
    padding: 22vh 80px;
    padding: calc(var(--vh, 1vh) * 22) 80px;
  }
  body .bottomSection .discription .deco {
    overflow: hidden;
  }
  body .bottomSection .discription img {
    width: 85%;
  }
  body .bottomSection .discription p {
    margin-top: 8vh;
    margin-top: calc(var(--vh, 1vh) * 8);
    font-size: 14px;
    width: 85%;
  }
  body .bottomSection .artist {
    flex-direction: column;
    padding: 5vh 80px;
    padding: calc(var(--vh, 1vh) * 5) 80px;
  }
  body .bottomSection .artist .left, body .bottomSection .artist .right {
    width: 100%;
  }
  body .bottomSection .artist .left .artist-wp {
    height: 50vh;
    height: calc(var(--vh, 1vh) * 50);
  }
  body .bottomSection .artist .left .artist-wp img {
    left: 20%;
  }
  body .bottomSection .artist .left .artist-wp img:nth-child(3) {
    height: 18%;
  }
  body .bottomSection .artist .right {
    padding: 30px 0;
    align-items: flex-start;
    justify-content: center;
  }
  body .bottomSection .artist .right h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  body .bottomSection .artist .right p {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 2vh;
  }
  body .bottomSection .artist.henry {
    margin-top: 5vh;
    margin-top: calc(var(--vh, 1vh) * 5);
  }
  body .bottomSection .artist.aiki {
    flex-direction: column;
  }
  body .bottomSection .artist.aiki .right {
    padding-right: 0;
  }
  body .bottomSection .artist.hee {
    flex-direction: column;
    margin-bottom: 0;
  }
  body .bottomSection .artist.hee .right {
    padding-right: 0;
  }
  body .bottomSection .artist.hee .left .artist-wp img:last-child {
    left: 42%;
  }
  body .bottomSection .map {
    padding: 10vh 80px;
    padding: calc(var(--vh, 1vh) * 10) 80px;
  }
  body .bottomSection .map .wp {
    flex-direction: column;
  }
  body .bottomSection .map .wp svg {
    width: 100%;
  }
  body .bottomSection .map .wp .txt {
    width: 100%;
    padding: 50px 0;
  }
  body .bottomSection .map .wp .txt h2 {
    font-size: 20px;
  }
  body .bottomSection .map .wp .txt p {
    font-size: 14px;
  }
  body .bottomSection .info {
    padding: 10vh 80px;
    padding: calc(var(--vh, 1vh) * 10) 80px;
  }
  body .bottomSection .press {
    padding: 10vh 80px;
    padding: calc(var(--vh, 1vh) * 10) 80px;
  }
  body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li {
    margin-bottom: 10px;
  }
  body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li .title-wp {
    padding-bottom: 10px;
  }
  body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li .title-wp > h3 {
    width: auto;
  }
  body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li .title-wp > p {
    width: calc(70% - 15px);
    font-size: 13px;
  }
  body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li .title-wp img.icon {
    width: 15px;
  }
  body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li ul.cont .img-wp {
    width: 100%;
    height: auto;
  }
  body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li ul.cont .img-wp img {
    margin-bottom: 0;
  }
  body .bottomSection .press ul.pressbox li:nth-child(2) {
    font-size: 18px;
  }
  body .bottomSection .press ul.pressbox li:nth-child(2) h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  body .bottomSection .press ul.pressbox li:nth-child(2) .press-wp {
    padding: 10px 0;
  }
}
/* ========================================

    모바일 

======================================== */
@media (max-width: 599px) {
  body .mainSection .title {
    padding: 15vh 20px 0;
  }
  body .mainSection .title h2 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 0;
    padding-bottom: 10px;
  }
  body .mainSection .title h2 span {
    display: block;
    font-size: 13px;
    letter-spacing: 3px;
  }
  body .mainSection .title > .wp-text-row {
    padding: 5px 0;
  }
  body .mainSection .title > .wp-text-row h1 {
    font-size: 15px;
  }
  body .mainSection .title > .wp-text-row h4 {
    font-size: 15px;
  }
  body .mainSection .title > .wp-text-row p {
    font-size: 12px;
  }
  body .mainSection .title > .wp-text-row p.big {
    font-size: 14px;
  }
  body .mainSection .title > img {
    width: 90%;
    padding: 10px 0;
  }
  body .mainSection .title button {
    width: 36vw;
    font-size: 20px;
  }
  body .mainSection .organizer {
    padding: 5px 0;
  }
  body .mainSection .organizer span {
    font-size: 12px;
  }
  body .mainSection .organizer p {
    font-size: 12px;
  }
  body .mainSection .bottomDeco {
    left: 0;
  }
  body .bottomSection .discription {
    padding: 100px 20px;
  }
  body .bottomSection .discription img {
    width: calc(100% - 40px);
  }
  body .bottomSection .discription .deco > img {
    width: 30%;
  }
  body .bottomSection .artist {
    padding: 50px 20px 0;
    overflow: hidden;
  }
  body .bottomSection .artist .left .artist-wp img:nth-child(1) {
    left: 10%;
  }
  body .bottomSection .artist .left .artist-wp img:nth-child(2) {
    left: 10%;
  }
  body .bottomSection .artist .left .artist-wp img:nth-child(3) {
    left: 10%;
  }
  body .bottomSection .artist .right {
    padding: 50px 0 0;
    align-items: center;
  }
  body .bottomSection .artist.hee .left .artist-wp img:last-child {
    left: 27%;
  }
  body .bottomSection .map, body .bottomSection .info, body .bottomSection .press {
    padding: 50px 20px;
  }
  body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li .title-wp {
    flex-direction: column;
    padding: 10px 0 20px;
  }
  body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li .title-wp > h3 {
    width: 100%;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 10px;
  }
  body .bottomSection .press ul.pressbox li:nth-child(1) > ul > li .title-wp p {
    width: 100%;
    padding-right: 15px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  body .bottomSection .press ul.pressbox li:nth-child(2) .press-wp p {
    font-size: 17px;
  }
  body footer {
    padding: 100px 0;
  }
}

/*# sourceMappingURL=artroad.css.map */
