@font-face {
  font-display: block;
  font-family: "Champagne & Limousines";
  font-weight: bold;
  src: url("fonts/Champagne & Limousines Bold.ttf") format("truetype");
}

@font-face {
  font-display: block;
  font-family: "Champagne & Limousines";
  font-weight: normal;
  src: url("fonts/Champagne & Limousines.ttf") format("truetype");
}

@font-face {
  font-display: block;
  font-family: "font-icons";
  src: url("fonts/font-icons.ttf") format("truetype");
}

html {
  scroll-behavior: smooth;
}

nav {
  background-color: rgba(255, 255, 255, 1);
}

.nav-icon {
    width: 30px;
    height: 20px;
    position: relative;
    transition: .5s ease-in-out;
    cursor: pointer
}

.nav-icon,
.nav-icon span {
    transform: rotate(0deg)
}

.nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    border-radius: 3px;
    width: 100%;
    background: #263238;
    opacity: 1;
    left: 0;
    transition: .25s ease-in-out
}

.nav-icon span:first-child {
    top: 5px
}

.nav-icon span:first-child,
.nav-icon span:nth-child(2),
.nav-icon span:nth-child(3){
    transform-origin: left center;
}

.nav-icon span:nth-child(2) {
    top: 15px
}

.nav-icon span:nth-child(3) {
    top: 25px;
}

.navbar-toggler:not(.collapsed) .nav-icon span:first-child {
    transform: rotate(45deg);
    top: 5px;
    left: 4px
}

.navbar-toggler:not(.collapsed) .nav-icon span:nth-child(2) {
    width: 0;
    opacity: 0
}

.navbar-toggler:not(.collapsed) .nav-icon span:nth-child(3) {
    transform: rotate(-45deg);
    top: 26px;
    left: 4px
}

a {
  color: #FA8276;
}

.navbar-brand {
  padding: 15px 0;
}

.nav-link {
  color: #38383A;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  transition: color .5s ease-in-out;
}

.nav-link.active {
  color: #FA8276;
}

.nav-link:hover {
  color: #FFA385;
}

p {
  color: #38383A;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
}

p.large-body {
  font-size: 18px;
  font-weight: 400;
}

h1 {
  font-family: "Champagne & Limousines", sans-serif;
  font-size: 48px;
  font-weight: bold;
  line-height: 54px;
}

.intro {
  color: #FA8276;
  font-family: "Champagne & Limousines", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 28px;
}

.announcement {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: bold;
  line-height: 50px;
}

h2 {
  color: #FA8276;
  font-family: "Champagne & Limousines", sans-serif;
  font-size: 36px;
  font-weight: bold;
  line-height: 42px;
}

.hashtag {
  font-family: "Champagne & Limousines", sans-serif;
  font-size: 48px;
  font-weight: bold;
  line-height: 54px;
}

.footer {
  background-color: #80A784;
  height: 70px;
}

.footer p {
  font-family: "Champagne & Limousines", sans-serif;
  font-weight: normal;
  line-height: 18px;
}

.bg-text {
  background-color: #F9F7F4;
}

.btn-theme {
  background-color: #FA8276;
  border-color: #FA8276;
  border-radius: 2px;
  color: white;
  font-family: "Champagne & Limousines";
  font-size: 21px;
  font-weight: bold;
  line-height: 24px;
  min-width: 180px;
}

.font-icon-love,
.font-icon-coffee {
  font-family: "font-icons";
  vertical-align: text-bottom;
}

.font-icon-love::before {
  content: "\69";
}

.font-icon-coffee::before {
  content: "\62";
}

.pt-6 {
  padding-top: 86px;
}

.mt-6 {
  margin-top: 86px;
}

.left-leaf {
  bottom: -30px;
  left: 20px;
  width: 120px;
}

@media (max-width: 575px) {
  .container-fix-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .hero {
    /* nav height */
    margin-top: -80px;
  }

  .bg-md-white {
    background-color: white;
  }

  .position-md-absolute {
    position: absolute;
  }

  .mt-md-6 {
    margin-top: 86px;
  }

  nav {
    transition: background-color .5s ease-in-out;
  }

  nav.at-top {
    background-color: rgba(255, 255, 255, 0);
  }

  nav.at-top .nav-link {
    color: white;
  }

  h2 {
    font-size: 48px;
    line-height: 54px;
  }

  .border-radius-md-2 {
    border-radius: 2px;
  }

  .right-leaf {
    bottom: 0;
    right: -30px;
    width: 120px;
  }

  .img-transition-in-left,
  .img-transition-in-right {
    opacity: 0;
    transition: opacity .5s ease-in-out, transform .5s ease-in-out;
  }

  .img-transition-in-left {
    transform: translateX(-50px);
  }

  .img-transition-in-right {
    transform: translateX(50px);
  }

  .img-transition-in-left.transition,
  .img-transition-in-right.transition {
    transform: none;
    opacity: 1;
  }
}

@media (min-width: 992px) {
  .hero + div {
    margin-top: max(-10vh, -80px);
  }

  .left-leaf {
    bottom: -44px;
    left: -218px;
    width: 320px;
  }

  .right-leaf {
    bottom: 140px;
    right: -110px;
    width: 240px;
  }
}

@media (min-width: 1200px) {
  .left-leaf {
    bottom: -150px;
    left: -260px;
    width: 380px;
  }
}

@media (min-width: 1368px) {
  .left-leaf {
    bottom: -250px;
    left: -330px;
    width: 480px;
  }

  .right-leaf {
    bottom: 115px;
    right: -110px;
    width: 240px;
  }
}
