/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primario: #742226;
  --primario-claro: #1D6569;
  --primario-oscuro: #ffffff;
  --secundario: #000000;
  --whatsapp: #00cd25;
  --whatsapp-claro: #00ef54;
}

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

a {
  color: #212121;
  text-decoration: none;
}

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

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


/*--------------------------------------------------------------

/*--------------------------------------------------------------
# Botón whatsapp
--------------------------------------------------------------*/
.whatsapp {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 90px;
  z-index: 996;
  background: var(--whatsapp);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: all 0.4s;
  box-shadow: 3px 3px 6px 0px #0000004a;
}

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

.whatsapp:hover {
  background: var(--whatsapp-claro);
  color: #fff;
  box-shadow: 3px 3px 6px 0px #0000006a;
}

.whatsapp.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Desactiva retardo AOS en mobil
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  top: 20px;
}

#header .header-container {
  background: #fff;
}

#header.header-scrolled {
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  top: 0;
}

#header .logo {
  overflow: hidden;
  padding: 16px 30px 12px 30px;
  background: #ffffff;
}

#header .logo h1 {
  font-size: 26px;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #000;
  text-decoration: none;
}

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

@media (max-width: 992px) {
  #header {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    top: 0;
    background: #742226;
  }

  #header.header-scrolled,
  #header .header-container {
    background: #742226;
  }

  #header .logo {
    padding-left: 0;
  
  }

  #header .logo h1 {
    font-size: 24px;
    padding-left: 20px;
  }
}

/*--------------------------------------------------------------
# Menú de navegación
--------------------------------------------------------------*/
/**
* 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,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px 10px 15px;
  color: #36343a;
  transition: 0.3s;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  white-space: nowrap;
  transition: 0.3s;
}

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

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

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #742226;
  padding: 10px 25px;
  margin-left: 30px;
  margin-right: 15px;
  border-radius: 50px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #742226;
}

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

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  font-weight: 500;
}

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

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

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

@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(29, 28, 31, 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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

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

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  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: #1d1d1d;
}

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

/*--------------------------------------------------------------
# Inicio
--------------------------------------------------------------*/
#inicio {
  width: 100%;
  height: 100vh;
  background: url("../img/fondo.jpg") center center;
  background-size: cover;
  position: relative;
}

#inicio .container {
  padding-top: 60px;
}

#inicio:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#inicio img.logo {
  height: 219px;
  margin-bottom: 10px;
  position: relative;
  margin-bottom: 5px;
}

#inicio h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  text-shadow: 2px 2px 3px #000000;
}

#inicio h2 {
  color: #eee;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 2px 2px 3px #000000;
}

#inicio h3 {
  color: #eee;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px #000000;
}
#inicio .btn-get-started {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  padding-left: 14px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  box-shadow: 2px 2px 3px 0px #000000;
}

#inicio .btn-get-started img {
  margin-right: 10px;
}

#inicio .btn-get-started span.whats-icon {
  background-image: url("../img/whats-32-cir.png");
  width: 32px;
  height: 32px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  transition: 0.5s;
}

#inicio .btn-get-started:hover {
  background: #1a7074;
  border: 2px solid #1a7074;
}

#inicio .btn-get-started:hover span.whats-icon {
  background-image: url("../img/whats-32-cir-blanco.png");
}

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

@media (max-width: 768px) {
  #inicio {
    height: 100vh;
  }
  #inicio img.logo {
    width: 500px;
    height: auto;
  }
  #inicio .container {
    padding-top: 60px;
  }

  #inicio h1 {
    font-size: 42px;
    line-height: 36px;
  }
}

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

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #742226;
  bottom: 0;
  left: 0;
}

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


/*--------------------------------------------------------------
# Quienes
--------------------------------------------------------------*/
.quienes .content h2 {
  font-weight: 700;
  font-size: 48px;
  color: #861117;
  line-height: 60px;
  margin-bottom: 20px;
  margin-top: 60px;    
  text-transform: uppercase;
}

.quienes .content h3 {
  font-weight: 600;
  line-height: 32px;
  font-size: 24px;
}

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

.quienes .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.quienes .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #00a8f1;
}

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

/*--------------------------------------------------------------

/*--------------------------------------------------------------
# Servicios 1
--------------------------------------------------------------*/
#servicios-1 {
  background: linear-gradient(rgba(2, 2, 2, 0.25), rgba(0, 0, 0, 0.25)), url("../img/video_background.jpg") scroll center top; 
  background-size: 100% auto;
  padding: 50px 0;
}

