@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700');

@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/* * {
  outline: 1px solid red;
} */
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
    overflow-x: hidden;
    
    
}
/*-- Inspiration taken from abdo steif -->
/* --> https://codepen.io/abdosteif/pen/bRoyMb?editors=1100*/

/* Navbar section */

.nav {
    width: 100%;
    height: 99px;
    position: fixed;
    line-height: 65px;
    text-align: center;
}

.nav div.logo {
    float: left;
    width: auto;
    height: auto;
    padding-left: 3rem;
}



.nav div.logo a {
    text-decoration: none;
}

.nav div.logo a img {
  width: 100px;
  height: 100px;
  margin-top: -0.2rem;
  transition: 0.8s ease-out;
  margin-left: -3.8rem;
}

.nav div.services-logo a img{
  width: 100px;
  height: 100px;
  margin-top: -0.2rem;
}

.nav div.logo a:hover {
    color: #00E676;
}

.nav div.main_list {
    height: 65px;
    float: right;
}

.nav div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 15px 0px 0px 0px;
    padding: 0;
}

.nav div.main_list ul li {
    width: auto;
    height: 65px;
    padding: 0;
    padding-right: 3rem;
}

.nav div.main_list ul li a {
    text-decoration: none;
    color: #941E93;
    line-height: 65px;
    font-size: 1.5rem;
}

.nav div.main_list.services_page ul li a {
    text-decoration: none;
    color: #941E93;
    line-height: 65px;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav div.main_list ul li a:hover {
    color: #000;
}


/* Home section */

.home {
    width: 100%;
    height: 80vh;
    z-index: -1;
   
}

.navTrigger {
    display: none;
}

.nav {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        margin: 0;
    }
}

@media screen and (max-width:768px) {
    .navTrigger {
        display: block;
    }
    .nav div.logo {
        margin-left: 15px;
    }
    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .nav div.show_list {
        height: auto;
        display: none;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: #111;
        /*same background color of navbar*/
        background-position: center top;
    }
    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
    }
    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 3rem;
        padding: 20px;
    }
    .nav div.media_button {
        display: block;
    }
}


/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}

.navTrigger i {
    background-color: #ffffff;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;

}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);

    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.affix {
    
    padding: 0;
    color: #000;
    background-color: rgba(135, 132, 132, 0.2);
    backdrop-filter: blur(20px) saturate(160%) contrast(45%) brightness(140%);
    -webkit-backdrop-filter: blur(20px) saturate(160%) contrast(45%) brightness(140%);
    
}

.affix.nav .logo a img {
    width: 100px;
    height: 100px;
    margin-top: -0.2rem;
    transition: 0.8s ease-out;
}

.affix.nav div.main_list ul li a{
    color: #941E93 ;
}

.affix.nav div.main_list ul li a:hover{
    color: #000 ;
}

.nav.affix{
  z-index: 999;
}


.head-text {
  margin-left: 10%;
  text-align: center;
  color: #fff;
  margin-top: 25%;
}


