.swiper-pagination-bullet {
  width: 150px;
  border-radius: 2px;
  height: 5px;
  background-color: white;
  opacity: 1;
}

@media (max-width: 575px) {
  .swiper-pagination-bullet {
    width: 40px;
    height: 3px;
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  .swiper-pagination-bullet {
    width: 100px;
    height: 4px;
  }
}
.swiper-pagination-bullet-active {
  background-color: #317A44;
}

html {
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.article {
  padding: 1.25rem 0;
  background-color: white;
}

.article.gray {
  background-color: #F5F5F5;
}

.text-green {
  color: #317A44;
  font-weight: 700;
}

.text-black {
  color: #222222;
  font-weight: 300;
}

.navbar {
  background-color: white;
  padding: 1.5rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}
.navbar > div {
  max-width: 1320px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.navbar .logo {
  display: block;
  width: 8.25rem;
  height: 2rem;
  background-image: url(/images/logo.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.navbar .menu {
  display: none;
  gap: 3rem;
}
.navbar .menu span {
  display: block;
  color: #5D5D5D;
  font-weight: 500;
  line-height: 1.125rem;
  transition: all 0.2s ease-in-out;
}
.navbar .menu span:hover {
  cursor: pointer;
  color: #317A44;
}
.navbar .mobileMenuBtn {
  width: 1.5rem;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.navbar .mobileMenuBtn span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #5D5D5D;
  border-radius: 0.375rem;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  transform-origin: left center;
}
.navbar .mobileMenuBtn span:nth-child(1) {
  top: 0px;
}
.navbar .mobileMenuBtn span:nth-child(2) {
  top: 1rem;
}
.navbar .mobileMenuBtn.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -0.5px;
  left: 8px;
}
.navbar .mobileMenuBtn.open span:nth-child(2) {
  transform: rotate(-45deg);
  top: calc(1rem + 0.5px);
  left: 8px;
}
.navbar .mobileMenuBtn:hover {
  cursor: pointer;
}

.mobileMenu {
  position: absolute;
  right: -180px;
  top: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem 4rem 2rem 1.5rem;
  border-bottom-left-radius: 0.375rem;
  transition: right 400ms ease-in-out;
}
.mobileMenu span {
  display: block;
  color: #5D5D5D;
  font-weight: 500;
  line-height: 1.125rem;
  transition: all 0.2s ease-in-out;
}
.mobileMenu span:hover {
  cursor: pointer;
  color: #317A44;
}

.bannerTop {
  margin-top: 80px;
  aspect-ratio: 0.85;
  position: relative;
}
.bannerTop .bannerTop_content {
  aspect-ratio: 0.85;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
  background-size: cover;
}
.bannerTop .bannerTop_content h1 {
  color: white;
  font-weight: 300;
  font-size: 2rem;
  line-height: 2.375rem;
  margin-bottom: 1.5rem;
}
.bannerTop .bannerTop_content h1 span {
  display: block;
  font-weight: 700;
}
.bannerTop .bannerTop_content button {
  background: transparent;
  outline: none;
  border: 2.5px solid white;
  border-radius: 0.375rem;
  padding: 0.75rem 2.875rem;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}
.bannerTop .bannerTop_content button:hover {
  background-color: white;
  color: #317A44;
  cursor: pointer;
}
.bannerTop .bannerTop_content.aboutUs {
  background-image: url(/images/bannerTopAboutUs.png);
}
.bannerTop .bannerTop_content.mission {
  background-image: url(/images/bannerTopMission.png);
}
.bannerTop .bannerTop_content.cooperation {
  background-image: url(/images/bannerTopCooperation.png);
}
.bannerTop .bannerTop_content.contact {
  background-image: url(/images/bannerTopContact.png);
}

@media (max-width: 767px) {
  .bannerTop .bannerTop_content.aboutUs {
    background-image: url(/images/bannerTopAboutUsMobile.jpg);
  }
  .bannerTop .bannerTop_content.mission {
    background-image: url(/images/bannerTopMissionMobile.jpg);
  }
  .bannerTop .bannerTop_content.cooperation {
    background-image: url(/images/bannerTopCooperationMobile.jpg);
  }
  .bannerTop .bannerTop_content.contact {
    background-image: url(/images/bannerTopContactMobile.jpg);
  }
}
.article .title {
  font-size: 1.5rem !important;
  line-height: 1.875rem;
  margin-bottom: 1.5rem;
}
.article .title--footer {
  font-size: 1.5rem !important;
  line-height: 1.875rem;
  margin-bottom: 1.5rem;
  color: #222222;
  font-weight: 700;
}
.article .body p {
  margin-bottom: 1rem;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.125rem;
}
.article .contactLinks {
  padding: 1rem 0;
}
.article .contactLinks a {
  color: #222222;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  display: block;
  margin-bottom: 1rem;
  padding-left: 2rem;
  -webkit-mask-position: left center;
          mask-position: left center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: relative;
  height: 1.125rem;
}
.article .contactLinks a:hover {
  color: #317A44;
}
.article .contactLinks a:hover::before {
  background-color: #317A44;
}
.article .contactLinks a::before {
  background-color: black;
  position: absolute;
  left: 0;
  display: block;
  content: "";
  height: 1.125rem;
  -webkit-mask-position: left center;
          mask-position: left center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: all 0.2s ease-in-out;
}
.article .contactLinks .phone::before {
  width: 1.125rem;
  -webkit-mask-image: url(/images/phone.svg);
          mask-image: url(/images/phone.svg);
}
.article .contactLinks .mail::before {
  width: 1.25rem;
  -webkit-mask-image: url(/images/email.svg);
          mask-image: url(/images/email.svg);
}
.article .imageDiv {
  display: flex;
  align-items: center;
  justify-content: center;
}
.article .imageDiv .image {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 1.62;
}

#aboutUs .image {
  background-image: url(/images/aboutUs.png);
}

#mission .image {
  background-image: url(/images/mission.png);
}

#cooperation .image {
  background-image: url(/images/cooperation.png);
}

#contact .image {
  background-image: url(/images/contact.png);
}

