﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
:root {
  --default-font-family: "Poppins", Arial, sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  box-sizing: border-box;
  list-style: none;
}

a,
a:visited,
a:active,
a:link,
a:focus,
a:hover {
  text-decoration: none;
}

*:focus {
  outline: 0 !important;
}

body {
  font-size: 16px;
  font-family: var(--default-font-family);
  background-color: white;
  width: 100%;
}

img {
  height: auto;
}

/*content {
    padding: 0 15px;
    max-width: 1230px;

}*/
/*
[id]::before {
    content: '';
    display: block;
    height: 75px;
    margin-top: -75px;
    visibility: hidden;
}*/
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  border: 5px solid #f2f2f2;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #5643c1;
  border-radius: 10px;
}

/** Animasyonlar  ***************/
@keyframes banner {
  0% {
    margin-top: 0px;
  }
  50% {
    margin-top: 25px;
  }
  100% {
    margin-top: 0px;
  }
}
@keyframes banner__mobile {
  0% {
    margin-top: 0px;
  }
  50% {
    margin-top: 0px;
  }
  100% {
    margin-top: 0px;
  }
}
@keyframes features {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@media (max-width: 1000px) {
  content {
    padding-inline: 15px;
  }
}
hr {
  background-image: linear-gradient(to right, transparent, #dbdbdb, transparent);
  border: 0;
  height: 1px;
  margin: 22px 0;
  width: 100%;
}

header {
  display: flex;
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.1);
  z-index: 3;
  transition: transform 0.4s ease;
  justify-content: center;
  flex-direction: column;
}
header .top {
  width: 100%;
  height: 60px;
  position: relative;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
}
header .top content {
  width: 100%;
  max-width: 1230px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .top content .socialmedia {
  height: 19px;
  display: flex;
}
header .top content .socialmedia img {
  margin-left: 8px;
  margin-right: 8px;
}
header .top content .userbox2 {
  width: 160px;
  height: 80px;
  background-color: #4aa2ff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
  float: right;
}
header .top content .userbox2:hover {
  background-color: #febd5a;
}
header .top content .userbox2 span {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
}
header .top content .userbox2 a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
header .top content .userbox2 img {
  width: 35px;
  height: 35px;
  margin-right: 15px;
}
@media (min-width: 1000px) {
  header .top content .userbox2 {
    display: none;
  }
}

.bottom {
  height: 80px;
  width: 100%;
  position: relative;
  background-color: #fff;
}
.bottom content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}
.bottom content .logo {
  display: flex;
}
@media (max-width: 1000px) {
  .bottom content .logo {
    margin-top: 10px;
  }
}
.bottom content nav {
  height: 100%;
  width: max-content;
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  .bottom content nav {
    display: none;
  }
}
.bottom content nav a {
  align-items: center;
  display: flex;
  text-align: center;
  padding: 0 11.5px;
  text-decoration: none;
  color: #252525;
  font-family: Poppins, sans-serif;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.4s;
}
.bottom content nav a:hover {
  color: #4aa2ff;
}
.bottom content .userbox {
  width: 160px;
  height: 80px;
  background-color: #4aa2ff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}
.bottom content .userbox:hover {
  background-color: #febd5a;
}
.bottom content .userbox span {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
}
.bottom content .userbox a {
  text-decoration: none;
}
.bottom content .userbox img {
  width: 35px;
  height: 35px;
  margin-right: 15px;
}
.bottom .menuButton {
  display: none;
  position: relative;
  width: 37px;
  height: 37px;
  border: 2px solid #333;
  border-radius: 50%;
}
.bottom .menuButton span {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 60%;
  height: 2px;
  background-color: #333;
  transition: width 0.4s;
}
.bottom .menuButton span:first-child {
  top: 15px;
  width: 40%;
}
.bottom .menuButton span:last-child {
  bottom: 15px;
  width: 40%;
}
@media (max-width: 1000px) {
  .bottom .menuButton {
    display: block;
  }
}
.bottom .menuButtonActive span {
  width: 60% !important;
}

.mobileMenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 141px;
  right: 0;
  width: 100%;
  height: calc(100vh - 141px);
  background-color: #f2f2f2;
  transition: transform 0.4s;
  transform: translateX(100%);
}
.mobileMenu a {
  color: #333;
  font-size: 17px;
  font-weight: 600;
  margin-block: 8px;
  text-decoration: none;
}
.mobileMenu .callbox {
  position: relative;
  display: flex !important;
  margin-top: 50px;
  display: flex;
  width: 204px;
  height: 62px;
  border-radius: 31px;
  border: solid 1px #de2c27;
}
.mobileMenu .callbox img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-left: 24px;
  margin-top: 13px;
}
.mobileMenu .callbox p {
  width: 123px;
  height: 21px;
  color: #de2c27;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.mobileMenuActive {
  transform: translateX(0);
  touch-action: none;
}

@media (max-width: 1000px) {
  .callbox,
nav {
    display: none;
  }

  .callbox p {
    margin-top: 12px;
  }

  .userbox {
    display: none !important;
  }

  .userbox2 {
    display: block;
  }
}
.hide {
  transform: translateY(-60px);
}
.hide .mobileMenu {
  height: calc(100vh - 60px);
}

