@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700&display=swap");
@font-face {
  font-family: "EngraversGothic";
  src: url("/assets/fonts/EngraversGothicBold.ttf") format("truetype");
  font-weight: bold;
}
body {
  background-color: #F3F9FF;
  font-family: "Urbanist", sans-serif;
  margin: 0;
}

a, p {
  font-family: "Urbanist", sans-serif;
  text-decoration: none;
  color: rgb(80, 91, 102);
  cursor: default;
  margin: 0;
  font-size: 24px;
}

label {
  font-family: "Urbanist", sans-serif;
  text-decoration: none;
  cursor: default;
}

a {
  cursor: pointer;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.5s ease;
}

.aHoverUnderline::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: rgb(255, 255, 255);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.5s ease-out;
}

.activeLink::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: rgb(255, 255, 255);
}

.aHoverUnderline:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

h1, h2, h3 {
  font-family: "EngraversGothic", sans-serif;
  cursor: default;
  color: rgb(80, 91, 102);
  letter-spacing: 0em !important;
  margin: 0;
  text-transform: uppercase;
}

h1 {
  font-size: 96px;
}

h2 {
  font-size: 40px;
}

section {
  z-index: 1;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.container {
  padding: 0px 25px;
  max-width: 1320px;
  width: 100%;
  display: flex;
  justify-content: center;
}

button {
  font-family: "Urbanist", sans-serif;
  padding: 16px 45px;
  border-radius: 40px;
  box-shadow: none;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  border: solid 1px;
  transition: background 0.5s ease, color 0.5s ease, border 0.5s ease;
}

.button:focus {
  max-width: 231px;
  max-height: 56px;
  padding: 16px 45px;
  border-radius: 40px;
  background-color: rgb(42, 48, 55);
  border: solid 1px rgb(42, 48, 55);
}

.buttonWhite {
  color: rgb(80, 91, 102);
  background-color: rgb(255, 255, 255);
  border: solid 1px rgb(255, 255, 255);
}

.buttonGrey {
  color: #FFFFFF;
  background-color: rgb(80, 91, 102);
  border: solid 1px rgb(80, 91, 102);
}

.buttonTransparent {
  color: rgb(80, 91, 102);
  background: transparent;
  border-color: rgb(80, 91, 102);
}

.buttonGrey:hover {
  background-color: rgb(42, 48, 55);
  border: solid 1px rgb(42, 48, 55);
}

.buttonTransparent:hover {
  color: #FFFFFF;
  background: rgb(80, 91, 102);
  border: solid 1px rgb(80, 91, 102);
}

.buttonWhite:hover {
  color: #FFFFFF;
  background-color: rgb(42, 48, 55);
  border: solid 1px rgb(42, 48, 55);
}

input, textarea {
  padding: 5px 0px;
  border: 0;
  width: 100%;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  border-bottom: 1px solid rgb(80, 91, 102);
  background: transparent;
}

input:focus, textarea:focus {
  outline: none;
}

@media (max-width: 1440px) {
  .container {
    max-width: 1140px;
  }
  h1 {
    font-size: 64px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 90vw;
    padding: 0 !important;
  }
  button {
    padding: 12px 40px;
    border-radius: 20px;
    box-shadow: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
  }
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 24px;
  }
  p {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 41px !important;
  }
  .container {
    padding: 0 !important;
  }
}
header {
  margin-top: 45px;
  z-index: 100;
  position: fixed;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}
header .container .parent {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
header .container .parent .child {
  width: 100px;
  display: flex;
}
header .container .parent .child img {
  height: 80px;
  width: 80px;
  transition: opacity 0.5s ease;
}
header .container .parent .child img:hover {
  opacity: 0.6;
}
header .container .parent .child a {
  font-size: 20px;
}
header .container .parent .child a::after {
  background-color: rgb(80, 91, 102);
}
header .container .parent .child:nth-child(2) {
  justify-content: center;
  margin: 0px 100px;
}
header .container .parent .child:nth-child(1) {
  justify-content: end;
}
header .container .parent .child:nth-child(3) {
  justify-content: start;
}

.scrolled {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

@media (max-width: 576px) {
  header .container {
    width: 100vw !important;
  }
  header .container .parent .child a {
    font-size: 18px !important;
  }
  header .container .parent .child:nth-child(2) {
    margin: 0px 30px !important;
  }
  header .container .parent .child:nth-child(1) {
    justify-content: center !important;
  }
}
footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(80, 91, 102);
  padding-top: 100px;
  background-position: center;
  background-repeat: no-repeat;
}
footer .container .parent {
  width: 100%;
}
footer .container .parent .childTop {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .container .parent .childTop h2 {
  font-size: 85px;
  margin-bottom: 40px;
  color: #FFFFFF;
  text-align: center;
}
footer .container .parent .childTop button {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .container .parent .childBottom {
  padding-bottom: 40px;
  display: flex;
  flex-direction: row;
}
footer .container .parent .childBottom .childBottomLeft, footer .container .parent .childBottom .childBottomRight {
  padding-top: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
footer .container .parent .childBottom .childBottomLeft a, footer .container .parent .childBottom .childBottomRight a {
  color: #FFFFFF;
  margin: 0px 15px;
  cursor: pointer;
  font-size: 20px;
}
footer .container .parent .childBottom .childBottomLeft p, footer .container .parent .childBottom .childBottomRight p {
  color: #FFFFFF;
  font-size: 20px;
  margin: 0px 15px;
  padding-bottom: 5px;
}
footer .container .parent .childBottom .childBottomRight {
  width: 60%;
  justify-content: end;
}
footer .container .parent .childBottom .childBottomLeft {
  width: 40%;
  justify-content: start;
}

@media (max-width: 992px) {
  footer .container .parent .childTop h2 {
    font-size: 60px;
  }
  footer .container .parent .childBottom {
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
  }
  footer .container .parent .childBottom .childBottomLeft, footer .container .parent .childBottom .childBottomRight {
    width: 100% !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  footer .container .parent .childBottom .childBottomLeft a, footer .container .parent .childBottom .childBottomRight a {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  footer .container .parent .childTop h2 {
    font-size: 26px;
  }
  footer .container .parent .childBottom {
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
  }
  footer .container .parent .childBottom a, footer .container .parent .childBottom p {
    margin: 0px 7px !important;
    font-size: 18px !important;
  }
  footer .container .parent .childBottom .childBottomRight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
  }
  footer .container .parent .childBottom .childBottomRight a {
    text-align: center;
  }
  footer .container .parent .childBottom .childBottomRight p {
    text-align: center;
    grid-column: span 2/span 2;
    grid-column-start: 1;
    grid-row-start: 2;
  }
}
#cookieBannerSection {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
  bottom: 0;
  width: 100%;
  background-color: white;
  text-align: center;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  transform: translateY(100%);
}
#cookieBannerSection .container .cookieBannerBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#cookieBannerSection .container .cookieBannerBlock .cookieBannerChild {
  margin-top: 20px;
  padding: 0;
}
#cookieBannerSection .container .cookieBannerBlock .cookieBannerChild button {
  margin: 0px 10px;
}

.showed {
  transform: translateY(0) !important;
  transition: transform 0.2s ease;
}

#altcookieBannerSection {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  width: 100%;
  background-color: white;
  text-align: center;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
#altcookieBannerSection button {
  margin: 20px 10px;
}
#altcookieBannerSection p {
  padding: 20px 0px;
}
#altcookieBannerSection label input {
  width: auto;
}

