* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Tajawal", sans-serif;
}

/*----- loeder window ----*/
.loader{
  background: #fff;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
position: fixed;
z-index: 9999;
}

.loader div{
  background: #fff;
  width: 16px;
  height: 32px;
  margin-left: 10px;
  animation: loader 1.2s infinite;
}

@keyframes loader{
  50%{
    height: 64px;
  }
}

.loader div:nth-child(1){
  background: #55266A;
  animation-delay: -0.40s;
}

.loader div:nth-child(2){
  background: #0AD8DD;
  animation-delay: -0.20s;
}

.loader div:nth-child(3){
  background: #55266A;
  animation-delay: 0s;
}


body {
  overflow-x: hidden;
}
/*------- scrool window---------*/
html::-webkit-scrollbar {
  width: 10px;
}
html::-webkit-scrollbar-track {
  background-color: #fff;
}
html::-webkit-scrollbar-thumb {
  background: #55266A;
  border: 1px solid #fff;
  border-radius: 5px;
}

/* ...........................this is header and navbar   ...........................*/
header {
  width: 100%;
  background-size: cover;
  overflow: hidden;
}

#header {
  width: 85%;
  margin: auto;
}

.navbar {
  background-color: #55266A;
  position: fixed;
  width: 100%;
  padding: 0.1rem 0;
  z-index: 1;
  transition: 0.6s;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar.sticky {
  background: #55266A;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  transition: 0.6s;
}

.navbar .logo img {
 margin-top: 10px;

  width: 140px;
  height: 45px;
}

.navbar .logo2 img {
  width: 200px;
  height: 60px;
  float: left;
  display: none;
  cursor: pointer;
}
.navbar .menu {
  position: relative;
  display: inline-block;
  float: right;
}
.navbar .menu li {
  margin: 18px 10px;
  list-style: none;
  display: inline-block;
}

.navbar .menu li a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  font-size: 15px;
  padding: 10px 15px;
  transition: 0.6s;
}
.menu li .sticky {
  color: #55266A;
}
.navbar .menu li a:hover {
  background: #0AD8DD;
  border-radius: 8px;
  color: #55266A;
}
.navbar .hamburger-icon {
  width: 40px;
  height: 40px;
  background-color: transparent;
  flex-shrink: 0;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  cursor: pointer;
  padding: 3px 0;
}
.navbar .hamburger-icon span {
  display: block;
  width:65%;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
}

/*---------- size navbar for mobile -----------*/
@media (max-width: 767px) {
  .navbar .nav {
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100vh;
    overflow-y: auto;
    background-color: #55266A;
    color: #0AD8DD;
    text-align: center;
    padding-top: 5rem;
    transition: right 0.12s ease;
  }
  .navbar .nav.active {
    right: 0;
  }
  .navbar .nav .hamburger-icon-close {
    position: absolute;
    left: 10px;
    top: 10px;
  }
  .navbar .nav .hamburger-icon-close span {
    position: absolute;
  }
  .navbar .nav .hamburger-icon-close span:first-child {
    transform: rotate(45deg);
  }
  .navbar .nav .hamburger-icon-close span:last-child {
    transform: rotate(-45deg);
  }

  .navbar .nav .menu {
    width: 100%;
    direction: rtl;
  }
  .navbar .nav .menu li {
    display: block;
    margin: 0;
  }
  .navbar .nav .menu li a {
    display: block;
    padding: 1rem 2rem;
  }
  .navbar .nav .menu li a:hover {
    border-radius: 0;
    padding-right: 3rem;
  }
  

}

@media (min-width: 768px) {
  .navbar .hamburger-icon {
    display: none;
  }
  .navbar .nav {
    display: block;
  }
}

/*--------------------------------- container for service ------------------------------*/
.content{
  width: 100%;
  background-color: rgb(226, 226, 226);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#service{
  width: 90%;
  margin: auto;
}

