@font-face {
  font-family: Karla;
  src: url("./../fonts/Karla-Regular.ttf"); }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  height: 100%;
  width: 100%;
  font-family: 'Karla', sans-serif; }

ul {
  list-style: none; }

a {
  text-decoration: none;
  color: initial; }

p {
  line-height: 25px;
  font-size: 15px; }

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none; }

header {
  border-bottom: 1px solid #e0e0e0;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 5;
  background: white;
  padding: 0 20px; }
  header .inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px; }
  header #logo {
    margin: 0 30px; }
    header #logo img {
      width: 100px;
      z-index: 10;
      margin-top: 5px; }
  header #nav {
    display: flex; }
    header #nav li {
      margin: 0 20px;
      font-weight: 500; }
      header #nav li.active {
        font-weight: 500; }
    @media (max-width: 992px) {
      header #nav > a {
        display: none; } }
    header #nav a {
      position: relative;
      color: inherit;
      text-decoration: none;
      padding: 10px 0; }
      header #nav a:after {
        content: "";
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 1px;
        background-color: #c10230;
        transition: all .2s ease-out; }
      @media (max-width: 992px) {
        header #nav a {
          font-size: 12pt; } }
      header #nav a.active {
        color: #c10230;
        font-weight: 700; }
        @media (max-width: 992px) {
          header #nav a.active {
            color: white; }
            header #nav a.active:after {
              display: none; } }
        header #nav a.active:after {
          width: calc(100% - 2em); }
      header #nav a:hover:after {
        color: black;
        width: calc(100% - 2em); }

main {
  margin-top: 60px; }

section {
  padding: 70px 20px; }

.container {
  max-width: 1400px;
  margin: auto; }

#portadas {
  background: #c10230;
  overflow: hidden;
  max-height: 60vh;
  min-height: 60vh;
  padding: 0; }
  #portadas img {
    height: 100%;
    transform: translateY(-25%); }
    @media (max-width: 992px) {
      #portadas img {
        width: 100%; } }
  #portadas > .swiper-container {
    opacity: 0.9; }
  @media (max-width: 992px) {
    #portadas {
      min-height: auto; } }

#bar {
  background: #c10230;
  height: 70px; }

#nosotros .inner {
  display: flex;
  flex-direction: column; }

#nosotros .up {
  margin-bottom: 20px; }
  #nosotros .up .logo {
    text-align: center; }
    #nosotros .up .logo img {
      max-width: 280px;
      margin-bottom: 20px; }

#nosotros .down {
  display: flex;
  gap: 20px;
  margin-bottom: 30px; }
  #nosotros .down .col {
    flex: 1; }
  @media (max-width: 991px) {
    #nosotros .down {
      flex-direction: column; } }

#nosotros h2 {
  text-align: center;
  margin-bottom: 20px; }

#galeria {
  background: #c10230;
  padding-left: 0;
  padding-right: 0; }
  #galeria .inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; }
    #galeria .inner .item {
      width: 100%;
      overflow: hidden;
      aspect-ratio: 1.4; }
    #galeria .inner img {
      width: 100%;
      object-fit: cover;
      transition: all 0.5s; }
      #galeria .inner img:hover {
        transform: scale(1.1); }
    @media (max-width: 991px) {
      #galeria .inner {
        grid-template-columns: 1fr; } }

#servicios {
  min-height: 70vh; }
  #servicios .inner {
    display: flex;
    flex-direction: row;
    gap: 20px; }
    @media (max-width: 992px) {
      #servicios .inner {
        flex-direction: column; } }
  #servicios ul {
    list-style: initial; }
    @media (max-width: 992px) {
      #servicios ul {
        margin-left: 40px; } }
  #servicios h2 {
    margin-bottom: 30px; }

footer {
  padding: 70px 0;
  border-top: 1px solid #c8c8c8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #c2002f;
  color: white;
  min-height: 30vh; }
  footer img {
    max-width: 150px;
    margin-bottom: 20px; }
  footer p {
    font-size: 9pt;
    line-height: 20px; }

.swiper-pagination-bullet-active {
  background: white !important; }
