/* Start Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --main-color:#547b77;
  --main-color-second: #cbaa7d;;
  --main-color-third: #547b77;;
  --main-transition: 0.3s;
  --main-padding-top: 100px;
  --main-padding-bottom: 100px;
  --section-background: #ececec;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Cairo", sans-serif;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
img{
  content-visibility: auto;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  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;
  }
}

/* Start Whattapp */
.fixedButton {
    position: fixed;
    bottom: 0px; 
    right: 0px; 
    padding: 20px;
    z-index: 1000; 
    background-color:transparent;
  }
.roundedFixedBtn { 
  height: 65px; 
  line-height: 80px; 
  width: 60px; 
  font-size: 2em;
  font-weight: bold; 
  border-radius: 50%;
  color: white;
  text-align: center; 
  cursor: pointer;
  background-color: transparent;
  outline: none; 
}
/* end Whattapp */
/* Start To Top */
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  color: var(--main-color);
  cursor: pointer;
  padding: 10px;
  font-size: 30px;
  border-radius: 4px;
}
/* End To Top */

/* Start Main Title  */
.main-title {
  text-transform: uppercase;
  margin: 0 auto 80px;
  padding: 10px 20px;
  font-size: 30px;
  width: fit-content;
  position: relative;
  z-index: 1;
  transition: var(--main-transition);
  background-color: white;
  color: var(--main-color-third);
  border-radius: 20px;
}
.main-title:hover {
  color: white;
  transition-delay: 0.5s;
  border-radius: 20px;
  z-index: 55;
}
.main-title::before,
.main-title::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--main-color);
  position: absolute;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.main-title::before {
  left: -30px;
}
.main-title::after {
  right: -30px;
}
.main-title:hover::before {
  z-index: -1;
  animation: left-move 0.5s linear forwards;
}
.main-title:hover::after {
  z-index: -1;
  animation: right-move 0.5s linear forwards;
}
/* End Main Title  */
/* End Global Rules */
/* Start Header */
.header {
  background-color: white;
  position: relative;
  -webkit-box-shadow: 0 0 10px #ddd;
  -moz-box-shadow: 0 0 10px #ddd;
  box-shadow: 0 0 10px #ddd;
  min-height: 80px;
  align-items: center;
  margin: 0px auto;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  margin: 0px ;
  width: 100%;
}
@media (max-width: 987px) {
  .header .container {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
  }
}
#Group_1_Image {
  width: 120px;
  height: 85px;
  margin: 0PX;
  padding: 0px;
}
@media (max-width: 767px) {
  #Group_1_Image {
    width: 100px;
    height: 52.14px;
  }
}
.header .main-nav {
  display: flex;
}
@media (max-width: 767px) {
  .header .main-nav {
    margin: auto;
  }
}
.header .main-nav > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72px;
  position: relative;
  color: #454545;
  padding: 0 30px;
  overflow: hidden;
  font-size: 18px;
  transition: var(--main-transition);
  cursor: pointer;
  font-weight: bold;
}
@media (max-width: 767px) {
  .header .main-nav > li > a
 {
  font-size: 9px;
  padding: 0 5px;
  }
}
.header .main-nav > li > a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--main-color);
  top: 0;
  left: -100%;
  transition: var(--main-transition);
}
.header .main-nav > li > a:hover {
  color:var(--main-color);;
  background-color: #fafafa;
}
.header .main-nav > li > a:hover::before {
  left: 0;
  color:var(--main-color);;
}
/* End Header */

/* Start nav */

.nav .container{
  max-height: 500px;
  padding: 15px 15px;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  padding-top: 30px;
}
@media (max-width: 768px) {
   .nav .container {
    flex-direction: column;
    align-items: center;
  }
}
.nav .content{
  max-width: 500px;
}
@media (max-width: 768px) {
  .nav .content {
    text-align: center;
 }
}
.nav .content h2{
  font-size: 35px;
  margin: 0px;
  color: #555;

}
@media (max-width: 768px) {
  .nav .content h2 {
    font-size: 25px;
 }
}
.nav .content p{
  line-height: 1.6;
  color: #555;
}
.nav img{
  width: 500px;
  height: 300px;
  border-radius: 2%;
}
@media (max-width: 768px) {
  .nav img {
    width: 300px;
    height: 200px;;
 }
}
/* End nav */

/* Start inf */
.inf {
  width: 100%;
}
.inf .container{
  margin: 0px;
  width: 100%;
  padding: 0;
}
.inf .container .prog{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 30px;
  background-color: white;
}
@media (max-width: 768px) {
  .inf .container .prog {
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px;
 }
}
.inf .container .prog li {
  display: flex;
  flex-wrap: nowrap;
  color: var(--main-color);
  align-items: center;
  padding: 20px;
}

