:root{
	--blue: #13ADFF;
	--white:#fff;
	--darkblack:#000;
}
body {
  font-family: 'Futura PT Book';
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: #000;
}
p {
  margin: 0;
  padding: 0;
  font-family: 'Futura PT Book';
  font-size: 18px;
  line-height: 26px;
}
ul, ol {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
	font-weight:bold;
}

h1 {
  font-size: 50px;
  line-height: 56px;
  font-family: 'Futura PT';
  font-weight: bold;
  color: #000000;
}
h2 {
  font-size: 44px;
  line-height: 54px;
  font-family: 'Futura PT';
  font-weight: bold;
  color: #000000;
}
h3 {
  font-size: 28px;
  line-height: 36px;
  font-family: 'Futura PT';
  font-weight: bold;
  color: #000000;
}
.btn-primary, .btn-secondary {
  color: #fff;
  background-color: #13adff;
  border-color: #13adff;
  font-family: 'Futura PT';
  font-weight: 700;
  border-radius: 4px;
  padding: 12px 28px;
  
}
.btn-primary:hover {
  color: #13adff;
  background-color: #fff;
  border-color: #13adff;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #13adff;
  border-color: #fff;
}
.btn-secondary {
  color: #13adff;
  background-color: #fff;
  border-color: #fff;
}
.primary_bg {
  background: #13adff;
}
.white_text {
  color: #fff;
}
:focus{
	bordr:none !important;
	outline: none !important;
	box-shadow:inherit !important;
}
@font-face {
  font-family: 'Futura PT Book';
  src: url('../fonts/FuturaPT-Book.woff2') format('woff2'), url('../fonts/FuturaPT-Book.woff') format('woff'), url('../fonts/FuturaPT-Book.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura PT Demi';
  src: url('../fonts/FuturaPT-Demi.woff2') format('woff2'), url('../fonts/FuturaPT-Demi.woff') format('woff'), url('../fonts/FuturaPT-Demi.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura PT';
  src: url('../fonts/FuturaPT-Light.woff2') format('woff2'), url('../fonts/FuturaPT-Light.woff') format('woff'), url('../fonts/FuturaPT-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura PT';
  src: url('../fonts/FuturaPT-Medium.woff2') format('woff2'), url('../fonts/FuturaPT-Medium.woff') format('woff'), url('../fonts/FuturaPT-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura PT';
  src: url('../fonts/FuturaPT-Bold.woff2') format('woff2'), url('../fonts/FuturaPT-Bold.woff') format('woff'), url('../fonts/FuturaPT-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/* Start Header */
header.header {
  box-shadow: 0 0px 16px #e4e4e4;
}
.navbar-collapse {
  flex-grow: 0;
}
.navbar-light .navbar-nav .nav-link {
  color:#000;
  font-family: 'Futura PT Demi';
  font-size: 16px;
}
.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show > .nav-link {
  color:#13ADFF;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: #13ADFF;
}
ul.navbar-nav li {
  padding-right: 15px;
}
ul.navbar-nav li.get_quote a {
  background: #13adff;
  color:#fff !important; 
  border-radius: 4px;
}
/* End Header */
/*Start Banner */
.caption_text h4 {
  color: #13adff;
  font-size: 20px;
  font-family: 'Futura PT Demi';
}
.caption_text {
  padding-left: 32%;
}
.carousel-control-next, .carousel-control-prev {
  opacity: 1;
}
span.carousel-control-next-icon, span.carousel-control-prev-icon {
  background: #13adff;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 28px;
  border-radius: 2px;
}
button.carousel-control-next {
  left: 14%;
  top: 70%;
}
button.carousel-control-prev {
  position: absolute;
  top: 70%;
  left: 10%;
}
.hero_slider, .slide_img {
  position: relative;
}
.hero_slider:before, .hero_slider:after {
  position: absolute;
  content: "";
  background: url(../images/w3DotsCircle.png);
  height: 148px;
  width: 156px;
}
.hero_slider:before {
  left: 8%;
  top: 8%;
  animation:
    pulse 9s ease infinite alternate, nudge 9s linear infinite alternate;
}
@keyframes pulse {
  0%, 100% {
    background-color: transparent;
  }
  50% {
    background-color: transparent;
  }
}
@keyframes nudge {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(50px, 0);
  }
  80% {
    transform: translate(-50px, 0);
  }
}
.hero_slider:after {
  left: 45%;
  bottom: 8%;
  animation:
    pulse 9s ease infinite alternate, nudge 9s linear infinite alternate;
}
@keyframes pulse {
  0%, 100% {
    background-color: transparent;
  }
  50% {
    background-color: transparent;
  }
}
@keyframes nudge {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(50px, 0);
  }
  80% {
    transform: translate(-50px, 0);
  }
}
.slide_img:before {
  background: url(../images/w3webLine.png);
  width: 150px;
  height: 162px;
  content: "";
  bottom: 0px;
  position: absolute;
  left: 163px;
  animation:
    pulse2 9s ease infinite alternate, nudge2 9s linear infinite alternate;
}
@keyframes pulse2 {
  0%, 100% {
    background-color: transparent;
  }
  50% {
    background-color: transparent;
  }
}
@keyframes nudge2 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 20px);
  }
  80% {
    transform: translate(0, -20px);
  }
}
/* About Section Css */
.w3about_section {
  padding: 78px 0 114px;
}
.w3about_section h4 {
  display: inline-block;
}
.w3about_section h4:before {
  content: "";
  background: #fff;
  width: 70px;
  height: 2px;
  position: absolute;
  right: -80px;
  top: 13px;
}
.about_img img:first-child {
  position: relative;
  left: 0;
  z-index: 999;
}
.about_img img:nth-child(2) {
  position: absolute;
  left: 43px;
  z-index: 9;
  top: 68px;
  animation:
    pulse3 9s ease infinite alternate, nudge3 9s linear infinite alternate;
}
@keyframes pulse3 {
  0%, 100% {
    background-color: transparent;
  }
  50% {
    background-color: transparent;
  }
}
@keyframes nudge3 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 0);
  }
  80% {
    transform: translate(-30px, 0);
  }
}
.about_img img:nth-child(3) {
  position: absolute;
  left: 45px;
  z-index: 3;
  top: 64px;
  animation:
    pulse4 9s ease infinite alternate, nudge4 9s linear infinite alternate;
}
@keyframes pulse4 {
  0%, 100% {
    background-color: transparent;
  }
  50% {
    background-color: transparent;
  }
}
@keyframes nudge4 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0px, 30);
  }
  80% {
    transform: translate(0px, -30px);
  }
}
/*Strat Service Section */
.w3service_section {
  background: url(../images/w3serviceBg.jpg);
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.service_box {
  background: #fff;
  border: 1px solid #d5d5d5;
  padding: 50px 20px;
  position: relative;
}
.service_box .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #13adff;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
  opacity: .9;
}
.service_box:hover {
  background: #13adff;
}
.service_box:hover h3, .service_box:hover p {
  color: #fff;
}
.service_box:hover .btn-primary {
  color: #13adff;
  background-color: #fff;
  border-color: #13adff;
}
.w3service_section .service_box:hover img {
  filter: contrast(0) brightness(2);
}
.service_box:before {
  background: url(../images/serviceshodowShade.png);
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: .07;
  background-position: 0 0;
}
.works-layout-info img {
  width: 100%;
}
.works-layout-info {
  height: 550px;
  overflow: hidden;
  transition: transform 3s;
  box-shadow: 0 50px 70px rgba(0, 0, 0, .12);
  border-radius: 7px;
  cursor: pointer;
}
.works-layout-col span {
  margin-top: 30px;
  display: block;
  font-size: 29px;
}
.works-layout-col:hover .works-layout-info {
  transform: scale(1.12);
  box-shadow: 0 50px 70px rgba(0, 0, 0, .29);
}
.works-layout-info img:hover {
  transform: translateY(calc(-100% + 550px));
  transition: 10s ease !important;
}
/* Start Testimonials */
.w3testimonial_sec {
  background: url(../images/img-testimonial.jpg);
  background-position: 50%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0;
  position: relative;
}
.w3testimonial_sec .item p.msg_box {
  background: #f7f7f7;
  text-align: center;
  position: relative;
  margin-top: 30px;
  border-radius: 5px;
  padding: 50px 30px 30px;
}
.testimonial-client img {
  border-radius: 5px;
  width: 80px !important;
  margin-right: 10px;
}
.client-name h6 {
  color: #13adff;
  font-size: 18px;
  font-weight: 600;
}
.client-name p {
  color: #fff;
  font-size: 18px;
}
.testimonial-client .client-img, .testimonial-client .client-name {
  display: inline-block;
  vertical-align: top;
}
.testimonial-client {
  text-align: left;
  margin: 50px 70px;
  position: relative;
}
.testimonial-client:before {
  position: absolute;
  width: 0;
  height: 0;
  content: "";
  border-top: 45px solid #f7f7f7;
  border-right: 10px solid transparent;
  border-bottom: 0;
  border-left: 50px solid transparent;
  top: -65px;
  left: -17px;
  transition: all .5s;
}
.msg_box i {
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
  color: #13adff;
  background: #fff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 30px;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -30px;
}
.w3testimonial_sec .owl-theme .owl-dots .owl-dot span, .owl-theme .owl-dots .owl-dot:hover span {
  width: 14px;
  height: 14px;
  margin: 5px 7px;
  background: #13adff;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
  border: 1px solid #13adff;
}
.owl-theme .owl-dots .owl-dot.active span {
  background: transparent !important;
  border: 1px solid #13adff;
}
.w3get_touch .form_row {
  width: 48%;
  display: inline-block;
  margin-right: 26px;
}
.w3get_touch .form_row:nth-child(2), .w3get_touch .form_row:nth-child(4) {
  margin-right: 0;
}
.w3get_touch .form_row_lg {
  width: 100%;
}
.form-control {
  font-size: 18px;
  font-family: Futura PT Book;
  color: #000000;
  background-color: #fff;
  border-color: #000000;
  border-radius: 5px;
  margin-bottom: 18px;
  min-height: 48px;
}
.contact-info {
  background-color: #13adff;
  color: #fff;
  border-radius: 5px;
  padding: 60px 40px;
  position: relative;
  z-index: 999;
  text-align: left;
}
.contact-info .h6, .contact-info h6 {
  font-family: Futura PT Demi;
  position: relative;
}
.contact-info ul li {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 15px;
  padding-left: 0;
  position: relative;
}
.contact-info ul li a {
  color: #fff;
}
.contact-info .h6:after, .contact-info h6:after {
  content: "";
  height: 2px;
  width: 80px;
  background-color: #fff;
  position: absolute;
  top: 11px;
  margin-left: 15px;
}
.contact-info:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(19, 172, 254, .5019607843137255);
  border-radius: 5px;
  position: absolute;
  top: 35px;
  left: 35px;
  z-index: -1;
}
/* Footer Css */
.footer {
    background: #13adff;
    margin-top: -10px;
}
.footer_contact h3, .footer .footer_contact h3 a {
  margin-bottom: 30px;
  font-size: 24px;
  font-family: Futura PT;
  font-weight: 700;
  text-transform: capitalize;
  color: #fff;
}
.footer .footer_contact .quick-link li {
  display: inline-block;
  width: 49%;
}
.footer .footer_contact ul li {
  padding-bottom: 15px;
  list-style: none;
}
.footer .footer_contact a {
  font-size: 16px;
  color: #fff;
  line-height: 20px;
  font-weight: 500;
  text-decoration: none;
  font-family: 'Futura PT';
}
.footer .footer-contact-info ul li {
  padding-left: 28px;
  position: relative;
  font-size: 16px;
  font-family: Futura PT Book;
}
.footer .footer-contact-info ul li i {
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 16px;
}
.footer .footer_contact a, footer .footer_contact li {
  font-size: 16px;
  color: #fff;
  line-height: 20px;
  font-weight: 500;
  text-decoration: none;
}
.copy-right {
  background: #017fc2;
  color: #fff;
  text-align: center;
  padding: 16px 0;
}
.skype {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99999;
	display: none;
}
/* About Page Css */
.top-banner {
    padding: 162px 0;
    z-index: 2;
    position: relative;
    background: #f9f9f9;
}
.top-banner-info {
    display: inline-block;
    padding: 20px 80px;
    color: #13ADFF;
}
.top-banner-info h1, .top-banner-info h4, .top-banner-info h3, .top-banner-info p{
color: #13ADFF;	
}
.top-banner-info h4, .top-banner-info h3{
font-family: Futura PT Demi;
}
.about-page-banner:before {
    position: absolute;
    content: "";
    background-image: url(../images/banner-about.png);
    top: 0;
    right: 0;
    height: 397px;
    bottom: 0;
    z-index: 99999;
    width: 478px;
}
.about-page-banner:after {
    position: absolute;
    content: "";
    background-image: url(../images/circle.svg);
    top: 0;
    left: -479px;
    height: 832px;
    bottom: 0;
    width: 832px;
}
.about-page-banner .container:before {
    position: absolute;
    content: "";
    background-image: url(../images/dottedCircle.svg);
    right: 229px;
    height: 226px;
    width: 224px;
    bottom: -54px;
   animation:
    pulse5 9s ease infinite alternate, nudge5 9s linear infinite alternate;
}
@keyframes pulse5 {
  0%, 100% {
    background-color: transparent;
  }
  50% {
    background-color: transparent;
  }
}
@keyframes nudge5 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0px, 30px);
  }
  80% {
    transform: translate(0px, -30px);
  }
}
.section-padding {
    padding: 70px 0;
}
.padding-bottom {
    padding-bottom: 70px;
}
.about-page-img {
    position: relative;
    margin-right: 30px;
}
.about-page-img img {
    border-radius: 50%;
    width: 100%;
    border: 15px solid #fff;
    box-shadow: 0 0 38px 0 rgba(0,0,0,.8);
}
.about-page-img:after {
    position: absolute;
    left: -80px;
    top: 50px;
    content: "";
    height: 100%;
    width: 100%;
    background: url(../images/about-layer.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;
    z-index: -1;
}
.py-3 {
    padding-top: 1rem!important;
    padding-bottom: 1rem!important;
}
.why-choose-us {
    background-image: url(../images/why-choose-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
}
.why-choose-info ul li {
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    padding-left: 40px;
}
.why-choose-info ul li:after {
    position: absolute;
    font-family: Font Awesome\ 5 Free;
    content: "\f00c";
    left: 0;
    top: 3px;
    font-size: 12px;
    font-weight: 700;
    color:#fff;
    width: 26px;
    height: 26px;
    line-height: 24px;
    border: 2px solid #fff;
    border-radius: 50%;
    text-align: center;
}
.why-choose-info ul {
    padding-top: 20px;
}
.about-page-info .h6, .about-page-info h6 {
    color: var(--blue);
	position:relative;
}
.about-page-info .h6:after, .about-page-info h6:after {
    content: "";
    height: 2px;
    width: 80px;
    background-color: var(--blue);
    position: absolute;
    top: 11px;
    margin-left: 15px;
}
/*service Page*/
#ourServicesPage {
    background: #f3f7fd;
}
.w3hServices .shadow {
    background: #fff;
	    border-radius: 5px;
}
#ourServicesPage .w3serStyle {
    padding: 40px 7% 0;
}
#ourServicesPage .imageS {
    background: #eef4fc;
    border-radius: 100%;
    width: 110px;
    height: 110px;
    padding: 21px 19px;
}
.img-fluid {
    width: auto;
}
#ourServicesPage .shadow .r_0 {
    text-align: left;
    padding-left: 5%;
    display: inline-block;
    vertical-align: top;
    width: 75%;
}
.w3hServices .h5, .w3hServices h5 {
    color: #130f0b;
    font-size: 28px;
    line-height: 32px;
    font-family: Futura PT;
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
#ourServicesPage .shadow .l_0 {
    width: 23%;
	display: inline-block;
    vertical-align: top;
}
.w3hServices .shadow a {
    background: #13adff;
    color: #fff!important;
    padding: 8.6px 24.7px;
    text-decoration: none;
    margin: 5px 0;
    border-radius: 4px;
    display: inline-block;
    font-weight: 900;
    border: 0;
    z-index: 99;
}
#ourServicesPage .w3serStyle .mb-4.col-sm-12.col-lg-6:nth-child(odd) .shadow {
    margin-top: -53px;
}
#ourServicesPage .w3serStyle .mb-4.col-sm-12.col-lg-6:nth-child(2n) {
    margin-top: 4px;
}
#ourServicesPage .w3hServices {
    background: url(../images/img-bg-5.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}
