/* ==========================================================================
   Fonts
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");
/* ==========================================================================
   Variables, mixin
   ========================================================================== */
/* ==========================================================================
   Buttons
   ========================================================================== */
.green-button,
.white-button {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 3px 20px;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.green-button {
  color: white;
  background-color: #43755f;
  border: 2px solid #43755f;
}
.green-button:hover {
  color: #43755f;
  background-color: white;
}

.white-button {
  color: #43755f;
  background-color: white;
  border: 2px solid #43755f;
}
.white-button:hover {
  background-color: white;
  color: #43755f;
}

/* ==========================================================================
   Base style
   ========================================================================== */
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.form-control:focus {
  outline: 0;
  box-shadow: none;
}

a {
  text-decoration: none !important;
}

.section-title-white,
.section-title-green {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.short-line {
  width: 75px;
  height: 4px;
}

.long-line {
  width: 200px;
  height: 4px;
}

.empty-space {
  width: 100%;
  height: 20px;
}

.section-title-white h1 {
  color: white;
  font-size: 25px;
  padding-bottom: 20px;
  margin-bottom: 0px;
}

.section-title-white .short-line {
  background: white;
}

.section-title-white .long-line {
  background: white;
}

.section-title-green h1 {
  color: #43755f;
  font-size: 25px;
  padding-bottom: 20px;
  margin-bottom: 0px;
}

.section-title-green .short-line {
  background: #43755f;
}

.section-title-green .long-line {
  background: #43755f;
}

.page-section-bg {
  width: 100%;
  height: 47vw;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-section-bg.contacts {
  background-position: bottom;
}

.page-section-title {
  padding: 100px 0;
}
.page-section-title .page-section-desc.location-desc {
  padding-top: 30px;
}
.page-section-title .page-section-desc p {
  margin-bottom: 0px;
  color: #43755f;
}

.form-group {
  position: relative;
}
.form-group label {
  position: absolute;
  font-size: 14px;
  color: white;
  top: -11px;
  background-color: #43755f;
  left: 10px;
  padding-right: 4px;
  padding-left: 4px;
}

.form-control {
  background-color: transparent;
  border-radius: 0;
  border: 1px solid white;
  color: white !important;
}
.form-control:focus {
  background-color: transparent;
  box-shadow: none;
  outline: none;
  border-color: white;
}

.navbar-toggler {
  border-color: white !important;
}
.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.navbar-toggler:focus {
  outline: none;
}

.inquiry-button {
  position: fixed;
  top: 35%;
  right: -46px;
  z-index: 999999;
  width: 126px !important;
  transform: rotate(-90deg);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #006d3c;
  border-color: #006d3c;
}
.inquiry-button:hover {
  transform: translate(-46px, 0px);
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.mouse-button {
  display: inline-block;
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translate(-50%);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mouse-button img {
  margin: 0 auto;
  width: 30px;
  border-radius: 16px;
}
.mouse-button img:hover {
  animation: shake-animation 5s ease infinite;
  transform-origin: 50% 50%;
}
.mouse-button .vertical-line {
  width: 58px;
  margin-top: 37px;
  height: 2px;
  transform: rotate(90deg);
  background-color: white;
}

@keyframes shake-animation {
  0% {
    transform: translate(0, 0);
  }
  1.78571% {
    transform: translate(10px, 0);
  }
  3.57143% {
    transform: translate(0, 0);
  }
  5.35714% {
    transform: translate(10px, 0);
  }
  7.14286% {
    transform: translate(0, 0);
  }
  8.92857% {
    transform: translate(10px, 0);
  }
  10.71429% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

.modal {
  position: relative;
}
.modal .close-button-container {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 99;
}
.modal .close-button-container .close-button {
  cursor: pointer;
}
.modal .close-button-container .close-button i {
  font-size: 42px;
  transition: transform 0.25s, opacity 0.25s;
  color: #43755f;
  background: white;
  border: 1px solid white;
  border-radius: 50%;
}
.modal .close-button-container .close-button i:hover {
  transform: rotate(90deg);
}

.modal .close-button-container .close-object-button {
  cursor: pointer;
}
.modal .close-button-container .close-object-button i {
  font-size: 42px;
  transition: transform 0.25s, opacity 0.25s;
  color: #43755f;
  background: white;
  border: 1px solid white;
  border-radius: 50%;
}
.modal .close-button-container .close-object-button i:hover {
  transform: rotate(90deg);
}

.modal.fade {
  opacity: 1;
}

.modal.fade .modal-dialog {
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  transform: translate(0);
}

.modal-backdrop.show {
  opacity: 0.8;
}

.breadcrumb {
  margin-bottom: 0px;
  background-color: transparent;
  justify-content: center;
  font-size: 14px;
}
.breadcrumb .breadcrumb-item a {
  color: #43755f;
}

.to-tree-menu {
  display: none;
}

/* ==========================================================================
   Header
   ========================================================================== */
.only-logo-nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 999;
}
.only-logo-nav .logo {
  width: 140px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0 15px 15px 15px;
}
.only-logo-nav .langluage-button {
  position: absolute;
  right: 50px;
}
.only-logo-nav .langluage-button .nav-link {
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #43755f;
  font-size: 14px;
}
.only-logo-nav .langluage-button .dropdown-menu {
  border-radius: 0px;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 0;
  min-width: 54px;
}
.only-logo-nav .langluage-button .dropdown-menu .dropdown-item {
  padding: 5px 10px;
  color: #43755f;
  font-size: 14px;
}

.main-nav {
  width: 100%;
  z-index: 9999;
  transition: visibility 0.2s linear, opacity 0.2s linear;
}
.main-nav .navbar-collapse {
  position: relative;
}
.main-nav .navbar-brand {
  margin-right: 0px;
  z-index: 9999;
}
.main-nav .logo-home {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -5px;
  width: 140px;
  padding: 0 15px 15px 15px;
}
.main-nav .logo-pages {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 5px;
  width: 160px;
}
.main-nav.home-nav {
  background: #006d3c;
  visibility: hidden;
}
.main-nav.pages-nav {
  background: black;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.9) 10%,
    rgba(255, 255, 255, 0) 100%
  );
}
.main-nav .nav-item .dropdown-menu {
  min-width: 0px;
  left: 16px;
  border-radius: 0;
  border: none;
  padding: 0px;
  margin: 0;
  left: 6px;
}
.main-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 5px 10px;
}
.main-nav .nav-item .nav-link {
  color: white;
  font-size: 16px;
}
.main-nav .nav-item .nav-link:hover {
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.main-nav .nav-item .nav-link:focus {
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.main-nav .nav-item .nav-link.active {
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

button:focus {
  outline: 0;
}

/* ==========================================================================
   Home
   ========================================================================== */
.video-section {
  overflow: hidden;
}

.fullscreen-bg {
  position: relative;
  width: 100%;
  height: 56vw;
  background: transparent url("../img/top-video-img.jpg") no-repeat 0 0;
  background: transparent url("../img/homepage-video.jpg") no-repeat 0 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.fullscreen-bg.finish {
  background: transparent url("../img/about-project-bg.jpg") no-repeat 0 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.fullscreen-bg__video {
  width: 100%;
  height: auto;
}

.video-js.vjs-ended .vjs-poster {
  display: block;
}

.video-logo-wrapper {
  position: absolute;
  top: 40px;
  text-align: center;
  width: 100%;
  z-index: 2;
}

.video-logo-img {
  max-width: 290px;
}

.video-logo-img.hide {
  display: none;
}

.play-wrapper {
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  transform: translateY(-70%);
  width: 100%;
  z-index: 2;
}

#btn-v-play img {
  cursor: pointer;
  z-index: 999;
}

#btn-v-mute {
  position: absolute;
  cursor: pointer;
  z-index: 99991;
  right: 5px;
  top: 65px;
  cursor: pointer;
}

#btn-v-mute img {
  max-width: 50px;
}

#btn-v-pause {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
  cursor: pointer;
  width: 99%;
  height: 100%;
}

#btn-v-pause img {
  max-width: 50px;
  float: right;
}

.play-wrapper img {
  max-width: 170px;
}

.building-map-section {
  position: relative;
}
.building-map-section .building-map {
  width: 100%;
  height: 100%;
}

.object-map-section {
  position: relative;
}
.object-map-section .object-map {
  width: 100%;
  height: 100%;
}

.building-map-slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.building-map-slider-container .mini-map-buttons {
  position: absolute;
  top: 6.25vw;
  right: 6.25vw;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.building-map-slider-container .mini-map-buttons .prev,
.building-map-slider-container .mini-map-buttons .next {
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  color: white;
  text-shadow: 1px 1px black;
  font-size: 0.875vw;
  line-height: 1.1;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  border: 1px solid white;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3);
  height: 3.75vw;
  width: 6.875vw;
  opacity: 1;
}
.building-map-slider-container .mini-map-buttons .prev:hover,
.building-map-slider-container .mini-map-buttons .next:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}

.building-map-slider .slider-item .mouse-button:focus {
  outline: 0 !important;
}

.building-map-slider .slider-item:focus {
  outline: 0 !important;
}

.tree-menu-section {
  position: relative;
  width: 100%;
  z-index: 999;
}
.tree-menu-section .down-arrow-wraper {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%);
}
.tree-menu-section .down-arrow-wraper i {
  position: relative;
  color: #43755f;
  font-size: 40px;
  animation-name: example;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
.tree-menu-section .mapster-container {
  position: relative;
  padding: 100px;
  padding-bottom: 50px;
  margin-top: 20px;
}
.tree-menu-section .mapster-container .tree-menu-links {
  position: absolute;
  z-index: 9999;
  color: #707070;
  font-size: 19px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
.tree-menu-section .mapster-container .tree-menu-links[data-hover="true"] {
  color: #006d3c;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
.tree-menu-section .mapster-container .tree-menu-links.l0 {
  top: 3%;
  left: 45%;
}
.tree-menu-section .mapster-container .tree-menu-links.l1 {
  top: 10%;
  left: 27%;
}
.tree-menu-section .mapster-container .tree-menu-links.l2 {
  top: 27%;
  left: 12%;
}
.tree-menu-section .mapster-container .tree-menu-links.l3 {
  bottom: 49%;
  left: 5%;
}
.tree-menu-section .mapster-container .tree-menu-links.l4 {
  right: 27%;
  top: 10%;
}
.tree-menu-section .mapster-container .tree-menu-links.l5 {
  right: 12%;
  top: 27%;
}
.tree-menu-section .mapster-container .tree-menu-links.l6 {
  right: 5%;
  bottom: 49%;
}
.tree-menu-section .mapster-container .tree-view-menu {
  width: 100%;
  height: 100%;
}

@keyframes example {
  0% {
    top: 0px;
  }
  50% {
    top: 15px;
  }
  100% {
    top: 0px;
  }
}

.phase-tooltip {
  max-width: 250px;
  white-space: pre-wrap;
  border: 1px solid white;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px 20px;
  font-size: 16px;
  color: black;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.phase-tooltip.mobile {
  display: none;
}

.project-section {
  background-color: #43755f;
  padding: 50px 0 20px 0;
}
.project-section .project-desc {
  margin: 30px 0;
}
.project-section .project-desc p {
  font-size: 30px;
  color: white;
}
.project-section .project-desc p:last-of-type {
  margin-bottom: 0;
}

.loaction-section .location-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.loaction-section .location-content {
  padding: 120px;
}
.loaction-section .location-content .location-desc {
  margin: 40px 0;
}
.loaction-section .location-content .location-desc p {
  color: #43755f;
}

.links-section {
  background-color: #f7f7f7;
  padding: 50px 0;
}
.links-section .center-column-margin {
  margin-right: 15px;
  margin-left: 15px;
}
.links-section .img-wrapper {
  overflow: hidden;
  position: relative;
}
.links-section .img-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.links-section .img-wrapper img:hover {
  -webkit-transform: scale(1.25);
  -moz-transform: scale(1.25);
  -ms-transform: scale(1.25);
  -o-transform: scale(1.25);
  transform: scale(1.25);
}
.links-section .img-wrapper img:hover .text {
  bottom: 200px;
}
.links-section .img-wrapper .text {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translate(-50%);
  margin-bottom: 0px;
  color: white;
  font-size: 24px;
}

.modal-dialog {
  max-width: 100%;
}

.modal-content {
  background-color: #43755f;
  padding: 7px;
  margin: 0 20px;
}

.phase1-map,
.phase1b-map,
.phase2-map,
.phase3a-map,
.phase3b-map,
.phase3c-map {
  width: 100%;
  height: 100%;
}

/* VIDO CONTROLS */
:root {
  --default-white: white;
}

.video-controls {
  right: 0;
  left: 0;
  position: absolute;
  bottom: 0;
  transition: all 0.2s ease;
  z-index: 999;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.5)
  );
}

.video-controls.hide {
  opacity: 0;
  pointer-events: none;
}

.video-progress {
  position: relative;
  height: 5px;
  margin-bottom: 10px;
}

progress {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 2px;
  width: 100%;
  height: 5px;
  pointer-events: none;
  position: absolute;
  top: 0;
}

progress::-webkit-progress-bar {
  background-color: #474545;
  border-radius: 2px;
}

progress::-webkit-progress-value {
  background: var(--default-white);
  border-radius: 2px;
}

progress::-moz-progress-bar {
  border: 1px solid var(--default-white);
  background: var(--default-white);
}

.seek {
  position: absolute;
  top: -5px;
  width: 100%;
  cursor: pointer;
  margin: 0;
}

.seek:hover + .seek-tooltip {
  display: block;
}

.seek-tooltip {
  display: none;
  position: absolute;
  top: -50px;
  margin-left: -20px;
  font-size: 12px;
  padding: 3px;
  content: attr(data-title);
  font-weight: bold;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
}

.bottom-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-controls {
  display: flex;
  align-items: center;
  color: #fff;
}

.volume-controls {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.volume-controls input {
  width: 100px;
  opacity: 1;
  transition: all 0.4s ease;
}

.volume-controls:hover input,
.volume-controls input:focus {
  width: 100px;
  opacity: 1;
}

.fullscreen-button {
  margin-right: 0;
}

.pip-button svg {
  width: 26px;
  height: 26px;
}

.playback-animation {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
  width: 80px;
  height: 80px;
  border-radius: 80px;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  cursor: pointer;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  cursor: pointer;
  border-radius: 1.3px;
  -webkit-appearance: none;
  transition: all 0.4s ease;
}

input[type="range"]::-webkit-slider-thumb {
  height: 16px;
  width: 16px;
  border-radius: 16px;
  background: var(--default-white);
  cursor: pointer;
  -webkit-appearance: none;
  margin-left: -1px;
}

input[type="range"]:focus::-webkit-slider-runnable-track {
  background: transparent;
}

input[type="range"].volume {
  height: 4px;
  background-color: #fff;
}

input[type="range"].volume::-webkit-slider-runnable-track {
  background-color: transparent;
}

input[type="range"].volume::-webkit-slider-thumb {
  margin-left: 0;
  height: 14px;
  width: 14px;
  background: #fff;
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 1.3px;
}

input[type="range"]::-moz-range-thumb {
  height: 14px;
  width: 14px;
  border-radius: 50px;
  border: 1px solid var(--default-white);
  background: var(--default-white);
  cursor: pointer;
  margin-top: 5px;
}

input[type="range"]:focus::-moz-range-track {
  outline: none;
}

input[type="range"].volume::-moz-range-thumb {
  border: 1px solid #fff;
  background: #fff;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .down-link:hover {
    text-decoration: none;
  }
  .video-progress {
    height: 0;
    margin-bottom: 0;
  }
  .seek {
    top: -23px;
  }
  input[type="range"].volume {
    height: -5px;
    background-color: transparent !important;
  }
  input[type="range"]::-ms-track {
    height: 5px;
    /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
    background: transparent;
    /*leave room for the larger thumb to overflow with a transparent border */
    border-color: transparent;
    border-width: 6px 0;
    /*remove default tick marks*/
    color: transparent;
  }
  input[type="range"].volume::-ms-track {
    height: 5px;
    /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
    background: transparent;
    /*leave room for the larger thumb to overflow with a transparent border */
    border-color: transparent;
    border-width: 6px 0;
    /*remove default tick marks*/
    color: transparent;
  }
  input[type="range"]::-ms-fill-lower {
    background: #777;
    border-radius: 10px;
  }
  input[type="range"]::-ms-fill-upper {
    background: #ddd;
    border-radius: 10px;
  }
  input[type="range"]::-ms-thumb {
    border: none;
    height: 16px !important;
    width: 16px !important;
    border-radius: 50%;
    background: white;
  }
  input[type="range"]:focus::-ms-fill-lower {
    background: #888;
  }
  input[type="range"]:focus::-ms-fill-upper {
    background: #ccc;
  }
}

.hidden {
  display: none;
}

.video-controls svg {
  width: 25px;
  height: 25px;
  fill: #fff;
  stroke: #fff;
  cursor: pointer;
}

.volume-button,
.play-button {
  cursor: pointer;
  position: relative;
  margin-right: 7px;
  font-size: 12px;
  padding: 3px;
  border: none;
  outline: none;
  background-color: transparent;
}

.volume-button::before,
.play-button::before {
  content: attr(data-title);
  position: absolute;
  display: none;
  right: 0;
  top: -50px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-weight: bold;
  padding: 4px 6px;
  word-break: keep-all;
  white-space: pre;
}

.volume-button:hover::before {
  display: inline-block;
}

.play-button-button:hover::before {
  display: inline-block;
}

@media (min-width: 1200px) {
  .video-controls {
    position: fixed;
  }
  .down-arrow-wraper {
    position: fixed;
  }
}

.popover-header {
  padding: 0px;
  border-bottom: none;
  padding-right: 5px;
}

.video-bg {
  background: #78b82c;
}

@media (max-width: 998px) {
  .video-bg {
    background: transparent;
    margin-bottom: 50px;
  }
}

/* ==========================================================================
   LOCATION
   ========================================================================== */
.location-page-content {
  background-color: #43755f;
  padding: 100px 0;
  text-align: center;
}
.location-page-content .map-link {
  color: white;
  text-decoration: underline !important;
}
.location-page-content .transport-map {
  width: 200px;
}
.location-page-content p {
  color: white;
  text-align: center;
}

.location-map-section {
  margin-top: 27px;
}
.location-map-section iframe {
  width: 100%;
  display: block;
  pointer-events: none;
  position: relative;
}
.location-map-section iframe.clicked {
  pointer-events: auto;
}
.location-map-section #map {
  width: 100%;
  height: 600px;
}

.concept {
  width: 100%;
  height: 100%;
  background-color: white;
  padding: 100px 0;
}
.concept .concept-title {
  text-align: center;
}
.concept .concept-title p {
  font-size: 25px;
  margin-bottom: 40px;
}
.concept .concept-desc {
  text-align: center;
  margin-bottom: 50px;
}
.concept .concept-desc p {
  font-size: 14px;
}
.concept .concept-idea-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
.concept .concept-idea-box .idea-circle {
  width: 58px;
  height: 58px;
  background-color: white;
  border: 1px solid white;
  border-radius: 100px;
}
.concept .concept-idea-box .idea-text {
  font-size: 14px;
  margin-bottom: 0px;
  margin-top: 10px;
  padding: 0 60px;
  text-align: center;
}

.animated-cards {
  background-color: #f7f7f7;
  padding: 50px 0;
}
.animated-cards .card-container {
  position: relative;
  height: 780px;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}
.animated-cards .card-container .card-img-container {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 99;
  transition: all 300ms;
  -moz-transition: all 300ms;
  -webkit-transition: all 300ms;
}
.animated-cards .card-container .card-img-container .card-img-text {
  position: absolute;
  bottom: 50px;
  font-size: 30px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.71);
  left: 50%;
  text-align: center;
  transform: translate(-50%);
  color: white;
}
.animated-cards .card-container:hover .card-img-container {
  transform: translateY(-150px);
}
.animated-cards .card-container .card-overlay {
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 150px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  bottom: 0;
  align-items: center;
  background-color: white;
  opacity: 1;
  transition: all 150ms linear 100ms;
  -moz-transition: all 150ms linear 100ms;
  -webkit-transition: all 150ms linear 100ms;
}

