@import url("https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&display=swap");
.parallax {
  background-image: url("../../images/Group.svg");
  min-height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax .bgAnimation {
  z-index: -10;
  position: fixed;
  width: 100%;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(48deg);
}
.parallax .bgAnimation .line {
  position: absolute;
  height: 5px;
  background-color: #627e94;
}
.parallax .bgAnimation .line1 {
  width: 80rem;
  animation: anime1 10s linear;
  animation-timeline: scroll();
}
.parallax .bgAnimation .line2 {
  width: 20rem;
  animation: anime2 10s linear;
  animation-timeline: scroll();
}
.parallax .bgAnimation .line3 {
  width: 60rem;
  animation: anime3 10s linear;
  animation-timeline: scroll();
}
.parallax .bgAnimation .line4 {
  width: 40rem;
  animation: anime4 10s linear;
  animation-timeline: scroll();
}
.parallax .bgAnimation .line5 {
  width: 40rem;
  animation: anime5 10s linear;
  animation-timeline: scroll();
}
.parallax .bgAnimation .line6 {
  width: 60rem;
  animation: anime6 10s linear;
  animation-timeline: scroll();
}
.parallax .bgAnimation .line7 {
  width: 20rem;
  animation: anime7 10s linear;
  animation-timeline: scroll();
}
.parallax .bgAnimation .line8 {
  width: 80rem;
  animation: anime8 10s linear;
  animation-timeline: scroll();
}
@keyframes anime1 {
  0% {
    transition: linear;
    transform: translate(100vw, 100px);
  }
  100% {
    transform: translate(0vw, 100px);
    transition: linear;
  }
}
@keyframes anime2 {
  0% {
    transition: linear;
    transform: translate(100px, 200px);
  }
  100% {
    transform: translate(100vw, 200px);
    transition: linear;
  }
}
@keyframes anime3 {
  0% {
    transition: linear;
    transform: translate(100vw, 300px);
  }
  100% {
    transform: translate(0vw, 300px);
    transition: linear;
  }
}
@keyframes anime4 {
  0% {
    transition: linear;
    transform: translate(100px, 400px);
  }
  100% {
    transform: translate(100vw, 400px);
    transition: linear;
  }
}
@keyframes anime5 {
  0% {
    transition: linear;
    transform: translate(100vw, 500px);
  }
  100% {
    transform: translate(0vw, 500px);
    transition: linear;
  }
}
@keyframes anime6 {
  0% {
    transition: linear;
    transform: translate(100px, 600px);
  }
  100% {
    transform: translate(100vw, 600px);
    transition: linear;
  }
}
@keyframes anime7 {
  0% {
    transition: linear;
    transform: translate(100vw, 700px);
  }
  100% {
    transform: translate(0vw, 700px);
    transition: linear;
  }
}
@keyframes anime8 {
  0% {
    transition: linear;
    transform: translate(100px, 800px);
  }
  100% {
    transform: translate(100vw, 800px);
    transition: linear;
  }
}

.area {
  z-index: -1;
  position: fixed;
  width: 100%;
  height: 100vh;
}
.area .circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.area .circles li {
  color: white;
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(98, 126, 148, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
}
.area .circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
  animation-duration: 25s;
}
.area .circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}
.area .circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
  animation-duration: 25s;
}
.area .circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}
.area .circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
  animation-duration: 25s;
}
.area .circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
  animation-duration: 25s;
}
.area .circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
  animation-duration: 25s;
}
.area .circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}
.area .circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}
.area .circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}
@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

* {
  padding: 0%;
  margin: 0%;
  text-decoration: none;
  font-family: "Aleo", sans-serif;
}

*::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(98, 126, 148, 0.3);
  background-color: #F5F5F5;
}

*::-webkit-scrollbar {
  width: 10px;
  background-color: #F5F5F5;
}

*::-webkit-scrollbar-thumb {
  background-color: #627e94;
  border: 2px solid transparent;
}

body {
  --sb-track-color: #232E33;
  --sb-thumb-color: #6BAF8D;
  --sb-size: 5px;
  background-color: #F5F7F8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  body {
    gap: 10px;
  }
}
body .wrapper {
  width: 80%;
  max-width: 1920px;
  position: relative;
  font-family: "Aleo", sans-serif;
  padding: 0%;
  margin: 0%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}