@media (max-width: 768px) {
  .inf .container .prog li {
    padding: 13px;
    border: 0px;
 }
}

.inf .container .prog li span{
  color: var(--main-color-second);
  margin:0px 5px ;
}
.inf .container .prog img   {
  width: 25px;
  margin:0px 5px ;
}
.inf .container .prog li svg{
  margin:0px 5px ;
  width: 25px;
  height: 25px;
  color: var(--main-color);
}
.inf .container .inc{
  line-height: 1.8;
  padding: 10px 20px  10px 25px;
  display: flex;
}
@media (max-width: 768px) {
  .inf .container .inc{
    flex-direction: column;
 }
}
.inf .container .inc .content{
  padding-right: 10px;
}
.inf .container .inc .content .includ li i{
  color: green;
  font-size: 16px;
  margin-left: 5px;
}
.inf .container .inc .content .notInclude li i{
  color: red;
  font-size: 16px;
  margin-left: 5px;
}
/* End inf */
/* Start Footer */
.footer {
  padding: 40px 0 40px;
  background-color: #f1f1f1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .footer {
    text-align: center;
  }
}
.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  align-items: center;
}
@media (max-width: 767px) {
  .footer .container {
    gap: 20px;
  }
}
.footer .box:first-child{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-right: -100px;
}
@media (max-width: 767px) {
  .footer .box:first-child {
    margin-right: 0px;
  }
}
#Group_1_Image2 {
  width: 350px;
  height: 179.92px;
  margin: 0PX;
  padding: 0px;
}
.footer .box .social {
  display: flex;

}
@media (max-width: 767px) {
  .footer .box .social {
    justify-content: center;
  }
}
.footer .box .social li {
  margin-right: 10px;
}
.footer .box .social li a {
  color: black;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  transition: var(--main-transition);
  border-radius: 50%;
}
.footer .box .social li a{
  font-size: 30px;
}
.footer .box .social  i{
  color: var(--main-color);
}
.footer .box .social  .x{
  width: 30px;
}
.footer .box h4{
  color: var(--main-color);
  font-size: 23px;
  margin: 0;
  padding: 0;
  font-weight: normal;
  margin-bottom: 15px;
}
.footer .box .text {
  line-height: 2;
  color: var(--main-color);
  font-size: 23px;
}
.footer .box .links li {
  padding: 15px 0;
  transition: var(--main-transition);
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 992px) {
  .footer .box .links {
    justify-content: center;
  }
}
.footer .box .links li i {
  font-size: 28px;
  margin: 0 0 0 5px;
  color: var(--main-color-second);
}
.footer .box .links li .fa-envelope  {
  font-size: 30px;
}
.footer .box .links li .fa-whatsapp   {
  font-size: 35px;
}
.footer .box .links li:hover {
  padding-left: 10px;
}
.footer .box .links li a {
  color: var(--main-color);
  transition: var(--main-transition);
}
.footer .form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 50%;
}
@media (max-width: 991px) {
  .footer .form {
    flex-basis: 100%;
  }
}
.footer .form .input {
  color: black;
  border: 2px solid var(--main-color);
  border-radius: 10px;
  padding: 10px 25px;
  min-height: 43px;
  background: transparent;
  width: 100%;
  margin-bottom: 10px;
  
}
.footer .form .input:focus {
  outline: none;
}
.footer .form [type="submit"] {
  display: block;
  width: 100%;
  padding: 15px;
  background-color:var(--main-color-second);
  color: white;
  font-weight: bold;
  font-size: 20px;
  border: none;
  cursor: pointer;
  transition: var(--main-transition);
}

.footer .content {
  text-align: center;
  padding: 0 10px;
}
.footer .content h2 {
  font-size: 25px;
  color:var(--main-color);
}
/* start copyrights */
.copyrights{
  background-color: #f1f1f1;
  padding: 10px;
}
.copyrights .container{
  text-align: center;
  color: var(--main-color);
}
.copyrights .container .copy {
  font-size: 20px;
}

/* end copyrights */

/* End Footer */
/* Start Animation */
@keyframes left-move {
  50% {
    left: 0;
    width: 12px;
    height: 12px;
  }
  100% {
    left: 0;
    border-radius:  3px 0px 0px 3px;
    width: 50%;
    height: 100%;
  }
}
@keyframes right-move {
  50% {
    right: 0;
    width: 12px;
    height: 12px;
  }
  100% {
    right: 0;
    border-radius: 0px 3px 3px 0px;
    width: 50%;
    height: 100%;
  }
}
@keyframes moving-arrow {
  100% {
    transform: translateX(-10px);
  }
}
/* End Animation */
