/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Fira Sans", sans-serif;
  color: #444444;
}

a {
  color: #2db6fa;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fira Sans", sans-serif;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 50px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #4154f1;
  text-transform: uppercase;
}

.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  color: #012970;
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

/*--------------------------------------------------------------
# Whatsapp Button
--------------------------------------------------------------*/

.btn-whatsapp-pulse {
	background: #00E676;
	color: white;
	position: fixed;
	bottom: 20px;
	right: 0;
	font-size: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 10px;
	height: 10px;
	padding: 28px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
  z-index: 9999;
}

.btn-whatsapp-pulse:hover {
	background: #07d16f;
}

a.btn-whatsapp-pulse:hover {
	color: #07703d;
}


.btn-whatsapp-pulse-border {
	bottom: 100px;
	right: 20px;
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #00E676;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #2db6fa;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 30px 0;
}

.header.header-scrolled {
  background: #fff;
  padding: 20px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: "Fira Sans", sans-serif;
  margin-top: 3px;
}

@media screen and (max-width: 768px) { 
  .header .logo span  {
    
    color: #797bff;
 
  }

  .header.header-scrolled {
 
    padding: 30px 0;
   
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color:#2db6fa;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #2db6fa;
}

.navbar .getstarted {
  background: #2db6fa;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 100px;
  color: #fff;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #5969f3;
}




/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #2db6fa;
  font-size: 30px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #001946f7;
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 30px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #012970;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #4154f1;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #4154f1;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  background:  top center no-repeat;
  background-size: cover;
  padding-bottom: 0;
}

.hero .container-fluid{
  padding-right: 0;
  padding-left: 110px;
  
  
}

.hero h1 {
  margin: 0;
  font-size: 78px;
  font-weight: 700;
  color: #012970;
  margin-bottom: 20px;
}


.slogan{
  margin-bottom: 50px;
}

.hero h2 {
  color: #444444;
  margin: 15px 0 0 0;
  font-size: 22px;
  line-height: 1.2;
}

.hero .btn-get-started {
  background: #2db6fa;
  padding: 15px 20px;
  margin-top: 40px;
  border-radius: 100px;
  color: #fff;
  border: none;
  width: 200px;
  box-shadow: 0px 3px 30px rgba(51, 54, 78, 0.1);

}

.hero .btn-get-started:hover {
  background: #4154f1;
  padding: 15px 20px;
  margin-top: 40px;
  border-radius: 100px;
  color: #fff;
  border: none;
  width: 200px;
  box-shadow: 0px 3px 30px rgba(51, 54, 78, 0.2);

}


.hero .btn-get-started span {
  font-family: "Fira Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 22px;
  transition: 0.3s;
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .hero-img {
  text-align: right;
  position: relative;
  bottom: 60px;
  left: 50px;
}

@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 120px 0 60px 0;
  }
  .hero .hero-img {
    text-align: center;
    margin-top: 80px;
  }
  .hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 411px) {
  .hero {
    text-align: center;
  }
  .hero h1 {
    font-size: 42px;
    color: #fef7f8;
  }
  .hero h2 {
    font-size: 24px;
    color: #fef7f8;
  }
  .hero .hero-img img {
    display: none;
  }

  .hero .container-fluid{
    padding-right: 15px;
    padding-left: 15px;
    
  }

  .hero {
    width: 100%;
    background: url(../img/homebg.png) top center no-repeat;
    background-size: cover;
    height: 690px;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
  .hero h1 {
    font-size: 50px;
    color: #fef7f8;
  }
  .hero h2 {
    font-size: 25px;
    color: #fef7f8;
  }
  .hero .hero-img img {
    display: none;
  }

  .hero .container-fluid{
    padding-right: 15px;
    padding-left: 15px;
    
  }

  .hero {
    width: 100%;
    background: url(../img/homebg2.png) top center no-repeat;
    background-size: cover;
    height: 800px;
  }
}


@media (max-width: 1024px) {
  .hero .container-fluid{
   padding-left: 10px;
  }

}


/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  background-color: #f6f9ff;
  padding: 40px;
}

