/**************************************
 ** Custom CSS
 **************************************/
@font-face {
font-family: 'Oswald Extra-Light';
font-style: normal;
font-weight: normal;
src: local('Oswald Extra-Light'), url('../fonts/Oswald-Extra-LightItalic.woff') format('woff');
}

@font-face {
font-family: 'Oswald Light';
font-style: normal;
font-weight: normal;
src: local('Oswald Light'), url('../fonts/Oswald-Light.woff') format('woff');
}

@font-face {
font-family: 'Oswald Medium';
font-style: normal;
font-weight: normal;
src: local('Oswald Medium'), url('../fonts/Oswald-Medium.woff') format('woff');
}

@font-face {
font-family: 'Oswald Demi-Bold';
font-style: normal;
font-weight: normal;
src: local('Oswald Demi-Bold'), url('../fonts/Oswald-Demi-BoldItalic.woff') format('woff');
}

@font-face {
font-family: 'Oswald DemiBold';
font-style: normal;
font-weight: normal;
src: local('Oswald DemiBold'), url('../fonts/Oswald-DemiBold.woff') format('woff');
}

@font-face {
font-family: 'Oswald Bold';
font-style: normal;
font-weight: normal;
src: local('Oswald Bold'), url('../fonts/Oswald-Bold.woff') format('woff');
}

@font-face {
font-family: 'Oswald Heavy';
font-style: normal;
font-weight: normal;
src: local('Oswald Heavy'), url('../fonts/Oswald-Heavy.woff') format('woff');
}

@font-face {
font-family: 'Oswald Regular';
font-style: normal;
font-weight: normal;
src: local('Oswald Regular Regular'), url('../fonts/Oswald-Regular.woff') format('woff');
}

@font-face {
font-family: 'Oswald Stencil Bold';
font-style: normal;
font-weight: normal;
src: local('Oswald Stencil Bold'), url('../fonts/Oswald-Stencil.woff') format('woff');
}
/*************************************/
.slider {
  position: relative;
}

.slider.fixed-slider {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.slider .swiper-slide-active {
  z-index: 3;
}

.slider .parallax-slider {
  position: relative;
  height: 520px;
}

.slider .parallax-slider .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 30px;
}

.slider .parallax-slider .swiper-slide .bg-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  padding-top: 30px;
}

.slider .parallax-slider .swiper-slide-active .caption h1 {
  opacity: 1;
  animation: fadeInLeft .8s;
  -webkit-animation-delay: 1s;
  animation-delay: .3s;
}

.slider .parallax-slider .caption {
  text-align: center;
  padding-top: 70px;
}

.slider .parallax-slider .caption h1 {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  opacity: 1;
  visibility: visible;
  line-height: normal;
}
.slider .parallax-slider .caption p {
  color: #fff;
  font-weight: 500;
  margin-top: 20px;
  opacity: 1;
}

.slider .parallax-slider .swiper-slide-active .caption p {
  color: #fff;
  font-weight: 500;
  opacity: 1;
  animation: fadeInRight .8s;
}

