@import url("https://fonts.googleapis.com/css2?family=Yellowtail&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alata&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  color: #000;
  background-color: #fff0f0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  padding-top: 100px;
  overflow-x: hidden;
  font-family: "Alata", sans-serif;
}

.logo {
  max-width: 300px;
}

.logo-scroll {
  max-width: 300px;
  display: none;
}

.navbar {
  padding: 1rem 1.5rem;
  transition: background-color 200ms linear;
}

.navbar-nav {
  font-weight: 600;
}

.navbar-light .navbar-nav .nav-link {
  color: #000;
  letter-spacing: 1px;
}
.navbar-light .navbar-nav .active > .nav-link {
  color: #f44647;
}

.darkHeader.navbar {
  background-color: #f44647;
}
.darkHeader.navbar-light .navbar-nav .nav-link {
  color: #333333;
}
.darkHeader.navbar-light .navbar-nav .active > .nav-link {
  color: white;
}
.darkHeader .logo {
  display: none;
}
.darkHeader .logo-scroll {
  display: block;
}

section {
  width: 100%;
  padding: 160px 0;
}

p {
  line-height: 30px;
}

.btn {
  overflow: hidden;
  display: inline-block;
  text-align: center;
  margin: 40px auto;
  width: 100%;
  border: solid 3px;
  padding: 20px 50px;
  transition: all 1s ease;
  border-radius: 0;
}
.btn:hover {
  border-color: transparent;
  text-decoration: none;
}

.btn-more {
  border-color: #f44647;
  color: #f44647;
}
.btn-more:hover {
  background-color: #f44647;
  color: white;
}

.btn-send {
  border-color: #000;
  color: #000;
}
.btn-send:hover {
  background-color: #000;
  color: white;
}

.link-text {
  color: white;
  text-decoration: underline;
}
.link-text:hover {
  color: #000;
}

.intro {
  padding: 60px 0;
  height: 100vh;
}
.intro .home-section {
  position: relative;
}
.intro .home-section h1 {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 15%;
  font-size: 140px;
  line-height: 140px;
  letter-spacing: 4px;
  text-align: left;
  font-weight: 700;
  color: #f44647;
  font-family: "Alata", sans-serif;
  text-transform: uppercase;
}
.intro .home-section h1 span {
  display: block;
  margin: 15px 0 0 15px;
  color: #0c7dce;
  font-size: 40px;
  line-height: 40px;
}
.intro .home-section img {
  width: 600px;
}

.scroll-to {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 15px;
  font-size: 45px;
  color: #f44647;
}
.scroll-to:hover {
  color: #000;
}
.scroll-to i {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.title-section {
  font-size: 26px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 5px;
  margin-bottom: 50px;
}

.widget {
  background-color: #f44647;
  color: white;
  padding: 50px;
  margin-bottom: 30px;
}
.widget p {
  font-size: 25px;
  line-height: 45px;
  font-weight: 400;
}
.widget .author {
  font-weight: 200;
  font-style: italic;
}

.art .widget {
  padding: 50px 50px 20px;
}
.art .widget p {
  font-weight: 600;
}

.singnature {
  color: #f44647;
  font-size: 32px;
  margin-top: 30px;
  font-family: "Yellowtail", cursive;
}

/*.portfolio img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.portfolio img:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}*/

.form-control {
  background-color: transparent;
  border-radius: 0;
  border: none;
  border-bottom: solid 2px #000;
}
.form-control::placeholder {
  color: #000;
}

.footer {
  background-color: #f44647;
}
.footer .social {
  list-style: none;
  padding-left: 0;
}
.footer .social li {
  display: inline-block;
  margin: 30px 10px 0px;
}
.footer .social li a {
  color: white;
}
.footer .social li a:hover {
  color: #000;
}
.footer p {
  color: white;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .navbar-light .navbar-nav .nav-link {
    font-size: 14px;
  }
}
@media (max-width: 1366px) {
  .intro {
    padding: 15px 0;
  }
  .intro .home-section img {
    width: 500px;
  }
  .intro .home-section h1 {
    font-size: 100px;
    line-height: 100px;
  }
}
@media (max-width: 768px) {
  .intro {
    padding: 20px 0;
  }
  .intro .home-section h1 {
    font-size: 50px;
    line-height: 45px;
    text-align: center;
    bottom: 0;
  }
  .intro .home-section h1 span {
    font-size: 20px;
    line-height: 25px;
  }

  .art .widget {
    padding: 30px 30px 20px;
  }
  .art .widget p {
    font-size: 20px;
    line-height: 35px;
  }

  .portfolio img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
  }

  .logo, .logo-scroll {
    max-width: 200px;
  }

  .logo-footer {
    max-width: 100px;
  }

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

/*# sourceMappingURL=app.css.map */
