a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

.menu-site {
  position:absolute;
  right:40px;
  top:70px;
  font-family:'Playfair Display Bold', sans-serif;
  font-weight:normal;
  font-size:12px;
  color: #a6a6a6;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:2px;
  -webkit-transition:color .2s;
  -o-transition:color .2s;
  transition:color .2s;
  z-index:1000;
}

.menu-site:hover {
  text-decoration:none;
  color: #e0e0e0
}

.menu-site:before {
  font-size:26px;
  vertical-align:middle;
  margin-bottom:2px;
  margin-right:10px;
  height:18px;
  display:inline-block;
  line-height:18px
}

.icon-hamburger {
  display: inline-block;
  padding-left: 34px;
}

.icon-hamburger:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 2px;
  background-color: currentColor;
  box-shadow:
    0 -6px 0 0 currentColor,
    0 6px 0 0 currentColor;
}

.detail-popup-content {
  font-family:'PT Sans',sans-serif;
  font-size:14px;
  color:#333;
  line-height:30px;
  margin-bottom:10px;
  padding:35px 70px
}

.popup-container {
  position:absolute;
  width:100%;
  height:100%;
  visibility: hidden;
  opacity:0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background:url("/static/images/bg_popup.jpg") 50% 50% no-repeat;
  background-size:cover;
  z-index:100;
  left:0;
  top:0;
}

.popup-container.active {
  visibility: visible;
  opacity: 1;
}

.popup-container .popup-inner {
  position:absolute;
  top:0;
  right:0;
  left:0;
  bottom:0
}

.popup-container .popup-close-cnt {
  position:absolute;
  top:0;
  left:0;
  right:0;
  text-align:center;
  list-style: none;
}

.popup-container .popup-close {
  font-family:'Playfair Display Bold',sans-serif;
  font-weight:normal;
  font-size:11px;
  color:#fff;
  line-height:1;
  padding-top:20px;
  padding-left:20px;
  padding-right:20px;
  display:inline-block;
  text-align:center;
  text-transform:uppercase;
  letter-spacing:2px;
  text-decoration:none
}

.popup-container .popup-close:hover {
  text-decoration:none
}

.popup-container .popup-close i {
  display:inline-block;
  color:#fff;
  font-size:12px;
  margin-bottom:15px
}

.icon-close:before {
  /*content:"x";*/
  content: "\2715";
  font-style: normal;
}

.popup-container .popup-content {
  text-align:center
}

.popup-container .popup-menu-cnt {
  width:820px;
  margin-left:auto;
  margin-right:auto;
  padding-top:170px;
  overflow:hidden
}

.popup-container .common-menu-cnt {
  width:560px
}

.fleft {
  float:left
}

.fright {
  float:right
}

.popup-container .popup-menu-header {
  display:block;
  font-family:'Playfair Display',sans-serif;
  font-weight:normal;
  font-size:12px;
  color:#fff;
  line-height:1;
  text-align:left;
  text-transform:uppercase;
  letter-spacing:2px;
  padding-bottom:10px;
  position:relative;
  margin-bottom:35px
}

/*
.popup-container .popup-menu a {
  font-family: 'PT Sans', sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: white;
  list-style: none;
}
*/

.popup-container .popup-menu-header:after {
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:#fff;
  /*filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=20);*/
  opacity:.2
}

.popup-container .popup-menu-header+ul {
  margin-left:0
}

.popup-container .popup-menu {
  width:auto;
  float:left;
  margin-left:30px;
  margin-top:-4px
}

.popup-container .popup-menu li {
  list-style:none;
  margin-bottom:32px;
  text-align:left
}

.popup-container .popup-menu a {
  font-family:'Playfair Display Bold',sans-serif;
  font-weight:normal;
  font-size:16px;
  color:#fff;
  line-height:1;
  display:inline-block;
  padding:4px 8px;
  position:relative
}

.popup-container .popup-menu a:before {
  content:"";
  width:100%;
  height:100%;
  border:1px solid #f5cb58;
  position:absolute;
  top:0;
  left:0;
  opacity:0
}
.popup-container .popup-menu a:hover {
  text-decoration:none
}
.popup-container .popup-menu a:hover:before {
  opacity:1
}
.popup-container .popup-menu a.active:before {
  opacity:1
}

.popup-container .personal-menu-cnt {
  width:190px
}

.popup-container .popup-menu-text {
  font-family:'PT Sans', sans-serif;
  font-weight:normal;
  font-size:14px;
  color: white;
  list-style:none;
  line-height:24px;
  text-align:left
}

.popup-container .popup-menu-text a {
  text-decoration:none;
  border-bottom:1px solid #c1b1a7;
  color:#fff
}

.rotating-object {
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.rotating-image-container {
  width: 100px;
  height: 100px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateHorizontal 20s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  /*animation: rotateHorizontal 20s ease-in-out infinite;*/
}

.rotating-image-container img {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
}

.rotating-image-container .front {
  transform: rotateY(0deg);
}

.rotating-image-container .back {
  transform: rotateY(180deg);
}

@keyframes rotateHorizontal {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}


/* Mobile styles */
/*@media (max-width: 1024px) {*/
/*  .menu-site {*/
/*    top:42px;*/
/*    right: 20px;*/
/*    font-size: 10px;*/
/*  }*/

/*  .popup-container .popup-menu-cnt {*/
/*    width: 90%;*/
/*    padding-top: 120px;*/
/*  }*/

/*  .popup-container .common-menu-cnt {*/
/*    width: 100%;*/
/*    float: none;*/
/*  }*/

/*  .popup-container .popup-menu {*/
/*    margin-left: 0;*/
/*    width: 100%;*/
/*    float: none;*/
/*    margin-bottom: 30px;*/
/*  }*/
/*}*/

@media (max-width: 768px) {
  .menu-site {
    top: 42px;
    right: 20px;
    font-size: 10px;
  }

  .icon-hamburger {
    padding-left: 28px;
  }

  .icon-hamburger:before {
    width: 22px;
    box-shadow:
      0 -5px 0 0 currentColor,
      0 5px 0 0 currentColor;
  }


  .popup-container .popup-menu-cnt {
    padding-top: 120px;
    width: 90%;
  }

  .popup-container .popup-menu-header {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .popup-container .popup-menu li {
    margin-bottom: 25px;
  }

  .popup-container .popup-menu a {
    font-size: 16px;
    padding: 3px 6px;
  }

  .popup-container .popup-close {
    padding-top: 15px;
    font-size: 10px;
  }

  .popup-container .common-menu-cnt {
    width: 90%;
  }
}

/*@media (max-width: 480px) {*/
/*  .menu-site {*/
/*    top: 35px;*/
/*    right: 15px;*/
/*  }*/

/*  .icon-hamburger {*/
/*    padding-left: 24px;*/
/*  }*/

/*  .icon-hamburger:before {*/
/*    width: 20px;*/
/*    box-shadow:*/
/*      0 -4px 0 0 currentColor,*/
/*      0 4px 0 0 currentColor;*/
/*  }*/

/*  .popup-container .popup-menu-cnt {*/
/*    padding-top: 100px;*/
/*  }*/

/*  .popup-container .popup-menu-header {*/
/*    font-size: 10px;*/
/*    margin-bottom: 20px;*/
/*  }*/

/*  .popup-container .popup-menu li {*/
/*    margin-bottom: 20px;*/
/*  }*/

/*  .popup-container .popup-menu a {*/
/*    font-size: 13px;*/
/*  }*/

/*  .detail-popup-content {*/
/*    padding: 20px;*/
/*    font-size: 13px;*/
/*    line-height: 24px;*/
/*  }*/
/*}*/