
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: #0880e8;
}

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

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

@font-face {
  font-family: Josefin Sans;
  src: url('../fonts/josefin.ttf');
}

.orange {
  color: #f6b024; 	
}

.blue {
  color: #db8918; 	
  font-weight: 700;  
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: transparent;
  width: 280px;
  height: 60px;
  transition: all 0.4s;
}

.back-to-top p {
	font-size: 14px;
	font-weight: 600;
	color: #f6b024;
	text-transform: uppercase;
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#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 #0880e8;
  border-top-color: #bfe0fd;
  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 {
  height: 60px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
  z-index: 996;
}

#topbar.topbar-scrolled {
  top: -60px;
}

#topbar .contact-info a {
  line-height: 0;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  text-decoration: underline;
}

#topbar .contact-info i {
  color: #f6b024;
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .cta {
  background: transparent;
}

#topbar .cta a {
  color: #fff;
  background: #f6b024;
  padding: 6px 24px 8px 24px;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}

#topbar .cta a:hover {
  background: #f1a40a;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(4, 93, 181, 0.1);
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
  top: 60px;
}

#header.header-scrolled {
  background: rgba(5, 87, 158, 0.9);
  top: 0;
}

#header .logo {
  font-size: 30px;
  font-family: 'Josefin Sans', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

.header-inner-pages {
  background: rgba(5, 87, 158, 0.9) !important;
}

.topbar-inner-pages {
  background: rgba(6, 98, 178, 0.9) !important;
}

/*--------------------------------------------------------------
# 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 > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

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

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #f6b024;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}

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

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 8px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #032e54;
}

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

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #0880e8;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

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

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

@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: rgba(5, 74, 133, 0.9);
  transition: 0.3s;
  z-index: 999;
}

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

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

.navbar-mobile > ul > li {
  padding: 0;
}

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

.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}

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

.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: #f6b024;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(34, 39, 43, 0.2);
  overflow: hidden;
  position: relative;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item::before {
  content: '';
  background-color: rgba(12, 13, 14, 0.1);
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #f6b024;
  margin-bottom: 20px;
  font-size: 70px;
  font-weight: 900;
}

#hero h1 {
  color: #045db5;
  margin-bottom: 20px;
  font-size: 7em;
  font-weight: 700;
  font-family: Airstrike Laser;
}


#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #db8918;
  font-size: 42px;
  font-weight: 600;  
  text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5);
}

#hero #texto-hero {
  color: #db8918;
  background: rgba(255, 255, 255, 0.3);
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #428bca;
}

#hero .btn-get-started {
	box-shadow:inset 0px 1px 0px 0px #cf866c;
	background:linear-gradient(to bottom, #d0451b 5%, #bc3315 100%);
	background-color:#d0451b;
	border-radius:3px;
	border:1px solid #942911;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:18px;
	font-weight: 600;
	padding:6px 24px;
	text-decoration:none;
	text-shadow:0px 1px 0px #854629;
	text-transform: uppercase;
	-webkit-box-shadow: 1px 1px 15px 5px #404040; 
	box-shadow: 1px 1px 15px 5px #404040;
}
#hero .btn-get-started:hover {
	background:linear-gradient(to bottom, #bc3315 5%, #d0451b 100%);
	background-color:#bc3315;
}
#hero .btn-get-started:active {
	position:relative;
	top:1px;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
  
  #hero p {
    font-size: 22px;
  }  
}

@media (max-height: 500px) {
  #hero {
    height: 125vh;
  }
}

/*--------------------------------------------------------------
# Hero Small Section
--------------------------------------------------------------*/
#hero-small {
  width: 100%;
  height: 70vh;
  padding: 0 0 0 0;
  background: #045db5;
}

#hero-small:before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  height: 70vh;  
}

#hero-small h1 {
  margin: 150px 0 15px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #f6b024;
  font-family: "Poppins", sans-serif;
}

#hero-small h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 22px;
}

#hero-small .btn-get-started {
  color: #fff;
  border-radius: 50px;
  padding: 8px 35px 10px 35px;
  border: 2px solid #045db5;
  transition: all ease-in-out 0.3s;
  display: inline-block;
  background: #045db5;
}

#hero-small .btn-get-started:hover {
  background: transparent;
  color: #fff;
}