/* ==========================================================================
   About Us
   ========================================================================== */
.about-us .about-us-content {
  padding: 50px 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.about-us .about-us-content.bg-white {
  background-color: white;
}
.about-us .about-us-content.bg-white .about-us-description {
  margin-top: 30px;
  color: #43755f;
}
.about-us .about-us-content.bg-white .about-us-description a {
  color: #43755f;
}
.about-us .about-us-content.bg-green {
  background-color: #43755f;
}
.about-us .about-us-content.bg-green .about-us-description {
  margin-top: 30px;
  color: white;
}
.about-us .about-us-content.bg-green .about-us-description a {
  color: white;
}

/* ==========================================================================
   News
   ========================================================================== */
.latest-news {
  position: relative;
}
.latest-news .section-title-absolut {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%);
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 46px;
}
.latest-news .news-container {
  padding: 100px 0;
}
.latest-news .news-container .news-img {
  width: 100%;
  height: 550px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.latest-news .news-container .news-title {
  padding: 20px 0;
}
.latest-news .news-container .news-title h1 {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #43755f;
  margin-bottom: 15px;
}
.latest-news .news-container .news-title .news-line {
  width: 150px;
  height: 4px;
  background-color: #43755f;
}
.latest-news .news-container .news-desc {
  color: #43755f;
  font-size: 14px;
}
.latest-news .news-container .news-date {
  margin-top: 10px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: black;
}
.latest-news .news-container .slick-prev:before,
.latest-news .news-container .slick-next:before {
  font-size: 40px !important;
}
.latest-news .news-container .slick-prev,
.latest-news .news-container .slick-next {
  width: 40px;
  height: 40px;
}

.slider-news-container {
  /* Custom Arrow */
}
.slider-news-container .slider-item:focus {
  outline: 0 !important;
}
.slider-news-container .prev {
  color: #999;
  position: absolute;
  top: 42%;
  transform: translate(0, -50%);
  left: -2em;
  font-size: 40px;
}
.slider-news-container .prev :hover {
  cursor: pointer;
  color: #43755f;
}
.slider-news-container .next {
  color: #999;
  position: absolute;
  top: 42%;
  right: -2em;
  transform: translate(0, -50%);
  font-size: 40px;
}
.slider-news-container .next :hover {
  cursor: pointer;
  color: #43755f;
}
.slider-news-container .slider-news .slider-img {
  width: 100%;
  height: 550px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.slider-news-container .slider-news .slick-next {
  right: -40px;
  z-index: 999;
}
.slider-news-container .slider-news .slick-next::before {
  color: #43755f;
}
.slider-news-container .slider-news .slick-prev {
  left: -40px;
  z-index: 999;
}
.slider-news-container .slider-news .slick-prev::before {
  color: #43755f;
}

.slider-gallery-section {
  padding: 100px 0;
  /* Custom Arrow */
}
.slider-gallery-section .slider-item:focus {
  outline: 0 !important;
}
.slider-gallery-section .slider-gallery-for {
  margin-bottom: 50px;
}
.slider-gallery-section .slider-gallery-for .slider-img {
  width: 100%;
  height: 350px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.slider-gallery-section .slider-gallery-nav .slider-item {
  padding: 0 10px;
}
.slider-gallery-section .slider-gallery-nav .slider-img {
  width: 100%;
  height: 200px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.slider-gallery-section .prev {
  color: #999;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: -2em;
  font-size: 32px;
}
.slider-gallery-section .prev :hover {
  cursor: pointer;
  color: #43755f;
}
.slider-gallery-section .next {
  color: #999;
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translate(0, -50%);
  font-size: 32px;
}
.slider-gallery-section .next :hover {
  cursor: pointer;
  color: #43755f;
}

.slider-section {
  background-color: #f7f7f7;
}
.slider-section .slider-container .slick-next {
  right: 0px;
  z-index: 999;
}
.slider-section .slider-container .slick-next::before {
  color: #43755f;
}
.slider-section .slider-container .slick-prev {
  left: 0px;
  z-index: 999;
}
.slider-section .slider-container .slick-prev::before {
  color: #43755f;
}
.slider-section .slider-container .slider-item {
  padding: 80px 30px;
}
.slider-section .slider-container .slider-item:focus {
  outline: 0 !important;
}
.slider-section .slider-container .slider-item .slider-title {
  font-size: 12px;
  color: #43755f;
}
.slider-section .slider-container .slider-item .slider-img {
  width: 100%;
  height: 170px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 10px 0;
}
.slider-section .slider-container .slider-item .slider-date {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 10px;
  margin-bottom: 10px;
  color: black;
}
.slider-section .slider-container .slider-item .slider-desc {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 10px;
  height: 45px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: black;
}
.slider-section .slick-dots {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  list-style: none;
}
.slider-section .slick-dots li button:hover::before {
  color: #43755f;
}
.slider-section .slick-dots li button::before {
  font-size: 10px;
}
.slider-section .slick-dots li.slick-active button:before {
  color: #43755f;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery {
  position: relative;
}
.gallery .section-title-absolut {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%);
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 46px;
}
.gallery .section-title-absolut h1 {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.61);
}

/* ==========================================================================
   Services
   ========================================================================== */
.services {
  width: 100%;
  height: 100%;
  background-color: white;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  padding: 100px 0 20px 0;
}

/* ==========================================================================
   About project
   ========================================================================== */
.about-project-center-img {
  background-attachment: fixed;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 400px;
  background-color: white;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 100px 0;
}
.about-project-center-img .about-project-center-text {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px;
}
.about-project-center-img .about-project-center-text p {
  color: white;
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
  margin-bottom: 0px;
}

.about-project-location {
  background-color: #43755f;
  padding: 100px 0;
}
.about-project-location img {
  width: 40px;
}
.about-project-location p {
  color: white;
  margin-bottom: 0px;
  text-align: center;
}

/* ==========================================================================
   Address
   ========================================================================== */
.contacts-address {
  background-color: #43755f;
}
.contacts-address .map-address {
  color: white;
}

.contacts-icon {
  padding: 100px 0;
}
.contacts-icon .contact-icon-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contacts-icon .contact-icon-container img {
  width: 65px;
}
.contacts-icon .contact-icon-container .strong {
  margin-bottom: 2px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #43755f;
}
.contacts-icon .contact-icon-container a {
  color: #43755f;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.contact-form {
  background-color: #43755f;
  padding: 100px 0;
}
.contact-form form {
  margin-top: 50px;
}
.contact-form textarea {
  height: 145px;
}
.contact-form .form-button {
  background: #d9e3df;
  color: #43755f;
  border-color: #d9e3df;
  height: 38px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#backToTop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #006d3c;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  z-index: 99999;
}
#backToTop:hover {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}
#backToTop span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #ffffff;
}

.map-section #map {
  width: 100%;
  height: 400px;
}

