:root {
  --color-white: #ffffff;
  --color-gray: #e7f1ef;
  --color-black: #000000;
  --color-gunmetal: #152824;
  --color-header-dark: #6a8981;
  --color-hookers-green: #608B82;
  --color-dark-slate: #304b46;
  --color-light-teal: #e5f2ef;
	--speed-fast: 0.2s;
	--speed-slow: 0.4s;
	--speed-slowest: 0.6s;
	--size-desktop: calC(100vw / 1366);
	--size-mobile: calc(100vw / 576);
}

* {
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}

html {
	scroll-behavior: initial!important;
	margin-top: 0px!important;
}

.x1, .x2, .x3, .x4, .x5, .x6, .x7, .x8, .x9 {
	opacity: 0;
	transform: translateX(-120px);

}
.x1 {
	transition: transform ease .7s .1s, opacity ease .7s .1s;
}
.x2 {
	transition: transform ease .7s .2s, opacity ease .7s .2s;
}
.x3 {
	transition: transform ease .7s .3s, opacity ease .7s .3s;
}
.x4 {
	transition: transform ease .7s .4s, opacity ease .7s .4s;
}
.x5 {
	transition: transform ease .7s .5s, opacity ease .7s .5s;
}
.x6 {
	transition: transform ease .7s .6s, opacity ease .7s .6s;
}
.x7 {
	transition: transform ease .7s .7s, opacity ease .7s .7s;
}
.x8 {
	transition: transform ease .7s .8s, opacity ease .7s .8s;
}
.x9 {
	transition: transform ease .7s .9s, opacity ease .7s .9s;
}
.ready .visible.x1, 
.ready .visible.x2, 
.ready .visible.x3, 
.ready .visible.x4, 
.ready .visible.x5, 
.ready .visible.x6,
.ready .visible.x7, 
.ready .visible.x8, 
.ready .visible.x9 {
	opacity: 1;
	transform: translateX(0px);
}

.y1, .y2, .y3, .y4, .y5, .y6, .y7, .y8, .y9 {
	opacity: 0;
	transform: translateY(120px);
}
.y1 {
	transition: transform ease .7s .1s, opacity ease .7s .1s;
}
.y2 {
	transition: transform ease .7s .2s, opacity ease .7s .2s;
}
.y3 {
	transition: transform ease .7s .3s, opacity ease .7s .3s;
}
.y4 {
	transition: transform ease .7s .4s, opacity ease .7s .4s;
}
.y5 {
	transition: transform ease .7s .5s, opacity ease .7s .5s;
}
.y6 {
	transition: transform ease .7s .6s, opacity ease .7s .6s;
}
.y7 {
	transition: transform ease .7s .7s, opacity ease .7s .7s;
}
.y8 {
	transition: transform ease .7s .8s, opacity ease .7s .8s;
}
.y9 {
	transition: transform ease .7s .9s, opacity ease .7s .9s;
}
.ready .visible.y1, 
.ready .visible.y2, 
.ready .visible.y3, 
.ready .visible.y4, 
.ready .visible.y5, 
.ready .visible.y6, 
.ready .visible.y7, 
.ready .visible.y8, 
.ready .visible.y9 {
	opacity: 1;
	transform: translateX(0px);
}

#page-preloader {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	z-index: 99;
}

.load:after, .loader:after {
	content: "";
	width: 66px;
	height: 66px;
	left: 50%;
	top: 50%;
	margin-left: -33px;
	margin-top: -33px;
	position: absolute;
	border-left: 4px solid #ccc;
	border-top: 4px solid #ccc;
	border-right: 4px solid #fff;
	border-bottom: 4px solid #ccc;
	border-radius: 50%;
	-moz-transform: translateZ(0);
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-moz-animation: load-index .5s infinite linear;
	-webkit-animation: load-index .5s infinite linear;
	animation: load-index .5s infinite linear;
}

@-moz-keyframes load-index {
	0% {
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 2px dotted #ffcc01!important;
	}
	100% {
		-moz-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 6px dotted #4ec9dd!important;
	}
}

@-webkit-keyframes load-index {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 2px dotted #ffcc01!important;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 6px dotted #4ec9dd!important;
	}
}

@keyframes load-index {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 2px dotted #ffcc01!important;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 6px dotted #4ec9dd!important;
	}
}

.scroll-top-btn {
  position: fixed;
  z-index: 10;
  left: 15px;
  bottom: 20px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-position: center right 48%;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  background-image: url(../img/to-top.svg);
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transition: var(--speed-slow);
  background-color: var(--color-white);
  border: 1px solid var(--color-gunmetal);
  cursor: pointer;
}

.scroll-top-btn.show {
  opacity: 1;
  user-select: auto;
  pointer-events: all;
}

body {
	font-family: 'Times New Roman', Times, serif;
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 120%;
  color: var(--color-gunmetal);
}

body.overflow {
  overflow: hidden;
  padding-right: 17px;
}

.site#page {
	overflow: clip;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.container-fluid {
  padding: 0px 60px;
  max-width: none;
}

.container-fluid .row {
  margin-left: -20px;
  margin-right: -20px;
}

.container-fluid .row [class*="col-"] {
  padding-left: 20px;
  padding-right: 20px;
}

h1 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 5em;
  line-height: 120%;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 58px;
}

h2 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 4em;
  line-height: 120%;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 42px;
}

h3 {
  font-size: 3em;
  line-height: 120%;
  font-weight: 700;
  margin-bottom: 22px;
}

p {
  font-size: 1.375em;
  line-height: 125%;
  font-weight: 500;
  margin-bottom: 26px;
}

.btn {
  border-radius: 30px;
  border: 2px solid var(--color-gunmetal);
  background-color: var(--color-white);
  color: var(--color-gunmetal);
  font-size: 1.5em;
  line-height: 120%;
  font-weight: 500;
  padding: 22px 60px;
  transition: var(--speed-slow);
  text-decoration: none;
}

