*{
    box-sizing: border-box;
}
  
@font-face {
    font-family:"JF Flat Regular";
    src: url("../JF_Flat.ttf");
}

/* RESET/BASIC STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html{
  scroll-behavior: smooth;
}
   
body {
    margin: 0;
    font-family: 'JF Flat Regular', sans-serif;
    direction: rtl;
    font-size: 16px;
    color: #444;
    background-color: #fff;
}
  
a {
    text-decoration: none;
} 

/*header*/
.header{
    display:flex;
    flex-direction: column;
    height: 650px;
    width:100%;
    background-color: #4bc4db;
}

.header .top-menu{
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 18%;
    width:100%;

}
.header .row-header{
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 70%;
    width:100%;
}
.header .right-header {
    display:flex;
    flex-direction: column;
    align-items: right;
    flex-wrap: wrap;
    height: 100%;
    width:50%;


}

.header .left-header{
    display:flex;
    flex-direction: column;
    align-items: left;
    flex-wrap: nowrap;
    height: 100%;
    width:50%;

}

.header .left-header .Big-gif{
  display:inline-flex;
  flex-direction: row;
  align-items:center;
  justify-content: flex-start;
  height: 90%;
  width:90%;
  background-color: #272734;
  border-radius: 5px;
  border-bottom-right-radius: 500px;
  border-top-left-radius: 5px;



}


.header .left-header .Big-gif img{
  height: 100%;
  width: 100%;
  object-fit: contain;
 /* animation: slideLeft 6s  infinite;*/
}


@keyframes slideLeft {
  0%  { 
    transform: translateX(100%); 
  }

  

  100%  { 
    transform: translateX(0%); 
  }


  0% { 
    transform: translateX(-100%); 
  }
}




.header .Big-Title{
    display:flex;
    flex-direction: row;
    align-items: right;
    justify-content: flex-start;
    flex-wrap: wrap;
    height: 60%;
    width:100%;
   padding-top:30px;

}

.header .Big-Title h2{
    color: #fff;
    font-size: 35px;
    word-wrap: break-word;
    text-align: right;
    padding: 8px 30px ;
    margin: 2px;
    animation: showup 4s infinite;
}


.header .Big-Title p{
    color: #333;
    font-size: 19px;
    text-align:right;
    padding: 2px 30px ;
    margin: 2px;
    word-wrap: break-word;
}



.header .buttons{
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: 30%;
    width:100%;
    padding-right:20px;

}

.header .button{
    width: 40%;
    padding: 10px 7px;
    margin: 12px;
    background-color: #272734;
    border-radius: 5px 5px 5px 5px;
    text-align: center;
    border:none;
    color:white;
    font-family: 'JF Flat Regular', sans-serif;
    cursor:pointer;
    font-size: 16px;
}


.header .button:hover{
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(2px);
    transition: 200ms;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
    border: 1px solid #fff;

}

.header .button i {
    font-size: 16px;
}

.header .button .fa-apple {
    font-size: 22px;
}


/*advanced menu*/

.set-menu {
    font-family: 'JF Flat Regular', sans-serif;
    display:flex;
    flex-direction:row;
    justify-content:flex-end;
    width:80%;
    position: relative;
  }
  
  
  .set {
    font-family: 'JF Flat Regular', sans-serif;
    color:#fff;
    position: absolute;
    left:0;
    font-size:15px;
    background:#000;
    border-radius:0px;
    list-style:none;
    display:inline;
  }
  
  
  .set-menu-content {
    font-family: 'JF Flat Regular', sans-serif;
    display: none;
    position: absolute;
    left:0px;
    top:60px;
    width: 100%;
    height:90px;
    z-index: 4;
    flex-direction: column;
  }
  
  .set-menu-content a{
    font-family: 'JF Flat Regular', sans-serif;
    color:#fff;
    width:100%;
    height:100%;
    text-align:center;
    display:flex;
    flex-direction: row;
    align-Items:center;
    justify-content:center;
    text-decoration:none;
    font-size:15px;
  
  }
  
  .set-menu-content a:hover{
    color:#4bc4db;
    border: 1px solid #4bc4db;
  }
  
  
  .set-menu:hover .set-menu-content {
    display: flex;
  }
  
  *{
    outline: none;
  }
  

