@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900;1000&display=swap');

body{
    padding: 0;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

a{
    text-decoration: none;
}

ul{
    padding: 0%;
    margin: 0%;
}
:root {
  --main: #1e266d !important;
}

/* header start */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 15px 0;
  transition: 0.5s;
}
.is-sticky {
  background: var(--main);
  position: fixed;
  padding: 10px 0;
  transition: 0.5s;
}
header .container {
  max-width: 95%;
}
@media (max-width:991px){
  header .container {
    max-width: 100%;
}
}
.navbar-brand img {
  max-width: 80px;
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 20px;
  padding-left: 20px;
}
.navbar-light .navbar-nav .nav-link {
  color: rgb(255 255 255);
  font-weight: 700;
  font-size: 17px;
}
.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
  color: rgb(1 201 245);
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  color:  rgb(1 201 245);
}
a.theme-btn {
  background: #01c9f5;
  padding: 12px 30px;
  margin-right: 20px;
  border-radius: 25px;
  color: #fff;
  font-weight: 700;
}
.menu-sidebar button {
  background: transparent;
  border: none;
  font-size: 30px;
  color: #fff;
  outline: none;
}
/* header end */

/* banner sec start  */
section.banner_sec {
  background: linear-gradient(45deg, black, #1e266d);
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.banner_area{
  position: absolute;
  top: 60%;
  width: 100%;
  left: 0;
  transform: translateY(-50%);
  z-index: 99;
}
.banner_text {
  color: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.banner_text span {
  font-size: 20px;
  color: #01c9f5;
  font-weight: 800;
}
.banner_text h1 {
    font-size: 55px;
    line-height: 60px;
    font-weight: 800;
    margin-bottom: 15px;
}
.banner_text p {
    font-size: 17px;
    width: 90%;
    margin-bottom: 15px;
}
a.button_page {
  background: #01c9f5;
  width: 35%;
  text-align: center;
  padding: 12px;
  border-radius: 25px;
  color: #fff;
  font-size: 20px;
}
.banner_area .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 15px;
  margin-top: 20px;
}
.banner_area .owl-dot span {
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  display: block;
  border-radius: 50%;
  padding: 6px;
}
.banner_area .owl-dot.active span {
  background: #01c9f5;
}

.slider-shapes .dots.one {
  top: 10px;
  right: 50px;
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  animation: rotated_circle 30s infinite;
  max-width: 10%;
  position: absolute;
}
.slider-shapes .dots.two {
  right: 26%;
  bottom: 40px;
  position: absolute;
  max-width: 10%;
  animation: rotated_circle 30s infinite;
}
@keyframes rotated_circle{
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
100% {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
}
.slider-shapes .circle {
  bottom: 20%;
  left: 5%;
  -webkit-animation: shapeAnimationThree 40s infinite;
  animation: shapeAnimationThree 40s infinite;
  position: absolute;
  max-width: 60px;
  filter: invert(1);
}
@keyframes shapeAnimationThree{
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
}
25% {
  -webkit-transform: translate(50px, 150px) rotate(90deg);
  transform: translate(50px, 150px) rotate(90deg);
}
50% {
  -webkit-transform: translate(150px, 150px) rotate(180deg);
  transform: translate(150px, 150px) rotate(180deg);
}
75% {
  -webkit-transform: translate(150px, 50px) rotate(270deg);
  transform: translate(150px, 50px) rotate(270deg);
}
100% {
  -webkit-transform: translate(0px, 0px) rotate(360deg);
  transform: translate(0px, 0px) rotate(360deg);
}
}

.slider-shapes .wave-line {
    max-width: 30%;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-animation: down-up-one 10s infinite;
    animation: down-up-one 10s infinite;
    z-index: 9;
}
@keyframes down-up-one{
  0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
}
50% {
  -webkit-transform: rotateX(0deg) translateY(25px);
  transform: rotateX(0deg) translateY(25px);
}
100% {
  -webkit-transform: rotateX(0deg) translateY(0px);
  transform: rotateX(0deg) translateY(0px);
}
}

.banner_sec::after {
  position: absolute;
  top: 0;
  left: -7%;
  width: 450px;
  height: 450px;
  content: '';
  border-radius: 50%;
  background: #0066ff;
  -webkit-animation: zoomInOut 5s infinite;
  animation: zoomInOut 5s infinite;
  z-index: 0;
  filter: blur(120px);
}
.banner_sec::before {
  position: absolute;
  bottom: 5%;
  right: -12%;
  width: 450px;
  height: 450px;
  content: '';
  border-radius: 50%;
  background: #98c1f8;
  -webkit-animation: zoomInOut 5s infinite;
  animation: zoomInOut 5s infinite;
  z-index: 0;
  filter: blur(220px);
}

@keyframes zoomInOut {
0%,
100% {
-webkit-transform: scale(1);
transform: scale(1); }
50% {
-webkit-transform: scale(0.5);
transform: scale(0.5); } }

/* banner sec end  */


/* services start */

section.services_sec {
  padding: 100px 0 100px;
  position: relative;
}
.section_heading p {
  font-size: 20px;
  color: #01c9f5;
  margin: 0;
  font-weight: 700;
}
.section_heading h1 {
  font-size: 56px;
  font-weight: 800;
}
.section_heading{
  margin-bottom: 40px;
}
.service_area {
  padding: 20px;
  background: #ffffff3d;
  border-radius: 25px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9;
  overflow: hidden;
  box-shadow: 1px 2px 20px 7px #1573ef17;
}
div#Web .service_img {
  background: green;
}
div#dev .service_img {
  background: #ffc800;
}
div#graphic .service_img {
  background:red;
}
/*.service_area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 5;
  background: linear-gradient(45deg, #000, transparent);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.service_area:hover::after{
  height: 100%;
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}*/
.service_img {
  min-width: 100px;
  height: 100px;
  border-radius: 44% 56% 67% 33% / 38% 40% 60% 62%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main);
  animation: wave infinite 3s;
}
.service_content h4 {
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 20px;
}
.service_content p {
    margin: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 140px;
}
.service_img img {
  filter: invert(1);
}
.overlay_img {
  position: absolute;
  bottom: -100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  right: -100%;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  border-radius: 100%;
}
.overlay_img img {
    height: 100%;
    object-fit: cover;
}
.service_area:hover .overlay_img {
  right: 0;
  transition: 0.5s;
  opacity: 1;
  bottom: 0%;
  visibility: visible;
  border-radius: 0%;
}
.overlay_content {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: 0.5s;
  padding: 0px 20px 0px 20px;
  color: #fff;
  text-align: center;
}
.service_area:hover .overlay_content{
  bottom: 20px;
  transition: 0.5s;
} 
a.read_more {
  display: inline-block;
  padding: 10px 50px;
  background: #01c9f5;
  border-radius: 25px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  margin-top: 30px;
}
/* services end */