@media (max-width: 991px) {
  #hero-small .hero-img {
    text-align: center;
  }
  #hero-small .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero-small {
    -moz-text-align-last: center;
    text-align-last: center;
  }
  #hero-small h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero-small h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero-small .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero-small .hero-img img {
    width: 80%;
  }
}


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

.section-bg {
  background-color: #f1f8ff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 38px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #045db5;
font-family: 'Josefin Sans', sans-serif;
}

.section-title p {
  margin-bottom: 0;
  font-style: italic;
}

/*--------------------------------------------------------------
# Icon Boxes
--------------------------------------------------------------*/
.icon-boxes {
  padding-top: 0;
  position: relative;
  z-index: 100;
}

.icon-boxes .icon-box {
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 5px 10px 29px 0 rgba(68, 88, 144, 0.2);
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}

.icon-boxes .icon {
  margin: 0 auto 20px auto;
  display: inline-block;
  text-align: center;
}

.icon-boxes .icon i {
  font-size: 36px;
  line-height: 1;
  color: #f6b024;
}

.icon-boxes .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.icon-boxes .title a {
  color: #05579e;
}

.icon-boxes .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  color: #777777;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
  padding: 40px 0;
  position: relative;
}

.about .container {
  position: relative;
}

.about #about-img {
  margin: 20px 0 60px 0;
  -webkit-box-shadow: 5px 5px 13px 1px #B0B0B0; 
  -moz-box-shadow: 5px 5px 13px 1px #B0B0B0;
  box-shadow: 5px 5px 13px 1px #B0B0B0;    
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about #about-icon {
  margin-top: 30px;	
}

.about .icon-box {
  padding-left: 15px;
  margin: 30px 0 40px 0;
}

.about .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 0 60px;
  color: #045db5;  
}

.about .icon-box i {
  font-size: 48px;
  float: left;
  color: #db8918;
  margin-top: -15px;
}

.about .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

@media (max-width: 992px) {
  .about {
    padding: 60px 0;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 50px 40px;
  border-radius: 6px;
  background: #fff;
  -webkit-box-shadow: 4px 4px 5px 3px rgba(176,176,176,0.64); 
  -moz-box-shadow: 4px 4px 5px 3px rgba(176,176,176,0.64); 
  box-shadow: 4px 4px 5px 3px rgba(176,176,176,0.64);
}

.services .icon-box i {
  float: left;
  color: #f6b024;
  font-size: 40px;
  line-height: 0;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #05579e;
  transition: 0.3s;
}

.services .icon-box h4 a:hover {
  color: #0880e8;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(5, 74, 133, 0.8), rgba(5, 74, 133, 0.9)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  border-radius: 50px;
  border: 2px solid #f6b024;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #f6b024;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}

.appointment .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.appointment .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.appointment .php-email-form .error-message br + br {
  margin-top: 25px;
}

.appointment .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.appointment .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.appointment .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;
}

.appointment .php-email-form input, .appointment .php-email-form textarea, .appointment .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus, .appointment .php-email-form textarea:focus, .appointment .php-email-form select:focus {
  border-color: #1977cc;
}

.appointment .php-email-form input, .appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}

.appointment .php-email-form button[type="submit"] {
  background: #1977cc;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.appointment .php-email-form button[type="submit"]:hover {
  background: #1c84e3;
}

.appointment .php-email-form input, .appointment .php-email-form textarea {
  border-radius: 4px;
  -webkit-box-shadow: 4px 4px 5px 3px rgba(176,176,176,0.64); 
  -moz-box-shadow: 4px 4px 5px 3px rgba(176,176,176,0.64); 
  box-shadow: 4px 4px 5px 3px rgba(176,176,176,0.64);
  font-size: 14px;
  border: 1px solid #045db5;  
}

.appointment label {
  font-size: 18px;
  font-weight: 600;
  color: #db8918;  
  margin-top: 20px;  
}


/*--------------------------------------------------------------
# Operativa
--------------------------------------------------------------*/

.team .card-container {
  display: inline-block;
  width: 350px;
  height: 490px;
  position: relative;
  float:left;	
  z-index: 1;
  -webkit-perspective: 800;
  -moz-perspective: 800;
  perspective: 800;
  margin-bottom: 60px;
}

