@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  font-size: 16px;
  line-height: 1.4;
  padding-top: 73px;
  min-height: 100%;
}
@media (max-width: 681px) {
  body {
    padding-top: 58px;
    font-size: 14px;
  }
}

a {
  text-decoration: none;
  font-family: "Poppins", serif;
  transition: all 0.4s;
  opacity: 1;
}
a:hover {
  opacity: 0.5;
}

p,
a,
li,
span {
  font-family: "Poppins", serif;
}

h1,
h2,
h3,
h4 {
  font-family: "Merriweather", serif;
}

.nw-h1 {
  font-size: 48px;
  font-family: "Merriweather", serif;
}

.nw-btn {
  padding: 12px 18px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
}
.nw-btn svg {
  width: 15px;
  height: 15px;
}
.nw-btn span {
  margin-left: 4px;
}
@media (max-width: 681px) {
  .nw-btn span {
    font-size: 12px;
  }
}
@media (max-width: 681px) {
  .nw-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}
.nw-btn--primary {
  color: #ffffff;
  background-color: #000000;
}
.nw-btn--primary-white {
  color: #000000;
  background-color: #ffffff;
}
.nw-btn--primary-white svg path {
  fill: #000000;
}
.nw-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
}

.nw-header {
  background-color: #000000;
  padding: 12px 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
}
.nw-header .nw-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nw-header__item {
  width: 100%;
}
.nw-header__center {
  text-align: center;
}
.nw-header__nav {
  align-items: center;
  position: fixed;
}
.nw-header__nav-item {
  color: #ffffff;
  font-size: 14px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.nw-header__nav-item:not(:last-child) {
  margin-right: 18px;
}
@media (max-width: 681px) {
  .nw-header__nav-item {
    display: block;
    padding: 12px 10px 12px 28px;
  }
}
@media (max-width: 681px) {
  .nw-header__nav-item-dropdown {
    padding: 0;
  }
}
.nw-header__nav-item-dropdown span {
  cursor: pointer;
}
@media (max-width: 681px) {
  .nw-header__nav-item-dropdown span {
    display: none;
  }
}
.nw-header__nav-item-dropdown-list {
  display: none;
  position: absolute;
  padding-top: 10px;
}
.nw-header__nav-item-dropdown-list a {
  display: block;
  padding: 8px 12px;
  background: #ffffff;
  min-width: 200px;
  opacity: 1;
  color: #000000;
}
@media (max-width: 681px) {
  .nw-header__nav-item-dropdown-list a {
    min-width: 100%;
    padding: 12px 10px 12px 28px;
    background: #000000;
    color: #ffffff;
  }
}
@media (max-width: 681px) {
  .nw-header__nav-item-dropdown-list {
    display: block;
    width: 100%;
  }
}
.nw-header__nav-item-dropdown:hover .nw-header__nav-item-dropdown-list {
  display: block;
}
@media (min-width: 681px) {
  .nw-header__nav {
    display: flex;
    position: relative;
  }
}
@media (max-width: 681px) {
  .nw-header__nav {
    display: none;
    padding-top: 40px;
    width: 200px;
    height: 100%;
    left: 0;
    background-color: #000000;
    z-index: 999;
  }
}
.nw-header .nw-logo {
  display: inline-block;
  width: 180px;
}
@media (max-width: 681px) {
  .nw-header .nw-logo {
    width: 120px;
  }
}
.nw-header .nw-logo img {
  width: 100%;
}
.nw-header__right {
  text-align: right;
}
.nw-header .nw-social {
  display: flex;
  align-items: center;
  justify-content: end;
}
.nw-header .nw-social__item {
  display: block;
  width: 22px;
  height: 22px;
}
@media (max-width: 681px) {
  .nw-header .nw-social__item {
    width: 18px;
    height: 18px;
  }
}
.nw-header .nw-social__item:not(:last-child) {
  margin-right: 18px;
}
.nw-header .nw-social__item svg {
  width: 100%;
  height: 100%;
  color: #ffffff;
}
.nw-header__item-menu {
  display: none;
}
@media (max-width: 681px) {
  .nw-header__item-menu {
    display: block;
  }
}
.nw-header .nw-menu svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
}
.nw-header .nw-menu__open {
  display: none;
}
.nw-header .nw-menu__close {
  display: block;
}
.nw-header.nw-menu-active .nw-header__nav {
  display: block;
}
.nw-header.nw-menu-active .nw-menu__close {
  display: none;
}
.nw-header.nw-menu-active .nw-menu__open {
  display: block;
}