@media screen and (max-width: 1024px) {
  body .wrapper {
    gap: 10px;
    width: 100%;
  }
}
body #header {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  background: #627e94;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0.8rem 0rem;
}
body #header .container {
  width: 80%;
  max-width: 1920px;
}
body #header .container .items {
  padding: 0px 52px;
  display: grid;
  grid-template-columns: 0.2fr 1.2fr 0.5fr 0.4fr;
  gap: 30px 30px;
  grid-auto-flow: row;
  grid-template-areas: "symbols links search language";
}
@media screen and (max-width: 1024px) {
  body #header .container .items {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr 1fr 0.3fr;
    grid-template-rows: 0.5fr 0fr;
    gap: 10px 10px;
    grid-template-areas: "symbols links language";
  }
}
@media screen and (min-width: 1390px) {
  body #header .container .items {
    grid-template-columns: 0.2fr 1.2fr 0.5fr 0.4fr;
  }
}
body #header .container .items .symbols,
body #header .container .items .links,
body #header .container .items .search,
body #header .container .items .language {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
}
body #header .container .items .symbols {
  grid-area: symbols;
}
body #header .container .items .links {
  grid-area: links;
}
body #header .container .items .search {
  grid-area: search;
}
body #header .container .items .language {
  grid-area: language;
}
body #header .container .items .symbols {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 1rem;
}
body #header .container .items .symbols a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
body #header .container .items .symbols a img {
  width: 1.2rem;
}
body #header .container .items .symbols a p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: normal;
}
body #header .container .items .links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  padding: 0%;
}
body #header .container .items .links a {
  display: flex;
  flex-direction: row;
  gap: 0rem 0.5rem;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
  color: whitesmoke;
}
body #header .container .items .links a img {
  width: 16px;
  height: 16px;
}
body #header .container .items .links a h6 {
  font-weight: normal;
}
@media screen and (max-width: 1406px) {
  body #header .container .items .links a h6 {
    display: none;
  }
}
@media screen and (min-width: 1407px) {
  body #header .container .items .links a h6 {
    display: block;
  }
}
body #header .container .items .links .search__icon {
  color: white;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 1024px) {
  body #header .container .items .links .search__icon {
    display: flex;
  }
}
body #header .container .items .search {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  border-radius: 30px;
  gap: 0.5rem;
  background-color: #f4f2f2;
  padding: 0rem 0.5rem;
}
@media screen and (max-width: 1024px) {
  body #header .container .items .search {
    display: none;
  }
}
body #header .container .items .search i {
  color: #b4b4b4;
  font-size: 15px;
}
body #header .container .items .search input {
  padding: 1.5rem 0rem;
  width: 100%;
  font-size: 0.67em;
  border: none;
  background-color: #f4f2f2;
  color: #646464;
}
@media screen and (min-width: 1024px) {
  body #header .container .items .search input {
    padding: 0.5rem 0rem;
  }
}
body #header .container .items .search .search__input:hover,
body #header .container .items .search .search__input:focus {
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.0745098039);
}
body #header .container .items .search .search__input:focus {
  outline: none;
  background-color: #f0eeee;
}
body #header .container .items .search .search__input::-webkit-input-placeholder {
  font-weight: 100;
  color: #ccc;
}
body #header .container .items .search .search__input:focus {
  background-color: #f0eeee;
}
body #header .container .items .language {
  padding: 0%;
  margin: 0%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  gap: 0.5rem;
}
body #header .container .items .language .box {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 2.5rem;
}
body #header .container .items .language img {
  width: 16px;
}
body #header .container .items .language .lang {
  width: 4rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  border-radius: 0.25rem;
  color: whitesmoke;
  font-weight: bold;
  outline: none;
  background-color: #627e94;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
}
body #header .container .items .language .lang a,
body #header .container .items .language .lang h6 {
  color: whitesmoke;
  cursor: pointer;
  font-weight: normal;
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  body #header .container .items .language .lang {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  body #header .container .items .language {
    position: relative;
  }
  body #header .container .items .language:hover .lang {
    position: absolute;
    bottom: -5.5rem;
    z-index: 10000;
    right: 0rem;
    border: 1px solid white;
    display: flex;
    flex-direction: column;
    padding: 1rem 0rem;
  }
  body #header .container .items .language:hover .lang a {
    width: 100%;
    text-align: center;
  }
  body #header .container .items .language:hover .lang a:hover {
    background: white;
    color: #5d809b;
  }
  body #header .container .items .language:hover .lang p {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  body #header .container .mobile {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr 1fr 0.3fr;
    grid-template-rows: 0.5fr 1fr;
    gap: 10px 10px;
    grid-template-areas: "search search search" "symbols links language";
  }
}
@media screen and (max-width: 500px) {
  body #header .container {
    width: 90%;
  }
}
@media screen and (min-width: 320px) and (max-width: 768px) {
  body #header .container .items {
    padding: 0px 10px;
  }
  body #header .container .items .links {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 0.5rem;
  }
  body #header .container .items .links a {
    height: 2.5rem;
    width: 1rem;
    max-width: 1rem;
  }
  body #header .container .items .links a h6 {
    visibility: hidden;
  }
  body #header .container .items .search input {
    padding: 1.5rem 0rem;
  }
}
body .reception {
  border: 1px solid #627e94;
  padding: 0px 52px;
  color: white;
}
@media screen and (max-width: 360px) {
  body .reception {
    padding: 0px 10px;
  }
}
body .reception .reception-content {
  background-image: url(asset("new_site/assets/images/handSwg.svg"));
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 360px) {
  body .reception .reception-content {
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill;
  }
}
body .reception .reception-content .link1 {
  flex: 1;
}
body .reception .reception-content .links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}
body .reception .reception-content .icon {
  font-size: 32px;
  color: #b0c7f9;
}
body .reception .reception-content .icon i {
  font-size: 40px;
}
body .reception .reception-content .info {
  display: flex;
  align-items: center;
}
body .reception .reception-content .info h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  color: #5d809b;
}
body .reception .reception-content .info h2 .phone {
  font-weight: bold;
}
body .reception .reception-content .info p {
  margin-top: 5px;
  font-size: 14px;
  color: #5d809b;
}
body .reception .reception-content .forms-image img {
  width: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}
