* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}
.header {
  flex: 1;
  width: 100%;
  padding-bottom: 35px;
  /* background-image: url(Images/main_bg.png); */
  
  background-position-x: 100%;
  background-position-y: 100%;

  background-size: 300px;
  /* background-size: contain; */
  background-repeat: no-repeat;
  position: relative;

}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}


.video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%; 
  overflow: hidden;
}
.video-container video {
  /* Make video to at least 100% wide and tall */
  min-width: 100%; 
  min-height: 100%; 

  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;

  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

@media screen and (max-width: 800px) {
  .video-container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 70%; 
    overflow: hidden;
  }
  .video-container video {
    /* Make video to at least 100% wide and tall */
    min-width: 100%; 
    min-height: 70%; 
  
    /* Setting width & height to auto prevents the browser from stretching or squishing the video */
    width: auto;
    height: auto;
  
    /* Center the video */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }

  .float{
    position:fixed;
    width:35px;
    height:35px;
    bottom:10px;
    right:10px;
    background-color:#25d366;
    color:#FFF;
    border-radius:18px;
    text-align:center;
    font-size:25px;
    box-shadow: 2px 2px 3px #999;
    z-index:100;
  }
  .my-float{
    margin-top:1px;
  }
  
} 



nav {
  display: flex;
  padding: 0% 2%;
  justify-content: space-between;
  align-items: center;
  /* background-color: blue; */
}



navs {
  height: 100px;
  display: block;
  /* padding: % 1%; */
  justify-content: space-between;
  align-items: flex-end;
  text-align: right;

  /* background-color: blueviolet; */
}
 .lang ul li{
  list-style: none;
  display: inline-flex;
  margin-bottom: 15px;
  padding: 5px 5px;
  position: relative;
  text-align: right;
  align-items: flex-end;
}

.lang ul li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

nav img {
  width: 180px;
  /* background-color: #cf1411; */
}

.nav-links {
  flex: 1;
  text-align: right;
}




.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 5px 5px;
  position: relative;
}

.nav-links ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
}

.nav-links ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #0d66fd;
  display: block;
  margin: auto;
  transition: 0.5s;
}

.nav-links ul li:hover:after {
  width: 100%;
}

.menu-btn img {
  width: 0;
  height: 0;
}

@media screen and (max-width: 800px) {
  .nav-links ul li{
    width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
    display: block;
  }

  .menu-btn img {
    width: 25px;
    height: 25px;
    margin-top: 15px;
    object-fit: contain;
  }

  .nav-links {
    opacity: 0;
  }

  
nav img {
  width: 120px;
  margin-top: 15px;
}

}

.social-links {
  flex: 1;
  text-align: right;
  /* background-color: aqua; */
}

.social-links ul li {
  list-style: none;
  display: inline-block;
  position: relative;
  padding: 5px;
  /* background-color: rgb(77, 15, 61); */
}

.social-links ul li img {
  width: 25px;
}

.social-links ul li:hover {
  transform: scale(1.2);
}



/* The side navigation menu */
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  right: 0;
  background-color: rgb(0, 0, 0); /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 15px 15px 32px;
  text-decoration: none;
  font-size: 14px;
  color: #ffffff;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 36px;
  margin-left: 10px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left .5s;
  padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}


}

/* ----------------------------------------------Slider---------------------------------------------------------- */

.slider-header {
  width: 100%;
  background-size: contain;
  display: inline-flex;
  position: relative;
  /* margin-top: 50px; */
  /* background-color: blueviolet; */
}


.first {
  right: 0;
  opacity: 0;
  z-index: 0;
  top:40%;
  font-weight: bold;
  color: #0d66fd;
  font-size: 42px;
}

.second {
  right: 0;
  opacity: 0;
  top:40%;
  z-index: 0;
  font-weight: bold;
  color: #0d66fd;
  font-size: 42px;
}

.third {
  right: 0;
  opacity: 0;
  top:40%;
  z-index: 0;
  font-weight: bold;
  color: #0d66fd;
  font-size: 42px;
}

.fourth {
  right: 0;
  opacity: 0;
  top:40%;
  z-index: 0;
  font-weight: bold;
  color: #0d66fd;
  font-size: 42px;
}

/* .fifth {
  right: 0;
  opacity: 0;
  top:40%;
  z-index: 0;
  font-weight: bold;
  color: #000;
  font-size: 42px;
} */



.first {
  animation: cycleone 30s ease-in-out infinite;
}
.second {
  animation: cycletwo 30s ease-in-out infinite;
}
.third {
  animation: cyclethree 30s ease-in-out infinite;
}
.fourth {
  animation: cyclefour 30s ease-in-out infinite;
} 
/* .fifth {
  animation: cyclefive 0s ease-in-out infinite;
}  */



/* .slider {
  
  width: 50%;
  min-height: 60vh;
  background: url(Images/mobile_app_dev.jpg);
  border-radius: 10%;
  animation: slide 30s infinite;
  align-self: flex-end;
  position: relative;
  background-size: cover;
  background-clip: border-box;
  left:2%;
  background-color: #cf1411;
} */

.slider-content{
  width: 100%;
  margin-top: 30px;
  position: relative;
  align-items: center;
  align-content: center;
  display: inline-flexbox;
  /* background-color: rgb(8, 8, 8); */
  text-align: center;


}

.mySlides a{
  position: relative;
  font-weight: bold;
  color: #0d66fd;
  font-size: 62px;
  text-align: center;
  /* display: table-cell; */
  align-self: center;
  /* background-color: #25d366; */
  vertical-align: middle; 
   top: 45%;
  bottom: 0;
  right: 0;
  left: 0;

}