.slider .parallax-slider .swiper-slide-active .caption .home-slider-btn {
  position: relative;
  opacity: 1;
  animation: fadeInLeft 1s;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.slider .control-text {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 100%;
  height: auto;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.slider .control-text .swiper-nav-ctrl {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-left: 15px;
  margin-right: 15px;
  position: static;
  width: auto;
  height: auto;
  display: inline-block;
  background: transparent;
  padding: 5px 10px;
  border-radius: 3px;
}

.slider .control-text .swiper-nav-ctrl:after {
  font-size: 20px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    display: block;
    text-align: center;
    background: rgb(0, 0, 0, 0.3);
}
.slider .swiper-pagination-bullets {
  bottom: 20px;
}
.slider .swiper-pagination-bullet {
  background: #fff;
  opacity: .4;
}
.slider .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}
.slider .main-banner-content h1 {
    font-family: 'Oswald Bold';
    color: #fff;
}
.slider .main-banner-content h2 {
    font-family: 'Oswald DemiBold';
    color: #fff;
}
.slider .main-banner-content p {
    font-family: 'Oswald Regular';
    color: #fff;
}
.mb3s { margin-top: -30px; margin-left: 10px; height: 520px;}

.movimg{
  animation: mymove 5s linear infinite alternate;
  animation-delay: 3s;
  /*transition: none 1s ease 1s;*/
  /*transform: matrix(1, 0, 0, 1, -75, 0);*/
}
@keyframes mymove {
  from {right: 0px;}
  to {right: 100px;}
}
#animate-area {
  background-position: 0px 0px;
  background-repeat: repeat-x;
  animation: animatedBackground 10s linear infinite alternate;
}
@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
/*************************************/
.py-20    { padding: 20px 0 }
.py-30    { padding: 30px 0 }
.py-50    { padding: 50px 0 }
.mt-0     { margin-top: 0 }
.mt-20    { margin-top: 20px }
.mt-30    { margin-top: 30px }
.mb-0     { margin-bottom: 0 }
.mb-10    { margin-bottom: 10px }
.mb-20    { margin-bottom: 20px }
.mb-30    { margin-bottom: 30px }
.bg-gray  { background-color: #f7f7f7 }
.bg-black { background-color: #000 }
.bg-white { background-color: #fff }
.bg-1     { background-color: #248fe7 }
.bg-2     { background-color: #18202D }
.bg-3     { background-color: #49556B }
.bg-4     { background-color: #e8e8e8 }
.bg-5     { background-color: #e5e1e2 }
.bg-6     { background-color: #d2c6c9 }

.cl-b { color: #000 }
.cl-0 { color: #fff }
.cl-1 { color: #248fe7 }
.cl-2 { color: #18202D }
.cl-3 { color: #49556B }
/*************************************/
.top-bar p {
  color:#fff;
  padding: 5px 0;
  /*transform: scale(1.4);*/
  font-size:21px;
}
.top-bar p a {
  font-size:inherit;
}
.topnav {
  display: flex;
  align-items: center;
  gap:10px;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  height: 40px;
}
.topnav li {
  display: inline-block;
}
.topnav li a {
  display: inline-block;
  background-color: #fff;
  color:#111;
  padding: 0 10px;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  border-radius: 2px;
  font-weight: bold;
}
.topnav li a:hover {
  background-color: #00e6e6;
  color:#fff;
}

nav.bootsnav .megamenu-content .title {
  display: flex;
  align-items: center;
  gap: 10px;
}
nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu li a {
  display: block;
  color:#666;
}
.megamenu-fw img {
    width: 30px;
}

.welcome h1 {
  font-family: 'Oswald Bold';
  font-size: 54px;
  color:#248fe7;
  margin-top: 0;
  background: -webkit-linear-gradient(45deg, #248fe7, #76c0fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.welcome .grid_view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
.welcome .grid_view .item {
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  border-radius: 10px;
  text-align: center;
  padding: 45px 10px;
  transition: 0.5s
}
.welcome .grid_view .item img {
  height: 80px;
}
.welcome .grid_view .item h4 {
  line-height: initial;
  color:inherit;
}
.welcome .grid_view .item:hover {
  background-color: #248fe7;
  color:#fff;
}
.welcome .img_wrap { position: relative; }
.welcome .img_wrap h3 { 
  position: absolute;
  top: -50px;
  left: 10px;
  background-color: #248fe7;
  color:#fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 20px;
}
.welcome .img_wrap h4 { 
  position: absolute;
  bottom: -35px;
  left: 10px;
  background-color: #fff;
  color:#248fe7;
  padding: 10px 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2)
}

.welcome .img1 {
  position: relative;
  max-width: 90%;
  outline: 3px solid #248fe7;
  outline-offset: 5px;
}
.welcome .img2 {
  position: absolute;
  bottom: -10%;
  right: 0;
  width: 250px;
  border-radius: 50%;
  border: 7px solid #248fe7;
  border-top:5px;
  border-right:5px;
}
.welcome h6 {
  position: relative;
  background-color: #111;
  border-radius: 10px;
  padding:  15px 20px;
  color:#fff;
  font-size: 16px;
  overflow: hidden;
  text-transform: uppercase;
  transition: 0.5s;
  margin-top: 15px;
}
.welcome h6:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: calc(100% - 5px);
  background-color: #248fe7;
  border-radius: 8px;
  content: '';
  transition: 0.5s
}
.welcome h6 span {
  position: relative;
  z-index: 1;
}
.welcome h6:hover { color:#fff; }
.welcome h6:hover:before { width: 0; }

.service_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  margin-top: 20px;
}
.service_list a {
  position: relative;
  background-color: #248fe7;
  border-radius: 10px;
  padding:  15px 20px;
  color:#111;
  font-size: 16px;
  overflow: hidden;
  transition: 0.5s
}
.service_list a:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: calc(100% - 5px);
  background-color: #fff;
  border-radius: 8px;
  content: '';
  transition: 0.5s
}
.service_list a span {
  position: relative;
  z-index: 1;
}
.service_list a:hover { color:#fff; }
.service_list a:hover:before { width: 0; }

.awards {
  position: relative;
  background-size: cover;
  background-attachment: fixed;
  /*box-shadow: 0 0 20px rgba(0,0,0,0.2);*/
}
.awards h3 {
  margin: 10px 0
}
.awards .d-flex {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
}
.awards .item {
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  border-radius: 5px;
  border:2px solid #eee;
}
.awards .item img {
  width: auto;
  max-width: 100%;
  max-height: 60px;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.5;
  z-index: 0
}
.overlay.v8 { opacity: 0.8 }

.process {
  position: relative;
  background-size: cover;
  background-attachment: fixed;
}
.process .container {
  position: relative;
  z-index: 1
}
.process h2 {
  color:#fff;
  text-transform: capitalize;
  font-size: 40px;
  font-family: 'Oswald Medium';
  margin-bottom: 30px;
}
.process .grid_view {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 50px;
}
.process .item {
  position: relative;
  background-color: #248fe7;
  color:#fff;
  border-radius: 15px;
  margin-top: 35px;
}
.process .item figure {
  width:70px;
  height: 70px;
  border-radius: 70px;
  padding: 15px;
  margin: 0 auto;
  margin-top: -35px;
  background-color: #fff;
}
.process .item img { width:100%; }
.process .item p {
  font-size: 20px;
  padding: 30px 0;
}
.process .item:before {
  position: absolute;
  border-top:2px dashed #248fe7;
  top: 0;
  bottom: 0;
  right: -70px;
  width: 100px;
  height: 50px;
  border-radius: 50%;
  content: '';
  margin: auto;
}
.process .item:nth-child(even):before {
  border-top:none;
  border-bottom:2px dashed #248fe7;
}
.process .item:last-child:before {
  border-top:none;
}

.sector {
  position: relative;
  background-size: cover;
  background-attachment: fixed;
}
.sector .container {
  position: relative;
  z-index: 1
}
.sector h2 {
  color:#fff;
  text-transform: capitalize;
  font-size: 40px;
  font-family: 'Oswald Medium';
  margin-bottom: 30px;
}
.sector .grid_view {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 15px;
}
.sector .item {
  position: relative;
  border: 2px solid transparent;
  outline: 1px solid #fff;
  outline-offset: -1px;
  color:#fff;
  padding: 50px 20px;
  transition: 0.5s
}
.sector .item img {
  width: auto;
  height: 70px;
  margin: auto;
  margin-bottom: 25px;
}
.sector .item p {
  font-family: 'Oswald Medium';
  font-size: 20px;
  text-transform: uppercase;
  margin: 0;
}
.sector .item:hover {
  border-color: #248fe7;
  outline-color: #248fe7;
  color:#248fe7;
}
.sector .owl-nav div {
  position: absolute;
  top: 40%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  text-align: center;
  background-color: #248fe7;
  color: #fff;
}
.sector .owl-nav .owl-prev { right: 100%; margin-right: 15px; }
.sector .owl-nav .owl-next { left: 100%; margin-left: 15px; }

.pricing h1 {
  font-family: 'Oswald Bold';
  margin-top: 0;
  color: #248fe7;
  font-size: 72px;
}
.pricing h2 {
  font-family: 'Oswald Regular';
  line-height: initial;
  margin-bottom: 20px;
  color: inherit;
}
.pricing .jusrify-content-center {
  display: flex;
  justify-content: center;
}
.pricing h2 b {
  font-size: 40px;
  color: green;
  padding: 0 15px;
  text-decoration: underline;
}/*
.pricing .btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  border: 3px solid #248fe7;
  color: #248fe7;
  margin: 0 10px;
  font-family: 'Oswald Regular';
  font-size: 16px;
}*/
.pricing .btn2 {
  background-color: #248fe7;
  color: #fff;
}
.pricing .btn:hover {
  background-color: #248fe7;
  color: #fff;
}
.pricing .btn2:hover {
  background-color: #fff;
  color: #248fe7;
}
.pricing .btn-all {
  display: inline-block;
  font-size: 18px;
  text-transform: uppercase;
  padding: 10px 30px;
  border:3px solid #fff;
  transition: 0.5s;
  margin-bottom: 5px;
}
.pricing .btn-all:hover {
  background-color: #248fe7;
  color:#fff;
}

.testimonials {
  background-image: url('../upload/map.png');
  background-repeat: no-repeat;
  background-position: center;
}
.testimonials h1 {
  font-family: 'Oswald Bold';
  color: #248fe7;
  font-size: 48px;
  margin: 0 0 30px;
}
.testimonials .item_wrap {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-gap: 30px;
}
.testimonials .item_wrap .grid_view {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 30px;
}
.testimonials .item_wrap .grid_view.v2 {
  grid-template-columns: 1fr 2fr;
  margin-top: 30px;
}
.testimonials .item {
  background-image: url('../upload/googlebg.png');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: auto 25px;
  font-family: arial, sans-serif;
  padding: 20px;
  border-radius: 15px;
  outline: 1px solid #ddd;
  outline-offset: -5px;
}
.testimonials .item:hover { color: #111;}
.testimonials .item.cl-0:hover { color: #fff;}
.testimonials .item p {
  font-family: arial, sans-serif;
  font-size: 13px;
  line-height: 18px;
}
.testimonials .name {
  display: flex;
  gap: 15px;
}
.testimonials .name h4 {
  color: inherit;
  font-family: arial, sans-serif;
  margin: 0 0 5px
}
.testimonials .name p {
  font-size: 12px;
  margin-bottom: 5px
}
.testimonials .name > img {
  width: 60px;
  border-radius: 50%;
  border: 3px solid #ddd;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.testimonials .name div img {
  width: auto;
  height: 12px;
}
.testimonials .owl-nav div {
  position: absolute;
  top: 40%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  text-align: center;
  background-color: #248fe7;
  color: #fff;
}
.testimonials .owl-nav .owl-prev { right: 100%; margin-right: 15px; }
.testimonials .owl-nav .owl-next { left: 100%; margin-left: 15px; }
.testimonials .btn-all {
  color:#111;
  font-size: 18px;
  font-weight: bold;
  border:2px solid #ddd;
  padding: 10px 30px;
  border-radius: 30px;
}
.testimonials .btn-all img {
  height: 30px;
}
.testimonials .btn-all:hover {
  background-color: #fff;
  border-color: #248fe7;
}
.testimonials .btn-all span {
  color: #666;
}
.testimonials .btn-all i {
  margin: 0 1px;
  background: -webkit-linear-gradient(#fec00d, #f4851a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plans {
  position: relative;
  background-size: cover;
  background-attachment: fixed;
}
.plans .container {
  position: relative;
  z-index: 1;
}
.plans h1 {
  font-family: 'Oswald Bold';
  color:inherit;
}
.plans .item {
  margin-bottom: 30px;
}
.plans .item .d-flex {
  display: flex;
  justify-content: space-between;
}
.plans .item img {
  height: 80px;
}
.plans .item h3 {
  font-family: 'Oswald Bold';
  font-size: 16px;
  text-transform: uppercase;
  color:inherit;
  margin: 0;
}
.plans .item h3 span {
  display: block;
  font-family: 'Oswald Light';
  font-size: 24px;
  margin-top: 5px;
}
.plans .item .btn {
  background-color: #248fe7;
  color:#fff;
  padding: 8px 30px;
  border-radius: 30px;
  font-family: 'Oswald Regular';
  border:2px solid #fff;
  letter-spacing: 1px;
  transition: 0.5s;
}
.plans .item .btn:hover {
  background-color: transparent;
}

.portfolio h1 {
  font-family: 'Oswald Bold';
}
.portfolio .item {
  position: relative;
  display: block;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  margin-bottom: 30px;
}
.portfolio .item h4 {
  /*background-color: #fff;*/
  color:#248fe7;
  padding: 10px 10px 15px;
  margin: 0;
}
.portfolio .item img {
  width:100%;
  /*border:5px solid #fff;*/
}
.portfolio .btn-all {
  background-color: #248fe7;
  color:#fff;
  padding: 10px 30px;
  border: 3px solid #248fe7;
  border-radius: 30px;
  display: inline-block;
  font-size: 16px;
  transition: 0.5s
}
.portfolio .btn-all:hover { background-color: transparent; color:#248fe7; }

.clients_wrap .nav-pills li.active a {
  background-color: #248fe7 !important;
  color:#fff;
}
.clients_wrap .nav-pills li {
  margin:5px 0;
}
.clients_wrap .nav-pills li a {
  background-color: #eee;
  color:#111;
  border-radius: 30px;
  border: 3px solid #248fe7;
  font-weight: bold;
}
.clients_logo .item {
  display: flex;
  height: 90px;
  justify-content: center;
  align-items: center;
}
.clients_logo .item img {
  width: auto;
  max-width: 100%;
  max-height: 90px;
}

.cta h2 {
  font-size: 22px;
  margin: 10px 0 15px;
}
.cta a.btn {
  font-family: 'poppins', sans-serif;
  background-color: #fff;
  color:#248fe7;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px 18px;
  border:3px solid #fff;
  border-radius: 10px;
  transition: 0.5s;
}
.cta a.btn span {
  display: block;
  font-size: 30px;
}
.cta a.btn:hover {
  background-color: transparent;
  color:#fff;
}

.counter_wrap {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
}
.counter_wrap .overlay {
  background:#248fe7;
}
.counter_wrap .grid_view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
.counter_wrap .grid_view .item {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
}
.counter_wrap .grid_view .item h1 {
  font-size: 72px;
  font-weight: 800;
  margin: 13px 0;
  background: -webkit-linear-gradient(45deg, #248fe7, #76c0fd 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.form1 {
  background-color: rgba(255,255,255,0.8);
  padding: 30px;
  border-radius: 10px;
}
.form1 h3 {
  font-family: 'Oswald Bold';
  margin: 0 0 30px;
}
.form1 .form-group {
  position: relative;
}
.form1 .form-group i {
  position: absolute;
  top: 10px;
  left: 10px;
  color:#248fe7;
}
.form1 .form-control {
  background-color: #fff;
  padding-left: 30px;
}
.form1 .btn {
  background-color: #248fe7;
  color:#fff;
  border-radius: 30px;
  padding: 10px 40px;
}

.owl-10 .owl-nav div {
  position: absolute;
  top: 35%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  text-align: center;
  background-color: #248fe7;
  color: #fff;
}
.owl-10 .owl-nav .owl-prev { left: -10px; }
.owl-10 .owl-nav .owl-next { right: -10px; }

.custom1 .grid_view {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.custom1 .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}
.custom1 .item h2 {
  margin: 0;
}
.custom1 .item img {
  flex-shrink: 0;
  height: 100px;
}
#contact-us label {
    color:#111;
}

.btns {
  display: flex;
  justify-content: space-between;
  gap:10px;
}
.btns {
  display: flex;
  justify-content: space-between;
  gap:10px;
}
.btns .btn          { border: 1px solid transparent; }
.btns .btn-whatsapp { background-color: #25D366; }
.btns .btn-primary  { background-color: #248fe7; }
.btns .btn-call     { background-color: #ff6600; }
.btns .btn:hover    { background-color: #111; color:#fff; }

.goog-te-gadget { font-size: 0 !important;}
#google_translate_element span { display:none;}
.goog-te-gadget .goog-te-combo { padding:5px; outline:none; height: 30px;}
.modal { z-index: 10000000000 }
.tawk-min-container, .tawk-min-container .tawk-button { z-index: 0 }

.review_btn {
  position: fixed;
  top: 40%;
  right: -52px;
  z-index: 100;
  background:#248fe7;
  color: #fff;
  font-size: 15px;
  padding: 5px 15px;
  transform: rotate(-90deg);
  text-align: center;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 0 20px rgba(0,0,0,0.2)
}
.review_btn span {
  display: block;
}
.review_btn:hover { opacity: 0.6; color: #fff; }

/* whatsapp fix */
.whatsappfix {
  position: fixed;
  left: 30px;
  bottom: 60px;
  z-index: 1
}
.whatsappfix .video-btn > span {
  background-color: rgba(37, 211, 102,1);
}
.video-btn {
  text-align: initial;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  position: relative;
  font-size: 24px;
  font-style: italic;
  padding: 6px 0 6px;
  font-weight: 600;
}
.video-btn > span {
  position: absolute;
  left: 0;
  text-align: center;
  height: 50px;
  width: 50px;
  line-height: 50px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(255,255,255,.1);
  top: 0;
}
.video-btn:hover, 
.video-btn:focus {color: #fff;}
/*=== Pulse Animation ===*/
.spinner:before,
.spinner:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4.0625rem;
  margin-left: -4.0625rem;
  background-color: inherit;
  -webkit-animation: pluse 2s linear infinite;
  -ms-animation: pluse 2s linear infinite;
  -o-animation: pluse 2s linear infinite;
  animation: pluse 2s linear infinite;
  width: 8.125rem;
  height: 8.125rem;
  -webkit-border-radius: inherit;
  border-radius: inherit;
  opacity: 0;
  z-index: -2;
}
.spinner:after {
  -webkit-animation: pluse 2s linear 2.3s infinite;
  -ms-animation: pluse 2s linear 2.3s infinite;
  -o-animation: pluse 2s linear 2.3s infinite;
  animation: pluse 2s linear 2.3s infinite;
  -webkit-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-ms-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-o-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
/********************/
.social_wrap {
    position: relative;
    padding: 5px;
    margin: 0
}
.social_wrap li {
  display: inline-block;
}
.social_wrap li a.fa{
    display: block;
    background: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-right: none;
}
.social_wrap li a.fa-facebook { background: #3b5998;}
.social_wrap li a.fa-twitter { background: #38A1F3;}
.social_wrap li a.fa-linkedin { background: #0077B5;}
.social_wrap li a.fa-whatsapp { background: #25D366;}
.social_wrap li a.fa:hover {
    background: #fff;
    color: #000
}

footer .grid_view {
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
}
footer .item {
    display:flex;
    gap:15px;
    padding:30px;
}
footer .item i {
    font-size:30px;
    color:#fff;
}
footer .item p {
    color:#fff;
}
footer .item p strong {
    display:block;
    text-transform:uppercase;
}
/*.footer-bottom { margin-bottom: 42px; }*/

/**************/
.fixbar { 
  display:none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index:1;
}
.fixbar div {
  background: #111;
  display: grid;
  grid-template-columns:1fr 1fr;
  grid-gap:2px;
  /*text-align:center;*/
}
.fixbar div a {
  text-transform: uppercase;
  background: rgb(109,89,240);
  background: linear-gradient(0deg, rgba(109,89,240,1) 0%, rgba(78,56,200,1) 100%);
  color: #fff;
  text-align: center;
  display: block;
  letter-spacing: 1px;
  font-family: Gotham;
  font-weight: bold;
  font-size: 12px;
  height: 50px;
  line-height: 50px;
  /*padding:0 15px;*/
}
/*.fixbar div a:first-child{ border-right:2px solid #fde744;}*/
.fixbar div a i {
  background: #fff;
  color: #111;
  text-align: center;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius:50%;
  margin-right: 5px;
}
.fixbar div a:hover {
  background: #fde744;
  color: #0a0f37;
}
.fixbar span {
  display:block;
  background: #111;
  padding:5px;
  letter-spacing: 1px;
  text-transform: capitalize;
}
.fixbar span a {
  font-size: 12px;
  color: #fff;
}
.modal-body h3 {
  background-color: #eee;
  margin: 0;
  padding: 10px;
  color:#248fe7;
}

#enquiry .modal-dialog { margin-top: 120px; }
#enquiry .modal-content {
  background: rgb(109,89,240);
  background: linear-gradient(0deg, rgba(109,89,240,1) 0%, rgba(78,56,200,1) 100%);
  border:10px solid #6347f1;
  text-align: center;
}
#enquiry input.form-control {
    display: inline-block;
    font-size:14px;
    padding:10px;
    margin-bottom:15px;
    background-color: #fff;
    /*background-color: transparent;*/
    /*color: #fff;*/
    width: 80%;
    border: none;
    /*border-bottom: 1px solid #fff;*/
    /*border-radius: 0;*/
}
/*#enquiry ::-webkit-input-placeholder { color: #fff; }*/
#enquiry h3 {
  font-size:20px;
  font-weight: bold;
  color: #fff;
}
#enquiry .btn {
  background-color: #00cc87;
  padding: 7px 30px;
  text-transform: uppercase;
}
#enquiry .close,
#enquiry2 .close {
    position:absolute;
    top: 15px;
    right: 15px;
    color:#fff;
    font-weight:600px;
    font-size:24px;
    opacity:1;
    z-index:1;
}
#enquiry p {
    color:#fff;
    font-size:12px;
    padding-left:10px;
}
#enquiry p a:hover {
    color:#fff;
    text-decoration: underline;
}
.fixform {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(109,89,240);
  background: linear-gradient(0deg, rgba(109,89,240,1) 0%, rgba(78,56,200,1) 100%);
  z-index: 1;
  padding: 5px 0;
}
.fixform label {
  font-size: 10px;
  display: flex;
  align-items: center;
}
.fixform h2 {
  padding: 8px 0
}
.fixform h2,
.fixform h2 a {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}
.fixform .form-control {
  background-color: transparent;
  color: #fff;
  font-size: 13px;
  outline: none;
  border:none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
}
.fixform ::-webkit-input-placeholder { color: #fff; }
.fixform .btn {
  background-color: #fff;
  color: #0d1238;
}

@media only screen and (max-width: 480px) {
  nav.navbar.bootsnav .navbar-toggle { top: 10px; padding: 5px 12px; border:1px solid #ccc; }
  .wrap-sticky nav.navbar.bootsnav.sticked .navbar-toggle { top: 6px; }
  .wrap-sticky nav.navbar.bootsnav.sticked .navbar-brand img { margin: 0;}
  .top-bar { height: auto; }
  .topnav { height: 30px; justify-content: center; }
  .topnav li a { height: 20px; line-height: 20px; }
  .goog-te-gadget .goog-te-combo { width:125px; height: 20px; padding: 0; border:none; border-radius: 2px;}
  .topnav li a span,
  .slider .control-text,
  .testimonials .owl-nav { display: none; }
  /*.process .grid_view,*/
  .sector .grid_view,
  .testimonials .item_wrap,
  .testimonials .item_wrap .grid_view,
  .testimonials .item_wrap .grid_view.v2 { grid-template-columns: 1fr;}
  .testimonials .btn-all, .testimonials .btn-all span { display: block; }

  .slider .parallax-slider .swiper-slide .row { display: grid; text-align: center;}
  .slider .parallax-slider .swiper-slide .row > div:nth-child(1) { order: 2 }
  .slider .parallax-slider .swiper-slide .banner-image img { max-width: 100%; height:220px; margin: 0 auto !important; left: 0; right: 0; }
  .slider .main-banner-content .h1sa { font-size: 40px !important; }
  .slider .main-banner-content .h2sa { font-size: 30px !important; }
  .slider .main-banner-content .h3sa { font-size: 21px !important; }
  .slider .parallax-slider .swiper-slide .banner-image img.mb3s { margin: -30px 0 0 -15px !important; height: auto !important; width: calc(100% + 30px); max-width: initial;}

  .awards { text-align: center; }
  .awards .d-flex { display: block;}

  .process h2 { font-size: 30px; }
  .process .grid_view {
    display: flex;
    justify-content: center;
    gap:40px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .process .item { width: calc(50% - 40px); margin-top: 25px;}
  .process .item:before {
    width: 60px;
    right: -50px;
    top: 30px
  }
  .process .item:nth-child(2):before {/*
    border-top: none;
    border-bottom: none;
    border-right:2px dashed #248fe7;
    height: 150px;
    right: -20px;
    top: 110px;*/
    border-top: none;
    border-right: 2px dashed #248fe7;
    top: 90%;
    bottom: auto; 
    left: 0;
    right: 0;
    width: 0;
    height: 100px;
    border-radius: 0; 
  }
  .process .item:nth-child(3):before {
    right: 100%;
    margin-right: -10px;
  }
  .process .item:nth-child(4):before {
    right: 0;
    border-bottom: none;
    border-left:2px dashed #248fe7;
    width: 100px;
    height: 150px;
    top: 110px;
    transform: rotate(-45deg);
  }
  .process .item:nth-child(3) { order: 4 }
  .process .item:nth-child(4) { order: 3 }
  .process .item:nth-child(5) { order: 5 }

  .process .item figure { width:50px; height: 50px; border-radius: 50px; padding: 10px; margin-top: -25px;}
  .process .item p { font-size: 14px; padding: 10px 0;}

  .fixbar { display: initial;}
  .fixbar span { font-size;18px;}
  /*#demo { display: none; }*/

  .welcome h1 { margin-top: 50px; font-size: 40px; }
  .counter_wrap .grid_view { grid-gap: 10px; margin-bottom: 30px;}
  .counter_wrap .grid_view .item { padding: 10px;}
  .counter_wrap .grid_view .item h1 { font-size: 48px; margin-bottom: 0}
  .counter_wrap .grid_view .item h4 { font-size: 14px;}
  .contact-p1, .contact-p2 { padding: 10px 0; height: initial; }
  .contact-p1 h2 { margin: 0 }
  .welcome .grid_view .item { padding: 10px; }
  .welcome .grid_view .item h4 { font-size: 14px; }
  footer .grid_view { grid-template-columns: 1fr 1fr}
  .pricing h1 { font-size: 36px; }
  .pricing h2 { font-size: 20px; }
  .plans .item { border-top: 1px dashed #fff; padding-top: 30px; }
  .cta input, .cta button { margin-bottom: 10px; }
  .sector .item { padding: 30px 10px; }

  .review_btn { font-size: 12px; right: -44px;}
  .review_btn i { font-size: 10px; }
  .top-bar p { padding: 5px 0 0; margin: 0; text-align: center; }
  .slider .parallax-slider { height:550px;}
  .slider .main-banner-content .tollfree,
  .slider .main-banner-content .tollfree a { font-size:24px !important; }
}