@media (max-width: 767px) {
  .bannerTop_content {
    background-position: right center;
  }
}
@media (max-width: 991px) {
  .title:first-child span {
    display: block;
  }
}
@media (min-width: 1400px) {
  .bannerTop .bannerTop_content h1 {
    font-size: 4rem !important;
    line-height: 4.875rem !important;
    margin-bottom: 3rem !important;
  }
  .bannerTop .bannerTop_content button {
    border: 4px solid white !important;
    padding: 1rem 3.5rem !important;
    font-size: 1.5rem !important;
  }
}
@media (min-width: 1200px) {
  .contactLinks {
    display: flex;
    gap: 8rem;
  }
  .contactLinks a {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .bannerTop {
    aspect-ratio: 3.2;
  }
  .bannerTop .bannerTop_content {
    aspect-ratio: 3.2;
  }
  .navbar {
    position: fixed;
    width: 100%;
  }
  .navbar .logo {
    width: 15.375rem;
    height: 3.625rem;
  }
  .menu {
    display: flex !important;
  }
  .menu span {
    font-size: 1.375rem;
  }
  .mobileMenuBtn,
  .mobileMenu {
    display: none;
  }
  .article {
    padding: 4rem 0;
  }
  .article .title {
    font-size: 2.5rem !important;
    line-height: 3rem;
    margin-bottom: 4rem;
  }
  .article .title--footer {
    font-size: 2.5rem !important;
    line-height: 3rem;
    margin-bottom: 4rem;
    color: #222222;
    font-weight: 700;
  }
  .article .body p {
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.375rem;
  }
  .article .contactLinks {
    padding: 5.375rem 0;
  }
  .article .contactLinks a {
    color: #222222;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    display: block;
    margin-bottom: 2rem;
    padding-left: 2rem;
    font-size: 1.25rem;
    -webkit-mask-position: left center;
            mask-position: left center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    position: relative;
    height: 1.25rem;
  }
  .article .contactLinks a:hover {
    color: #317A44;
  }
  .article .contactLinks a:hover::before {
    background-color: #317A44;
  }
  .article .contactLinks a::before {
    background-color: black;
    position: absolute;
    left: 0;
    display: block;
    content: "";
    height: 1.5rem;
    -webkit-mask-position: left center;
            mask-position: left center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    transition: all 0.2s ease-in-out;
  }
  .article .contactLinks .phone::before {
    width: 1.5rem;
    -webkit-mask-image: url(/images/phone.svg);
            mask-image: url(/images/phone.svg);
  }
  .article .contactLinks .mail::before {
    width: 1.5rem;
    -webkit-mask-image: url(/images/email.svg);
            mask-image: url(/images/email.svg);
  }
  .article .image {
    background-size: cover;
    background-repeat: no-repeat;
    aspect-ratio: 1.62;
  }
  #mission .image {
    background-position: left center;
  }
  #cooperation .image {
    background-position: right center;
  }
}
@media (min-width: 992px) {
  .article:nth-child(odd) .content {
    padding-right: 4rem;
  }
  .article .imageDiv {
    position: relative;
  }
  .article .imageDiv .image {
    position: absolute;
    height: 100%;
    top: 0;
    background-position: center;
  }
  .article:nth-child(even) .imageDiv {
    order: -1;
  }
  .article:nth-child(even) .content {
    padding-left: 4rem;
  }
}/*# sourceMappingURL=style.css.map */