body #navbar,
body .laptop-navbar,
body .tab-navbar,
body .mobile-navbar,
body section,
body .crambs {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
}
body #navbar {
  background-color: rgb(255, 255, 255);
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  display: none;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 20px 0px;
  grid-auto-flow: row dense;
  grid-template-areas: "logoItem connect connect" "logoItem navBtns navBtns";
}
body #navbar .connect {
  grid-area: connect;
}
body #navbar .logoItem {
  grid-area: logoItem;
}
body #navbar .navBtns {
  grid-area: navBtns;
}
body #navbar .logoItem {
  padding: 30px 0px 30px 52px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.625rem;
}
body #navbar .logoItem .logo {
  width: 8rem;
}
body #navbar .logoItem .logoText {
  max-width: 400px;
  font-weight: bold;
  color: #204B6C;
  font-size: 1.2rem;
}
body #navbar .connect {
  padding: 30px 52px 0px 0px;
  margin: 0%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  gap: 30px;
}
body #navbar .connect .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  padding: 0%;
}
body #navbar .connect .item .number {
  padding: 0%;
}
body #navbar .connect .item .number p {
  padding: 0%;
  margin: 0%;
}
body #navbar .navBtns {
  padding: 12px 52px 30px 0px;
  margin: 0%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  gap: 10px;
}
body #navbar .navBtns .navBtn {
  display: block;
  gap: 1rem;
  text-decoration: none;
}
body #navbar .navBtns .navBtn .text {
  text-decoration: none;
  margin-bottom: 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 41px;
  padding: 0% 18px;
  border: 2px solid #204B6C;
  border-radius: 8px;
  color: #204B6C;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.3rem;
}
body #navbar .navBtns .navBtn .text a,
body #navbar .navBtns .navBtn .text p {
  font-weight: bold;
  font-size: 14px;
}
body #navbar .navBtns .navBtn .text a {
  text-decoration: none;
  color: #5d809b;
}
body #navbar .navBtns .navBtn .text p {
  color: #5d809b;
  font-weight: bold;
  font-size: 14px;
  padding: 0%;
  margin: 0%;
}
body #navbar .navBtns .navBtn .text svg path {
  fill: #204B6C;
}
body #navbar .navBtns .navBtn ul {
  min-width: 200px;
  max-height: 400px;
  position: absolute;
  visibility: hidden;
  display: block;
  flex-direction: column;
  align-items: start;
  z-index: 10000;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 0%;
  margin: 0%;
  border-radius: 8px;
  overflow: hidden scroll;
}
body #navbar .navBtns .navBtn ul li {
  background-color: white;
  width: 100%;
  list-style: none;
  text-decoration: none;
}
body #navbar .navBtns .navBtn ul li a {
  text-decoration: none;
  color: #627e94;
  padding: 0.8rem 1rem;
  display: block;
}
body #navbar .navBtns .navBtn ul li:hover {
  background-color: #627e94;
}
body #navbar .navBtns .navBtn ul li:hover a {
  color: white;
}
body #navbar .navBtns .btn5 .text p {
  line-height: 1rem;
}
body #navbar .navBtns .navBtn:hover > ul {
  visibility: visible;
  transition: 0s;
  z-index: 10000;
}
@media screen and (min-width: 2210px) {
  body #navbar {
    display: grid;
  }
}
body .laptop-navbar {
  background-color: rgb(255, 255, 255);
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  display: none;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 0.5fr 0.5fr;
  gap: 10px 0px;
  grid-auto-flow: row;
  grid-template-areas: "logoItem connect" "navBtns navBtns";
}
body .laptop-navbar .logoItem {
  grid-area: logoItem;
}
body .laptop-navbar .connect {
  grid-area: connect;
}
body .laptop-navbar .navBtns {
  grid-area: navBtns;
}
body .laptop-navbar .logoItem {
  padding: 30px 0px 0px 52px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.625rem;
}
body .laptop-navbar .logoItem .logo {
  width: 8rem;
}
body .laptop-navbar .logoItem .logoText {
  max-width: 350px;
  font-weight: bold;
  color: #204B6C;
  font-size: 1.2rem;
}
body .laptop-navbar .connect {
  padding: 30px 52px 0px 0px;
  margin: 0%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  gap: 30px;
}
body .laptop-navbar .connect .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  padding: 0%;
}
body .laptop-navbar .connect .item .number {
  padding: 0%;
}
body .laptop-navbar .connect .item .number p {
  padding: 0%;
  margin: 0%;
}
body .laptop-navbar .navBtns {
  margin: 0%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
body .laptop-navbar .navBtns .navBtn {
  display: block;
  gap: 1rem;
}
body .laptop-navbar .navBtns .navBtn .text {
  margin-bottom: 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 41px;
  padding: 0% 22px;
  border: 2px solid #204B6C;
  border-radius: 8px;
  color: #204B6C;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
body .laptop-navbar .navBtns .navBtn .text a,
body .laptop-navbar .navBtns .navBtn .text p {
  font-size: 14px;
  font-weight: bold;
}
body .laptop-navbar .navBtns .navBtn .text a {
  text-decoration: none;
  color: #5d809b;
}
body .laptop-navbar .navBtns .navBtn .text p {
  color: #5d809b;
  font-weight: bold;
  font-size: 14px;
  padding: 0%;
  margin: 0%;
}
body .laptop-navbar .navBtns .navBtn .text svg path {
  fill: #204B6C;
}
body .laptop-navbar .navBtns .navBtn ul {
  min-width: 200px;
  max-height: 400px;
  position: absolute;
  visibility: hidden;
  display: block;
  flex-direction: column;
  align-items: start;
  z-index: 10000;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 0%;
  margin: 0%;
  border-radius: 8px;
  overflow: hidden scroll;
}
body .laptop-navbar .navBtns .navBtn ul li {
  background-color: white;
  width: 100%;
  list-style: none;
  text-decoration: none;
}
body .laptop-navbar .navBtns .navBtn ul li a {
  text-decoration: none;
  color: #627e94;
  padding: 0.8rem 1rem;
  display: block;
}
body .laptop-navbar .navBtns .navBtn ul li:hover {
  background-color: #627e94;
}
body .laptop-navbar .navBtns .navBtn ul li:hover a {
  color: white;
}
body .laptop-navbar .navBtns .btn5 .text p {
  line-height: 1rem;
}
body .laptop-navbar .navBtns .navBtn:hover > ul {
  visibility: visible;
  transition: 0s;
  z-index: 10000;
}
@media screen and (min-width: 1920px) and (max-width: 2210px) {
  body .laptop-navbar {
    display: grid;
  }
}
body .hamburger_parent {
  display: none;
  z-index: 2000;
  width: 100%;
  height: 100vh;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.5);
}
body .hamburger__menu {
  position: fixed;
  background: white;
  z-index: 1500;
  top: 0;
  right: 0;
  width: 0%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 10px;
  transition: all 0.3s linear;
  overflow: hidden;
}
body .hamburger__menu .hideMenu {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
}
body .hamburger__menu .hideMenu-icon {
  width: 20px;
  height: 20px;
}
body .hamburger__menu .connect {
  padding: 30px 52px 0px 0px;
  margin: 0%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
body .hamburger__menu .connect .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  padding: 0%;
}
body .hamburger__menu .connect .item .number {
  padding: 0%;
}
body .hamburger__menu .connect .item .number p {
  padding: 0%;
  margin: 0%;
}
body .hamburger__menu .navBtns {
  padding: 0px 52px;
  margin: 0%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
body .hamburger__menu .navBtns .navBtn {
  display: block;
  gap: 1rem;
}
body .hamburger__menu .navBtns .navBtn .text {
  margin-bottom: 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 41px;
  padding: 0% 22px;
  border: 2px solid #204B6C;
  border-radius: 8px;
  color: #204B6C;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
body .hamburger__menu .navBtns .navBtn .text a,
body .hamburger__menu .navBtns .navBtn .text p {
  font-weight: bold;
  font-size: 12px;
}
body .hamburger__menu .navBtns .navBtn .text a {
  text-decoration: none;
  color: #5d809b;
}
body .hamburger__menu .navBtns .navBtn .text p {
  color: #5d809b;
  font-weight: bold;
  font-size: 12px;
  padding: 0%;
  margin: 0%;
}
body .hamburger__menu .navBtns .navBtn .text svg path {
  fill: #204B6C;
}
body .hamburger__menu .navBtns .navBtn ul {
  min-width: 200px;
  max-height: 400px;
  position: absolute;
  visibility: hidden;
  display: block;
  flex-direction: column;
  align-items: start;
  z-index: 10000;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 0%;
  margin: 0%;
  border-radius: 8px;
  overflow: hidden scroll;
}
body .hamburger__menu .navBtns .navBtn ul li {
  background-color: white;
  width: 100%;
  list-style: none;
  text-decoration: none;
}
body .hamburger__menu .navBtns .navBtn ul li a {
  text-decoration: none;
  color: #627e94;
  padding: 0.8rem 1rem;
  display: block;
}
body .hamburger__menu .navBtns .navBtn ul li:hover {
  background-color: #627e94;
}
body .hamburger__menu .navBtns .navBtn ul li:hover a {
  color: white;
}
body .hamburger__menu .navBtns .btn5 .text p {
  line-height: 1rem;
}
body .hamburger__menu .navBtns .navBtn:hover > ul {
  visibility: visible;
  transition: 0s;
  z-index: 10000;
}
body .active_h {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  body .active_h {
    width: 80%;
  }
}
body .tab-navbar {
  background-color: rgb(255, 255, 255);
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  display: none;
  grid-template-columns: 3fr 2.5fr 0.5fr;
  gap: 10px 20px;
  grid-auto-flow: row;
}
body .tab-navbar .logoItem {
  padding: 30px 0px 30px 52px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.625rem;
}
body .tab-navbar .logoItem .logo {
  width: 5rem;
}
body .tab-navbar .logoItem .logoText {
  font-weight: bold;
  color: #204B6C;
  font-size: 0.8rem;
  max-width: 250px;
}
body .tab-navbar .connect {
  padding: 30px 0px;
  margin: 0%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
body .tab-navbar .connect .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  padding: 0%;
}
body .tab-navbar .connect .item .number {
  padding: 0%;
}
body .tab-navbar .connect .item .number p {
  padding: 0%;
  margin: 0%;
}
body .tab-navbar .hamburger {
  padding: 0px 52px 0px 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  cursor: pointer;
}
body .tab-navbar .hamburger-icon {
  width: 25px;
}
@media screen and (min-width: 1000px) and (max-width: 1919px) {
  body .tab-navbar {
    display: grid;
  }
}
body .mobile-navbar {
  background-color: rgb(255, 255, 255);
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  display: none;
  grid-template-columns: 4fr 1fr;
  gap: 10px 0px;
  grid-auto-flow: row;
}
body .mobile-navbar .logoItem {
  padding: 30px 0px 30px 52px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.625rem;
}
@media screen and (max-width: 500px) {
  body .mobile-navbar .logoItem {
    padding: 10px 10px;
  }
}
body .mobile-navbar .logoItem .logo {
  width: 5rem;
}
body .mobile-navbar .logoItem .logoText {
  font-weight: bold;
  color: #204B6C;
  font-size: 0.8rem;
  max-width: 250px;
}
body .mobile-navbar .hamburger {
  padding: 0px 52px 0px 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  cursor: pointer;
}
@media screen and (max-width: 500px) {
  body .mobile-navbar .hamburger {
    padding: 10px 10px;
  }
}
body .mobile-navbar .hamburger-icon {
  width: 25px;
}
@media screen and (max-width: 999px) {
  body .mobile-navbar {
    display: grid;
  }
}
body .crambs {
  background-color: white;
  padding: 0%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: none;
  box-shadow: none;
}
body .crambs-title, body .crambs-body {
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  border-radius: 12px;
  width: 100%;
}
body .crambs-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  body .crambs-title {
    height: 80px;
    justify-content: center;
  }
  body .crambs-title svg {
    display: none;
  }
}
body .crambs-title__text {
  font-size: 20px;
  color: #5d809b;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 500px) {
  body .crambs-title__text {
    font-size: 18px;
  }
}
body .crambs-body {
  padding: 1rem 0rem;
}
body .crambs-body__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  margin-left: 52px;
}
@media screen and (max-width: 500px) {
  body .crambs-body__item {
    margin-left: 10px;
  }
}
body .crambs-body__item_link {
  display: flex;
  flex-direction: row;
  color: #5d809b;
  font-weight: bold;
}
body .crambs-body__item_link svg path {
  fill: #5d809b;
}
body .crambs-body__item_dot {
  width: 2px;
  height: 15px;
  border-radius: 20px;
  transform: rotate(30deg);
  background-color: #627e94;
}
body section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}
body .pagination {
  padding: 15px 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
body .pagination-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
body .pagination-item__btn {
  display: flex;
  flex-direction: row;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
body .pagination-item__btn svg {
  width: 15px;
  height: 15px;
}
body .pagination-item__btn svg path {
  fill: #627e94;
}
body .pagination-item__numbers {
  width: 100%;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
body .pagination-item__numbers .active {
  transform: scale(1.2);
  border: 2px solid #627e94;
}
body .pagination-item__numbers_number {
  text-decoration: none;
  background-color: rgba(98, 126, 148, 0.5);
  color: white;
  border-radius: 50px;
  font-weight: bold;
  width: 25px;
  height: 25px;
  font-size: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: all 0.1s linear;
}
body .pagination-item__numbers_number:hover {
  transform: scale(1.2);
}
body #main3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
body #main3 .textbox {
  padding: 30px 0px 30px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
}
body #main3 .textbox .text {
  display: grid;
  grid-template-columns: 2fr;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  body #main3 .textbox .text {
    display: grid;
    grid-template-columns: 2fr;
    gap: 0.5rem;
  }
  body #main3 .textbox .text .mainTextBig {
    margin: 0%;
    color: #5d809b;
    font-size: 20px;
  }
  body #main3 .textbox .text .mainTextSmall {
    color: #5d809b;
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  body #main3 .textbox .text {
    display: grid;
    grid-template-columns: 2fr;
    gap: 0.5rem;
  }
  body #main3 .textbox .text .mainTextBig {
    margin: 0%;
    color: #5d809b;
    font-size: 20px;
  }
  body #main3 .textbox .text .mainTextSmall {
    color: #5d809b;
    font-size: 12px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  body #main3 .textbox {
    gap: 1rem;
  }
  body #main3 .textbox .text {
    display: grid;
    grid-template-columns: 2fr;
    gap: 0.5rem;
  }
  body #main3 .textbox .text .mainTextBig {
    color: #5d809b;
    font-size: 20px;
    line-height: 2.2rem;
  }
  body #main3 .textbox .text .mainTextSmall {
    color: #5d809b;
    font-size: 14px;
  }
}
@media screen and (min-width: 1440px) and (max-width: 2559px) {
  body #main3 .textbox .text {
    display: grid;
    grid-template-columns: 2fr;
    gap: 0.5rem;
  }
  body #main3 .textbox .text .mainTextBig {
    color: #5d809b;
    font-size: 25px;
    line-height: 2.5rem;
  }
  body #main3 .textbox .text .mainTextSmall {
    color: #5d809b;
    font-size: 18px;
  }
}
@media screen and (min-width: 2560px) {
  body #main3 .textbox .text {
    display: grid;
    grid-template-columns: 2fr;
    gap: 0.5rem;
  }
  body #main3 .textbox .text .mainTextBig {
    color: #5d809b;
    font-size: 36px;
    line-height: 2.5rem;
  }
  body #main3 .textbox .text .mainTextSmall {
    color: #5d809b;
    font-size: 22px;
  }
}
body #main3 .textbox .mainBtns {
  z-index: 300;
  padding: 0%;
  margin: 0%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-items: center;
}
body #main3 .textbox .mainBtns .mainBtn {
  display: block;
  gap: 1rem;
}
body #main3 .textbox .mainBtns .mainBtn .text {
  margin-bottom: 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 41px;
  padding: 0% 22px;
  background-color: #627e94;
  border-radius: 8px;
  color: #204B6C;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
