:root {
  --my-blue: #81D8D0;
  --my-sand: #f0e8d8;
}

.hero {
  background-position: 70% center!important;
}
.hero:before {
  background: rgba(0,0,0, 0.25);
}
@media(min-width: 992px) {
  .hero {
    background-position: center!important;
  }
}

.my-profile {
    position: absolute;
    display: block;
    line-height: 1;
    font-size: 1rem;
    height: 1rem;
    top: 0.75rem;
    left: 1rem;
    z-index: 9999;
}

.lang-flag {
    position: absolute;
    display: block;
    line-height: 1;
    font-size: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    top: 0.75rem;
    right: 1rem;
    z-index: 9999;
}

.text-my-blue {
    color: var(--my-blue);
}
.bg-my-blue {
    background: var(--my-blue);
}
.btn-outline-my-blue {
  border-color: var(--my-blue);
  color: var(--my-blue);
}
.btn-outline-my-blue:hover {
  border-color: var(--my-blue);
  background: var(--my-blue);
  color: #222;
}
.border-my-blue {
  border-color: var(--my-blue);
}

.bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.overlay {
    position: relative;
}
.overlay:before {
    content: '';
    background: rgba(0,0,0, 0.65);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.overlay > * {
    position: relative;
    z-index: 1;
}

.bg-sand {
    background: var(--my-sand);
}

.container {
    max-width: 900px;
}




#polaroid .wrap {
  width: 100%;
  height: 600px;
  position: absolute;
  top: 50%;
  margin-top: -300px;
  overflow: hidden;
  -webkit-perspective: 800px;
  -moz-perspective: 800px;
}

.photo {
  width: 260px;
  height: 320px;
  position: absolute;
  z-index: 1;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  left: 50%;
  top: 50%;
  margin: -160px 0 0 -130px;
}

.photo .side {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
  box-sizing: border-box;
}

.photo .side-front { /*display: none;*/
}

.photo .side-front .image {
  width: 100%;
  height: 250px;
  line-height: 250px;
  overflow: hidden;
}

.photo .side-front .image img { width: 100%; }

.photo .side-front .caption {
  text-align: center;
  font-size: 16px;
  line-height: 50px;
}

.photo .side-back { }

.photo .side-back .desc {
  color: #666;
  font-size: 14px;
  line-height: 1.5em;
}

.photo_center {
  left: 50%;
  top: 50%;
  margin: -160px 0 0 -130px;
  z-index: 999;
}

.photo-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
  -webkit-transition: all 0.6s;
  -moz-transform-style: preserve-3d;
  -moz-transition: all 0.6s;
}

.photo-wrap .side-front {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
}

.photo-wrap .side-back {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
}

.photo-wrap .side {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

.photo_front .photo-wrap {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
}

.photo_back .photo-wrap {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
}

#polaroid .nav {
  display: none;
  width: 80%;
  height: 30px;
  line-height: 30px;
  position: absolute;
  left: 10%;
  bottom: 2.5rem;
  z-index: 999;
  text-align: center;
  justify-content: center;
}

#polaroid .nav .i {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  cursor: pointer;
  background-color: #aaa;
  border: 2px solid #fff;
  text-align: center;
  border-radius: 100%;
  -webkit-transform: scale(0.5);
  -webkit-transition: all 0.5s;
  -moz-transform: scale(0.5);
  -moz-transition: all 0.5s;
}

#polaroid .nav .i_current {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  background-color: #81D8D0;
}

#polaroid .nav .i_back {
  -webkit-transform: rotateY(-180deg) scale(0.8);
  -moz-transform: rotateY(-180deg) scale(0.8);
  background-color: #555;
}

#loader {
  z-index: 9999;
}

