:root {
  --blue: #004e9b;
  --blue-dark: #003472;
  --red: #e01c2f;
  --red-dark: #a61220;
  --light: #fafafa;
}
@font-face {
  font-family: "roboto";
  src: url("../webfonts/Montserrat-VariableFont_wght.ttf");
}
* {
  font-family: roboto;
}

.header-top {
  background-color: var(--blue);
}
.header {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  position: relative;
  padding-left: 20px;
  padding-right: 50px;
  border-bottom: 2px solid var(--red-dark);
}
.header::after {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0px;
  right: 0px;
  height: 2px;
  background-color: #00aaff;
}
.header-button {
  display: none;
  height: auto;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.header-button:hover {
  background-color: #00aaff;
}
.header-button:hover > i {
  color: #0a0a0b;
}
.header-button > i {
  color: #00aaff;
  font-size: 24px;
}
.header-content {
  display: flex;
  height: auto;
  align-items: center;
}
.header-list {
  display: flex;
  list-style: none;
  user-select: none;
  align-items: center;
}
.header-list > .header-link {
  margin: 0px 10px;
  cursor: pointer;
  color: var(--blue);
}
.header-link:hover {
  color: var(--c2);
}

@media (max-width: 768px) {
  .header {
    justify-content: space-between;
    align-items: center;
    z-index: 200;
  }
  .header-button {
    display: flex;
  }
  .header-brand {
  }
  .header-content {
    position: absolute;
    width: 100vw;
    background-color: var(--light);
    top: -400px;
    left: 0;
    right: 0;
    z-index: -1;
    transition: 0.7s ease;
  }
  .header-list {
    margin: 0px;
    padding: 0;
    margin-top: 20px;
    flex-direction: column;
    width: 100%;
    min-height: 200px;
    align-items: start;
  }
  .header-link {
    padding-top: 12px;
    width: auto;
  }
  .header-content.active {
    top: 80px;
  }
  .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 50vw;
    height: auto;
  }
}

/* SWIPER */
.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 30vw;
  height: 100%;
}
.swiper-wrapper{

}
.swiper-slide img {
  display: block;
  width: 100%;
}

.mySwiper2 {
  width: 100%;
  height: 100%;
  max-width: 900px;
}

.swiper-slide-2 {
  text-align: center;
  font-size: 18px;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 30px;
}

.title {
  color: var(--red-dark);
  font-weight: bolder;
  position: relative;
}

.text-red {
  color: var(--red);
}
.text-blue {
  color: var(--blue);
}
.text-blue-dark {
  color: var(--blue-dark);
}

.schedule-form {
  padding: 10px;
  border: 2px solid var(--blue-dark);
  border-radius: 10px;
  position: relative;
  background-color: #ffffffee;
  z-index: 2;
}

.schedule-form::after {
  content: "";
  top: 40px;
  bottom: 40px;
  left: 40px;
  right: 40px;
  position: absolute;
  border: 5px solid hsl(197, 100%, 50%);
  box-sizing: border-box;
  z-index: -1;
  transition: border-color 500ms;
  animation: glowAni 3s infinite ease-in-out alternate-reverse;
}

.schedule-form::after {
  content: "";
  top: -5px;
  bottom: -5px;
  left: -5px;
  right: -5px;
  position: absolute;
  border: 20px solid hsl(198, 247, 255, 0.6);
  box-sizing: border-box;
  z-index: -1;
  transition: border-color 500ms;
  filter: blur(12.5px);
}

@keyframes glowAni {
  from {
    border: 5px solid hsl(197, 50%, 50%);
  }

  to {
    border: 5px solid hsl(197, 150%, 50%);
  }
}

.background-2 {
  background-image: linear-gradient(#e01c2f20,#e01c2f20), url(../img/bg2.jpg);
  background-position: center;
  background-size: cover;
}

@font-face {
  font-family: josefin;
  src: url("JosefinSans-VariableFont_wght.ttf");
}

.text-josefin{
  font-family: josefin;
}
.testimonial {
  background-image: linear-gradient(#e01c2f20, #e01c2f20), url(../img/bg3.jpg);
  background-blend-mode: lighten;
  min-height: 600px;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  backdrop-filter: blur(12px);
}

.testimonial-text {
  position: relative;
  color: var(--blue-dark);
}

.testimonial-text::before {
  width: 30px;
  height: 100%;
  position: absolute;
  left: -20px;
  top: 0;
  content: "";
  background-color: var(--blue-dark);
}

.bg-blue-dark{
  background-color: var(--blue-dark);
}