@media screen and (min-width: 992px) {
  .btn:hover,
  .btn:focus,
  .btn:active {
    border-color: var(--color-gunmetal)!important;
    background-color: var(--color-hookers-green)!important;
    color: var(--color-white)!important;
  }
}

.btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

section {
  padding: 60px 0px;
}

section.main {
  padding: 0px;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: var(--color-dark-slate);
}

section.main .header-wrap {
  padding: 110px 0px;
  background-color: var(--color-dark-slate);
}

section.main .header-wrap .header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

section.main .header-wrap .header-inner h1 {
  color: var(--color-light-teal);
}

section.main .header-wrap .header-inner h1 color {
  color: var(--color-header-dark);
}

section.main .header-wrap .header-inner p.h4 {
  font-size: 2.25em;
  line-height: 120%;
  font-weight: 700;
  color: var(--color-light-teal);
  margin-bottom: 22px;
}

section.main .header-wrap .header-inner p {
  color: var(--color-light-teal);
  max-width: 40%;
}

section.main .header-wrap .header-inner *:last-child {
  margin-bottom: 0px;
}

section.main .content-wrap {
  padding: 90px 0px 60px;
  background-color: var(--color-white);
}

section.main .content-wrap .content-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-width: 50%;
}

section.main .content-wrap .content-inner ul.content-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
}

section.main .content-wrap .content-inner ul.content-list li {
  font-size: 2em;
  line-height: 160%;
  font-weight: 700;
  display: flex;
}

section.main .content-wrap .content-inner ul.content-list li::before {
  content: '';
  width: 24px;
  min-width: 24px;
  height: 10px;
  margin-top: 18px;
  margin-right: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../img/content-list-arrow.svg);
}

section.main .content-wrap .content-inner ul.content-list li a {
  font-size: 1em;
  color: var(--color-gunmetal);
  transition: var(--speed-slow);
  text-decoration-style: dashed;
}

@media screen and (min-width: 992px) {
  section.main .content-wrap .content-inner ul.content-list li a:hover {
    color: var(--color-dark-slate);
  }
}

section.main .thumbnail {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 75%;
  height: 100%;
  display: flex;
}

section.main .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}

section.initiators-first {
  background-color: var(--color-dark-slate);
  color: var(--color-light-teal);
}

section.initiators-first h2 offset {
  margin-left: 30px;
}

section .img-wrap {
  display: flex;
  flex-direction: column;
}

section .img-wrap img {
  width: 100%;
  object-fit: contain;
}

section .img-wrap span {
  font-size: 1em;
  line-height: 120%;
  font-weight: 400;
  margin-top: 24px;
}

section .img-wrap.vertical {
  flex-direction: row-reverse;
  align-items: center;
}

section .img-wrap.vertical img {
  width: 245px;
  height: 245px;
  object-fit: cover;
  border-radius: 100%;
}

section .img-wrap.vertical span {
  margin: 0px;
  margin-right: 24px;
}

section .img-wrap .img-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

section .img-wrap span.offset-desc {
  margin-left: calc(-100% - 40px);
  width: 100%;
}

section.initiators-second {
  background-color: var(--color-white);
}

section.initiators-third {
  background-color: var(--color-dark-slate);
  color: var(--color-light-teal);
}

section.initiators-third .initiators-third-inner {
  display: flex;
  flex-direction: column;
}

section.initiators-third .initiators-third-inner h3 {
  margin-bottom: 42px;
  font-weight: 400;
}

section.initiators-third .initiators-third-inner h3:last-child {
  margin-top: 42px;
}

section.initiators-third .initiators-third-inner *:last-child {
  margin-bottom: 0px;
}

section.initiators-third .initiators-third-inner .nominations-slider {
  padding: 0px 100px;
}

section.initiators-third .initiators-third-inner .nominations-slider .nomination-item {
  padding: 0px 20px;
}

section.initiators-third .initiators-third-inner .nominations-slider button.slick-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  color: transparent;
  font-size: 0px;
  width: 75px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

section.initiators-third .initiators-third-inner .nominations-slider button.slick-arrow.slick-prev {
  left: 0px;
  background-image: url(../img/arrow-left-light.svg);
}

section.initiators-third .initiators-third-inner .nominations-slider button.slick-arrow.slick-next {
  right: 0px;
  background-image: url(../img/arrow-right-light.svg);
}

.nomination-item {
  display: flex;
}

.nomination-item .item-link {
  display: flex;
}

.nomination-item .item-link .thumbnail {
  width: 50%;
  display: flex;
}

.nomination-item .item-link .thumbnail .img-wrap {
  position: relative;
  display: flex;
  width: 100%;
  padding-top: 145%;
}

.nomination-item .item-link .thumbnail .img-wrap img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

.nomination-item .item-link .caption {
  width: 50%;
  padding-left: 40px;
}

.nomination-item .item-link .caption p {
  font-size: 1.375em;
  line-height: 120%;
  font-weight: 400;
}

.nomination-item .item-link .caption p.h4 {
  font-weight: 700;
  margin-bottom: 26px;
}

section.fate-first {
  background-color: var(--color-light-teal);
}

section.fate-second {
  background-color: var(--color-white);
}

section.fate-second h2 offset {
  margin-left: 82px;
}

section.fate-third {
  background-color: var(--color-light-teal);
}

section.sculptor-first {
  background-color: var(--color-dark-slate);
  color: var(--color-light-teal);
}

section.sculptor-first .img-wrap + .btn-wrap {
  margin-top: 56px;
}

section.sculptor-first h2 offset {
  margin-left: 82px;
}

section.sculptor-first .btn {
  border-color: var(--color-white)!important;
}

@media screen and (min-width: 992px) {
  section.sculptor-first .btn:hover,
  section.sculptor-first .btn:focus,
  section.sculptor-first .btn:active {
    border-color: var(--color-hookers-green)!important;
  }
}