.about h3 {
  font-size: 14px;
  font-weight: 700;
  color: #4154f1;
  text-transform: uppercase;
}

.about h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
}

.about p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}



/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/

.values{
padding-bottom: 160px;
}
.values .box {
  padding: 30px;
  box-shadow: 0px 0 20px rgb(1 41 112 / 10%);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .values{
    padding-bottom: 50px;
    }
  }


.values .box img {
  padding: 15px 0;
  width: 55%;
}

.values .box h3 {
  font-size: 24px;
  color: #444444;
  font-weight: 700;
  margin-bottom: 18px;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
position: relative;
bottom: 150px;
padding-bottom:40px;
}

.counts .count-box {
  display: flex;
  align-items: center;
  padding: 50px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border-radius: 50px;
}

.counts .count-box i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: #4154f1;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #0b198f;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Beneficios
--------------------------------------------------------------*/

.beneficios{

  box-shadow: 0px 0 30px rgba(57, 64, 75, 0.123);
  border-radius: 0 400px 400px 0;
  padding-top: 0;
}


.beneficios .feature-icons{
  margin-top: 50px;
}


.beneficios .feature-icons h3 {
  color: #012970;
  font-weight: 700;
  font-size: 38px;
  margin-bottom: 50px;
  text-align: left;
  
}

@media (max-width: 768px) {

  .beneficios{
    padding-top: 50px;
  }
  .beneficios .feature-icons h3 {
    font-size: 28px;
  }

  
.beneficios .feture-tabs h2 {
  color: #2db6fa;
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 10px;
  text-align: right;
}

.beneficios .feature-icons .row .tips{
  margin-bottom: 120px;
}

}

.beneficios .feature-icons .content .icon-box {
  display: flex;
}

.beneficios .feature-icons .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #012970;
  padding-bottom: 10px;
}

.beneficios .feature-icons .content .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: #2db6fa;
  margin-right: 15px;
  padding-bottom: 10px;
}

.beneficios .feature-icons .content .icon-box p {
  font-size: 15px;
  color: #848484;
}



/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.features{
  background: url(../img/component1.png);
  background-size: cover;
  height: 700px;
  margin-top: 100px;
}

.features  h3 {
  font-size: 18px;
  color: #f6f9ff;
  font-weight: 700;
  margin: 0;
}


.btnentry{
  background: #2db6fa;
  padding: 15px 20px;
  margin-top: 20px;
  border-radius: 100px;
  color: #fff;
  border: none;
  width: 200px;
}

.btnentry:hover{
  background: #4154f1;
}

.features .feature-box i {
  line-height: 0;
  background: #ecf3ff;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: #4154f1;
  color: #fff;
}

.features .feture-tabs {
  margin-top: 120px;
}

.features .feture-tabs h3 {
  color: #f3f3f3;
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 10px;
}

.features .feture-tabs h2 {
  color: #2db6fa;
  font-weight: 700;
  font-size: 62px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .features .feture-tabs h3 {
    font-size: 28px;
  }
}

.features .feture-tabs .nav-pills {
  border-bottom: 1px solid #eee;
}

.features .feture-tabs .nav-link {
  background: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  color: #012970;
  padding: 12px 0;
  margin-right: 25px;
  margin-bottom: -2px;
  border-radius: 0;
}

.features .feture-tabs .nav-link.active {
  color: #4154f1;
  border-bottom: 3px solid #4154f1;
}

.features .feture-tabs .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: #012970;
}

.features .feture-tabs .tab-content i {
  font-size: 24px;
  line-height: 0;
  margin-right: 8px;
  color: #4154f1;
}

.features .feature-icons {
  margin-top: 120px;
}

.features .feature-icons h3 {
  color: #012970;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .features .feature-icons h3 {
    font-size: 28px;
  }

  .btnentry{
    margin-left: 115px;
 
  }
  
.features .feture-tabs h2 {
  color: #2db6fa;
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 10px;
  text-align: right;
}

.features  h3 {
  color: #012970;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: right;
}

}

.features .feature-icons .content .icon-box {
  display: flex;
}

.features .feature-icons .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #012970;
}

.features .feature-icons .content .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: #0245bc;
  margin-right: 15px;
}

