body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}
body.overflow {
  overflow: hidden;
}
header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 50px;
  height: 120px;
  position: relative;
}
.menuCont {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-center {
  position: absolute;
  height: calc(100% - 30px);
  z-index: 999;
 
}
.logo-center img:not(.mobile) {
  height: 100%;
  position: absolute;
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.logo-center .visible {
  opacity: 1 !important;
  transition: 0.5s ease-in-out;
}
.logo-text  {
  display: flex;
}
.logo-text  img{
  height: 33px;
}
.bg {
  width: 100%;
  height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}
#background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container {
  max-width: 660px;
  width: calc(100% - 60px);
  margin: 0 auto;
}
.karta {
  width: 100%;
}
#nav-icon {
  width: 27px;
  height: 21px;
  padding: 0;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  display: block;
  border: none;
  background: none;
  z-index: 999;
}
#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(2) {
  top: 9px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(3) {
  top: 18px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#nav-icon.open span {
  background: #fff;
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#nav-icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  left: 0px;
}

#nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 19px;
  left: 0px;
}
h1 {
  font-family: "PT Serif";
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
}
h2 {
  font-family: "PT Serif";
  letter-spacing: 10px;
  font-weight: bold;
  font-size: 35px;
}
h3 {
  font-family: "PT Serif";
  font-weight: bold;
  font-size: 25px;
}
.text {
  font-family: "PT Serif";
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 50px;
  margin-top: 0;
}
.text-small {
  font-family: "PT Serif";
  font-size: 14px;
  line-height: 20px;
}
.roboto-small {
  font-family: "Roboto";
  font-size: 14px;
  line-height: 20px;
}
.link-big {
  font-family: "PT Serif";
  cursor: pointer;
  font-size: 100px;
  text-decoration: none;
}
.roboto {
  font-family: "Roboto";
}
.black {
  color: #000;
}
.gold {
  color: #B08E00;
}
.grey, .grey a {
  color: #96999F;
}
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}
.grafika {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.grafika img {
  height: 110px;
  filter: grayscale(1);
  transform: scale(1) !important;
 transition: all 0.3s ease-in-out !important;
}
.grafika img:hover {
  filter: grayscale(0);
  transform: scale(1.1) !important;
  transition: all 0.3s ease-in-out !important;
}
.greenBG {
  background: #00332F;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.mb0 {
  margin-bottom: 0px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb100 {
  margin-bottom: 100px;
}
.mt50 {
  margin-top: 50px;
}
.mtb0 {
  margin-bottom: 0;
  margin-top: 0;
}
.pt30 {
  padding-top: 30px;
}
.pt70 {
  padding-top: 70px;
}
.pb70 {
  padding-bottom: 70px;
}
.flex {
  display: flex;
}
.full {
  width: 100%;
}
.social {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social a {
  margin: 0 20px;
}
.social img {
  width: 30px;
  height: 30px;
}
.flexColumn {
  display: flex;
  flex-direction: column;
}
.arrow-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}
.arrow {

  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  margin: 0px auto;
  width: 25px;
  transform: rotate(0);
  transition: 0.5s ease-in-out;
}
.arrow img {
  width: 100%;
  transform: translate(0,0);
  -webkit-animation:scrollAnim 1s ease-in-out infinite;
  -moz-animation:scrollAnim 1s ease-in-out infinite;
  animation:scrollAnim 1s ease-in-out infinite;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}
.arrow-cont.rotate span {
  margin-top: 25px;
  transition: 0.5s ease-in-out;
}
.arrow-cont span {
  text-transform: uppercase;
  font-family: "Roboto";
  font-size: 11px;
  margin-top: 20px;
  transition: 0.5s ease-in-out;
}
.arrow-cont.rotate .arrow {
  transform: rotate(180deg);
  transition: 0.5s ease-in-out;
}
.masline.hidden {
  height: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 1s ease-in-out;
}
.masline {
  max-height: 2500px;
  overflow: visible;
  opacity: 1;
  transition: 1s ease-in-out;
}
.maslina-img {
  width: 100%;
}
.greenBTN {
  padding: 15px 50px;
  color: #fff;
  background: #00332F;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Roboto';
  margin: 30px auto 100px;
  display: block;
  width: 75px;
  text-align: center;
  font-size: 14px;
  line-height: 22px;
}
.menu {
  position: fixed;
  transform: translate(100vw, 0);
  right: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease-in-out;
  background: #00332F;
  flex-direction: column;
}
.menu.open {
  transform: translate(0, 0);
  transition: 0.5s ease-in-out;
  z-index: 9;
}
.goldHover {
  background: linear-gradient(to right, #fff, #fff 50%, #B08E00 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 500ms ease;
  text-decoration: none;
}
.goldHover:hover {
  background-position: 0 100%;
}
.mobile {
  display: none;
}
.grafika > div {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}
.grafika > div:first-of-type img{
  margin-left: auto;
}

.popup { 
  position: absolute;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  bottom: 150px;
  width: 150px;
  opacity: 0;
  transform: translate(0, -100px);
  transition: opacity 0.3s ease-in-out, transform 0.5s ease-in-out 0.1s;
  background: #00332F;
  padding: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 5px 15px -6px rgba(0,0,0,0.7); 
  box-shadow: 0px 5px 15px -6px rgba(0,0,0,0.7);

}

.grafika > div:hover > .popup {
  opacity: 1;
  transform: translate(0, 0px);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out 0.25s;
}
.popup .triangle {
  position: absolute;
  width: 0; 
  height: 0; 
  bottom: -20px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  
  border-top: 20px solid #00332F;
}
.menu-right {
  align-items: center;
  display: flex;
  width: 120px;
  transition: 0.3s ease-in-out;
}
.lang {
  margin-right: 30px;
  display: flex;
}
.lang a {
  font-family: "PT Serif";
  font-size: 18px;
  text-decoration: none;
  color: #000;
  opacity: 0.5;
  display: flex;
  align-items: center;
  transition: 0.3s ease-in-out;
}
.lang a img {
  height: 12px;
}
.lang a.active {
  opacity: 1;
}
.lang a:hover {
  opacity: 1;
  transition: 0.3s ease-in-out;
}
.lang a:first-of-type::after {
  content: "|";
  margin-left: 5px;
  margin-right: 5px;
  margin-top: -3px;
}
@media only screen and (max-width: 700px) {
  header {
    margin: 0;
    height: 420px;
    align-items: flex-start;
    transition: 0.5s ease-in-out;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
  }
  header:not(.sticky) + .bg {
    margin-top: 420px;
    transition: 0.5s ease-in-out;
  }
  header.sticky + .bg {
    margin-top: 80px;
    transition: 0.5s ease-in-out;
  }
  .sticky {
    height: 80px;
    transition: 0.5s ease-in-out;

    -webkit-box-shadow: 0px 5px 15px -6px rgba(0,0,0,0.7); 
    box-shadow: 0px 5px 15px -6px rgba(0,0,0,0.7);
  }
  .sticky .mobile, .open .mobile {
    opacity: 0;
    visibility: hidden;
    transition: 0s;
  }
  .sticky .logo-center, .open .logo-center {
    height: 30px;
    top: 30px;
    left: 30px;
    width: 27px;
    transition: 0.5s ease-in-out;
  }
  .sticky .logo-center img:not(.mobile),   .open .logo-center img:not(.mobile) {
    height: 30px;
  }
  .sticky .logo-text {
    opacity: 1;
    width: 122.5px;
    height: 20px;
    margin-left: 50px;
    display: block;
    transition: 0.5s ease-in-out 0.1s;
  }
  .sticky .logo-text img {
    height: 20px;
  }
  .menuCont {
    margin:30px;
    height: 30px;
  }
  .logo-text {
    overflow: hidden;
    width: 0;
    transition: 0.5s ease-in-out;
  }
  header:not(.sticky) .menu-right {
    width: 100%;
  }
  .menu-right {
    display: flex;
    align-items: center;
    margin-left: auto;
    justify-content: space-between;
  }
  .logo-center {
    height: 330px;
    width: 202px;
    top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }
  .logo-center img:not(.mobile) {
    height: 230px;
    top: 0;
  }
  .logo-center img.mobile {
    width: 110px;
    z-index: -1;
  }
  .grafika {
    flex-direction: column;
    align-items: center;
  }
  .bg {
    height: 320px;
  }
  .full {
    height: 370px;
    object-fit: cover;
  }
  .maslina-img {
    width: 100%;
    height: 430px;
    object-fit: cover;
  }
  h1 {
    font-size: 28px;
    line-height: 35px;
  }
  h2 {
    letter-spacing: 5px;
    font-size: 20px;
  }
  h3 {
    font-size: 15px;
  }
  .text {
    font-size: 16px;
    line-height: 25px;
  }
  .text-small {
    font-family: "PT Serif";
    font-size: 11px;
    line-height: 20px;
  }
  .roboto-small {
    font-family: "Roboto";
    font-size: 12px;
    line-height: 20px;
  }
  .link-big {
    font-size: 35px;
    text-decoration: none;
  }
  .mobile {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s linear 0.3s, visibility 0s linear 0.3s;
  }
}


@keyframes scrollAnim {
  0% {
    transform: translate(0, 0);
  }
  70% {
    transform: translate(0, -5px);
  }
  100% {
    transform: translate(0, 0);
  }
}