html{
  scroll-behavior: smooth;
}
body{
    font-family: acumin-pro,sans-serif;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;

}
.gradient{
    background: linear-gradient(-60deg,#ea4d6d,#3c348b,#ea4d6d);
    background-size: 500% 500%;
    animation: gradient 7s ease infinite;
    
}
@keyframes gradient{
    0%{
        background-position: 0% 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0% 50%;
    }

}
.gradient2{
  background: linear-gradient(-60deg,#092433,#3c348b);
  background-size: 500% 500%;
  animation: gradient 7s ease infinite;
}
.sr-bg{
  background: #fff;
}
@keyframes gradient2{
  0%{
      background-position: 0% 50%;
  }
  50%{
      background-position: 100% 50%;
  }
  100%{
      background-position: 0% 50%;
  }

}

*{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
:root{
    --color-white:#ffffff;
    --container-width-lg:85%;
    --container-width-md:80%;
    --container-width-sm:75%;
    --transition:all 400ms ease ;

}
.container{
    width: var(--container-width-lg);
    margin: 0 auto;

}
section{
    padding: 6rem 0;
}
section h2{
    text-align: center;
    margin-bottom: 4rem;
}
h1 h2 h3 h4 h5{
    line-height: 1.2;
   
}
h1{
    font-size: 2.4rem;
}
h2{
    font-size: 2rem;
}
h3{
    font-size: 1.6rem;
}
h4{
    font-size: 1.3rem;
}
a{
    color:var(--color-white);
}
img{
    width: 100%;
    object-fit: cover;
}
.btn{
    display: inline-block;
    background-color:var(--color-white);
    color:#092433;
    padding: 1rem 2rem;
    border: 0.8px solid transparent;
    font-weight: 550;
    transition: var(--transition);
}
.btn:hover{
    background: transparent;
    color:#ffffff;
    border-color:var(--color-white);
}
.btn-primary{
    background:#092433;
    color: var(--color-white);
    font-size: 1.5rem;

}
.scrolltoTop{
    position: fixed;
    bottom: 4rem;
    right: 4rem;
    width: 3rem;
    height: 3rem;
    background: var(--color-white) url(../svg/arrow-up.svg);
    border-radius: 50%;
    background-size: 3rem;
    background-position: center;
    transition: 0.5s;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
}
.scrolltoTop.active{
    bottom: 1rem;
    visibility: visible;
    opacity: 1;
    transition: 0.5s;
}
.scrolltoTop:hover{
    background-color: #e84c6c;

}
/*--navbar--*/
nav{
    width: 100vw;
    height: 5rem;
    position: fixed;
    top: 0;
    z-index: 11;
    transition:0.5s ;
}
/**change the navbar style while scrolling using js**/

.window-scroll{
    background-color: #fff;
    box-shadow: 0 0.005px 8px 0.01px rgba(0,0,0,0.2);
    transition: 0.5s;
}

.nav__container{
    height: 100%;
    display: flex;
    justify-content:space-between;
    align-items:center;
    
}
nav button{
    display: none;
}
.logo{
    position: fixed;
    margin-top: 0.3rem;
 
  
}


.logo img{
  filter: brightness(0) invert(1);
  transition: 0.5s;
  cursor: pointer;
}
.logo2{
  position: fixed;
  margin-top: 0.3rem;
}
.logo2 img{
filter: brightness(0);
cursor: pointer;
transition: 0.5s;
}

.window-scroll .logo img{
    filter: brightness(1);
}
.window-scroll .logo2 img{
  filter: brightness(1);
}
.nav_menu{
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-left: 18rem;
}
.nav_menu  a span{
  color: #CFCFCF;
  transition: 0.5s;
}
.nav_menu a span:hover{
  color:#ea4d6d;
  transition: 0.5s;
}
.window-scroll .nav_menu a span {
  color:#ea4d6d;
  transition: 0.5s;
}

.window-scroll .nav_menu a span:hover{
  color: #000000;
  transition: 0.5s;
 }

.nav_menu a{
    position: relative;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-size: 1.2rem;
    transition: var(--transition)

}
.service-nav__menu a span{
  color: #CFCFCF;
  transition: 0.5s;
}
.service-nav__menu a span:hover{
  color:#000;
  transition: 0.5s;
}
.window-scroll .service-nav__menu a span:hover{
  color: #000000;
 }

 
.service-nav__menu{
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-left: 18rem;
}
.service-nav__menu a{
  position: relative;
  text-decoration: none;
  letter-spacing: 0.5px;
  font-size: 1.2rem;
  transition: var(--transition);
  color: #000;
  

}
.nav_menu a:after{
content: "";
position: absolute;
background-color: #fff;
height: 0.2rem;
left: 50%;
bottom: -0.5rem;
transition: 0.3s ease-out;
width: 0;
}

.service-nav__menu a:after{
  content: "";
  position: absolute;
  background-color:#3c348b;
  height: 0.2rem;
  left: 50%;
  bottom: -0.5rem;
  transition: 0.3s ease-out;
  width: 0;
  }
.window-scroll .nav_menu a:after{
    background-color: #3b3589;
}
.window-scroll .service-nav__menu a:after{
  background-color: #3b3589;
}
.nav_menu a:hover{
   color: #ea4d6d;
}
.service-nav__menu a:hover{
  color: #ea4d6d;
}
.nav_menu a:hover:after{
    width: 100%;
    left: 0;
    
}

.service-nav__menu a:hover:after{
  width: 100%;
  left: 0;
  
}
nav img{
    width: 15%;
}
.window-scroll .nav_menu a{
 color: #000000;
}
.window-scroll .nav_menu a:hover{
    color: #ea4d6d;
    
}
.window-scroll .service-nav__menu a:hover{
  color: #ea4d6d;
  transition: 0.5s;
}
.langselect{
 
  display:grid ;
    margin-right: -20rem;
 
}
.service-langselect{
  display:grid ;
    margin-right: -20rem;
   
}
.langselect a{
  margin-bottom:-3px;
}
.service-langselect a{
  margin-bottom:-3px;
}
.langselect #en{
  color: #CFCFCF;
  transition: 0.5s;
}
.langselect #ar{
  transition: 0.5s;
}
.langselect #ar:hover{
  color: #ea4d6d;
  transition: 0.5s;
}
.langselect #en:hover{
  color: #ea4d6d;
  transition: 0.5s;
}
.service-langselect #en{
  color: #CFCFCF;
}
.service-langselect #ar{
  color: #000;
}
.window-scroll .langselect #ar{
  color: #000;
}
.window-scroll .langselect #en{
  color: #cfcfcf;
}

