:root {
  --container-max-width: 900px;

  --brand-color-baige: 163, 133, 94;
  --brand-color-darkestred: 51, 18, 27;
  --brand-color-green-b2: 21, 49, 44;
  --brand-color-green-b1: 9, 22, 18;
  --brand-color-offwhite: 224, 225, 224;
}

* {
  direction: rtl;
  box-sizing: border-box;
  outline: none;
  font-family: 'Tajawal', sans-serif;

  -webkit-appearance:     none;
  -moz-appearance:        none;
  -ms-appearance:         none;
  -o-appearance:          none;
  appearance:             none;
}

body {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin: 0;
  background: #ffffff;

  margin-top: 70px;

  /* background: rgba(248, 248, 250, 1); */
  background: rgba(250, 248, 246, 1);
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

html, body {
  position: relative;
  height: 100%;
}

.page-sides {
  position: relative;
  display: flex;
  gap: 20px;

  align-items: flex-start;
  justify-content: flex-start;

  flex-direction: row;

  width: 100%;
}

.container {
  position: relative;
  display: flex;

  flex-direction: column;

  margin: 0 auto;

  width: 100%;
  max-width: var(--container-max-width);

  padding: 0 20px;
}

.cform {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;
}

.cform-section {
  position: relative;
  display: flex;

  flex-direction: column;

  margin: 10px 0;
  margin-top: 20px;

  width: 100%;

  padding: 0 20px;
}

.cform-section-title {
  position: relative;
  display: flex;

  flex-direction: row;

  margin: 10px 0;

  width: 100%;

  font-size: 24px;
  font-weight: 600;
}

.cform-fields {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;
}

.cform-field {
  position: relative;
  display: flex;

  flex-direction: column;

  margin: 10px 0;

  width: 100%;
}

.cform-field-title {
  position: relative;
  display: flex;

  flex-direction: row;

  margin-bottom: 2px;

  width: 100%;

  font-size: 18px;
  font-weight: 500;
}

.cform-input {
  position: relative;

  display: flex;

  flex-direction: row;

  appearance: none;
  border: 0;
  margin: 0;
  padding: 0;
  outline: 0;

  width: 100%;
  height: 45px;

  padding: 0 20px;

  font-size: 16px;

  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);

  transition: 0.3s all ease-out;
}

.cform-button {
  cursor: pointer;
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  appearance: none;
  border: 0;
  margin: 0;
  padding: 0;
  outline: 0;

  width: 100%;
  height: 45px;

  padding: 0 20px;

  font-weight: 600;
  font-size: 14px;

  border-radius: 4px;

  opacity: 0.85;
  color: white;
  background: rgba(25, 30, 40, 1);

  transition: 0.3s all ease-out;
}
.cform-button--light {
  border: 2px solid rgba(25, 30, 40, 1);
  color: rgba(25, 30, 40, 1);
  background: white;
}
.cform-button span {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}
.cform-button:hover,
.cform-button:focus {
  opacity: 1;
}
.cform-button--light:hover,
.cform-button--light:focus {
  border: 2px solid rgba(25, 30, 40, 1);
  color: white;
  background: rgba(25, 30, 40, 1);
}

.cform-input:focus,
.cform-button:focus {
  box-shadow: 0 0 0 3px rgba(25, 30, 40, 0.1);
}



.whatsappfloat {
  position: fixed;
  display: flex;
  z-index: 100;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  bottom: 40px;
  right: 40px;

	width: 60px;
	height: 60px;

	border-radius: 100px;

  font-size:30px;

  text-decoration: none;

  color: #FFF;
  background-color: #25d366;
  box-shadow: 3px 3px 12px #00000036;
}