.mySlides img{
  width: 50%;
  max-height: 60vh;
  border-radius: 10%;
  /* align-self: flex-end; */
  position: relative;
  float: left;
  /* background-size: cover;
  background-clip: border-box; */
  object-fit: contain;
  /* display: table-cell; */

}
@media screen and (max-width: 800px) {
  .slider-header, .mySlides img {
    width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
    /* padding-bottom: 120px; */

    /* display: block; */
    
  }

  .slider-content {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 50px;
  }

  .mySlides a{
    font-size: 28px;
    top: 20px;
    /* top: 0%;
    bottom: 0;
    right: 0;
    left: 25%; */
  }

  .mySlides img{
    width: 90%;
    border-radius: 10%;
    align-self: center;
    position: relative;
    align-items: center;
    justify-self: center;
    justify-content: center;
    /* background-size: cover;
    background-clip: border-box; */
    object-fit: scale-down;
    float: none;

  
  }
}


@keyframes slide {
  25% {
    background: url(Images/mobile_app_dev.png);
    background-size: cover;
    border-radius: 10%;

  }
  50% {
    background: url(Images/web_dev.png);
    background-size: cover;
    border-radius: 10%;
  }
  75% {
    background: url(Images/UIUX.png);
    background-size: cover;
    border-radius: 10%;
  }

  100% {
    background: url(Images/SEO.png);
    background-size: cover;
    border-radius: 10%;
  }
}

/* -------------------------------------------welcome---------------------------------------------------- */

.status {
  padding-bottom: 50px;
  padding-top: 150px;
  margin-bottom: 50px;
  width: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
  /* margin-top: 100px; */
  /* background-color: #5a7564; */
  /* animation: textup 20s linear infinite;
  transform: translateY(100px); */
}

.box {
  width: 90%;
  position: relative;
  color: rgb(0, 0, 0);
  top: 0%;
  left: 50%;
  margin-bottom: 100px;
  transform: translate(-50%, 0%);
  text-align: center;
  /* background-color: #5a7564; */
}

.status box h1 {
  font-size: 42px;
  color: #0d66fd;
}

.status box p {
  margin: 10px 0 0px;
  font-size: 44px;
  color: rgb(0, 0, 0);

}


.status h1 {
  width: 100%;
  text-align: center;
  color: #0d66fd;
  font-size: 35px;
  margin-top: -50px;
}

.status-content {
    flex: 1;

  /* width: 100%; */
  /* height: 100%; */
  margin-top: 50px;
  text-align: center;
  justify-items: center;
  /* background-color: rgb(25, 187, 25); */
  align-self: center;
  align-content: center;
  /* position: relative; */
}

.status-content li {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}


.status-content ul1 {
  width: 230px;
  height: 230px;
  padding: 8px 8px;
  margin: 16px;
  /* padding-top: 60px;
  padding-bottom: 60px; */
  background-color: rgb(84, 87, 87);
  border-radius: 25px;
  text-align: center;
  /* display: inline-block; */
  align-self: center;
  list-style: none;

  display: inline-table;
  position: relative;

}


.status-content ul2 {
  width: 230px;
  height: 230px;
  padding: 8px 8px;
  margin: 16px;
  /* padding-top: 60px;
  padding-bottom: 60px; */
  border-radius: 25px;
  background-color: rgb(84, 87, 87);
  text-align: center;
  display: inline-table;
  position: relative;
    align-self: center;
  list-style: none;
}

.status-content ul3 {
  width: 230px;
  height: 230px;
  padding: 8px 8px;
  margin: 16px;
  /* padding-top: 60px;
  padding-bottom: 60px; */
  border-radius: 25px;
  background-color: rgb(84, 87, 87);
  text-align: center;
  display: inline-table;
  position: relative;
    align-self: center;
  list-style: none;
}

.status-content ul4 {
  width: 230px;
  height: 230px;
  padding: 8px 8px;
  margin: 16px;
  /* padding-top: 60px;
  padding-bottom: 60px; */
  border-radius: 25px;
  background-color: rgb(84, 87, 87);
  text-align: center;
  display: inline-table;
  position: relative;
    align-self: center;
  list-style: none;
}

/* .status-content li {
  padding-top: 30px;
} */

.status-content ul nu {
  font-size: 60px;
  color: #fff;
}

.status-content .counter {
  font-size: 60px;
  color: #fff;
}

.status-content ul1 img {
  height: 40%;
  width: 40%;
  align-self: center;
  margin: 0;
  padding: 0.2em;
  /* vertical-align: middle; */
  float: inline-end;
  object-fit: contain;

}

.status-content ul2 img {
  height: 40%;
  width: 40%;
  align-self: center;
  margin: 0;
  padding: 0.2em;
  /* vertical-align: middle; */
  float: inline-end;

  object-fit: contain;

}

.status-content ul3 img {
  height: 40%;
  width: 40%;
  align-self: center;
  margin: 0;
  padding: 0.2em;
  /* vertical-align: middle; */
  float: inline-end;
  object-fit: contain;

}

.status-content ul4 img {
  height: 40%;
  width: 40%;
  align-self: center;
  margin: 0;
  padding: 0.2em;
  /* vertical-align: middle; */
  float: inline-end;

  object-fit: contain;

}

@property --num1 {
  syntax: "<integer>";
  initial-value: 0;
  inherits: false;
}

@property --num2 {
  syntax: "<integer>";
  initial-value: 0;
  inherits: false;
}

@property --num3 {
  syntax: "<integer>";
  initial-value: 0;
  inherits: false;
}

@property --num4 {
  syntax: "<integer>";
  initial-value: 0;
  inherits: false;
}

.status-content ul1 {
  transition: --num1 1s;
  counter-reset: num1 var(--num1);
}

.status-content ul2 {
  transition: --num2 1s;
  counter-reset: num2 var(--num2);
}

