@import url(./bootstrap.min.css);
@import url(./bootstrap.min.css.map);
@import url(./owl.carousel.min.css);
@import url(./all.min.css);
@import url(./svg_icons.css);
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;400;500;600;700;800&display=swap');

:root {
  --main_bgColor: #ffffff;
  --btnColor: #000;
  --textColor: #32045b;
  --Secondary-color:#3098e8;
  --bgColor: #F2EFEB;
  --pragrafColor: #666;
  --body_bgColor: #ffffff;
  --main_borderColor: 1px solid rgba(0, 0, 0, 0.589);
}

::-webkit-scrollbar {
  width: 10px;

}


::-webkit-scrollbar-track {
  background-color: transparent;
  box-shadow: 0 20px 40px rgb(0 0 0 / 25%);
}

::-webkit-scrollbar-thumb {
  background-color: var(--Secondary-color);
  border-radius: 5px;
  transition: all ease-in-out .3s;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--btnColor);
}
.link_button {
  padding: 10px 50px;
  color: var(--body_bgColor);
  background-color: var(--textColor);
  border-radius: 5px;
  transition: all ease-in .3s;
}
 .link_button:hover{
  background-color: var(--body_bgColor) !important;
  border: var(--main_borderColor) !important;
  color: var(--textColor) !important;
 }

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}
a{
    text-decoration: none;
}
li{
    list-style: none;
}
ul{
    padding: 0;
}
img{
    width: 100%;
}


/* NAVIGATION */

.navbar {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  height: 75px;
  overflow: hidden;
  padding: 0 5%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  z-index: 5451515151;
}

.navbar img {
  width: 120px;
  height: 60px;
  justify-self: start;
}

.navbar ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-self: end;

}

.nav-item a {
  color: var(--body_bgColor); 
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease-out;
}
.nav-item svg{
  color: #25D366;
  margin:  0 20px;
  font-size: 30px;
}
.nav-item a:hover {
  color: var(--btnColor);
}
.no-search {
  transform: translate(0);
  transition: transform 0.7s ease-in-out;
}
/* MOBILE MENU   */
.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #3f3f3f;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu-toggle {
  justify-self: end;
  margin-left: 25px;
  display: none;
}
.menu-toggle:hover {
  cursor: pointer;
}
#mobile-menu.is-active .bar:nth-child(2) {
  opacity: 0;
}
#mobile-menu.is-active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#mobile-menu.is-active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

 .fix {
   background-color: var(--textColor);
   position: fixed !important;
   height: 70px !important;
   transition: all .5s linear;
   padding: 0 5%;

 }

 @keyframes tranz_nav {
   0% {
     transform: translateY(-100px);
   }

   100% {
     transform: translateY(0px);
   }
 }


/* Mobile Devices - Phones/Tablets */
@media only screen and (max-width: 720px) {
  .features {
    flex-direction: column;
    padding: 50px;
  }

  /* MOBILE HEADINGS */

  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1rem;
  }

  p {
    font-size: 0.8rem;
  }

  /* MOBILE NAVIGATION */

  .navbar ul , .fix ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    justify-content: start;
    top: 55px;
    background-color: var(--textColor);
    width: 100%;
    height: calc(100vh - 55px);
    transform: translate(-101%);
    text-align: center;
    overflow: hidden;
  }

  .navbar li {
    padding: 15px;
  }

  .navbar li:first-child {
    margin-top: 50px;
  }

  .navbar li a {
    font-size: 1rem;
  }

  .menu-toggle,
  .bar {
    display: block;
    cursor: pointer;
  }

  .mobile-nav {
    transform: translate(0%) !important;
  }

  /* SECTIONS */

  .headline {
    height: 20vh;
  }

  .feature-container p {
    margin-bottom: 25px;
  }

  .feature-container {
    margin-top: 20px;
  }

  .feature-container:nth-child(2) {
    order: -1;
  }

  /* SEARCH DISABLED ON MOBILE */

  #search-icon {
    display: none;
  }

  .search-input {
    display: none;
  }

}
/* home ////// */
/* s1 home */
.S1_home{
  background-image: url(../img/S1_home_bg.png);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  height: 100vh;
  position: relative;
  z-index: 1; 
  padding-top: 70px;
}
.S1_home::after{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: #00000027;
  z-index: -1;
}
.S1_home .image img{
  width: 70%;
}
.S1_home .image{
  animation-name: tranz;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes tranz {
  0% {
  transform: translate(30px , 30px);
  }

  50% {
  transform: translate(0px , 0px);
  }

  100% {
  transform: translate(30px , 30px);
  }

}
.S1_home .box{
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}
.S1_home .box h1{
  font-size: 50px;
  color: var(--textColor);
  margin-bottom: 30px;
}
.S1_home .box p{
  margin: 20px 0;
  color: var(--pragrafColor);
  font-size: 18px;
}
.S1_home .box a{
  padding: 10px 50px ;
  background-color: var(--btnColor);
  color: var(--body_bgColor);
  border-radius: 5px;

}
.S2_home{
  padding: 70px 0;
  background-color: var(--bgColor );
}
.S2_home .box{
  display: flex;
  border: var(--main_borderColor);
  border-radius: 5px;
  padding: 10px ;
  margin: 20px 0;
}
.S2_home .box svg{
  font-size: 50px;
  margin: 0 20px;
  color: var(--Secondary-color);
}
.S2_home .box h4{
  color: var(--textColor);
  margin-bottom: 20px;
}
/* S3_home */
.S3_home{
  padding: 70px 0;
}
.S3_home .box {
  padding: 50px;
}
.S3_home .box img{
  width: 70%;
  margin: auto;
  display: block;
}
.S3_home .box h3{
  margin: 20px 0;
  color: var(--textColor);
}
.S3_home .box p{
  margin-bottom: 30px;
}
.S3_home .box a{
  padding: 10px 50px;
  color: var(--body_bgColor);
  background-color: var(--textColor);
  border-radius: 5px;

}
/* S4_home */
.S4_home{
  padding: 70px 0;
  background-image: url(../img/S4_home_img.webp);
  background-position: center;
  background-size: cover;
  position: relative;
}
.S4_home::after{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: #000000bf;
}

#counter {
  background: rgba(black, .05);

  margin: 0 auto;
  display: flex;
  justify-content: space-between;


}
 #counter li {
    flex: 1;
    text-align: center;
    font-size: 50px;
    z-index: 5;
    color: var(--body_bgColor);
  }


