@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
:root {
  --main-color: #295588;
  --orange-color: #ffb700;
  --vip-color:#0f0042;
  --green-color: #0C8590;
  --red-color: #EF634E;

}
* {
  box-sizing: border-box;
  direction: rtl;
}
body,h2,h3,p,a,input,button,i,span,h1,li,ul{
 
  margin: 0;
  font-family: "Tajawal", sans-serif;
  font-weight: 500;
  font-style: normal;
}
  /* direction: rtl; */

*:focus {
  outline: none;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: white;
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

.page {
  background-color: #f1f5f9;
  min-height: 100vh;
}

/* Start Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  direction: rtl;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Tajawel", sans-serif;
  direction: rtl;
}
ul {
  list-style: none;
}

.container {
  padding-left: 0px;
  padding-right: 0px;
  margin-left: auto;
  margin-right: auto;
  
}
/* Small */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
/* Medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
/* Large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/* End Global Rules */
/* Start Components */
.main-heading {
  text-align: center;
}
.main-heading h2 {
  font-weight: normal;
  font-size: 40px;
  position: relative;
  margin-bottom: 70px;
  text-transform: uppercase;
}
.main-heading h2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background-color: #333;
  bottom: -30px;
  width: 120px;
}
.main-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #333;
  bottom: -38px;
  background-color: white;
}
.main-heading p {
  width: 550px;
  margin: 0 auto 100px;
  max-width: 100%;
  line-height: 2;
  color: #777;
}
/* End Components */
/* Start Header */
header {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2;
  background-color: var(--main-color);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 80px;
}

header .logo img {
    height: 80px;
    
}
header nav ul li a:hover{
  background-color: #1da0f21b;
}



header nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: -150px;
    
}

@media (max-width: 767px) {
  header nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0px;
    
  }
  
}

header nav ul {
  display: flex;
}
@media (max-width: 999px) {
  header .logo img {
  display: none;
    }
}
@media (min-width: 590px) {
   header nav ul li a {
    padding: 17px;
    font-size: 20px;
    
  }
}

@media (max-width: 760px) {
   header nav ul li a {
    padding: 8px;
    font-size: 18px;
  }
  header .container{
    justify-content: space-around;
  }
  header .container .icons a span {
  display: none;
  }

}

header nav ul li a {
 
  display: block;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  z-index: 2;
}



/* End Header */
/* Start Landing */
.landing {
  min-height: 100vh;
  background-image: url("../imgs/Section\ 1/image 1 bg.jpg");
  background-size: cover;
  position: relative;
}
.landing .landing-img{
  width: 50%;
  position: absolute;
  height: 600px;
  left:50px;
  top: 50%;
  transform: translateY(-50%);
}
.landing .landing-img  .logo-img{
  margin: 100px;
  width: 450px;
  height: 380px;
  position: absolute;
}

.landing .text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  padding: 80px;
  display: flex;
  justify-content: flex-start;
}
.landing .text .content {
  max-width: 500px;
}
.landing .text .content h2 {
  font-size: 60px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
  color: black;
}
.landing .text .content p {
  font-size: 30px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: black;
}
@media (max-width: 1250px) {

  .landing .landing-img {
  display: none;
  }
}
@media (max-width: 767px) {

  .landing .landing-img {
  display: none;
  }
  .landing .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
  }
  .landing .text {
  position: absolute;
  width: 100%;
  margin: 20px auto;
  
}

}

@media (max-width: 400px) {
   .landing .landing-img {
     display: none;
 
  }


  .landing .text {
    width: 90%;
    margin: 10px auto;
  }
  .landing .text .content h2 ,
   .landing .text .content span {
    font-size: 25px;
    font-weight: bold;
    color: black;
    align-items: center;
    justify-content: center;
    padding: 5px;

  }
  .landing .text .content p {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 10px;
  color: black;
  align-items: center;
  justify-content: center;
  }

  .landing .text .content {
    justify-content: center;
    align-items: center;
  }
}



.landing .change-background {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ddd;
}
@media (max-width: 767px) {
  .landing .change-background {
    display: none;
  }
}
.landing .fa-angle-left {
  left: 30px;
  color: black;
  cursor: pointer;
}
.landing .fa-angle-right {
  right: 30px;
  color: black;
  cursor: pointer;
}

/* End Landing */

/* Start Footer */