/* about start */
section.about_sec {
  padding: 100px 0;
  position: relative;
  background-color: var(--main);
  z-index: 9;
}
.about_sec::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://demo.webtend.net/html/qoll/assets/images/projects/project-bg.png);
  background-size: 100% auto;
    background-position: 0 50px;
    z-index: -1;
}
.about_content span {
  font-size: 20px;
  color:#01c9f5;
  font-weight: 700;
}
.about_content h1 {
  color: #ffffff;
  font-weight: 800;
  font-size: 56px;
  margin-bottom: 30px;
}
.about_content p {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}
.about_img img {
  border-radius: 25px;
}
/* about end */


/* technology start */
.tecnologies_sec{
  position: relative;
  padding: 100px 0;
}

.technology-item {
  padding: 25px;
  background: #1573ef2b;
  border-radius: 7px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid white;
  height: calc(100% - 30px);
}
.technology-item:hover {
  border-color: #0066ff;
}

/* technology start */

/* testimonial start */
.testimonial_area{
  position: relative;
  z-index: 9;
}
.testi_item {
  text-align: center;
  padding: 30px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #000 !important;
  box-shadow: 1px 2px 20px 7px #1573ef17;
}
.testi_item img {
  width: 100px !important;
  display: table;
  margin: 0px auto 10px;
}
.testi_item p {
  font-size: 20px;
  line-height: 30px;
}
.testi_item h5 {
  text-transform: uppercase;
  font-weight: 800;
  color: var(--main);
}
.testi_item span {
  font-size: 60px;
  color: var(--main);
  position: absolute;
  top: -44px;
  right: -35px;
  width: 160px;
  height: 160px;
  background: #1573ef2b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.testimonial_area .owl-prev {
  position: absolute;
  left: -103%;
  bottom: 30%;
  width: 50px;
  height: 50px;
  background: var(--main) !important;
  color: #fff !important;
  border-radius: 50%;
  box-shadow: 1px 1.732px 16px 0px rgb(21 115 239 / 36%);
  display: none;
}
.testimonial_area .owl-next {
  position: absolute;
  left: -95%;
  bottom:30%;
  width: 50px;
  height: 50px;
  background: var(--main) !important;
  color: #fff !important;
  border-radius: 50%;
  box-shadow: 1px 1.732px 16px 0px rgb(21 115 239 / 36%);
  display: none;
}
.testimonial_area .owl-dot span {
  width: 25px;
  height: 10px;
  border: 1px solid var(--main);
  display: block;
  border-radius: 25px;
}
.testimonial_area .owl-dot.active span{
  background-color:var(--main);
}
.testimonial_area .owl-item.active {
  transform: scale(0.9);
  transition: 0.5s;
}
.testimonial_area .owl-item.active.center {
  transform: scale(1);
  transition: 0.5s;
}
.owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
section.testimonial_sec {
  padding: 100px 0;
  position: relative;
  z-index: 9;
  background-color: #1573ef2b;
}
/* testimonial end */