.map-address {
  padding: 20px 0;
  font-size: 16px;
}
.map-address.green {
  background-color: #43755f;
}

.futter-links-section {
  padding-bottom: 30px;
  padding-top: 30px;
}
.futter-links-section .footer-logo {
  width: 170px;
  display: inline-block;
}
.futter-links-section .footer-links {
  text-align: right;
  padding-bottom: 30px;
}
.futter-links-section .footer-links p {
  font-size: 25px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.futter-links-section .footer-links a {
  color: #006d3c;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding: 10px;
}
.futter-links-section .footer-links a:hover {
  color: #43755f;
}
.futter-links-section .footer-links ul li {
  margin-bottom: 8px;
}
.futter-links-section .copyright {
  text-align: center;
  padding-top: 10px;
}
.futter-links-section .copyright p {
  margin-bottom: 0px;
}
.futter-links-section .copyright a {
  color: black;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.fancybox-navigation .fancybox-button div {
  padding: 0px !important;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 25px 15px 25px 6px !important;
}

.fancybox-navigation .fancybox-button--arrow_left {
  padding: 25px 6px 25px 15px !important;
}

.privacy_policy-page-text {
  margin: 100px 0;
}

@media (max-width: 1199.98px) {
  .loaction-section .location-content {
    padding: 60px;
  }
  .slider-gallery-section .next {
    right: -20px;
  }
  .slider-gallery-section .prev {
    left: -20px;
  }
  .slider-gallery-section {
    padding: 0px;
  }
  .play-wrapper img {
    max-width: 90px;
  }
  .page-section-bg {
    background-attachment: initial;
  }
  .page-section-title {
    padding: 50px 0;
  }
}

@media (max-width: 991.98px) {
  .loaction-section .location-image {
    height: 300px;
  }
  .loaction-section .location-content {
    padding: 50px 15px;
  }
  .main-nav .logo-home {
    position: absolute;
    top: 1px;
    width: 100px;
    padding: 0px;
  }
  .main-nav .logo-pages {
    position: initial;
  }
  .navbar-brand {
    padding: 0;
  }
  .navbar-collapse {
    margin-top: 10px;
  }
  .only-logo-nav .logo {
    width: 100px;
    padding: 0 5px 5px 5px;
  }
  .g-recaptcha {
    margin-top: 20px;
  }
  .footer-links {
    justify-content: center !important;
  }
}

@media (max-width: 767.98px) {
  .img-container {
    flex-direction: column;
  }
  .links-section .center-column-margin {
    margin: 15px 0px;
  }
  .futter-links-section .footer-link-col {
    text-align: center !important;
  }
  .futter-links-section .footer-links-row div {
    text-align: center;
  }
  .play-wrapper img {
    max-width: 50px;
  }
  .mouse-button {
    display: none;
  }
  .tree-menu-section .mapster-container {
    padding: 60px;
  }
  .tree-menu-section .mapster-container .tree-menu-links {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .section-title-absolut {
    display: none;
  }
  .location-map-section {
    height: 400px;
  }
  .location-map-section #map {
    height: 400px;
  }
  .to-tree-menu {
    display: none;
  }
  .only-logo-nav .langluage-button {
    right: 0px;
  }
  .only-logo-nav {
    z-index: 9999;
  }
  #btn-v-mute img {
    max-width: 34px;
  }
  .dropdown-menu {
    left: 4px;
  }
  .inquiry-button {
    display: none;
  }
  .tree-menu-section .mapster-container {
    padding: 10px;
  }
  .down-arrow-wraper {
    display: none;
  }
  .tree-menu-section {
    display: none;
  }
  .logo-home {
    display: none;
  }
  .project-section .project-desc p {
    font-size: 25px;
  }
  .project-section {
    padding: 20px 0 20px 0;
  }
  .navbar-collapse ul li {
    text-align: center;
  }
  .slick-dots {
    bottom: initial;
  }
  .slick-dotted.slick-slider {
    margin-bottom: 70px;
  }
  .slider-gallery-section .prev,
  .slider-gallery-section .next {
    display: none !important;
  }
  .main-nav.pages-nav {
    background: rgba(0, 0, 0, 0.8);
  }
  .page-section-bg {
    height: 63vw;
  }
  .about-project-timeline .cd-timeline .cd-timeline__container {
    padding: 100px 5px !important;
  }
  .modal .close-button-container .close-button i {
    font-size: 26px;
  }
  .modal-content {
    margin: 0px;
  }
  .phase-tooltip.mobile {
    display: block;
    position: absolute;
    top: -60px;
    left: 0px;
  }
  .slider-section .slick-dots {
    justify-content: center;
    bottom: 15px;
  }
  .latest-news .news-container {
    padding: 50px 0;
  }
  .slider-news-container .slider-news .slider-img {
    height: 300px;
  }
  .slider-news-container .slider-news .slick-next {
    right: 0px;
  }
  .slider-news-container .slider-news .slick-prev {
    left: 0;
  }
  .fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px !important;
  }
  .fancybox-navigation .fancybox-button--arrow_left {
    padding: 31px 26px 31px 6px !important;
  }
  .slider-news-container .slider-news .slick-next::before {
    color: black;
  }
  .slider-news-container .slider-news .slick-prev::before {
    color: black;
  }
  .slider-gallery-section .next {
    display: block !important;
    right: 15px;
    font-size: 35px;
  }
  .slider-gallery-section .next i {
    color: white;
    background-color: #43755f;
  }
  .slider-gallery-section .next i:hover {
    color: white;
  }
  .slider-gallery-section .prev {
    display: block !important;
    left: 15px;
    font-size: 35px;
  }
  .slider-gallery-section .prev i {
    color: white;
    background-color: #43755f;
  }
  .slider-gallery-section .prev i:hover {
    color: white;
  }
  .slider-gallery-section .slider-gallery-nav .slider-item {
    padding: 0;
  }
  .slider-gallery-section .slider-gallery-nav .slider-img {
    height: 90px;
  }
  .slider-gallery-section .slick-slide {
    margin: 0 5px;
  }
  .slider-gallery-section .slick-list {
    margin: 0 -5px;
  }
  .building-map-slider-container .mini-map-buttons .prev,
  .building-map-slider-container .mini-map-buttons .next {
    font-size: 8px;
    height: 22px;
    width: 45px;
  }
}