.team .card {
  -webkit-box-shadow: 1px 2px 17px 2px rgba(59,59,59,0.48); 
  -moz-box-shadow: 1px 2px 17px 2px rgba(59,59,59,0.48); 
  box-shadow: 1px 2px 17px 2px rgba(59,59,59,0.48);
  height: 100%;
  width: 100%;
  -webkit-transform-style: preserve-3d;
  -webkit-transition: all 0.5s;    
  -moz-transform-style: preserve-3d;
  -moz-transition: all 0.5s;    
  transform-style: preserve-3d;
  transition: all 0.5s;
}

.team .card-container:hover .card {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.team .card .side {
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.team .card .front {
  height: 100%;
  width: 100%;
  background: #d2deed;  
  border: 3px solid #045db5;  
}

.team .card .front h2{
  font-size:32px;
  font-weight: 700;
  position: relative;
  margin: 70px 0px 30px 0px;
  color: #f6b024;  
}

.team .card .front p {
  font-size: 16px;
  font-weight: 600;  
  margin-top: 30px;
  border: 1px solid #2693b0;
  padding: 50px 30px 50px 30px;
  background: #045db5;
  color: #fff;  
  text-align: justify;
}

.team .card .back {
  background: #fff;
  position: relative;
  color: #fff;
  height: 100%;
  width: 100%;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
  border: 2px solid #2693b0;
}

.team .card .back:before {
  content: "";
  background: #fff;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.team .card .back p {
  font-size:18px;
  font-weight: 600;
  position: relative; 
  color: #444444;  
}

.team .card .back .btn-get-started {
  color: #045db5;
  border-radius: 50px;
  padding: 8px 35px 10px 35px;
  border: 2px solid #fdc134;
  transition: all ease-in-out 0.3s;
  display: inline-block;
  background: #fff;
  font-size: 20px;
  font-weight: 600;
}

.team .card .back .btn-get-started:hover {
  background: #fdc134;
  color: #fff;
}



.team .daft {
  text-align: center;
  padding: 50px 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  width: 100%;  
}

.team .daft img {
  position: relative
}

.team .daft .iconback {
  margin: 0 auto;
  color: #444444;
  font-weight: 600;
  width: 64px;
  height: 64px;
  background: #ffb03b;
  border-radius: 35px;
  transition: all .3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.team .daft .iconback i {
  color: #black;
  font-size: 28px;
}

.team .daft .iconback::before {
  position: absolute;
  content: '';
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  transition: all .3s ease-out 0s;
  transform: translateZ(-1px);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  -webkit-box-shadow: 4px 4px 8px 3px rgba(176,176,176,0.75); 
  -moz-box-shadow: 4px 4px 8px 3px rgba(176,176,176,0.75); 
  box-shadow: 4px 4px 8px 3px rgba(176,176,176,0.75);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #345a85;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #345a85;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #345a85;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
  -webkit-box-shadow: 5px 18px 15px -9px #A1A1A1; 
  -moz-box-shadow: 5px 18px 15px -9px #A1A1A1; 
  box-shadow: 5px 18px 15px -9px #A1A1A1;
  margin-top: 20px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #db8918;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #0880e8;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Mudanzas SECTION
--------------------------------------------------------------*/
.mudanzas .content {
  padding: 30px 0;
}

.mudanzas .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #045db5;
}

.mudanzas .content p {
  margin-bottom: 0;
}

.mudanzas .content .icon-box {
  margin: 25px 0px 25px 0px;
  padding-top: 20px;
  padding-bottom: 20px;
  border: 1px solid #045db5;
  -webkit-box-shadow: -2px 9px 13px -5px rgba(92,92,92,0.81); 
  -moz-box-shadow: -2px 9px 13px -5px rgba(92,92,92,0.81); 
  box-shadow: -2px 9px 13px -5px rgba(92,92,92,0.81);  
}

.mudanzas .content .icon-box:hover {
  background: #045db5;
  transition: 0.3s;  
}

.mudanzas .content .icon-box:hover h4 {
  color: #db8918;
}

.mudanzas .content .icon-box:hover p {
  color: #fff;
}

.mudanzas .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
  color: #045db5;
}

.mudanzas .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #db8918;
}

.mudanzas .content .icon-box p {
  font-size: 16px;
  color: #444444;
  margin-left: 60px;
  font-weight: 600;
}

.mudanzas ul li {
  list-style: none;	
}

.mudanzas .icono-box i {
  font-size: 20px;
  color: #db8918;
  margin: 10px;  
}

.mudanzas #mapa {
  margin-top: 40px;	
}