.digital-content{
  width: 100%;
  padding: 100px 25px;
  display: block;
}
.digital-content h1{
  text-align: center;
  font-size: 70px;
  font-weight: 800;
  margin: 20px auto;
  line-height: 100%;
}
.digital-content h2{
  text-align: center;
  font-size: 50px;
  font-weight:300;
  line-height: 60%;
}
@media(max-width:760px){
  .digital-content h2{
    font-size: 30px;
  }
  .digital-content h1{
    font-size: 40px;


  }
}
.digital-content p{
  text-align: center;
  width: 650px;
  margin: auto;
  font-size: 23px;
  border-radius: 15px;
  
}
#post-digital{
  width: 90%;
  margin: auto;
display: flex;
justify-content: center;
}

.post-digital{
  width: 230px;
  height: 480px;
  background:#fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin: 20px 12px;
  border-radius: 10px;
  display: inline-block;
  transition: 0.3s;
}
/*.new-line{
  display: block !important;

}*/
.post-digital:hover{
  border-bottom:  8px solid #55266A;
}
@media (max-width: 760px) {
  #post-digital{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .post-digital{
    width: 320px;
    height: 100%;
    margin: 15px auto;
  }
}
.post-digital h2{
  line-height: 120%;
  width: 200px;
  margin:  10px auto;
  text-align: center;
  font-size: 30px;
}
@media(max-width:760px){
  .post-digital h2{
    width:90%;
  }
}

.post-digital img{
  border-radius: 10px 10px 0px 0px;
  width: 230px;
}

@media(max-width:760px){
  .post-digital img{
    width: 100%;
  }
}



/* ...........................  this is footer website  ..........................*/

footer {
  width: 100%;
  background: #55266A;
}
.footer {
  margin: auto;
}
.container .footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .container .footer {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1rem;
  }
}
@media (max-width: 530px) {
  .container .footer {
    grid-template-columns: 1fr;
  }
  .container .footer > div {
    width: 90%;
  }
}

.footer h3 {
  font-size: 20px;
  color: #fff;
  padding: 15px 0px;
  margin: 10px 0px;
  font-weight: 200;
  position: relative;
}
.footer h3::after {
  content: " ";
  width: 50px;
  height: 1.8px;
  background: #0AD8DD;
  position: absolute;
  left: 0;
  bottom: 4px;
}

.fa {
  margin: 8px 5px 25px 0px;
  background: #fff;
  color: #55266A;
  padding: 10px 15px;
  border-radius: 10px;
  list-style: none;
  text-decoration: none;
  font-size: 30px;
  transition: 0.6s;
}
.fa:hover {
  background: #0AD8DD;
}
.fo-service {
  /* justify-content: center; */
  display: inline-block;
  color: #fff;
  /* margin: 35px 110px 0px 160px; */
}

.fo-service a {
  line-height: 110%;
  list-style: none;
  text-decoration: none;
  color: #fff;
  display: block;
  padding: 3px 0px;
  transition: 0.5s;
  font-style: normal;

}
.fo-service a:hover {
  color: #0AD8DD;
}
.fo-about {
  display: inline-block;
  color: #fff;
  /* margin: 35px 0px; */
  /* float: right; */
}
.fo-about p {
  width: 300px;
  text-align: left;
  list-style: none;
  text-decoration: none;
  color: #fff;
  display: block;
  padding: 3px 0px;
}
.copyright {
  /* width: 85%; */
  /* margin: auto; */
  margin-top: 120px;
  border-top: 1px solid rgb(209, 213, 219);
  padding-top: 30px;
}
.copyright .container {
  display: flex;
  justify-content: space-between;
}
.copyright .container > p {
  /* display: inline-block; */
  /* width: 300px; */
  border-radius: 10px 10px 0px 0px;
  background: #0AD8DD;
  text-align: center;
  font-size: 13;
  color: #55266A;
  padding: 3px 5px;
}


@media (max-width: 767px) {
  .copyright .container {
    flex-direction: column;
    gap: 1rem;
  }
  .copyright .container > p {
    border-radius: 10px;
  }
}

@media (max-width: 575px) {
  .container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 576px) {
  .container {
    width: 540px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1400px) {
  .container {
    width: 1320px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}