section.exhibition-first {
  background-color: var(--color-white);
}

section.exhibition-first .img-wrap:not(:first-child) {
  margin-top: 40px;
}

section.reviews {
  background-color: var(--color-light-teal);
}

section.reviews .reviews-inner {
  display: flex;
  flex-direction: column;
}

section.reviews .reviews-inner h3 {
  font-weight: 500;
  margin-left: 82px;
}

section.reviews .reviews-inner .reviews-slider button.slick-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  color: transparent;
  font-size: 0px;
  width: 75px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

section.reviews .reviews-inner .reviews-slider button.slick-arrow.slick-prev {
  left: 0px;
  background-image: url(../img/arrow-left-dark.svg);
}

section.reviews .reviews-inner .reviews-slider button.slick-arrow.slick-next {
  right: 0px;
  background-image: url(../img/arrow-right-dark.svg);
}

section.reviews .reviews-inner .reviews-slider .slick-list .slick-track {
  display: flex;
}

section.reviews .reviews-inner .reviews-slider .slick-list .slick-track .slick-slide {
  height: auto;
}

section.reviews .reviews-inner .reviews-slider .slick-list .slick-track .slick-slide > div {
  height: 100%;
}

section.reviews .reviews-inner .reviews-slider .slick-list .slick-track .slick-slide > div .review-item {
  height: 100%;
}

.review-item .item-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.review-item .item-link p.h4 {
  padding: 0px 150px;
  text-align: center;
  font-size: 2em;
  line-height: 120%;
  font-weight: 400;
  font-style: italic;
  margin: auto;
}

.review-item .item-link span.desc {
  margin-top: 26px;
  align-self: flex-end;
  font-size: 1.125em;
  text-align: right;
  line-height: 120%;
  font-weight: 400;
}

section.museum {
  background-color: var(--color-white);
}

section.quote {
  background-color: var(--color-dark-slate);
  color: var(--color-light-teal);
}

section.quote .quote-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

section.quote .quote-inner p.h4 {
  text-align: center;
  font-size: 2em;
  line-height: 120%;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 26px;
}

section.quote .quote-inner span.desc {
  align-self: flex-end;
  font-size: 1.5em;
  text-align: right;
  line-height: 120%;
  font-weight: 400;
}

section.materials {
  background-color: var(--color-white);
}

section.materials p.h4 {
  font-size: 1.5em;
  margin-bottom: 8px;
}

section.materials ul {
  padding-left: 20px;
  margin-bottom: 0px;
}

section.materials ul li {
  font-size: 1em;
  line-height: 130%;
  font-weight: 400;
  font-style: italic;
}

footer.footer {
  padding: 60px 0px 90px;
  border-top: 1px solid var(--color-dark-slate);
  background-color: var(--color-white);
}

footer.footer .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

footer.footer .footer-inner span {
  font-size: 1.375em;
  line-height: 120%;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

footer.footer .footer-inner span a {
  color: var(--color-gunmetal);
  text-decoration: none;
}

@media screen and (min-width: 992px) {
  footer.footer .footer-inner span a:hover {
    text-decoration: underline;
  }
}

.mfp-container {
  padding: 60px;
}

.mfp-container .mfp-content {
  margin-bottom: 60px;
  max-width: none;
}

.mfp-container.mfp-iframe-holder .mfp-content .mfp-close {
  display: none;
}

section.initiators-modal-wrap {
  background-color: var(--color-white);
}

section.initiators-modal-wrap .mfp-close {
  width: 36px;
  height: 36px;
  top: 20px;
  right: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../img/close-dark.svg);
  font-size: 0px;
}

section .img-row {
  display: flex;
  margin: 0px -20px;
}

section .img-row .img-col {
  width: 50%;
  padding: 0px 20px;
}

section .img-row .img-col .img-wrap:not(:first-child) {
  margin-top: 40px;
}

section.sculptor-modal-wrap {
  background-color: var(--color-dark-slate);
  color: var(--color-light-teal);
}

section.sculptor-modal-wrap .mfp-close {
  width: 36px;
  height: 36px;
  top: 20px;
  right: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../img/close-light.svg);
  font-size: 0px;
}

section.main .link {
  position: absolute;
  z-index: 5;
  right: 60px;
  top: 40%;
  width: 180px;
  height: 180px;
  border-radius: 100%;
  background-color: var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: 0.4s;
}

@media screen and (min-width: 992px) {
  section.main .link:hover {
    width: 190px;
    height: 190px;
    right: calc(60px - 5px);
    top: calc(40% - 5px);
  }
}