.mudanzas .content .idos-box {
  margin-top: 25px;
}

.mudanzas .content .idos-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
  color: #213b52;
}

.mudanzas .content .idos-box h4 a {
  color: #045db5;  
  transition: 0.3s;
}

.mudanzas .content .idos-box h4 a:hover {
  color: #fdc134;
}

.mudanzas .content .idos-box i {
  font-size: 48px;
  float: left;
  color: #db8918;
}

.mudanzas .content .idos-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

#muda-img {
  margin: 60px 0 30px 0;
  -webkit-box-shadow: 5px 5px 13px 1px #B0B0B0; 
  -moz-box-shadow: 5px 5px 13px 1px #B0B0B0;
  box-shadow: 5px 5px 13px 1px #B0B0B0;  
}

#mudanzas .btn-get-started {
  color: #045db5;
  border-radius: 50px;
  padding: 8px 35px 10px 35px;
  border: 2px solid #fdc134;
  transition: all ease-in-out 0.3s;
  display: inline-block;
  background: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
}

#mudanzas .btn-get-started:hover {
  background: #fdc134;
  color: #fff;
}


.cto {
  background:  #045db5;
  padding: 40px 0;
  -webkit-box-shadow: 5px 18px 15px -9px #A1A1A1; 
  -moz-box-shadow: 5px 18px 15px -9px #A1A1A1; 
  box-shadow: 5px 18px 15px -9px #A1A1A1;
}

.cto h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cto p {
  color: #fff;
}

.cto .cto-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 2px;
  transition: 0.5s;
  border-radius: 50px;
  border: 2px solid #f6b024;
  color: #fff;
}

.cto .cto-btn:hover {
  background: #f6b024;
}

@media (max-width: 1024px) {
  .cto {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cto .cto-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.steps .step-item {
  background: #045db5;
  width: 100%;	
  min-height: 200px;
  border: 2px solid #f6b024; 
  padding-top: 30px; 
  margin: 30px 0 30px 0;  
  -webkit-box-shadow: 5px 5px 0px 0px #289FED, 10px 10px 0px 0px #5FB8FF, 15px 15px 0px 0px #A1D8FF, 20px 20px 0px 0px #CAE6FF, 25px 25px 0px 0px #E1EEFF, 5px 5px 15px 5px rgba(0,0,0,0); 
  -moz-box-shadow: 5px 5px 0px 0px #289FED, 10px 10px 0px 0px #5FB8FF, 15px 15px 0px 0px #A1D8FF, 20px 20px 0px 0px #CAE6FF, 25px 25px 0px 0px #E1EEFF, 5px 5px 15px 5px rgba(0,0,0,0); 
  box-shadow: 5px 5px 0px 0px #289FED, 10px 10px 0px 0px #5FB8FF, 15px 15px 0px 0px #A1D8FF, 20px 20px 0px 0px #CAE6FF, 25px 25px 0px 0px #E1EEFF, 5px 5px 15px 5px rgba(0,0,0,0);
}

.steps .step-item h4 {
  font-size: 26px;
  color: #fff;
}

.steps .step-item i {
  font-size: 38px;
  color: #f6b024;
}

/*--------------------------------------------------------------
# Portes SECTION
--------------------------------------------------------------*/
.portes .content {
  padding: 30px 0;
}

.portes .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #045db5;  
}

.portes .content p {
  margin-bottom: 0;
}

.portes .content .icon-box {
  margin-top: 25px;
}

.portes .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
  color: #213b52;
}

.portes .content .icon-box h4 a {
  color: #045db5;  
  transition: 0.3s;
}

.portes .content .icon-box h4 a:hover {
  color: #fdc134;
}

.portes .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #db8918;
}

.portes .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.portes img {
  margin: 60px 0 30px 0;
  -webkit-box-shadow: 5px 5px 13px 1px #B0B0B0; 
  -moz-box-shadow: 5px 5px 13px 1px #B0B0B0;
  box-shadow: 5px 5px 13px 1px #B0B0B0;  
}

