

/*--------------------------------------------------------------

# General

--------------------------------------------------------------*/

body {

  background: #fff;

  color: #181818;

  font-family: "poppins", sans-serif;

}



a {

  color: #1bb1dc;

  transition: 0.5s;

}



a:hover, a:active, a:focus {

  color: #0a98c0;

  outline: none;

  text-decoration: none;

}



p {

  padding: 0;

  margin: 0 0 30px 0;

}



h1, h2, h3, h4, h5, h6 {

  font-family: "poppins", sans-serif;

  font-weight: 400;

  margin: 0 0 20px 0;

  padding: 0;

}



/* Back to top button */

.back-to-top {

  position: fixed;

  display: none;

  background: #1bb1dc;

  color: #fff;

  width: 44px;

  height: 44px;

  text-align: center;

  line-height: 1;

  font-size: 16px;

  border-radius: 50%;

  right: 15px;

  bottom: 15px;

  transition: background 0.5s;

  z-index: 11;

}



.back-to-top i {

  padding-top: 12px;

  color: #fff;

}



@media (max-width: 768px) {

  .back-to-top {

    bottom: 15px;

  }

}



/* Prelaoder */

#preloader {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 9999;

  overflow: hidden;

  background: #fff;

}



#preloader:before {

  content: "";

  position: fixed;

  top: calc(50% - 30px);

  left: calc(50% - 30px);

  border: 6px solid #f2f2f2;

  border-top: 6px solid #1bb1dc;

  border-radius: 50%;

  width: 60px;

  height: 60px;

  -webkit-animation: animate-preloader 1s linear infinite;

  animation: animate-preloader 1s linear infinite;

}



@-webkit-keyframes animate-preloader {

  0% {

    transform: rotate(0deg);

  }

  100% {

    transform: rotate(360deg);

  }

}



@keyframes animate-preloader {

  0% {

    transform: rotate(0deg);

  }

  100% {

    transform: rotate(360deg);

  }

}



/*--------------------------------------------------------------

# Disable aos animation delay on mobile devices

--------------------------------------------------------------*/

@media screen and (max-width: 768px) {

  [data-aos-delay] {

    transition-delay: 0 !important;

  }

}



/*--------------------------------------------------------------

# Top Bar

--------------------------------------------------------------*/

#topbar {

  background: #fff;

  height: 40px;

  font-size: 16px;

  transition: all 0.5s;

}



#topbar.topbar-transparent {

  background: transparent;

}



#topbar.topbar-scrolled {

  top: -40px;

}



#topbar .social-links a {

  color: #413e66;

  padding-left: 20px;

  display: inline-block;

  line-height: 1px;

  transition: 0.3s;

}



#topbar .social-links a:hover {

  color: #1bb1dc;

}



#topbar .social-links a:first-child {

  border-left: 0;

}



/*--------------------------------------------------------------

# Header

--------------------------------------------------------------*/

#header {

  background: #fff;

  transition: all 0.5s;

  z-index: 997;

  padding: 15px 0;

  top: 40px;

}



#header.header-transparent {

  background: transparent;

  /*Added*/
  margin-top: -3%;
}



#header.header-scrolled {

  top: 0;

  background: #0eaade;

  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
  margin-top:0%;

}



#header .logo {

  font-size: 36px;

  margin: 0;

  padding: 0;

  line-height: 1;

  font-weight: 400;

  letter-spacing: 3px;

  text-transform: uppercase;

  /*Added*/
  width:20%;

}



#header .logo a {

  color: #fff;

}







@media (max-width: 992px) {

  #header {

    top: 0;

  }

  #header .logo {

    font-size: 28px;
    width:50%;
  }

}



/*--------------------------------------------------------------

# Navigation Menu

--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {

  /* Drop Down */

  /* Deep Drop Down */

}



.main-nav, .main-nav * {

  margin: 0;

  padding: 0;

  list-style: none;

}