body #main3 .textbox .mainBtns .mainBtn .text p {
  color: white;
  font-weight: bold;
  font-size: 17px;
  padding: 0%;
  margin: 0%;
}
body #main3 .textbox .mainBtns .mainBtn .text #dArrow path {
  fill: white;
}
body #main3 .textbox .mainBtns .mainBtn ul {
  position: absolute;
  visibility: hidden;
  display: block;
  flex-direction: column;
  align-items: start;
  z-index: 10000;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 0%;
  margin: 0%;
  border-radius: 8px;
  overflow: hidden;
}
body #main3 .textbox .mainBtns .mainBtn ul li {
  background-color: white;
  width: 100%;
  list-style: none;
  text-decoration: none;
}
body #main3 .textbox .mainBtns .mainBtn ul li a {
  text-decoration: none;
  color: #627e94;
  padding: 0.8rem 1rem;
  display: block;
  text-align: start;
}
body #main3 .textbox .mainBtns .mainBtn ul li:hover {
  background-color: #627e94;
}
body #main3 .textbox .mainBtns .mainBtn ul li:hover a {
  color: white;
}
body #main3 .textbox .mainBtns .mainBtn:hover > ul {
  visibility: visible;
  transition: 0s;
  z-index: 9000000;
}
@media screen and (max-width: 768px) {
  body #main3 .textbox .mainBtns .mainBtn .text {
    width: 100px;
  }
  body #main3 .textbox .mainBtns .mainBtn .text p {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  body #main3 .textbox .mainBtns .mainBtn .text {
    width: 100px;
  }
  body #main3 .textbox .mainBtns .mainBtn .text p {
    font-size: 12px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1440px) {
  body #main3 .textbox .mainBtns {
    gap: 10px;
  }
  body #main3 .textbox .mainBtns .mainBtn .text {
    width: 60px;
  }
  body #main3 .textbox .mainBtns .mainBtn .text p {
    font-size: 12px;
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  body #main3 .textbox .mainBtns .mainBtn .text {
    width: 100px;
  }
  body #main3 .textbox .mainBtns .mainBtn .text p {
    font-size: 12px;
  }
}
body #main3 .container {
  padding: 42px 52px 42px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1.1fr 0.9fr;
  grid-auto-columns: 1fr;
  gap: 10px 50px;
  grid-auto-flow: row;
  grid-template-areas: "slider slider slider slider" "box1 box1 box2 box2";
}
@media screen and (max-width: 1024px) {
  body #main3 .textbox {
    padding: 30px 52px 0px 52px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1024px) and (max-width: 500px) {
  body #main3 .textbox {
    padding: 10px 10px;
  }
}
@media screen and (max-width: 1024px) {
  body #main3 .textbox .mainBtns {
    justify-content: center;
  }
  body #main3 .container {
    padding: 0px 52px 30px 52px;
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 500px) {
  body #main3 .container {
    padding: 10px 10px;
  }
}
body #main3 .slider {
  grid-area: slider;
}
body #main3 .slider .mainSwiper {
  overflow: hidden;
  position: relative;
  height: 100%;
  margin: 0%;
  padding: 0%;
}
body #main3 .slider .mainSwiper .mySwiper1 {
  width: 100%;
  height: 100%;
}
body #main3 .slider .mainSwiper .mySwiper1 .swiper-wrapper .swiper-slide {
  max-height: 200px;
  border: 1px solid #627e94;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