section.main .link .rotate {
  position: relative;
  font-size: 1.375em;
  width: 150px;
  height: 150px;
  animation: rotate 10s linear infinite;
  border-radius: 100%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

section.main .link .rotate span {
  position: absolute;
  left: 50%;
  transform-origin: 0 75px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

section.main .link::after {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background-image: url(../img/watch-play.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

header.header {
  position: sticky;
  z-index: 10;
  top: 0px;
  background-color: var(--color-white);
  transition: var(--speed-fast);
}

header.header.fixed {
  opacity: 0;
  user-select: none;
  pointer-events: none;
}

header.header.fixed.scroll-up {
  opacity: 1;
  user-select: auto;
  pointer-events: all;
}

header.header .header-wrap {
  padding: 18px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header.header .header-wrap .header-side {
  width: calc((100% - 80px) / 2);
  display: flex;
  align-items: center;
}

header.header .header-wrap ul.menu {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0px;
  margin: 0px;
}

header.header .header-wrap ul.menu li {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

header.header .header-wrap ul.menu li:last-child {
  margin-right: 0px;
}

header.header .header-wrap ul.menu li a {
  font-size: 1em;
  line-height: 120%;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-gunmetal);
  transition: var(--speed-slow);
}

@media screen and (min-width: 992px) {
  header.header .header-wrap ul.menu li a:hover {
    opacity: 0.7;
  }
}

header.header .header-wrap a.logo {
  display: flex;
  align-items: center;
  height: 26px;
  position: relative;
}

header.header .header-wrap a.logo img {
  width: 100%;
  height: 100%;
  margin-top: -6px;
}

header.header .header-wrap a.logo img.online {
  position: absolute;
    left: 105%;
    top: 10%;
    transform: translateY(0%);
    width: auto;
    height: 44%;
}

header.header .header-wrap .share-wrap {
  margin-left: auto;
  display: flex;
  align-items: center;
}

header.header .header-wrap .share-wrap span.desc {
  font-size: 1em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-gunmetal);
  margin-right: 12px;
  text-transform: uppercase;
}

header.header .header-wrap .share-wrap .addtoany_list {
  display: flex;
  align-items: center;
}

header.header .header-wrap .share-wrap .addtoany_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  margin: 0px 6px;
  border-radius: 100%;
  overflow: hidden;
  border: 1px solid var(--color-gunmetal);
  width: 26px;
  height: 26px;
  transition: var(--speed-slow);
}

@media screen and (min-width: 992px) {
  header.header .header-wrap .share-wrap .addtoany_list a:hover {
    opacity: 0.7;
  }
}

header.header .header-wrap .share-wrap .addtoany_list a span.a2a_svg {
  display: flex;
  align-items: center;
  background-color: transparent!important;
  width: 80%!important;
  line-height: 100%!important;
  height: 80%!important;
  background-size: 100%!important;
  border-radius: 100%!important;
}

header.header .header-wrap .share-wrap .addtoany_list a span.a2a_svg svg path {
  fill: var(--color-gunmetal);
}

header.header .header-wrap .share-wrap .addtoany_list a img {
  display: flex;
  align-items: center;
  background-color: transparent!important;
  width: 80%!important;
  line-height: 100%!important;
  height: 80%!important;
  background-size: 100%!important;
  border-radius: 100%!important;
}

header.header .header-wrap .language-menu {
  margin-left: 36px;
}

header.header .header-wrap .modal-menu-open {
  display: none;
  font-size: 0;
  color: transparent;
  text-decoration: none;
  width: 28px;
  min-width: 28px;
  height: 28px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../img/menu-burger.svg);
}

.modal-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-dark-slate);
  opacity: 0;
  z-index: 101;
  pointer-events: none;
  transition: var(--speed-slow);
  overflow-y: auto;
}

.modal-menu.show {
  opacity: 1;
  z-index: 101;
  pointer-events: all;
}

.modal-menu .modal-menu-close {
  position: absolute;
  top: 10px;
  left: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-menu .modal-menu-close::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transform: rotate(45deg);
}

.modal-menu .modal-menu-close::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transform: rotate(-45deg);
}

.modal-menu .menus {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 60px 20px 20px;
}

.modal-menu .menus ul.menu {
  list-style: none;
  padding: 0px;
  margin: 0px 0px 20px;
  display: flex;
  flex-direction: column;
}

.modal-menu .menus ul.menu li {
  margin: 10px 0px 0px;
  display: flex;
}

.modal-menu .menus ul.menu li:first-child {
  margin-top: 0px;
}

.modal-menu .menus ul.menu li a {
  font-size: 1.25em;
  line-height: 120%;
  font-weight: 600;
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
}

.modal-menu .menus .share-wrap {
  display: flex;
  flex-direction: column;
}

.modal-menu .menus .share-wrap span.desc {
  font-size: 1.125em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.modal-menu .menus .share-wrap .addtoany_list {
  display: flex;
  align-items: center;
  margin: 0px -6px;
}

.modal-menu .menus .share-wrap .addtoany_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  margin: 0px 6px;
  border-radius: 100%;
  overflow: hidden;
  border: 1px solid var(--color-white);
  width: 45px;
  height: 45px;
  transition: var(--speed-slow);
}

.modal-menu .menus .share-wrap a span.a2a_svg {
  display: flex;
  align-items: center;
  background-color: transparent!important;
  width: 80%!important;
  line-height: 100%!important;
  height: 80%!important;
  background-size: 100%!important;
  border-radius: 100%!important;
}

.modal-menu .menus .share-wrap a span.a2a_svg svg {
  width: 100%;
  height: 100%;
}

.modal-menu .menus .share-wrap a span.a2a_svg svg path {
  fill: var(--color-white);
}

.modal-menu .menus .share-wrap a img {
  display: flex;
  align-items: center;
  background-color: transparent!important;
  width: 80%!important;
  line-height: 100%!important;
  height: 80%!important;
  background-size: 100%!important;
  border-radius: 100%!important;
}