.main-nav > ul > li {

  position: relative;

  white-space: nowrap;

  float: left;

  padding-left: 30px;

}



.main-nav a {

  display: block;

  position: relative;

  color: #fff;

  padding: 10px 0;

  transition: 0.3s;

  font-size: 14px;

  font-family: "Open Sans", sans-serif;

  text-transform: capitalize;

  font-weight: 600;

}



.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {

  color: #eee;

  text-decoration: none;

}



.main-nav .drop-down ul {

  display: block;

  position: absolute;

  left: 15px;

  top: calc(100% - 30px);

  z-index: 99;

  opacity: 0;

  visibility: hidden;

  padding: 10px 0;

  background: #fff;

  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);

  transition: ease all 0.3s;

}



.main-nav .drop-down:hover > ul {

  opacity: 1;

  top: 100%;

  visibility: visible;

}



.main-nav .drop-down li {

  min-width: 180px;

  position: relative;

}



.main-nav .drop-down ul a {

  padding: 10px 20px;

  font-size: 14px;

  font-weight: 500;

  text-transform: none;

  color: #065e77;

}



.main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active > a, .main-nav .drop-down ul li:hover > a {

  color: #1bb1dc;

}



.main-nav .drop-down > a:after {

  content: "\f107";

  font-family: FontAwesome;

  padding-left: 10px;

}



.main-nav .drop-down .drop-down ul {

  top: 0;

  left: calc(100% - 30px);

}



.main-nav .drop-down .drop-down:hover > ul {

  opacity: 1;

  top: 0;

  left: 100%;

}



.main-nav .drop-down .drop-down > a {

  padding-right: 35px;

}



.main-nav .drop-down .drop-down > a:after {

  content: "\f105";

  position: absolute;

  right: 15px;

}



/* Mobile Navigation */

.mobile-nav {

  position: fixed;

  top: 0;

  bottom: 0;

  z-index: 9999;

  overflow-y: auto;

  left: -260px;

  width: 260px;

  padding-top: 18px;

  background: rgba(40, 38, 70, 0.8);

  transition: 0.4s;

}



.mobile-nav * {

  margin: 0;

  padding: 0;

  list-style: none;

}



.mobile-nav a {

  display: block;

  position: relative;

  color: #fff;

  padding: 10px 20px;

  font-weight: 500;

}



.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {

  color: #8dc2fa;

  text-decoration: none;

}



.mobile-nav .drop-down > a:after {

  content: "\f078";

  font-family: FontAwesome;

  padding-left: 10px;

  position: absolute;

  right: 15px;

}



.mobile-nav .active.drop-down > a:after {

  content: "\f077";

}



.mobile-nav .drop-down > a {

  padding-right: 35px;

}



.mobile-nav .drop-down ul {

  display: none;

  overflow: hidden;

}



.mobile-nav .drop-down li {

  padding-left: 20px;

}



.mobile-nav-toggle {

  position: fixed;

  right: 0;

  top: 0;

  z-index: 9998;

  border: 0;

  background: none;

  font-size: 24px;

  transition: all 0.4s;

  outline: none !important;

  line-height: 1;

  cursor: pointer;

  text-align: right;

}



.mobile-nav-toggle i {

  margin: 18px 18px 0 0;

  color: #065e77;

}



.mobile-nav-overly {

  width: 100%;

  height: 100%;

  z-index: 9997;

  top: 0;

  left: 0;

  position: fixed;

  background: rgba(40, 38, 70, 0.8);

  overflow: hidden;

  display: none;

}



.mobile-nav-active {

  overflow: hidden;

}



.mobile-nav-active .mobile-nav {

  left: 0;

}



.mobile-nav-active .mobile-nav-toggle i {

  color: #fff;

}

.main-nav > ul > li.contact-nav {padding-left:0px;width: 120px;text-align: center;}

