:root {
  --green: #1F2E24;
  --white: #ffffff;
  --gold: #9E8A67;
}

@font-face {
  font-family: "BickhamScriptOne";
  src: url("../fonts/BickhamScriptOne.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "BickhamScriptOne";
  src: url("../fonts/BickhamScriptOne-Bold.otf");
  font-weight: 700;
}

@font-face {
  font-family: "PoiretOne";
  src: url("../fonts/PoiretOne-Regular.ttf");
  font-weight: 400;
}

body {
  font-family: "PoiretOne";
  background: var(--green);
  color: var(--gold);
  font-size: 22px;
  line-height: 40px;
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  margin: 0;
}

.mobile-switcher {
  position: absolute;
  left: 10px;
  bottom: -45px;
  color: var(--white);
}

h2 {
  font-size: 25px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 25px;
}

@media(max-width: 1023px) {
  h2 {
    margin-bottom: 15px;
  }
}

img {
  margin-bottom: -12px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-50 {
  margin-top: 50px;
}

@media(max-width: 1023px) {
  .mb-80,
  .mb-50 {
    margin-bottom: 0;
  }
}

.mb-50-text {
  margin-bottom: 50px;
}

.font-17 {
  font-size: 17px;
  line-height: 33px;
  margin-top: 20px;
}

@media (max-width: 1023px) {
  .font-17 {
    margin-top: 0;
  }
}

.font-12 {
  font-size: 12px;
  line-height: 33px;
}

.text-center {
  text-align: center;
}

.text-box {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (min-width: 1024px) {
  .text-box {
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (min-width: 1400px) {
  .text-box {
    padding-left: 130px;
    padding-right: 130px;
  }
}

.content-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1023px) {
  img.content-center {
    display: none;
  }
}

header {
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--green);
  z-index: 5;
  transition: .5s;
}

@media (min-width: 1024px) {
  header.scroll {
    padding: 0;
  }
}

.header__mobile {
  display: none;
}

@media (max-width: 1023px) {
  .header__mobile {
    display: block;
  }

  .header__desktop {
    display: none;
  }
}

.header__mobile nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: var(--green);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.header__mobile > ul,
.header__mobile nav ul.header__mobile-title {
  margin: 0;
}

.header__mobile.active .header__mobile-title {
  padding: 10px;
}

.header__mobile.active nav {
  opacity: 1;
  visibility: visible;
}

.header__mobile nav ul.header__mobile-menu {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  height: calc(100vh - 100px);
}

.header__mobile nav ul.header__mobile-menu li {
  padding: 20px 0;
}

.header__mobile nav ul li a {
  font-size: 37px;
}

header ul {
  list-style: none;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  width: 100%;
  padding: 0 10px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  header ul {
    padding: 0 110px;
  }
}

@media (min-width: 1400px) {
  header ul {
    padding: 0 140px;
  }
}

header ul li a {
  color: var(--gold);
  text-decoration: none;
  font-size: 22px;
  text-transform: uppercase;
}

main {
  margin-top: 60px;
}

@media (min-width: 1024px) {
  main {
    margin-top: 104px;
  }
}

.links {
  line-height: 33px;
}

#o-nas {
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  #o-nas img {
    transform: scale(1.2);
  }
}

#o-nas .text-box {
  padding-right: 10px;
}

@media (min-width: 1024px) {
  #o-nas .text-box {
    padding-right: 150px;
  }
}

@media (min-width: 1400px) {
  #o-nas .text-box {
    padding-right: 190px;
  }
}

.map {
  height: 440px;
}

@media (max-width: 1023px) {
  .map {
    height: 300px;
  }
}

.mobile-img {
  display: none;
}

@media (max-width: 1023px) {
  .mobile-img {
    display: block;
  }

  .desktop-img {
    display: none;
  }
}

@media (max-width: 1023px) {
  .hide-md {
    display: none;
  }
}

@media (min-width: 1024px) {
  .hide-lg {
    display: none;
  }
}

footer {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  padding: 20px 10px;
}

footer img {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  footer {
    font-size: 22px;
    padding: 10px 110px 30px;
    margin-top: 40px;
  }

  footer img {
    margin-bottom: -12px;
  }
}

@media (min-width: 1400px) {
  footer {
    padding: 10px 140px 30px;
  }
}