body #main3 .slider .mainSwiper .mySwiper1 .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #627e94;
}
body #main3 .slider .mainSwiper .mySwiper1 .swiper-wrapper .swiper-slide .item {
  text-decoration: none;
  position: absolute;
  background-color: rgba(98, 126, 148, 0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  width: 95%;
  border-radius: 4px;
  font-size: 9px;
  bottom: 6px;
  height: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
body #main3 .slider .mainSwiper .mySwiper1 .swiper-wrapper .swiper-slide .item p {
  color: whitesmoke;
  font-size: 12px;
}
body #main3 .box1,
body #main3 .box2 {
  border: 1px solid #627e94;
  border-radius: 8px;
  max-height: 200px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
body #main3 .box1 img,
body #main3 .box2 img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
body #main3 .box1 .item,
body #main3 .box2 .item {
  text-decoration: none;
  position: absolute;
  background-color: rgba(98, 126, 148, 0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  width: 97%;
  border-radius: 4px;
  font-size: 9px;
  bottom: 6px;
  height: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
body #main3 .box1 .item p,
body #main3 .box2 .item p {
  color: whitesmoke;
  font-size: 0.8rem;
}
body #main3 .box1 {
  grid-area: box1;
}
body #main3 .box2 {
  grid-area: box2;
}
@media screen and (max-width: 1024px) {
  body #main3 {
    display: flex;
    flex-direction: column;
  }
}
body #news {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body #news .header {
  padding-top: 30px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
body #news .header h2 {
  padding-left: 52px;
  margin: 0%;
  color: #627e94;
}
@media screen and (max-width: 768px) {
  body #news .header h2 {
    font-size: 16px;
    padding-left: 20px;
  }
}
body #news .header .link {
  padding-right: 52px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  body #news .header .link {
    padding-right: 20px;
  }
}
body #news .header .link h3 {
  padding: 0%;
  margin: 0%;
  color: #627e94;
}
@media screen and (max-width: 768px) {
  body #news .header .link h3 {
    font-size: 16px;
  }
}
body #news .container {
  padding: 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 0px 52px;
  padding-bottom: 42px;
}
@media screen and (max-width: 500px) {
  body #news .container {
    padding: 10px 10px;
  }
}
body #news .container .item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
body #news .container .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
body #news .container .item .body {
  width: 100%;
  position: absolute;
  bottom: 0%;
  background-color: rgba(98, 126, 148, 0.8);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
body #news .container .item .body .text {
  display: flex;
  flex-direction: column;
}
body #news .container .item .body .text .date {
  color: rgba(255, 255, 255, 0.5);
  font-weight: normal;
}
body #news .container .item .body .text .discreption {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Qatorlar sonini belgilang */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: whitesmoke;
}
body #news .container .item .body .btn {
  padding: 1rem;
  text-align: end;
}
body #news .container .item .body .btn button,
body #news .container .item .body .btn .view_news {
  right: 0.5rem;
  bottom: 0.5rem;
  padding: 0.5rem 1rem;
  background: none;
  border: 1px solid white;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}
body #news .container .item .body .btn .view_news:hover {
  background-color: rgba(255, 255, 255, 0.71);
  color: #627e94;
}
body #news .container .item .body .btn .view_news:active {
  background: local;
  color: white;
}
body #news .container .viewItem,
body #news .container .newsItems {
  width: 100%;
  max-height: 50rem;
}
body #news .container .viewItem .item {
  width: 100%;
  height: 100%;
}
body #news .container .viewItem .item .body {
  padding-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 0px;
}
body #news .container .viewItem .item .body .text {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
body #news .container .viewItem .item .body .text .date {
  color: rgba(255, 255, 255, 0.71);
  font-weight: normal;
}
body #news .container .viewItem .item .body .text .discreption {
  text-align: justify;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: whitesmoke;
}
body #news .container .newsItems {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
body #news .container .newsItems .item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
body #news .container .newsItems .item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body #news .container .newsItems .item .body {
  position: absolute;
  bottom: -60px;
  background-color: rgba(98, 126, 148, 0.8);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s linear;
}
body #news .container .newsItems .item .body .text {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
body #news .container .newsItems .item .body .text .date {
  color: rgba(255, 255, 255, 0.71);
  font-weight: normal;
}
body #news .container .newsItems .item .body .text .discreption {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: whitesmoke;
}
body #news .container .newsItems .item .body .btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
body #news .container .newsItems .item .body .btn .about {
  display: flex;
  align-items: center;
  color: #5d809b;
  padding: 0rem 0.5rem;
  border-radius: 4px;
  font-weight: bold;
  background-color: white;
}
body #news .container .newsItems .item .body:hover {
  bottom: 0px;
}
@media screen and (max-width: 767px) {
  body #news .container {
    grid-template-columns: 1fr;
  }
  body #news .container .item .body {
    bottom: -100%;
  }
  body #news .container .item:hover .body {
    bottom: 0px;
  }
  body #news .container .newsItems {
    grid-template-columns: 1fr;
  }
  body #news .container .newsItems .item .body {
    bottom: -100%;
  }
  body #news .container .newsItems .item:hover .body {
    bottom: 0px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  body #news .container {
    grid-template-columns: 1fr;
  }
  body #news .container .newsItems {
    grid-template-columns: 1fr 1fr;
  }
}
body #announ {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
body #announ .header {
  padding-top: 30px;
  width: 100%;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