#portes .btn-get-started {
  color: #045db5;
  border-radius: 50px;
  padding: 8px 35px 10px 35px;
  border: 2px solid #fdc134;
  transition: all ease-in-out 0.3s;
  display: inline-block;
  background: #fff;
  font-size: 24px;
  font-weight: 600;
}

#portes .btn-get-started:hover {
  background: #fdc134;
  color: #fff;
}


/*--------------------------------------------------------------
# Guardamuebles SECTION
--------------------------------------------------------------*/

.muebles {
  padding-top: 50px;
}

.muebles .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
  color: #045db5;
}

.muebles img {
  margin: 60px 0 30px 0;
  -webkit-box-shadow: 5px 5px 13px 1px #B0B0B0; 
  -moz-box-shadow: 5px 5px 13px 1px #B0B0B0;
  box-shadow: 5px 5px 13px 1px #B0B0B0;  
}

.muebles .title-contact {
  margin-top: 20px;	
}

.muebles .icon-box {
  padding-left: 15px;
  margin: 30px 0 40px 0;
}

.muebles .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 0 60px;
  color: #045db5;  
}

.muebles .icon-box i {
  font-size: 48px;
  float: left;
  color: #db8918;
  margin-top: -15px;
}

.muebles .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.muebles .btn-get-started {
  color: #045db5;
  border-radius: 50px;
  padding: 8px 35px 10px 35px;
  border: 2px solid #fdc134;
  transition: all ease-in-out 0.3s;
  display: inline-block;
  background: #fff;
  font-size: 24px;
  font-weight: 600;
}

.muebles .btn-get-started:hover {
  background: #fdc134;
  color: #fff;
}

/*--------------------------------------------------------------
# Presupuesto SECTION
--------------------------------------------------------------*/
.presu label {
  font-size: 18px;
  font-weight: 600;
  color: #db8918;  
  margin-top: 40px;
}

.presu input {
  border: 1px solid #045db5;
  -webkit-box-shadow: 1px 14px 14px -10px #A8A8A8; 
  -moz-box-shadow: 1px 14px 14px -10px #A8A8A8; 
  box-shadow: 1px 14px 14px -10px #A8A8A8;
}

.presu textarea {
  border: 1px solid #045db5;
  -webkit-box-shadow: 1px 14px 14px -10px #A8A8A8; 
  -moz-box-shadow: 1px 14px 14px -10px #A8A8A8; 
  box-shadow: 1px 14px 14px -10px #A8A8A8; 
}

.presu button {
  color: #045db5;
  border-radius: 50px;
  padding: 8px 35px 10px 35px;
  border: 2px solid #fdc134;
  transition: all ease-in-out 0.3s;
  display: inline-block;
  background: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-top: 30px;
}

.presu button:hover {
  background: #fdc134;
  color: #fff;
  border: 2px solid #fdc134; 
}


/*--------------------------------------------------------------
# Contact SECTION
--------------------------------------------------------------*/

.mapheader {
  background: url("../img/small-bg.png") center center no-repeat;
  background-size: cover;  
  background-repeat: no repeat;
  position: relative; 	
  padding-bottom: 0px;  
  padding-top: 20vh;
}

#position-relative,
* {
  position: relative;
}

.contact-info .float-left {
  float: left;
}

.contact-info .image img {
  width: 375px;
  height: 130px;
  border-radius: 4px;
}

.contact-info .card,
.contact-info .card-helper,
.contact-info .card:before,
.contact-info .card:after { 
  width: 320px;
  height: 160px;
  box-shadow: -4px 4px 24px rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 8px;
  background: #d6e8ed;
}

.contact-info .card {
  transform: rotate(-40deg) rotateX(20deg) rotateY(30deg);
  -webkit-transform: rotate(-40deg) rotateX(20deg) rotateY(30deg);
  margin: 80px auto;
}

.contact-info .card-helper {
  position: absolute;
  top: 0;
  left: 0;
}

.contact-info .card:before,
.contact-info .card:after {
  content: "";
  position: absolute;
  left: 0;
}

.contact-info .card:before {
  transform: rotate(8deg);
  -webkit-transform: rotate(8deg);
  top: -20px;
  z-index: -1;
}

.contact-info .card:after {
  transform: rotate(16deg);
  -webkit-transform: rotate(16deg);
  top: -40px;
  z-index: -2;
}
  
.contact-info .card:hover {
  transform: none;
  -webkit-transform: none;
}