.contact-nav{background:#181818; border-radius:30px; padding:0px; margin-left:60px;}

.contact-nav a {color:#fff;}

.contact-nav:hover{color:#0ba5d9;}

/*--------------------------------------------------------------

# Hero Section

--------------------------------------------------------------*/

#hero {

  width: 100%;

  /*height: 100vh;*/

  position: relative;

  background: #f5f8fd url("../img/top-bg.png") left -55px  no-repeat;

  background-size: cover;

  background-color: #fff;

}

.mobile-top{padding-left: 90px;

margin-top: 150px; height:550px; }

#contact{width:100%; position:relative; background:url(../img/bg-contactus.png) #0ea9de;background-size: 100%; border-radius:0px 0px 0px 200px; min-height:400px;}

#contact h2 {text-align: center;

color: #fff;

margin-top: 170px; font-size:36px!important;}

 .formarea
 {
     background:#fff; 
     border-radius:10px;  
     padding:60px; 
     padding-bottom:0px; 
     /*box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 1px 1px 0 rgba(0, 0, 0, 0.1);*/
     box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 1px 1px 0 rgba(0, 0, 0, 0.19);
 }

.formarea h3{text-align:center; font-size:26px; color:#181818}

.formarea .button{background: #181818;

border-radius: 30px;

color: #fff;

font-size: 20px;

padding: 10px 85px;

border: 0px;}

.formarea .form-control{ border:0px; color:#000; box-shadow: 0 0 0 0 rgb(255 255 255 / 20%), 0 1px 4px 0 rgb(107 95 95 / 19%);}

.formarea .form-control:focus , .formarea .form-control:hover{ border:1px solid #000}

.formarea .mail-address{margin-top:100px; font-size:20px;}



.terms{border-radius:10px; background:#fff; padding:60px; padding-bottom:0px; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 1px 1px 0 rgba(0, 0, 0, 0.1);!important}

.terms p{margin-bottom: 20px;}

.privacy {border-radius:10px; background:#fff; padding:60px; padding-bottom:0px; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 1px 1px 0 rgba(0, 0, 0, 0.1);}

.privacy li{margin:10px 0px; padding:10px 0px;}

.privacy p{margin: 35px 0px; padding:20px 0px;}

#contact-home{width:100%; position:relative; background:url(../img/bg-contact-home.png) no-repeat;background-size: 100%;margin-bottom:80px; }

#contact-home h3{text-align:center;padding: 44px 0px 26px 0px; margin-bottom:20px;}

#contact-home .icon{margin:20px; margin-bottom:245px; }

#contact-home .formarea {

    margin: 31px;        

    margin-left: -37px;

}

.strategic_partners{margin:50px 0px; }

.strategic_partners h3{text-align:left; margin: 50px 0px;}

.strategic_partners img{filter: grayscale(100%); height:150px; width:auto;}

@media (max-width: 767px) {

  #hero {

    height: auto;

    padding: 100px 0 60px 0;

  }

  #hero .container {

    height: auto !important;

  }

  #hero .intro-img {

    width: 80%;

  }

	.mobile-top{padding-left:37px;

margin-top: 0px; height:400px; }

	.formarea{padding:0px;}

	.formarea .mail-address {  

    font-size: 13px;}

	.terms , .privacy{padding:10px; padding-bottom:0px;}

	#contact-home .formarea {margin-left:10px;}

	#contact-home .icon{ margin-bottom:45px; }

	.faq img{height:400px; width:auto}

	.contact-nav {    

    margin-left: 0px;

		text-align: center;}

}



@media (min-width: 992px) {

  #hero .intro-info {

    padding-top: 215px;

  }

}



@media (max-width: 767px) {

  #hero .intro-info {

    text-align: center;

    padding-top: 40px;

  }

}



#hero .intro-info h2 {

  color: #fff;

margin-bottom: 25px;

font-size: 36px;

font-weight: 700;

}

#hero .intro-info p{color:#fff;}

#hero .intro-info h2 span {

  color: #1bb1dc;

}