.banner {
  position: relative;
  width: 100%;
  margin-top: 130px;
}
.banner > * {
  width: 100%;
}
.banner img {
  width: 100%;
}

section.moreinfo {
  width: 100%;
  height: 134px;
  position: relative;
  background-color: #6b5acc;
  display: flex;
  justify-content: center;
}
section.moreinfo content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  padding: 0;
}
section.moreinfo content .left {
  display: flex;
  align-items: center;
}
section.moreinfo content .left img {
  margin-top: -82px;
  width: 81px;
  left: 0;
  position: absolute;
}
section.moreinfo content .left span {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  margin-left: 15px;
}
@media (max-width: 1350px) {
  section.moreinfo content .left img {
    display: none;
  }
}
section.moreinfo content .center {
  display: flex;
  align-items: center;
}
section.moreinfo content .center div {
  display: flex;
  width: 204px;
  height: 62px;
  border-radius: 31px;
  border: solid 1px #fff;
}
section.moreinfo content .center div img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-left: 24px;
  margin-top: 13px;
}
section.moreinfo content .center div a, section.moreinfo content .center div a:visited, section.moreinfo content .center div a:link, section.moreinfo content .center div a:active, section.moreinfo content .center div a:focus {
  text-decoration: none;
  width: 123px;
  height: 21px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  margin-left: 6px;
}
section.moreinfo content .center div a:hover {
  text-decoration: none;
}
section.moreinfo content .right {
  display: flex;
  align-items: center;
}
section.moreinfo content .right div {
  display: flex;
  width: 204px;
  height: 62px;
  border-radius: 31px;
  background-color: #de2c27;
}
section.moreinfo content .right div img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-left: 24px;
  margin-top: 13px;
}
section.moreinfo content .right div a, section.moreinfo content .right div a:visited, section.moreinfo content .right div a:link, section.moreinfo content .right div a:active, section.moreinfo content .right div a:focus {
  width: 123px;
  height: 21px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  margin-left: 6px;
  text-decoration: none;
}
section.moreinfo content .right div a:hover {
  text-decoration: none;
}
section.moreinfo content .right img.leaf {
  transform: rotate(180deg);
  margin-top: 135px;
  right: 0;
  position: absolute;
}
@media (max-width: 1350px) {
  section.moreinfo content .right img.leaf {
    display: none;
  }
}
@media (max-width: 700px) {
  section.moreinfo content .center {
    margin-block-end: 15px;
    margin-block-start: 15px;
  }
}
@media (max-width: 700px) {
  section.moreinfo content {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 700px) {
  section.moreinfo {
    height: auto;
    padding: 20px;
  }
}
section.flerpigeneral {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-inline: 15px;
}
section.flerpigeneral content .flerpigeneralheader {
  display: flex;
  font-size: 18px;
  font-weight: 500;
}
section.flerpigeneral content .flerpigeneralheader span {
  display: flex;
  margin: 10px;
  justify-content: center;
  align-items: center;
}
section.flerpigeneral content .flerpigeneral {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.flerpigeneral content .flerpigeneral .flerpiText {
  width: 49%;
  margin-bottom: 50px;
}
section.flerpigeneral content .flerpigeneral .flerpiText ul {
  font-weight: 400;
  font-size: 15px;
  margin-left: 15px;
  margin-top: 10px;
}
section.flerpigeneral content .flerpigeneral .flerpiText ul li {
  padding: 15px;
  list-style: disc;
}
section.flerpigeneral content .flerpigeneral .flerpigeneralboxes {
  display: flex;
  width: 50%;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 500;
}
section.flerpigeneral content .flerpigeneral .flerpigeneralboxes .flerpigeneralbox {
  width: 165px;
  height: 165px;
  border-radius: 0 34px 0 34px;
  background-color: #6b5acc;
  margin: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
}
section.flerpigeneral content .flerpigeneral .flerpigeneralboxes .flerpigeneralbox img {
  margin-bottom: 15px;
}
section.flerpigeneral content .flerpigeneral .flerpigeneralboxes .flerpigeneralboxblue {
  width: 165px;
  height: 165px;
  border-radius: 34px 0 34px 0;
  background-color: #4aa2ff;
  margin: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
}
section.flerpigeneral content .flerpigeneral .flerpigeneralboxes .flerpigeneralboxblue img {
  margin-bottom: 15px;
}
@media (max-width: 425px) {
  section.flerpigeneral content .flerpigeneral .flerpigeneralboxes .flerpigeneralbox,
section.flerpigeneral content .flerpigeneral .flerpigeneralboxes .flerpigeneralboxblue {
    width: 48%;
    margin-inline: 1%;
  }
}
@media (max-width: 1200px) {
  section.flerpigeneral content .flerpigeneral .flerpigeneralboxes {
    max-width: 585px;
    width: 100%;
  }
}
@media (max-width: 1200px) {
  section.flerpigeneral content .flerpigeneral {
    flex-direction: column;
  }
  section.flerpigeneral content .flerpigeneral .flerpiText {
    width: 100%;
  }
  section.flerpigeneral content .flerpigeneral .flerpigeneralboxes {
    margin-top: 10px;
  }
}

section.whyflerpi {
  background-color: #f8f8f8;
  width: 100%;
  display: flex;
}
section.whyflerpi content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-inline: 15px;
  margin-top: 40px;
}
section.whyflerpi content .whyflerpiheader {
  display: flex;
  font-size: 18px;
  font-weight: 500;
  margin-top: 24px;
}
section.whyflerpi content .whyflerpiheader span {
  display: flex;
  margin: 10px;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
}
section.whyflerpi content .whyflerpicontent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  position: relative;
}
section.whyflerpi content .whyflerpicontent .text {
  z-index: 2;
  width: 50%;
}
section.whyflerpi content .whyflerpicontent .text span {
  font-size: 15px;
  font-weight: 400;
}
section.whyflerpi content .whyflerpicontent .text ul {
  font-weight: 400;
  font-size: 14px;
  margin-top: 29px;
}
section.whyflerpi content .whyflerpicontent .text ul li {
  align-items: center;
  background: url(/img/whyflerpi/listarrow.svg) no-repeat 0 1.5px transparent;
  list-style-type: none;
  padding: 0 0 30px 45px;
}
section.whyflerpi content .whyflerpicontent .whyflerpiimage {
  margin-top: 50px;
}
@media (max-width: 1432px) {
  section.whyflerpi content .whyflerpicontent .whyflerpiimage {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    z-index: 1;
    opacity: 0.2;
  }
  section.whyflerpi content .whyflerpicontent .whyflerpiimage img {
    max-width: 100%;
  }
  section.whyflerpi content .whyflerpicontent .whyflerpiimage span {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  section.whyflerpi content .whyflerpicontent .text {
    width: 100%;
  }
}
@media (max-width: 1432px) {
  section.whyflerpi content .whyflerpicontent {
    display: block;
    min-height: 458px;
  }
}

section.subscribe {
  display: flex;
  background: #f8f8f8;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}
section.subscribe content .top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 22px;
  font-size: 18px;
  font-weight: 500;
}
section.subscribe content .top span {
  display: flex;
  margin: 10px;
  justify-content: center;
  align-items: center;
}
section.subscribe content .bottom {
  margin-top: 20px;
}
section.subscribe content .bottom span {
  font-size: 14px;
  font-weight: 400;
  height: 516px;
  width: 21px;
}
section.subscribe content form {
  display: flex;
  margin-top: 20px;
  margin-bottom: 15px;
}
section.subscribe content form .input1 {
  display: flex;
  font-size: 13px;
  font-weight: 400;
  height: 55px;
  max-width: 352px;
  width: 100%;
  border-radius: 8px 0 0 8px;
  background: #fff;
  border: none;
  padding-left: 55px;
  background-image: url(/img/subscribe/bulten/e-mail.svg);
  background-repeat: no-repeat;
  background-position: 27px 17px;
  font-family: Poppins, serif;
}
section.subscribe content form .input1 .focus {
  outline: 0 !important;
}
section.subscribe content form .input1 .placeholder {
  color: #7d7d7d;
  font-size: 13px;
  display: flex;
  font-family: Poppins, serif;
}
section.subscribe content form .input2 {
  font-size: 18px;
  font-weight: 500;
  height: 55px;
  width: 164px;
  display: flex;
  border-radius: 0 8px 8px 0;
  background: #6b5acc;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  cursor: pointer;
}

section.references {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-inline: 15px;
}
@media (max-width: 1000px) {
  section.references {
    margin-top: 0;
  }
}
section.references content {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.references content .title {
  display: flex;
  height: 38px;
  margin-top: 26px;
  font-size: 18px;
  font-weight: 500;
}
section.references content .title span {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  margin-left: 5px;
  height: 20px;
}
section.references content .swiper {
  width: 100%;
  height: 100%;
  margin-top: 22px;
}
section.references content .swiper .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
section.references content .swiper .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
section.references content .swiper .swiper-wrapper .swiper-slide .references-box {
  margin-top: 10px;
  width: 222px;
  height: 140px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 0 10px -1px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
}
section.references content .swiper-button-next {
  right: -30px !important;
  left: auto;
  top: 72% !important;
  color: #6b5acc !important;
}
section.references content .swiper-button-prev {
  left: -30px !important;
  right: auto;
  top: 72% !important;
  color: #6b5acc !important;
}
@media (max-width: 1270px) {
  section.references content .swiper-button-prev {
    left: 5px !important;
    right: auto;
  }
  section.references content .swiper-button-next {
    right: 5px !important;
    left: auto;
  }
}

/* content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        max-width: 1200px;
        width: 100%;
        flex-direction: row;

        .title {
            justify-content: center;
            display: flex;
            width: 100%;
            height: 37.75px;
            margin-top: 26px;
            font-size: 18px;
            font-weight: 500;

            span {
                display: flex;
                justify-content: center;
                margin-top: 8px;
                margin-left: 5px;
                height: 20px;
            }

            }
        }

        .rBoxes {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            width: 100%;


            .rBox {
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                flex-direction: column;
                padding: 25px;
                width: 19%;
                margin-top: 10px;
                height: 80%;
                border-radius: 15px;
                background: #fff;
                box-shadow: 0 0 10px -1px rgb(0 0 0 / 15%);
            }

            .img {
                width: 100%;
            }
        }

        @media (max-width: 1000px) {
            justify-content: center;
            gap: 0.5rem;

            .rBox {
                width: 48%;
            }
        }

        @media (max-width: 450px) {
            .rBox {
                width: 100%;
            }
        }*/
section.contact {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
section.contact .information {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 25px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1000px) {
  section.contact .information {
    padding: 15px;
    gap: 1rem;
  }
}
@media (max-width: 1200px) {
  section.contact .information {
    padding: 15px;
    gap: 1rem;
  }
}
section.contact .information .navigate {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.contact .information .navigate img {
  max-width: 100%;
  margin-right: 10px;
}
section.contact .information .navigate b {
  color: #4AA2FF;
}
section.contact .information .mail {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.contact .information .mail img {
  max-width: 100%;
  margin-right: 10px;
}
section.contact .information .mail b {
  color: #4AA2FF;
}
section.contact .information .phone {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #252525;
}
section.contact .information .phone img {
  max-width: 100%;
  margin-right: 10px;
}
section.contact .information .phone b {
  color: #4AA2FF;
}
section.contact content {
  width: 100%;
  display: flex;
  padding: 0;
  max-width: 100% !important;
  background-color: #F4F4F4;
}
@media (max-width: 1000px) {
  section.contact content {
    flex-wrap: wrap;
  }
}
section.contact content iframe {
  width: 50%;
  height: 500px;
  border: 0px;
}
@media (max-width: 1000px) {
  section.contact content iframe {
    width: 100%;
    margin-bottom: 15px;
  }
}
section.contact content .contactForm {
  width: 600px;
  padding-left: 45px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 1000px) {
  section.contact content .contactForm {
    width: 100%;
    padding-left: 0;
  }
}
section.contact content .contactForm h2 {
  font-weight: 300;
  font-size: 25.5753px;
  line-height: 38px;
  color: #252525;
}
section.contact content .contactForm h2 b {
  font-weight: 500;
}
section.contact content .contactForm p {
  font-weight: 400;
  font-size: 17.0502px;
  line-height: 26px;
  color: #252525;
}
section.contact content .contactForm form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 15px 0;
}
section.contact content .contactForm form .hataMesaji {
  padding: 10px 0;
  color: #e75555;
  font-size: 14px;
  width: 100%;
}
section.contact content .contactForm form input[type=text],
section.contact content .contactForm form input[type=tel],
section.contact content .contactForm form input[type=email] {
  width: 48%;
  background-color: #fff;
  border-radius: 10px;
  height: 50px;
  padding: 15px;
  font-weight: 400;
  font-size: 17px;
  color: #3E3E3E;
  font-family: var(--default-font-family);
  margin-bottom: 15px;
}
@media (max-width: 450px) {
  section.contact content .contactForm form input[type=text],
section.contact content .contactForm form input[type=tel],
section.contact content .contactForm form input[type=email] {
    width: 100%;
  }
}
section.contact content .contactForm form input[type=text]::placeholder, section.contact content .contactForm form input[type=text]:-ms-input-placeholder, section.contact content .contactForm form input[type=text]:-ms-input-placeholder,
section.contact content .contactForm form input[type=tel]::placeholder,
section.contact content .contactForm form input[type=tel]:-ms-input-placeholder,
section.contact content .contactForm form input[type=tel]:-ms-input-placeholder,
section.contact content .contactForm form input[type=email]::placeholder,
section.contact content .contactForm form input[type=email]:-ms-input-placeholder,
section.contact content .contactForm form input[type=email]:-ms-input-placeholder {
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  color: #3E3E3E;
  font-family: var(--default-font-family);
  opacity: 1;
  /* Firefox */
}
section.contact content .contactForm form textarea {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  height: 120px;
  font-family: var(--default-font-family);
  padding: 15px;
  font-weight: 400;
  font-size: 17px;
  color: #3E3E3E;
  margin-bottom: 15px;
}
section.contact content .contactForm form .accept {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.contact content .contactForm form .accept input[type=checkbox] {
  width: 22px;
  height: 22px;
  border: 1px solid #4AA2FF;
  border-radius: 4px;
  margin-right: 10px;
}
section.contact content .contactForm form .accept label {
  font-family: var(--default-font-family);
  font-size: 13px;
  font-weight: 400;
  color: #000000;
}
section.contact content .contactForm form .accept label a {
  font-family: var(--default-font-family);
  font-size: 13px;
  font-weight: 400;
  color: #000000;
  text-decoration: underline;
}
section.contact content .contactForm form .button {
  position: relative;
  width: 160px;
  height: 50px;
  overflow: hidden;
  background: #4AA2FF;
  display: flex;
  align-items: center;
  border-radius: 10px;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  margin-top: 15px;
  cursor: pointer;
  transition: all 0.4s;
  z-index: 1;
}
section.contact content .contactForm form .button::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #2F6196;
  transition: all 0.4s;
  z-index: -1;
}
section.contact content .contactForm form .button:hover::after {
  width: 100%;
}
section.contact content .contactForm form .button span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 50px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background: #2F6196;
  margin-right: 15px;
  z-index: 1;
}
section.contact content .contactForm form .button span img {
  height: auto;
}

@media (max-width: 1200px) {
  section.contact content .contactForm {
    width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}
@media (max-width: 1200px) and (max-width: 1000px) {
  section.contact content .contactForm {
    width: 100%;
  }
}
footer {
  margin-top: 53px;
  background: #252525;
  display: flex;
}
footer content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-inline: 15px;
}
footer content .inside {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 34px;
}
footer content .inside > * {
  margin-block: 10px;
}
footer content .inside .info {
  display: flex;
  flex-direction: column;
}
footer content .inside .info .logo {
  width: 80%;
  filter: brightness(100);
}
footer content .inside .info h1 {
  font-size: 25px;
  font-weight: 500;
  color: #fff;
}
footer content .inside .info .social {
  width: 149px;
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
footer content .inside .info .social .boxes {
  border: 1px solid #eee;
  width: 31px;
  height: 31px;
  position: relative;
  transition: 0.5s;
}
footer content .inside .info .social .boxes img {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
footer content .inside .info .social .boxes:hover {
  border-color: #4aa2ff;
  transform: translateY(-3px);
}
footer content .inside .fastmenu {
  display: flex;
  flex-direction: column;
}
footer content .inside .fastmenu h2 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}
footer content .inside .fastmenu a {
  display: flex;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
  flex-direction: row;
  text-decoration: none;
}
footer content .inside .fastmenu a:hover {
  color: #4aa2ff;
  transition: 0.5s;
}
footer content .inside .contact {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
footer content .inside .contact h3 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
footer content .inside .contact .content {
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
}
footer content .inside .contact .content a {
  display: flex;
  flex-direction: row;
  padding: 10px;
  align-items: center;
}
footer content .inside .contact .content a span {
  text-align: center;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  margin-left: 5px;
}
footer content .inside .contact .content a span b {
  justify-content: center;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 3.16px;
}
footer content .inside .ourapps {
  display: flex;
  justify-content: normal;
  flex-wrap: nowrap;
  flex-direction: column;
  margin-bottom: 50px;
}
footer content .inside .ourapps h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}
footer content .inside .ourapps .content {
  display: flex;
  margin-top: 5px;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 53px;
}
footer content .inside .ourapps .content a {
  display: block;
  margin-inline: 5px;
}
@media (max-width: 421px) {
  footer content .inside .ourapps-img a:last-child {
    margin-top: 10px;
  }
  footer content .inside .ourapps {
    margin-bottom: 80px;
  }
}
footer content .copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 20px;
  flex-direction: column;
  border-top: 1px solid #3f3f3f;
}
footer content .copyright img {
  margin-top: 53px;
}
footer content .copyright span {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffff;
  font-size: 14px;
}

@media only screen and (max-width: 500px) {
  footer content p span {
    display: none;
  }
  footer content p br {
    display: block;
  }
}
@keyframes rotateMenu {
  0% {
    transform: rotateX(-90deg);
  }
  70% {
    transform: rotateX(20deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
nav.leftmenu {
  /* display: flex;*/
  /* justify-content: space-between;*/
  flex-basis: 0;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-inline: 15px;
  user-select: none;
  cursor: pointer;
}
nav.leftmenu .sidebar {
  margin-top: 20px;
  width: 246px;
  background-color: #f2f2f2;
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
nav.leftmenu .sidebar a {
  border-bottom: 1px solid #e5e5e5;
  text-decoration: none;
  display: block;
  padding: 15px;
  color: #666;
}
nav.leftmenu .sidebar a:last-child {
  border: none;
}
nav.leftmenu .sidebar a:hover {
  color: #fff;
  background: #252525;
}
nav.leftmenu .sidebar .dropdownMain {
  border-bottom: 1px solid #e5e5e5;
  text-decoration: none;
  display: block;
  padding: 15px;
  color: #666;
  cursor: pointer;
  align-items: center;
}
nav.leftmenu .sidebar .dropdownMain img {
  width: 18px;
  margin-left: 4px;
  margin-bottom: -4px;
}
nav.leftmenu .sidebar .dropdownMain .dropdown {
  width: 100%;
  margin-left: 15px;
  display: none;
  margin-top: 5px;
  animation: rotateMenu 900ms ease-in-out forwards;
  transform-origin: top center;
}
nav.leftmenu .sidebar .dropdownMain .dropdown.active {
  display: block;
}
nav.leftmenu .sidebar .dropdownMain .dropdown a {
  font-size: 14px;
  justify-content: center;
  padding: 10px 0 10px 5px;
}
nav.leftmenu .sidebar .dropdownMain .dropdown a:hover {
  color: #fff;
  /* transition: .5s;*/
  background-color: #252525;
  border-radius: 10px;
}

@media (max-width: 1000px) {
  nav.leftmenu {
    display: none;
  }
}
section.breadcrumb {
  background-color: #f2f2f2;
  width: 100%;
  padding-block: 20px;
  margin-top: 140px;
  display: flex;
}
section.breadcrumb content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-inline: 15px;
}
section.breadcrumb content .breadcrumb {
  background-color: #f2f2f2;
  width: 100%;
  margin-top: 20px;
}
section.breadcrumb content .breadcrumb h1 {
  font-size: 18px;
  color: #252525;
  margin-bottom: 0;
}
section.breadcrumb content .breadcrumb span {
  color: #6c6c6c;
  font-weight: 500;
  font-size: 13px;
}
section.breadcrumb content .breadcrumb a {
  text-decoration: none;
  color: #6c6c6c;
}
section.breadcrumb content .breadcrumb a:hover {
  color: #4aa2ff;
  transition: 0.5s;
}

section.subpage {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
section.subpage content {
  max-width: 900px;
  top: -80px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  position: relative;
}
section.subpage content img {
  max-width: 100%;
}
section.subpage content p {
  color: #666;
  padding-inline: 26px;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
}
section.subpage content .pricetable {
  padding-inline: 26px;
}
section.subpage content .pricetable p {
  padding-inline: 0px;
}
section.subpage content .pricetable h1 {
  color: #252525;
  font-size: 22px;
  font-weight: 600;
}
section.subpage content .pricetable table {
  width: 100%;
}
section.subpage content .pricetable td {
  padding: 15px;
}
section.subpage content .pricetable table,
section.subpage content .pricetable tr {
  background: #f0f0f0;
  height: 50px;
  text-align: center;
}
section.subpage content .pricetable th {
  background: #252525;
  height: 50px;
  color: #fff;
}
section.subpage content .pricetable tr:nth-child(even) {
  background: #fff;
}
section.subpage content h1 {
  color: #252525;
  padding-inline: 26px;
  font-size: 22px;
  font-weight: 600;
  margin-top: 15px;
}
section.subpage content .timeline {
  position: relative;
  font-family: Poppins, sans-serif;
  height: 55vh;
  overflow-y: auto;
}
section.subpage content .timeline section {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  padding: 15px 0;
  margin: 0;
}
section.subpage content .timeline section .timelineYear {
  top: 0;
  position: sticky;
  font-weight: 500;
  text-align: center;
  border-radius: 5px;
  color: #08c;
  font-size: 17px;
  height: 25px;
  display: block;
}
section.subpage content .timeline section .timelineYear::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 57px;
  width: 8px;
  height: 8px;
  background-color: #08c;
  border-radius: 100%;
}
section.subpage content .timeline section .timelineText {
  display: block;
  color: #333;
  padding-right: 15px;
}
section.subpage content .timeline section .timelineText div {
  position: relative;
  margin-bottom: 5px;
  padding-left: 20px;
  letter-spacing: 0.1px;
  font-size: 15px;
  line-height: 27px;
}
section.subpage content .timeline section .timelineText div::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -1px;
  width: 4px;
  height: 4px;
  background-color: #08c;
  border-radius: 100%;
}
section.subpage content .timeline section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 60px;
  height: 100%;
  width: 2px;
  background-color: #ccc;
}
section.subpage content .timeline .timeline::-webkit-scrollbar {
  width: 3px;
}
section.subpage content .timeline .timeline::-webkit-scrollbar-track {
  background: #f1f1f1;
}
section.subpage content .timeline .timeline::-webkit-scrollbar-thumb {
  background: #888;
}
section.subpage content .timeline .timeline::-webkit-scrollbar-thumb:hover {
  background: #555;
}
section.subpage content .privacy {
  padding: 0 26px;
}
section.subpage content .privacy p {
  color: #666;
  padding-inline: 26px;
  font-size: 16px;
}
section.subpage content .privacy ul {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}
section.subpage content .privacy ul li {
  list-style: disc;
}
section.subpage content .productBoxes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 21px;
}
section.subpage content .productBoxes .productBox {
  width: 32.3%;
  margin: 0.5%;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
}
section.subpage content .productBoxes .productBox img {
  max-width: 100%;
  transition: all 0.4s;
}
section.subpage content .productBoxes .productBox:hover img {
  transform: scale(1.2);
}
section.subpage content .productBoxes .productBox .productText {
  text-align: center;
  padding: 25px;
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  color: #252525;
}
section.subpage content .contentUl {
  display: block;
  padding-inline-start: 40px;
}
section.subpage content .contentUl li {
  margin-top: 10px;
  list-style: disc;
}
section.subpage content .backPageBtn {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #666;
  z-index: 2;
  top: 23px;
  right: -50px;
  transition: all 0.4s;
  margin-top: 10px;
}
section.subpage content .backPageBtn img {
  max-width: 100%;
}
section.subpage content .backPageBtn:hover {
  background: #4aa2ff;
}
section.subpage content .cookie {
  padding: 0 26px;
}
section.subpage content .cookie h1 {
  padding-inline: 0px;
  font-weight: 600;
  margin-bottom: 10px;
}
section.subpage content .cookie h2 {
  padding-inline: 0px;
  font-size: 18px;
  font-weight: 500;
}
section.subpage content .cookie p {
  color: #666;
  font-size: 16px;
  font-weight: 400;
}
section.subpage content .cookie ul {
  color: #666;
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}
section.subpage content .cookie ul li {
  list-style: disc;
}
@media (max-width: 1000px) {
  section.subpage content .productBoxes {
    display: block;
  }
}
@media (max-width: 1000px) {
  section.subpage content {
    margin-top: 20px;
    top: 0;
  }
}
section.subpage .contact {
  position: relative;
  width: 100%;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border-radius: 20px;
  margin-top: 15px;
  background: #fff;
  padding: 15px;
}
section.subpage .contact h1 {
  color: #252525;
  font-size: 32px;
  font-weight: 600;
  padding: 15px 0;
}
section.subpage .contact .department {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
section.subpage .contact .department .content {
  display: flex;
  flex-direction: column;
  padding: 15px;
  width: 50%;
}
section.subpage .contact .department .content h2 {
  margin: 0;
  margin-bottom: 10px;
  font-size: 1.4em;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 27px;
}
section.subpage .contact .department .content p {
  font-size: 14px;
  color: #333;
}
section.subpage .contact .department .content a {
  display: flex;
  margin-bottom: 8px;
  align-items: center;
}
section.subpage .contact .department .content a:hover {
  color: #0088cf;
}
section.subpage .contact .department .content a img {
  width: 25px;
  height: 25px;
}
section.subpage .contact .department .content a span {
  margin-left: 5px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}
section.subpage .contact .department .content a span:hover {
  color: #0088cf;
}
section.subpage .contact .department .offices {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.subpage .contact .department .offices .content {
  width: 32%;
  flex-direction: column;
}
section.subpage .contact .department .offices .content img {
  width: 100%;
}
section.subpage .contact .department .offices .content h2 {
  margin: 0;
  margin-bottom: 10px;
  font-size: 1.4em;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 27px;
}
section.subpage .contact .department .offices .content a {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
section.subpage .contact .department .offices .content a img {
  width: 21px;
  height: 21px;
}
section.subpage .contact .department .offices .content a span {
  margin-left: 5px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}
section.subpage .contact .department .offices .content a span:hover {
  color: #0088cf;
}
section.subpage .contact .department iframe {
  margin-top: 10px;
  width: 100%;
  border: 0;
}
section.subpage .contact .department img {
  width: 50%;
  border-radius: 6px;
}
@media (max-width: 1000px) {
  section.subpage .contact .department .content, section.subpage .contact .department .offices, section.subpage .contact .department img {
    flex-direction: column;
    width: 100%;
  }
  section.subpage .contact .department .content .content, section.subpage .contact .department .offices .content, section.subpage .contact .department img .content {
    width: 100%;
  }
}

@media (max-width: 1000px) {
  section.subpage {
    justify-content: center;
  }
}
.cookie-popup {
  border-radius: 10px;
  width: 345px;
  position: fixed;
  z-index: 999999;
  background-color: rgba(79, 79, 79, 0.8);
  color: #fff;
  left: 10px;
  bottom: 10px;
  border-radius: 10px;
  padding: 15px;
}
.cookie-popup.accept {
  display: none;
}
.cookie-popup b {
  font-size: 14px;
  color: #fff;
}
.cookie-popup p {
  font-size: 12px;
  color: #fff;
  margin: 0px 0px 5px;
}
.cookie-popup a {
  color: skyblue;
}
.cookie-popup a:visited {
  color: skyblue;
  text-decoration: none;
}
.cookie-popup .action {
  flex: 1;
  text-align: right;
}
.cookie-popup .action button {
  display: inline-block;
  font-size: 12px;
  transition: 0.3s;
  color: #212529;
  cursor: pointer;
  font-weight: 700;
  background-color: #fff;
  float: left;
  border: 1px solid transparent;
  padding: 0.25rem 0.5rem;
  border-radius: 0.2rem;
  margin-top: 3px;
}
.cookie-popup .action button:hover {
  background-color: #333333;
  color: #fff;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Gitlab/web/flerpi.com/wwwroot/sass/content/_general.scss%22,%22file:///C:/Gitlab/web/flerpi.com/wwwroot/sass/content/header.scss%22,%22file:///C:/Gitlab/web/flerpi.com/wwwroot/sass/content/banner.scss%22,%22file:///C:/Gitlab/web/flerpi.com/wwwroot/sass/content/moreinfo.scss%22,%22file:///C:/Gitlab/web/flerpi.com/wwwroot/sass/content/flerpigeneral.scss%22,%22file:///C:/Gitlab/web/flerpi.com/wwwroot/sass/content/whyflerpi.scss%22,%22file:///C:/Gitlab/web/flerpi.com/wwwroot/sass/content/subscribe.scss%22,%22file:///C:/Gitlab/web/flerpi.com/wwwroot/sass/content/references.scss%22,%22file:///C:/Gitlab/web/flerpi.com/wwwroot/sass/content/contact.scss%22,%22file:///C:/Gitlab/web/flerpi.com/wwwroot/sass/content/footer.scss%22,%22file:///C:/Gitlab/web/flerpi.com/wwwroot/sass/content/leftmenu.scss%22,%22file:///C:/Gitlab/web/flerpi.com/wwwroot/sass/content/breadcrumb.scss%22,%22file:///C:/Gitlab/web/flerpi.com/wwwroot/sass/content/subpage.scss%22,%22file:///C:/Gitlab/web/flerpi.com/wwwroot/sass/content/popup.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAS;AAET;EACI;;;AAGJ;AAAA;AAAA;EAGI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;EAMI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;;;AAGJ;AAAA;AAAA;;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASA;AACA;EACI;;;AAGJ;AACA;EACI;EACA;;;AAGJ;AACA;EACI;EACA;;;AAKJ;AACA;EACI;IACI;;EAGJ;IACI;;EAGJ;IACI;;;AAIR;EACI;IACI;;EAGJ;IACI;;EAGJ;IACI;;;AAIR;EACI;IACI;;EAGJ;IACI;;EAGJ;IACI;;EAGJ;IACI;;EAGJ;IACI;;;AAKR;EACI;IACI;;;AAIR;EACI;EACA;EACA;EACA;EACA;;;ACvIH;EACG;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAIR;EACI;IACI;;;;AAOpB;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGA;EAJJ;IAKQ;;;AAIR;EACI;EACA;EACA;EACA;;AAEA;EANJ;IAOQ;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAIR;EACI;IACI;;;AAIR;EACI;;;AAIJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAKhB;EACI;EACA;;;AAGA;EACI;AAAA;IAEI;;;EAGJ;IACI;;;EAGJ;IACI;;;EAGJ;IACI;;;AAKZ;EACI;;AAEA;EACI;;;ACtSP;EACG;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;;ACVP;EACG;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;IACI;;;AAKZ;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAKZ;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;EACA;;AAGJ;EACI;IACI;;;AAKZ;EACI;IACG;IACA;;;AAKX;EACI;IACI;IACA;;;;AAIZ;EACI;IACG;IACA;;;ACpJN;EACG;EACA;EACA;EACA;EACA;;AAKI;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAKZ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;AAAA;IAEI;IACA;;;AAKZ;EACI;IACI;IACA;;;AAKZ;EACI;IACI;;EAEA;IACI;;EAGJ;IACI;;;;AClHnB;EACG;EACA;EACA;;AAGA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGA;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAKZ;EACI;;AAIJ;EACI;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACI;;EAGJ;IACI;;;AAKZ;EACI;IACI;;;AAKZ;EACI;IACI;IACA;;;;AClGf;EACG;EACA;EACA;EACA;EACA;;AAII;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EAEI;;AACA;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AClFf;EACG;EACA;EACA;EACA;EACA;;AAEA;EAPH;IAQO;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAMhB;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;IACI;IACA;;EAGJ;IACI;IACA;;;;AAKhB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AC7GC;EACG;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAVJ;IAWQ;IACA;;;AAGJ;EAfJ;IAgBQ;IACA;;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;;AAKZ;EACI;EACA;EACA;EACA;EACA;;AAGA;EARJ;IASQ;;;AAIJ;EACI;EACA;EACA;;AAEA;EALJ;IAMQ;IACA;;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAEA;EAPJ;IAQQ;IACA;;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;AAAA;AAAA;EAGI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAdJ;AAAA;AAAA;IAeQ;;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAGI;EACA;EACA;EACA;EACA;EACA;AAAY;;AAKpB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAIJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;;AAS5B;EAGY;IACI;IACA;IACA;IACA;;;AAEA;EANJ;IAOQ;;;ACvRnB;EACG;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAMhB;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAKZ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAKJ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAKA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAOpB;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAKZ;EACI;IACI;;EAGJ;IACI;;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAMhB;EAIgB;IACI;;EAGJ;IACI;;;ACvNnB;EACG;IACI;;EAGJ;IACI;;EAGJ;IACI;;;AAIR;AACG;AACA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;AACA;EACA;EACA;;;AAQxB;EACI;IACI;;;ACjGP;EACG;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;;ACxCf;EACG;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;AAAA;EAEI;EACA;EACA;;AAIJ;EACI;EACA;EACA;;AAIJ;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAIR;EACI;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAKZ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;;AAIJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAKZ;EACI;EACA;;AAEA;EACI;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAIR;EACI;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAIJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;;AAKZ;EACI;IACI;;;AAMZ;EACI;IACI;IACA;;;AAKR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGA;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAOhB;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAIA;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAOpB;EACI;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;IACI;IACA;;EAEA;IACI;;;;AASpB;EACI;IACI;;;ACjdX;EACG;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;;AACA;EACI;EACA;;AAIR;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA%22%7D */