section.contact_us {
  padding: 100px 0;
}
.contact_us .about_content h1 {
  color: #000;
}
.contact_us .about_content {
  padding: 20px;
  box-shadow: 1px 2px 20px 7px #1573ef17;
  border-radius: 25px;
}
.form-control {
  padding: 10px;
  border-radius: 8px;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 1px 0px 20px 0px #1573ef99;
}
.contact_us .read_more {
  display: inline-block;
  padding: 10px 50px;
  background: #01c9f5;
  border-radius: 25px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  margin-top: 0px;
}
/* contact us end */

/* footer start */
footer {
  background: linear-gradient(45deg, black, #1e266d);
  padding: 100px 0 0;
}
.address_box a {
  color: #fff;
  margin: 0;
  font-weight: 800;
  font-size: 18px;
}
.address_box a span {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  color: #01c9f5;
}
.social_links ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}
.social_links ul li a {
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  background: #01c9f533;
  line-height: 50px;
  border-radius: 50%;
  color: #fff;
}
.social_area {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-bottom: 30px;
  border-bottom: 1px solid #ffffff2b;
}
.logo_area {
  padding: 40px 0;
  text-align: center;
  border-bottom: 1px solid #ffffff2b;
}
.logo_area a img {
  margin-bottom: 30px;
}
.logo_area h1 {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
}
.logo_area p {
  color: #fff;
  font-size: 17px;
  width: 50%;
  display: table;
  margin: 0 auto 0;
}
.footer_list ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}
.footer_list ul li a {
  color: #ffffff59;
  font-weight: 600;
}
.copy_right_p p{
  color: #ffffff59;
  text-align: right;
  margin: 0;
}
.copy_right_area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}
/* footer end */