@media (max-width: 767px) {

  #hero .intro-info h2 {

    font-size: 34px;

    margin-bottom: 30px;

  }

	#hero .intro-info p {

    color: #000;}

}



#hero .intro-info .btn-get-started, #hero .intro-info .btn-services {  

  display: inline-block; 

  transition: 0.5s;  

}



#hero .intro-info .btn-get-started:hover, #hero .intro-info .btn-services:hover {

  /*background: #0a98c0;*/

}



/*--------------------------------------------------------------

# Sections

--------------------------------------------------------------*/

section {

  overflow: hidden;

}



/* Sections Header

--------------------------------*/

.section-header h3 {

  font-size: 36px;

  color: #181818;

  text-align: left;

  font-weight: 500;

  position: relative; margin-bottom:80px;

  font-family: "poppins", sans-serif;

}



.section-header p {

  text-align: center;

  margin: auto;

  font-size: 15px;

  padding-bottom: 60px;

  color: #535074;

  width: 50%;

}



@media (max-width: 767px) {

  .section-header p {

    width: 100%;

  }

}



/* Section with background

--------------------------------*/

.section-bg {

  background:none;

}

.feature {background:url(../img/right-feature.png) #fff no-repeat;background-position: right -208px;

background-size: 100%;

padding: 150px 0px 0px;}

.feature h4{font-size: 1.0rem; padding-top:20px; color:#181818; font-weight:600;}



.bg-gray{background:url(../img/bg-vision.png) #fff no-repeat;background-size: 102%;

background-position: left center;}



@media (max-width: 767px) {

	.feature {background-position: right 0px;}}



/* About Us Section

--------------------------------*/

#about {

  padding: 80px 0;

  background: url(../img/about-bg.png) #fff no-repeat;

  background-position: right 436px;

    background-size: 57%;

    padding: 150px 0px 0px;

}

@media (max-width: 1024px) {

	#about {

    padding: 80px 0;

    background-position: right 493px;

	}}

@media (max-width: 425px) {

	#about {

      background: #fff !important;

	}}

#about .about-content {

  padding-top: 40px;

}

#about h3{ text-align:center;}

#about .about-content h2 {

  color: #413e66;

  font-family: "poppins", sans-serif;

  font-weight: 700;

}



#about .about-content h3 {

  color: #696592;

  font-weight: 400;

  font-size: 22px;

  font-style: italic;

}



#about .about-content ul {

  list-style: none;

  padding: 0;

}



#about .about-content ul li {

  padding-bottom: 10px;

}



#about .about-content ul li i {

  font-size: 20px;

  padding-right: 4px;

  color: #1bb1dc;

}



#about .about-img {

  position: relative;

  margin: 30px 30px 30px 30px;

}



#about .about-img img {

  width: 100%;

  border: 8px solid #fff;

  transition: .5s;

}



#about .about-img img:hover {

  width: 100%;

  transform: scale(1.03);

}



#about .about-img::before {

  position: absolute;

  left: -31px;

  top: -30px;

  width: 90%;

  height: 92%;

  z-index: -1;

  content: '';

  background-color: #ebf1fa;

  transition: .5s;

}



#about .about-img::after {

  position: absolute;

  right: -31px;

  bottom: -30px;

  width: 90%;

  height: 92%;

  z-index: -1;

  content: '';

  background-color: #ebf1fa;

  transition: .5s;

}



/* Services Section

--------------------------------*/

#about {

  padding: 60px 0 40px 0;

}



#about .box   {

  padding: 30px;

  position: relative;

  overflow: hidden;

  border-radius: 10px;

  margin: 0 10px 40px 10px;

  background: #fff;

  box-shadow: 1px 1px 1px 1px rgba(68, 88, 144, 0.1);

  transition: all 0.3s ease-in-out;

  text-align: center;

}



#about .box:hover {

  transform: scale(1.1);

}



#about .icon {

  margin: 0 auto 15px auto;

  padding-top: 12px;

  display: inline-block;

  text-align: center;

  

  

}



