.blog-content {
  display: flex;
  gap: 50px;
}
.blog-posts {
  flex: 70%;
}
.blog-post {
  display: flex;
  gap: 20px;
}
.post-image {
  flex: 30%;
}
.post-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0 20px 20px 0;
}

.post-content {
  flex: 70%;
}
.post-content h2 {
  margin: 0 0 10px;
}
.post-content h2 a {
  text-decoration: none;
  color: #171717;
}
.post-content .excerpt {
  margin: 50px 0;
  color: #666;
  font-size: 14px;
}

.category a,
a.category {
  text-decoration: none;
  color: #666;
}
a.category {
  margin-right: 10px;
}
.category:hover {
  background-color: #e9d25d;
}
.blog-sidebar {
  flex: 30%;
}
.blog-sidebar .categories h2 {
  margin-bottom: 20px;
}

.post-navigation {
  display: flex;
  gap: 30px;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
}

@media (max-width: 1200px) {
  .blog-posts,
  .single-post {
    flex: 80%;
  }
  .blog-content .single-post {
    flex: 80%;
  }
  .blog-sidebar {
    flex: 20%;
  }
}
@media (max-width: 1024px) {
  .blog-content {
    gap: 25px;
    flex-direction: column;
  }
  .post-image {
    flex: 40%;
  }
  .post-content {
    flex: 60%;
    display: flex;
    flex-direction: column;
  }
  .post-content .post-thumbnail {
    text-align: center;
  }
  .post-content .excerpt {
    margin: 10px 0 50px 0;
  }
  .blog-sidebar {
    text-align: center;
    margin-bottom: 50px;
  }
  .blog-post {
    margin-bottom: 50px;
  }
}

@media (max-width: 825px) {
  .blog-post {
    margin-bottom: 25px;
  }
}

/* get in touch */
.get-in-touch-page {
  width: 100%;
  padding: 80px 0;
}

.get-in-touch-title {
  text-align: center;
  margin-bottom: 50px;
}

.get-in-touch-title h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.get-in-touch-title .text {
  font-size: 18px;
  color: #555;
}

.get-in-touch-content {
  display: flex;
  justify-content: space-around;
  gap: 40px;
}

.get-in-touch-content .left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 40%;
}

.get-in-touch-content .left .map {
  width: 600px;
  height: 400px;
}
.get-in-touch-content .left .map iframe {
  width: inherit;
  height: inherit;
}
.get-in-touch-content .right {
  flex: 60%;
}
.get-in-touch-text p {
  margin-bottom: 10px;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .get-in-touch-page {
    padding: 0;
  }

  .get-in-touch-content {
    flex-direction: column;
  }

  .get-in-touch-content .left {
    flex: 40%;
    text-align: center;
  }
  .get-in-touch-content .left .information {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .get-in-touch-content .left .map {
    width: inherit;
    text-align: center;
  }
  .get-in-touch-content .left .map iframe {
    width: -webkit-fill-available;
    height: 400px;
  }
  .get-in-touch-content .right {
    margin-bottom: 30px;
  }
}
@media (max-width: 800px) {
  .get-in-touch-content {
    flex-direction: column;
  }
  .get-in-touch-page {
    padding: 30px 0;
  }
  .page-title {
    margin-bottom: 25px;
  }
  .page-title .text {
    width: 75%;
  }
}

/*price list*/
.pricing-page {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.pricing-box {
  flex: 30%;
  min-width: 275px;
  text-align: center;
}

.pricing-box .header {
  background-color: gold;
}

.pricing-box .content p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 15px;
}
ul {
  padding-left: 1.2em;
  text-align: left;
}

@media (max-width: 820px) {
  .pricing-page {
    gap: 5px;
    justify-content: space-between;
  }
}

/*single blog*/

.single-post {
  flex: 70%;
}

.single-post .post-content {
  display: flex;
  gap: 50px;
}

/*single services*/

.single-service-page {
  margin-bottom: 50px;
}
.single-service-page .how-it-works {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 40px;
  margin-bottom: 50px;
}

.single-service-page .how-it-works .image {
  width: 1000px;
  margin: 0 auto;
}
.single-service-page .how-it-works .image img {
  width: 100%;
}
.pricing-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-contact .text {
  flex: 1 1 300px;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
}

@media (max-width: 1060px) {
  .single-service-page .how-it-works .image {
    width: 600px;
  }
}

@media (max-width: 900px) {
  .pricing-contact {
    flex-direction: column;
    align-items: center;
  }

  .pricing-contact h2 {
    font-size: 1.5rem;
  }

  .pricing-contact .text {
    flex: unset;
  }

  .contact-form {
    margin-bottom: 30px;
  }
}

@media (max-width: 690px) {
  .single-service-page .how-it-works .image {
    width: 420px;
  }
}

/*single works*/

.project-showcase-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 50px;
  margin-bottom: 50px;
}

.project-showcase-content a {
  text-align: center;
  max-width: fit-content;
  margin: 0 auto;
}
.project-showcase-content .work-image {
  width: 75%;
  overflow: hidden;
  object-fit: cover;
  margin: 0 auto;
}

.project-showcase-content .work-image img {
  width: 100%;
  object-fit: cover;
}

.work-text ul {
  list-style: none;
}

/*what-i-do*/
.what-i-do-page {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}

.what-i-do-page .service {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
}
.what-i-do-page .service .left {
  flex: 40%;
}
.what-i-do-page .service .left img {
  width: 90%;
  border-radius: 0 20px 20px 0;
}

.what-i-do-page .service .right {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex: 60%;
}
.what-i-do-page .service .right a {
  text-decoration: none;
  color: unset;
}
.what-i-do-page .service .right h1:hover,
.what-i-do-page .service .right p:hover {
  opacity: 0.6;
}

.what-i-do-page .service .right p {
  line-height: 1.7em;
  word-spacing: 4px;
}