.footer {
  background-image: linear-gradient(to bottom, #295588, #1A3554);
  padding: 70px 0 0;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .footer {
    text-align: center;
  }
}
.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 60px;
}
.footer .box h3 {
  color: white;
  font-size: 35px;
  margin: 0 0 20px 20px;
  border: 1px solid white;
  padding: 0px 5px;
  border-radius: 10px;
  width: 355px;
  height: 55px;
}
.footer .box .social {
  display: flex;
  margin-right: 100px;
}
@media (max-width: 767px) {
  .footer .box .social {
    justify-content: center;
    margin: 20px 0 0 0;
  }
.footer .box h3 {
  color: white;
  font-size: 40px;
  border: 2px solid white;
  padding: 5px;
  margin: 0;
  }
}
@media (max-width: 767px){
  .footer .box h3 {
  color: white;
  font-size: 30px;
  border: 2px solid white;
  padding: 5px;
  margin: auto;
  }
  .footer .box img{
    display: none;
  }
}


.footer .box .social li {
  margin-right: 5px;
  padding: 5px;
}
.footer .box .social li a {
  color: #ffffff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 25px;
}
.footer .box .social .facebook {
  background-color: #1877f2;
  border-radius: 50%;
}
.footer .box .social .telegram {
  background-color: #1da1f2;
  border-radius: 50%;
}
.footer .box .social .youtube {
  background-color: #ff0000;
  border-radius: 50%;

}
.footer .box .social .whatsapp {
  background-color: #09832d;
  border-radius: 50%;

}
.footer .box .support{
  border: 2px solid white;
  margin-top: 25px;
  margin-right: 45px;
  width: 250px;
  border-radius: 10px;
  font-size: 40px;
}
.footer .box .text {
  line-height: 2;
  color: #b9b9b9;
}
.footer .box{
  position: relative;
}
.footer .box img {
  width: 325px;
  height: 276px;
  position: absolute;
  margin-right: 10px;
  top: -30px;
}

.footer .box .line {
  display: flex;
  align-items: center;
  color: #ffffff;
  margin-bottom: 30px;

}
.footer .box .line .info ,
 .footer .box .line h2{
  font-size: 35px;
  color: white;
}
.footer .box .line .info ,
 .footer .box .line br{
  font-size: 25px;
  color: white; 
 }
.footer .box .line h2{
  width: 230px;
  height: 50px;
  padding-right: 25px;
  border: 1px solid white;
  border-radius: 10px;
}