.service-content{
  position: relative;
    width: 99%;
    height: 60vh;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.service-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-video-middle{
  width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}



 /* all-services area starts */
section.all-services {
  padding-top: 10rem;
  padding-bottom: 5rem;
  font-size: 1.1rem;
    font-family: 'League Spartan';
}

section.all-services h1{
  margin-bottom: 3rem;
}

.all-services .video-text h3{
  margin-bottom: 2rem;
}


.all-services .video-text p{
  font-size: 1.1rem;
    font-family: 'League Spartan';
    
    line-height: 2.2rem;
}

.services-videos iframe{
  height: 24rem;
  width: 100%;
  margin-top: 1.6rem;
  border-radius: 3rem;
}

.development-text p{
  line-height: 2.2rem;
}


.services-videos .one-third-video{
  width: 22.5rem;
  max-height: 42rem;
  overflow: hidden;
}

.services-videos .one-third-video iframe{
  width: 100%;
  height: 40rem;
  object-fit: cover;
}





 /* all-services area end  */



 /* our team in about page */

section.our-team{
  padding: 7rem 0rem;
  font-family: 'League Spartan';
}

.team-heading-text{
  width: 63%;
  margin: auto; 
}

.team-heading-text h1{
  margin-bottom: 1.5rem;
}

.team-heading-text p{
  font-size: 1.4rem;
}

.single-team-member::after{
  content: "";
}


.single-team-member{
  margin-top: 2rem;
}

.single-team-member img{
  height: 100%;
  width: 75%;
}

.single-team-member h3{
  font-size: 2.2rem;
  margin-bottom: auto;
}
.single-team-member p{
  font-size: 1.3rem;
  
}



 /* our team in about page end */


 /* how-works-contact */

  section.how-works.how-works-contact{
    padding: 12rem 0rem;
  }

 /* how-works-contact end */






.myH2 {
	text-align:center;
	font-size: 4rem;
}
.myP {
	text-align: justify;
	padding-left:15%;
	padding-right:15%;
	font-size: 20px;
}
@media all and (max-width:700px){
	.myP {
		padding:2%;
	}
}




.expertise-video{
  width: 61%;
  margin-top: 4rem;
  margin-left: 10rem;
  border-radius: 4rem;
}

.up-text {
  margin-top: 3rem;
}








/* ..help area */

.help-area{
    background: linear-gradient(45deg, #06b6d4, #22c55e, #a21caf);
    border-radius: 100px;
}


/* ...info section */

.info_section { 
    background-color: #2E2E2E;
    color: #ffffff;
    padding: 45px 0 15px 0;
    margin-top: 5rem;
  }
  
  .info_section h4 {
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .info_section .info_col {
    margin-bottom: 30px;
  }
  .info_section .info_detail p {
    line-height: 2rem;
  }

  .info_section .info_contact {
    width: 100%;
  }
  
  .info_section .info_contact .contact_link_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  
  .info_section .info_contact .contact_link_box a {
    margin: 1rem 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
  }
  
  .info_section .info_contact .contact_link_box a i {
    margin-right: 5px;
  }
  
  /* .info_section .info_contact .contact_link_box a:hover {
    color: #00bbf0;
  } */
  
  .info_section .info_social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  .info_section .info_social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #ffffff;
    border-radius: 100%;
    margin-right: 3rem;
    font-size: 24px;
  }
  
  .info_section .info_social a:hover {
    color: #00bbf0;
  }
  
  .info_section .info_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-left: 4.5rem;
  }
  
  .info_section .info_links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 15px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.4rem;
  }
  
  .info_section .info_links a:hover {
    color: #7aff00;
  }
  
  .info_section form input {
    border: none;
    border-bottom: 1px solid #ffffff;
    background-color: transparent;
    width: 100%;
    height: 45px;
    color: #ffffff;
    outline: none;
  }
  
  .info_section form input::-webkit-input-placeholder {
    color: #ffffff;
  }
  
  .info_section form input:-ms-input-placeholder {
    color: #ffffff;
  }
  
  .info_section form input::-ms-input-placeholder {
    color: #ffffff;
  }
  
  .info_section form input::placeholder {
    color: #ffffff;
  }
  
  .info_section form button {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 10px 55px;
    background-color: #00bbf0;
    color: #ffffff;
    border-radius: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: none;
    margin-top: 15px;
  }
  
  .info_section form button:hover {
    background-color: #007fa4;
  }


  a.info-btn-center{
    background: #fff;
    color: #000;
    font-weight: bold;
    transition: 0.4s all;
}

  a.info-btn-center:hover{
    background: #d80553;
    color: #fff;
    font-weight: bold;
}

  /* .why section */
  .why_section {
    padding: 5rem 0rem;
  }




  .why_section .box {
    margin-top: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    transition: 0.7s;
    height: 94%;
  }
  
  .why_section .box.p-3.border.shadow:hover {
    background: linear-gradient(40deg,#ff6ec4,#7873f5);
    color: #fff;
    transition: 0.7s;
  }
  
  .why_section .box.p-3.border.shadow:hover .icon-desg{
    color: #fff;
    transition: 0.7s;
  }
  
  
  .why_section .box .img-box {
    margin-bottom: 20px;
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
    border-radius: 100%;
    border: 5px solid #00204a;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .why_section .box .img-box img {
    width: 55px;
    height: auto;
    fill: #00204a;
  }
  
  .why_section .box h5 {
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .why_section .box p {
    margin-bottom: 0;
  }
  
  .why_section .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 45px;
  }
  
  .why_section .btn-box a {
    display: inline-block;
    padding: 10px 45px;
    background-color: #00bbf0;
    color: #ffffff;
    border-radius: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: none;
  }
  
  .why_section .btn-box a:hover {
    background-color: #007fa4;
  }

  .why_section .box .img-box .fa-lightbulb,
  .why_section .box .img-box .fa-screwdriver-wrench,
  .why_section .box .img-box .fa-gauge-high,
  .why_section .box .img-box .fa-circle-check
  {
    font-size: 4rem;
  }

 


  /* our-expertise */
  .our-expertise{
    background-color: #fff;
    padding-bottom: 3rem;
  }

  .our-expertise h4{
    font-family: 'Prompt';
  }
  .our-expertise .area-heading{
    font-family: "Prompt", sans-serif;
  font-weight: 900;
  font-style: normal;

  }

  .up-text p {
    font-size: 1.4rem;
  font-family: "League Spartan", sans-serif;
  font-weight: 400;
  text-align: justify;
  }

  .inner-review h1{
    font-family: 'Prompt';
    font-weight: 600;
}
 
  .inner-review p{
    margin: 0;
    font-family: 'League Spartan';
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    color: #000;
  }
 
  .right-img{
    margin: 0 auto;
  }
  

  .right-img img {
    width: 74%;
    margin-left: 35%;
    margin-top: 4rem;
}






  /* strength-card area */
  .strength-card h1 {
    margin-bottom: 4rem;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
  }
  
  .strength-card .strength-bg-color {
    background: rgb(255, 136, 0);
  }

  .strength-card .strength-bg-color-2 {
    background: #9A9A98;
  }

  .strength-card .strength-bg-color-3 {
    background: #1a4533;
  }

  .strength-card .strength-bg-color-4 {
    background: #000000;
    color: #fff;
  }

  .strength-card .strength-bg-color .fa-head-side-virus,
  .strength-card .strength-bg-color-2 .fa-volume-high,
  .strength-card .strength-bg-color-3 .fa-pencil,
  .strength-card .strength-bg-color-4 .fa-message
  {
    font-size: 5rem;
    color: #ffffff;
    padding: 56px 0px 26px 0px;
  }

  .strength-card .strength-card-padding h3{
    letter-spacing: 0.5rem;
    margin-bottom: 2rem;
  }


  .strength-card .strength-card-padding p{
    font-size: 1.1rem;
    padding-bottom: 5.8rem;
  }

  .strength-card .strength-card-padding p.bg-over{
    padding-bottom: 3rem;
  }

  .strength-card .strength-card-padding p.bg-over-2{
    padding-bottom: 101px;
  }

  .strength-card-padding{
    color: #FFF;
  }



  /* strength-card area end */

  
/* service-des-area */
.service-des-area{
    position: relative;
    margin-top: 6rem;
    margin-bottom: 3rem;
    color: #000;
}
.service-des-area h1{
    font-weight: bold;
}

.service-des-area h3{
    font-weight: 600;
    margin-top: 1rem;
}

.service-des-area .left-side{
  width: 89%;
}

.service-des-area p.long-text{
    margin-top: 2rem;
}

.service-des-area p.long-text {
    margin-bottom:3rem;
}
.service-des-area p.check-text {
    font-size: 1.5rem;
    line-height: 1.3rem;
}


p.check-text span.ms-3{
  margin-left: 2.3rem !important;
  line-height: 3rem;
}

.service-des-area p .fa-check {
    color: #bd8222;
    margin-right: 1rem;
}

.service-des-area .right-text {
  font-family: 'Prompt';
  letter-spacing: -0.02em;
  font-size: 26px;
  line-height: 66px;
  font-weight: 600;
  padding: 25px 0px;
  border-bottom: 2px solid #000;
}

.service-des-area .right-text p:last-of-type {
    font-size: 3.5rem;
}

/* service-des-area */


/* service_section-area */

section.service_section{
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #79998421;
}
.heading_container h2{
  font-weight: bold;
}


.heading_container h2 span{
  color: #00bbf0;
}

.heading_container p {
  margin: 2rem 0rem;
}

.cardm{
  width: 250px;
    height: 130px;
    border-radius: 25px;
    background: linear-gradient(40deg,#ff6ec4,#7873f5);
    color: white;
    margin: auto;
    transition:.6s;
}

.cardm:hover{
  background: linear-gradient(40deg, #2096ff, #05ffa3);
  color:black;
  cursor:pointer;
  transition:.6s;
}
.cardm h5{
  padding-top: 45px;
  font-weight: bold;
}

.card-margin-between{
  margin-top: 4rem;
  margin-bottom: 4rem;
}
/* our services-area */



  p.uptext {
    font-size: 4rem;
    font-weight: bold;
    color: #000;
    text-align: center;
    position: absolute;
    top: 230%;
}
  p.lowtext {
    font-size: 4rem;
    font-weight: bold;
    color: #000;
    text-align: center;
    position: absolute;
    top: 270%;
}



/* client review slider */

.video-section {
  position: relative;
  width: 100%;
  height: 50vh; /* Adjust height as needed */
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
}


/* .bg-opacity{
  background-color: #000;
  height: 100%;
} */


.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#bgVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    color: rgb(204, 196, 196);
    text-align: center;
    padding: 20px;
    margin-top: 4rem;
}

.content h1, .content p {
    
    padding: 10px;
    
}


/* client slider end */


/* how company works */


section.how-works {
  padding: 5rem 0rem;
  background: #C5C6C7;
}

section.services-how-works {
  padding: 6rem 0rem;
}


.how-works .left-text-icons{
  width: 95%;

}

.how-works .left-text-icons .top-texts h1{
  font-family: 'League Spartan';
  font-size: 2rem;
}



.how-works .left-text-icons .top-texts h4{
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.how-works .left-text-icons .icon-with-text {
  height: 10rem;
    width: 10rem;
    border: 9px solid #2b2525;
    border-radius: 50%;
    padding: 20px;
}


.how-works .left-text-icons .icon-with-text .fa-arrow-up-from-bracket,
.how-works .left-text-icons .icon-with-text .fa-clipboard-list,
.how-works .left-text-icons .icon-with-text .fa-tv,
.how-works .left-text-icons .icon-with-text .fa-pen-to-square,
.how-works .left-text-icons .icon-with-text .fa-file-signature,
.how-works .left-text-icons .icon-with-text .fa-handshake

{
  font-size: 1rem;
  margin-top: 2rem;
}

.how-works .left-text-icons .icon-with-text h5{
  font-size: 0.8rem;
}


.how-works .right-form input{
  width: 18rem;
}

/* how company works end */


.container{
  overflow: hidden;
}


.banner-video {
  z-index: -1000;
  top: 0;
  left: 0;
}

/* The text container is placed above the video */
/* .rave-text {
  z-index: 2;
} */

/* Adjust text sizes for different screen sizes */
@media (max-width: 768px) {
  .head-text h1 {
      font-size: 2rem;
  }

  .head-text h2 {
      font-size: 1rem;
  }
}
  