body #announ .header h2 {
  padding-left: 52px;
  color: #627e94;
}
@media screen and (max-width: 768px) {
  body #announ .header h2 {
    font-size: 16px;
    padding-left: 20px;
  }
}
body #announ .header .link {
  padding-right: 52px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  body #announ .header .link {
    padding-right: 20px;
  }
}
body #announ .header .link h3 {
  padding: 0%;
  margin: 0%;
  color: #627e94;
}
@media screen and (max-width: 768px) {
  body #announ .header .link h3 {
    font-size: 16px;
  }
}
body #announ .body {
  padding: 0px 52px 42px 52px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 500px) {
  body #announ .body {
    padding: 10px 10px 20px 10px;
  }
}
body #announ .body .item {
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}
body #announ .body .item-header img {
  display: block;
  width: 100%;
  height: 15rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
body #announ .body .item-body {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
body #announ .body .item-body .date,
body #announ .body .item-body .discription {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #627e94;
  line-height: 1.5rem;
}
body #announ .body .item-body .date {
  color: rgba(98, 126, 148, 0.71);
}
body #announ .body .item-footer {
  padding-top: 1rem;
  text-align: end;
}
body #announ .body .item-footer .btn {
  cursor: pointer;
  right: 0.5rem;
  bottom: 0.5rem;
  background: none;
  border: 0.5px solid #627e94;
  color: #627e94;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
}
body #announ .body .item-footer .btn:hover {
  background: #627e94;
  color: whitesmoke;
}
body #announ .body .item-footer .btn:active {
  background: white;
  color: #627e94;
}
body #announ .body .itemBig {
  width: 42%;
}
body #announ .body .itemSmall {
  width: 22%;
}
@media screen and (max-width: 767px) {
  body #announ .body {
    display: grid;
    grid-template-columns: 1fr;
  }
  body #announ .body .item .itemContainer {
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill;
    background-color: #627e94;
    position: absolute;
    opacity: 0;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    color: white;
    transition: all 0.3s linear;
  }
  body #announ .body .item-header {
    width: 100%;
    height: 10rem;
  }
  body #announ .body .item-header img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
  }
  body #announ .body .item-body {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill;
    height: 60%;
  }
  body #announ .body .item-body .date,
  body #announ .body .item-body .discription {
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5rem;
    font-size: 12px;
    color: white;
  }
  body #announ .body .item-body .date {
    font-size: 10px;
  }
  body #announ .body .item-footer {
    padding-top: 1rem;
    text-align: end;
  }
  body #announ .body .item-footer .btn {
    cursor: pointer;
    background: none;
    border: 0.5px solid white;
    color: #627e94;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    color: white;
  }
  body #announ .body .item:hover .itemContainer {
    opacity: 1;
    height: 100%;
  }
  body #announ .body .itemBig,
  body #announ .body .itemSmall {
    overflow: hidden;
    padding: 0px;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 10rem;
    gap: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  body #announ .body {
    padding: 0px 52px 42px 52px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  body #announ .body .item .itemContainer {
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill;
    height: 100%;
    background-color: #627e94;
    position: absolute;
    opacity: 0;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    color: white;
    transition: all 0.3s linear;
  }
  body #announ .body .item-header {
    width: 100%;
    height: 10rem;
  }
  body #announ .body .item-header img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body #announ .body .item-body {
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill;
    height: 60%;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  body #announ .body .item-body .date,
  body #announ .body .item-body .discription {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5rem;
    font-size: 12px;
    color: white;
  }
  body #announ .body .item-body .date {
    font-size: 10px;
  }
  body #announ .body .item-footer {
    padding-top: 1rem;
    text-align: end;
  }
  body #announ .body .item-footer .btn {
    cursor: pointer;
    right: 0.5rem;
    bottom: -5rem;
    background: none;
    border: 0.5px solid white;
    color: #627e94;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    color: white;
  }
  body #announ .body .item:hover .itemContainer {
    opacity: 1;
    height: 100%;
  }
  body #announ .body .itemBig,
  body #announ .body .itemSmall {
    overflow: hidden;
    padding: 0px;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 10rem;
    gap: 1rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  body #announ .body {
    padding: 0px 52px 42px 52px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  body #announ .body .item .itemContainer {
    width: 100%;
    height: 100%;
    background-color: #627e94;
    position: absolute;
    opacity: 0;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    transition: all 0.3s linear;
  }
  body #announ .body .item-header {
    width: 100%;
    height: 10rem;
  }
  body #announ .body .item-header img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body #announ .body .item-body {
    width: 100%;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  body #announ .body .item-body .date,
  body #announ .body .item-body .discription {
    padding: 0px 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    text-align: start;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5rem;
    font-size: 12px;
    color: white;
  }
  body #announ .body .item-body .date {
    font-size: 10px;
  }
  body #announ .body .item-footer {
    padding-top: 1rem;
    text-align: end;
  }
  body #announ .body .item-footer .btn {
    cursor: pointer;
    right: 0.5rem;
    bottom: 0.5rem;
    background: none;
    border: 0.5px solid white;
    color: #627e94;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    color: white;
  }
  body #announ .body .item:hover .itemContainer {
    opacity: 1;
  }
  body #announ .body .itemBig,
  body #announ .body .itemSmall {
    overflow: hidden;
    padding: 0px;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 10rem;
    gap: 1rem;
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  body #announ .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas: "header body";
  }
  body #announ .header {
    grid-area: header;
  }
  body #announ .body {
    grid-area: body;
  }
  body #announ .body {
    padding: 0px 52px 42px 52px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  body #announ .body .item {
    display: flex;
    flex-direction: row;
  }
  body #announ .body .item-header {
    width: 30rem;
    height: 100%;
  }
  body #announ .body .item-header img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0px;
  }
  body #announ .body .item-body {
    width: 70%;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  body #announ .body .item-body .date,
  body #announ .body .item-body .discription {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5rem;
    font-size: 14px;
    color: #5d809b;
  }
  body #announ .body .item-body .date {
    font-size: 10px;
  }
  body #announ .body .item-footer {
    padding: 0.5rem;
    text-align: end;
  }
  body #announ .body .item-footer .btn {
    cursor: pointer;
    background: none;
    border: 0.5px solid #627e94;
    color: #627e94;
    border-radius: 4px;
    color: #5d809b;
  }
  body #announ .body .itemBig,
  body #announ .body .itemSmall {
    overflow: hidden;
    padding: 0px;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 10rem;
    gap: 1rem;
  }
  body #announ .body .itemBig .item-header,
  body #announ .body .itemSmall .item-header {
    width: 40%;
  }
  body #announ .body .itemBig .item-header img,
  body #announ .body .itemSmall .item-header img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body #announ .body .itemBig .itemContainer,
  body #announ .body .itemSmall .itemContainer {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 60%;
    gap: 10px;
    position: relative;
  }
  body #announ .body .itemBig .itemContainer .item-footer,
  body #announ .body .itemSmall .itemContainer .item-footer {
    position: absolute;
    right: 0.5rem;
    bottom: 1rem;
  }
}
@media screen and (min-width: 2560px) {
  body #announ .body {
    padding: 0px 52px 42px 52px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  body #announ .body .itemBig {
    width: 42%;
  }
  body #announ .body .itemSmall {
    width: 22%;
  }
}
body #birthday {
  position: relative;
}
body #birthday .image-left {
  position: absolute;
  left: 0px;
  bottom: 0px;
}
body #birthday .image-right {
  position: absolute;
  right: 0px;
  bottom: 0px;
}
body #birthday .container {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  padding: 40px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
body #birthday .container .slider {
  width: 70%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