.ServicesParallax {
    background: url(../images/services-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 175px 0;
}
.ServicesParallax:before {
    background: rgba(0,0,0,.4);
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.ServicesParallax .circle-shape .shape:after {
    position: absolute;
    background: #13adff;
    content: "";
    width: 100px;
    height: 100px;
    border-radius: 100%;
    top: -5px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.ServicesParallax .circle-shape .shape {
    position: relative;
    margin-bottom: 65px;
}
.ServicesParallax .circle-shape .shape img {
    position: relative;
    z-index: 9999;
    top: 18px;
    width: 52px;
}
.ServicesParallax .h1, .ServicesParallax h1 {
    color: #fff;
    opacity: 1;
    z-index: 9999;
    position: relative;
    font-size: 68px;
    line-height: 74px;
    text-align: center;
}
.ServicesParallax .h1 span, .ServicesParallax h1 span {
    color: #13adff;
}
.ServicesParallax .circle-shape .shape:before {
    position: absolute;
    background: hsla(0,0%,100%,.4392156862745098);
    content: "";
    width: 94px;
    height: 94px;
    border-radius: 100%;
    top: -6px;
    left: -29px;
    right: 0;
    margin: 0 auto;
    -webkit-animation: moveOnY 2s ease-in-out infinite alternate;
    animation: moveOnY 2s ease-in-out infinite alternate;
}
.technologies ul li {
    display: inline-block;
    margin: 0 10px 21px;
    border-radius: 10px;
    box-shadow: 0 0 6px 2px #ccc;
    width: 18%;
}
.technologies ul li .logoBrandWrap {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 24px 30px;
}
.hvr-bob {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
}
.technologies ul li .logoBrandWrap .inn.innRight {
    padding-left: 20px;
}
.technologies ul li .logoBrandWrap .inn.innRight span {
    font-size: 19px;
    color: #000;
    font-weight: bold;
}
.logo-brand:before {
    background-image: url(../images/layerStyle01.png);
    position: absolute;
    content: "";
    width: 183px;
    height: 173px;
    right: 0;
}
.logo-brand:after {
    background-image: url(../images/layerStyle03.png);
    position: absolute;
    content: "";
    width: 252px;
    height: 244px;
    left: 0;
    z-index: -1;
    bottom: -93px;
}
.logo-brand p {
    padding: 0 16%;
}
.logo-brand {
    position: relative;
}
/* resources Css */
.starting-business-sec {
    padding: 130px 0;
}
.business-info {
    background: #fff;
    padding: 60px 40px;
    position: relative;
    left: 10%;
    top: 50px;
    z-index: 1;
    box-shadow: 0 7px 29px 0 rgba(100,100,111,.2);
}
.business-info .h4, .business-info h4 {
    padding: 8px 0;
}
.business-info p {
    padding-bottom: 10px;
}
.business-info li {
    font-size: 18px;
    padding-top: 5px;
}
.business-info li i {
    padding-right: 6px;
    font-size: 16px;
    color: var(--blue);
}
.resources-page-btn {
    color: var(--white);
    background: var(--blue);
    padding: 5px 15px;
    border: 2px solid var(--blue);
    margin-top: 20px;
    border-radius: 0;
    font-family: Futura PT Demi;
    font-size:16px;
    border-radius: 4px;
}
.business-imgs {
    position: relative;
}
.business-bg-border {
    width: 300px;
    height: 300px;
    background: rgba(19,173,255,.3607843137254902);
    border-radius: 50%;
    position: absolute;
    left: -10%;
    top: -60px;
}
.business-imgs .business-img1 {
    position: relative;
    left: 20%;
    width: 550px;
}
.business-imgs .business-img2 {
    position: absolute;
    left: 0;
    top: 40%;
    width: 400px;
}
.customer-resource {
    background: #f8fafc;
}
.customer-resource .h1, .customer-resource h1 {
    padding-bottom: 25px;
}
.customer-resource-info {
    background-color: #fff;
    text-align: center;
    padding: 40px 20px;
    margin-top: 30px;
    transition: all .5s ease;
    z-index: 99;
    position: relative;
    box-shadow: 0 2px 8px 0 rgba(99,99,99,.2);
}
.customer-res-icon {
    width: 110px;
    height: 110px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 3px solid var(--darkblack);
    transition: all .5s ease;
    margin: 0 auto 25px;
}
.customer-res-icon img {
    max-width: 100%;
    width: auto;
}
.customer-resource-info .h4, .customer-resource-info h4 {
    padding-bottom: 10px;
}
.customer-resource-info p {
    text-align: justify;
}
.customer-resource-info:hover .customer-res-icon {
    border: 3px solid var(--white);
    background-color: var(--darkblack);
    transition: all .5s ease;
    box-shadow: 0 7px 29px 0 rgba(100,100,111,.2);
}
.customer-resource-info:hover .customer-res-icon img {
    filter: invert(1);
}
.customer-resource-info:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-bottom: 5px solid var(--darkblack);
    transition: all .5s ease;
}
.customer-resource-info:hover:before {
    width: 100%;
}
.starting-business-sec {
    padding: 130px 0;
}
.starting-business-img {
    padding: 0 15px;
    position: relative;
}
.starting-business-img .business-jump {
    border-radius: 15px;
    animation:
    pulse8 9s ease infinite alternate, nudge8 9s linear infinite alternate;
}
@keyframes pulse8 {
  0%, 100% {
    background-color: transparent;
  }
  50% {
    background-color: transparent;
  }
}
@keyframes nudge8 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0px, 30px);
  }
  80% {
    transform: translate(0px, -30px);
  }
}
.starting-business-img .business-blob1 {
    position: absolute;
    width: 200px;
    left: -60px;
    top: -60px;
    z-index: -1;
}
.starting-business-img .business-blob2 {
    position: absolute;
    width: 200px;
    right: -60px;
    bottom: -60px;
    z-index: -1;
}
.starting-business-img img {
    width: 100%;
}
/*career page css */
.career-box-wrap .w3_career_inner {
    border-radius: 5px 5px 5px 5px;
    overflow: hidden;
    box-shadow: 0 2px 18px 0 rgba(0,0,0,.3);
    padding: 34px 34px;
    margin-bottom: 21px;
}
.career-box-wrap .w3_career_inner .h2, .career-box-wrap .w3_career_inner h2 {
    font-size: 26px;
    line-height: 1.2;
}
.career-box-wrap .w3_career_inner .h3, .career-box-wrap .w3_career_inner h3 {
    font-size: 19px;
}
.career-box-wrap .w3_career_inner p, .career-box-wrap .w3_career_inner ul li {
    font-size: 18px;
    color: #666;
    font-weight: 400;
    padding-right: 15px;
}
.career-box-wrap .w3_career_inner ul.grid_skill li {
    background: #8f8f8f;
    color: #fff;
    padding: 3px 15px;
    border-radius: 30px;
    margin-right: 11px;
    margin-top: 10px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 300;
}
.career-box-wrap .w3_career_inner ul li {
    display: inline-block;
}
.career-box-wrap .w3_career_inner .applyNow {
    background: #13adff;
}
.career-box-wrap .w3_career_inner .applyNow {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    cursor: pointer;
    text-align: center;
    border: none;
    background-size: 300% 100%;
    margin-top: 31px;
    display: inline-block;
    padding: 8px 39px;
    border-radius: 50px;
}
.career-singlepage .list-group-item {
    padding: 0 0 9px;
    border: 0;
    font-size: 18px;
    color: #666;
}
.career-singlepage .formfile {
    border: 1px solid #111;
    border-radius: 7px;
    margin: 0 auto 18px;
    padding: 0 11px;
}
.career-singlepage .formfile input {
    font-size: 18px;
    font-family: Futura PT Book;
    color: var(--lightblack);
    background-color: #fff;
    border-color: var(--bordercolor);
    margin-bottom: 0;
    min-height: 42px;
    margin-top: 10px!important;
}
/*training page Css */
.online-tutorial-sec {
    padding: 100px 0;
    background: #edf4f8;
}
.hero__thumb {
    position: relative;
    z-index: 1;
}
.hero_thumb_shape img.hero-1-dot {
    bottom: -25px;
    left: -30px;
   animation:
    pulse10 6s ease infinite alternate, nudge10 6s linear infinite alternate;
}