.window-scroll .langselect #ar:hover{
  color: #ea4d6d;
}
.window-scroll .langselect #en:hover{
  color: #ea4d6d;
}

.window-scroll .service-langselect #ar:hover{
  color: #ea4d6d;
}
.window-scroll .service-langselect #en:hover{
  color: #ea4d6d;
}


/**end of navbar**/
/**header**/
#word1{
    font-size: 5rem;
    color: #ffffff;
}
.word2{
    font-size: 2rem;
    color: #ffffff;
    margin-top: -1.3rem;
}
.word2 span{
    text-decoration:underline 3px;
    
}
header{
    position: relative;
    top: 1rem;
}
.header__container{
    grid-template-columns: 1fr 1fr;
    display: flex;
    justify-content: center;
    gap: 9rem;
    height: 100%;
    align-items: center;
    margin-bottom: -5rem;
}
.header__left{
    margin-left: 1.5rem;
}
.header__right-image{
    width: 28rem;
}
/**start of def section**/
.def__bg{
    background:url(../svg/def__bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
  position: relative;
  margin-bottom: -3rem;
    
}
.def__container{
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    height: 100%;
    justify-content: center;
    margin-right: 4rem;
}
.def__left{
    margin-left:-10rem ;
    margin-top: -4.5rem;
z-index: 1;
}
.Mdef-text{
  display: none;
}
.def__left img{
  width:45rem;
}
.def__right{
    margin-top: -0.5rem;
    margin-left: -10rem;
    
}

.def__right h1{
    color: #3b3589;
    font-size: 2.5rem;
    margin-left: -1rem;
    margin-bottom: 0.5rem;
    padding: 0 1rem 0 0;

}
.def__right h1 span{
    color: #e84c6c;
}
.def__right p{
    font-size: 1rem;
    text-align:left;
    margin-left: -1rem;
    color: #777;
    transition: 0.5s;
    width: 70%;
    padding: 0 1em 0 0;
}
.def__right img{
  width:70%;
  margin-top: -3rem;
  margin-left: -1rem;

}

.df-column{
  text-align: left;
  margin: 1rem 0 0 -1rem; 
  display: flex;
  gap: 3rem;
  
}
.df-row{
  display: grid;
  gap: 1rem;
}
.df-row span{
  font-size: 1.8rem;
  color: #3c348b;
  margin-left: 0.5rem;
  font-weight: normal;
  
}
.df-row i{
  font-size: 1.7rem;
  color: #ea4d6d;
}



.skill__bg{
    background: url(../svg/def__bg2.svg);
    margin-top: -1rem;
   position: relative;
    background-size: cover;
}

.skills{
  margin-left: 20rem;
}
.skill__bg #skill__text{
    color: #e84c6c;
}
.skill__bg h1{
    color: #3b3589;
    font-size: 2.5rem;
    margin-left: -13rem;
    margin-top: -3rem;
    margin-bottom: 2rem;

}
.skill__container{
    display: grid;
    height: 100%;
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-left: -13rem;
    transition: 1s;
    margin-bottom: 14rem;

}
.show__skills{
    visibility: visible;
    opacity: 1;
    transition: 0.5s;
}
  .skill-bars{
    width: 800px;
  }
  .skill-bars .bar1{
    margin: 20px 0;
  }
  .skill-bars .bar2{
    margin: 20px 0;
  }
  .skill-bars .bar3{
    margin: 20px 0;
  }
  .skill-bars .bar4{
    margin: 20px 0;
  }
  .skill-bars .bar5{
    margin: 20px 0;
  }
  .skill-bars .bar6{
    margin: 20px 0;
  }
  .skill-bars .bar7{
    margin: 20px 0;
  }
  .skill-bars .bar8{
    margin: 20px 0;
  }
  
  .skill-bars .bar1:first-child{
    margin-top: 0px;
  }
  .skill-bars .bar2:first-child{
    margin-top: 0px;
  }
  .skill-bars .bar3:first-child{
    margin-top: 0px;
  }
  .skill-bars .bar4:first-child{
    margin-top: 0px;
  }
  .skill-bars .bar5:first-child{
    margin-top: 0px;
  }
  .skill-bars .bar6:first-child{
    margin-top: 0px;
  }
  .skill-bars .bar7:first-child{
    margin-top: 0px;
  }
  .skill-bars .bar8:first-child{
    margin-top: 0px;
  }
  .skill-bars .bar1 .info{
    margin-bottom: 0.5rem;
  }
  .skill-bars .bar2 .info{
    margin-bottom: 0.5rem;
  }
  .skill-bars .bar3 .info{
    margin-bottom: 0.5rem;
  }
  .skill-bars .bar4 .info{
    margin-bottom: 0.5rem;
  }
  .skill-bars .bar5 .info{
    margin-bottom: 0.5rem;
  }
  .skill-bars .bar6 .info{
    margin-bottom: 0.5rem;
  }
  .skill-bars .bar7 .info{
    margin-bottom: 0.5rem;
  }
  .skill-bars .bar8 .info{
    margin-bottom: 0.5rem;
  }
  .skill-bars .bar1 .info span{
    font-weight: bold;
    font-size: 1.4rem;
    opacity: 0;
    color: #3c348b;
    animation: showText 0.7s 1s linear forwards;
  }
  .skill-bars .bar2 .info span{
    font-weight: bold;
    font-size: 1.4rem;
    opacity: 0;
    color: #3c348b;
    animation: showText 0.7s 1s linear forwards;
  }
  .skill-bars .bar3 .info span{
    font-weight: bold;
    font-size: 1.4rem;
    opacity: 0;
    color: #3c348b;
    animation: showText 0.7s 1s linear forwards;
  }
  .skill-bars .bar4 .info span{
    font-weight: bold;
    font-size: 1.4rem;
    opacity: 0;
    color: #3c348b;
    animation: showText 0.7s 1s linear forwards;
  }
  .skill-bars .bar5 .info span{
    font-weight: bold;
    font-size: 1.4rem;
    opacity: 0;
    color: #3c348b;
    animation: showText 0.7s 1s linear forwards;
  }
  .skill-bars .bar6 .info span{
    font-weight: bold;
    font-size: 1.4rem;
    opacity: 0;
    color: #3c348b;
    animation: showText 0.7s 1s linear forwards;
  }
  .skill-bars .bar7 .info span{
    font-weight: bold;
    font-size: 1.4rem;
    opacity: 0;
    color: #3c348b;
    animation: showText 0.7s 1s linear forwards;
  }
  .skill-bars .bar8 .info span{
    font-weight: bold;
    font-size: 1.4rem;
    opacity: 0;
    color: #3c348b;
    animation: showText 0.7s 1s linear forwards;
  }
  @keyframes showText {
    100%{
      opacity: 1;
    }
  }
   .skill-bars .bar1 .progress-line{
    height: 12px;
    width: 100%;
    background: #ebebeb;
    position: relative;
    transform: scaleX(0);
    transform-origin: left;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow:  1px 6px 6px rgba(0,0,0,0.3);
    animation: animate 1s cubic-bezier(1,0,0.5,1) forwards;
  }
  .skill-bars .bar2 .progress-line{
    height: 12px;
    width: 100%;
    background: #ebebeb;
    position: relative;
    transform: scaleX(0);
    transform-origin: left;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow:  1px 6px 6px rgba(0,0,0,0.3);
    animation: animate 1s cubic-bezier(1,0,0.5,1) forwards;
  }
  .skill-bars .bar3 .progress-line{
    height: 12px;
    width: 100%;
    background: #ebebeb;
    position: relative;
    transform: scaleX(0);
    transform-origin: left;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow:  1px 6px 6px rgba(0,0,0,0.3);
    animation: animate 1s cubic-bezier(1,0,0.5,1) forwards;
  }
  .skill-bars .bar4 .progress-line{
    height: 12px;
    width: 100%;
    background: #ebebeb;
    position: relative;
    transform: scaleX(0);
    transform-origin: left;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow:  1px 6px 6px rgba(0,0,0,0.3);
    animation: animate 1s cubic-bezier(1,0,0.5,1) forwards;
  }
  .skill-bars .bar5 .progress-line{
    height: 12px;
    width: 100%;
    background: #ebebeb;
    position: relative;
    transform: scaleX(0);
    transform-origin: left;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow:  1px 6px 6px rgba(0,0,0,0.3);
    animation: animate 1s cubic-bezier(1,0,0.5,1) forwards;
  }
  .skill-bars .bar6 .progress-line{
    height: 12px;
    width: 100%;
    background: #ebebeb;
    position: relative;
    transform: scaleX(0);
    transform-origin: left;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow:  1px 6px 6px rgba(0,0,0,0.3);
    animation: animate 1s cubic-bezier(1,0,0.5,1) forwards;
  }
  .skill-bars .bar7 .progress-line{
    height: 12px;
    width: 100%;
    background: #ebebeb;
    position: relative;
    transform: scaleX(0);
    transform-origin: left;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow:  1px 6px 6px rgba(0,0,0,0.3);
    animation: animate 1s cubic-bezier(1,0,0.5,1) forwards;
  }
  .skill-bars .bar8 .progress-line{
    height: 12px;
    width: 100%;
    background: #ebebeb;
    position: relative;
    transform: scaleX(0);
    transform-origin: left;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow:  1px 6px 6px rgba(0,0,0,0.3);
    animation: animate 1s cubic-bezier(1,0,0.5,1) forwards;
  }

  @keyframes animate {
    100%{
      transform: scaleX(1);
    }
  }
  .bar1 .progress-line span{
    visibility: hidden;
    opacity: 0;
  }
  .bar2 .progress-line span{
    visibility: hidden;
    opacity: 0;
  }
  .bar3 .progress-line span{
    visibility: hidden;
    opacity: 0;
  }
  .bar4 .progress-line span{
    visibility: hidden;
    opacity: 0;
  }
  .bar5 .progress-line span{
    visibility: hidden;
    opacity: 0;
  }
  .bar6 .progress-line span{
    visibility: hidden;
    opacity: 0;
  }
  .bar7 .progress-line span{
    visibility: hidden;
    opacity: 0;
  }
  .bar8 .progress-line span{
    visibility: hidden;
    opacity: 0;
  }
  .window-scroll2.bar1 .progress-line span{
    height: 100%;
    position: absolute;
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(60deg,#ea4d6d,#3c348b);
    animation: animate 1s 1s cubic-bezier(1,0,0.5,1) forwards;
    visibility:visible;
    opacity: 1;
  }
  .window-scroll2.bar2 .progress-line span{
    height: 100%;
    position: absolute;
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(60deg,#ea4d6d,#3c348b);
    animation: animate 1s 1s cubic-bezier(1,0,0.5,1) forwards;
    visibility:visible;
    opacity: 1;
  }
  .window-scroll2.bar3 .progress-line span{
    height: 100%;
    position: absolute;
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(60deg,#ea4d6d,#3c348b);
    animation: animate 1s 1s cubic-bezier(1,0,0.5,1) forwards;
    visibility:visible;
    opacity: 1;
  }
  .window-scroll2.bar4 .progress-line span{
    height: 100%;
    position: absolute;
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(60deg,#ea4d6d,#3c348b);
    animation: animate 1s 1s cubic-bezier(1,0,0.5,1) forwards;
    visibility:visible;
    opacity: 1;
  }
  .window-scroll2.bar5 .progress-line span{
    height: 100%;
    position: absolute;
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(60deg,#ea4d6d,#3c348b);
    animation: animate 1s 1s cubic-bezier(1,0,0.5,1) forwards;
    visibility:visible;
    opacity: 1;
  }
  .window-scroll2.bar6 .progress-line span{
    height: 100%;
    position: absolute;
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(60deg,#ea4d6d,#3c348b);
    animation: animate 1s 1s cubic-bezier(1,0,0.5,1) forwards;
    visibility:visible;
    opacity: 1;
  }
  .window-scroll2.bar7 .progress-line span{
    height: 100%;
    position: absolute;
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(60deg,#ea4d6d,#3c348b);
    animation: animate 1s 1s cubic-bezier(1,0,0.5,1) forwards;
    visibility:visible;
    opacity: 1;
  }
  .window-scroll2.bar8 .progress-line span{
    height: 100%;
    position: absolute;
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(60deg,#ea4d6d,#3c348b);
    animation: animate 1s 1s cubic-bezier(1,0,0.5,1) forwards;
    visibility:visible;
    opacity: 1;
  }

  .bar1 .progress-line.des span{
    width: 95%;
  }
  .bar2 .progress-line.D__des span{
    width: 90%;
  }
  .bar3 .progress-line.uix span{
    width: 85%;
  }
  .bar4 .progress-line.d-market span{
    width: 80%;
  }
  .bar5 .progress-line.c-service span{
    width: 85%;
  }
  .bar6 .progress-line.c-market span{
    width: 75%;
  }
  .bar7 .progress-line.p-service span{
    width: 100%;
  }
  .bar8 .progress-line.prog span{
    width: 85%;
  }

  .progress-line span::after{
    position: absolute;
    top: 15px;
    right: 0;
    font-weight: 500;
    background:#e84c6c;
    color: #fff;
    padding: 2px 8px;
    font-size: 12px;
    border-radius: 3px;
    opacity: 0;
    animation: showText2 0.5s 1.5s linear forwards;
  }
  @keyframes showText2 {
    100%{
      opacity: 1;
    }
  }
  .progress-line.des span::after{
    content: "95%";
  }
  .progress-line.D__des span::after{
    content: "90%";
  }
  .progress-line.uix span::after{
    content: "85%";
  }
  .progress-line.d-market span::after{
    content: "80%";
  }
  .progress-line.c-service span::after{
    content: "85%";
  }
  .progress-line.c-market span::after{
    content: "75%";
  }
  .progress-line.p-service span::after{
    content: "100%";
  }
  .progress-line.prog span::after{
    content: "85%";
  }
/**start of FAQs**/
.faq-header__text{
  text-align: center;
}
.faq-text{
  margin-bottom: -3rem;
}
.faq-header__text h2{
  color: #3c348b;

}
.faq-header__text h2 span{
  color: #ea4d6d;
  cursor:help;
}
.question__answer h4{
    color:var(--color-white) ;
    font-size: 1rem;
    line-height: 2.2;
}
.question__answer p {
    margin-top: 0.8rem;
    color:var(--color-white) ;
    display: none;
    
}
.faqs__container{
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 8rem;
    margin-top: -5rem;
  

}
.faq{
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    height: fit-content;
    background-color:#3c348b;
    cursor: pointer;
    transition: 0.5s;
}
.faq:hover{
  background-color:#ea4d6d;
}
.faq__icon{
    align-self: flex-start;
    font-size: 1.2rem;
    color: #ffffff;
}
.faq.open{
  background-color:#ea4d6d;
}
.faq.open p{
    display: block;
}

/**end of FAQs**/

/**start of services**/
.smobile{
  display: none;
}
.service__container{
  margin-bottom: -8rem;
}
.service__container .service__header{
 text-align: center;
}
.service__container .service__header h1{
  font-size: 2.5rem;
  color: #3c348b;
}
.service__container .service__header h1 span{
  color:#ea4d6d;
}
.service__container .service__header p{
  color: #777;
}
.services img{
width: 100%;
}
.services{
  display: flex;
  justify-content: center;
  margin-left: -1rem;
  max-width: 1200px;
  flex-wrap: wrap;
  padding: 40px 0;
}
.services .card{
  position: relative;
  width: 260px;
  height: 250px;
  box-shadow: inset 5px 5px 5px rgba(0,0,0,0.05),
              inset -5px -5px 5px rgba(255,255,255,0.5),
                5px 5px 5px rgba(0,0,0,0.05), 
               -5px -5px 5px rgba(255,255,255,0.5);
  border-radius:15px ;
  margin: 15px;
  margin-bottom: 30px;
  
}

.services .card .box{
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fefefe;
  box-shadow: 0 10px 10px rgba(0,0,0,0.1);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
.services .card:hover .box{
  transform: translateY(-50px);
background-color:#efefef;
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
transition: 0.5s;
}
.services .card:hover .box .content h3{
  color: #ea4d6d;
  transition: 0.5s;
}
.services .card:hover .box .content h4{
  color: #ea4d6d;
  transition: 0.5s;
}
.services .card:hover .box .content p {
  color:#000000;
  transition: 0.5s;
}
.services .card .box .content{
  padding: 20px;
  text-align: center;
}
.services .card .box .content img{
  margin-bottom: 10px;
  margin-top: 10px;
}
.services .card .box .content h3{
  color:#3b3589;
  margin-bottom: 10px;
  transition: 0.5s;

}
.services .card .box .content h4{
  color:#3b3589;
  margin-bottom: 10px;
  transition: 0.5s;

}
.services .card .box .content p{
  font-size: 1rem;
  color: #777;
  z-index: 1;
  transition: 0.5s;
}
.services2{
  margin-bottom: 6rem;
  margin-top: -6rem;
}
.service-margin{
  margin-bottom: -0.5rem;
}
.offering__container{
  display: grid;
  align-items: center;
  margin-top: -4rem;
  margin-bottom: 12rem;
}
.offering__container .offering-header{
text-align: center;
margin-bottom: 3rem;
}
.offering__container .offering-header h1{
  font-size: 2.5rem;
  color: #3c348b;
  margin-bottom: 0.5rem;
}
.offering__container .offering-header h1 span{
  color: #ea4d6d;
}
.offering__container .offering-header p{
  color: #777;
}
.offering__container .offerings img{
  width: 35%;
  position: relative;
}
.offering__container .offerings{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  gap: 1rem;
}
.offering__container .offerings .offer{
  width: 16rem;
  width: calc(100% / 4 - 10px);
  align-items: center;
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1),
   5px 5px 10px rgba(255, 255, 255, 1) inset;
  background: #f9f9f9;
  transition: 0.5s;
  margin-left: -1rem;
}
.offering__container .offerings .offer:hover{
  background-color:#efefef;
  transition: 0.5s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1),
  -5px -5px 10px rgba(0, 0, 0, 0.1) inset;
}
.offering__container .offerings .offer .offer-content{
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.offering__container .offerings .offer .offer-content h4{
  color: #3c348b;
  transition: 0.3s;
  text-align: center;
}
.offering__container .offerings .offer:hover .offer-content h4{
  color: #ea4d6d;
  transition: 0.3s;
}


/**start of about **/
.about-demaster__container{
  grid-template-columns:repeat(2,1fr);
  display: flex;
  align-items: center;
  gap: 28rem;
  margin-bottom: -5rem ;
  
}
.about-demaster__container .about__left {
  margin-top: -5rem;
}
.about-demaster__container .about__left img{
  width: 500%;
}
.about-demaster__container .about__right{
  margin-top:-5rem ;
  color: var(--color-white);
}
.about-demaster__container .about__right h1{
  font-size: 3.5rem;
}
.about-demaster__container .about__right h1 span{
  color: #ea4d6d;
}
.about-demaster__container .about__right p{
  text-align: left;
  margin-right: 1.9rem;
}
.about-demaster__container .about__right p span{
  color: #777;
  transition: 0.5s;
}
.about-demaster__container .about__right p span:hover{
  color: #fff;
  transition: 0.5s;
}

/**start of team**/
.team{
  width: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
}
.team-tm{
  margin-bottom: 12rem;
}
.team-header{
  text-align: center;
  margin-top: -4rem;
  margin-bottom: -1.5rem;
}
.team-header h1{
  font-size: 2.5rem;
  color: #3c348b;
  margin-bottom: 0.5rem;
}
.team-header p{
  padding: 0 3rem 0 3rem;
}
.teamLeader-header h1{
  font-size: 3rem;
  color: #3c348b;
  margin-bottom: 5rem;
}
.team-header h1 span{
  color: #ea4d6d;
}
.teamLeader-header{
  text-align: center;
  margin-top: -4rem;
  margin-bottom: -1.5rem;
  margin-top: 5rem;
}

.teamLeader-header h1 span{
  color: #ea4d6d;
}
.team-header p{
  font-size: 1;
  color: #777;
  text-align: center;
  transition: 0.5s;
}
.team-margin p:hover{
  color: #000;
  transition: 0.5s;
}
.team__container{
  max-width: 950px;;
  width: 100%;
  overflow: hidden;
  align-items: center;
  padding: 80px 0;
  margin-bottom: -5rem;
}
.teamleader__container{
  max-width: 950px;
  width: 100%;
  align-items: center;
  padding: 80px 0;
}
.team__container .main__card{
  width: 300%;
  display:flex;
  justify-content: space-evenly;
  transition: all 0.8s ease;
}
.teamleader__container .leadermain__card{
  width: 100%;
  display:flex;
  justify-content: space-evenly;
  transition: all 0.8s ease;
}
#two:checked ~ .main__card{
  margin-left: -100%;
}
#three:checked ~ .main__card{
  margin-left: -200%;
}
.team .main__card .cards{
  width: calc(100% / 3 - 10px);
  display: flex;
  justify-content: space-between;
  margin: 0 20px;
  flex-wrap: wrap;
  
}
 .Leadermain__card .leadercards{
  display: flex;
  justify-content: space-between;
  margin: 0 20px;
  flex-wrap: wrap;
}
.main__card .cards .card{
  background: var(--color-white);
  width: calc(100% / 3 - 10px);
  padding: 20px;
  border-radius: 24px;
  transition:  0.5s;


}
.Leadermain__card .leadercards .leadercard{
  background: var(--color-white);
  width: calc(100% / 2 - 10px);
  padding: 20px;
  margin-bottom: 2rem;
  border-radius: 24px;
  transition:  0.5s;

}
.main__card .cards .card:hover{
  transform: translateY(-20px);
  transition: 0.5s ;
}
.Leadermain__card .leadercards .leadercard:hover{
  transform: translateY(-20px);
  transition: 0.5s ;
}
.cards .card .card-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.leadercards .leadercard .leadercard-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.cards .card .card-content .img{
  height: 130px;
  width: 130px;
  margin-bottom:14px ;
  background: #3c348b;
  padding: 3px;
  border-radius: 50%;

}
.leadercards .leadercard .leadercard-content .leaderimg{
  height: 130px;
  width: 130px;
  margin-bottom:14px ;
  background: #3c348b;
  padding: 3px;
  border-radius: 50%;

}
.main__card .cards .card:hover .img{
  background: #ea4d6d;
}
.Leadermain__card .leadercards .leadercard:hover .leaderimg{
  background: #19aeae;
}
.cards .card .card-content .img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
}
.leadercards .leadercard .leadercard-content .leaderimg img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
}
.card .card-content .details .name{
  font-size: 1.2rem;
  font-weight: 500;
  color: #3c348b;
}
.leadercard .leadercard-content .leaderdetails .leadername{
  font-size: 1.2rem;
  font-weight: 500;
  color: #3c348b;
}
.card .card-content .details .job{
  font-size: 1.2rem;
  color: #ea4d6d;
}
.leadercard .leadercard-content .leaderdetails .leaderjob{
  font-size: 1.2rem;
  color: #ea4d6d;
}

.button{
  display: flex;
  margin: 20px;
  justify-content: center;
  
}
.button label{
  height: 15px;
  width: 15px;
  background: #3c348b;
  margin: 0 4px;
  border-radius: 20px;
  transition: all 0.5s ease;
  cursor: pointer;
}
.button label.b-active{
  width: 35px;
}
#one:checked ~ .button label.one{
  width: 35px;
  background-color: #ea4d6d;
}
.button label.one{
  background-color: #ea4d6d;
}
#two:checked ~ .button label.two{
  width: 35px;
  background-color: #ea4d6d;
}
#three:checked ~ .button label.three{
  width: 35px;
  background-color: #ea4d6d;
}
#two:checked ~ .button label.one{
  width: 15px;
  background: #3c348b;
}
#two:checked ~ .button label.three{
  width: 15px;
}
#three:checked ~ .button label.one{
  width: 15px;
  background: #3c348b;
}
#three:checked ~ .button label.two{
  width: 15px;
}
#one:checked ~ .button label.two{
width: 15px;
}
#one:checked ~ .button label.three{
  width: 15px;
}

