@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  text-decoration: none;
  font-family: 'Josefin Sans', sans-serif;
}

h1.title {
  margin-bottom: 20px;
  color: #261A17;
  font-family: 'Press Start 2P', cursive;
  text-transform: uppercase;
  font-size: 38px;
  word-spacing: 25px;
  letter-spacing: 5px;
}

h1.blogpost {
  margin-bottom: 20px;
  color: #261A17;
  font-family: 'Press Start 2P', cursive;
  font-size: 20px;
  text-align: center;
}

h1.blogpost:hover {
  color: #25D997;
}

h2 {
  font-family: 'Press Start 2P', cursive;
  font-size: 13px;
  color: #000;
  padding: 2% 6%;
}
p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 20px;
  color: #a9a9a9;
}

.btn a {
  width: 180px;
  height: 35px;
  line-height: 35px;
  border: 2px solid #80F2DD;
  color: #80F2DD;
  display: block;
  margin: 25px auto 0;
  text-align: center;
}

.main_container {
  position: relative;
}

/* Navigation Bar */
.navbar {
  width: 100%;
  height: 65px;
  position: absolute;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.logo a {
  font-family: 'Press Start 2P', cursive;
  font-size: 42px;
  color: #FFF;
}

.navbar_items ul {
  display: flex;
}

.navbar_items ul li {
  margin: 0 10px;
}

.navbar_items ul li a {
  text-transform: uppercase;
  font-family: 'Press Start 2P', cursive;
  color: #F2E8C9;
}

.navbar_items ul li a:hover {
  color: #25D997;
}

/* banner_image */
.banner_image {
  background: url('../images/nyc.jpg') no-repeat top center;
  background-size: cover;
  width: 100%;
  height: 777px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner_content {
  text-align: center;
  color: #fff;
}

.banner_content h1 {
  text-transform: uppercase;
  line-height: 38px;
  margin-bottom: 15px;
  background-color: #0D0D0D;
}

.banner_content h1 span {
  color: #fb2274;
}

/* About */
.about,
.services,
.contactus,
.portfolio {
  text-align: center;
  padding: 4% 12%;
}

.blogpostA {
  background: #f5f5f5;
  padding: 1% 4%;
  text-align: left;
}

.blogpostB {
  background: #fff;
  padding: 1% 4%;
  text-align: left;
}

/* Services */
.services {
  background: #f5f5f5;
}

.hidden {
  display: none;
}

.diff_services {
  gin-top: 35px;
  display: flex;
  justify-content: space-between;
}

.diff_services a {
  font-family: 'Press Start 2P', cursive;
  font-size: 10px;
  color: #594022;
}

.diff_services a:hover {
  color: #25D997;
}

.diff_services .diff_services_item {
  width: 30%;
}

.diff_services .diff_services_item img {
  width: 100%;
  margin-bottom: 25px;
}

.diff_services .diff_services_item h3 {
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
  color: #D9A84E;
  margin-bottom: 15px;
}

/* Contact us */
.form_wrapper .form_input {
  margin-bottom: 15px;
}

.form_wrapper .form_input input[type="text"] {
  width: 250px;
  padding: 12px 20px;
  border: 1px solid #ccc;
}

.form_wrapper .form_input textarea {
  width: 250px;
  padding: 12px 20px;
  height: 80px;
  resize: none;
  border: 1px solid #ccc;
}

.contactus a {
  font-family: 'Press Start 2P', cursive;
  color: #594022;
}

.contactus a:hover {
  color: #25D997;
}

/* our portfolio */
.portfolio {
  background: #f5f5f5;
}

.portfolio_wrapper {
  display: flex;
  flex-direction: column;
}

.portfolio_wrapper .portfolio-set {
  display: flex;
  justify-content: space-between;
}

.portfolio_wrapper .portfolio-set-set-1.portfolio-set {
  margin-bottom: 0px;
}

.portfolio_wrapper .portfolio-image {
  width: 34%;
  height: auto;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.portfolio_wrapper .portfolio-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.portfolio_wrapper .portfolio-image:hover img {
  transform: scale(1.1);
}

/* footer */
.footer {
  width: 100%;
  text-align: center;
  background: #444444;
  padding: 20px 0;
}

.footer a {
  color: #fff;
}

@media (max-width: 720px) {
  .navbar {
    height: auto;
    flex-direction: column;
  }

  .logo {
    margin-bottom: 25px;
  }

  .navbar_items ul {
    flex-direction: column;
    text-align: center;
  }

  .navbar_items ul li {
    margin-bottom: 5px;
  }

  .banner_content {
    margin-top: 35px;
  }
}

/* arrow */
.arrow {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  background: #fb2274;
  border-radius: 50%;
  display: none;
}

.arrow img {
  width: 20px;
  height: 20px;
  z-index: 1;
}