@keyframes pulse10 {
  0%, 100% {
    background-color: transparent;
  }
  50% {
    background-color: transparent;
  }
}
@keyframes nudge10 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0px, 30);
  }
  80% {
    transform: translate(0px, -10px);
  }
}
.hero_thumb_shape img.hero-1-circle-1 {
    bottom: -47px;
    right: 1%;
}
.hero_thumb_shape img.hero-1-circle-4 {
    top: -50px;
    right: 10%;
}
.hero_thumb_big {
    position: relative;
    margin-right: 30px;
}
.hero_quote_title, .hero_thumb_big img {
    box-shadow: 0 30px 60px 0 rgba(1,11,60,.14);
}
.hero_thumb_big img {
    max-width: 400px;
    max-height: 460px;
    border-radius: 40px 4px 40px 4px;
}
.hero_quote_title {
    position: absolute;
    bottom: 60px;
    right: -200px;
    padding: 15px 25px;
    padding-bottom: 20px;
    background: #fff;
    border-radius: 4px;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}
.hero_quote_title span {
    font-size: 14px;
    color: #474956;
}
.hero_thumb_sm {
    margin-top: 60px;
}
.hero_thumb_sm img {
    max-width: 200px;
    max-height: 240px;
    border-radius: 4px 40px 4px 40px;
    box-shadow: 0 30px 60px 0 rgba(1,11,60,.14);
}
.online-tutorial-info a {
    color: var(--white);
    background: var(--blue);
    padding: 5px 15px;
    border-radius: 4px;
    border: 2px solid var(--blue);
    transition: all .5s ease;
    display: inline-block;
}
.online-tutorial-info p {
    padding: 20px 0;
}
.hero_thumb_shape img {
    position: absolute;
    z-index: -1;
    width: auto;
}
.banner_item_row {
    padding-top: 40px;
}
.banner_item_courses-1 {
    background: url(../images/banner-bg-1.fa3d937b.jpg) 0 0/cover no-repeat;
}
.banner__items {
    padding: 50px 40px;
    position: relative;
    border-radius: 4px;
}
.banner__content {
    position: relative;
    z-index: 1;
}
.banner__items span {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: #fc4389;
    display: inline-block;
    height: auto;
    line-height: 22px;
    padding: 0 14px;
    margin-bottom: 15px;
    border-radius: 10px;
    text-transform: capitalize;
}
.banner__thumb {
    position: absolute;
    top: 56%;
    transform: translateY(-50%);
    right: 10px;
}
.banner_item_courses-2 {
    background: url(../images/banner-bg-2.64b2b943.jpg) 0 0/cover no-repeat;
}
.about-learning-sec {
    background: #fafbfe;
}
.about_learning_content {
    margin-left: 75px;
    position: relative;
    margin-top: 65px;
}
.about_learning_img {
    border-radius: 15px;
    z-index: 1;
    position: relative;
}
.about_learning_img img {
    max-width: 100%;
    width: auto;
    border-radius: 20px;
}
.about_learning_content img.learning-shape-01, .about_learning_content img.learning-shape-02 {
   animation:
    pulse11 6s ease infinite alternate, nudge11 6s linear infinite alternate;
}