body #birthday .container .slider .box {
  padding: 0px 52px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
body #birthday .container .slider .box .btn {
  border: 1px solid #627e94;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  padding: 0.2rem;
  cursor: pointer;
}
body #birthday .container .slider .swiper {
  display: flex;
  flex-direction: row;
}
body #birthday .container .slider .swiper .birthdaySwiper {
  position: relative;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  margin: 0;
  padding: 0;
}
body #birthday .container .slider .swiper .birthdaySwiper .birthSwiper .swiper-wrapper .swiper-slide {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: ce;
  justify-content: center;
  align-items: center;
  padding: 3rem 0rem;
  margin: 0%;
}
body #birthday .container .slider .swiper .birthdaySwiper .birthSwiper .swiper-wrapper .swiper-slide .item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
body #birthday .container .slider .swiper .birthdaySwiper .birthSwiper .swiper-wrapper .swiper-slide .item .name,
body #birthday .container .slider .swiper .birthdaySwiper .birthSwiper .swiper-wrapper .swiper-slide .item .staff {
  color: #5d809b;
}
body #birthday .container .slider .swiper .birthdaySwiper .birthSwiper .swiper-wrapper .swiper-slide .item .name {
  font-size: 25px;
}
body #birthday .container .slider .swiper .birthdaySwiper .birthSwiper .swiper-wrapper .swiper-slide .item .staff {
  font-size: 18px;
}
body #birthday .container .text {
  text-align: center;
  color: #5d809b;
  font-size: 17px;
}
body #counterV {
  overflow: hidden;
  position: relative;
}
body #counterV .video {
  top: 0px;
  left: 0px;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body #counterV .value {
  border-radius: 8px;
  background-color: rgba(98, 126, 148, 0.6);
  z-index: 999;
  width: 100%;
  padding: 40px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
body #counterV .value .header {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
body #counterV .value .header h2 {
  padding: 0%;
  margin: 0%;
  color: whitesmoke;
}
@media screen and (max-width: 768px) {
  body #counterV .value .header h2 {
    font-size: 16px;
  }
}
body #counterV .value .body {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}
body #counterV .value .body .item {
  padding: 1rem;
  width: 10rem;
  height: 10rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
}
@media screen and (max-width: 768px) {
  body #counterV .value .body .item {
    width: 7rem;
    height: 7rem;
  }
}
body #counterV .value .body .item .number {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  top: 25%;
}
@media screen and (max-width: 500px) {
  body #counterV .value .body .item .number {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  body #counterV .value .body .item .number {
    font-size: 1.5rem;
  }
}
body #counterV .value .body .item .text {
  padding: 0rem 1rem;
  position: absolute;
  top: 55%;
  font-size: 1rem;
  text-align: center;
  color: white;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  body #counterV .value .body .item .text {
    font-size: 12px;
  }
}
body #counterV .value .body .item {
  overflow: hidden;
  transition: 0.5s all linear;
}
body #counterV .value .body .item::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  transition: 0.5s all;
}
body #counterV .value .body .item:hover::before {
  left: 125%;
}
body .fast-links {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}
body .fast-links__header {
  padding-top: 42px;
}
body .fast-links__header_text {
  color: #627e94;
}
@media screen and (max-width: 768px) {
  body .fast-links__header_text {
    font-size: 16px;
  }
}
body .fast-links__body {
  padding: 0px 52px;
  padding-bottom: 42px;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 360px) {
  body .fast-links__body {
    padding: 10px 10px;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
@media screen and (max-width: 610px) {
  body .fast-links__body {
    padding: 10px 10px;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media screen and (min-width: 610px) and (max-width: 1024px) {
  body .fast-links__body {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
}
body .fast-links__body_item {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  height: 60px;
  border: 0.2px solid #627e94;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  gap: 1rem;
}
body .fast-links__body_item_text {
  color: #5d809b;
}
body #systems {
  display: flex;
  flex-direction: column;
}
body #systems .header {
  padding-top: 42px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
body #systems .header h2 {
  padding: 0%;
  margin: 0%;
  color: #627e94;
}
@media screen and (max-width: 768px) {
  body #systems .header h2 {
    font-size: 16px;
  }
}
body #systems .body {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
body #systems .body .box {
  padding: 0px 52px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 500px) {
  body #systems .body .box {
    padding: 10px 10px;
  }
}
body #systems .body .box .btn {
  border: 1px solid #627e94;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2rem;
  border-radius: 8px;
  padding: 0.2rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  body #systems .body .box {
    display: none;
  }
}
body #systems .body .swiper {
  width: 100%;
}
body #systems .body .swiper .systemSwiper {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}
body #systems .body .swiper .systemSwiper .sysSwiper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: center;
}
body #systems .body .swiper .systemSwiper .sysSwiper .swiper-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
body #systems .body .swiper .systemSwiper .sysSwiper .swiper-wrapper .swiper-slide {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: ce;
  justify-content: center;
  align-items: center;
  padding: 3rem 0rem;
  margin: 0%;
}
body #systems .body .swiper .systemSwiper .sysSwiper .swiper-wrapper .swiper-slide .item {
  border-radius: 20px;
  width: 11.8125rem;
  height: 10.6875rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 0.2rem;
  border: 1px solid #627e94;
  position: relative;
}
body #systems .body .swiper .systemSwiper .sysSwiper .swiper-wrapper .swiper-slide .item svg path {
  fill: #627e94;
}
body #systems .body .swiper .systemSwiper .sysSwiper .swiper-wrapper .swiper-slide .item .value {
  margin-top: 2rem;
  display: flex;
  align-items: end;
}
body #systems .body .swiper .systemSwiper .sysSwiper .swiper-wrapper .swiper-slide .item .value img {
  top: 2rem;
}
body #systems .body .swiper .systemSwiper .sysSwiper .swiper-wrapper .swiper-slide .item .value .size-60 {
  width: 60px;
  height: 60px;
}
body #systems .body .swiper .systemSwiper .sysSwiper .swiper-wrapper .swiper-slide .item .value .size-80 {
  width: 80px;
  height: 80px;
}
body #systems .body .swiper .systemSwiper .sysSwiper .swiper-wrapper .swiper-slide .item .text {
  position: absolute;
  width: 100%;
  top: 8rem;
  color: #627e94;
  font-weight: bold;
  font-size: 18px;
}
body #sites {
  display: flex;
  flex-direction: column;
}
body #sites .header {
  padding-top: 42px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