.nw-banner {
  position: relative;
  height: 550px;
}
@media (max-width: 681px) {
  .nw-banner {
    height: auto;
  }
}
.nw-banner__item {
  height: 100%;
}
@media (max-width: 681px) {
  .nw-banner__item {
    display: flex;
  }
}
.nw-banner__item-img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.nw-banner__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nw-banner__item-content {
  max-width: 490px;
  position: relative;
  z-index: 3;
  align-items: center;
}
.nw-banner__item-content .nw-h1 {
  margin-bottom: 14px;
}
@media (max-width: 681px) {
  .nw-banner__item-content .nw-h1 {
    font-size: 16px;
  }
}
.nw-banner__item-content p {
  font-size: 16px;
}
@media (max-width: 681px) {
  .nw-banner__item-content p {
    font-size: 10px;
  }
}
.nw-banner__item-content .nw-btn--primary {
  margin-top: 20px;
}
@media (max-width: 681px) {
  .nw-banner__item-content {
    padding-top: 24px;
    padding-bottom: 24px;
    max-width: 205px;
  }
}
.nw-banner .nw-container {
  height: 100%;
  display: flex;
  align-items: center;
}

.nw-category {
  --gap-spacing: 24px;
  background-color: #ffffff;
  padding-top: var(--gap-spacing);
}
@media (max-width: 681px) {
  .nw-category {
    --gap-spacing: 12px;
  }
}
.nw-category__wrapper {
  display: flex;
  column-gap: var(--gap-spacing);
  row-gap: var(--gap-spacing);
}
@media (max-width: 681px) {
  .nw-category__wrapper {
    display: block;
  }
}
.nw-category__left {
  width: 65%;
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--gap-spacing);
  row-gap: var(--gap-spacing);
}
@media (max-width: 681px) {
  .nw-category__left {
    width: 100%;
  }
}
.nw-category__right {
  width: 35%;
}
.nw-category__right .nw-category__item {
  margin-bottom: var(--gap-spacing);
}
.nw-category__right .nw-category__item:last-child {
  margin-bottom: 0;
}
@media (max-width: 681px) {
  .nw-category__right {
    margin-top: var(--gap-spacing);
    width: 100%;
    display: flex;
    column-gap: var(--gap-spacing);
    margin-bottom: 0;
  }
}
.nw-category__item {
  position: relative;
  width: calc(50% - 12px);
  display: flex;
  height: 200px;
  background-color: #EDECED;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
@media (max-width: 681px) {
  .nw-category__item {
    width: calc(50% - 6px);
    height: 118px !important;
  }
}
.nw-category__item h3 {
  font-size: 22px;
}
@media (max-width: 681px) {
  .nw-category__item h3 {
    font-size: 12px;
  }
}
.nw-category__item p {
  font-size: 14px;
}
@media (max-width: 681px) {
  .nw-category__item p {
    font-size: 9px;
  }
}
.nw-category__item .nw-btn {
  position: relative;
  z-index: 6;
}
.nw-category__item .nw-btn--secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  border: 1px solid #000000;
  padding: 6px 8px;
}
.nw-category__item .nw-btn--secondary svg path {
  fill: #000000;
}
.nw-category__item--full {
  width: 100%;
}
.nw-category__item--3-column {
  flex-direction: row;
  align-items: center;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-right: 0 !important;
}
.nw-category__item--3-column .nw-category__content-img img {
  width: 240px;
}
@media (max-width: 681px) {
  .nw-category__item--3-column .nw-category__content-img img {
    width: 180px;
  }
}
.nw-category__item--gray {
  background-color: #EDECED;
}
.nw-category__item--gray h3,
.nw-category__item--gray p {
  color: #000000;
}
.nw-category__item--gray .nw-btn {
  border: 1px solid #000000;
}
.nw-category__item--gray svg path {
  fill: #000000;
}
.nw-category__item--black {
  background-color: #000000;
}
.nw-category__item--black h3,
.nw-category__item--black p {
  color: #ffffff;
}
.nw-category__item--black .nw-btn {
  border: 1px solid #ffffff;
}
.nw-category__item--black svg path {
  fill: #ffffff !important;
}
@media (min-width: 681px) {
  .nw-category__item {
    padding: 24px;
  }
}
@media (max-width: 681px) {
  .nw-category__item {
    padding: 12px;
  }
}
.nw-category__content {
  position: relative;
  z-index: 2;
}
.nw-category__content-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (max-width: 681px) {
  .nw-category__content-bg {
    right: -6px;
  }
}
.nw-category__content-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
}
@media (max-width: 681px) {
  .nw-category__content {
    width: 86px;
  }
}