.status-content ul3 {
  transition: --num3 1s;
  counter-reset: num3 var(--num3);
}

.status-content ul4 {
  transition: --num4 1s;
  counter-reset: num4 var(--num4);
}


.status-content :hover {
  background-color: #0d66fd;
  /* overflow: hidden; */
  /* --num1: 6;
  --num2: 63;
  --num3: 41;
  --num4: 35; */
}

/* .status-content ul1 nu1::after {
  content: counter(num1);
  font-size: 0px;
  color: #fff;
}
.status-content ul2 nu2::after {
  content: counter(num2);
  font-size: 60px;
  color: #fff;
}

.status-content ul3 nu3::after {
  content: counter(num3);
  font-size: 60px;
  color: #fff;
}

.status-content ul4 nu4::after {
  content: counter(num4);
  font-size: 60px;
  color: #fff;
} */

@media screen and (max-width: 800px) {
  .box h1 {
    font-size: 20px;
    /* color: #0d66fd; */
  }
  
  .box ps {
    margin: 10px 0 0px;
    font-size: 10px;
    color: rgb(0, 0, 0);
  }
  
  .status h1 {
    font-size: 22px;
    color: #0d66fd;
  }


  .status-content ul1, .status-content ul2, .status-content ul3, .status-content ul4{
    width: 140px;
    height: 140px;
    padding: 2px 2px;
    margin: 4px;
    border-radius: 20px;
    background-color: rgb(84, 87, 87);
    text-align: center;
    display: inline-table;
    position: relative;    
    align-self: center;
    list-style: none;
  }

  .status-content li {
    /* padding-top: 12px; */
    font-size: 12px;
  }
  .status-content .counter {
    font-size: 20px;
    color: #fff;
  }

  .status-content ul1 nu1::after, .status-content ul2 nu2::after, 
  .status-content ul3 nu3::after, .status-content ul4 nu4::after {
    /* content: counter(num4); */
    font-size: 20px;
    color: #fff;
  }
} 


/* -------------------------------------------Service---------------------------------------------------- */


.services-header {
  /* padding-bottom: 80px; */
  width: 100%;
  margin-top: 50px;
  margin-bottom: 30px;
  padding-top: 50px;
  padding-bottom: 80px;
  background-position: center;
  background-size: cover;
  position: relative;
  /* background-color: violet; */
}


.services-header h1 {
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
  color: #0d66fd;
  font-size: 40px;
}


.services-content {
  flex: 1;
  /* padding-top: 80px; */
  text-align: center;
  justify-items: center;
  align-self: center;
  align-content: center;
  /* background-color: yellow; */
}

.services-content ul:hover {
  transform: scale(1.1);
  /* background-color: #cf1411; */
  background-image: linear-gradient(to right, rgb(238, 238, 238) , rgb(13,102,253));

}

.services-content ul {
  z-index: 1;
  max-width: 270px;
  list-style: none;
  display: inline-table;
  padding: 8px 8px;
  margin: 16px;
  position: relative;
  /* background-color: rgba(100, 100, 100, 0.452); */
  border-radius: 25px;
  background : linear-gradient(-158deg, rgb(0, 255, 255), rgb(0, 0, 0));
}



.services-content ul li {
  list-style: none;
  display:block;
  /* padding: 5px ; */
  position: relative;
  /* background: blue; */
  align-items: flex-start;
  align-content: space-around;
  margin: 0;
  padding: 0.4em;
  
}


.services-content ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: block;
  /* background-color: aquamarine; */
  margin: 0;
  padding: 0.4em;
  
}

.services-content ul li img {
  height: 25px;
  width: 25px;
  align-self: center;
  margin: 0;
  padding: 0.2em;
  vertical-align: middle;
  margin-left: 10px;
  float: left;
  object-fit: contain;

}



.services-content ul li ahead {
  color: black;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  display: inline-block;
  /* background-color: #cf1411; */
  margin: 0;
  padding: 0.4em;
}

.services-content ul li ahead img {
  height: 60px;
  width: 40px;
  margin: 0;
  padding: 0.4em;
  float: left;
  object-fit: contain;

}


@media screen and (max-width: 800px) {
  .services-header h1 {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .services-content ul {
    max-width: 170px;
    padding: 4px 4px;
    margin: 8px;

  }

.services-content ul li ahead {
  width: 90%;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  align-items: center;
  align-self: center;
  justify-self: center;
  /* background-color: #cf1411; */
  margin: 0;
}

.services-content ul li ahead img {
  height: 30px;
  width: 20px;
  margin: 0;
  float: left;
  object-fit: contain;

}

.services-content ul li a {
  color: #fff;
  font-size: 10px;
  display: block;
}

.services-content ul li img {
  height: 15px;
  width: 15px;
  align-self: center;
  margin: 0;
  padding: 0.2em;
  vertical-align: middle;
  margin-left: 5px;
  float: left;
  object-fit: contain;

}
  
}


/* -------------------------------------------Highlights---------------------------------------------------- */

.highlights-header {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px;
  background-position: center;
  background-size: cover;
  position: relative;
  background-image: linear-gradient(to right, rgb(238, 238, 238) , rgb(13,102,253));
}

.highlights-header h1 {
  width: 100%;
  padding-top: 30px;
  text-align: center;
  color: white;
  font-size: 40px;
  /* position: absolute;
  top: 8%;
 left: 0%;
 right: 0%;
 transform: translate(-0%, -50%); */
}
.highlights-header h5 {
  width: 100%;
  padding-top: 15px;
padding-bottom: 15px;
  text-align: center;
  color: black;
  font-size: 16px;
  /* position: absolute;
  top: 8%;
 left: 0%;
 right: 0%;
 transform: translate(-0%, -50%); */
}

.highlights-content {
  width: 100%;
  /* height: 450px; */
  padding-top: 10px;
  text-align: center;
  justify-items: center;
  align-self: center;
  align-content: center;
  text-align: center;
  /* background-color: yellow; */
}

.highlights-content ul:hover {
  transform: scale(1.1);
  opacity: 100%;

  /* background-color: #324D9B; */
}



.highlights-content ul {
  width: 270px;
  list-style: none;
  display: inline-table;
  padding: 8px 8px;
  margin: 16px;
  position: relative;
  background-color: rgb(0, 0, 0);
  border-radius: 25px;
}

.highlights-content ul li {
  list-style: none;
  display:block;
  /* padding: 5px ; */
  position: relative;
  /* background: blue; */
  align-items: flex-start;
  align-content: space-around;
  margin: 0;
  padding: 0.4em;
  
}


.highlights-content ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: block;
  /* background-color: aquamarine; */
  margin: 0;
  padding: 0.4em;
  
}