/* about page start */
section.sub_banner_sec {
  position: relative;
  padding: 150px 0;
  background: linear-gradient(45deg, black, #1e266d);
  overflow: hidden;
}
.breadcrumb-item.active {
  color:rgb(1 201 245);
}
li.breadcrumb-item a {
  color: #ffffff;
}
.breadcrumb-item+.breadcrumb-item::before {
  color: #ffffff;
}
ol.breadcrumb {
  justify-content: center;
  margin: 0;
}
nav.breadcrumb_area {
  background: #ffffff47;
  padding: 20px;
  border-radius: 25px;
  position: relative;
  z-index: 999;
}
.sub_banner_sec::before {
  position: absolute;
  bottom: 5%;
  right: -12%;
  width: 450px;
  height: 450px;
  content: '';
  border-radius: 50%;
  background: #98c1f8;
  -webkit-animation: zoomInOut 5s infinite;
  animation: zoomInOut 5s infinite;
  z-index: 0;
  filter: blur(220px);
}
#service_page .section_heading{
  margin-bottom: 0;
}
#service_page .service_area{
  margin-top:40px;
}
section.Service_details {
  padding: 100px 0;
}
.Service_details .about_content h1{
  color: #000 !important;
}
.Service_details .about_content p{
  color: #000 !important;
}
/* about page end */