@keyframes pulse11 {
  0%, 100% {
    background-color: transparent;
  }
  50% {
    background-color: transparent;
  }
}
@keyframes nudge11 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0px, 30);
  }
  80% {
    transform: translate(0px, -30px);
  }
}
.about_learning_content .learning-shape-01 {
    top: -50px;
    left: -50px;
    position: absolute;
    width: auto;
}

.about_learning_content .learning-shape-02 {
    width: auto;
    right: 0;
    bottom: -60px;
    position: absolute;
}
.learn_experts {
    margin-bottom: 30px;
}
.learn_experts img {
    max-width: 100%;
    width: auto;
    margin-bottom: 15px;
}
.learning-btn {
    color: var(--white);
    background: var(--blue);
    padding: 5px 15px;
    border-radius: 4px;
    border: 2px solid var(--blue);
    transition: all .5s ease;
    display: inline-block;
}
.frequently-sec, .speaker-sec {
    background: #edf4f8;
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #13adff;
    box-shadow: inherit;
    padding: 0 15px;
}
.accordion-button {
      padding: 0 15px;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
}
.list_facts, .list_facts_icons {
    display: flex;
    align-items: center;
}
.list_facts {
    width: 100%;
    margin-bottom: 1.5rem;
}
.list_facts_icons {
    width: 45px;
    height: 45px;
    background: var(--blue);
    box-shadow: 0 7px 15px rgba(0,22,84,.1);
    border-radius: 6px;
    margin-right: 15px;
    justify-content: center;
    color: #fff;
}