.highlights-content ul li img {
  height: 65px;
  width: 65px;
  align-self: center;
  margin: 0;
  padding: 0.2em;
  vertical-align: middle;
  object-fit: contain;
}


.highlights-content ul li ahead {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  display: inline-block;
  /* background-color: #cf1411; */
  margin: 0;
  padding: 0.4em;
}

@media screen and (max-width: 800px) {
  .highlights-header h1 {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .highlights-header h5 {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 14px;
  }

  .highlights-content ul {
    width: 170px;
    padding: 4px 4px;
    margin: 8px;
  }
  

  
  .highlights-content ul li img {
    height: 35px;
    width: 35px;
  }
  
  
  .highlights-content ul li ahead {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 14px;
  }

  .highlights-content ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 10px;
  }
  
}


/* -------------------------------------------work-process---------------------------------------------------- */

.work-process-header {
  width: 100%;
  padding-top: 20px;
  background-position: center;
  background-size: cover;
  position: relative;
  background-image: linear-gradient(to right, rgb(238, 238, 238) , rgb(13,102,253));
}

.work-process-header h1 {
  width: 100%;
  padding-top: 30px;
  text-align: center;
  color: white;
  font-size: 40px;
  /* position: absolute;
  top: 8%;
 left: 0%;
 right: 0%;
 transform: translate(-0%, -50%); */
}
.work-process-header h5 {
  width: 100%;
  padding-top: 15px;
padding-bottom: 15px;
  text-align: center;
  color: black;
  font-size: 16px;

}

.work-process-content {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 50px;
  text-align: center;
  justify-items: center;
  align-self: center;
  align-content: center;
  text-align: center;
  /* background-color: yellow; */
}

.work-process-content ul:hover {
  transform: scale(1.1);
  opacity: 100%;

  /* background-color: #324D9B; */
}



.work-process-content ul {
  width: 270px;
  height: 320px;
  list-style: none;
  display: inline-table;
  padding: 8px 8px;
  margin: 16px;
  position: relative;
  background-color: rgb(0, 0, 0);
  border-radius: 25px;
}

.work-process-content ul li {
  list-style: none;
  display:block;
  /* padding: 5px ; */
  position: relative;
  /* background: blue; */
  align-items: flex-start;
  align-content: space-around;
  margin: 0;
  padding: 0.4em;
  
}


.work-process-content ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: block;
  /* background-color: aquamarine; */
  margin: 0;
  padding: 0.4em;
  
}

.work-process-content ul li img {
  height: 65px;
  width: 65px;
  align-self: center;
  margin: 0;
  padding: 0.2em;
  vertical-align: middle;
  object-fit: contain;
}


.work-process-content ul li ahead {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  display: inline-block;
  /* background-color: #cf1411; */
  margin: 0;
  padding: 0.4em;
}

@media screen and (max-width: 800px) {
  .work-process-header h1 {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .work-process-content ul {
    width: 170px;
    height: 220px;
    list-style: none;
    display: inline-table;
    padding: 4px 4px;
    margin: 8px;
    position: relative;
    background-color: rgb(0, 0, 0);
    border-radius: 25px;
  }


  
.work-process-content ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  display: block;
  /* background-color: aquamarine; */
  margin: 0;
  padding: 0.4em;
  
}

.work-process-content ul li img {
  height: 35px;
  width: 35px;
  align-self: center;
  margin: 0;
  padding: 0.2em;
  vertical-align: middle;
  object-fit: contain;
}


.work-process-content ul li ahead {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  /* background-color: #cf1411; */
  margin: 0;
  padding: 0.4em;
}

}


/* -------------------------------------------Industries---------------------------------------------------- */


.Industries-header {
  /* padding-bottom: 80px; */
  width: 100%;
  margin-top: 50px;
  margin-bottom: 30px;
  padding-top: 50px;
  padding-bottom: 80px;
  background-position: center;
  background-size: cover;
  position: relative;
  /* background-color: violet; */
}


.Industries-header h1 {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  color: #0d66fd;
  font-size: 40px;
}

.Industries-header h5 {
  width: 100%;
  padding-bottom: 15px;
  text-align: center;
  color: black;
  font-size: 16px;

}
.Industries-content {
  flex: 1;
  /* padding-top: 80px; */
  text-align: center;
  justify-items: center;
  align-self: center;
  align-content: center;
  /* background-color: yellow; */
}

.Industries-content ul:hover {
  transform: scale(1.1);
  /* background-color: #cf1411; */
  /* background-image: linear-gradient(to right, rgb(4, 141, 141) , rgb(250, 56, 137)); */
    background-color: #000000;


}

.Industries-content ul {
  width: 220px;
  height: 220px;
  list-style: none;
  display: inline-table;
  padding: 8px 8px;
  margin: 20px;
  position: relative;
  background-color: rgb(84, 87, 87);
  border-radius: 25px;
}