.features .feature-icons .content .icon-box p {
  font-size: 15px;
  color: #848484;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services{
  padding-top: 0;
}

.services .section-header{
  margin-bottom: 30px;
}

.services .service-box {
  box-shadow: 0px 0 30px rgba(1, 11, 12, 0.02);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-box .icon {
  font-size: 36px;
  padding: 40px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-box h3 {
  color: #444444;
  font-weight: 700;
  font-size: 25px;
}


.services .service-box .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services .service-box.blue {
  border: 2px solid #2db6fa;
  border-radius: 50px;
}

.services .service-box.blue .icon {
  color: #2db6fa;
  background: #dbf3fe;
  border-radius: 50px;
}



.services .service-box.blue:hover {
  background: #2db6fa;
}

.services .service-box.orange {
  border: 2px solid #007ebd;
  border-radius: 50px;
}

.services .service-box.orange .icon {
  color: #007ebd;
  background: #dbf3fe;
  border-radius: 50px;
}


.services .service-box.orange:hover {
  background:#007ebd;
}

.services .service-box.green {
  border: 2px solids #003d5c;
  border-radius: 50px;
}

.services .service-box.green .icon {
  color: #003d5c;
  background: #dbf3fe;
  border-radius: 50px;
}


.carousel-inner {
 border-radius: 20px;
}


/* LIBROS */   


.libros{
  margin-bottom: 150px;
}

.libros h3 {
    color: #012970;
    font-weight: 700;
    font-size: 38px;
    text-align: left;
}

.libros h4 {
  font-size: 25px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #2db6fa;
  padding-bottom: 10px;
}


.libros p {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px 0;
  color: #444444;
  padding-bottom: 10px;
}


.libros .icon-box i {
  font-size: 24px;
  line-height: 24px;
  color: #2db6fa;
  padding-bottom: 10px;
}

.libros .btnsayme {
  background: #2db6fa;
  padding: 15px 20px;
  border-radius: 100px;
  color: #fff;
  border: none;
  width: 200px;
  box-shadow: 0px 3px 30px rgba(51, 54, 78, 0.2);

}

.libros .btnsayme:hover {
  background: #4154f1;
  padding: 15px 20px;
  border-radius: 100px;
  color: #fff;
  border: none;
  width: 200px;
  box-shadow: 0px 3px 30px rgba(51, 54, 78, 0.2);

}


/* GALERIA */


#galeria{
    padding:140px 0;
}
/*
.owl-theme .owl-nav {
  display: none;
}*/

.owl-carousel .owl-nav button.owl-prev {
  font-size: 45px;
  padding: 0 20px !important;
  }

.owl-carousel .owl-nav button.owl-next {
    font-size: 45px;
    padding: 0 20px !important;
  }

  .owl-theme .owl-nav [class*=owl-]:hover {
    color: #106eea;
    background: none;
}

.owl-theme .owl-dots {
  margin-top: 10px;
  display: none;
}

.owl-theme img {
border-radius: 12px;
}


#carrousel .section-title {
  text-align: left !important;
  padding-bottom: 30px;
}

.owl-theme .owl-dots .owl-dot.active span{
  background: #2db6fa;
}

.owl-theme .owl-dots .owl-dot span {
  background: rgb(177, 177, 232);
}



/*--------------------------------------------------------------
# Provedores

--------------------------------------------------------------*/
.provedores{
  padding: 100px 0;
}

.estado h2{
  color: #2db6fa;
  font-weight: 700;
  font-size: 62px;
  margin-bottom: 10px;
}

.volanta h3{
  text-transform: uppercase;
  font-size: 17px;
  font-style: italic;
  margin-bottom: 10px;
  font-weight: 500;
  color: #2db6fa;
}

.expedientes p{
  color: #444444;
  font-weight: 700;
  font-size: 29px;
  margin: 10px 0 10px 50px;
}

.imgprovedores img{
  width: 70%;
  margin-left: 150px;
}


.btnprovedores{
  margin-left: 50px;
  margin-top: 40px;
}