/* ===================================== Services Single Page css Start ========================================= */


.things-info-dec {
  padding: 30px 20px;
  text-align: justify;
  margin-bottom: 30px;
  border-radius: 20px;
  box-shadow: 1.95px 6.881px 10px 0 rgba(69, 80, 86, .41000000000000003);
  background-color: #fff;
  transition: all .3s ease
}

.things-info-dec .things-icon {
  text-align: center
}

.things-info-dec img {
  width: 70px;
  margin-bottom: 20px
}

.take-step-dec {
  padding: 30px 20px;
  text-align: justify;
  margin-bottom: 30px;
  margin-top: 15px;
  border-radius: 20px;
  box-shadow: 1px 3px 2px 0 rgba(69, 80, 86, .41000000000000003);
  background-color: #fff;
  transition: all .3s ease
}

.take-step-dec:hover {
  box-shadow: 1.95px 6.881px 20px 0 rgba(69, 80, 86, .41000000000000003);
  background-color: #f3f3f3
}

.take-step-dec .take-step-border {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  padding: 14px;
  align-items: center;
  justify-content: center;
  position: relative;
  -webkit-animation: rotation 3s linear infinite;
  animation: rotation 3s linear infinite;
  margin: 0 auto 12px
}

.take-step-dec .take-step-icon {
  width: 71px;
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: center
}