/* hamgar menu */
.hamgar_menu_bar {
  width: 100%;
  max-width: 0;
  position: fixed;
  background: var(--main);
  height: 100%;
  z-index: 9999;
  top: 0;
  right: -100%;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.hamgar_menu_bar_open{
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
  right: 0;
  max-width: 400px;
}
.contact_sidebar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.side_icon span {
  width: 40px;
  height: 40px;
  background: #01c9f5;
  color: #fff;
  display: block;
  line-height: 40px;
  text-align: center;
  border-radius: 8px;
}
.side_content h5 {
  margin: 0;
  color: #fff;
  font-weight: 600;
}
.side_content a {
  color: #01c9f5;
}
a.side_logo {
    display: none;
    margin-bottom: 30px;
    margin-top: 60px;
}
button.side_close {
  display: block;
  float: right;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 25px;
  outline: none;
}
.hamgar_menu_bar .navbar-nav {
  display: none;
  margin-bottom: 40px;
}

.hamgar_menu_bar .nav-link {
  color: rgb(255 255 255);
  font-weight: 700;
  font-size: 17px;
  border-top: 1px solid #ddd;
}
@media (max-width:991px){
  .hamgar_menu_bar .navbar-nav {
    display: block;
  }
}

.scrollToTopBtn {
  background-color: var(--main);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  font-size: 30px;
  line-height: 48px;
  width: 48px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  opacity: 0;
  transform: translateY(100px);
  transition: all .5s ease;
}
.showBtn {
  opacity: 1;
  transform: translateY(0);
}

/* responstive css */
@media only screen and (min-width:320px) and (max-width:400px){
  a.theme-btn {
    padding: 8px 9px;
    margin-right: 1px;
}
.banner_text span {
  font-size: 12px;
  margin-bottom: 0px;
}
.banner_text h1 {
  font-size: 24px;
  line-height: 30px;
}
.banner_text p {
  font-size: 12px;
}
a.button_page {
  width: 44%;
  padding: 8px;;
  font-size: 14px;
}
.banner_img {
  margin-top: 30px;
  width: 80% !important;
}
.banner_area .owl-dots {
  justify-content: start;
  margin-left: 15px;
}
.service_area {
  margin-bottom: 40px;
}
section.services_sec {
  padding: 100px 0 60px;
}
.about_content h1 {
  font-size: 50px;
}
.about_content {
  margin-top: 40px;
}
.testi_item span {
  font-size: 30px;
  width: 100px;
  height: 100px;
  top: -20px;
  right: -20px;
}
.testi_item {
  padding: 20px;
  margin: 15px;
}
.testi_item p {
  font-size: 14px;
  line-height: 24px;
}
section.contact_us .about_content {
  margin-top: 0;
  margin-bottom: 40px;
 }
.social_area {
  flex-direction: column;
  gap: 20px;
}
.footer_list ul {
  flex-flow: wrap;
  justify-content: center;
}
.copy_right_area {
  flex-direction: column;
}
.section_heading h1 {
  font-size: 50px;
}
.logo_area h1 {
  font-size: 25px;
}
.logo_area p {
  font-size: 14px;
  width: 100%;
}
.copy_right_p p {
  text-align: center;
  margin: 20px 0 0;
}
}


@media only screen and (min-width:401px) and (max-width:575px){
  a.theme-btn {
    padding: 8px 9px;
    margin-right: 1px;
}
.banner_text span {
  font-size: 15px;
  margin-bottom: 0px;
}
.banner_text h1 {
  font-size: 35px;
  line-height: 42px;
  margin-bottom: 10px;
}
.banner_text p {
  font-size: 14px;
}
a.button_page {
  width: 44%;
  padding: 8px;;
  font-size: 14px;
}
.banner_img {
  margin-top: 30px;
  width: 65% !important;
}
.banner_area .owl-dots {
  justify-content: start;
  margin-left: 15px;
}
.service_area {
  margin-bottom: 40px;
}
section.services_sec {
  padding: 100px 0 60px;
}
.about_content h1 {
  font-size: 50px;
}
.about_content {
  margin-top: 40px;
}
.testi_item span {
  font-size: 30px;
  width: 100px;
  height: 100px;
  top: -20px;
  right: -20px;
}
.testi_item {
  padding: 20px;
  margin: 15px;
}
.testi_item p {
  font-size: 14px;
  line-height: 24px;
}
section.contact_us .about_content {
 margin-top: 0;
 margin-bottom: 40px;
}
.social_area {
  flex-direction: column;
  gap: 20px;
}
.footer_list ul {
  flex-flow: wrap;
  justify-content: center;
}
.copy_right_area {
  flex-direction: column;
}
.section_heading h1 {
  font-size: 50px;
}
.logo_area h1 {
  font-size: 25px;
}
.logo_area p {
  font-size: 14px;
  width: 100%;
}
.copy_right_p p {
  text-align: center;
  margin: 20px 0 0;
}
}

@media (max-width:767px){
  .navbar-brand img {
    max-width: 50px;
}
a.theme-btn {
  padding: 8px 14px;
  margin-right: 1px;
  font-size: 13px;
}
.banner_area {
  top: 55%;
}
.section_heading h1 {
  font-size: 30px;
}
section.services_sec {
  padding: 60px 0 30px;
}
.about_content {
  text-align: center;
}
.about_content h1 {
  font-size: 30px;
  margin-bottom: 10px;
}
.about_content p {
  font-size: 13px;
  line-height: 20px;
}
section.about_sec {
  padding: 60px 0;
}
.tecnologies_sec {
  padding: 60px 0 30px;
}
section.testimonial_sec {
  padding: 60px 0;
}
section.testimonial_sec .section_heading {
  margin-bottom: 0;
}
section.contact_us {
  padding: 60px 0;
}
a.side_logo img {
  max-width: 100px;
}
section.sub_banner_sec {
  padding: 100px 0 60px;
}
#service_page .service_area {
  margin-bottom: 0;
}
section.Service_details {
  padding: 30px 0 60px;
}
.Portfollio-sec {
  padding: 60px 0 0 !important;
}
.portfollio-content {
  text-align: center;
}
.portfollio-content .button_page {
  margin: 10px auto 0px;
}
.blog-details-sec {
  padding: 60px 0 !important;
}
a.side_logo{
  display: block;
}
}

.portfollio-content {
  margin-top: 30px;
}
.portfollio-content h4 {
  color: #000;
  margin: 0;
}
.portfollio-content small {
  color: #333;
}
.portfollio-content .button_page {
  display: block;
  margin-top: 10px;
}
.portfollio-area {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.Portfollio-sec {
  padding: 100px 0 0;
}
.prv-blog-list-area ul {
  padding: 30px;
  box-shadow: 1px 1px 14px 9px #ddd;
  border-radius: 10px;
}
.prv-blog-list-area ul li a{
  color: #000;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
.blog-details-sec{
  padding: 100px 0;
}