* {
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: dancingScript;
  src: url(assets/fonts/DancingScript.ttf);
}
@font-face {
  font-family: roboto;
  src: url(assets/fonts/RobotoSlab.ttf);
}
body {
  font-family: roboto;
  background-image: url(assets/images/body-wallpaper.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  overflow-x: hidden;
}
.title_container {
  padding: 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title {
  font-family: dancingScript;
  font-size: 54px;
  font-weight: bold;
}
.title_img {
  width: 180px;
  height: auto;
}
.intro {
  position: relative;
  height: 350px;
  width: 100%;
  background: transparent url(assets/images/intro.webp) no-repeat center;
  background-size: cover;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.intro::before {
  position: absolute;
  content: "";
  background-color: rgba(43, 43, 43, 0.8);
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.intro_content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
}
.container {
  width: 100%;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 1200px;
  margin: 0 auto;
}
.card_item {
  width: 300px;
  margin: 24px;
  background-color: #f7f7f7;
  border-radius: 5px;
  border: 1px solid #201b3261;
  box-shadow: 1px 1px 2px 2px #eee;
}
.card_image_wrapper {
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
}
.card_image {
  width: 268px;
  height: 208px;
}
.card_details {
  padding: 0 16px 16px;
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card_details__flexSize {
  flex: 3;
  font-size: 16px;
}
.card_button {
  font-family: roboto;
  flex: 1;
  background-color: #201b32;
  color: #fff;
  padding: 6px 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.card_button:hover {
  background-color: #fb4734;
}
.dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffffc4;
  z-index: 10;
}
.dialog_image {
  max-width: 400px;
  max-height: 95%;
}
.image_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.dialog_close_icon {
  position: absolute;
  top: 24px;
  right: 36px;
  cursor: pointer;
}
.footer {
  position: relative;
  width: 100%;
  height: 320px;
  background: transparent url("/assets/images/testimonial-bg.webp") no-repeat
    center;
  background-size: contain;
}
.footer::before {
  position: absolute;
  content: "";
  background-color: rgba(32, 27, 50, 0.9);
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer_container {
  display: flex;
  justify-content: space-between;
  padding: 36px 72px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.footer_title {
  color: #fff;
  margin-bottom: 16px;
}
.working_days {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 14px;
  margin-bottom: 8px;
  width: 180px;
}
.footer_info {
  color: #fff;
  font-size: 14px;
  margin-bottom: 8px;
  width: 180px;
}
.modal_open {
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .container {
    width: 900px;
  }
}
@media screen and (max-width: 900px) {
  .container {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  .title {
    font-size: 36px;
  }
  .title_img {
    width: 100px;
    height: auto;
  }
  .dialog_close_icon {
    top: 12px;
    right: 12px;
    width: 18px;
    height: 18px;
  }
  .footer_container {
    flex-direction: column;
    align-items: center;
    padding: 16px 0 0;
  }
  .address {
    margin-top: 24px;
  }
  .intro_content {
    font-size: 18px;
  }
  .footer {
    height: 440px;
  }
}