.take-step-dec .take-step-icon img {
  width: 100%
}
.services-singlepage .GetIntouch {
  background: #f3f3f3;
  padding: 33px 22px;
  border-radius: 8px;
  box-shadow: 1px 4px 15px #f1efef;
  margin-left: 39px;
}

.services-singlepage .ux-design-img img {
  width: 100%;
}
.services-singlepage img {
  width: 700px;
}

.single-promo-card.single-promo-hover {
  transition: all 300ms ease-in-out;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  padding: 1.25rem;
  position: relative;
}
.single-promo-card.single-promo-hover:before {
  content: "";
  position: absolute;
  right: -55px;
  width: 95px;
  height: 95px;
  bottom: -50px;
  border-radius: 35px;
  background-color: #165698;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
}
.single-promo-card {
  border-radius: 1rem;
  transition: all 300ms ease-in-out;
  box-shadow: 0 4px 16px 0 rgb(0 0 0 / 12%);
}
.single-promo-card.single-promo-hover p{
  text-align: justify;
}
.single-promo-icon i {
  font-size: 50px;
}
.single-promo-card.single-promo-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 3rem rgb(31 45 61 / 13%);
  color: #fff;
}
.single-promo-card.single-promo-hover:hover:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background-color: #165698;
}

.brand-list-wrap li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.875rem;
  line-height: inherit;
}
.brand-list-wrap li:before {
  position: absolute;
  top: 10px;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #165698;
}
.services-singlepage p {
  margin-bottom: 12px;
}
.learn-business-info {
  box-shadow: 0px 12px 33px rgb(14 49 178 / 10%);
  padding: 40px 30px;
  transition: all 0.5s ease;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.learn-business-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-bottom: 4px solid #165698;
  transition: all 0.5s ease;
}
.learn-business-info:hover {
  transform: translateY(-10px);
  transition: all 0.5s ease;
}
.learn-business-info:hover::before {
  width: 100%;
}