.solve{
    display: flex;
    flex-direction: column;
    height: 150px;
    width:100%;
    position: relative;
    background-color: #4bc4db;
    margin-top: 60px;
    margin-bottom: 180px;
}

.solve .row{
    display: flex;
    flex-direction: row;
    height: 180px;
    width:100%;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50px;


}

.solve .numbers{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width:16%;
    border-radius: 0px;
    margin: 12px 10px;
   background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(2px);
  transition: 200ms;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
    
    z-index:2;
    cursor: pointer;

}
/*
.solve .numbers:hover{
    transform: translateY(50px);
}
*/

.solve h1{
    color: #fff;
    font-size: 34px;
    margin:2px;
}

.solve h2{
    color: #272734;
    font-size: 20px;
}

/*about*/
.about{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 220px;
    width:100%;
    position: relative;
  
}

/*.about h2{
    color:#333;
    margin: 4px;
    padding: 4px;
    font-size: 35px;
   
    animation: showup 4s infinite;

}*/

.about .about-circles{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 90%;
    width:80%;
    position: absolute;
    top: -55px;
}

.about .circles{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width:30%;
}
.about .c1{
    justify-content: center;
}

.about .c2{
    justify-content: center;
}

.about .c3{
    justify-content: center;
}
.about .circle{
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    width:120px;
    height:120px;
    background-color: #ffff;
    border: 2px solid #4bc4db;
    border-radius: 50%;
    cursor: pointer;
}

.about .circle-glass{
    display:none;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    width:80%;
    height:80%;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(2px);
  transition: 200ms;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
    z-index: 4;

}

.about .circle i{
    text-align: center;
    font-size: 35px;
    color: rgba(255, 255, 255, 0.8);
    color: #4bc4db;
    animation: reveal 3s infinite;
}

.about .circle-text{
    display:flex;
    flex-direction:row;
    align-items: center;
    justify-content: center;
    width:260px;
    height:70px;
    margin: 5px;
    background-color: #fff;
    border: 2px solid #4bc4db; 
    border-radius: 5px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    cursor: pointer;
   

}

.about .circle-text-glass{
    display:flex;
    flex-direction:row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height:70%;
    margin: 20px 12px;
    border:1px solid #4bc4db;
    border-radius: 5px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(2px);
    transition: 200ms;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
    z-index: 4;
   display: none;
}

.about .circle-text h2{
    color: #272734;
    font-size: 17px;
    margin:0;
    padding:0;
    text-align: center;
}


/*features*/
.features{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 500px;
    width:100%;
    color: #edf0f1;
    padding-top: 10px;
}

.features  .big-column{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 70%;
    height: 100%;
}

.features  .row{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-bottom: 0px;
    
}

.features h2{
    color: #333;
    font-size: 35px;
    text-align: center;
    padding:0;
    margin:0;
    animation: showup 4s infinite;
}


.features ul {
  list-style: none;
}

.features a {
  color: inherit;
  text-decoration: none;
}


