main .section1 {
  height: 470px;
  position: relative;
}
main .section1 .fondsection {
  position: absolute;
  width: 100%;
  height: 100%;
}
main .section1 .fondsection img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
main .section1 .content {
  position: relative;
}
main .section1 .content .fil {
  padding-top: 20px;
  color: #163047;
  font-size: 14px;
  font-family: "Averta";
}
main .section1 .content .fil a {
  color: #163047;
  text-decoration: none;
}
main .section1 .content .fil a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  main .section1 .content .fil {
    font-size: 12px;
  }
}
main .section1 .content .center {
  padding-top: 132px;
  width: 100%;
  height: 100%;
}
main .section1 .content .center .title {
  max-width: 578px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main .section1 .content .center .title {
    max-width: 100%;
  }
}
main .section1 .content .center .text {
  color: #163047;
  font-family: "Averta";
  font-size: 16px;
  max-width: 590px;
  margin: 15px auto;
  margin-bottom: 42px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main .section1 .content .center .text {
    max-width: 100%;
    font-size: 14px;
  }
}
main .section1 .content .center .links {
  padding-bottom: 59px;
  width: 590px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  row-gap: 16px;
}
@media screen and (max-width: 768px) {
  main .section1 .content .center .links {
    width: 100%;
  }
}
main .section1 .content .center .links .link a {
  padding: 8px 20px;
  background-color: #E52233;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  display: block;
  font-family: "Averta";
  text-decoration: none;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  main .section1 .content .center .links .link a {
    font-size: 12px;
  }
}
main .section2 {
  margin-top: 50px;
  margin-bottom: 50px;
}
main .section2 .container {
  position: relative;
}
@media screen and (max-width: 1200px) {
  main .section2 .container {
    width: 95vw;
    margin: 0 auto;
  }
}
main .section2 .container h2 {
  color: #E52233;
  font-size: 20px;
  font-weight: 600;
}
main .section2 .container .faq-search {
  margin-top: 15px;
}
main .section2 .container .faq-search-container {
  display: flex;
  align-items: center;
  position: relative;
}
main .section2 .container #faq-search-input {
  width: 100%;
  font-family: "Averta";
  border: 2px solid #163047;
  border-radius: 19px;
  font-size: 14px;
  padding: 8px 25px 8px 10px;
  font-weight: 600;
  color: #163047 !important;
  margin-right: 5px;
}
main .section2 .container #faq-search-button {
  border: none;
  cursor: pointer;
  background-color: transparent;
  padding: 0 10px;
  display: flex;
  align-items: center;
  height: 100%;
  position: absolute;
  right: 10px;
}
main .section2 .container #faq-clear-button {
  padding: 8px 20px;
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  background-color: #163047;
  margin-top: 20px;
  display: none;
}
main .section3 {
  margin-bottom: 100px;
}
main .section3 .container {
  display: flex;
  gap: 107px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  main .section3 .container {
    width: 95vw;
    margin: 0 auto;
  }
}
main .section3 .container .faq-categories {
  min-width: 285px;
  width: 285px;
  text-align: center;
  background-color: #EADFCD;
  border-radius: 15px;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  main .section3 .container .faq-categories {
    width: 95vw;
    margin: 0 auto;
  }
}
main .section3 .container .faq-categories ul {
  list-style: none;
  padding-top: 15px;
  padding-bottom: 15px;
}
main .section3 .container .faq-categories ul li {
  font-family: "Averta";
  text-transform: uppercase;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
}
main .section3 .container .faq-categories ul li.active {
  font-weight: 600;
  text-decoration: underline;
}
main .section3 .container .faq-categories ul li:hover {
  text-decoration: underline;
}
main .section3 .container .faq {
  width: 100%;
}
@media screen and (max-width: 768px) {
  main .section3 .container .faq {
    width: 95vw;
    margin: 0 auto;
  }
}
main .section3 .container .faq .faq-item {
  margin-bottom: 30px;
}
main .section3 .container .faq .faq-item .faq-title {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
  font-size: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #163047;
  font-weight: 800;
}
main .section3 .container .faq .faq-item .faq-title.active {
  color: #E52233;
  border-bottom-color: #E52233;
}
main .section3 .container .faq .faq-item .faq-title svg {
  transition: transform 0.3s ease;
}
main .section3 .container .faq .faq-item .faq-title svg path {
  transition: all 0.3s ease;
}
main .section3 .container .faq .faq-item .faq-title.active svg {
  transform: rotate(90deg);
}
main .section3 .container .faq .faq-item .faq-title.active svg path {
  stroke: #E52233;
}
main .section3 .container .faq .faq-item .faq-content {
  padding: 30px 10px 10px;
  display: none;
}
main .section3 .container .faq .faq-item .faq-content.active {
  display: block;
}
main .section3 .container .faq .faq-item .faq-content p {
  font-size: 14px;
  line-height: 22px;
}
main .section3 .container .faq .faq-item .faq-content a {
  color: #163047;
  font-weight: 600;
  text-decoration: underline;
}
main .section3 .container .faq .faq-item .faq-content h3 {
  color: #163047;
  text-transform: unset;
  font-size: 18px;
  margin-top: 20px;
}
main .section3 .container .faq .faq-item .faq-content ul {
  line-height: 22px;
  margin-bottom: 20px;
  padding-left: 40px;
}
main .section3 .container .faq .faq-item .faq-content .faq-content-big-link {
  margin: 30px 0 0 auto;
  width: fit-content;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 14px;
  border: 2px solid #E52233;
  border-radius: 17px;
  font-size: 14px;
  font-weight: 600;
  color: #E52233;
}
main .section3 .container .faq .faq-item .faq-content .faq-content-big-link svg path {
  stroke: #E52233;
}
main .section3 .container .faq .faq-item .faq-content .faq-content-big-link:hover {
  background-color: #E52233;
  color: white;
}
main .section3 .container .faq .faq-item .faq-content .faq-content-big-link:hover svg path {
  stroke: white;
}