.marketing-title {
  text-align: center;
  color: #000;
}
.marketing-solutions {
  display: flex;
  align-items: center;
  padding: 16px 0;
}
.marketing-solutions h4 {
  padding-left: 0.8rem;
  color: #000;
}
.marketing-solutions-info {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.marketing-solutions-info-title {
  padding-left: 0.8rem;
  color: #000;
}
.business-icon img {
  width: auto;
}
/* ===================================== Services Single Page css End ========================================= */
.things-info-dec img {
    width: 70px;
    margin-bottom: 20px;
}



@media screen and (max-width: 1180px) and (min-width: 768px) {
.container{
    max-width: 100%;
}
.caption_text {
    padding-left: 0;
  }
  h1 {
    font-size: 36px;
    line-height: 42px;
  }
  .hero_slider:after, .hero_slider:before, .slide_img:before, .about_img img:nth-child(2), .about_img img:nth-child(3), button.carousel-control-prev, button.carousel-control-next, .contact-info:after {
    display: none;
  }
.w3get_touch .form_row {
    margin-right: 16px;
}
.p-5, .w3about_section {
    padding: 15px !important;
  }
.top-banner-info {
    padding: 20px;
    width: 50%;
}
#ourServicesPage .w3serStyle .mb-4.col-sm-12.col-lg-6:nth-child(odd) .shadow {
    margin-top: 0;
}
.about-page-banner:after {
display: none;
}
.technologies ul li {
    width: 30%;
}

.speaker-small-img {
    display: none;
}
.section-padding {
    padding: 30px 15px;
}
.faq_img img {
    width: 100%;
}
.learning_platform_info h2 {
    font-size: 30px;
    line-height: 36px;
}
h2 {
    font-size: 30px;
    line-height: 38px;
}
.navbar-light .navbar-toggler {
    color: #13ADFF;
    border-color: #13ADFF;
}
.business-info {
    padding:30px;
    left: 0%;
}
.starting-business-sec {
    padding: 30px 0;
}
.w3get_touch .form_row {
    width: 100%;
    margin-right: 0px;
}
li.nav-item.get_quote a {
    padding: 12px;
}
.customer-resource-info {
    margin-top: 0px;
}
#ourServicesPage .w3serStyle {
    padding: 0 20px;
}
.mb-5 {
    margin-bottom: 2rem!important;
}
.w3hServices .h5, .w3hServices h5 {
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    padding: 0;
}
.ServicesParallax .h1, .ServicesParallax h1 {
    font-size: 40px;
    line-height: 50px;
}
.ServicesParallax {
    padding: 75px 0;
}
#ourServicesPage .imageS {
    width: 80px;
    height: 80px;
}
h5.pt-4.pb-1.text-capitalize.card-title {
    padding: 0 !important;
}
.business-imgs .business-img1 {
    left: 0;
    width: 100%;
}
.services-singlepage .GetIntouch {
    padding: 20px;
    margin-left: 0;
}
.about_img img {
    width: 100%;
}
}
@media screen and (max-width:767px) {
  .caption_text {
    padding-left: 0;
  }
	.hero_slider .row{
		display:flex;
		flex-direction: column-reverse;
	}
section.w3about_section {
    margin-top: 0 !important;
}
.why-choose-info h3 {
    font-size: 24px;
    line-height: 30px;
}
.services-info {
    padding: 15px !important;
}
#ourServicesPage .imageS {
    margin: 0 auto;
}
.r_0 {
    text-align: center !important;
}
section.w3service_section p br {
    display: none;
}
.about-page-info p, .why-choose-info p {
    text-align: justify;
}
  h1 {
    font-size: 30px;
    line-height: 38px;
  }
