body {
  overflow-x: hidden;
}

.aboutSite {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  margin: 0 0 32px;
  width: 100%;
}

.aboutSiteLeft {
  position: absolute;
  width: 12.07%;
  left: 0;
  height: 100%;
}

.aboutSiteMiddle {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  z-index: 1;
  background-color: var(--BG5);
  padding: 24px 0;
  width: 78%;
}

.aboutSite .svgPolygon {
  fill: var(--BG5);
}

.aboutSiteRight {
  position: absolute;
  right: 0;
  height: 100%;
  width: 12.07%;
}

.svgPolygon {
  width: 100%;
}

.text {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-left: 32px;
}

.textTitle {
  padding-bottom: 8px;
  margin: 0 11%;
}

.textH {
  padding-top: 12px;
  padding-bottom: 4px;
}

.textItem {
  text-align: justify;
}

.textRows {
  display: flex;
  align-items: center;
  gap: 12px;
}

.textRow {
  display: flex;
  align-items: center;
}


.textListI {
  display: flex;
  align-items: center;
  width: 32px;
}

.listI.red {
  color: rgb(218, 71, 71);
}

.listI.dred {
  color: rgb(186, 59, 59);
}

.listI.green {
  color: rgb(3 175 14);
  ;
}

.listI.dgreen {
  color: #107910;
}




.about {
  padding-top: 0;
}

.aboutNavigation {
  display: flex;
  flex-direction: column;
  width: 28%;
  border-right: 3px solid var(--colorBlue2)
}

.aboutNavigationInner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 auto 0;
  padding: 0 0 24px 0;
  padding-right: 48px;
}

.aboutNav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 12px 2%;
  width: 100%;
  margin: 6px 0 0;
  height: 48px;
  cursor: pointer;
  transition: none;
}

.aboutNavCon {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.aboutNavMiddle {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  z-index: 1;
  padding: 8px 18%;
  width: 100%;
  height: 100%;
}

.aboutMiddleP {
  font-size: 24px;
  font-weight: 600;
}


.about {
  display: flex;
  justify-content: space-between;
}








.navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  margin-bottom: 2%;
}

.navContent {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 40px;
}

.navContentCon {
  height: 100%;
}

.navMiddle {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  z-index: 1;
  padding: 8px 6%;
  width: 100%;
  height: 100%;
}

.navMiddleP {
  font-size: 18px;
  font-weight: 400;
}

.navContent.active .navContentSvg {
  fill: var(--colorBlue1);
}

.navContent:hover .navContentSvg {
  fill: var(--BGblur);
}

.active .navMiddleP {
  font-weight: 800;
}

.navContentSvg {
  width: 100%;
  height: 100%;
}


.contactForm {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contactFormDiv {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 32%;
}

.contactFormDiv:nth-child(4) {
  width: 100%;
}

.contactFormLabel {
  font-size: 14px;
  padding-bottom: 2px;
}

.input {
  padding: 12px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 18px;
  background: var(--BG6);
  border: none;
}

.contactFormLabel.red {
  color: var(--colorAlert);
}

.textarea {
  width: 100%;
  height: 300px;
  background-color: var(--BGmain);
  padding: 12px 12px;
  font-size: 18px;
  border-radius: 8px;
  margin-bottom: 16px;
  background-color: var(--BG6);
  resize: none;
}

.textarea2:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}

.submit {
  padding: 8px 12px;
  margin: 0 auto;
  width: 100px;
  border-radius: 4px;
  background-color: var(--colorText);
  border: none;
  cursor: pointer;
}



@media (orientation: portrait) {
  .about {
    flex-direction: column;
  }

  .aboutNavigation {
    width: 100%;
    border: none;
  }

  .aboutNavigationInner {
    flex-wrap: wrap;
    flex-direction: row;
    padding-right: 0;
    gap: 18px 2%;
  }

  .navContent {
    width: 49%;
  }

  .aboutSite {
    width: 100%;
  }

  .text {
    margin: 0;
  }

  .aboutSiteLeft, 
  .aboutSiteRight {
    display: none;
  }

  .textTitle {
    margin: 0;
  }

  .aboutSiteMiddle {
    width: 100%;
    padding: 16px;
    border-radius: var(--borderRadius);
  }
}