body {
  background-color: #fff !important;
}

.container.main-content {
  direction: rtl;
  margin: auto;
  margin-top: 50px;
  width: 810px;
  max-width: 100%;
}
.container.main-content .row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.container.main-content .row img {
  width: 50%;
  max-width: 95%;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .container.main-content .row img {
    display: none;
  }
}

h1 {
  color: black;
  /* text-align: center; */
  font-size: 50px;
}
h1 + p {
  font-size: 18px;
  font-weight: 700;
  color: #666;
  /* margin-bottom: 50px; */
}
.big-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  padding: 20px;
  margin: auto;
  border-radius: 10px;
  border: 1px solid #2196f3;
  color: black;
  text-decoration: none;
  gap: 20px;
  max-width: 90%;
  cursor: pointer;
}
.big-button h2 {
  font-size: 30px;
}
.big-button img {
  width: 50px;
}
form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.check-container.main-content {
  /* padding: 20px; */
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  margin: auto;
  justify-content: center;
  /* width: 810px; */
}
.check-container.main-content .box {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  /* width: 850; */
  max-width: 100%;
}
@media (max-width: 767px) {
  .check-container.main-content .box {
    justify-content: center;
  }
}
.check-container.main-content .box .box-head {
  width: 80%;
  display: flex;
  gap: 15px;
  align-items: center;
}
.check-container.main-content .box img {
  width: 50px;
  /* transform: rotate(90deg); */
}
.check-container.main-content .box h3 {
  font-size: 20px;
}
/* Customize the label (the check-container.main-content) */
.check-container.main-content label {
  display: block;
  position: relative;
  margin: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  direction: rtl;
  width: 250px;
  display: flex;
  align-items: center;
  padding: 25px;
  padding-right: 50px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* Hide the browser's default checkbox */
.check-container.main-content label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  height: 25px;
  width: 25px;
  border: 2px solid #bbb;
  border-radius: 2px;
  transition: border-color 0.3s, background-color 0s;
}

.check-container.main-content label:hover {
  border-color: #555;
  transition: border-color 0.3s;
}
/* On mouse-over, add a grey background color */
.check-container.main-content label:hover input ~ .checkmark {
  border-color: #555;
}

/* When the checkbox is checked, add a blue background */
.check-container.main-content label input:checked ~ .checkmark {
  background-color: #2196f3;
  border-color: transparent;
}
.check-container.main-content label:has(input:checked) {
  border-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.check-container.main-content label input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.check-container.main-content label .checkmark:after {
  left: 6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ############################################################ */
/* ############################################################ */
/* Contact Us Style  */
/* ############################################################ */
/* ############################################################ */

.info-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 600px;
  margin: auto;
  max-width: 95%;
  /* padding-top: 50px; */
}
.info-form h2 {
  width: 100%;
  margin-right: 20px;
  font-size: 30px;
}
.info-form p {
  width: 100%;
  margin-right: 20px;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #666;
}
.info-form label {
  width: 100%;
  display: flex;
  position: relative;
  margin: 10px 0;
}
@media (min-width: 768px) {
  .info-form label.half {
    width: 49%;
  }
}
.info-form textarea,
.info-form input {
  font-family: "Almarai", sans-serif;
  line-height: 1.6;
}

.info-form textarea {
  height: 220px;
  resize: none;
}
.info-form i {
  position: absolute;
  right: 15px;
  top: 17px;
  font-size: 20px;
}

.info-form textarea,
.info-form input {
  color: black;
  background-color: #fff;
  width: 100%;
  margin: 0;
  border-radius: 30px 30px 30px 0;
  padding: 15px;
  padding-right: 45px;
  border: none;
  outline: none;
  box-shadow: 0 0 5px #888;
  transition: border-color 0.3s;
  font-size: 16px;
  font-weight: bold;
}
.info-form textarea:focus,
.info-form textarea:hover,
.info-form input:focus,
.info-form input:hover {
  box-shadow: 0 0 5px #2196f3;
}
.info-form i,
.info-form textarea::placeholder,
.info-form input::placeholder {
  color: #888;
}

.submit {
  display: block;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  margin: 10px auto;
  border: none;
  background-color: #2b4d8d;
  color: white;
  margin-bottom: 50px;
}

.errors {
  margin: auto;
  width: 100%;
}
.errors ul {
  padding: 10px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 10%);
  border: 2px solid red;
}
.errors li {
  list-style: disc inside;
  text-align: center;
  font-size: 18px;
}
.errors li::marker {
  content: "X  - ";
  color: red;
}
.errors p {
  font-size: 20px;
  background-color: darkgreen;
  color: white;
  padding: 5px;
  width: 300px;
  margin: auto;
  border-radius: 15px;
  max-width: 100%;
}