/*footer  */
.footer{
  padding: 70px 0;
  background-color: var(--textColor);
}
.footer img{
  width: 150px !important;
}
.footer h3{
  color: var(--body_bgColor);
  margin-bottom: 40px;
}
.footer p{
  color: var(--body_bgColor);
  margin: 20px 0;
}
.footer form input ,.footer form textarea{
  width: 100%;
  margin: 10px 0;
  border: 1px solid #ffffff;
  border-radius: 5px ;
  background-color: transparent;
  padding: 0 20px ;
}
.footer form button{
  width: 100%;
  border: none;
  border-radius: 5px;
  background-color: var(--body_bgColor);
  color: var(--btnColor);
  padding: 10px 0;
  margin-top: 10px;
}
.footer li {
  margin: 20px 0;
  color: var(--body_bgColor);
}
.footer li a{
  margin: 10px 0;
  transition: all ease-in .3s;
  position: relative;
  
  color: var(--body_bgColor);
  font-size: 18px;
}
.footer .sochial , .footer .timeing{
  display: flex;

}
.footer .timeing{
  padding-left:  50px;
  display: flex;
  justify-content: space-between;
}

.footer .sochial svg{
  font-size: 20px;
  margin: 0 5px;
}
.last_foot{
  margin-top: 40px;
  border-top: 1px solid #3f3f3f;
}
.last_foot ul{
  display: flex;
  justify-content: space-between;
}

/* intro */
.intro{
  text-align: center;
  padding: 50px 0;

}
.intro h3{
  font-size: 32px;
  color: var(--textColor);
  margin-bottom: 20px;
}

/* S1_about */
.S1_about{  
  padding: 70px 10% !important;
}
.S1_about .image{
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 20px;
}
.S1_about .image::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  background-color: var(--Secondary-color);
  border-radius: 50%;
  z-index: -1;
  animation-name: tranz;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.S1_about img{
  width: 400px;
  z-index: 2;
  margin: auto;
}
.S1_about .box {
  margin: 30px 0;
  display: flex;
  padding: 25px;
  border-radius: 5px;
  background-color: var(--bgColor);
}

.S1_about .box svg{
  color: var(--Secondary-color);
  font-size: 50px;
  margin-left: 20px;

}
.S1_about .box h4{
  color: var(--textColor);
  margin-bottom: 20px;

}
/* S2_about */
.S2_about {
  padding: 70px 0;
  background-color: var(--bgColor);
}
.S2_about .accordion-item:first-of-type .accordion-button{
  color: var(--textColor);
  border-radius: 5px;
    
}
.S2_about h3{
  margin-bottom: 30px;
  color: var(--textColor);
}
.S2_about p{
  margin-bottom: 50px;
}
/* S1_blog */
.S1_blog{
  padding: 70px 0;
}
.S1_blog .blog_box{
  padding: 25px;
}
.S1_blog .blog_box img{
  border-radius: 100px;
  padding: 25px;
}
.S1_blog .blog_box span{
  color: var(--pragrafColor);
}
.S1_blog .blog_box span svg{
  color: var(--Secondary-color);
  margin: 0 5px;
}
.S1_blog .blog_box h3{
  color: var(--textColor);
  margin: 20px 0;
}
.S1_blog .blog_box p{
  color: var(--pragrafColor);
  margin: 20px 0;
  margin-bottom: 40px;
}