.nw-about {
  background-color: #ffffff;
  padding: 80px 0;
}
@media (max-width: 681px) {
  .nw-about {
    padding: 30px 0;
  }
}
.nw-about .nw-container {
  display: flex;
  column-gap: 80px;
  row-gap: 80px;
  align-items: center;
}
@media (max-width: 681px) {
  .nw-about .nw-container {
    display: block;
  }
}
.nw-about h2,
.nw-about p {
  color: #000000;
}
.nw-about__left {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nw-about__left img {
  max-width: 380px;
}
@media (max-width: 681px) {
  .nw-about__left img {
    width: 240px;
  }
}
@media (max-width: 681px) {
  .nw-about__left {
    width: 100%;
    margin-bottom: 22px;
  }
}
.nw-about__right {
  width: 50%;
}
.nw-about__right .nw-h2 {
  margin-bottom: 22px;
}
@media (max-width: 681px) {
  .nw-about__right .nw-h2 {
    font-size: 16px;
    margin-bottom: 14px;
  }
}
.nw-about__right p {
  margin-bottom: 18px;
}
@media (max-width: 681px) {
  .nw-about__right p {
    font-size: 12px;
    margin-bottom: 14px;
  }
}
@media (max-width: 681px) {
  .nw-about__right {
    width: 100%;
    text-align: center;
  }
}

.nw-slider {
  padding: 60px 0;
  background: #000000;
}
.nw-slider h2,
.nw-slider p {
  color: #ffffff;
}
.nw-slider h2 {
  margin-bottom: 22px;
}
@media (max-width: 681px) {
  .nw-slider h2 {
    font-size: 16px;
  }
}
.nw-slider p {
  margin-bottom: 22px;
}
@media (max-width: 681px) {
  .nw-slider p {
    font-size: 12px;
  }
}
.nw-slider__wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 681px) {
  .nw-slider__wrapper {
    flex-direction: column-reverse;
  }
}
.nw-slider__left {
  width: 50%;
}
@media (max-width: 681px) {
  .nw-slider__left {
    width: 100%;
    text-align: center;
    margin-top: 26px;
  }
}
.nw-slider__right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nw-slider__right img {
  max-width: 400px;
}
@media (max-width: 681px) {
  .nw-slider__right {
    width: 100%;
  }
}

.nw-footer {
  padding: 40px 0 0 0;
}
.nw-footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}
@media (max-width: 681px) {
  .nw-footer__wrapper {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 681px) {
  .nw-footer__wrapper .nw-footer-logo {
    order: -1;
  }
}
.nw-footer__link {
  display: flex;
  align-items: center;
  color: #000000;
}
@media (max-width: 681px) {
  .nw-footer__link {
    font-size: 12px;
  }
}
.nw-footer__link svg {
  width: 18px;
  height: 18px;
  margin-right: 12px;
}
.nw-footer__logo {
  margin-left: 40px;
  margin-right: 40px;
}
.nw-footer__logo svg {
  width: 200px;
}
@media (max-width: 681px) {
  .nw-footer__item {
    margin-bottom: 18px;
  }
}
.nw-footer .nw-copyrt {
  padding: 12px 0;
  background: #000000;
  text-align: center;
  width: 100%;
  font-size: 14px;
  color: #ffffff;
  font-family: "Poppins", serif;
}
@media (max-width: 681px) {
  .nw-footer .nw-copyrt {
    font-size: 12px;
  }
}

.nw-polices {
  padding: 70px 0;
  min-height: calc(100vh - 244px);
}
@media (max-width: 681px) {
  .nw-polices {
    padding: 18px 0;
  }
}
.nw-polices .nw-container {
  max-width: 650px;
}
.nw-polices h1 {
  margin-bottom: 26px;
  font-size: 32px;
}
.nw-polices p {
  line-height: 1.8;
  margin-bottom: 12px;
}
.nw-polices ul {
  padding-left: 18px;
  margin-bottom: 4px;
}
.nw-polices ul li {
  margin-bottom: 8px;
}

.splide__pagination {
  display: none !important;
}

iframe {
  width: 100%;
  height: 100vh;
  border: none;
}

[data-animation=true] {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}

[data-animation=true].fade-up-visible {
  opacity: 1;
  transform: translateY(0);
}

/*# sourceMappingURL=style.css.map */