input[type="radio"]{
  display: none;
}

.team-margin{
  margin-top: 1rem;
}
/**end of team**/




/**end of about**/



/**start of contact**/

.contact-circle{
  position: fixed;
  bottom: 4rem;
  left: 4rem;
  width: 3rem;
  height: 3rem;
  background: var(--color-white) url(../svg/envelope-add.svg);
  border-radius: 50%;
  background-size: 2rem;
  background-position: center;
  transition: 0.5s;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
}
.contact-circle.active-circle{
  bottom: 1rem;
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
}
.contact-circle:hover{
  background-color: #e84c6c;
}

.phone-circle{
  position: fixed;
  bottom: 4rem;
  left: 8rem;
  width: 3rem;
  height: 3rem;
  background: var(--color-white) url(../svg/phone.svg);
  border-radius: 50%;
  background-size: 2rem;
  background-position: center;
  transition: 0.5s;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
}
.phone-circle.phone-active-circle{
  bottom: 1rem;
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
}
.phone-circle:hover{
  background-color: #e84c6c;
}

.contact-header{
  align-items: center;
  display: grid;
  margin-top: 2rem;
  margin-bottom: -4rem;

  text-align: center;
}
.contact-header .contact-text1 h2 {
  color: #ea4d6d;
  font-weight: bold;
  margin-bottom: 0.5rem;

}
.contact-header .contact-text1 h2 span a {
  color: #3c348b;
  transition: 0.5s;
}
.contact-header .contact-text1 h2 span a:hover{
  color: #ea4d6d;
  transition: 0.5s;
}
.contact-header .contact-text2 p{
  color: #777;
}
.contact-header .contact-text2 p a span{
  color: #3c348b;
}
.contact-header .contact-text2 p a span:hover{
  color: #ea4d6d;
  transition: 0.5s;
}

