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

html {
  scroll-behavior: smooth;
}

body {
  direction: rtl;
  text-align: right;
  font-family: "Cairo", sans-serif;
  overflow-x: hidden;
}

/*start navbar section*/
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 99999;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.navbar .navbar-toggle {
  width: 40px;
  cursor: pointer;
}
.navbar .navbar-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  margin: 8px 0;
  background-color: #f06292;
}
.navbar .main-menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .main-menu ul {
  flex-direction: row;
}
.navbar .main-menu ul li {
  padding: 0 15px;
}
.navbar .main-menu ul li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.navbar .main-menu ul li a:hover {
  color: #672a65;
}
.navbar .menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  background-color: #f06292;
  color: #fff;
  padding: 50px 30px;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.navbar .menu i.fa-xmark {
  font-size: 18px;
  margin: 20px;
  cursor: pointer;
}
.navbar .menu .navbar-nav a {
  color: #fff;
  margin: 15px 20px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.navbar .menu .navbar-nav a:hover {
  color: #672a65;
}
.navbar .menu .media a {
  display: block;
  margin: 40px 15px;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.navbar .menu .media a:hover {
  color: #672a65;
}
.navbar .menu p {
  direction: ltr;
  text-align: center;
}
.navbar .menu p a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.navbar .menu p a:hover {
  color: #672a65;
}
.navbar .menu.show {
  left: 0;
}

.navbar.nav-scroll {
  background-color: #fff;
  box-shadow: 0px 0px 6px 1px #e9e9e9;
}
.navbar.nav-scroll .main-menu ul li a {
  color: #672a65;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.navbar.nav-scroll .main-menu ul li a:hover {
  color: #f06292;
}

.navbar.nav-scroll-a {
  background-color: #fff;
  box-shadow: 0px 0px 6px 1px #e9e9e9;
}
.navbar.nav-scroll-a .main-menu ul li a {
  color: #672a65;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-fvout;
  -o-transition: all 0.3s ease-in-out;
}
.navbar.nav-scroll-a .main-menu ul li a:hover {
  color: #f06292;
}

/*end navbar section*/
/*start main section*/
.home {
  background: url(../imgs/bg-2.jpg) no-repeat center fixed;
  background-size: cover;
  height: 100vh;
  position: relative;
}
.home .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.home .overlay .main-content p {
  color: #f06292;
  font-size: 25px;
  margin-top: 50px;
}
.home .overlay .main-content h1 {
  color: #fff;
  font-weight: 700;
  font-size: 45px;
  line-height: 80px;
}
.home .overlay .main-content a {
  width: 140px;
  margin-top: 20px;
}
.home .overlay .links {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.home .overlay .links ul li {
  direction: ltr;
  text-align: left;
}
.home .overlay .links ul li a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.home .overlay .links ul li a i {
  color: #fff;
  font-size: 17px;
  margin: 10px 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  text-align: center;
}
.home .overlay .links ul li a:hover span {
  display: inline-block;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.home .overlay .links ul li span {
  color: #f06292;
  margin: 0 10px;
  display: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

@media (max-width: 991.5px) {
  .home .overlay .main-content h1 {
    font-size: 35px;
    line-height: 60px;
  }
}
/*end main section*/
/*start about section*/
.about {
  padding-top: 100px;
}
.about h2 {
  color: #672a65;
  margin: 20px 0;
}
.about p {
  color: #707070;
  letter-spacing: 1.5px;
  line-height: 2;
}

/*end about section*/
/*start steps section*/
.steps {
  padding: 100px 0;
}
.steps .steps-card {
  box-shadow: 0px 0px 5px 1px #efefef;
  position: relative;
  padding: 40px 5px;
  border-radius: 10px;
}
.steps .steps-card img {
  width: 110px;
  height: 110px;
}
.steps h2 {
  color: #672a65;
  margin-bottom: 80px;
}
.steps ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.steps ul li {
  margin: 20px 0;
}
.steps ul li span {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: #f06292;
  color: #fff;
  font-weight: 700;
  position: absolute;
  top: -26px;
  left: 37%;
}
.steps ul li p {
  color: #707070;
  letter-spacing: 1.5px;
  margin: 15px 0;
}

/*end steps section*/
/*start footer section*/
.footer {
  background-color: #f06292;
  padding: 30px 0;
  color: #fff;
}
.footer .upper h3 {
  border-bottom: 4px solid #fff;
  padding: 20px 0;
  width: 40%;
  text-transform: uppercase;
  margin: 20px 0;
}
.footer .upper ul li a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 10px 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.footer .upper ul li a:hover {
  color: #672a65;
}
.footer .upper .sitemap {
  font-size: 18px;
  font-weight: 600;
}
.footer .upper .contact p {
  font-size: 20px;
}
.footer .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.2509803922);
  padding: 20px 0;
}
.footer .foot a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.footer .foot a:hover {
  color: #672a65;
}
.footer .foot ul li {
  display: inline-block;
  margin: 0 10px;
}

@media (min-width: 768px) and (max-width: 991.5px) {
  .footer .upper h3 {
    width: 60%;
  }
}
@media (max-width: 450px) {
  .footer .upper h3 {
    width: 60%;
  }
}
/*end footer section*/
/*start support page*/
.support {
  padding: 200px 0 150px;
}
.support .myform {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin: 0 auto;
  box-shadow: 0px 0px 6px 1px #e6e6e6;
  padding: 50px;
  border-radius: 10px;
}
.support .myform label {
  color: #f06292;
  margin: 20px 0;
  font-size: 18px;
  font-weight: 600;
}
.support .myform input {
  border: none;
  box-shadow: 0px 0px 4px 1px #dedede;
  border-radius: 5px;
  height: 38px;
  padding: 20px;
}
.support .myform input:focus {
  border: none;
  outline: none;
  box-shadow: 0px 0px 1px 2px #f06292;
}
.support .myform textarea {
  border: none;
  box-shadow: 0px 0px 4px 1px #dedede;
  border-radius: 5px;
  padding: 20px;
}
.support .myform textarea:focus {
  border: none;
  outline: none;
  box-shadow: 0px 0px 1px 2px #f06292;
}
.support .enterlabel {
  color: #f06292;
  margin: 20px 0;
  font-size: 18px;
  font-weight: 600;
  width: 50%;
    text-align: left;
}
.support .enter {
  margin: 40px auto;
  border: none;
  padding: 10px 40px;
  border-radius: 5px;
  background-color: #f06292;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.support .myform button {
  display: block;
  margin: 40px auto;
  border: none;
  padding: 10px 40px;
  border-radius: 5px;
  background-color: #f06292;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.support .myform button:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #f06292;
  border: 1px solid #f06292;
}

@media (max-width: 767.5px) {
  .support .myform {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .support .myform {
    padding: 20px;
  }
}
/*end support page*/
/*start policy page*/
.policy {
  padding: 200px 0 150px;
}
.policy h2 {
  margin: 50px 0;
  text-align: center;
}
.policy p {
  color: #707070;
}
.policy ul {
  margin: 20px 40px;
}
.policy ul li {
  padding: 5px 0;
}

/*end policy page*/
/*start to-top section*/
.btn-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.btn-top i {
  font-size: 20px;
  background-color: #672a65;
  color: #fff;
  padding: 7px 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.btn-top i:hover {
  background-color: rgba(255, 255, 255, 0);
  color: #672a65;
  border: 1px solid #672a65;
  cursor: pointer;
}

/*end to-top section*/
::selection {
  background-color: #672a65;
  color: #fff;
}

/*# sourceMappingURL=style.css.map */