@media screen and (min-width: 992px) {
  .scroll-top-btn {
    left: calc(15 * var(--size-desktop));
    bottom: calc(20 * var(--size-desktop));
    width: calc(30 * var(--size-desktop));
    height: calc(30 * var(--size-desktop));
  }

  body {
    font-size: calc(14 * var(--size-desktop));
  }
  
  .container-fluid {
    padding: 0 calc(60 * var(--size-desktop));
  }
  
  .container-fluid .row {
    margin-left: calc(-20 * var(--size-desktop));
    margin-right: calc(-20 * var(--size-desktop));
  }
  
  .container-fluid .row [class*="col-"] {
    padding-left: calc(20 * var(--size-desktop));
    padding-right: calc(20 * var(--size-desktop));
  }
  
  h1 {
    margin-bottom: calc(58 * var(--size-desktop));
  }
  
  h2 {
    margin-bottom: calc(42 * var(--size-desktop));
  }
  
  h3 {
    margin-bottom: calc(22 * var(--size-desktop));
  }
  
  p {
    margin-bottom: calc(26 * var(--size-desktop));
  }
  
  .btn {
    border-radius: calc(30 * var(--size-desktop));
    border-width: calc(2 * var(--size-desktop));
    padding: calc(22 * var(--size-desktop)) calc(60 * var(--size-desktop));
  }
 
  section {
    padding: calc(60 * var(--size-desktop)) 0;
  }
  
  section.main .header-wrap {
    padding: calc(110 * var(--size-desktop)) 0;
  }
  
  section.main .header-wrap .header-inner p.h4 {
    margin-bottom: calc(22 * var(--size-desktop));
  }
  
  section.main .content-wrap {
    padding: calc(90 * var(--size-desktop)) 0 calc(60 * var(--size-desktop));
  }

  section.main .content-wrap .content-inner ul.content-list li::before {
    width: calc(24 * var(--size-desktop));
    min-width: calc(24 * var(--size-desktop));
    height: calc(10 * var(--size-desktop));
    margin-top: calc(18 * var(--size-desktop));
    margin-right: calc(18 * var(--size-desktop));
  }

  section.initiators-first h2 offset {
    margin-left: calc(30 * var(--size-desktop));
  }

  section .img-wrap span {
    margin-top: calc(24 * var(--size-desktop));
  }
  
  section .img-wrap.vertical img {
    width: calc(245 * var(--size-desktop));
    height: calc(245 * var(--size-desktop));
  }
  
  section .img-wrap.vertical span {
    margin-right: calc(24 * var(--size-desktop));
  }
  
  section .img-wrap .img-inner {
    gap: calc(20 * var(--size-desktop));
  }
  
  section .img-wrap span.offset-desc {
    margin-left: calc(-100% - (40 * var(--size-desktop)));
  }
  
  section.initiators-third .initiators-third-inner h3 {
    margin-bottom: calc(42 * var(--size-desktop));
  }
  
  section.initiators-third .initiators-third-inner h3:last-child {
    margin-top: calc(42 * var(--size-desktop));
  }

  section.initiators-third .initiators-third-inner .nominations-slider {
    padding: 0 calc(100 * var(--size-desktop));
  }
  
  section.initiators-third .initiators-third-inner .nominations-slider .nomination-item {
    padding: 0 calc(20 * var(--size-desktop));
  }
  
  section.initiators-third .initiators-third-inner .nominations-slider button.slick-arrow {
    width: calc(75 * var(--size-desktop));
    height: calc(30 * var(--size-desktop));
  }
  .nomination-item .item-link .caption {
    padding-left: calc(40 * var(--size-desktop));
  }

  .nomination-item .item-link .caption p.h4 {
    margin-bottom: calc(26 * var(--size-desktop));
  }
  
  section.fate-second h2 offset {
    margin-left: calc(82 * var(--size-desktop));
  }

  section.sculptor-first .img-wrap + .btn-wrap {
    margin-top: calc(56 * var(--size-desktop));
  }
  
  section.sculptor-first h2 offset {
    margin-left: calc(82 * var(--size-desktop));
  }

  section.exhibition-first .img-wrap:not(:first-child) {
    margin-top: calc(40 * var(--size-desktop));
  }

  section.reviews .reviews-inner h3 {
    margin-left: calc(82 * var(--size-desktop));
  }
  
  section.reviews .reviews-inner .reviews-slider button.slick-arrow {
    width: calc(75 * var(--size-desktop));
    height: calc(30 * var(--size-desktop));
  }
  
  .review-item .item-link p.h4 {
    padding: 0 calc(150 * var(--size-desktop));
  }
  
  .review-item .item-link span.desc {
    margin-top: calc(26 * var(--size-desktop));
  }
  
  section.quote .quote-inner p.h4 {
    margin-bottom: calc(26 * var(--size-desktop));
  }

  section.materials p.h4 {
    margin-bottom: calc(8 * var(--size-desktop));
  }

  section.materials ul {
    padding-left: calc(20 * var(--size-desktop));
  }

  footer.footer {
    padding: calc(60 * var(--size-desktop)) 0 calc(90 * var(--size-desktop));
    border-width: calc(1 * var(--size-desktop));
  }

  .mfp-container {
    padding: calc(60 * var(--size-desktop));
  }
  
  .mfp-container .mfp-content {
    margin-bottom: calc(60 * var(--size-desktop));
  }

  section.initiators-modal-wrap .mfp-close {
    width: calc(36 * var(--size-desktop));
    height: calc(36 * var(--size-desktop));
    top: calc(20 * var(--size-desktop));
    right: calc(12 * var(--size-desktop));
  }
  
  section .img-row {
    margin: 0 calc(-20 * var(--size-desktop));
  }
  
  section .img-row .img-col {
    padding: 0 calc(20 * var(--size-desktop));
  }
  
  section .img-row .img-col .img-wrap:not(:first-child) {
    margin-top: calc(40 * var(--size-desktop));
  }
  
  section.sculptor-modal-wrap .mfp-close {
    width: calc(36 * var(--size-desktop));
    height: calc(36 * var(--size-desktop));
    top: calc(20 * var(--size-desktop));
    right: calc(12 * var(--size-desktop));
  }

  section.main .link {
    right: calc(60 * var(--size-desktop));
    width: calc(180 * var(--size-desktop));
    height: calc(180 * var(--size-desktop));
  }
  
  @media screen and (min-width: 992px) {
    section.main .link:hover {
      width: calc(190 * var(--size-desktop));
      height: calc(190 * var(--size-desktop));
      right: calc((60 * var(--size-desktop)) - (5 * var(--size-desktop)));
      top: calc(40% - (5 * var(--size-desktop)));
    }
  }
  
  section.main .link .rotate {
    width: calc(150 * var(--size-desktop));
    height: calc(150 * var(--size-desktop));
  }
  
  section.main .link .rotate span {
    transform-origin: 0 calc(75 * var(--size-desktop));
  }
  
  section.main .link::after {
    width: calc(50 * var(--size-desktop));
    height: calc(50 * var(--size-desktop));
  }
  
  header.header .header-wrap {
    padding: calc(18 * var(--size-desktop)) 0;
  }
  
  header.header .header-wrap .header-side {
    width: calc((100% - (80 * var(--size-desktop))) / 2);
  }
  
  header.header .header-wrap ul.menu li {
    margin-right: calc(20 * var(--size-desktop));
  }
  
  header.header .header-wrap ul.menu li:last-child {
    margin-right: 0;
  }
  
  header.header .header-wrap a.logo {
    height: calc(26 * var(--size-desktop));
  }
  
  header.header .header-wrap a.logo img {
    margin-top: calc(-6 * var(--size-desktop));
  }
  
  header.header .header-wrap .share-wrap span.desc {
    margin-right: calc(12 * var(--size-desktop));
  }
  
  header.header .header-wrap .share-wrap .addtoany_list a {
    margin: 0 calc(6 * var(--size-desktop));
    border-width: calc(1 * var(--size-desktop));
    width: calc(26 * var(--size-desktop));
    height: calc(26 * var(--size-desktop));
  }
  
  header.header .header-wrap .language-menu {
    margin-left: calc(36 * var(--size-desktop));
  }
}