.comment{
  margin-right: 590px;
  padding-bottom: 10px;
  font-size: 15px;
  color: white;
  align-items: center;
 
}
@media (max-width: 767px) {
  .footer .box .line {
    flex-direction: column;
  }
  .footer .box .support{
  margin: 10px auto;
  /* padding: 10px; */
  
}
}
.footer .box .line i {
  font-size: 25px;
  color: white;
}
@media (max-width: 767px) {
  .footer .box .line i {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.footer .box .line .info {
  line-height: 1.7;
  flex: 1;
}
.footer .box .line .info span {
  display: block;
}

@media (max-width: 1020px) {
  .comment {
    display: none;
  
  }
}
/* End Footer */

.cource_new1{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 100px auto;

}
.cource_new{
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-color: var(--green-color);
  padding: 10px 30px;
  font-size: 30px;
  margin: auto;

}




/* Start Content */
.content {
  overflow: hidden;
}

.head .icons img {
  width: 32px;
  height: 32px;
  margin-right: 15px;
} 
.head .icons .botton{
  margin-right: 10px;
  margin-left: 10px;
  cursor: pointer;
}
.head .icons{
  display: flex;
  align-items: start;
  justify-content: left;
}

.page h1 {
  margin: 20px 20px 40px;
}
.page h1::before,
.page h1::after {
  content: "";
  height: 3px;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.page h1::before {
  background-color: white;
  width: 120px;
}
.page h1::after {
  background-color: black;
  width: 40px;
}
.wrapper {
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wrapper {
    grid-template-columns: minmax(200px, 1fr);
    margin-left: 10px;
    margin-right: 10px;
    gap: 10px;
  }
}
/* End Content */


/* Start Courses Page */

@media (max-width: 767px) {
  .courses-page1 {
    grid-template-columns: minmax(200px, 1fr);
    gap: 10px;
  }
}

.courses-page1{
  background-color: #FAFAFA;
  margin: auto;

}

.courses-page1 .course {
  overflow: hidden;
  align-items: center;
  width: 250px;
  height: 400px;
  border: solid var(--main-color);
  background-color: var(--main-color);
  border-radius: 20px;
  margin: auto;
  
  
}
.courses-page1 .course .cover {
  margin-right: 5px;
  margin-top: 5px;
  width: 235px;
  height: 265px;
  border-radius: 20px;
  
}

.courses-pag1 .course .description {
  line-height: 1.6;
}
.courses-page1 .course .info {
  border-top: 1px solid #ffffff;
  font-size: 13px;
}

/* End Courses Page */

/* Start Courses Page */

@media (max-width: 1400px) {
  
  .courses-page2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    padding: 0px;
   
  
  }
 
}

.courses-page2{
  background-color: #FAFAFA;

}

.courses-page2 .course {
  overflow: hidden;
  border: 10px solid var(--main-color);
  background-color: var(--main-color);
  border-radius: 20px;
  width: 350px;
  height: 520px;
  margin: auto;
}

.courses-page2 .course .cover {
  max-width: 100%;
}

.courses-page2 .course .description {
  line-height: 1.6;
}
.courses-page2 .course .info {
  border-top: 1px solid #ffffff;
  font-size: 13px;
}

/* End Courses Page */

/* Start Courses Page */

@media (max-width: 767px) {
  .courses-page3 {
    grid-template-columns: minmax(100px, 1fr);
    margin-left: 10px;
    margin-right: 10px;
    gap: 10px;
  }
}

.courses-page3 {
    background-color: #FAFAFA;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;  
    gap: 50px; 
}
.courses-page3 .course {
    overflow: hidden;
    border: 10px solid var(--main-color);
    background-color: var(--main-color);
    border-radius: 20px;
    width: 350px;
}
.courses-page3 .course .cover {
  max-width: 100%;
}
.courses-page3 .course .description {
  line-height: 1.6;
}
.courses-page3 .course .info {
  border-top: 1px solid #ffffff;
  font-size: 13px;
}

/* End Courses Page */


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.wrapper {
  width: 100%;

}

.wrapper > p,
.wrapper > h1 {
  margin: 1.5rem 0;

}

.wrapper > h1 {
  letter-spacing: 3px;
}

.accordion {
  background-color: white;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  font-size: 1.2rem;
  width: 100%;
  padding: 2rem 2.5rem;
  border: none;
  outline: none;
  transition: 0.9s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
}

.accordion i {
  font-size: 1.6rem;
}

.active,
.accordion:hover {
  background-color: #ffffff;
}
.pannel {
  /* padding: 0 2rem 2.5rem 2rem; */
  background-color: white;
  overflow: hidden;
  background-color: #ffffff;
  display: none;
  border-radius: 30px
}
.pannel1 {
  padding: 0 2rem 2.5rem 2rem;
  background-color: white;
  overflow: hidden;
  background-color: #ffffff;
  display: none;
  border-radius: 30px
}





      /* المميزات التي نقدمها  */

/* Start Work Steps */
.work-steps {
  position: relative;
  
}
.work-steps .container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
@media (max-width: 991px) {
  .work-steps .container {
    flex-direction: column;
  }

}
.work-steps .image {
  max-width: 40%;
  
}
/* @media (max-width: 991px) {
  .work-steps .image {
    margin: 20px auto;
    width: 90%;
  }
} */
.work-steps .info .box {

  padding: 5px;
  margin-bottom: 20px;
  border-radius: 20px;
  display: block;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  border: 1px solid white;
}
.work-steps .info .box .text {
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  border-radius: 20px;
  position: relative;
}

.work-steps .info .box .h3_1 {
  font-size: 25px;
  color: white;
  align-items: center;
  background-color: var(--main-color);
  border-radius: 10px;
  margin: auto;
  width: 250px;
  height: 40px;
}

.work-steps .info .box .h3_2 {
  font-size: 25px;
  color: white;
  align-items: center;
  background-color: var(--main-color);
  border-radius: 10px;
  margin: auto;
  width: 250px;
  height: 40px;
}
.work-steps .info .box .h3_3 {
  font-size: 25px;
  color: white;
  align-items: center;
  background-color: var(--main-color);
  border-radius: 10px;
  margin: auto;
  width: 250px;
  height: 40px;
}
.work-steps .info .box .h3_4 {
  font-size: 25px;
  color: white;
  align-items: center;
  background-color: var(--main-color);
  border-radius: 10px;
  margin: auto;
  width: 250px;
  height: 40px;
}
.work-steps .info .box img {
  width: 120px;
  display: block;
  margin: 20px auto;
  
  
}


@media (max-width: 767px) {
  .work-steps .info .box {
    flex-direction: column;
    text-align: center;
  }
}



@media (max-width: 767px) {
  .work-steps .info .box img {
    
    align-items: center;
    width: 30%;
    margin: 20px auto;
   
  }
}


/* End Work Steps */

/* 
start faq section  */

.faq-section{ 
  background-image: url("../imgs/FAQ/FAQ%20bg.jpg");
}



.faq-img{
  width: 70%;
  position: relative;
  justify-content: center;
  align-items: center;
  
}
.faq-img img{
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.according{
  color: rgb(236, 234, 234);

}

.faq-temblet .accordion{
  border: 2px solid black;
  border-radius: 30px;
}

.faq , .active{
  border-radius: 5px;
  border: 2px solid black;
}
.faq , .active ,
.faq-temblet .accordion{
  border: none;
}
.faq-section .faqs, .wrapper .active, .faq-temblet  {
  margin-top: 20px;
  border: none;
  width: 100%; 
  border-radius: 20px; 
}
.faqs{
  position: relative;
  width: 100%;
  margin-top: 30px;
}
.contact-bar{
  background-color: var(--orange-color);
  color: black;
  padding: 10px 20px;
  border: 1px solid var(--orange-color);
  border-radius: 20px;
  display: flex;
  position: relative;
  width: 1200px;
  margin: 60px auto;
  

}
.contact-bar .text{
  width: 80%;

}
.contact-bar .text h3{
  font-size: 40px;
  font-weight: bold;
  color: black;
  margin-bottom: 5px;
  margin-right: 10px;
}
.contact-bar .text p{
  font-size: 25px;
  font-weight: bold;
  color: black;
  margin-right: 10px;
}
.contact-bar .buttom{
  width: fit-content;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 50px;
}
.contact-bar .buttom a{
  color: black;
  border: 2px solid black;
  border-radius: 20px;
  padding: 15px 20px;
  font-size: 25px;
  font-weight:bold ;
}
@media (max-width: 950px) {
.faq-img{
  display: none;
}
.contact-bar .text{
  display: none;
}
.contact-bar{
  width: 300px;
  height: 100px;
}
.contact-bar .buttom a{
  color: black;
  border: 2px solid black;
  border-radius: 20px;
  padding: 15px 20px;
  font-size: 20px;
  font-weight:bold ;
}

.contact-bar .buttom{
  width: fit-content;
  top: 40%;
  transform: translateY(-50%);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--orange-color);

}
.faqs{
  position: relative;
  width: 97%;
  margin-top: 30px;
}


  
}

 /* start log in */
.log_in {
  position: relative;
}

.log_in .container {
  min-height: calc(60vh);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 80px;
}
.log_in .image{
  width: 50%;
  height: 400px;
}

.log_in .form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 50%;
  margin: 30px auto;
  
}

@media (max-width: 775px) {
  .log_in .container{
    flex-direction: column;
  }
  .log_in .form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 100%;
} 
.log_in .image{
  width: 50%;
  height: 350px;
  margin: 20px auto;
}

}
@media (max-width: 775px) {
    .log_in .image {
        width: 100%;
        height: 350px;
        margin: 20px auto;
    }
}

