html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-Regular.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: Montserrat, Arial, Helvetica, sans-serif;
}
a {
  text-decoration: none;
}
.contained {
  margin: 0 auto;
}

header{
  position: sticky;
  top: 0;
  background-color: #ffffffee;
  padding: 20px;
  z-index: 999;
}

#top {
  height: 100px;
  width: full;
}

#jnnDesignLogo {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#menu{
  display: flex;
  gap: 50px;
  justify-content: center;
  margin-top: 20px;
}

#menu a{
  color: #666666;
}
#menu a:hover{
  color: #edb7be;
}
#menu .focus{
  color: #edb7be;
}

#changing-text {
  display: inline-block;
  transition: opacity 0.5s ease;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}
#banner .banner-text {
  flex: 1;
}

#banner .banner-text h1 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-style: bolder;
  text-transform: uppercase;
  color: #d0929a;
}
#banner .banner-text p {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #666666;
}

#banner .cta {
  font-weight: bold;
  font-style: bold;
  padding: 10px 20px;
  background-color: none;
  border: 2px solid #d0929a;
  transition: 0.5s;
}
#banner .cta:hover {
  background-color: #d0929a;
  cursor: pointer;
  color: #ffffff;
}
#banner a {
  color: #d0929a;
}
#banner a:hover {
  color: #ffffff;
}

#banner {
  align-items: center;
  justify-content: space-between;
}
#banner .banner-image {
  position: relative;
  justify-content: center;
  align-items: center;
}
#banner .float {
  position: absolute;
  animation: floatAnimationBanner 3s ease-in-out infinite;
}

#banner .element1 {
  animation-delay: 0.3s;
}

#banner .element2 {
  animation-delay: 0.6s;
}

#banner .element3 {
  animation-delay: 0.9s;
}

@keyframes floatAnimationBanner {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

#strip {
  background: linear-gradient(270deg, #edb7be, #d0929a);
  background-size: 200% 200%;
  animation: fluidBackgroundTimeline 4s ease infinite;
  align-content: center;
}
#strip p {
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  font-style: bold;
}
#gallery {
  justify-content: space-between;
  align-content: center;
  padding: 20px 0;
}
#services {
  background-image: url("img/jnn_bgPink.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10px;
  color: #ffffff;
  margin: 0 auto;
}
#services p {
  transition: 0.5s;
}
#services p:hover {
  transform: scale(1.05);
}
h2 {
  font-size: 2.5em;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-style: bolder;
  text-align: center;
  text-transform: uppercase;
}
h3 {
  font-size: 2.5em;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-style: bolder;
  text-align: center;
  text-transform: uppercase;
  margin: 15px;
  color: #D0929A;
}
#servicesCont {
  justify-content: space-between;
  align-content: center;
  margin: 0 auto;
}

#contact {
  background-color: #a6a6a6;
  background-image: url("img/jnn_bgGray.png");
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 20px;
  align-content: center;
  text-align: center;
}
#contact .contactButton {
  font-size: 1.5em;
  font-weight: bold;
  font-style: bold;
  padding: 10px 20px;
  background-color: none;
  border: 2px solid #ffffff;
  display: inline-block;
  transition: 0.5s;
  margin-bottom: 30px;
  animation: shadowContactBt 5s infinite ease-in-out;
}
@keyframes shadowContactBt {
  90% {
    box-shadow: 5px 5px 2px #555555;
  }
}
#contact .contactButton:hover {
  background-color: #ffffff;
  cursor: pointer;
  color: #666666;
}
#contact a {
  color: #ffffff;
}
#contact a:hover {
  color: #666666;
}
#contact .contactTxt{
  gap: 20px;
  justify-content: center;
  margin-top: -20px;
}

#footer {
  align-content: center;
  text-align: center;
  padding: 10px 50px 10px 50px;
  font-size: 1.3em;
  color: #666666;
}
#footer a {
  color: #d0929a;
}
#footer small {
  color: #999999;
  font-size: 0.7em;
}
.st0 {
  fill: #d0929a;
}
.st1 {
  fill: #666666;
}

#timeline {
  padding: 25px 0;
}

#timeline a{
  color: #d0929a;
}

#timeline .container {
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
}

#timeline .icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}

#timeline .icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(270deg, #d0929a, #edb7be);
  background-size: 200% 200%;
  animation: fluidBackgroundTimeline 4s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s;
}

#timeline .icon:hover {
  transform: scale(1.1);
}

#timeline .text {
  text-align: center;
  margin-top: 10px;
  color: #666666;
}

#timeline p {
  color: #666666;
}

#timeline h1{
  font-size: 2.5em;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-style: bolder;
  text-align: center;
  text-transform: uppercase;
  margin: 15px;
  color: #D0929A;
}

#timeline h3{
  line-height: 1.5em;
}

#timeline hr{
  width: 200px;
  margin-top: 30px;
}

#timeline h4{
  font-size: 1.5em;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-style: bolder;
  text-align: center;
  margin: 15px;
  color: #D0929A;
}

#timeline ul{
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #666666;
  margin: 0;
  padding: 0;
  line-height: 1.8em;
}

#timeline strong {
  color: #D0929A;
  text-transform: uppercase;
}

#timeline li::marker {
  color: #D0929A;
}

.noto-color-emoji-regular {
  font-family: "Noto Color Emoji", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-right: 5px;
}

#aboutFounder {
  align-items: top;
  justify-content: space-between;
}


#aboutFounder p{
  margin-top: 0;
  padding-top: 0;
}