body #sites .header h2 {
  padding: 0%;
  margin: 0%;
  color: #627e94;
}
@media screen and (max-width: 768px) {
  body #sites .header h2 {
    font-size: 16px;
  }
}
body #sites .body {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
body #sites .body .box {
  padding: 0px 52px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 500px) {
  body #sites .body .box {
    padding: 10px 10px;
  }
}
body #sites .body .box .btn {
  border: 1px solid #627e94;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2rem;
  border-radius: 8px;
  padding: 0.2rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  body #sites .body .box {
    display: none;
  }
}
body #sites .body .swiper {
  width: 100%;
}
body #sites .body .swiper .sitetemSwiper {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}
body #sites .body .swiper .sitetemSwiper .sitSwiper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: center;
}
body #sites .body .swiper .sitetemSwiper .sitSwiper .swiper-wrapper .swiper-slide {
  position: relative;
  text-align: center;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0rem;
  margin: 0%;
}
body #sites .body .swiper .sitetemSwiper .sitSwiper .swiper-wrapper .swiper-slide .item {
  border-radius: 20px;
  width: 11.8125rem;
  height: 10.6875rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 0.2rem;
  background-color: #627e94;
  position: relative;
}
body #sites .body .swiper .sitetemSwiper .sitSwiper .swiper-wrapper .swiper-slide .item svg path {
  fill: #627e94;
}
body #sites .body .swiper .sitetemSwiper .sitSwiper .swiper-wrapper .swiper-slide .item .value {
  margin-top: 2rem;
  display: flex;
  align-items: start;
}
body #sites .body .swiper .sitetemSwiper .sitSwiper .swiper-wrapper .swiper-slide .item .value img {
  top: 2rem;
}
body #sites .body .swiper .sitetemSwiper .sitSwiper .swiper-wrapper .swiper-slide .item .value .size-60 {
  width: 60px;
  height: 60px;
}
body #sites .body .swiper .sitetemSwiper .sitSwiper .swiper-wrapper .swiper-slide .item .value .size-80 {
  width: 80px;
  height: 80px;
}
body #sites .body .swiper .sitetemSwiper .sitSwiper .swiper-wrapper .swiper-slide .item .text {
  position: absolute;
  width: 100%;
  top: 8rem;
  color: white;
}
body #footer {
  background: #627e94;
  display: flex;
  justify-content: center;
  border-radius: 20px 20px 0px 0px;
  position: relative;
}
body #footer .img {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0%;
  margin: 0%;
}
body #footer .img img {
  padding: 0%;
  margin: 0%;
}
body #footer .img .img1,
body #footer .img .img3 {
  position: absolute;
}
body #footer .img .img1 {
  left: 0px;
  bottom: 0px;
}
body #footer .img .img3 {
  top: 0px;
  right: 0px;
}
body #footer .footer {
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
body #footer .footer .body {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  gap: 20px;
}
body #footer .footer .body .logoItem {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 52px;
}
body #footer .footer .body .logoItem div {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
body #footer .footer .body .logoItem div .itemLogo {
  width: 8rem;
}
body #footer .footer .body .logoItem div .itemText {
  color: whitesmoke;
  text-align: center;
  font-size: 14px;
  width: 250px;
}
body #footer .footer .body .footer-items {
  display: flex;
  flex-direction: column;
  padding: 30px 52px 30px 0px;
  gap: 10px;
  display: none;
}
body #footer .footer .body .fItem {
  width: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
body #footer .footer .body .fItem .header p {
  font-size: 14px;
  color: whitesmoke;
}
body #footer .footer .body .fItem .header .line {
  width: 100%;
  height: 3px;
  background-color: whitesmoke;
}
body #footer .footer .body .fItem .body {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 1rem;
}
body #footer .footer .body .fItem .body .item {
  text-decoration: none;
  color: whitesmoke;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}
body #footer .footer .body .fItem .body .item .android {
  width: 100%;
  text-align: center;
}
body #footer .footer .body .fItem .body .item .android img {
  width: 120px;
}
body #footer .footer .body .fItem .body .item .logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: whitesmoke;
  border-radius: 50%;
  padding: 0.3rem;
}
body #footer .footer .body .fItem .body .item .logo img {
  width: 15px;
  height: 15px;
}
body #footer .footer .body .fItem .body .item .text {
  font-size: 14px;
}
body #footer .footer .copyRight {
  text-align: center;
  font-size: 12px;
  color: whitesmoke;
  padding: 32px 10px;
}
@media screen and (max-width: 767px) {
  body #footer .footer .body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  body #footer .footer .body .logoItem {
    padding: 30px 0px 0px 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  body #footer .footer .body .footer-items {
    padding: 0px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  body #footer .footer .body .footer-items .fItem {
    width: 15rem;
    padding: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  body #footer .footer .body {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  body #footer .footer .body .logoItem {
    padding: 30px 0px 0px 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  body #footer .footer .body .footer-items {
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  body #footer .footer .body {
    display: flex;
    flex-direction: column;
    padding-top: 42px;
  }
  body #footer .footer .body .logoItem {
    padding: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  body #footer .footer .body .footer-items {
    padding: 0px;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  body #footer .footer .body .footer-items .fItem {
    width: 15rem;
  }
  body #footer .footer .body .footer-items .fItem .body {
    padding: 0px;
  }
}
@media screen and (min-width: 1440px) and (max-width: 2559px) {
  body #footer .footer .body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
  }
  body #footer .footer .body .logoItem {
    padding: 42px 0px 0px 52px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  body #footer .footer .body .footer-items {
    width: 70%;
    padding: 42px 52px 0px 0px;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  body #footer .footer .body .footer-items .fItem {
    width: 13rem;
  }
}
@media screen and (min-width: 2560px) {
  body #footer .footer .body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10rem;
  }
  body #footer .footer .body .logoItem {
    padding: 42px 0px 0px 52px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  body #footer .footer .body .footer-items {
    width: 70%;
    padding: 42px 52px 0px 0px;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.fade-right {
  animation: fade-right;
}

.fade-left {
  animation: fade-left;
}

.fade-up {
  animation: fade-up;
}

.fade-down {
  animation: fade-down;
}

@keyframes fade-right {
  from {
    opacity: 0;
    transform: translateX(300px);
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-left {
  from {
    opacity: 0;
    transform: translateX(-300px);
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(-300px);
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(300px);
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */