@import url("https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  direction: rtl;
  text-align: start;
}

/* Fonts */
@font-face {
  font-family: "Saudi-Regular";
  src: url(../fonts/Saudi-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "IBMPlexSansArabic-Regular";
  src: url(../fonts/IBMPlexSansArabic-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "IBMPlexSansArabic-Bold";
  src: url(../fonts/IBMPlexSansArabic-Bold.ttf);
  font-weight: 700;
}
@font-face {
  font-family: "Saudi-Bold";
  src: url(../fonts/Saudi-Bold.ttf);
  font-weight: 900;
}
.wall {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  position: relative;
}
.wall .watermark {
  position: absolute;
  bottom: 0;
}
.wall .watermark img {
  max-width: 100%;
}

.wall .feeling_header nav {
  padding: 1vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}
.wall .feeling_header nav a {
  text-align: center;
}
.wall .feeling_header nav a .right_logo {
  max-width: 75%;
}
@media (max-width: 767px) {
  .wall .feeling_header nav a .right_logo {
    max-width: 85%;
  }
}

.comments-wrapper {
  position: relative;
  width: 100%;
  flex: 1;
  overflow: hidden;
  margin: auto;
  padding: 1vw;
}

.comments-wrapper .comments-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20vw, 1fr));
  gap: 2vh;
  font-size: calc(1rem + 1vw);
}

@media (max-width: 1500px) {
  .comments-wrapper .comments-container {
    grid-template-columns: repeat(auto-fit, minmax(30vw, 1fr));
  }
}
@media (max-width: 991px) {
  .comments-wrapper .comments-container {
    grid-template-columns: repeat(auto-fit, minmax(45vw, 1fr));
  }
}
@media (max-width: 575px) {
  .comments-wrapper .comments-container {
    grid-template-columns: repeat(auto-fit, minmax(90vw, 1fr));
  }
}
.comments-wrapper .comment-item {
  background: #fff;
  padding: 2vh 1vw;
  border-radius: 1vw;
  text-align: center;
  box-shadow: 0 0.5vh 1vw rgba(0, 0, 0, 0.2);
}

.comments-wrapper .comment-item p {
  font-family: "IBMPlexSansArabic-Regular", sans-serif, "Noto Color Emoji", sans-serif;
}

.comments-wrapper .comment-item h4 {
  font-family: "IBMPlexSansArabic-Bold", sans-serif;
  color: #0e3339;
}

.comments-wrapper .comment-item .separator {
  width: 75%;
  height: 0.125vw;
  background-color: #ccc;
  margin: 1.25vh auto;
}

.head {
  text-align: center;
  padding: 0 1vw;
}

.head h1 {
  color: #fff;
  font-size: 2.5vw;
  font-family: "IBMPlexSansArabic-Bold", sans-serif;
}

.head img {
  max-width: 28%;
}

footer {
  background-color: #0e3339;
  height: 6vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2vw;
}

footer img {
  max-width: 35vw;
}

/*index style */
.send_msg {
  flex: 1;
  position: relative;
  z-index: 10;
}

.send_msg .container {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}

.send_msg form {
  max-width: 50vw;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding: 1vw;
  background-color: #056a40 !important;
  border-radius: 2vw;
}
@media (max-width: 767px) {
  .send_msg form {
    padding: 2vw;
  }
}

.send_msg form .form-group {
  margin-bottom: 1.5vw;
}

.send_msg form .form-group input,
.send_msg form .form-group textarea {
  width: 100%;
  border: none;
  resize: none;
  font-size: 2vw;
  color: #a18f60;
  outline: none;
}

.send_msg form .form-group input::-moz-placeholder,
.send_msg form .form-group textarea::-moz-placeholder {
  color: #b5b1a7;
  font-size: 2vw;
}

.send_msg form .form-group input::-moz-placeholder, .send_msg form .form-group textarea::-moz-placeholder {
  color: #b5b1a7;
  font-size: 2vw;
}

.send_msg form .form-group input::placeholder,
.send_msg form .form-group textarea::placeholder {
  color: #b5b1a7;
  font-size: 2vw;
}

.send_msg form .form-group textarea {
  height: 10vw;
  padding: 1.5vw;
  border-radius: 2vw;
}

.send_msg form .form-group input {
  height: 5vw;
  padding: 1vw 2vw;
  border-radius: 2vw;
}

.send_msg form .form-group button {
  cursor: pointer;
  background-color: #a79669;
  display: block;
  margin: auto;
  position: relative;
  border: none;
  padding: 0;
  box-shadow: 0 0 5px #999;
  text-align: start;
  padding-inline-end: 5vw;
  color: #ffffff;
  font-size: 2.5vw;
  text-align: end;
  width: 25vw;
  height: 5vw;
  margin-top: 4vw;
  margin-bottom: 0;
  border-radius: 1vw;
}

.send_msg form .form-group button img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.send_msg form .form-group:last-child {
  margin: 0;
}

@media (max-width: 767px) {
  .send_msg form {
    max-width: 350px;
    margin-top: 12px;
  }
  .send_msg form .form-group {
    margin-bottom: 10px;
  }
  .send_msg form .form-group textarea {
    height: 120px;
    font-size: 14px;
    border-radius: 10px;
    padding: 10px;
  }
  .send_msg form .form-group textarea::-moz-placeholder {
    font-size: 14px;
  }
  .send_msg form .form-group textarea::placeholder {
    font-size: 14px;
  }
  .send_msg form .form-group input {
    height: 35px;
    border-radius: 10px;
    padding: 10px;
    font-size: 14px;
  }
  .send_msg form .form-group input::-moz-placeholder {
    font-size: 14px;
  }
  .send_msg form .form-group input::placeholder {
    font-size: 14px;
  }
  .send_msg form .form-group button {
    font-size: 14px;
    width: 150px;
    height: 35px;
    margin-top: 24px;
    margin-bottom: 0;
    border-radius: 10px;
  }
}
@media (max-width: 425px) {
  .send_msg form {
    max-width: 90%;
  }
}
.send_msg .message_bg {
  width: 100%;
} /*# sourceMappingURL=main.css.map */