@media (max-width: 991px) {
  .log_in .form {
    flex-basis: 50%;
  
  }
}
.log_in .form .input {
  display: block;
  width: 100%;
  margin-bottom: 25px;
  padding: 15px;
  border: none;
  border-bottom: 1px solid #000000;
  background-color: #fafafa;
  caret-color: var(--main-color);
}

.log_in .form .input:focus {
  outline: none;
}
.log_in .form [type="submit"] {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: var(--green-color);
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: 20px;
  border: none;
  cursor: pointer;
  border-radius: 20px;
  
}

.log_in .content  {
  
  border: 1px solid black;
  border-radius: 30px;
  text-align: center;
  padding: 15px 60px;
  background-color: #fafafa;
}
.log_in .content h2 {
  font-size: 40px;
  letter-spacing: -2px;
}
.log_in .content p {
  line-height: 1.6;
  font-size: 18px;
  max-width: 500px;
}
.log_in .content img {
  width: 300px;
  max-width: 100%;
}
.no-account{
  padding: 10px;
}
.now a{
  color: var(--main-color);

}
@media(max-width:400px){
  .log_in .content h2 {
  font-size: 35px;
  letter-spacing: -2px;
}

}

.log_in .content .not-found{
  font-size: 20px;
  padding: 10px;
  margin-bottom: 5px;
  color: var(--red-color);
  font-family: "Tajawal", sans-serif;
  font-weight: 500;
  font-style: normal;
}
    
