@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300&display=swap');

.logo {
  width: 180px;
  height: auto;
}

section {
  margin-top: 200px;
  margin-bottom: 90px;
}

.hamburger-bar {
  background-color: #fff;
  width: 30px;
  height: 3px;
}

.navbar {
    background-color: #81694b;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler .hamburger-bar:nth-of-type(2) {
  top: 6px;
}

.navbar-toggler .hamburger-bar:nth-of-type(3) {
  top: 12px;
}

.navbar-toggler .hamburger-bar {
  position: relative;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.navbar-toggler.active .hamburger-bar:nth-of-type(1) {
  top: 2.8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #fff;
}

.navbar-toggler.active .hamburger-bar:nth-of-type(2) {
  background-color: transparent;
}

.navbar-toggler.active .hamburger-bar:nth-of-type(3) {
  top: -2.8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #fff;
}

.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(10,141,214,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
  font-size: 28px;
}

.navbar-toggler {
  border-color: none !important;
}

.scrolled-down {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.scrolled-up {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hero-link-icon {
  position: absolute;
}

.header-texts {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 20px;
}

.nav-item {
  padding: 0 30px 0 30px;
}

.nav-item a {
  color: #fff !important;
  margin-top: 25px;
}

.nav-item:last-child {
  margin-bottom: 25px;
}

.main-texts {
  color: #bfb382;
  font-family: "Playfair Display", serif;
}

.secondary-texts {
  color: #3C1518;
  font-family: "Playfair Display", serif;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

body a {
  color: #113e4e;
  font-weight: 500;
  text-decoration: none;
}

body a:hover {
  color: #3C1518;
}

li::marker {
  color: #113e4e;
}

footer {
  background-color: #81694b;
  color: #fff;
  padding: 40px 0 40px 0;
  font-family: "Playfair Display", serif;
  font-weight: 800;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer i {
  font-size: 35px;
}

footer i:hover {
  color: #3C1518;
}