.Pagination{
  margin: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Pagination h4{
  padding: 5px;
  background-color: var(--textColor);
  color: var(--body_bgColor);
  border-radius: 5px;
  margin: 0 10px;
  font-size: 16px;
}
.S1_blog .box{
  margin: 20px 0;  
}
.S1_blog .box h3{
  margin: 20px 0 ;
  color: var(--textColor);
}
.S1_blog .catt ul li a{
  padding: 10px;
  margin: 20px 0;
  display: block;
  text-align: center;
  background-color: var(--Secondary-color);
  border-radius: 5px;

}
.S1_blog ul li a{
  color: var(--body_bgColor);
}
.S1_blog .row_blog {
  display: flex;
  margin: 20px 0;
}
.S1_blog .row_blog .contant{
  margin-left: 20px;
}
.S1_blog .row_blog img{
  width: 70px;
  height: 70px;
  border-radius: 5px;
}
.S1_blog .row_blog a{
  font-size: 18px;
  color: var(--textColor);
  transition: all ease-in .3s;
}
.S1_blog .row_blog a:hover{
  color: var(--Secondary-color);
}
 .time li{
  color: var(--textColor);
  margin: 20px 0;
  font-size: 18px;
}

.comments {

  padding: 70px 0;
}

.comments ul {
  display: flex;

}

.comments .box {
  width: 50%;
}

.comments ul img {
  width: 70px !important;
  height: 70px;
  border-radius: 50%;
  padding: 0;
  border: 1px solid var(--Secondary-color);
}

.comments ul li {
  margin-left: 20px;
}

.comments ul li span {
  color: var(--Secondary-color);
}

.comments ul li h4 {
  margin: 5px 0;
  padding: 0;
}

.comments ul li p {
  color: var(--P-color);
}

.comments .form {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}

.comments .form input {
  border: none;
  margin: 10px 0;
  background-color: var(--bgColor);
  border-radius: 5px;
  height: 40px;
  border: var(--main_borderColor);
  padding: 10px;
}

.comments .form textarea {
  border: none;
  margin: 10px 0;
  background-color: var(--bgColor);
  border-radius: 5px;
  border: var(--main_borderColor);
  padding: 10px;
}

.comments .form button {
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  color: var(--textColor);
  background-color: var(--Secondary-color);
  margin-top: 20px;
}

.contact_us {
  padding: 70px;
  padding-top: 250px;
  text-align: center;
}

.contact_us h1 {
  color: #2b044d;
  font-size: 40px;
  margin-bottom: 70px;

}

.form {
  padding: 70px 0;
  padding-bottom: 150px;
}

.form .input-group {
  margin-bottom: 30px;
}

.form textarea {
  padding-left: 30px;
  border-radius: 0;
}

.form textarea::placeholder {
  font-size: 14px;
  color: #a999b0;
}

.form input {
  border-radius: 0;
  margin: 10px 0;
}

.form input::placeholder {
  font-size: 14px;
  color: #a999b0;
}

.form button {
  margin-top: 30px;
  padding: 15px 50px;
  background-color: transparent;
  color: var(--textColor);
  transition: all ease .3s;
  border: 1px solid var(--Secondary-color);
}

.form button:hover {
  background-color: var(--Secondary-color);
  color: #fff;
}

.form .all_right {
  display: flex;
  margin: 40px 0;
  padding-left: 100px;
  padding-top: 30px;
}

.form .all_right svg {
  color: #8f9195;
  font-size: 27px;
  margin-left: 20px;
}

.form .all_right h3 {
  font-size: 16px;
  color: #2a2a2a;
}
.form .all_right a{
  color: var(--textColor);
}
.form .all_right p {
  color: #8a8a8a;

}





@media only screen and (max-width: 720px){
.S1_home .box h1{
  font-size: 24px;
}
p{
  font-size: 15px !important;
}

}

 /* loading-screan */
 .loading-screan {
   position: fixed;
   width: 100%;
   height: 100%;
   transition: all linear .3s;
   right: 0;
   top: 0;
   background-color: #ffffff;
   z-index: 6516516161651;
   display: flex;
   justify-content: center;
   align-items: center;
 }

.loader {
  width: 100px;
  height: 100px;
  border: 3px dotted #000000;
  border-style: solid solid dotted dotted;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 2s linear infinite;
}

.loader::after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px dotted #FF3D00;
  border-style: solid solid dotted;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  animation: rotationBack 1s linear infinite;
  transform-origin: center center;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}
 
.intro_sections{
  padding: 70px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--textColor);

}
.intro_sections h1{
  font-size: 52px;
  color: var(--body_bgColor);
}
.intro_sections p{
  color: var(--body_bgColor);
  margin: 30px 0;
}
.intro_sections ul{
  display: flex;

}
.intro_sections ul li a{
  margin: 0 10px;
  color: var(--body_bgColor);
}