.features .nav {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  width: 300px;
  border-radius: 5px 5px 25px 25px;
  background: #fff;
  backdrop-filter: blur(2px);
  transition: 200ms;
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.features .nav [type="checkbox"] {
  position: absolute;
  
}

.features .nav [type="checkbox"] + label {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 1;
  background: #272734;
  
  border-radius: 50%;
  transform: translateY(-40%);
  transition: all 0.2s;
}


.features .nav [type="checkbox"] + label:hover {
  background: #272734;
}


.features .menu li {
  position: absolute;
  text-align: center;
  top: -25px;
  left: 50%;
  transform: translateX(80%);
  transition: all 0.4s;
}

.features .menu li:nth-child(1) {
  transition-delay: 0.2s;
}

.features .menu li:nth-child(2) {
  transition-delay: 0.15s;
}

.features .menu li:nth-child(3) {
  transition-delay: 0.1s;
}

.features .menu li:nth-child(4) {
  transition-delay: 0.05s;
}

.features .menu li a {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #4bc4db;
}

.features .menu li a span {
  position: absolute;
  top: 8px;
  left: 0;
  text-align: center;
  transform: translateX(calc(-100% - 9px));
  width: 100%;
  font-size: 15px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  color: #444;
}

.features .nav input:checked + label {
  background: #272734;
  transform: translateY(calc(-50% + 4px));
}

.features .nav input:checked ~ .menu li:nth-child(1) {
  top: -250px;
  transition-delay: 0.1s;
}

.features .nav input:checked ~ .menu li:nth-child(2) {
  top: -190px;
  transition-delay: 0.2s;
}

.features .nav input:checked ~ .menu li:nth-child(3) {
  top: -130px;
  transition-delay: 0.3s;
}

.features .nav input:checked ~ .menu li a span {
  opacity: 1;
  transition-delay: 0.9s;
}

/*learning*/
.learning{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 520px;

}

.learning h2{
  color:#333;
  font-size: 30px;
}

.learning .sub-learning{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60%;
  height: 100%;

}

.learning iframe{
   width: 100%;
   height: 100%;
}

/*call*/
.call{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 500px;

}

.call .call-wrapper{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 60%;
  height: 70%;
  border: 2px solid #4bc4db;
  background-color: #fff;
  border-radius: 0px;
  border-top-right-radius: 80px;
  border-bottom-left-radius: 80px;
  
}
.call .call-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 50%;

}
.call .call-img{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
}

.call .img-cover{
  display: inline-flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.call img{
  position: absolute;
  left:60px;
  height: 100%;
  width:55%;

}

.call .text-cover{
  display: inline-flex;
  flex-direction: column;
  align-items: right;
  justify-content: center;
  width: 100%;
  height:50%;
  padding:20px;
}


.call .buttons{
  display:flex;
  flex-direction: column;
  align-items: right;
  justify-content: center;
  height: 50%;
  width:100%;


}

.call .button{
  width: 60%;
  padding: 10px 7px;
  margin: 0px 12px;
  background-color:#272734;
  border-radius: 5px 5px 5px 5px;

  text-align: center;
  border:none;
  color:white;
  font-family: 'JF Flat Regular', sans-serif;
  cursor:pointer;
  font-size: 16px;
}

.call .button:hover{
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(2px);
  transition: 200ms;
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
  border: 1px solid #fff;
 background-color: #4bc4db;
}

.call .button i {
  font-size: 18px;
}


/*social media vertical*/
.icon-bar {
  position: fixed;
  top: 70%;
  transform: translateY(90%);
  z-index:2;
}

.icon-bar a {
  display: block;
  text-align: center;
  padding: 12px;
  transition: all 0.3s ease;
  color: white;
  border-top-left-radius:5px;
  border-bottom-left-radius: 5px;
  background-color: #272734;
  font-size: 16px;
  transition:all 0.25s ease-in-out;
}

.icon-bar a:hover{
  margin-left:-100px;
}

.icon-bar a:hover {
  color: #4bc4db;
  background-color: #fff;
  border: 2px solid #4bc4db;
}

.icon-bar i{
  font-size: 18px;
}

.icon-bar .fa-mobile-alt{
  font-size: 22px;
}



/*contact*/
.contact{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 850px;
  width: 100%;
  background-color: #4bc4db; 
  padding-top: 30px;

}


.contact h2{
  font-size: 35px;
  color: #fff;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 0px;
  margin: 0;
  animation: showup 4s infinite;
}

.contact p{
  color: #444;
  font-size: 16px;
  text-align: right;
  padding: 12px 20px;
}



.contact .clients-forms{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60%;
  height: 100%;
  
}



.contact form{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: right;
  height: 100%;
  width: 100%;
}

.contact label{
  text-align: right;
  color: #333;
}


.contact .input{
  font-family: 'JF Flat Regular', sans-serif;
 border-radius: 5px;
  width: 80%;
  color: #333;
  padding: 12px 20px;
  margin: 12px 0px 4px 0px;
  font-size: 15px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
  z-index: 5;
  border: none;
  backdrop-filter: blur(4px);  
  
  background-color: #fff;
}



.contact #phone_no{
   text-align: right;
}