.Industries-content ul li {
  list-style: none;
  display:block;
  /* padding: 5px ; */
  position: relative;
  /* background: blue; */
  align-items: flex-start;
  align-content: space-around;
  margin: 0;
  padding: 0.4em;
  
}

.Industries-content ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: block;
  /* background-color: aquamarine; */
  margin: 0;
  padding: 0.4em;
  
}

.Industries-content ul li img {
  height: 85px;
  width: 85px;
  align-self: center;
  margin: 0;
  padding: 0.2em;
  vertical-align: middle;
  object-fit: contain;

}



.Industries-content ul li ahead {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  display: inline-block;
  /* background-color: #cf1411; */
  margin: 0;
  padding: 0.4em;
}

@media screen and (max-width: 800px) {
  .Industries-header h1 {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .Industries-header h5 {
    margin-bottom: 20px;
    font-size: 12px;
  }


  .Industries-content ul {
    width: 120px;
    height: 120px;
    list-style: none;
    display: inline-table;
    padding: 4px 4px;
    margin: 10px;
    position: relative;
    background-color: rgba(100, 100, 100, 0.452);
    border-radius: 25px;
  }
  
  .Industries-content ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    display: block;
    /* background-color: aquamarine; */
    margin: 0;
    padding: 0.4em;
    
  }
  
  .Industries-content ul li img {
    height: 45px;
    width: 45px;
    align-self: center;
    margin: 0;
    padding: 0.2em;
    vertical-align: middle;
    object-fit: contain;
  
  }

  
.Industries-content ul li ahead {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  /* background-color: #cf1411; */
  margin: 0;
  padding: 0.4em;
}


}


/* -------------------------------------------work-with---------------------------------------------------- */

.work-with-header {
  flex: 1;
  width: 100%;
  padding-top: 30px;
  background-position: center;
  background-size: cover;
  position: relative;
  background-image: linear-gradient(to right, rgb(238, 238, 238) , rgb(13,102,253));
}

.work-with-header h1 {
  width: 100%;
  padding-top: 30px;
  text-align: center;
  color: white;
  font-size: 40px;
  /* position: absolute;
  top: 8%;
 left: 0%;
 right: 0%;
 transform: translate(-0%, -50%); */
}
.work-with-header h5 {
  width:100%;
  padding-top: 30px;
padding-bottom: 30px;
  text-align: center;
  align-self: center;
  color: whitesmoke;
  font-size: 16px;

  /* position: absolute;
  top: 8%;
 left: 0%;
 right: 0%;
 transform: translate(-0%, -50%); */
}

.work-with-content {
  width: 100%;
  /* height: 450px; */
  padding-bottom: 60px;
  padding-top: 10px;
  text-align: center;
  justify-items: center;
  align-self: center;
  align-content: center;
  text-align: center;
  /* background-color: yellow; */
}

.work-with-content ul:hover {
  transform: scale(1.1);
  opacity: 100%;

  /* background-color: #324D9B; */
}



.work-with-content ul {
  width: 270px;
  height: 200px;
  list-style: none;
  display: inline-table;
  padding: 8px 8px;
  margin: 10px;
  position: relative;
  background-color: rgb(0, 0, 0);
  border-radius: 25px;
}

.work-with-content ul li {
  list-style: none;
  display:block;
  /* padding: 5px ; */
  position: relative;
  /* background: blue; */
  align-items: flex-start;
  align-content: space-around;
  margin: 0;
  padding: 0.4em;
  
}


.work-with-content ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: block;
  /* background-color: aquamarine; */
  margin: 0;
  padding: 0.4em;
  
}

.work-with-content ul li img {
  height: 65px;
  width: 65px;
  align-self: center;
  margin: 0;
  padding: 0.2em;
  vertical-align: middle;
  object-fit: contain;
}


.work-with-content ul li ahead {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  display: inline-block;
  /* background-color: #cf1411; */
  margin: 0;
  padding: 0.4em;
}


@media screen and (max-width: 800px) {
  .work-with-header h1 {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .work-with-header h5 {
    margin-bottom: 20px;
    font-size: 12px;
  }

  
.work-with-content ul {
  width: 170px;
  height: 100px;
  list-style: none;
  display: inline-table;
  padding: 4px 4px;
  margin: 5px;
  position: relative;
  background-color: rgb(0, 0, 0);
  border-radius: 25px;
}

.work-with-content ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  display: block;
  /* background-color: aquamarine; */
  margin: 0;
  padding: 0.4em;
  
}

.work-with-content ul li img {
  height: 35px;
  width: 35px;
  align-self: center;
  margin: 0;
  padding: 0.2em;
  vertical-align: middle;
  object-fit: contain;
}


.work-with-content ul li ahead {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  /* background-color: #cf1411; */
  margin: 0;
  padding: 0.4em;
}
}


/* -------------------------------------------our-work---------------------------------------------------- */


.our-work-header {
  /* padding-bottom: 80px; */
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-top: 50px;
  background-position: center;
  background-size: cover;
  position: relative;
  /* background-color: violet; */
}



.our-work-header h1 {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  color: #0d66fd;
  font-size: 40px;
}


.our-work-content {
  /* flex: 1; */
 width: 100%;
  /* padding-top: 80px; */
  text-align: center;
  justify-items: center;
  align-self: center;
  align-content: center;
  display: grid;
  grid-template-columns: 1fr 1fr;

  /* background-color: yellow; */
}



.our-work-content ul:hover {
  transform: scale(1.1);
  background-color: #0d66fd;
}