/**contact form**/
#section-wrapper{
  width: 100%;
  padding: 0 10px 0 10px;
  margin-bottom: -3rem;
}
.box-wrapper{
  position: relative;
  display: table;
  width:90%;
  margin:auto;
  margin-top:35px;
  border-radius: 30px;
}
.info-wrap{
  width:35%;
  height: 535px;
  padding: 40px;
  float: left;
  display: block;
  border-radius: 30px 0px 0px 30px;
  background: linear-gradient(60deg,#ea4d6d,#3c348b,#ea4d6d);
  animation: info-wrap   7s ease infinite;
  background-size: 500% 500%;
  color: #fff;
}
@keyframes info-wrap {
  0%{
      background-position: 0% 50%;
  }
  50%{
      background-position: 100% 50%;
  }
  100%{
      background-position: 0% 50%;
  }

}
.info-title{
  text-align: left;
  font-size: 28px;
  letter-spacing: 0.5px;
  margin-bottom: 3rem;
}
.info-sub-title{
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 26px;
  color:#cfcfcf;
  transition: 0.5s;
}
.info-sub-title:hover{
  color: #fff;
  transition: 0.5s;
}
.info-details {
  list-style: none;
  margin: 60px 0px;
  margin-bottom: -1rem;
}
.info-details li {
  margin-top: 25px;
  font-size: 16px;
  color: #fff;
  
}
.info-details li i {
  background: #F44770;
  padding: 10px;
  border-radius: 50%;
  margin-right: 5px;
  font-size: 13px;
}
.info-details li a {
  color: #cfcfcf;
  text-decoration: none;
  transition: 0.5s;
}
.info-details li a:hover {
  color: #fff;
  transition: 0.5s;
}

.form-wrap{
  width:65%;
  float: right;
  padding:40px 25px 35px 25px;
  border-radius: 0px 30px 30px 0px;
  background: #ecf0f3;
}
.form-title{
  text-align: left;
  margin-left: 23px;
  font-size: 28px;
  letter-spacing: 0.5px;
}
.form-fields{
  display: table;
  width: 100%;
  padding: 15px 5px 5px 5px;
}
.form-fields input,
.form-fields textarea{
  border: none;
  outline:none;
  background: none;
  font-size: 18px;
  color:#555;
  padding: 20px 10px 20px 5px;
  width:100%;
  font-family: acumin-pro,sans-serif;
  font-weight: 400;
  font-style: normal;
}
.form-fields textarea{
  height: 150px;
  resize: none;
}
.form-group{
  width: 46%;
  float: left;
  padding: 0px 30px;
  margin: 14px 12px;
  border-radius: 25px;
  box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #ffffff;
}
.form-fields .form-group:last-child {
  width: 96%;
}
.submit-button{
  width: 96%;
  height: 60px;
  margin: 0px 12px;
  border-radius: 30px;
  font-size: 20px;;
  font-weight: 700;
  outline: none;
  border:none;
  cursor: pointer;
  color:#fff;
  text-align: center;
  background: #F44770;
  box-shadow: 3px 3px 8px #b1b1b1, -3px -3px 8px #ffffff;
  transition: .5s;
}
.submit-button:hover{
  background: #31279d;
}
.info-wrap .social-icon{
  margin-left: -0.5rem;
  margin-top: 6rem;
}
.form-title span{
  color: #ea4d6d;
}
.info-wrap .support-icon{
  margin-top: 11rem;
}
.support-wrapper{
  margin-bottom: -7rem;
}
.support-wrapper2{
  margin-bottom: 12rem;
}
/**end of contact form**/

  .location-content{
    display: flex;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    box-shadow:  10px 10px 10px 10px rgba(0,0,0,0.1);
    padding:3rem;
    margin: 5rem;
    margin-bottom: 10rem;
    
    
  }
  .location-content .location__text{
display: grid;
align-items: center;
margin-left: 1.5rem;
text-align: left;
  }
  .location-content .location__text h4{
    margin-bottom: 0.5rem;
    color: #3c348b;
  }
  .location-content .location__text p {
    color: #777;
  }


/**end of contact**/

  /* start of support page*/


  .support-form{
    margin-left:25rem;
    margin-top: -20rem;

  }
  .contact-section .contact__container form .support-form__content{
    padding: 5rem;
  }
  .contact-section .contact__container form .support-form__content  h2{
    margin-right: 0;
  }
#support-btn{
  margin-left: 38rem;
}
   /** end of support page**/