#audio {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/portada_web.jpg") scroll center top; 
  background-size: 100% auto;
  padding: 100px 0;
}

#fotografia {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/portada_web.jpg") scroll center top; 
  background-size: 100% auto;
  padding: 100px 0;
}

.servicios-1 h1.titulo, .servicios-1 h1 {
  font-family: "Oswald", sans-serif;
  letter-spacing: -3px;
  color: #CD722E;
  font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
}

.servicios-1 h1 {
  padding-bottom: 0px;
}

.servicios-1 h1.titulo::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 3px;
  background-color: var(--primario);
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.servicios-1 h2.titulo {
  font-family: "Oswald", sans-serif;
  letter-spacing: -3px;
  color: #fff;
  font-weight: 700;
  font-size: 38px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
}

.servicios-1 h2.titulo::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 3px;
  background-color: var(--primario);
  bottom: 0px;
  left: 0px;
}

#audio h2 {
  text-align: left;
}

.servicios-1 p {
  color: #fff;
  padding: 0 10vw;
  margin-bottom: 50px;
}

.servicios-1 .polaroid {
  text-align: center;
  padding: 0px;
  background: #000;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s !important;
  margin-bottom: 15px;
}

.servicios-1 .polaroid img {
  width: 100%;
}

.servicios-1 .polaroid h4 {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin: 0px;
  padding: 15px 0px;
}

.servicios-1 .polaroid:hover {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  #servicios-1 #audio {
    background-size: auto 100%;
    background-position: center top;
  }

 
}
/*--------------------------------------------------------------
# Diseño
--------------------------------------------------------------*/
#diseno {
  background: linear-gradient(rgba(2, 2, 2, 0.25), rgba(0, 0, 0, 0.25)), url("../img/diseno_fondo.jpg") scroll center top;
  background-size: 100% auto;
  padding: 60px 0;
}

.servicio-3 .content {
  padding: 30px;
  border-radius: 4px;
  color: #fff;
}

.servicio-3 .content logo {
  text-align: center;
}

.servicio-3 .content img {
  width: 60%;
  margin: 0px auto;
  display: block;
}
.servicio-3 .content ul {
  margin: 30px 0px 10px 0px;
  font-weight: 700;
  font-size: 24px;
  text-shadow: 2px 2px 3px #000;
}

.servicio-3 .fotos .foto {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
  padding: 0px;
  width: 100%;
  transition: 0.3s;
}

.servicio-3 .fotos .foto img {
  width: 100%;
  border-radius: 10px 10px 0px 0px;
}

.servicio-3 .fotos .foto h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 30px 0px 30px 0px;
  padding: 0px 10px 0px 10px;
}

.servicio-3 .fotos .foto:hover {
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  #diseno {
    background-size: auto 100%;
    background-position: 70% top;
  }

  .servicio-3 .content ul {
    text-align: center;
    list-style: none;
  }
}

/*--------------------------------------------------------------
# Contacto
--------------------------------------------------------------*/
.contacto .info {
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#contacto{

  background: #2F2D2E;
}

.contacto .info i {
  font-size: 16px;
  color: #fff;
  /* float: left;*/
  width: 34px;
  height: 34px;
  background: #861117;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 10px;
  vertical-align: middle;
}

.contacto .info h4 {
  padding: 0px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #36343a;
}

.contacto p {
  padding: 0px 0px 0px 44px;
  margin-bottom: 0;
  font-size: 14px;
  color: #fff;
}

.contacto h2 {
  padding: 0px;
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.contacto .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

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

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

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

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

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

.contacto .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #36c6ff;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

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

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

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

.contacto .php-email-form button[type=submit] {
  background: #742226;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contacto .php-email-form button[type=submit]:hover {
  background: #742226;
}

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

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .contacto .info h4 {
    margin-left: -24px;
  }
  .contacto .info i {
    width: 24px;
  }
  .contacto .info p {
    padding: 0px 0px 0px 10px;
  }
}

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

.breadcrumbs h2 {
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 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: #4f4c55;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #f1f0f2;
}

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

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

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

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

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  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: #742226;
  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: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #742226;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

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

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

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #00a8f1;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #00664b;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .container {
  margin-right: 100px;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #742226;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

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