/* End login */

/* start sign-up */
.sign-up {
  position: relative;
}

.sign-up .container {
  min-height: calc(60vh);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 80px;
}
.sign-up .image{
  width: 50%;
  height: 400px;
}

.sign-up .form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 50%;
  margin: 30px auto;
  
}

.sign-up .form  label{
  padding-right: 5px;
  padding-left: 8px;
  color: #888;
  font-size: 15px;
  font-family: "Tajawal", sans-serif;
  
 
}

@media (max-width: 775px) {
  .sign-up .container{
    flex-direction: column;
  }
 .sign-up .form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 100%;
} 
.sign-up .image{
  width: 50%;
  height: 350px;
  margin: 20px auto;
}

}
@media (max-width: 775px) {
    .sign-up .image {
        width: 100%;
        height: 350px;
        margin: 20px auto;
    }
}

@media (max-width: 991px) {
  .sign-up .form {
    flex-basis: 50%;
  
  }
}
.sign-up .form .input {
  display: block;
  width: 100%;
  margin-bottom: 25px;
  padding: 15px;
  border: none;
  border-bottom: 1px solid #000000;
  background-color: #fafafa;
  caret-color: var(--main-color);
}

.sign-up .form .input:focus {
  outline: none;
}
.sign-up .form [type="submit"] {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: var(--green-color);
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: 20px;
  border: none;
  cursor: pointer;
  border-radius: 20px;
  
}

.sign-up .content  {
  
  border: 1px solid black;
  border-radius: 30px;
  text-align: center;
  padding: 15px 90px;
  background-color: #fafafa;
}
.sign-up .content h2 {
  font-size: 35px;
  letter-spacing: -2px;
}
.sign-up .content p {
  line-height: 1.6;
  font-size: 18px;
  max-width: 500px;
}
.sign-up .content img {
  width: 300px;
  max-width: 100%;
}
.no-account{
  padding: 10px;
}
.now1 a{
  color: var(--orange-color);

}
@media(max-width:400px){
  .sign-up .content h2 {
  font-size: 30px;
  letter-spacing: -2px;
}
.sign-up .content {
    border: 1px solid black;
    border-radius: 30px;
    text-align: center;
    padding: 15px 50px;
    background-color: #fafafa;
}

}
    
/* End sign-up */

 /* start contact-us */
 .contact-us {
  position: relative;
}

 .contact-us .container {
  min-height: calc(60vh);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 80px;
}
 .contact-us .image{
  width: 50%;
  height: 400px;
}
 .contact-us .content  {
  border: 1px solid #0C8590;
  border-radius: 30px;
  text-align: start;
  padding: 15px 70px;
  margin-top: 80px;
  background-color: var(--green-color);
}

 .contact-us .content img {
  width: 500px;
  max-width: 100%;
  height: 400px;
}
.contact-us .content .addres{
  max-width: 250px;
   
}

 .contact-us .form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 50%;
  margin: 30px auto;
  
}
.contact-us .form .support{
  border: 2px solid white;
  width: 250px;
  border-radius: 10px;
  font-size: 40px;
}

@media (max-width: 775px) {
  .contact-us .container{
    flex-direction: column;
  }
  .contact-us .form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 100%;
} 
 .contact-us .image{
  width: 50%;
  height: 350px;
  margin: 20px auto;
}

}
@media (max-width: 775px) {
    .contact-us .image {
        width: 100%;
        height: 350px;
        margin: 20px auto;
    }
}

@media (max-width: 991px) {
   .contact-us.form {
    flex-basis: 50%;
  
  }
}