/**start of Footer**/
#img-2{

  width: 25%;
  margin-left: 65rem;
  
}
.skr{
  background: none;
}

.footer__img{
  grid-template-columns: 1fr 1fr;
  display: grid;
  margin-top: -15rem;
  margin-bottom: -24rem;
}
.img-3{
  display: none;
}
.footer{
  padding-top: 6rem;
margin-bottom: -10rem;
}
.footer__container{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-left: 5rem;
  width: 90%;
  margin-top: 0;
  margin-bottom: 2rem;
  margin-top: -8rem;
  border-top: 1px solid #cfcfcf;
}
.footer__container > div h4{
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.footer__1{
  margin-top: 5rem;
}

.footer__1 p{
  margin: 1rem 0 2rem;
  text-align: left;
  color: #b3b3b3;
  transition: 0.5s;
}
.footer__1 p:hover{
  color: #000;
  transition: 0.5s;
}
.footer__logo img{
  width:90%;
}
.footer__2{
  margin-left: 3rem;
  margin-top: 6rem;
}
.footer__2 p{
  margin-bottom: 3rem;
}
.footer__2 a{
  color: #b3b3b3;
  transition: 0.7s;
}
.footer__2 a:hover{
  color: #3b3589;
  transition: 0.7s;
}
#email{
  margin-top: 5rem;
}
#email h4{
  font-size: 1.1rem;
}
.footer__3{
  margin-left: 0rem;
  margin-top: 6rem;
}
.footer__3 ul li{
  margin-bottom: 0.6rem; 
}
.footer__3 ul li a{
  color: #b3b3b3;
  transition: 0.7s;
}
.footer__3 a:hover{
  color: #3b3589;
  transition: 0.7s;
}
.footer__4{
  margin-left: -8rem;
  margin-top: 6rem;
}
.footer__4 ul li{
  margin-bottom: 0.6rem; 
}
.footer__4 ul li a{
  color: #b3b3b3;
  transition: 0.7s;
  cursor: help;
}
.footer__4 a:hover{
  color: #3b3589;
  transition: 0.7s;
}
.footer__container .social-icon li{
  margin-bottom: .5rem;
}
.copyright-inner {
  border-top: 1px solid rgba(151, 161, 179, 0.5);

}
.copyright-inner .copyright-text {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.28px;
  color: #ACB4C1;
  line-height: 44px;
  margin-bottom: -2rem;
}
.copyright-inner .copyright-text a {
  font-size: 14px;
  letter-spacing: 0.42px;
  font-weight: 500;
  display: inline-block;
  color: #ACB4C1;
}

