* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  /* overflow-x: hidden; */
}

/* header */

header {
  display: flex;
  width: 90%;
  /* background-color: lightblue; */
  justify-content: space-around;
  align-items: center;
  margin: auto;
  height: 10vh;
}

.logo,
nav ul,
.dress {
  display: flex;
}

.logo {
  flex: 1;
  font-family: "Lobster", cursive;
  font-size: 25px;
  background: linear-gradient(to right, #dd8a8a, #b86767);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav {
  flex: 2;
}

.dress {
  flex: 1;
  justify-content: flex-end;
}

header nav ul {
  justify-content: space-around;
  list-style: none;
}

header nav ul a {
  text-decoration: none;
  color: rgb(88, 88, 88);
}

header nav ul a:hover {
  text-decoration: none;
  color: rgb(51, 51, 51);
}

/* header end */

/* main */
.thumbnail {
  width: 90%;
  margin: auto;
  min-height: 80vh;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.intro {
  flex: 1;
}

.text span {
  font-size: 64px;
  background: linear-gradient(to right, #dd8a8a, #b86767);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text p {
  margin-top: 20px;
  font-size: 27px;
}

.intro button {
  border: none;
  background-color: #eb7c7c;
  color: white;
  padding: 15px;
  margin-top: 48px;
  font-size: 20px;
}

.image {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* main end */

/* services */
.services {
  width: 90%;
  margin: auto;
  /* background-color: turquoise; */
  margin-bottom: 30px;
}

.title {
  font-size: 30px;
  color: #dd8a8a;
  display: flex;
  justify-content: center;
}

.service {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.service1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 45vh;
  /* background-color: yellowgreen; */
}
.service2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 45vh;
  /* background-color: blueviolet; */
}
/* .service1 p {
  margin: 0 50px;
}
.service2 p {
  margin: 0 50px;
} */

.service1 img {
  width: 60%;
  margin: 10px;
  border: 3px solid #dd8a8a;
}
.service2 img {
  width: 60%;
  margin: 10px;
  border: 3px solid #dd8a8a;
}
/* services end */

/* product */
.product {
  width: 90%;
  margin: auto;
  margin-bottom: 30px;
  /* background-color: blueviolet; */
}

.product-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 15px;
  min-height: 30vh;
}

.product-list img {
  width: 30%;
}
/* product end */

/* map */
.map {
  width: 90%;
  margin: auto;
  /* background-color: blueviolet; */
}
.map-content {
  display: flex;
  min-height: 50vh;
  /* background-color: cadetblue; */
  align-items: center;
  justify-content: space-evenly;
}

.img {
  display: flex;
  justify-content: center;
  /* background-color: chartreuse; */
  flex: 1;
}

iframe {
  width: 70%;
  height: 400px;
}

.iframe {
  display: flex;
  justify-content: center;
  /* background-color: cornflowerblue; */
  flex: 1;
}
/* map end */

/* Responsive */

/* Tablet */
@media screen and (max-width: 768px) {
  /* .thumbnail {
    flex-direction: column;
  } */

  .text span {
    font-size: 40px;
  }
  .text p {
    font-size: 20px;
  }
  .intro button {
    padding: 10px;
    margin-top: 30px;
    font-size: 16px;
  }
  .service {
    flex-direction: column;
  }
  .image img {
    width: 100%;
  }
  .map-content {
    flex-direction: column;
  }
  .iframe {
    width: 100%;
  }
}

/* Mobile */
@media screen and (max-width: 576px) {
  .product-list {
    /* background-color: aqua; */
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    min-height: 105vh;
  }
  .product-list img {
    width: 70%;
  }
}