.our-work-content ul-smile {
  width: 400px;
  /* height: 420px; */
  flex-direction: column;
  flex-wrap: wrap;
  display: flex;
  -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  list-style: none;
  display: block;
  padding: 20px;
  margin: 20px;
  position: relative;
  background-color: rgb(243, 54, 54);
  border-radius: 25px;
}

.our-work-content ul-wengage  {
  width: 400px;
  /* height: 420px; */
  flex-direction: column;
  flex-wrap: wrap;
  display: flex;
  -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  list-style: none;
  display: block;
  padding: 20px;
  margin: 20px;
  position: relative;
  background-color: rgb(57, 56, 71);
  border-radius: 25px;
}

.our-work-content ul-saloon  {
  width: 400px;
  /* height: 420px; */
  flex-direction: column;
  flex-wrap: wrap;
  display: flex;
  -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  list-style: none;
  display: block;
  padding: 20px;
  margin: 20px;
  position: relative;
  background-color: rgb(84, 14, 214);
  border-radius: 25px;
}


.our-work-content ul-real {
  width: 400px;
  /* height: 420px; */
  flex-direction: column;
  flex-wrap: wrap;
  display: flex;
  -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  list-style: none;
  display: block;
  padding: 20px;
  margin: 20px;
  position: relative;
  background-color: rgb(218,165,32);
  border-radius: 25px;
}

.our-work-content ul-open  {
  width: 400px;
  /* height: 420px; */
  flex-direction: column;
  flex-wrap: wrap;
  display: flex;
  -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  list-style: none;
  display: block;
  padding: 20px;
  margin: 20px;
  position: relative;
  background-color: rgb(10, 189, 55);
  border-radius: 25px;
}

.our-work-content ul-moment  {
  width: 400px;
  /* height: 420px; */
  flex-direction: column;
  flex-wrap: wrap;
  display: flex;
  -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  list-style: none;
  display: block;
  padding: 20px;
  margin: 20px;
  position: relative;
  background-color: rgb(255, 153, 0);
  border-radius: 25px;
}



.our-work-content ul-smile  li {
  width: 200px;
  height: 400px;
  list-style: none;
  display:block;
  /* padding: 5px ; */
  position: relative;
  /* background: blue; */
  
}


.our-work-content ul-wengage  li {
  width: 180px;
  height: 400px;
  list-style: none;
  display:block;
  /* padding: 5px ; */
  position: relative;
  /* background: blue; */
  
}


.our-work-content ul-saloon  li {
  width: 200px;
  height: 400px;
  list-style: none;
  display:block;
  /* padding: 5px ; */
  position: relative;
  /* background: blue; */
  
}


.our-work-content ul-real  li {
  width: 220px;
  height: 400px;
  list-style: none;
  display:block;
  /* padding: 5px ; */
  position: relative;
  /* background: blue; */
  
}


.our-work-content ul-open  li {
  width: 200px;
  height: 400px;
  list-style: none;
  display:block;
  /* padding: 5px ; */
  position: relative;
  /* background: blue; */
  
}


.our-work-content ul-moment  li {
  width: 220px;
  height: 400px;
  list-style: none;
  display:block;
  /* padding: 5px ; */
  position: relative;
  /* background: blue; */
  
}



.our-work-content ul-smile  li img {
  height: 400px;
  width: 290px;
  /* margin-right: 50px; */
  position: relative;
  /* float: left; */
  align-self: center;
  vertical-align: middle;
  object-fit: contain;

}

.our-work-content ul-wengage  li img {
  height: 400px;
  width: 290px;
  /* margin-right: 50px; */
  position: relative;
  /* float: right; */
  align-self: center;
  vertical-align: middle;
  object-fit: contain;

}

.our-work-content ul-saloon  li img {
  height: 400px;
  width: 290px;
  margin-right: 50px;
  position: relative;
  float: left;
  align-self: center;
  vertical-align: middle;
  object-fit: contain;

}


.our-work-content ul-real  li img {
  height: 400px;
  width: 290px;
  margin-right: 50px;
  position: relative;
  float: left;
  align-self: center;
  vertical-align: middle;
  object-fit: contain;

}

.our-work-content ul-open  li img {
  height: 400px;
  width: 290px;
  margin-right: 50px;
  position: relative;
  float: left;
  align-self: center;
  vertical-align: middle;
  object-fit: contain;

}

.our-work-content ul-moment  li img {
  height: 400px;
  width: 290px;
  margin-right: 50px;
  position: relative;
  float: left;
  align-self: center;
  vertical-align: middle;
  object-fit: contain;

}


.our-work-content ul-smile  li ahead {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 32px;
  font-weight: bold;
  float: left;
  display: inline-block;
  /* background-color: #cf1411; */
  margin: 0;
  padding: 0.4em;
}


.our-work-content ul-wengage  li ahead {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 32px;
  font-weight: bold;
  float: left;
  display: inline-block;
  /* background-color: #cf1411; */
  margin: 0;
  padding: 0.4em;
}

.our-work-content ul-saloon  li ahead {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 32px;
  font-weight: bold;
  float: left;
  display: inline-block;
  /* background-color: #cf1411; */
  margin: 0;
  padding: 0.4em;
}


.our-work-content ul-real  li ahead {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 32px;
  font-weight: bold;
  float: left;
  display: inline-block;
  /* background-color: #cf1411; */
  margin: 0;
  padding: 0.4em;
}


.our-work-content ul-open  li ahead {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 32px;
  font-weight: bold;
  float: left;
  display: inline-block;
  /* background-color: #cf1411; */
  margin: 0;
  padding: 0.4em;
}

.our-work-content ul-moment  li ahead {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 32px;
  font-weight: bold;
  float: left;
  display: inline-block;
  /* background-color: #cf1411; */
  margin: 0;
  padding: 0.4em;
}

.our-work-content ul-smile  li subhead {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  display: block;
  float: left;
  margin: 0;
  padding: 0.4em;
  
}