#about .icon i {

  font-size: 36px;

  line-height: 1;

}



#about .title {

  font-weight: 700;

  margin-bottom: 15px;

  font-size: 18px;    min-height: 43px;

}

}



#about .title a {

  color: #111;

}



#about .box:hover .title a {

  color: #1bb1dc;

}



#about .description {

  font-size: 14px;

  line-height: 28px;

  margin-bottom: 0;

  text-align: center;

}















/* Features Section

--------------------------------*/

#about {

  padding: 80px 0; padding-bottom:0px;

}



#about h4 {

  font-weight: 600;

  font-size: 24px;

}







/* Vision Section

--------------------------------*/

#vision {

  padding: 60px 0;

}



#vision .section-header {

  margin-bottom: 40px;

}



@media (max-width: 767px) {

  #vision .vision-item {

    text-align: center;

  }

}



#vision .vision-item .vision-img {

  width: 120px;

  border-radius: 50%;

  border: 4px solid #fff;

  float: left;

}

#vision h4{font-size:0.9rem;

font-weight: bold !important; margin:24px 0px; margin-left:5px; min-height: 40px;}

#vision button{background: #10ade2;border: 1px solid #10ade2;border-radius: 30px;padding: 10px 20px;float: right;color: #fff;}

#vision p { color:#5f5f5f; font-size:0.9rem;min-height: 185px; }

@media (max-width: 767px) {

  #vision .vision-item .vision-img {

    float: none;

    margin: auto;

  }

}



#vision .vision-item h3 {

  font-size: 20px;

  font-weight: bold;

  margin: 10px 0 5px 0;

  color: #111;

  margin-left: 140px;

}



#vision .vision-item h4 {

  font-size: 14px;

  color: #999;

  margin: 0 0 15px 0;

  margin-left: 140px;

}



#vision .vision-item p {

  font-style: italic;

  margin: 0 0 15px 140px;

}



@media (min-width: 992px) {

  #vision .vision-item p {

    width: 80%;

  }

}



@media (max-width: 767px) {

  #vision .vision-item h3, #vision .vision-item h4, #vision .vision-item p {

    margin-left: 0;

  }

}



#vision .owl-nav, #vision .owl-dots {

  margin-top: 5px;

  text-align: center;

}



#vision .owl-dot {

  display: inline-block;

  margin: 0 5px;

  width: 12px;

  height: 12px;

  border-radius: 50%;

  background-color: #ddd;

}



#vision .owl-dot.active {

  background-color: #1bb1dc;

}







/* Frequently Asked Questions Section

--------------------------------*/

#faq {

  padding: 60px 0;

  overflow: hidden;

}



#faq #faq-list {

  padding: 0;

  list-style: none; 

  background: #fff0;

border-radius: 10px;

padding: 20px;}



#faq #faq-list li  {  

border-radius: 10px;

padding: 10px;margin-bottom: 10px;

/*box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 1px 1px 0 rgba(0, 0, 0, 0.1);*/

box-shadow: 1px 1px rgba(0, 0, 0, 0.1), 1px 1px rgba(0, 0, 0, 0.19);

background: #fff;

}



#faq #faq-list a {

  padding: 22px 0;

  display: block;

  position: relative;

  font-family: "poppins", sans-serif;

  font-size: 15px; font-weight:500;

  line-height: 1;

  font-weight: 700;

  padding-right: 20px;color: #000;

}



#faq #faq-list i {

  font-size: 24px;

  position: absolute;

  right: 0;

  top: 20px;

}



#faq #faq-list p {

  margin-bottom: 20px; font-size:15px;

}



@media (max-width: 768px) {

  #faq #faq-list a {

    font-size: 13px;

  }

  #faq #faq-list i {

    top: 13px;

  }

}



#faq #faq-list a.collapse {

  color: #1bb1dc;

}



#faq #faq-list a.collapsed {

  color: #000;

}



#faq #faq-list a.collapsed i::before {

  content: "\f35f" !important;

}