.bannerSection {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
}
.bannerSection .bannerParent {
  margin-top: 100px;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  padding: 150px 0px;
}
.bannerSection .bannerParent .container .bannerBlock {
  z-index: 2;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.bannerSection .bannerParent .container .bannerBlock .bannerBlockLogo img {
  width: auto;
  height: 370px;
  margin-right: 60px;
  margin-bottom: 20px;
}
.bannerSection .bannerParent .container .bannerBlock .bannerBlockText h1 {
  line-height: 96px;
  margin-top: 45px;
  margin-bottom: 140px;
}
.bannerSection .bannerParent .container .bannerBlock .bannerBlockText .bannerBlockButtons {
  width: 100%;
  display: flex;
}
.bannerSection .bannerParent .container .bannerBlock .bannerBlockText .bannerBlockButtons button {
  margin: 0px 20px;
}
.bannerSection .bannerParent::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: linear-gradient(rgba(243, 249, 255, 0), rgb(243, 249, 255));
  z-index: 1;
}

@media (max-width: 992px) {
  .bannerSection .bannerParent .container .bannerBlock {
    z-index: 2;
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .bannerSection .bannerParent .container .bannerBlock .bannerBlockLogo img {
    width: auto;
    height: 215px;
    margin-right: 60px;
    margin-bottom: 20px;
  }
  .bannerSection .bannerParent .container .bannerBlock .bannerBlockText h1 {
    font-size: 48px;
    line-height: 49px;
    margin-top: 27px;
    margin-bottom: 58px;
    letter-spacing: -0.06em !important;
  }
  .bannerSection .bannerParent .container .bannerBlock .bannerBlockText .bannerBlockButtons button {
    margin: 0;
  }
  .bannerSection .bannerParent .container .bannerBlock .bannerBlockText .bannerBlockButtons button:nth-child(1) {
    margin-right: 20px;
  }
}
@media (max-width: 576px) {
  .bannerSection .bannerParent .container .bannerBlock {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .bannerSection .bannerParent .container .bannerBlock .bannerBlockLogo img {
    width: auto;
    height: 215px;
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .bannerSection .bannerParent .container .bannerBlock .bannerBlockText h1 {
    margin-top: 27px;
    margin-bottom: 58px;
    text-align: center;
  }
  .bannerSection .bannerParent .container .bannerBlock .bannerBlockText .bannerBlockButtons {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .bannerSection .bannerParent .container .bannerBlock .bannerBlockText .bannerBlockButtons button {
    margin: 0;
  }
  .bannerSection .bannerParent .container .bannerBlock .bannerBlockText .bannerBlockButtons button:nth-child(1) {
    margin-right: 0px;
    margin-bottom: 25px;
  }
}
.infoBlocks {
  padding-bottom: 85px;
}
.infoBlocks .container .parent {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 0px;
}
.infoBlocks .container .parent .child {
  width: 33.3%;
  background-color: rgb(80, 91, 102);
  color: #FFFFFF;
  border-radius: 35px;
  cursor: pointer;
}
.infoBlocks .container .parent .child .childLogo {
  padding: 25px 25px 0px 25px;
}
.infoBlocks .container .parent .child .childLogo img {
  width: 70px;
  height: auto;
}
.infoBlocks .container .parent .child .childText {
  padding: 0px 20px;
  cursor: pointer;
}
.infoBlocks .container .parent .child .childText h3 {
  font-size: 34px;
  font-weight: 700;
  padding: 18px 0px;
  color: #FFFFFF !important;
  margin-bottom: 20px;
  height: 50px;
  cursor: pointer;
}
.infoBlocks .container .parent .child .childText p {
  color: #FFFFFF !important;
  font-size: 16px;
  font-weight: 400;
  height: 57px;
  cursor: pointer;
}
.infoBlocks .container .parent .child .childA {
  margin: 25px 25px;
  text-align: end;
}
.infoBlocks .container .parent .child .childA a {
  color: #FFFFFF !important;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 1.5px;
}
.infoBlocks .container .parent .child .childA a:hover {
  color: rgb(42, 48, 55) !important;
}
.infoBlocks .container .parent .child:nth-child(2) {
  margin: 0px 25px;
}

@media (max-width: 992px) {
  .infoBlocks .container .parent .child {
    width: 33.3%;
  }
  .infoBlocks .container .parent .child .childLogo img {
    width: 40px;
    height: auto;
  }
  .infoBlocks .container .parent .child .childText h3 {
    font-size: 26px;
    margin-bottom: 20px;
    height: 52px;
  }
  .infoBlocks .container .parent .child .childText p {
    font-size: 16px;
    height: 112px;
  }
  .infoBlocks .container .parent .child .childA {
    margin-top: 25px;
  }
}
@media (max-width: 576px) {
  .infoBlocks .container .parent {
    padding: 40px 0px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .infoBlocks .container .parent .child {
    width: 100%;
  }
  .infoBlocks .container .parent .child .childLogo img {
    width: 55px;
    height: auto;
  }
  .infoBlocks .container .parent .child .childText h3 {
    font-size: 26px;
    margin-bottom: 20px;
    height: auto;
  }
  .infoBlocks .container .parent .child .childText p {
    font-size: 16px;
    height: auto;
  }
  .infoBlocks .container .parent .child .childA {
    margin-top: 25px;
  }
  .infoBlocks .container .parent .child:nth-child(2) {
    margin: 25px 0px !important;
  }
}
.projectsSection .container .projectsBlock .title {
  width: 100%;
  text-align: center;
  padding: 10px 0px 68px 0px;
}
.projectsSection .container .projectsBlock .title h2 {
  font-size: 48px;
}
.projectsSection .container .projectsBlock .parent {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 25px;
}
.projectsSection .container .projectsBlock .parent .child {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10px;
  border-radius: 30px;
  cursor: pointer;
}
.projectsSection .container .projectsBlock .parent .child .childText {
  height: 81%;
  position: relative;
  z-index: 2;
  padding: 30px 15px;
}
.projectsSection .container .projectsBlock .parent .child .childText h2, .projectsSection .container .projectsBlock .parent .child .childText p, .projectsSection .container .projectsBlock .parent .child .childText a {
  color: #FFFFFF !important;
  margin-bottom: 25px;
  cursor: pointer;
}
.projectsSection .container .projectsBlock .parent .child .childText h2 {
  font-size: 40px;
  line-height: 44px;
}
.projectsSection .container .projectsBlock .parent .child .childText p {
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 20px;
}
.projectsSection .container .projectsBlock .parent .child .childText a {
  font-size: 18px;
  position: absolute;
  text-decoration: underline;
  text-underline-offset: 1.5px;
  margin-right: 20px;
  bottom: 0;
  right: 0;
}
.projectsSection .container .projectsBlock .parent .child .childText a:hover {
  color: rgb(42, 48, 55) !important;
}
.projectsSection .container .projectsBlock .parent .child::after {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(80, 91, 102, 0.7);
  border-radius: 30px;
}
.projectsSection .container .projectsBlock .parent:nth-child(1) .child:nth-child(1) {
  grid-area: 1/1/3/3;
}
.projectsSection .container .projectsBlock .parent:nth-child(1) .child:nth-child(1) .childText {
  height: 90%;
}
.projectsSection .container .projectsBlock .parent:nth-child(1) .child:nth-child(2) {
  grid-area: 1/3/2/5;
}
.projectsSection .container .projectsBlock .parent:nth-child(1) .child:nth-child(2) .childText {
  height: 75%;
}
.projectsSection .container .projectsBlock .parent:nth-child(1) .child:nth-child(3) {
  grid-area: 2/3/3/4;
}
.projectsSection .container .projectsBlock .parent:nth-child(1) .child:nth-child(4) {
  grid-area: 2/4/3/5;
}
.projectsSection .container .projectsBlock .parent:nth-child(2) .child:nth-child(1) {
  grid-area: 1/1/2/3;
}
.projectsSection .container .projectsBlock .parent:nth-child(2) .child:nth-child(1) .childText {
  height: 75%;
}
.projectsSection .container .projectsBlock .parent:nth-child(2) .child:nth-child(2) {
  grid-area: 2/1/3/2;
}
.projectsSection .container .projectsBlock .parent:nth-child(2) .child:nth-child(3) {
  grid-area: 2/2/3/3;
}
.projectsSection .container .projectsBlock .parent:nth-child(2) .child:nth-child(4) {
  grid-area: 1/3/3/5;
}
.projectsSection .container .projectsBlock .parent:nth-child(2) .child:nth-child(4) .childText {
  height: 90%;
}
.projectsSection .container .projectsBlock .parent:nth-child(3) .child:nth-child(1) {
  grid-area: 1/1/3/3;
}
.projectsSection .container .projectsBlock .parent:nth-child(3) .child:nth-child(1) .childText {
  height: 90%;
}
.projectsSection .container .projectsBlock .parent:nth-child(3) .child:nth-child(2) {
  grid-area: 1/3/2/5;
}
.projectsSection .container .projectsBlock .parent:nth-child(3) .child:nth-child(2) .childText {
  height: 75%;
}
.projectsSection .container .projectsBlock .parent:nth-child(3) .child:nth-child(3) {
  grid-area: 2/3/3/4;
}
.projectsSection .container .projectsBlock .parent:nth-child(3) .child:nth-child(4) {
  grid-area: 2/4/3/5;
}
.projectsSection .container .projectsBlock .button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0px 120px 0px;
}
.projectsSection .container .projectsBlock .button button {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.projectsSection .container .projectsBlock .button button img {
  margin-top: 5px;
}

@media (max-width: 992px) {
  .projectsSection .container .projectsBlock .title h2 {
    font-size: 48px;
  }
  .projectsSection .container .projectsBlock .parent:nth-child(1), .projectsSection .container .projectsBlock .parent:nth-child(2), .projectsSection .container .projectsBlock .parent:nth-child(3) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
  }
  .projectsSection .container .projectsBlock .parent:nth-child(1) .child .childText h2, .projectsSection .container .projectsBlock .parent:nth-child(2) .child .childText h2, .projectsSection .container .projectsBlock .parent:nth-child(3) .child .childText h2 {
    font-size: 32px;
    line-height: 44px;
    height: 100px;
  }
  .projectsSection .container .projectsBlock .parent:nth-child(1) .child .childText p, .projectsSection .container .projectsBlock .parent:nth-child(2) .child .childText p, .projectsSection .container .projectsBlock .parent:nth-child(3) .child .childText p {
    font-size: 16px;
    font-weight: 400;
    height: 200px;
  }
  .projectsSection .container .projectsBlock .parent:nth-child(1) .child .childText a, .projectsSection .container .projectsBlock .parent:nth-child(2) .child .childText a, .projectsSection .container .projectsBlock .parent:nth-child(3) .child .childText a {
    font-size: 16px;
  }
  .projectsSection .container .projectsBlock .parent:nth-child(1) .child:nth-child(1), .projectsSection .container .projectsBlock .parent:nth-child(1) .child:nth-child(2), .projectsSection .container .projectsBlock .parent:nth-child(1) .child:nth-child(3), .projectsSection .container .projectsBlock .parent:nth-child(1) .child:nth-child(4), .projectsSection .container .projectsBlock .parent:nth-child(2) .child:nth-child(1), .projectsSection .container .projectsBlock .parent:nth-child(2) .child:nth-child(2), .projectsSection .container .projectsBlock .parent:nth-child(2) .child:nth-child(3), .projectsSection .container .projectsBlock .parent:nth-child(2) .child:nth-child(4), .projectsSection .container .projectsBlock .parent:nth-child(3) .child:nth-child(1), .projectsSection .container .projectsBlock .parent:nth-child(3) .child:nth-child(2), .projectsSection .container .projectsBlock .parent:nth-child(3) .child:nth-child(3), .projectsSection .container .projectsBlock .parent:nth-child(3) .child:nth-child(4) {
    grid-column: inherit !important;
    grid-row: inherit !important;
    width: auto;
    height: auto;
    margin: 0;
  }
  .projectsSection .container .projectsBlock .parent:nth-child(1) .child:nth-child(1) .childText, .projectsSection .container .projectsBlock .parent:nth-child(1) .child:nth-child(2) .childText, .projectsSection .container .projectsBlock .parent:nth-child(1) .child:nth-child(3) .childText, .projectsSection .container .projectsBlock .parent:nth-child(1) .child:nth-child(4) .childText, .projectsSection .container .projectsBlock .parent:nth-child(2) .child:nth-child(1) .childText, .projectsSection .container .projectsBlock .parent:nth-child(2) .child:nth-child(2) .childText, .projectsSection .container .projectsBlock .parent:nth-child(2) .child:nth-child(3) .childText, .projectsSection .container .projectsBlock .parent:nth-child(2) .child:nth-child(4) .childText, .projectsSection .container .projectsBlock .parent:nth-child(3) .child:nth-child(1) .childText, .projectsSection .container .projectsBlock .parent:nth-child(3) .child:nth-child(2) .childText, .projectsSection .container .projectsBlock .parent:nth-child(3) .child:nth-child(3) .childText, .projectsSection .container .projectsBlock .parent:nth-child(3) .child:nth-child(4) .childText {
    height: auto;
    width: auto;
  }
  .projectsSection .container .projectsBlock .button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0px 120px 0px;
  }
  .projectsSection .container .projectsBlock .button button {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .projectsSection .container .projectsBlock .button button img {
    margin-top: 5px;
  }
}
@media (max-width: 576px) {
  .projectsSection .container .projectsBlock .title {
    padding-bottom: 40px;
  }
  .projectsSection .container .projectsBlock .title h2 {
    font-size: 32px;
  }
  .projectsSection .container .projectsBlock .parent:nth-child(1), .projectsSection .container .projectsBlock .parent:nth-child(2), .projectsSection .container .projectsBlock .parent:nth-child(3) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .projectsSection .container .projectsBlock .parent:nth-child(1) .child .childText h2, .projectsSection .container .projectsBlock .parent:nth-child(2) .child .childText h2, .projectsSection .container .projectsBlock .parent:nth-child(3) .child .childText h2 {
    font-size: 34px;
    line-height: 44px;
    height: 80px;
  }
  .projectsSection .container .projectsBlock .parent:nth-child(1) .child .childText p, .projectsSection .container .projectsBlock .parent:nth-child(2) .child .childText p, .projectsSection .container .projectsBlock .parent:nth-child(3) .child .childText p {
    font-size: 20px;
    font-weight: 400;
    height: 192px;
  }
  .projectsSection .container .projectsBlock .parent:nth-child(1) .child .childText a, .projectsSection .container .projectsBlock .parent:nth-child(2) .child .childText a, .projectsSection .container .projectsBlock .parent:nth-child(3) .child .childText a {
    font-size: 16px;
  }
  .projectsSection .container .projectsBlock .parent:nth-child(1) .child:nth-child(1), .projectsSection .container .projectsBlock .parent:nth-child(1) .child:nth-child(2), .projectsSection .container .projectsBlock .parent:nth-child(1) .child:nth-child(3), .projectsSection .container .projectsBlock .parent:nth-child(1) .child:nth-child(4), .projectsSection .container .projectsBlock .parent:nth-child(2) .child:nth-child(1), .projectsSection .container .projectsBlock .parent:nth-child(2) .child:nth-child(2), .projectsSection .container .projectsBlock .parent:nth-child(2) .child:nth-child(3), .projectsSection .container .projectsBlock .parent:nth-child(2) .child:nth-child(4), .projectsSection .container .projectsBlock .parent:nth-child(3) .child:nth-child(1), .projectsSection .container .projectsBlock .parent:nth-child(3) .child:nth-child(2), .projectsSection .container .projectsBlock .parent:nth-child(3) .child:nth-child(3), .projectsSection .container .projectsBlock .parent:nth-child(3) .child:nth-child(4) {
    width: 100%;
  }
  .projectsSection .container .projectsBlock .button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0px 120px 0px;
  }
  .projectsSection .container .projectsBlock .button button {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .projectsSection .container .projectsBlock .button button img {
    margin-top: 5px;
  }
}
.headerProjectsSection .container .headerProjectsBlock {
  padding: 100px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.headerProjectsSection .container .headerProjectsBlock img {
  width: 483px;
}
.headerProjectsSection .container .headerProjectsBlock p {
  margin-top: 50px;
  text-align: center;
}

@media (max-width: 992px) {
  .headerProjectsSection .container .headerProjectsBlock {
    padding: 100px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .headerProjectsSection .container .headerProjectsBlock img {
    width: 483px;
    margin: 0;
  }
}
@media (max-width: 576px) {
  .headerProjectsSection {
    padding-bottom: 40px;
  }
  .headerProjectsSection .container .headerProjectsBlock {
    padding-bottom: 0;
  }
  .headerProjectsSection .container .headerProjectsBlock img {
    width: 100vw;
  }
  .headerProjectsSection .container .headerProjectsBlock p {
    max-width: 90vw;
  }
}
.projectsContainerSection .container .projectsContainerBlock {
  margin-bottom: 120px;
}
.projectsContainerSection .container .projectsContainerBlock .parent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 25px;
  padding-bottom: 150px;
}
.projectsContainerSection .container .projectsContainerBlock .parent .child {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-color: rgb(80, 91, 102);
  cursor: pointer;
}
.projectsContainerSection .container .projectsContainerBlock .parent .child img {
  width: 100%;
  height: auto;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.projectsContainerSection .container .projectsContainerBlock .parent .child p {
  font-size: 20px;
}
.projectsContainerSection .container .projectsContainerBlock .parent .child h2, .projectsContainerSection .container .projectsContainerBlock .parent .child p {
  cursor: pointer;
  padding: 20px 25px;
  color: #FFFFFF;
}
.projectsContainerSection .container .projectsContainerBlock .parent .child a {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.3);
  width: 25px;
  height: 25px;
  border-radius: 17.5px;
  padding: 5px;
  margin-bottom: 10px;
  margin-right: 10px;
}
.projectsContainerSection .container .projectsContainerBlock .parent .child a img {
  width: 20px;
  height: 20px;
}
.projectsContainerSection .container .projectsContainerBlock .parent .child a:hover {
  background-color: rgb(42, 48, 55);
}
.projectsContainerSection .container .projectsContainerBlock .parent .child:nth-child(2), .projectsContainerSection .container .projectsContainerBlock .parent .child:nth-child(4), .projectsContainerSection .container .projectsContainerBlock .parent .child:nth-child(6), .projectsContainerSection .container .projectsContainerBlock .parent .child:nth-child(8), .projectsContainerSection .container .projectsContainerBlock .parent .child:nth-child(10), .projectsContainerSection .container .projectsContainerBlock .parent .child:nth-child(12) {
  margin-top: 100px;
}
.projectsContainerSection .container .projectsContainerBlock .button {
  width: 100%;
  text-align: center;
}

@media (max-width: 992px) {
  .projectsContainerSection .container .projectsContainerBlock .parent {
    padding-bottom: 50px;
  }
  .projectsContainerSection .container .projectsContainerBlock .parent .child {
    padding-bottom: 50px;
  }
  .projectsContainerSection .container .projectsContainerBlock .parent .child p {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .projectsContainerSection .container .projectsContainerBlock .parent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .projectsContainerSection .container .projectsContainerBlock .parent .child {
    width: 100%;
  }
  .projectsContainerSection .container .projectsContainerBlock .parent .child:nth-child(2), .projectsContainerSection .container .projectsContainerBlock .parent .child:nth-child(4), .projectsContainerSection .container .projectsContainerBlock .parent .child:nth-child(6), .projectsContainerSection .container .projectsContainerBlock .parent .child:nth-child(8), .projectsContainerSection .container .projectsContainerBlock .parent .child:nth-child(10), .projectsContainerSection .container .projectsContainerBlock .parent .child:nth-child(12) {
    margin-top: 0px;
  }
}
.projectTopSection {
  padding-top: 150px;
}
.projectTopSection .container .projectTopBlock .linkBlock {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 50px;
}
.projectTopSection .container .projectTopBlock .linkBlock a, .projectTopSection .container .projectTopBlock .linkBlock p {
  font-size: 16px;
}
.projectTopSection .container .projectTopBlock .linkBlock p {
  color: rgb(0, 0, 0);
}
.projectTopSection .container .projectTopBlock .linkBlock img {
  margin: 0px 15px;
}
.projectTopSection .container .projectTopBlock .linkBlock a::after {
  background-color: rgb(80, 91, 102);
}
.projectTopSection .container .projectTopBlock .mainBlock h1 {
  text-align: center;
  margin-bottom: 50px;
}
.projectTopSection .container .projectTopBlock .mainBlock .imgParent {
  overflow: hidden;
  margin-bottom: 50px;
  border-radius: 30px;
}
.projectTopSection .container .projectTopBlock .mainBlock .imgParent img {
  width: 100%;
  height: auto;
  max-height: 721px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s ease;
}
.projectTopSection .container .projectTopBlock .mainBlock .imgParent img:hover {
  transform: scale(1.05);
}
.projectTopSection .container .projectTopBlock .mainBlock #HancAIBannerImg {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.projectTopSection .container .projectTopBlock .mainBlock p {
  font-size: 20px;
  margin-bottom: 20px;
}
.projectTopSection .container .projectTopBlock .mainBlock p a, .projectTopSection .container .projectTopBlock .mainBlock p span {
  font-size: 20px;
  font-weight: 500;
  color: rgb(42, 48, 55);
  text-decoration: underline;
}
.projectTopSection .container .projectTopBlock .mainBlock p a img, .projectTopSection .container .projectTopBlock .mainBlock p span img {
  width: 15px;
  height: auto;
}
.projectTopSection .container .projectTopBlock .mainBlock p a:hover {
  color: rgb(0, 0, 0) !important;
}
.projectTopSection .container .projectTopBlock #SS {
  padding-bottom: 120px;
}

.imagesGridSection {
  padding-top: 50px;
}
.imagesGridSection .container .imagesGridBlock .parent {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 339px 339px 562px;
  gap: 25px;
  grid-auto-flow: dense;
  padding-bottom: 120px;
}
.imagesGridSection .container .imagesGridBlock .parent .child {
  width: 100%;
  background-color: rgb(222, 237, 254);
  border-radius: 30px;
  overflow: hidden;
}
.imagesGridSection .container .imagesGridBlock .parent .child img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  transition: transform 1s ease;
}
.imagesGridSection .container .imagesGridBlock .parent .child img:hover {
  transform: scale(1.06);
}
.imagesGridSection .container .imagesGridBlock .parent .child:nth-child(1) {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  border-radius: 40px;
}
.imagesGridSection .container .imagesGridBlock .parent .child:nth-child(3), .imagesGridSection .container .imagesGridBlock .parent .child:nth-child(4) {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.imagesGridSection .container .imagesGridBlock .parent .child:nth-child(2) {
  grid-column: span 2/span 2;
  grid-column-start: 3;
}
.imagesGridSection .container .imagesGridBlock .parent .child:nth-child(3) {
  grid-column-start: 5;
}
.imagesGridSection .container .imagesGridBlock .parent .child:nth-child(4) {
  grid-column-start: 3;
  grid-row-start: 2;
}
.imagesGridSection .container .imagesGridBlock .parent .child:nth-child(5) {
  grid-column: span 2/span 2;
  grid-column-start: 4;
  grid-row-start: 2;
}
.imagesGridSection .container .imagesGridBlock .parent .child:nth-child(6) {
  grid-column: span 5/span 5;
  grid-row-start: 3;
}
.imagesGridSection .container .imagesGridBlock #HancAI {
  padding-bottom: 50px;
  grid-template-rows: 339px 339px !important;
}
.imagesGridSection .container .imagesGridBlock #HancAI .child {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.imagesGridSection .container .imagesGridBlock #HancAI .child img {
  width: 100%;
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.imagesGridSection .container .imagesGridBlock #GPA .child:nth-child(4) {
  transform: scaleX(-1);
}
.imagesGridSection .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.imagesGridSection .overlay img, .imagesGridSection .overlay video {
  display: none;
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 30px;
}
.imagesGridSection .overlay.active {
  display: flex;
}

@media (max-width: 576px) {
  .imagesGridSection {
    padding-top: 50px;
  }
  .imagesGridSection .container .imagesGridBlock .parent {
    display: grid;
    grid-template-columns: 45vw 45vw;
    grid-template-rows: repeat(5, 1fr);
    gap: 15px;
    grid-auto-flow: dense;
  }
  .imagesGridSection .container .imagesGridBlock .parent .child {
    width: 100%;
    background-color: rgb(222, 237, 254);
    border-radius: 30px;
  }
  .imagesGridSection .container .imagesGridBlock .parent .child img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 30px;
  }
  .imagesGridSection .container .imagesGridBlock .parent .child:nth-child(1) {
    grid-column: inherit;
    grid-row: span 3/span 3;
    border-radius: 40px;
  }
  .imagesGridSection .container .imagesGridBlock .parent .child:nth-child(3), .imagesGridSection .container .imagesGridBlock .parent .child:nth-child(4) {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  .imagesGridSection .container .imagesGridBlock .parent .child:nth-child(2) {
    grid-column: inherit;
    grid-column-start: inherit;
  }
  .imagesGridSection .container .imagesGridBlock .parent .child:nth-child(3) {
    grid-column-start: 2;
  }
  .imagesGridSection .container .imagesGridBlock .parent .child:nth-child(4) {
    grid-column-start: 2;
    grid-row-start: 3;
  }
  .imagesGridSection .container .imagesGridBlock .parent .child:nth-child(5) {
    grid-column: span 2/span 2;
    grid-row-start: 4;
  }
  .imagesGridSection .container .imagesGridBlock .parent .child:nth-child(6) {
    grid-column: span 2/span 2;
    grid-row-start: 5;
  }
  .imagesGridSection .container .imagesGridBlock #HancAI {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .imagesGridSection .container .imagesGridBlock #HancAI .child:nth-child(6) {
    display: none;
  }
  .imagesGridSection .container .imagesGridBlock #HancAI .child:nth-child(5) {
    display: none;
  }
  .imagesGridSection .container .imagesGridBlock #GPA .child:nth-child(2) {
    grid-column: span 2/span 2;
    grid-row-start: 4;
  }
  .imagesGridSection .container .imagesGridBlock #GPA .child:nth-child(5) {
    grid-column-start: 2;
    grid-row-start: 2;
  }
  .imagesGridSection .container .imagesGridBlock #GPA .child:nth-child(3), .imagesGridSection .container .imagesGridBlock #GPA .child:nth-child(4) {
    padding-right: 15px;
  }
  .imagesGridSection .overlay img, .imagesGridSection .overlay video {
    align-items: center;
    justify-content: center;
    width: 85%;
  }
}
.hancAISection {
  padding-bottom: 120px;
}
.hancAISection .container .hancAIBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hancAISection .container .hancAIBlock h2 {
  text-align: center;
  font-size: 48px;
}
.hancAISection .container .hancAIBlock p {
  text-align: center;
  font-size: 24px;
  margin-top: 25px;
}
.hancAISection .container .hancAIBlock .parent {
  padding-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 25px;
}
.hancAISection .container .hancAIBlock .parent .child {
  background-color: #fff;
  border-radius: 35px;
  padding: 25px;
}
.hancAISection .container .hancAIBlock .parent .child .childSvg {
  background-color: rgb(224, 231, 255);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 10px;
}
.hancAISection .container .hancAIBlock .parent .child h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
.hancAISection .container .hancAIBlock .parent .child p {
  font-size: 20px;
  text-align: start;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .hancAISection .container .hancAIBlock h2 {
    font-size: 32px;
  }
  .hancAISection .container .hancAIBlock .parent {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .hancAISection .container .hancAIBlock p {
    font-size: 20px;
  }
  .hancAISection .container .hancAIBlock .parent {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
}
.underConstructionSection {
  background-image: url("/assets/images/mainPage/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
}
.underConstructionSection .underConstructionParent {
  margin-top: 100px;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  padding: 150px 0px;
}
.underConstructionSection .underConstructionParent .container .underConstructionBlock {
  z-index: 2;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.underConstructionSection .underConstructionParent .container .underConstructionBlock .bannerBlockLogo img {
  width: auto;
  height: 370px;
  margin-right: 60px;
  margin-bottom: 20px;
}
.underConstructionSection .underConstructionParent .container .underConstructionBlock .bannerBlockText h1 {
  font-size: 90px;
  line-height: 96px;
  margin-top: 45px;
  margin-bottom: 140px;
  text-align: center;
}
.underConstructionSection .underConstructionParent::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: linear-gradient(rgba(243, 249, 255, 0), rgb(243, 249, 255));
  z-index: 1;
}

@media (max-width: 992px) {
  .underConstructionSection .underConstructionParent .container .underConstructionBlock {
    z-index: 2;
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .underConstructionSection .underConstructionParent .container .underConstructionBlock .bannerBlockLogo img {
    width: auto;
    height: 215px;
    margin-right: 60px;
    margin-bottom: 20px;
  }
  .underConstructionSection .underConstructionParent .container .underConstructionBlock .bannerBlockText h1 {
    font-size: 48px;
    line-height: 49px;
    margin-top: 27px;
    margin-bottom: 58px;
    letter-spacing: -0.06em !important;
  }
}
@media (max-width: 576px) {
  .underConstructionSection .underConstructionParent .container .underConstructionBlock {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .underConstructionSection .underConstructionParent .container .underConstructionBlock .bannerBlockLogo img {
    width: auto;
    height: 215px;
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .underConstructionSection .underConstructionParent .container .underConstructionBlock .bannerBlockText h1 {
    font-size: 48px;
    line-height: 49px;
    margin-top: 27px;
    margin-bottom: 58px;
  }
}
.contactSection {
  padding: 120px 0px;
}
.contactSection .container .contactBlock .linkBlock {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 50px;
}
.contactSection .container .contactBlock .linkBlock a, .contactSection .container .contactBlock .linkBlock p {
  font-size: 16px;
}
.contactSection .container .contactBlock .linkBlock p {
  color: rgb(0, 0, 0);
}
.contactSection .container .contactBlock .linkBlock img {
  margin: 0px 15px;
}
.contactSection .container .contactBlock .linkBlock a::after {
  background-color: rgb(80, 91, 102);
}
.contactSection .container .contactBlock .parent {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.contactSection .container .contactBlock .parent .child:nth-child(1) {
  width: 50%;
}
.contactSection .container .contactBlock .parent .child:nth-child(1) img {
  width: 65vw;
  height: auto;
  margin-left: -20vw;
}
.contactSection .container .contactBlock .parent .child:nth-child(2) {
  width: 50%;
}
.contactSection .container .contactBlock .parent .child:nth-child(2) .childTop {
  display: flex;
  flex-direction: row;
  padding: 50px 0px;
}
.contactSection .container .contactBlock .parent .child:nth-child(2) .childTop .left, .contactSection .container .contactBlock .parent .child:nth-child(2) .childTop .right {
  width: 50%;
}
.contactSection .container .contactBlock .parent .child:nth-child(2) .childTop .left p, .contactSection .container .contactBlock .parent .child:nth-child(2) .childTop .right p {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 20px;
}
.contactSection .container .contactBlock .parent .child:nth-child(2) .form .formParent {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}
.contactSection .container .contactBlock .parent .child:nth-child(2) .form .formParent .formChild {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  position: relative;
}
.contactSection .container .contactBlock .parent .child:nth-child(2) .form .formParent .formChild label {
  font-size: 20px;
  margin-bottom: 20px;
}
.contactSection .container .contactBlock .parent .child:nth-child(2) .form .formParent .formChild input {
  padding-bottom: 15px;
}
.contactSection .container .contactBlock .parent .child:nth-child(2) .form .formParent .formChild .error-message {
  display: none;
  position: absolute;
  width: 100%;
  bottom: -20px;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  color: red;
  font-size: 14px;
}
.contactSection .container .contactBlock .parent .child:nth-child(2) .form .formParent .formChild .error-message img {
  margin-right: 5px;
}
.contactSection .container .contactBlock .parent .child:nth-child(2) .form .formParent .formChild:nth-child(3) {
  grid-column: span 2/span 2;
}
.contactSection .container .contactBlock .parent .child:nth-child(2) .form .formParent .formChild:nth-child(4) {
  grid-column: span 2/span 2;
  grid-row-start: 3;
}
.contactSection .container .contactBlock .parent .child:nth-child(2) .form .formButton {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: end;
  justify-content: end;
}
.contactSection .container .contactBlock .parent .child:nth-child(2) .form .formButton button {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.contactSection .container .contactBlock .parent .child:nth-child(2) .form .formButton button img {
  width: 15px;
  height: auto;
  margin-top: 5px;
  margin-left: 5px;
}
.contactSection .container .contactBlock .parent .child:nth-child(2) .form #responseStat {
  margin-top: 20px;
  padding: 10px 5px;
  border-radius: 15px;
}
.contactSection .container .contactBlock .parent .child:nth-child(2) .form #responseStat p {
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
}
.contactSection .container .contactBlock .parent .child:nth-child(2) .form .error {
  background-color: rgb(199, 75, 75);
}
.contactSection .container .contactBlock .parent .child:nth-child(2) .form .success {
  background-color: rgb(77, 199, 75);
}

@media (max-width: 992px) {
  .contactSection {
    padding: 120px 0px;
  }
  .contactSection .container .contactBlock {
    width: 100%;
  }
  .contactSection .container .contactBlock .parent .child:nth-child(1) img {
    width: 75vw;
    height: auto;
    margin-left: -15vw;
  }
  .contactSection .container .contactBlock .parent .child:nth-child(2) h1 {
    font-size: 48px !important;
  }
  .contactSection .container .contactBlock .parent .child:nth-child(2) .childTop .left, .contactSection .container .contactBlock .parent .child:nth-child(2) .childTop .right {
    width: 50%;
  }
  .contactSection .container .contactBlock .parent .child:nth-child(2) .childTop .left p, .contactSection .container .contactBlock .parent .child:nth-child(2) .childTop .right p {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 20px;
  }
  .contactSection .container .contactBlock .parent .child:nth-child(2) .form .formParent .formChild label {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .contactSection .container .contactBlock .parent .child:nth-child(2) .form .formParent .formChild input, .contactSection .container .contactBlock .parent .child:nth-child(2) .form .formParent .formChild textarea {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .contactSection {
    padding: 120px 0px;
  }
  .contactSection .container .contactBlock {
    width: 100%;
  }
  .contactSection .container .contactBlock .parent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .contactSection .container .contactBlock .parent .child:nth-child(1), .contactSection .container .contactBlock .parent .child:nth-child(2) {
    width: 100%;
  }
  .contactSection .container .contactBlock .parent .child:nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contactSection .container .contactBlock .parent .child:nth-child(1) img {
    margin-left: 0;
  }
  .contactSection .container .contactBlock .parent .child:nth-child(2) h1 {
    width: 100%;
    text-align: center;
  }
  .contactSection .container .contactBlock .parent .child:nth-child(2) .form .formParent {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }
  .contactSection .container .contactBlock .parent .child:nth-child(2) .form .formParent .formChild {
    width: 100%;
  }
  .contactSection .container .contactBlock .parent .child:nth-child(2) .form .formButton {
    padding-top: 20px;
    align-items: center;
    justify-content: center;
  }
}
.latestNewsSection {
  padding-top: 150px;
  padding-bottom: 120px;
}
.latestNewsSection .container .latestNewsBlock .linkBlock {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 50px;
}
.latestNewsSection .container .latestNewsBlock .linkBlock a, .latestNewsSection .container .latestNewsBlock .linkBlock p {
  font-size: 16px;
}
.latestNewsSection .container .latestNewsBlock .linkBlock p {
  color: rgb(0, 0, 0);
}
.latestNewsSection .container .latestNewsBlock .linkBlock img {
  margin: 0px 15px;
}
.latestNewsSection .container .latestNewsBlock .linkBlock a::after {
  background-color: rgb(80, 91, 102);
}
.latestNewsSection .container .latestNewsBlock h1 {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
.latestNewsSection .container .latestNewsBlock .newsList .newsItem {
  background-color: rgb(255, 255, 255);
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 16px;
  box-shadow: 0px 30px 60px 0px rgba(32, 56, 85, 0.15);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-items: end;
}
.latestNewsSection .container .latestNewsBlock .newsList .newsItem .newsItemImg {
  content: "";
  width: 40%;
  height: 185px;
  background-size: cover;
  border-radius: 16px;
  margin-right: 16px;
}
.latestNewsSection .container .latestNewsBlock .newsList .newsItem .newsItemContent {
  width: 60%;
}
.latestNewsSection .container .latestNewsBlock .newsList .newsItem .newsItemContent .newsItemContentText h3 {
  font-size: 20px;
  margin-bottom: 16px;
  line-height: 21px;
}
.latestNewsSection .container .latestNewsBlock .newsList .newsItem .newsItemContent .newsItemContentText p {
  font-size: 12px;
  margin-bottom: 15px;
}
.latestNewsSection .container .latestNewsBlock .newsList .newsItem .newsItemContent .newsItemFooter {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-items: end;
  position: relative;
}
.latestNewsSection .container .latestNewsBlock .newsList .newsItem .newsItemContent .newsItemFooter .newsItemFooterImg {
  content: "";
  width: 40px;
  height: 40px;
  background-size: cover;
  border-radius: 20px;
}
.latestNewsSection .container .latestNewsBlock .newsList .newsItem .newsItemContent .newsItemFooter .newsItemFooterText {
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}
.latestNewsSection .container .latestNewsBlock .newsList .newsItem .newsItemContent .newsItemFooter .newsItemFooterText span:nth-child(1) {
  font-weight: 700;
  font-size: 12px;
  color: rgb(0, 0, 0);
}
.latestNewsSection .container .latestNewsBlock .newsList .newsItem .newsItemContent .newsItemFooter .newsItemFooterText span:nth-child(2) {
  font-weight: 400;
  font-size: 11px;
  color: rgb(80, 91, 102);
}
.latestNewsSection .container .latestNewsBlock .newsList .newsItem .newsItemContent .newsItemFooter a {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  bottom: 0;
  background-color: rgb(80, 91, 102);
  width: 25px;
  height: 25px;
  border-radius: 17.5px;
  padding: 5px;
}
.latestNewsSection .container .latestNewsBlock .newsList .newsItem .newsItemContent .newsItemFooter a img {
  width: 20px;
  height: 20px;
}
.latestNewsSection .container .latestNewsBlock .latestNewsButton {
  padding-top: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 576px) {
  .latestNewsSection {
    padding-top: 150px;
    padding-bottom: 120px;
  }
  .latestNewsSection .container .latestNewsBlock .newsList .newsItem {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }
  .latestNewsSection .container .latestNewsBlock .newsList .newsItem .newsItemImg {
    width: 100%;
    margin-bottom: 20px;
  }
  .latestNewsSection .container .latestNewsBlock .newsList .newsItem .newsItemContent {
    width: 100%;
  }
  .latestNewsSection .container .latestNewsBlock .newsList .newsItem .newsItemContent .newsItemContentText {
    width: 100%;
  }
  .latestNewsSection .container .latestNewsBlock .newsList .newsItem .newsItemContent .newsItemFooter {
    width: 100%;
  }
}
.privacyPolicySection {
  padding: 150px 25px;
}
.privacyPolicySection .privacyPolicyBlock {
  margin: 0 auto;
}
.privacyPolicySection .privacyPolicyBlock h2, .privacyPolicySection .privacyPolicyBlock p {
  margin-bottom: 30px;
}
.privacyPolicySection .privacyPolicyBlock h2 {
  font-size: 48px;
}

.notfoundSection {
  padding: 250px 0px;
}
.notfoundSection .container .notfoundBlock h1 {
  font-size: 90px;
}
.notfoundSection .container .notfoundBlock p {
  margin-top: 15px;
  font-size: 24px;
}/*# sourceMappingURL=main.css.map */