.contact-us .box .social{
  width: 100%;
  justify-content: center;
  margin-top: 50px;
}
.contact-us .box .social li {
  margin-right: 10px;
  padding: 3px;
}
.contact-us .box .social li a {
  color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  font-size: 45px;
  
}
.contact-us .box .social .facebook {
  background-color: #1877f2;
  border-radius: 50%;
}
.contact-us .box .social .telegram {
  background-color: #1da1f2;
  border-radius: 50%;
}
.contact-us .box .social .youtube {
  background-color: #ff0000;
  border-radius: 50%;

}
.contact-us .box .social .whatsapp {
  background-color: #09832d;
  border-radius: 50%;

}
@media (max-width: 500px) {
  .contact-us .box .social li a {
  color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  font-size: 35px;
  
}
   
}





    
/* End contact-us */

/* start we */
.we {
  position: relative;
}

.we .container {
  min-height: calc(60vh);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 80px;
}
.we .image{
  width: 50%;
  height: 500px;
}

.we .form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 50%;
  margin: 50px auto;

}
.we .content  {
  text-align: start;
}
.we .content h2 {
  font-size: 40px;
  letter-spacing: -2px;
}
.we .content p {
  line-height: 1.6;
  font-size: 20px;
  max-width: 500px;
}
.we .content img {
  width: 300px;
  max-width: 100%;
}

@media (max-width: 775px) {
  .we .container{
    flex-direction: column;
  }
  .we .form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 100%;
} 
.we .image{
  width: 50%;
  height: 500px;
  margin: 20px auto;
}

}
@media (max-width: 775px) {
    .we .image {
        width: 100%;
        height: 400px;
        margin: 20px auto;
    }
    .we .content  {
    text-align: center;
    padding: 5px;
    }

}

@media (max-width: 991px) {
  .we .form {
    flex-basis: 50%;
  
  }
}

/* end we */

/* 
start lessons */

.main-content .photo{
  position: relative;
  width: 100%;
  height: 500px;
}
.main-content .photo img{
  position: absolute;
  width: 100%;
  height: 100%;

}

.faq-section .container1 {
    padding-left: 0px;
    padding-right: 0px;
    display: flex;
    flex-direction: column;
}
.faq-section .faqs1{
  margin-top: 0px;
  border-radius: 30px;
}
.faq-section .faqs1 .wrapper{
  margin-bottom: 10px;
  border-radius: 30px;
}
.faq-section .faqs1 .pannel .video {
  position: relative;
  width: 95%;
  height: 700px;
  margin: 20px auto;

}
.faq-section .faqs1 .pannel .video iframe{
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  
}
.faq-section .faqs1 .pannel .file {
  margin-bottom: 10px;
  margin-right: 10px;
}

.faq-section .faqs1 .pannel .file a{
  border-radius: 10px;
  margin-top: 20px;
  width: fit-content;
}
.faq-section .faq-temblet1 .accordion1 {
  
  width: 100%;
  background-color: white;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  font-size: 2rem;
  padding: 2rem 2.5rem;
  transition: 0.9s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  border: none;
  border-radius: 30px;
}
.faq .faq-temblet1{
   border: 2px solid var(--main-color);
   border-radius: 30px;
  
}


.faq, .active, .faq-temblet1  {
  border: 2px solid var(--main-color);
  border-radius: 30px ;
  width: 98%;
  margin: 1px auto;
   
}

@media(max-width:750px){
  .main-content .photo{
    height: 300px;
  }
  .faq-section .faqs1 .pannel .video{
    height: 350px;
  }

}
@media(max-width:500px){
  .main-content .photo{
    height: 200px;
  }
  .faq-section .faq-temblet1 .accordion1{
     font-size: 1.2rem;
     padding: 1.5rem 2rem;

  }
  .faq-section .faqs1 .pannel .video{
    height: 250px;
  }


}


/* End lessons  */

/* start terms */
.main-content .teature{
    position: relative;
    width: 240px;
    height: 300px;
    margin: 20px auto;
    background-color: var(--orange-color);
    border-top-left-radius: 25%;
    border-top-right-radius: 25%;
}

.main-content .teature img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: -35px;
}

.main-content .teature button{
  
    position: absolute;
    bottom: -10px;
    height: 50px;
    width: 100%;
    border: 1px solid var(--green-color);
    background-color: var(--green-color);
    color: white;
    font-size: 25px;
    font-weight: bold;
    border-radius: 10px;
}
.course .terms-font span {
  font-size: 35px;
  font-weight: bold;
  padding-bottom: 10px;
}

/* end terms */