.our-work-content ul-wengage li subhead {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  display: block;
  float: left;
  margin: 0;
  padding: 0.4em;
  
}


.our-work-content ul-saloon  li subhead {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  display: block;
  float: left;
  margin: 0;
  padding: 0.4em;
  
}


.our-work-content ul-real  li subhead {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  display: block;
  float: left;
  margin: 0;
  padding: 0.4em;
  
}


.our-work-content ul-open li subhead {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  display: block;
  float: left;
  margin: 0;
  padding: 0.4em;
  
}


.our-work-content ul-moment  li subhead {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  display: block;
  float: left;
  margin: 0;
  padding: 0.4em;
  
}

.our-work-content ul-smile  li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: block;
  float: left;
  margin: 0;
  padding: 0.4em;
  
}

.our-work-content ul-wengage  li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: block;
  float: left;
  margin: 0;
  padding: 0.4em;
  
}

.our-work-content ul-saloon  li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: block;
  float: left;
  margin: 0;
  padding: 0.4em;
  
}


.our-work-content ul-real  li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: block;
  float: left;
  margin: 0;
  padding: 0.4em;
  
}

.our-work-content ul-open  li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: block;
  float: left;
  margin: 0;
  padding: 0.4em;
  
}

.our-work-content ul-moment  li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: block;
  float: left;
  margin: 0;
  padding: 0.4em;
  
}