.about-project-timeline {
  background-color: #43755f;
}
.about-project-timeline .cd-timeline {
  overflow: hidden;
}
.about-project-timeline .cd-timeline .cd-timeline__container {
  position: relative;
  padding: 100px 0;
}
.about-project-timeline .cd-timeline .cd-timeline__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 4px;
  background: #d8e5ee;
}
@media (min-width: 64rem) {
  .about-project-timeline .cd-timeline .cd-timeline__container::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.about-project-timeline .cd-timeline .cd-timeline__block {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  margin-bottom: 2em;
}
.about-project-timeline .cd-timeline .cd-timeline__block:last-child {
  margin-bottom: 0;
}
@media (min-width: 64rem) {
  .about-project-timeline .cd-timeline .cd-timeline__block:nth-child(even) {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.about-project-timeline .cd-timeline .cd-timeline__img {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px white, inset 0 2px 0 rgba(0, 0, 0, 0.08),
    0 3px 0 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 4px white, inset 0 2px 0 rgba(0, 0, 0, 0.08),
    0 3px 0 4px rgba(0, 0, 0, 0.05);
}
.about-project-timeline .cd-timeline .cd-timeline__img img {
  width: 24px;
  height: 24px;
}
@media (min-width: 64rem) {
  .about-project-timeline .cd-timeline .cd-timeline__img {
    width: 60px;
    height: 60px;
    -ms-flex-order: 1;
    order: 1;
    margin-left: calc(5% - 30px);
    will-change: transform;
  }
  .about-project-timeline
    .cd-timeline
    .cd-timeline__block:nth-child(even)
    .cd-timeline__img {
    margin-right: calc(5% - 30px);
  }
}
.about-project-timeline .cd-timeline .cd-timeline__img--picture {
  background-color: #43755f;
}
.about-project-timeline .cd-timeline .cd-timeline__img--movie {
  background-color: #43755f;
}
.about-project-timeline .cd-timeline .cd-timeline__img--location {
  background-color: #43755f;
}
.about-project-timeline .cd-timeline .cd-timeline__content {
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  margin-left: 1.25em;
  background: white;
  border-radius: 0.25em;
  padding: 1.25em;
}
.about-project-timeline .cd-timeline .cd-timeline__content__text {
  margin-top: 15px;
  margin-bottom: 10px;
  max-height: 59px;
  overflow: hidden;
  color: #43755f;
  -moz-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.about-project-timeline .cd-timeline .cd-timeline__content__text.active::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 55px;
  left: 0;
  pointer-events: none;
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    white 90%
  );
  width: 100%;
  height: 4em;
}
.about-project-timeline .cd-timeline .cd-timeline__content__text p {
  margin-bottom: 5px;
}
.about-project-timeline .cd-timeline .cd-timeline__content::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 100%;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-right-color: white;
}
.about-project-timeline .cd-timeline .cd-timeline__content h2 {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #43755f;
  margin-bottom: 10px;
}
.about-project-timeline .cd-timeline .cd-timeline__content .line {
  width: 150px;
  height: 4px;
  background-color: #43755f;
}
@media (min-width: 64rem) {
  .about-project-timeline .cd-timeline .cd-timeline__content {
    width: 45%;
    -ms-flex-positive: 0;
    flex-grow: 0;
    will-change: transform;
    margin: 0;
    font-size: 0.8em;
    --line-height-multiplier: 1.2;
  }
  .about-project-timeline .cd-timeline .cd-timeline__content::before {
    top: 24px;
  }
  .about-project-timeline
    .cd-timeline
    .cd-timeline__block:nth-child(odd)
    .cd-timeline__content::before {
    right: auto;
    left: 100%;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-left-color: white;
  }
}
.about-project-timeline .cd-timeline .cd-timeline__date {
  font-size: 20px;
  color: white;
}
@media (min-width: 64rem) {
  .about-project-timeline .cd-timeline .cd-timeline__date {
    position: absolute;
    width: 100%;
    left: 120%;
    top: 20px;
  }
  .about-project-timeline
    .cd-timeline
    .cd-timeline__block:nth-child(even)
    .cd-timeline__date {
    left: auto;
    right: 120%;
    text-align: right;
  }
}
@media (min-width: 64rem) {
  .about-project-timeline .cd-timeline .cd-timeline__img--hidden,
  .about-project-timeline .cd-timeline .cd-timeline__content--hidden {
    visibility: hidden;
  }
  .about-project-timeline .cd-timeline .cd-timeline__img--bounce-in {
    -webkit-animation: cd-bounce-1 0.6s;
    animation: cd-bounce-1 0.6s;
  }
  .about-project-timeline .cd-timeline .cd-timeline__content--bounce-in {
    -webkit-animation: cd-bounce-2 0.6s;
    animation: cd-bounce-2 0.6s;
  }
  .about-project-timeline
    .cd-timeline
    .cd-timeline__block:nth-child(even)
    .cd-timeline__content--bounce-in {
    -webkit-animation-name: cd-bounce-2-inverse;
    animation-name: cd-bounce-2-inverse;
  }
}

@-webkit-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