/* Extra small devices (phones, 770px and down) */
@media only screen and (max-width: 770px) {
  .contained {
    width: 90%;
  }
  #banner .banner-text h1 {
    font-size: 2em;
    text-align: center;
  }
  #banner .banner-text p {
    font-size: 1.1em;
    text-align: center;
  }
  #banner .cta {
    font-size: 1.1em;
    text-align: center;
  }
  #banner {
    display: block;
  }
  #banner .banner-image {
    display: block;
  }
  #banner .box-image {
    width: 100%;
  }
  #banner .float {
    width: 75%;
  }
  #banner .element1 {
    top: 15%;
    left: 10%;
  }
  #banner .element2 {
    top: 15%;
    left: 10%;
  }
  #banner .element3 {
    top: 18%;
    left: 15%;
  }
  #strip {
    display: block;
    justify-content: space-between;
  }
  #strip div {
    margin: 0 60px;
  }
  #strip p {
    font-size: 1.2em;
    padding: 5px;
  }
  #gallery {
    display: block;
    margin: 0 auto;
    padding: 20px 0;
  }
  #gallery img {
    width: 100%;
    margin: 0 auto;
  }
  #gallery .margin{
    margin: 0 auto;
  }
  #gallery div {
    width: 70%;
    margin: 0 auto;
  }
  #services {
    background-position: right;
  }
  h2 {
    margin: 15px;
  }
  #servicesCont {
    display: block;
    width: 90%;
    padding-bottom: 5px;
  }
  #contact {
    background-position: right;
  }
  #timeline .text {
    padding-bottom: 20px;
  }
  #aboutFounder {
    display: block;
  }
  #aboutFounder img{
    padding: 30px;
    width: 80%;
    margin-right: 20px;
  }
  #aboutFounder .margin {
    margin-right: 0 auto;
  }
  #timeline .container {
    display: block;
  }
  #contact .contactTxt{
    display: block;
  }
}

/* Small devices (portrait tablets and large phones, 770px and up) */
@media only screen and (min-width: 770px) {
  .contained {
    width: 80%;
  }
  #banner .banner-text {
    padding-right: 50px;
  }
  #banner .banner-text h1 {
    font-size: 2em;
    text-align: right;
  }
  #banner .banner-text p {
    font-size: 1.1em;
    text-align: right;
  }
  #banner .cta {
    font-size: 1.1em;
    display: inline-block;
    margin-bottom: 30px;
    float: right;
  }
  #banner {
    display: flex;
    padding: 40px 40px;
    border-radius: 10px;
  }
  #banner .banner-image {
    flex: 1;
    display: flex;
  }
  #banner .box-image {
    width: 300px;
  }
  #banner .float {
    width: 250px;
  }
  #banner .element1 {
    top: 30px;
    left: 10%;
  }
  #banner .element2 {
    top: 25px;
    left: 10%;
  }
  #banner .element3 {
    top: 25px;
    left: 15%;
  }
  #strip {
    display: flex;
    justify-content: space-around;
  }
  #strip div {
    margin: 0 20px;
  }
  #strip p {
    font-size: 1.2em;
    padding: 5px;
  }
  #gallery {
    display: flex;
  }
  #gallery .margin {
    margin-right: 15px;
  }
  #gallery img {
    width: 100%;
  }
  #gallery div {
    width: 100%;
  }
  #services {
    background-position: right;
  }
  h2 {
    margin: 15px;
  }
  #servicesCont {
    display: flex;
    width: 90%;
    padding-bottom: 5px;
  }
  #contact {
    background-position: right;
  }
  #timeline .text {
    padding-bottom: 20px;
  }
  #aboutFounder {
    display: flex;
  }
  #aboutFounder img{
    width: 150px;
    margin-right: 20px;
  }
  #aboutFounder .margin {
    margin-right: 0 auto;
  }
  #timeline .container {
    display: flex;
  }
  #contact .contactTxt{
    display: flex;
  }
}

/* Large devices (laptops/desktops, 1620px and up) */
@media only screen and (min-width: 1620px) {
  .contained {
    width: 70%;
  }
  #banner .banner-text {
    padding-right: 50px;
  }
  #banner .banner-text h1 {
    font-size: 2.5em;
    text-align: right;
  }
  #banner .banner-text p {
    font-size: 1.3em;
    text-align: right;
  }
  #banner .cta {
    font-size: 1.3em;
    display: inline-block;
    margin-bottom: 30px;
    float: right;
  }
  #banner {
    display: flex;
    padding: 40px 40px;
    border-radius: 10px;
  }
  #banner .banner-image {
    flex: 2;
    display: flex;
  }
  #banner .box-image {
    width: 400px;
  }
  #banner .float {
    width: 400px;
  }
  #banner .element1 {
    top: 10px;
    left: 20%;
  }
  #banner .element2 {
    top: 20px;
    left: 20%;
  }
  #banner .element3 {
    top: 30px;
    left: 25%;
  }
  #strip {
    display: flex;
    justify-content: space-between;
  }
  #strip div {
    margin: 0 60px;
  }
  #strip p {
    font-size: 1.5em;
    padding: 20px;
  }
  #gallery {
    display: flex;
  }
  #gallery .margin {
    margin-right: 15px;
  }
  #gallery img {
    width: 100%;
  }
  #gallery div {
    width: 25%;
  }
  #services {
    background-position: center;
  }
  #servicesCont {
    display: flex;
    width: 70%;
    padding-bottom: 30px;
  }
  #contact {
    background-position: center;
  }
  #aboutFounder {
    display: flex;
  }
  #aboutFounder .margin {
    margin-right: 20px;
  }
  #timeline .container {
    display: flex;
  }
  #contact .contactTxt{
    display: flex;
  }
}