@media screen and (max-width: 800px) {
  .our-work-header h1 {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .our-work-content {
    width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
    display: block;
    grid-template-columns: 1fr 1fr;
  }

  .our-work-content ul-smile,
  .our-work-content ul-wengage,
  .our-work-content ul-saloon,
  .our-work-content ul-real,
  .our-work-content ul-open,
  .our-work-content ul-moment {
    width: 80%;
    padding: 20px;
    margin: 20px;
    border-radius: 25px;
  }

  .our-work-content ul-smile  li,
  .our-work-content ul-wengage  li, 
  .our-work-content ul-saloon  li, 
  .our-work-content ul-real  li, 
  .our-work-content ul-open  li, 
  .our-work-content ul-moment  li
   {
    width: 90%;
    height: 100%;
    
  }

  .our-work-content ul-smile  li ahead,
  .our-work-content ul-wengage  li ahead,
  .our-work-content ul-saloon  li ahead,
  .our-work-content ul-real  li ahead,
  .our-work-content ul-open  li ahead,
  .our-work-content ul-moment  li ahead {
    font-size: 22px;
  }

  .our-work-content ul-smile  li img,
  .our-work-content ul-wengage  li img,
  .our-work-content ul-saloon  li img,
  .our-work-content ul-real  li img,
  .our-work-content ul-open  li img,
  .our-work-content ul-moment  li img {
    width: 100%;
    position: relative;
    float: left;
    align-self: center;
    vertical-align: middle;
    /* background-color: #ffffff; */
    object-fit: contain;
    /* margin-left: 50px; */
  
  }

  
}

/*------------------------------------------- Our Clients-------------------------------------------- */

.clients-header {
  width: 100%;
  margin-bottom: 100px;
  background-position: center;
  background-size: cover;
  position: relative;
  /* background-color: violet; */
}

/* .clients-header img {
    width: 420px;
    top: 120px;
    position: absolute;
    text-align: center;
    left: 50%;
    right: 50%

} */

.clients-header h1 {

  width: 100%;
  padding-top: 50px;
  margin-bottom: 50px;
  text-align: center;
  color: #0d66fd;
  font-size: 40px;
}

.clients-content {
  width: 100%;
  text-align: center;
  justify-items: center;
  align-self: center;
  align-content: center;
  position: relative;
  /* background-color: yellow; */
}



.big {
  height: 350px;
  width: 350px;
  background-color: rgb(56, 53, 53);
  border-radius: 75%;
  display: inline-block;
  /* margin: 30px; */
  color: #fff;
  text-align: center;
  vertical-align: middle;
  align-items: center;
}

.big2 {

  height: 350px;
  width: 350px;
  background-color: rgb(3, 71, 6);
  border-radius: 175%;
  display: inline-block;
  margin: 30px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  align-items: center;
}


.big3 {

  height: 350px;
  width: 350px;
  background-color: rgb(93, 10, 160);
  border-radius: 175%;
  display: inline-block;
  margin: 30px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  align-items: center;
}

.big a {
  display: block;
  margin-top: -50px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  align-items: center;
}

.big b {
  display: block;
  font-size: 20px;
  margin-top: 10px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  align-items: center;
}

.big c {
  display: block;
  margin: 20px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  align-items: center;
}


.big img{
  width: 150px;
}


.big2 a {
  display: block;
  margin-top: -50px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  align-items: center;
}

.big2 b {
  display: block;
  font-size: 20px;
  margin-top: 20px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  align-items: center;
}

.big2 c {
  display: block;
  margin: 20px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  align-items: center;
}


.big2 img{
  width: 150px;
}

.big3 a {
  display: block;
  margin-top: -50px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  align-items: center;
}

.big3 b {
  display: block;
  font-size: 20px;
  margin-top: 20px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  align-items: center;
}

.big3 c {
  display: block;
  margin: 20px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  align-items: center;
}


.big3 img{
  width: 150px;
}


.big user img {
  height: 100px;
  width: 100px;
  border-radius: 75%;
  align-self: flex-end;
  justify-self: end;
  transform: translate(115%, 0%);

}



.big2 user img {
  height: 100px;
  width: 100px;
  border-radius: 75%;
  align-self: flex-end;
  justify-self: end;
  transform: translate(115%, 0%);
}

.big3 user img {
  height: 100px;
  width: 100px;
  border-radius: 75%;
  align-self: flex-end;
  justify-self: end;
  transform: translate(130%, 0%);
}


@media screen and (max-width: 800px) {
  .clients-content {
    width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
  }

}


@media screen and (max-width: 800px) {
  .clients-header h1 {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .big user img {
    height: 50px;
    width: 50px;
    border-radius: 75%;
    align-self: flex-end;
    justify-self: end;
    transform: translate(150%, 30%);
  
  }

  .big2 user img {
    height: 50px;
    width: 50px;
    border-radius: 75%;
    align-self: flex-end;
    justify-self: end;
    transform: translate(150%, 30%);
  
  }


  .big3 user img {
    height: 50px;
    width: 50px;
    border-radius: 75%;
    align-self: flex-end;
    justify-self: end;
    transform: translate(150%, 30%);
  
  }


  .big, .big2, .big3 {

    height: 210px;
    width: 210px;
    background-color: rgb(56, 53, 53);
    border-radius: 100%;
    display: inline-block;
    margin: 15px;
    
  }


  .big a {
    margin-top: -30px;
    font-size: 12px;
  }

  
.big b {
  font-size: 10px;
  margin-top: 5px;
}

.big c {
  margin: 5px;
  font-size: 8px;
}

  
.big img{
  width: 70px;
}


.big2 a {
  margin-top: -30px;
  font-size: 12px;
}

.big2 b {
  font-size: 10px;
  margin-top: 5px;
}

.big2 c {
  margin: 5px;
  font-size: 8px;
}


.big2 img{
  width: 70px;
}

.big3 a {
  margin-top: -30px;
  font-size: 12px;
}

.big3 b {
  font-size: 10px;
  margin-top: 5px;
}

.big3 c {
  margin: 5px;
  font-size: 8px;
}


.big3 img{
  width:70px;
}

.small, .small2, .small3 {

  height: 70px;
  width: 70px;
  background-color: rgb(55, 13, 243);
  border-radius: 50%;
  display: inline-block;
  margin: 30px;
  position: absolute;
  left: 300px;
  top: 70px;
}

.small img, .small2 img,  .small3 img{
  height: 70px;
  width: 70px;
  border-radius: 50%;
}


}

/* -------------------------------------------Foot---------------------------------------------------- */

.foot {
  flex: 1;
  width: 100%;
  background-position: center;
  background-size: cover;
  position: absolute;
  /* background-color: violet; */
}

.foot-content {
  width: 100%;
  padding-top: 20px;
  position: relative;
  text-align: center;
  /* background-color: yellow; */
  background-image: linear-gradient(to left, rgb(238, 238, 238) , rgb(13,102,253));
  display: inline-flex;
  align-items: baseline;
}



/* .services-content :hover {
  transform: scale(1.1);
  background-color: #324D9B;
} */

.foot-content ul {
  width: 95%;
  list-style: none;
  display: inline-block;
  /* padding: 8px 12px; */
  margin: 10px;
  position: relative;
  text-align: center;
  align-content: center;
  align-self: center;
  /* background-color: rgba(5, 177, 134, 0.452); */
}


/* .foot-content iframe{
  width: 500;
  height: 400;
  position: relative;
  text-align: center;
  align-content: center;
  align-self: center;
  background-color: rgba(194, 11, 11, 0.452);
} */



.foot-content ul li h {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
}

.foot-content ul li s {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;

}

.foot-content ul li {
  list-style: none;
  display: block;
  padding: 8px 12px;
  align-items: center;
  align-content: center;
  position: relative;
}

/* .foot-content ul apps a {
  width: 50px;
  height: 60px;

} */

.foot-content ul li div  {
  color: #324D9B;
align-self: center;
align-content: center;

}


.foot-content ul li info {
  list-style: none;
  display: inline-block;
  align-items: center;
  align-content: center;
  align-self: flex-start;
  display: flex;
  position: relative;
  padding: 2px;
}

.foot-content ul li info t {
  list-style: none;
  display: inline-block;
  text-align: left;
  padding-left: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  text-align: left;
  /* background-color: aquamarine; */
}

.foot-content img {
  width: 32px;
  height: 32px;
  }

  .foot-content ul li mob img {
    width: 160px;
    height: 150px;
    object-fit: contain;
  }


/* .foot-content ul li a mob {
  width: "100";
  height: "50";
} */


.foot-content ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  
}



.foot-content ul li mob img {
  max-width: 100%;
}



@media screen and (max-width: 800px) {
  .foot-content {
    width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
    display: block;
  }

  .foot-content ul li h {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
  }
  
  .foot-content ul li s {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
  
  }
  
  .foot-content ul li {
    list-style: none;
    display: block;
    padding: 2px 3px;
    align-items: center;
    align-content: center;
    position: relative;
  }

  .foot-content ul li info t {
    list-style: none;
    display: inline-block;
    text-align: left;
    padding-left: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    text-align: left;
    /* background-color: aquamarine; */
  }
  
  .foot-content ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    
  }

  .foot-content img {
    width: 22px;
    height: 22px;
    }

    .foot-content ul li mob img {
      width: 160px;
      height: 150px;
      object-fit: contain;
    }
    


  .foot-content iframe {
    width: 90%;
  }
  
}

/*-------------------------------------------------------Error File------------------------------------------------*/


.fof {
  flex: 1;
  display: block;
  align-self: center;


}

.fof h1{
  font-size: 50px;
  display: inline-block;
  align-self: center;
  vertical-align: middle;
  text-align: center;
  animation: type .5s alternate infinite;

  top: 40%;
  left: 0%;
  right: 0%;
  position: absolute; 
}

@keyframes type{
  from{box-shadow: inset -3px 0px 0px #888;}
  to{box-shadow: inset -3px 0px 0px transparent;}
}

