.sub .navbar {
  background: black;
}

.sub header .swiper-slide img {
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.sub h1 {
  margin-top: 0;
}

.sub main {
  padding-top: 130px;
  padding-bottom: var(--sectionPadding);
}

.sub .hero {
  position: relative;
}

.sub .hero::before {
  content: "";
  background: var(--bgLight);
  height: 130px;
  width: 100%;
  position: absolute;
  top: -130px;
  left: 0px;
}

.sub .intro {
  padding-top: var(--sectionPadding);
  padding-bottom: 0;
}

.sub .hero .intro {
  padding-top: var(--sectionPadding);
  padding-bottom: var(--sectionPadding);
  z-index: 2;
}

.miniatura {
  object-fit: contain;
  max-height: 100%;
  max-width: 50%;
  object-position: left bottom;
  bottom: 0px;
  left: 0px;
  position: absolute;
  mix-blend-mode: darken;
}

.slide-image img {
  max-width: 100%;
}

.know-more {
  position: relative;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
}

.know-more .text {
	height: 100%;
	display: flex;
	text-align: right;
	align-items: center;
	justify-content: end;
}

.know-more img {
  max-height: 100%;
  width: auto;
  transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.know-more:hover img {
	transform: scale(1.1);
}

aside .nav {
  margin: 0;
  padding: 0;
  width: 100%;
}

aside .nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

aside .nav a {
  display: block;
  color: var(--titleColor);
  box-sizing: border-box;
  width: 100%;
  line-height: 1.3;
  padding: 10px 25px;
  border-left: 2px solid #e0e2e6;
  transition: all 0.2s;
}

aside .nav a:hover,
aside .nav a.active {
  border-left-color: var(--primary);
}

aside .nav a:hover {
  padding-left: 30px;
  padding-right: 20px;
}

aside .nav a.active {
  color: var(--primary);
}

.shadow {
  box-shadow: 30px 30px 100px #0000001c;
}

.gallery a {
  overflow: hidden;
}

.gallery img {
  transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.gallery a:hover img {
  transform: scale(1.1);
}

.downloads a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  box-sizing: border-box;
  padding: 20px 30px;
  text-decoration: none;
  color: var(--textColor);
  transition: all var(--fastSpeed);
  box-shadow: 0 0 20px hsla(0, 0%, 0%, 0.05);
}

.downloads a:hover {
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -5px hsla(0, 0%, 0%, 0.15);
}

.downloads a img:not(.download-icon) {
  height: 52px;
}

.downloads .text {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 30px;
}

form {
  width: 100%;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

label {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 1.125rem;
}

label p {
  margin: 0;
}

input,
select,
textarea {
  box-sizing: border-box;
  padding: 0.8rem 1rem;
  border: 2px solid var(--borderColor);
}

textarea {
  height: 15.8rem;
}

.ok {
  border-color: #e2e2e2;
}

.error {
  border-color: red;
}

.error-msg {
  color: red;
  font-size: 1rem;
  margin-top: 5px;
}

.star {
  color: red;
}

#alert {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0.5rem 1rem;
  color: white;
  font-weight: bold;
}

#alert.success {
  background-color: rgb(0, 133, 22);
}

#alert.danger {
  background-color: rgb(165, 0, 0);
}

@media screen and (max-width: 640px) {
  .sub header .swiper-slide img {
    height: 250px;
  }

  #main table {
    display: block;
    overflow-x: hidden;
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  :root {
    --sectionPadding: 60px;
  }
  .sub header .swiper-slide img {
    height: 200px;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .download-icon {
    display: none;
  }

  .downloads a img:not(.download-icon) {
    height: 32px;
  }

  .downloads .text {
    margin-left: 15px;
  }

  .downloads a {
    padding: 10px 15px;
  }

  .sub h1 {
    font-size: var(--h3);
  }
  .sub h2 {
    font-size: var(--h4);
  }
  .sub h3 {
    font-size: var(--h5);
  }
  .sub h4 {
    font-size: var(--h6);
  }
}