#ourServicesPage .shadow .r_0, #ourServicesPage .shadow .l_0 {
    padding-left: 0;
    width: 100%;
}
.logo-brand p {
    padding: 0 15px;
}
.technologies ul li {
    margin: 10px 0;
    width: 100%;
}
.ServiceText {
    margin-top: 20px;
}
.ServiceText h3 {
    font-size: 22px;
}

.services-singlepage .GetIntouch {
    padding:15px;
    margin-left: 0;
}
 .why-choose-img img, .faq_img img, .learning_img img {
    width: 100%;
}
.hero_quote_title {
    right: 0;
    left: 0;
    margin: 0 auto;
    width: auto;
    bottom: 0;
}
.business-imgs .business-img1 {
    left: 0;
    width: 100%;
}
.business-imgs .business-img2 {
    top:0%;
    width: 100%;
}
.customer-resource .h1, .customer-resource h1 {
    padding-bottom: 0;
}
.customer-resource-info {
    padding: 20px;
    margin-top: 15px;
}
.customer-resource h1 {
    font-size: 24px;
}
.starting-business-sec {
    padding: 20px 0;
}
.speaker-info, .speaker-small-img, .hero__thumb.d-flex {
    margin-top: 15px;
}
.online-tutorial-sec {
    padding: 40px 0;
}
.banner_item_row {
    padding-top: 15px;
}
.banner_item_courses-2.banner__items {
    margin-top: 20px;
}
.about_learning_content {
    margin-left: 0;
}
.speaker-small-img img {
    width: 100%;
}
.section-padding {
    padding: 15px;
}
	
#ourServicesPage .w3serStyle {
    padding: 0;
}
.mb-5 {
    margin-bottom: 1rem!important;
}
.pb-5 {
    padding-bottom: 1rem!important;
}
.business-info {
    left: 0%;
    top: 20px;
	padding: 15px;
}
.starting-business-img .business-jump {
    animation: inherit;
}
.footer_contact h3, .footer .footer_contact h3 a {
    margin-bottom: 10px;
    margin-top: 10px;
}
.ServicesParallax {
    padding: 50px 0;
}
.navbar-light .navbar-toggler {
    color: #13ADFF;
    border-color: #13ADFF;
}
li.nav-item.get_quote a {
    padding: 12px;
}
.p-4 {
    padding: 13px !important;
}
section.section-padding.career-box-wrap {
    margin-top: 30px;
}
.career-box-wrap .w3_career_inner {
    padding: 15px;
}
.ServicesParallax .h1, .ServicesParallax h1 {
    font-size: 30px;
    line-height:36px;
}
#ourServicesPage .w3hServices {
    padding-top: 40px;
}
.about-page-img {
    margin-right: 0;
}
.top-banner {
    padding: 146px 0;
}
.about-page-info {
    margin-top: 30px;
}
#ourServicesPage .w3serStyle .mb-4.col-sm-12.col-lg-6:nth-child(odd) .shadow {
    margin-top: 0;
}
.about-page-banner:after, .about-page-banner .container:before, .about-page-img:after, .logo-brand:before, .logo-brand:after{
display:none;
}
  .hero_slider:after, .hero_slider:before, .slide_img:before, .about_img img:nth-child(2), .about_img img:nth-child(3), button.carousel-control-prev, button.carousel-control-next, .contact-info:after {
    display: none;
  }
  .p-5, .w3about_section {
    padding: 15px !important;
  }
  .about_img img {
    width: 100%;
  }
  .caption_text {
    padding-left: 0;
    margin: 15px 0;
  }
  h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .w3get_touch .form_row {
    width: 100%;
    margin-right: 0px;
  }
}