/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base */
body {
  font-family: Calibri, Arial, sans-serif;
  color: #333;
  background-color: #eee;
}

/* Containers */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.right {
  text-align: right;
}

/* Pre-header */
.pre-header {
  background: #f2f2f2;
  font-size: 14px;
}

.pre-header a {
  margin-left: 15px;
  text-decoration: none;
  color: #666;
}

.pre-header a:hover {
  color: #000;
}

/* Header */
.main-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.site-title {
  font-size: 26px;
  font-weight: bold;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
/* Branding (logo + title) */
.branding {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 50px;     /* controls displayed size */
  width: auto;      /* keeps proportions */
  margin-right: 12px;
}


/* Menu */
.main-menu {
  list-style: none;
  display: flex;
}

.main-menu li {
  margin-left: 25px;
}

.main-menu a {
  text-decoration: none;
  color: #555;
  position: relative;
  padding-bottom: 5px;
}

.main-menu a:hover {
  color: #000;
}

.main-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #999;
  left: 0;
  bottom: 0;
  transition: width 0.3s;
}

.main-menu a:hover::after {
  width: 100%;
}

/* Page background */
.page-bg {
  background: url("images/sgbg01.png") center top;
  background-size: cover;
  padding: 40px 0;
}

/* Content */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
}

.content-box {
  background: #fff;
  padding: 30px;
  margin-top: 20px;
}

.justify {
  text-align: justify;
}

/* Slider */
.slider {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 360px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s;
}

.slide.active {
  opacity: 1;
}

/* Columns */
.two-columns {
  display: flex;
  gap: 30px;
}

.three-columns {
  display: flex;
  gap: 30px;
}

.column {
  flex: 1;
}

/* Footer */
.footer {
  background: #f2f2f2;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #666;
}
/* Page title header (non-home pages) */
.page-title {
  background: #fff;
  padding: 25px 30px;
  margin-bottom: 20px;
}

.page-title h1 {
  text-align: center;
  font-size: 28px;
  font-weight: normal;
  color: #444;
}
/* Body text */
.body-text {
  font-size: 17px;
  line-height: 1.7;
  text-align: justify;
  color: #333;
}
/* Aviso Legal */
.aviso-text {
  font-size: 11px;
  line-height: 1.2;
  text-align: justify;
  color: #333;
}
/* Social icons */
.social-icons a {
  display: inline-block;
  margin-left: 12px;
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: #999;
  transition: fill 0.2s;
}

.social-icons a:hover svg {
  fill: #555;
}
/* Image with caption */
.image-block {
  margin: 20px 0;
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
}

.image-block figcaption {
  font-size: 14px;
  color: #777;
  margin-top: 6px;
  text-align: center;
}
.align-left {
  float: left;
  width: 80%;
  margin: 0 25px 15px 0;
}

.align-right {
  float: right;
  width: 80%;
  margin: 0 0 15px 25px;
}
.align-center {
  float: center;
  width: 40%;
  margin: 0 0 15px 25px;
}
/* FAQ styling */
.faq-question {
  margin-top: 20px;
  margin-bottom: 5px;
}

.faq-answer {
  margin-bottom: 15px;
  line-height: 1.7;
}
/* Base image block: floated left with text wrapping */
.image-block.align-left {
  float: left;
  margin: 0 1.5rem 1rem 0;
}

/* Default */
.image-block {
  width: 50%;
}

.image-block img {
  width: 100%;
  height: auto;
}

/* Size variants */
.image-block.image-small {
  width: 35%;
}

.image-block.image-medium {
  width: 50%;
}

.image-block.image-large {
  width: 70%;
}

.image-block.image-xlarge {
  width: 85%;
}
div.email > span:nth-child(2) {
	display: none;
}