@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&display=swap");
* {
  font-family: "Assistant", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

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

body {
  direction: rtl;
}

.bold {
  font-weight: 700;
}

.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 10px;
}
nav ul {
  list-style: none;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
}

.form input, .form textarea {
  margin-bottom: 10px;
  padding: 5px 10px;
  font-size: 24px;
  box-sizing: border-box;
}
.form input[type=submit] {
  color: #F5F2F2;
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  padding: 5px 0 10px;
  cursor: pointer;
}
.form p.err, .form p.suc, .form input[type=checkbox] {
  display: none;
  font-size: 25px !important;
}
.form input.err {
  border: 2px red solid;
}
.form p.err {
  color: red !important;
  background-color: rgba(0, 0, 0, 0.8);
}
.form p.suc {
  color: #1EC61E !important;
  background-color: rgba(0, 0, 0, 0.8);
}

.logo {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.header {
  background-color: #070B49;
}
@media only screen and (min-width: 960px) {
  .header {
    padding: 20px;
  }
  .header .mobile {
    display: none;
  }
  .header nav ul {
    display: flex;
    background: #F0EDE4;
    padding: 20px 30px 0;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    gap: 0 min(5vw, 51px);
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
  .header nav ul li a {
    font-size: min(3.6vw, 50px);
    color: black;
  }
  .header nav ul .logo {
    width: 27vw;
    height: 180px;
    background-image: url(images/logo.png);
    margin: 0 -70px;
  }
  .header nav ul .logo a {
    display: none;
  }
}
@media only screen and (max-width: 959px) {
  .header {
    position: relative;
    padding: 15px;
  }
  .header nav {
    display: none;
  }
  .header nav a {
    color: #F5F2F2;
    font-size: 24px;
  }
  .header nav .logo {
    display: none;
  }
  .header .hamb {
    position: absolute;
    cursor: pointer;
    top: 15px;
    right: 15px;
  }
  .header .hamb span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 5px 0;
    background-color: #F5F2F2;
  }
  .header .logo {
    width: 245px;
    height: 85px;
    background-image: url(images/logo_m1.png);
    margin: 0 auto;
  }
}

.bar_title {
  position: relative;
  color: #070B49;
  text-align: center;
  margin: 10px auto 0;
}
.bar_title span {
  display: inline-block;
  position: relative;
  font-weight: 700;
}
.bar_title .bar_color {
  position: absolute;
  left: -10px;
  right: -10px;
  z-index: -1;
}

@media only screen and (min-width: 960px) {
  h1.bar_title {
    font-size: 128px;
  }
}
@media only screen and (max-width: 959px) {
  h1.bar_title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 960px) {
  h1.bar_title .bar_color {
    height: 32px;
    bottom: 10px;
  }
}
@media only screen and (max-width: 959px) {
  h1.bar_title .bar_color {
    height: 11px;
    bottom: 5px;
  }
}

@media only screen and (min-width: 960px) {
  h2.bar_title {
    font-size: 80px;
  }
}
@media only screen and (max-width: 959px) {
  h2.bar_title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 960px) {
  h2.bar_title .bar_color {
    height: 22px;
    bottom: 5px;
  }
}
@media only screen and (max-width: 959px) {
  h2.bar_title .bar_color {
    height: 7px;
    bottom: 3px;
  }
}

@media only screen and (min-width: 960px) {
  h3.bar_title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 959px) {
  h3.bar_title {
    font-size: 16px;
  }
}
@media only screen and (min-width: 960px) {
  h3.bar_title .bar_color {
    height: 12px;
    bottom: 2px;
  }
}
@media only screen and (max-width: 959px) {
  h3.bar_title .bar_color {
    height: 4px;
    bottom: 1px;
  }
}

@media only screen and (min-width: 960px) {
  .the_content {
    font-size: 32px;
  }
}
@media only screen and (max-width: 959px) {
  .the_content {
    font-size: 16px;
  }
}

.footer {
  background-color: #070B49;
}
.footer .wrap {
  display: grid;
  justify-content: center;
  align-content: center;
}
.footer .wrap nav ul {
  padding: 0;
}
.footer .wrap nav a {
  color: #F5F2F2;
  font-weight: 700;
}
.footer .wrap .form p {
  color: #F5F2F2;
  text-align: center;
}
.footer .wrap .form input {
  width: 100%;
}
.footer .wrap .form input[type=submit] {
  background-color: #1EC61E;
}
.footer .wrap .form input, .footer .wrap .form textarea {
  border-radius: 20px !important;
}
@media only screen and (min-width: 960px) {
  .footer .wrap {
    grid-template-columns: 26% 46% 26%;
    gap: 1%;
    padding: 30px 15px;
  }
  .footer .wrap .logo {
    width: 100%;
    height: 173px;
    background-image: url(images/logo_f.png);
    margin: 50px -60px 0 0;
  }
  .footer .wrap .form {
    padding-top: 15px;
  }
  .footer .wrap .form p {
    font-size: 32px;
  }
  .footer .wrap .form p.bold {
    font-size: 40px;
  }
  .footer .wrap nav a {
    font-size: 40px;
  }
}
@media only screen and (max-width: 959px) {
  .footer .wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .footer .wrap .logo {
    order: 1;
    width: 50% px;
    height: 47px;
    background-image: url(images/logo_m2.png);
    margin: 15px;
  }
  .footer .wrap .form {
    order: 2;
    padding-top: 10px;
  }
  .footer .wrap .form p {
    font-size: 20px;
  }
  .footer .wrap nav {
    order: 3;
  }
  .footer .wrap nav ul {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4vw;
  }
  .footer .wrap nav a {
    font-size: 3.8vw;
  }
}
.footer .rights {
  background-color: #1EC61E;
  text-align: center;
}
@media only screen and (min-width: 960px) {
  .footer .rights {
    padding: 30px 0 20px;
  }
}
@media only screen and (max-width: 959px) {
  .footer .rights {
    padding: 15px 0 10px;
  }
}
.footer .rights p {
  color: #F5F2F2;
}
@media only screen and (min-width: 960px) {
  .footer .rights p {
    font-size: 64px;
  }
}
@media only screen and (max-width: 959px) {
  .footer .rights p {
    font-size: 16px;
  }
}

.join_us .the_content {
  text-align: center;
}
.join_us .the_content.wrap {
  padding: 0;
}
.join_us .the_content h2 {
  font-weight: 700;
  margin: 0;
}
@media only screen and (min-width: 960px) {
  .join_us .the_content h2 {
    font-size: 96px;
  }
}
@media only screen and (max-width: 959px) {
  .join_us .the_content h2 {
    font-size: 24px;
  }
}
.join_us .the_content p, .join_us .the_content .form p {
  font-weight: 600;
  margin: 0;
}
@media only screen and (min-width: 960px) {
  .join_us .the_content p, .join_us .the_content .form p {
    font-size: 64px;
  }
}
@media only screen and (max-width: 959px) {
  .join_us .the_content p, .join_us .the_content .form p {
    font-size: 16px;
  }
}
.join_us .the_content .form {
  background-color: #1EC61E;
}
.join_us .the_content .form div {
  color: #F5F2F2 !important;
  padding-bottom: 15px;
}
.join_us .the_content .form input[type=submit] {
  background-color: #070B49;
  width: 150px;
}
@media only screen and (min-width: 960px) {
  .join_us .the_content .form {
    padding: 25px 0;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 959px) {
  .join_us .the_content .form {
    padding: 10px 0;
    margin-top: 10px;
  }
  .join_us .the_content .form input {
    width: 100%;
  }
}

.contact_us h1 {
  margin-bottom: 40px;
}
.contact_us .the_content {
  text-align: center;
}
.contact_us .the_content.wrap {
  padding: 0;
  max-width: 640px;
}
.contact_us .the_content a {
  display: block;
}
.contact_us .the_content .link {
  font-size: min(77px, 11vw);
  font-weight: 700;
  margin-bottom: 30px;
}
.contact_us .the_content p, .contact_us .the_content .form p {
  font-weight: 600;
  margin: 0;
}
@media only screen and (min-width: 960px) {
  .contact_us .the_content p, .contact_us .the_content .form p {
    font-size: 64px;
  }
}
@media only screen and (max-width: 959px) {
  .contact_us .the_content p, .contact_us .the_content .form p {
    font-size: 16px;
  }
}
.contact_us .the_content .form {
  background-color: #FFC30D;
}
.contact_us .the_content .form div {
  color: #F5F2F2 !important;
  padding-bottom: 15px;
}
.contact_us .the_content .form input[type=text] {
  width: 94%;
}
.contact_us .the_content .form input[type=submit] {
  background-color: #070B49;
  width: 150px;
}
@media only screen and (min-width: 960px) {
  .contact_us .the_content .form {
    padding: 25px 0;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 959px) {
  .contact_us .the_content .form {
    padding: 10px 0;
    margin-top: 10px;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 20px auto;
}
.grid .post {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.grid .post img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .grid {
    gap: 50px;
  }
}
@media screen and (max-width: 959px) {
  .grid {
    gap: 20px;
  }
}

.single-post .the_content {
  padding-bottom: 40px;
}
.single-post .the_content .wp-post-image {
  float: right;
  margin: 0 0 20px 20px;
  max-width: 500px;
  width: 100%;
  height: auto;
}
.single-post .the_content .clear {
  clear: both;
}
.single-post .the_content h2 {
  font-size: 64px;
  margin: 10px 0;
}
.single-post .the_content h3 {
  font-size: 48px;
  margin: 8px 0;
}
.single-post .the_content ul, .single-post .the_content ol {
  margin: 0;
}

.home .the_content.wrap {
  padding: 0;
}

.section1 {
  position: relative;
  background-color: #070B49;
  padding-bottom: 20vw;
}
.section1 h2, .section1 p {
  color: #F5F2F2;
}
.section1 h2.title1 {
  text-align: center;
}
.section1 h2.title1 span {
  position: relative;
  font-weight: 600;
  z-index: 2;
  display: inline-block;
}
@media only screen and (min-width: 960px) {
  .section1 h2.title1 span {
    font-size: 64px;
    padding: 50px 0;
  }
}
@media only screen and (max-width: 959px) {
  .section1 h2.title1 span {
    font-size: 32px;
    padding: 20px 0;
  }
}
.section1 h2.title1 span::before, .section1 h2.title1 span::after {
  content: " ";
  position: absolute;
  background-color: #1EC61E;
  border-radius: 50%;
  z-index: -1;
}
@media only screen and (min-width: 960px) {
  .section1 h2.title1 span::before {
    width: 76px;
    height: 76px;
    top: 50px;
    right: -40px;
  }
}
@media only screen and (max-width: 959px) {
  .section1 h2.title1 span::before {
    width: 34px;
    height: 34px;
    right: -15px;
  }
}
@media only screen and (min-width: 960px) {
  .section1 h2.title1 span::after {
    width: 16px;
    height: 16px;
    top: 100px;
  }
}
@media only screen and (max-width: 959px) {
  .section1 h2.title1 span::after {
    width: 7px;
    height: 7px;
    bottom: 25px;
  }
}
.section1 p.text1, .section1 p.text2 {
  text-align: center;
}
@media screen and (min-width: 960px) {
  .section1 p.text1, .section1 p.text2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 959px) {
  .section1 p.text1, .section1 p.text2 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 960px) {
  .section1 p.text1, .section1 p.text2 {
    width: 60%;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 959px) {
  .section1 p.text1, .section1 p.text2 {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media only screen and (min-width: 960px) {
  .section1 p.text2 {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 959px) {
  .section1 p.text2 {
    padding-top: 40px;
  }
}
.section1 h2.title2 {
  width: 60%;
  text-align: center;
}
.section1 h2.title2 span {
  position: relative;
  font-weight: 700;
  z-index: 2;
  display: inline-block;
}
@media only screen and (min-width: 960px) {
  .section1 h2.title2 span {
    font-size: 64px;
    padding: 30px 0;
  }
}
@media only screen and (max-width: 959px) {
  .section1 h2.title2 span {
    font-size: 32px;
    padding: 20px 0;
  }
}
.section1 h2.title2 span::after {
  content: " ";
  width: 100%;
  display: block;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media only screen and (min-width: 960px) {
  .section1 h2.title2 span::after {
    background-image: url(images/Vector1.png);
  }
}
@media only screen and (max-width: 959px) {
  .section1 h2.title2 span::after {
    background-image: url(images/Vector2.png);
  }
}
@media only screen and (min-width: 960px) {
  .section1 button {
    display: block;
    width: 233px;
    height: 233px;
    position: absolute;
    bottom: 100px;
    right: 40%;
    cursor: pointer;
    background-image: url(images/scroll.png);
  }
}
.section1 img {
  width: 36%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
}

.section2, .section5 {
  text-align: center;
}
.section2 .form div, .section5 .form div {
  color: #F5F2F2 !important;
  padding-bottom: 15px;
}
.section2 .form input[type=submit], .section5 .form input[type=submit] {
  width: 150px;
}
@media only screen and (min-width: 960px) {
  .section2 .form, .section5 .form {
    padding: 25px 0;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 959px) {
  .section2 .form, .section5 .form {
    padding: 10px 0;
    margin-top: 10px;
  }
  .section2 .form input, .section5 .form input {
    width: 100%;
  }
}

.section2 {
  position: relative;
  z-index: 2;
  margin-top: -20px;
}
.section2 .form {
  background-color: #1EC61E;
}
.section2 .form input[type=submit] {
  background-color: #070B49;
}

.section5 .form {
  background-color: #070B49;
}
.section5 .form input[type=submit] {
  background-color: #1EC61E;
}

.section3 {
  padding-bottom: 20vw;
  position: relative;
}
.section3 img {
  width: 20vw;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (min-width: 960px) {
  .section4 .grid {
    gap: 70px;
  }
}
@media screen and (max-width: 959px) {
  .section4 .grid {
    gap: 30px;
  }
}
.section4 .grid .post {
  justify-content: unset;
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .section4 .grid h3 {
    font-size: 56px;
  }
}
@media screen and (max-width: 959px) {
  .section4 .grid h3 {
    font-size: 16px;
  }
}
.section4 h4 {
  text-align: center;
}
@media only screen and (min-width: 960px) {
  .section4 h4 {
    font-size: 55px;
    margin: 40px auto;
  }
}
@media only screen and (max-width: 959px) {
  .section4 h4 {
    font-size: 25px;
    margin: 20px auto;
  }
}

.section6 button {
  text-align: center;
  display: block;
  width: 100%;
  margin-top: 30px;
}
.section6 button a {
  color: #F5F2F2;
  background-color: #070B49;
}
@media screen and (min-width: 960px) {
  .section6 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 959px) {
  .section6 {
    padding: 25px 0;
  }
}

button {
  background-color: transparent;
  border: none;
}
button a {
  font-weight: 700;
}
@media only screen and (min-width: 960px) {
  button a {
    font-size: 64px;
    border-radius: 50px;
    padding: 3px 150px 7px;
  }
}
@media only screen and (max-width: 959px) {
  button a {
    font-size: 32px;
    border-radius: 30px;
    padding: 3px 80px 7px;
  }
}