@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Odibee+Sans&display=swap");

:root {
  --darkblue: #073c54;
  --pink: #e62c50;
  --lightpink: #ded7d7;
}


* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}

html, body {
  background: var(--lightpink);
  
}

.body-wrapper {
  padding: 14px;
}

.nora-logo {
  width: 50px;
}

.hero-wrapper .hero-text .anim-layer, .hero-wrapper .hero-text .bottom-layer {
  max-height: 100vh;
  max-width: 800px;
  width: 90%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  padding: 2rem 0;
}

.hero-wrapper .menu {
  background: var(--darkblue);
  opacity: 0.9;
  position: fixed;
  right: -400px;
  width: 90%;
  max-width: 400px;
  height: 100vh;
  z-index: 99;
  top: 0;
}

.hero-wrapper .menu .menu-list {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  margin-left: 50px;
}

.hero-wrapper .menu .menu-list .menu-item {
  text-decoration: none;
  display: block;
  color: var(--pink);
  margin: 20px 0;
  font-size: 4rem;
  font-family: 'Odibee Sans', cursive;
  -webkit-transition: .2s ease;
  transition: .2s ease;
}

.hero-wrapper .menu .menu-list .menu-item:hover {
  color: var(--lightpink);
}

.hero-wrapper .hamburger {
  position: fixed;
  top: 5px;
  right: 10px;
  padding: 6px;
  cursor: pointer;
  z-index: 999;
}

.hero-wrapper .hamburger .bar {
  background-color: var(--darkblue);
  width: 26px;
  height: 3px;
  border-radius: 10px;
  margin: 5px 0;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.hero-wrapper .hamburger .bar.bar-change:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(-225deg);
          transform: translateY(8px) rotate(-225deg);
  background-color: var(--pink);
}

.hero-wrapper .hamburger .bar.bar-change:nth-child(2) {
  opacity: 0;
  background-color: var(--pink);
}

.hero-wrapper .hamburger .bar.bar-change:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(225deg);
          transform: translateY(-8px) rotate(225deg);
  background-color: var(--pink);
}

.hero-wrapper .hamburger:hover .bar {
  background-color: var(--pink);
}

.hero-wrapper .hamburger.fixed-position {
  position: fixed;
}

.about-wrapper .section-title {
  color: var(--darkblue);
  font-family: 'Odibee Sans', cursive;
  font-size: 5rem;
  line-height: 1.2;
  margin: 0 0 2rem;
}

.section-wrapper {
  max-width: 1020px;
  margin: 6rem auto;
}

.about-wrapper {
  display: flex;
  margin: 3rem auto;
  justify-content: center;
}

.about-wrapper .about-column {
  margin: 2rem;
}

.about-wrapper .about-column .about-text {
  color: #635c5c;
}

.about-wrapper .right-column {
  max-width: 400px;
  max-height: 400px;
}

.about-wrapper .about-column.right-column img {
  width: 100%;  
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  min-width: 300px;
}

@media screen and (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
  }
  .about-wrapper .about-column {
    margin: 3rem 0;
  }
}



.contact-wrapper {
    text-align: center;
  }
  
.contact-wrapper .icon {
display: inline-block;
margin: 10px 20px;
}

.contact-wrapper .icon a {
color: var(--darkblue);
font-size: 24px;
padding: 10px;
-webkit-transition: color .3s ease-out;
transition: color .3s ease-out;
}

.contact-wrapper .icon a:hover {
color: var(--pink);
}

.contact-wrapper .icon:hover {
-webkit-animation: bounce 1s ease-out;
        animation: bounce 1s ease-out;
}

@-webkit-keyframes bounce {
0%, 50%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
}
25% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
}
75% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
}
}

@keyframes bounce {
0%, 50%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
}
25% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
}
75% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
}
}

footer {
background: var(--darkblue);
text-align: center;
height: 45px;
display: flex;
justify-content: center;
align-items: center;
}

footer p {
font-size: 0.9rem;
color: #FFF;
  }