/*--------------------------------------------------------------

# Breadcrumbs

--------------------------------------------------------------*/

.breadcrumbs {

  padding: 15px 0;

  background: #f9f9fb;

  min-height: 40px;

  margin-top: 110px;

}



@media (max-width: 992px) {

  .breadcrumbs {

    margin-top: 58px;

  }

}



.breadcrumbs h2 {

  font-size: 26px;

  font-weight: 500;

  margin-bottom: 10px;

}



.breadcrumbs ol {

  display: flex;

  flex-wrap: wrap;

  list-style: none;

  padding: 0 0 10px 0;

  margin: 0;

  font-size: 14px;

}



.breadcrumbs ol li + li {

  padding-left: 10px;

}



.breadcrumbs ol li + li::before {

  display: inline-block;

  padding-right: 10px;

  color: #555186;

  content: "/";

}





/*--------------------------------------------------------------

# Footer

--------------------------------------------------------------*/

#footer {

  padding: 0 0 30px 0;

  font-size: 17px;

  

}



#footer .footer-top {

  padding: 60px 0 30px 0;

  background: #f5f8fd;background: #f1f4f9;

border-radius: 0px 150px 0px 0px;

}



#footer .footer-top .footer-info {

  margin-bottom: 30px;

}



#footer .footer-top .footer-info h3 {

  font-size: 34px;

  margin: 0 0 20px 0;

  padding: 2px 0 2px 0;

  line-height: 1;

  font-family: "poppins", sans-serif;

  color: #413e66;

  font-weight: 400;

  letter-spacing: 3px;

  text-transform: uppercase;

}



#footer .footer-top .footer-info p {

  font-size: 13px;

  line-height: 24px;

  margin-bottom: 0;

  font-family: "poppins", sans-serif;

  color: #535074;

}



#footer .footer-top .social-links a {

  font-size: 25px;

  display: inline-block;  

  color: #000;

  line-height: 1;

  padding: 16px 0;

  margin-right: 2px;

  border-radius: 50%;

  text-align: center;

  width: 55px;

  height: 55px;

  transition: 0.3s;

  background-color: #fff !important;

}



#footer .footer-top .social-links a:hover {

  background: #0a98c0 !important;

  color: #fff!important;

}



@media (max-width: 574px) {

  #footer .footer-top .social-links a {

    margin-bottom: 25px;

  }

}



#footer .footer-top h4 {

  font-size: 20px;

  font-weight: bold;

  color: #181818;  

  position: relative;

  padding-bottom: 10px;

}



#footer .footer-top .footer-links {

  margin-bottom: 30px;    margin-top: 30px;

}



#footer .footer-top .footer-links ul {

  list-style: none;

  padding: 0;

  margin: 0;margin-top: 67px;

}



#footer .footer-top .footer-links ul li {

  padding: 8px 0;margin-bottom: 40px; font-weight:400;

}



#footer .footer-top .footer-links ul li:first-child {

  padding-top: 0;

}



#footer .footer-top .footer-links ul a {

  color: #181818;

}



#footer .footer-top .footer-links ul a:hover {

  color: #181818;

}



#footer .footer-top .footer-contact {

  margin-bottom: 30px;

}



#footer .footer-top .footer-contact p {

  line-height: 26px;

}



#footer .footer-top .footer-newsletter {

  margin-bottom: 30px;

}



#footer .footer-top .footer-newsletter input[type="email"] {

  border: 0;

  padding: 6px 8px;

  width: 65%;

  border: 1px solid #d9dde6;

}



#footer .footer-top .footer-newsletter input[type="submit"] {

  background: #1bb1dc;

  border: 1px solid #1bb1dc;

  width: 35%;

  padding: 6px 0;

  text-align: center;

  color: #fff;

  transition: 0.3s;

  cursor: pointer;

}



#footer .footer-top .footer-newsletter input[type="submit"]:hover {

  background: #0a98c0;

}