.copyright-inner .copyright-text a span {
  position: relative;
  color: #b3b3b3;

}
.copyright-inner .copyright-text a span:before {
  position: absolute;
  left: auto;
  right: 0;
  top: 100%;
  content: "";
  background: #092433;
  height: 1px;
  width: 0%;
  visibility: hidden;
  opacity: 0;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  transition: 0.6s;
}
.copyright-inner .copyright-text a span:hover:before {
  visibility: visible;
  opacity: 1;
  right: auto;
  left: 0;
  width: 100%;
}

.pre-wrap {
  position: fixed;
  content: "";
  transform: translate(-100%, -240%);
  font-size: 62px;
}

.preloader-inner {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: rgba(2, 48, 71, 0.8);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-inner .cancel-preloader {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.preloader-inner .cancel-preloader a {
  background-color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  color:#000;
  width: 200px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 30px;
  display: block;
  transition: all 0.3s ease-in;
}
.preloader-inner .cancel-preloader a:hover {
  background-color:#3b3589;
  color: #fff;
}
.spinner {
  margin: 120px auto;
  width: 60px;
  height: 60px;
  position: relative;
  text-align: center;
  animation: sk-rotate 2s infinite linear;
}

.dot1, .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color:#ea4c89;
  border-radius: 100%;
  animation: sk-bounce 2s infinite ease-in-out;
}

.dot2 {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}
@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.social-icon {
  margin-bottom: 0;
  padding-left: 0;
  margin-left: -1rem;
}
.social-icon li {
  display: inline-block;
  margin: 0 5px;
 
}
.social-icon li a {
  height: 44px;
  width: 44px;
  display: inline-block;
  box-shadow: 0px 3px 14px #666c752e;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  color: #5B6880;
  transition: all 0.3s ease-in;
  background: #fff;
  font-size: 16px;
}
.social-icon li .behance:hover {
  background-color: #0077B5;
  color: #fff;
}
.social-icon li .facebook:hover {
  background-color: #3b5999;
  color: #fff;
}
.social-icon li .twitter:hover {
  background-color: #55acee;
  color: #fff;
}
.social-icon li .linkedin:hover {
  background-color: #0077B5;
  color: #fff;
}
.social-icon li .instagram:hover {
  background-color: #e4405f;
  color: #fff;
}
/**end of Footer**/




