@media screen and (max-width: 991px) {
  .scroll-top-btn {
    left: auto;
    right: 5px;
    bottom: 10px;
    width: 30px;
    height: 30px;
  }

  body {
    font-size: 16px;
  }

  .container-fluid {
    padding: 0px 20px;
  }

  .container-fluid .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .container-fluid .row [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }

  h1 {
    font-size: 3em;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 1.5em;
    margin-bottom: 16px;
  }

  h3 {
    font-size: 1.375em;
    margin-bottom: 12px;
  }

  p {
    font-size: 1em;
    margin-bottom: 16px;
  }

  .btn {
    border-radius: 12px;
    border-width: 1px;
    font-size: 1.125em;
    padding: 10px 24px;
  }

  section {
    padding: 30px 0px;
  }

  section.main .header-wrap {
    padding: 35px 0px;
    position: relative;
  }

  section.main .header-wrap .header-inner h1 {
    max-width: 65%;
  }

  section.main .header-wrap .header-inner p.h4 {
    font-size: 1.25em;
    margin-bottom: 12px;
  }

  section.main .header-wrap .header-inner p {
    max-width: 44%;
  }

  section.main .content-wrap {
    padding: 30px 0px;
  }

  section.main .content-wrap .content-inner ul.content-list li::before {
    width: 16px;
    min-width: 16px;
    height: 7px;
    margin-top: 8px;
    margin-right: 10px;
  }

  section.main .content-wrap .content-inner {
    max-width: 100%;
  }

  section.main .content-wrap .content-inner ul.content-list li {
    font-size: 1.125em;
    line-height: 125%;
  }

  section.main .content-wrap .content-inner ul.content-list li:not(:first-child) {
    margin-top: 8px;
  }

  section.main .content-wrap .content-inner ul.content-list li a {
    text-decoration-style: solid;
  }

  section.main .thumbnail {
    height: 80%;
    top: auto;
    bottom: 3%;
  }

  section.main .thumbnail.visible {
    opacity: 1;
  }

  section.main .thumbnail img {
    object-fit: cover;
    object-position: center left;
  }

  section.initiators-first h2 offset {
    margin-left: 8px;
  }

  section .img-wrap {
    margin-bottom: 16px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  section .img-wrap span {
    font-size: 0.875em;
    margin-top: 12px;
  }

  section .img-wrap.vertical {
    flex-direction: column;
    align-items: center;
  }

  section .img-wrap.vertical img {
    width: 100%;
    height: auto;
  }

  section .img-wrap.vertical span {
    margin-right: 0px;
    margin-top: 12px;
  }

  section .img-wrap .img-inner {
    flex-direction: column;
    gap: 16px;
  }

  section .img-wrap span.offset-desc {
    margin-left: 0px;
  }

  section.initiators-third .initiators-third-inner h3 {
    margin-bottom: 12px;
  }

  section.initiators-third .initiators-third-inner h3:last-child {
    margin-top: 12px;
  }

  section.initiators-third .initiators-third-inner .nominations-slider {
    padding: 0px;
  }

  section.initiators-third .initiators-third-inner .nominations-slider .nomination-item {
    padding: 0px 10px;
  }

  section.initiators-third .initiators-third-inner .nominations-slider .slick-list {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .slick-slider .slick-dots {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0px;
    margin: 13px 0px 0px;
  }

  .slick-slider .slick-dots li {
    margin: 3px 6px;
    display: flex;
  }

  .slick-slider .slick-dots li button {
    background-color: var(--color-hookers-green);
    border: navajowhite;
    border-radius: 100%;
    font-size: 0px;
    width: 12px;
    height: 12px;
    display: flex;
    transition: var(--speed-slow);
  }

  .slick-slider .slick-dots li.slick-active button {
    background-color: var(--color-gunmetal);
  }

  .nomination-item .item-link {
    flex-direction: column;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .nomination-item .item-link .thumbnail {
    width: 100%;
  }

  .nomination-item .item-link .thumbnail .img-wrap {
    max-width: 100%;
  }

  .nomination-item .item-link .caption {
    width: 100%;
    padding: 16px 0px 0px;
  }

  .nomination-item .item-link .caption p {
    font-size: 1em;
  }
  
  .nomination-item .item-link .caption p.h4 {
    font-size: 1.125em;
    margin-bottom: 12px;
  }

  section.fate-second h2 offset {
    margin-left: 12px;
  }

  section.fate-second .col-12:has(h2) {
    display: flex;
    flex-direction: column-reverse;
  }

  section.sculptor-first .img-wrap + .btn-wrap {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  section.sculptor-first h2 offset {
    margin-left: 12px;
  }

  section.exhibition-first h2 br {
    display: none;
  }

  section.exhibition-first .img-wrap:not(:first-child) {
    margin-top: 0px;
  }

  section.reviews .reviews-inner h3 {
    margin-left: 0px;
  }

  .review-item .item-link p.h4 {
    padding: 0px;
    font-size: 0.875em;
  }

  .review-item .item-link span.desc {
    margin-top: 12px;
    font-size: 0.75em;
  }

  section.quote .quote-inner p.h4 {
    font-size: 1em;
    margin-bottom: 12px;
  }

  section.quote .quote-inner span.desc {
    font-size: 0.75em;
  }

  section.materials p.h4 {
    font-size: 1.25em;
    margin-bottom: 12px;
  }

  section.materials ul li:not(:first-child) {
    margin-top: 8px;
  }

  section.materials ul li {
    font-size: 0.875em;
  }

  footer.footer {
    padding: 30px 0px;
  }

  footer.footer .footer-inner {
    flex-wrap: wrap;
    gap: 12px;
  }

  footer.footer .footer-inner span {
    font-size: 0.875em;
  }

  .mfp-container {
    padding: 20px;
  }

  .mfp-container .mfp-content {
    margin-bottom: 20px;
  }

  section.initiators-modal-wrap .mfp-close {
    width: 20px;
    height: 20px;
    top: 8px;
    right: 6px;
  }

  section .img-row {
    margin: 0px -10px;
    flex-wrap: wrap;
  }

  section .img-row .img-col {
    padding: 0px 10px;
    width: 100%;
  }

  section .img-row .img-col .img-wrap:not(:first-child) {
    margin-top: 0px;
  }

  section.sculptor-modal-wrap .mfp-close {
    width: 20px;
    height: 20px;
    top: 8px;
    right: 6px;
  }

  section.main .link {
    position: relative;
    right: auto;
    top: auto;
    margin-left: auto;
    margin-right: 20px;
    margin-top: 16px;
    width: 160px;
    height: 160px;
    position: absolute;
    right: 0px;
    bottom: 4%;
  }

  section.main .link .rotate {
    font-size: 1em;
    width: 130px;
    height: 130px;
  }

  section.main .link .rotate span {
    transform-origin: 0 65px;
  }

  section.main .link::after {
    width: 30px;
    height: 30px;
  }

  header.header .header-wrap {
    padding: 10px 0px;
  }

  header.header .header-wrap .header-menu {
    display: none;
  }

  header.header .header-wrap a.logo {
    height: 30px;
    max-width: 110px;
  }

  header.header .header-wrap a.logo img {
    margin-top: -3px;
  }

  header.header .header-wrap .share-wrap {
    display: none;
  }

  header.header .header-wrap .language-menu {
    margin-left: auto;
  }

  header.header .header-wrap ul.menu li a {
    font-size: 1.25em;
  }

  header.header .header-wrap .modal-menu-open {
    display: flex;
  }

  .mfp-iframe-scaler {
    padding-top: 80vh;
  }
}











@media screen and (max-width: 991px) and (min-width: 576px) {
  .scroll-top-btn {
    right: calc(5 * var(--size-mobile));
    bottom: calc(10 * var(--size-mobile));
    width: calc(30 * var(--size-mobile));
    height: calc(30 * var(--size-mobile));
  }

  body {
    font-size: calc(16 * var(--size-mobile));
  }

  .container-fluid {
    padding: 0 calc(20 * var(--size-mobile));
  }

  .container-fluid .row {
    margin-left: calc(-10 * var(--size-mobile));
    margin-right: calc(-10 * var(--size-mobile));
  }

  .container-fluid .row [class*="col-"] {
    padding-left: calc(10 * var(--size-mobile));
    padding-right: calc(10 * var(--size-mobile));
  }

  h1 {
    margin-bottom: calc(20 * var(--size-mobile));
  }

  h2 {
    margin-bottom: calc(16 * var(--size-mobile));
  }

  h3 {
    margin-bottom: calc(12 * var(--size-mobile));
  }

  p {
    margin-bottom: calc(16 * var(--size-mobile));
  }

  .btn {
    border-radius: calc(12 * var(--size-mobile));
    border-width: calc(1 * var(--size-mobile));
    padding: calc(10 * var(--size-mobile)) calc(24 * var(--size-mobile));
  }

  section {
    padding: calc(30 * var(--size-mobile)) 0;
  }

  section.main .header-wrap {
    padding: calc(35 * var(--size-mobile)) 0;
  }

  section.main .header-wrap .header-inner p.h4 {
    margin-bottom: calc(12 * var(--size-mobile));
  }

  section.main .content-wrap {
    padding: calc(30 * var(--size-mobile)) 0;
  }

  section.main .content-wrap .content-inner ul.content-list li::before {
    width: calc(16 * var(--size-mobile));
    min-width: calc(16 * var(--size-mobile));
    height: calc(7 * var(--size-mobile));
    margin-top: calc(8 * var(--size-mobile));
    margin-right: calc(10 * var(--size-mobile));
  }

  section.main .content-wrap .content-inner ul.content-list li:not(:first-child) {
    margin-top: calc(8 * var(--size-mobile));
  }

  section.initiators-first h2 offset {
    margin-left: calc(8 * var(--size-mobile));
  }

  section .img-wrap {
    margin-bottom: calc(16 * var(--size-mobile));
  }

  section .img-wrap span {
    margin-top: calc(12 * var(--size-mobile));
  }

  section .img-wrap.vertical span {
    margin-top: calc(12 * var(--size-mobile));
  }

  section .img-wrap .img-inner {
    gap: calc(16 * var(--size-mobile));
  }

  section.initiators-third .initiators-third-inner h3 {
    margin-bottom: calc(12 * var(--size-mobile));
  }

  section.initiators-third .initiators-third-inner h3:last-child {
    margin-top: calc(12 * var(--size-mobile));
  }

  section.initiators-third .initiators-third-inner .nominations-slider .nomination-item {
    padding: 0 calc(10 * var(--size-mobile));
  }

  section.initiators-third .initiators-third-inner .nominations-slider .slick-list {
    margin-left: calc(-20 * var(--size-mobile));
    margin-right: calc(-20 * var(--size-mobile));
    padding-left: calc(10 * var(--size-mobile));
    padding-right: calc(10 * var(--size-mobile));
  }

  .slick-slider .slick-dots {
    margin: calc(13 * var(--size-mobile)) 0 0;
  }

  .slick-slider .slick-dots li {
    margin: calc(3 * var(--size-mobile)) calc(6 * var(--size-mobile));
  }

  .slick-slider .slick-dots li button {
    width: calc(12 * var(--size-mobile));
    height: calc(12 * var(--size-mobile));
  }

  .nomination-item .item-link .caption {
    padding: calc(16 * var(--size-mobile)) 0 0;
  }
  
  .nomination-item .item-link .caption p.h4 {
    margin-bottom: calc(12 * var(--size-mobile));
  }

  section.fate-second h2 offset {
    margin-left: calc(12 * var(--size-mobile));
  }

  section.sculptor-first .img-wrap + .btn-wrap {
    margin-top: calc(16 * var(--size-mobile));
    margin-bottom: calc(16 * var(--size-mobile));
  }

  section.sculptor-first h2 offset {
    margin-left: calc(12 * var(--size-mobile));
  }

  .review-item .item-link span.desc {
    margin-top: calc(12 * var(--size-mobile));
  }

  section.quote .quote-inner p.h4 {
    margin-bottom: calc(12 * var(--size-mobile));
  }

  section.materials p.h4 {
    margin-bottom: calc(12 * var(--size-mobile));
  }

  section.materials ul li:not(:first-child) {
    margin-top: calc(8 * var(--size-mobile));
  }

  footer.footer {
    padding: calc(30 * var(--size-mobile)) 0;
  }

  footer.footer .footer-inner {
    gap: calc(12 * var(--size-mobile));
  }

  .mfp-container {
    padding: calc(20 * var(--size-mobile));
  }

  .mfp-container .mfp-content {
    margin-bottom: calc(20 * var(--size-mobile));
  }

  section.initiators-modal-wrap .mfp-close {
    width: calc(20 * var(--size-mobile));
    height: calc(20 * var(--size-mobile));
    top: calc(8 * var(--size-mobile));
    right: calc(6 * var(--size-mobile));
  }

  section .img-row {
    margin: 0 calc(-10 * var(--size-mobile));
  }

  section .img-row .img-col {
    padding: 0 calc(10 * var(--size-mobile));
  }

  section.sculptor-modal-wrap .mfp-close {
    width: calc(20 * var(--size-mobile));
    height: calc(20 * var(--size-mobile));
    top: calc(8 * var(--size-mobile));
    right: calc(6 * var(--size-mobile));
  }

  section.main .link {
    margin-top: calc(16 * var(--size-mobile));
    margin-right: calc(20 * var(--size-mobile));
    width: calc(160 * var(--size-mobile));
    height: calc(160 * var(--size-mobile));
  }

  section.main .link .rotate {
    width: calc(130 * var(--size-mobile));
    height: calc(130 * var(--size-mobile));
  }

  section.main .link .rotate span {
    transform-origin: 0 calc(65 * var(--size-mobile));
  }

  section.main .link::after {
    width: calc(30 * var(--size-mobile));
    height: calc(30 * var(--size-mobile));
  }

  header.header .header-wrap {
    padding: calc(10 * var(--size-mobile)) 0;
  }

  header.header .header-wrap a.logo {
    height: calc(30 * var(--size-mobile));
    max-width: calc(110 * var(--size-mobile));
  }

  header.header .header-wrap a.logo img {
    margin-top: calc(-3 * var(--size-mobile));
  }

  header.header .header-wrap .modal-menu-open {
    width: calc(28 * var(--size-mobile));
    min-width: calc(28 * var(--size-mobile));
    height: calc(28 * var(--size-mobile));
  }
  
  .modal-menu .modal-menu-close {
    top: calc(10 * var(--size-mobile));
    left: calc(20 * var(--size-mobile));
    width: calc(30 * var(--size-mobile));
    height: calc(30 * var(--size-mobile));
  }
  
  .modal-menu .modal-menu-close::before {
    height: calc(2 * var(--size-mobile));
  }
  
  .modal-menu .modal-menu-close::after {
    height: calc(2 * var(--size-mobile));
  }
  
  .modal-menu .menus {
    padding: calc(60 * var(--size-mobile)) calc(20 * var(--size-mobile)) calc(20 * var(--size-mobile));
  }
  
  .modal-menu .menus ul.menu {
    margin: 0 0 calc(20 * var(--size-mobile));
  }
  
  .modal-menu .menus ul.menu li {
    margin: calc(10 * var(--size-mobile)) 0 0;
  }
  
  .modal-menu .menus ul.menu li:first-child {
    margin-top: 0;
  }
  
  .modal-menu .menus .share-wrap span.desc {
    margin-bottom: calc(12 * var(--size-mobile));
  }
  
  .modal-menu .menus .share-wrap .addtoany_list {
    margin: 0 calc(-6 * var(--size-mobile));
  }
  
  .modal-menu .menus .share-wrap .addtoany_list a {
    margin: 0 calc(6 * var(--size-mobile));
    border-width: calc(1 * var(--size-mobile));
    width: calc(45 * var(--size-mobile));
    height: calc(45 * var(--size-mobile));
  }
}

@media screen and (max-width: 420px) {
  h1 {
    font-size: 2em;
  }

  section.main .header-wrap .header-inner p {
    max-width: 65%;
  }

  section.main .link {
    width: 100px;
    height: 100px;
  }

  section.main .link .rotate {
    font-size: 0.75em;
    width: 90px;
    height: 90px;
  }

  section.main .link .rotate span {
    transform-origin: 0 45px;
  }
}