.contact #send-btn{
  font-family: 'JF Flat Regular', sans-serif;
  border-radius: 5px 5px 5px 5px;
  border: none;
  width: 33%;
  color: #fff;
  padding: 10px;
  margin: 30px 0px 20px 0px;
  font-size: 15px;
  background-color: #272734;
  cursor:pointer;
  backdrop-filter: blur(2px);
  transition: 200ms;
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
  

}

.contact #send-btn:hover{
  background-color: #4bc4db;
  border: 1px solid #fff;
  color:#fff;
}

#charCount{
  margin: 0px 0px 20px 0px;
  padding: 0px;
}



/*footer*/
.footer{
    height: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #272734;
    color: #fff;
    z-index: 4;
  }

  .footer .middle {
    display: flex;
    flex-direction: column;
    width: 30%;
    align-items: right;
    justify-content: center;
    padding: 12px 60px;
    margin:0;
   
  }
  .footer .first a{
    font-size: 14px;
    padding: 5px;
    color: #4bc4db;
  }

  .footer .first a:hover{
    color: #fff;
  }

  .footer .center{
    align-items:center;
    border: none;
  }

  .footer .center img{
    height:20%;
    width:20%;
  }

  .footer .last{
    align-items: left;
    border: none;
    font-size: 15px;
  }



  .footer .banner{
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    padding: 20px 0px 0px 0px ;

  }

  .footer .banner a{
    padding :16px;
    margin:10px;
   border-radius: 0px;
    color: #fff;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(2px);
  transition: 200ms;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);

  }

  .footer .banner a:hover{
     background-color: #4bc4db;
     color: #ffff;
  }



  .footer .fab{
    font-size: 20px;
  }

  .footer  .middle .icon{
    font-size:18px;
    padding: 5px 7px;
    
  }

  .footer  a:hover{
    color: #4bc4db;
  }

  .footer a{
    color:#fff;
    text-decoration: none;
  }

.footer .footer-info{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 85%;
    background-color: #0000;
    color:#fff;
    
}

.footer .copyright{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 15%;
    background-color: #0000;
    color:#fff;
    font-size: 14px;
    border-top: 1px solid #888;
    
}


.footer .first a:hover{
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(2px);
  transition: 200ms;
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
  border: 1px solid #fcfcfc;
  border-radius: 5px;
  padding: 10px 5px;
  text-align:center;

}

.footer .first .button i {
  font-size: 16px;
}

.footer .first .button .fa-apple {
  font-size: 22px;
}


@keyframes showup {
    0% {opacity:0;}
    20% {opacity:1;}
    80% {opacity:1;}
    100% {opacity:0;}
}

@keyframes reveal {
    0% {opacity:0;width:0px;}
    20% {opacity:1;width:100%;}
    30% {width:100%;}
    80% {opacity:1;}
    100% {opacity:0;width:100%;}
}


.edit_buttons{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 20%;
  position: relative;
  border: 1px solid #333;
}

.edit_buttons .button{
  display: inline-flex;
  position: absolute;
  width: 40%;
  padding: 10px 7px;
  margin: 12px;
  background-color:#272734;
  border-radius: 5px 5px 5px 5px;
  text-align: center;
  border:none;
  color:white;
  font-family: 'JF Flat Regular', sans-serif;
  cursor:pointer;
  font-size: 16px;

}

  /*pagination*/
  .pagination {
    display: flex;
    flex-direction: row;
    align-Items: center;
    justify-content: center;
    padding:12px;
    padding-bottom:30px;
  
  }
  
  /*pagination */
  .pagination a {
    text-decoration: none;
    border: 1px solid #999;
    color: #111;
    padding: 8px 12px;
    margin: 0 2px;
    font-size: 16px;
    border-radius: 2px;
  }
  
  .pagination a.active {
    background-color: SandyBrown;
    color: #fff;
  }
  
  .pagination a:hover:not(.active) {
    background-color: LightSlateGray;
    color: #fff;
  }
  
  
  