.provedores .btnsayme {
  background: #2db6fa;
  padding: 15px 20px;
  border-radius: 100px;
  color: #fff;
  border: none;
  width: 200px;
  box-shadow: 0px 3px 30px rgba(51, 54, 78, 0.2);

}

.provedores .btnsayme:hover {
  background: #4154f1;
  padding: 15px 20px;
  border-radius: 100px;
  color: #fff;
  border: none;
  width: 200px;
  box-shadow: 0px 3px 30px rgba(51, 54, 78, 0.2);

}



@media (max-width: 768px) {
  .provedores{
    padding: 50px 0;
  }
  .offset-2 {
    margin-left: 0;
}
  .estado h2{
    line-height: 42px;
    padding: 10px 0;
    font-size: 40px;
  }
  .volanta h3{
    font-size: 15px;
    margin-bottom: 0;
  }
  .imgprovedores img{
    width: 60%;
    margin: 20px 50px;
  }
  .expedientes p{
    color: #444444;
    font-weight: 700;
    font-size: 28px;
    line-height: 37px;
    margin: 10px 0;
  }

  .btnprovedores{
    margin: 20px 0;
  }

  }
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact{
  background: url(../img/component2.png);
  background-size: cover;
  height: 770px;
  background-position: right;

}



.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #2db6fa;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
  color: #ffffff;
}



.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #4154f1;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact h2{

  font-family: 'Fira Sans', sans-serif;
  color: #FFF;
  font-size: 38px;
  font-weight: 700;
  float: right;
  position: relative;
  right: 175px;
}

button:disabled {
    opacity: 0.7;
    background: #ccc;
    color:#555;
    cursor: default;
}

button:disabled:hover {
    opacity: 0.7;
    background: #ccc;
    color:#555;
    cursor: default;
}

form .form-control {
  font-family: 'Fira Sans', sans-serif;
  color: #FFF;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  margin: 1em;
  background-color: transparent;
  background-clip: padding-box;
  border: none;
  border-bottom: 2px solid #FFF;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#exform::placeholder {
color: rgb(255, 255, 255);
}


.btncontact{
  background: #2db6fa;
  padding: 15px 20px;
  margin-top: 40px;
  border-radius: 100px;
  color: #fff;
  border: none;
  width: 200px;
  box-shadow: 0px 3px 30px rgba(51, 54, 78, 0.2);
  margin-left: 7px;
}


.btncontact:hover{
  color: #fff;
  background: #5969f3;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {

  .contact{
    background: url(../img/component2.png);
    background-size: cover;
    height: auto;
    margin-left: -5px;
    background-position: right;
  }


  form .form-control {
    
    width: 90%;
    padding: .375rem .75rem;
    margin: 2em 1em;
    
  }

  .info-box{
    margin-bottom: 20px;
  }
  
  .contact h2{

  display: none;
  }

  .contact .info-box  {
 padding-left: 1em;
  }
  
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #ffffff;
  padding: 0 0 30px 0;
  font-size: 14px;
  font-family:'Fira Sans' sans-serif;
}
.footer .footer-top {
 
  background-size: contain;
  border-bottom: 1px solid #e1ecff;
  padding: 60px 0 30px 0;
}

@media (max-width: 992px) {
  .footer .footer-top {
    background-position: center bottom;
  }
}

.footer .footer-top .footer-info {
  margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
}

.footer .footer-top .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-top .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: "Fira Sans", sans-serif;
  margin-top: 3px;
}

.footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Fira Sans", sans-serif;
}

.footer .footer-top .social-links a {
  font-size: 30px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
  color: #012970;
}

.footer .footer-top h4 {
  font-size: 18px;
  font-weight: bold;
  color: #012970;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  
}

.footer .footer-top .footer-links {
  margin-bottom: 30px;
}

.footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #d0d4fc;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-top .footer-links ul a {
  color: #013289;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-top .footer-links ul a:hover {
  color: #4154f1;
}

.footer .footer-top .footer-contact p {
  line-height: 26px;
}

.footer .credits {
  font-family: "Fira Sans", sans-serif;
  padding-top: 30px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

.footer .credits a {
  color: #1100ff;
}

.footer .credits a:hover {
  color: #050046;
}