.contact-info .card:hover:before,
.contact-info .card:hover:after {
  top: 0;
}

.contact-info .card:hover:before {
  transform: rotate(-32deg) rotateX(20deg) rotateY(30deg);
  -webkit-transform: rotate(-24deg) rotateX(20deg) rotateY(30deg);
}

.contact-info .card:hover:after {
  transform: rotate(-32deg) rotateX(20deg) rotateY(30deg);
  -webkit-transform: rotate(-32deg) rotateX(20deg) rotateY(30deg);
}

.contact-info .card,
.contact-info .card:before,
.contact-info .card:after,
.contact-info .card:hover,
.contact-info .card:hover:before,
.contact-info .card:hover:after {
  transition: all 0.8s ease-in-out;
  -webkit-transition: all 0.8s ease-in-out;
}

.contact-info .card,
.contact-info .card:before,
.contact-info .card:after {
  transition-delay: 0.8s;
  -webkit-transition-delay: 0.8s;
}

.contact-info .info-box {
  color: #444444;
  text-align: center;
  -webkit-box-shadow: 5px 5px 15px 5px #CACACA; 
  -moz-box-shadow: 5px 5px 15px 5px #CACACA; 
  box-shadow: 5px 5px 15px 5px #CACACA;
  padding: 30px 0 32px 0;
  border-radius: 4px;
  transition: 0.4s;   
  border: 1px solid #fff;
}

.contact-info .info-box:hover {
  background: #d6e8ed;
  border: 1px solid #33b7ff;
}

.contact-info .info-box:hover i {
  color: #046bad;
  border: 2px dotted #046bad;   
}

.contact-info .info-box i {
  font-size: 32px;
  color: #db8918;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #db8918;
}

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

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

.contact .container {
  position: relative;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .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;
}

.contact label {
  font-size: 18px;
  font-weight: 600;
  color: #db8918;  
  margin-top: 20px;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 4px;
  -webkit-box-shadow: 4px 4px 5px 3px rgba(176,176,176,0.64); 
  -moz-box-shadow: 4px 4px 5px 3px rgba(176,176,176,0.64); 
  box-shadow: 4px 4px 5px 3px rgba(176,176,176,0.64);
  font-size: 14px;
  border: 1px solid #045db5;  
}

.contact .php-email-form input {
  height: 44px;
}

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

.contact .php-email-form button[type="submit"] {
  border: 0;
  padding: 10px 32px;
  color: #0880e8;
  transition: 0.4s;
  border-radius: 50px;
  border: 2px solid #0880e8;
  background: #fff;
  margin-bottom: 60px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #0880e8;
  color: #fff;
}

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

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


/*--------------------------------------------------------------
# Aviso Legal
--------------------------------------------------------------*/

.avisotitle {
  margin: 50px 0px 20px 0px;	
}

.aviso h4 {
  font-size: 18px;  
  font-weight: 700;
}

.aviso p {
  text-align: justify;	
}

.aviso ul li {
  margin-bottom: 20px;	
}

.policy h4 {
  font-size: 18px;  
  font-weight: 700;
}

.policy p {
  text-align: justify;	
}

.policy ul li {
  margin-bottom: 20px;	
}

.policy table {
  width: 100%;
}

.policy table tr th {
  background: #cccccc;
  font-weight: 600;
  font-size: 18px;
}

.policy table .gris {
  background: #cccccc;
  font-weight: 600;
  font-size: 16px;  
}

.policy table .azul {
  background: #bae6ff;
  font-weight: 600;
  font-size: 16px;  
}

.policy table tr td {
  border: 1px solid #444;
  width: auto;  
  padding: 10px 20px 10px 20px;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #ecf6fe;
  margin-top: 130px;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 600;
  color: #043c6d;
}

.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: #f8c255;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #05579e;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #05579e;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  margin: 3px;
  background: #f6b024;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #0880e8;
}

#footer .footer-top {
  background: #065fad;
  padding: 60px 0 30px 0;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #f6b024;
}

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

#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #f6b024;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #f6b024;
  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: #f6b024;
  font-size: 18px;
  line-height: 1;
}

#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: rgba(255, 255, 255, 0.75);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

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

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

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .copyright a {
  color: #db8918;
}

#footer .copyright a:hover {
  color: #fff;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #f6b024;
}