#footer .php-email-form .validate {

  display: none;

  color: red;

  margin: 0 0 15px 0;

  font-weight: 400;

  font-size: 13px;

}



#footer .php-email-form .error-message {

  display: none;

  color: #fff;

  background: #ed3c0d;

  text-align: left;

  padding: 15px;

  font-weight: 600;

}



#footer .php-email-form .error-message br + br {

  margin-top: 25px;

}



#footer .php-email-form .sent-message {

  display: none;

  color: #fff;

  background: #18d26e;

  text-align: center;

  padding: 15px;

  font-weight: 600;

}



#footer .php-email-form .loading {

  display: none;

  background: #fff;

  text-align: center;

  padding: 15px;

}



#footer .php-email-form .loading:before {

  content: "";

  display: inline-block;

  border-radius: 50%;

  width: 24px;

  height: 24px;

  margin: 0 10px -6px 0;

  border: 3px solid #18d26e;

  border-top-color: #eee;

  -webkit-animation: animate-loading 1s linear infinite;

  animation: animate-loading 1s linear infinite;

}



#footer .php-email-form input, #footer .php-email-form textarea {

  border-radius: 0;

  box-shadow: none;

  border: 1px solid #dce1ec;

  font-size: 14px;

}



#footer .php-email-form input::focus, #footer .php-email-form textarea::focus {

  background-color: #1bb1dc;

}



#footer .php-email-form input {

  padding: 20px 15px;

}



#footer .php-email-form textarea {

  padding: 12px 15px;

}



#footer .php-email-form button[type="submit"] {

  background: #1bb1dc;

  border: 0;

  border-radius: 3px;

  padding: 8px 30px;

  color: #fff;

  transition: 0.3s;

}



#footer .php-email-form button[type="submit"]:hover {

  background: #0a98c0;

  cursor: pointer;

}



@-webkit-keyframes animate-loading {

  0% {

    transform: rotate(0deg);

  }

  100% {

    transform: rotate(360deg);

  }

}



@keyframes animate-loading {

  0% {

    transform: rotate(0deg);

  }

  100% {

    transform: rotate(360deg);

  }

}



#footer .copyright {

  text-align: left;

  padding-top: 30px;

  color: #535074;

  font-size: 15px;

}



.logo-footer{margin-bottom:40px;}

.logo-mac-google{margin:20px 0px; }

#footer .credits {

  text-align: center;

  font-size: 14px;

  padding-top: 4px;

  color: #8582a8;

}



#footer .credits a {

  color: #1bb1dc;

}



#footer .credits a:hover {

  color: #0a98c0;

}
/*

CC 2.0 License Iatek LLC 2018
Attribution required

*/

@media (min-width: 768px) {

    /* show 3 items */
    .carousel-inner .active,
    .carousel-inner .active + .carousel-item,
    .carousel-inner .active + .carousel-item + .carousel-item {
        display: block;
    }
    
    .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
    .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item,
    .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item {
        transition: none;
        margin-right: initial;
    }
    
    .carousel-inner .carousel-item-next,
    .carousel-inner .carousel-item-prev {
      position: relative;
      transform: translate3d(0, 0, 0);
    }
    
    .carousel-inner .active.carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: absolute;
        top: 0;
        right: -33.3333%;
        z-index: -1;
        display: block;
        visibility: visible;
    }
    
    /* left or forward direction */
    .active.carousel-item-left + .carousel-item-next.carousel-item-left,
    .carousel-item-next.carousel-item-left + .carousel-item,
    .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item,
    .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    
    /* farthest right hidden item must be abso position for animations */
    .carousel-inner .carousel-item-prev.carousel-item-right {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        display: block;
        visibility: visible;
    }
    
    /* right or prev direction */
    .active.carousel-item-right + .carousel-item-prev.carousel-item-right,
    .carousel-item-prev.carousel-item-right + .carousel-item,
    .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item,
    .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        display: block;
        visibility: visible;
    }

}