@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

@font-face {
  font-family: 'SFProDisplay';
  src: url('../assets/fonts/SFProDisplay-Bold.ttf') format('truetype');
}

:root {
  --header-height: 5rem;
  /* Colors */
  --first-color: rgba(0, 34, 8);
  --title-color: #111;
  --subtitle-color: #333;
  --text-color: #999;
  --public-color: #F3FCF2;
  --public-radius: 40px;
  --public-text-color: rgba(0, 34, 8, 1);
  --public-text-samll-color: rgba(0, 34, 8, 0.6);
  /* Font and typography */
  --body-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", Arial, sans-serif;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;
  --footter-color: rgba(255, 255, 255, 0.60);
  --min-font-size: 0.8rem;
  --logo-color: #002208;
}

/* Responsive  */
@media screen and (min-width: 768px) {
  :root {
    /* typography */
    --normal-font-size: 1.25rem;
    --small-font-size: 1.05rem;
    --smaller-font-size: 1rem;
  }
}

/* Responsive  */
@media screen and (min-width: 1440px) {
  :root {
    /* typography */
    --normal-font-size: 1.25rem;
    --small-font-size: 1.05rem;
    --smaller-font-size: 1rem;
  }
}

/* Responsive  */
@media screen and (min-width: 1580px) {
  :root {
    /* typography */
    --min-font-size: 0.8rem;
    --normal-font-size: 1.55rem;
    --small-font-size: 1.2rem;
    --smaller-font-size: 1.2rem;
  }
}

/* BASE */
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  /* padding: var(--header-height) 0 0 0; */
  font-size: var(--normal-font-size);
  font-family: var(--body-font) !important;
  background-color: var(--body-color);
  line-height: 1.4;
  min-height: 100vh;
  overflow: scroll-y;
}

ul {
  list-style: none;
}

a {
  display: inline-block;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* REUSABLE CSS CLASSES */
.container {
  margin-left: 100px;
  margin-right: 100px;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-space {
  height: var(--header-height);
  background-color: #d4e9ea;
}


.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.row20 {
  margin-left: -20px;
  margin-right: -20px;
}

.row40 {
  margin-left: -40px;
  margin-right: -40px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

/* .col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
} */

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}


/* header */
.header {
  /* --header-height: 5rem; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: var(--header-height);
  /* transition: all 0.3s; */
  background-color: var(--public-color);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__list {
  list-style: none;
}

.nav__logo {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}

.nav__logo p {
  margin-top: 0 !important;
}

.nav__logo:visited,
.nav__logo:active {
  color: var(--subtitle-color);
}

.nav__logo img {
  height: 1.6rem;
  margin-right: 0.5rem;
}

.nav__toggle {
  font-size: 1.25rem;
  cursor: pointer;
}

.nav__menu {
  font-size: var(--smaller-font-size);
  z-index: -1;
  margin-left: 3em;
  color: var(--subtitle-color);
}

.nav__menu_1:visited,
.nav__menu_1 {
  font-family: Oswald;
  font-weight: 700;
  margin-left: .5rem;
  font-size: var(--normal-font-size);
}

.nav__menu_2 {
  font-size: var(--min-font-size);
  font-weight: 500;
  margin-left: .5rem;
  color: rgba(0, 34, 8, 0.6);
}

.nav__item {
  margin-bottom: var(--mb-2);
}

.nav__link,
.nav__toggle {
  color: var(--body-color);
  font-weight: var(--font-medium);
}

.nav__link {
  transition: color 0.3s;
}

.nav__link.active-link,
.nav__link:active,
.nav__link:hover {
  color: var(--first-color);
  transition: color 0.3s;
  border-bottom-color: var(--first-color);
}

.nav__menu_1 {
  color: var(--logo-color);
}

.nav__menu_1:active,
.nav__menu_1:hover {
  color: var(--first-color);
  transition: color 0.3s;
  border-bottom-color: var(--first-color);
}


.scroll-header {
  height: var(--header-height);
  background-color: rgba(0, 0, 0, 0.5) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* transition: all .3s; */
}

.scroll-header .nav__link.active-link {
  color: rgba(255, 255, 255, 1);
  border-bottom-color: rgba(255, 255, 255, 1)
}

.scroll-header .nav {
  height: var(--header-height);
}

.scroll-header .nav__menu {
  color: rgba(255, 255, 255, 0.75);
}

.scroll-header .nav__menu_1,
.scroll-header .nav__menu_2 {
  color: rgba(255, 255, 255, 0.85);
}

.scroll-header .nav__toggle i {
  color: rgba(255, 255, 255, 0.75);
}

/* Scroll top */
.scrolltop {
  position: fixed;
  right: 1rem;
  bottom: -100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.3rem;
  font-size: 1.3rem;
  color: #fff;
  border-radius: 0.2rem;
  display: flex;
  align-items: center;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  visibility: hidden;
}

.show-scrolltop {
  bottom: 1.5rem;
  visibility: visible;
}

.link-section {
  border-radius: 20px;
  background-color: rgba(219, 238, 203, 0.50);
  padding: 3rem 0;
}

/* Footer */

.bottom-content {
  padding: 30px 0px;
  overflow: hidden;
  width: 100%;
  color: rgba(255, 255, 255, 0.60);
}

.bottom-content>a {
  color: rgba(255, 255, 255, 0.60);
}

.sign {
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.40);
  clear: both;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.moreLinks-box {
  margin-top: 24px;
}

.more-links {
  font-size: 18px;
  font-weight: 700;
  color: var(--subtitle-color);
  margin-bottom: 20px;
}


.divided-line {
  background-color: rgba(51, 51, 51, 0.2);
  height: 1px;
}

.bottom-log-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  color: var(--subtitle-color);
  margin-bottom: 24px;
}

.bottom-log-box .f-logo {
  width: 22rem;
}

.bottom-log-box p {
  font-weight: bold;
  font-size: 30px;
  color: #FFFFFF;
}

.f-link img {
  margin-left: 1rem;
}

.contact-information-box {
  margin-bottom: 24px;
  float: left;
  width: 100%;
}

.contact-information-box h3 {
  font-weight: 500;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 33px;
  text-align: left;
}

.customer-service {
  font-weight: bold;
  margin-right: 10px;
}

.contact-information-item {
  margin-top: 15px;
  line-height: 1.5;
  font-size: 12px;
  display: flex;

}

.supervise {
  float: left;
  width: 100%;
}

.supervise .h3 {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.supervise ul li {
  float: left;
  width: 50%;
}

.supervise ul li a {
  font-weight: 500;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 36px;
  text-align: left;
  font-style: normal;
  text-decoration-line: underline;
  text-transform: none;
}

.declare {
  font-size: 12px;
  margin-bottom: 48px;
  float: left;
  width: 100%;
  margin-top: 20px;
}

.declare span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
}


.footer {
  background: var(--logo-color);
}

.footer__content {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.footer__link {
  margin-top: 60px;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 500;
  color: #0a2640;
  line-height: 16px;
  text-decoration: none;
}

.footer__link p {
  font-size: 24px;
  font-weight: 600;
  color: #252424;
}

.footer__li {
  margin-bottom: var(--mb-2);
  font-size: 12px;
  transition: 0.3s;
  color: #858a8f;
  font-weight: 600;
}

.footer__lis {
  display: block;
  margin-top: 12px;
  margin-bottom: 12px;
  color: var(--subtitle-color);
  text-decoration: underline;
  font-weight: 400;
}

.footer__lis:hover {
  transition: color 0.3s;
  color: var(--first-color);
}

.footer__terms,
.footer__privacy {
  color: #724e1c;
}

.nav-d {
  width: 20px;
  display: none;
}

.fo-l {
  float: left;
  width: 100%;
}

.fo-r {
  float: left;
  width: 100%;
}

.fo-30 {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}

.fo-30 .p1,
.p1 {
  font-weight: 600;
  color: #858a8f;
  font-size: 14px;
}

.fo-30 .p2,
.p2 {
  font-weight: 400;
  color: #000000;
  font-size: 14px;
}

.foo-di {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  color: #afafaf;
  line-height: 24px;
  border-top: 1px solid rgba(0, 82, 204, 0.1);
  margin-top: 15px;
  padding-top: 10px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .nav-d {
    display: block;
  }

  .nav {
    text-align: center;
    flex-direction: row-reverse;
  }

  .nav__menu_1 {
    font-size: 16px;
  }

  .nav__menu_2 {
    font-size: 10px;
  }

  .nav__menu {
    position: fixed;
    /* background-color: var(--body-color); */
    top: -100%;
    left: -2.3rem;
    width: 100%;
    /* padding: 1.5rem 0 1rem; */
    text-align: center;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 1rem 1rem;
    transition: 0.3s;
    background-color: #d4e9ea;
  }

  .nav__item {
    margin: 20px 10px;
  }



  .scroll-header .nav__menu {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .show-menu {
    top: 0;
    padding-top: var(--header-height);
  }

  .show-menu .nav__list {
    padding-bottom: 1.5rem;
  }

  .container {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .foo_____ {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 82, 204, 0.1);
  }

  .foo-f {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media screen and (min-width: 768px) {
  /* body {
    padding-top: calc(var(--header-height) + 2rem);
  } */

  .nav__menu,
  .nav__menu_1 {
    z-index: 0;
  }

  .nav,
  .nav__link {
    height: calc(var(--header-height));
  }

  .nav__logo img {
    height: 2.3rem;
  }

  .nav__toggle {
    display: none;
  }

  .nav__list {
    display: flex;
  }

  .nav__item {
    margin-bottom: 0;
  }

  .nav__link {
    height: 60px !important;
    margin: 0 20px;
    display: flex;
    align-items: center;
    border-bottom: 5px solid transparent;
  }

  .main {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .home .container {
    flex-direction: row;
  }

  .footer__link {
    font-size: 16px;
    line-height: 20px;
    margin-top: 70px;
  }

  .product .card__group::after {
    width: 190px;
    height: 130px;
  }

  .contact .card__group::after {
    width: 190px;
    height: 150px;
  }

  .contact .card__group {
    padding-top: 3.5rem;
  }

  .footer__link p {
    font-size: 30px;
  }

  .footer__li {
    font-size: 16px;
  }

  .fo-l {
    float: left;
    width: 64%;
    margin-right: 3%;
  }

  .fo-r {
    float: left;
    width: 30%;
    padding-left: 3%;
    border-left: 1px solid rgba(0, 82, 204, 0.1);
    box-sizing: border-box;
  }

  .fo-30 {
    float: left;
    width: 33.3%;
  }

  .fo-30 .p1,
  .p1 {
    font-size: 16px;
  }

  .fo-30 .p2,
  .p2 {
    font-size: 16px;
  }

  .foo_____ {
    margin-top: 10px;
    padding-bottom: 0;
    margin-bottom: 0px;
  }

  .foo-di {
    font-size: 14px;
    margin-top: 30px;
    padding-top: 20px;
    margin-bottom: 40px;
  }
}

.f-link-mobile {
  display: block;
  margin-top: 20px;
  float: left;
}

.f-link {
  display: none;
}

@media screen and (min-width: 1200px) {
  /* body {
    padding-top: calc(var(--header-height) + 2rem);
  } */

  .nav__menu,
  .nav__menu_1 {
    z-index: 0;
  }

  .nav,
  .nav__link {
    height: calc(var(--header-height));
  }

  .nav__logo img {
    height: 2.2rem;
  }

  .nav__toggle {
    display: none;
  }

  .nav__list {
    display: flex;
  }

  .nav__item {
    margin-bottom: 0;
  }

  .nav__link {
    height: 60px !important;
    margin: 0 20px;
    display: flex;
    align-items: center;
    border-bottom: 5px solid transparent;
  }

  .main {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .home .container {
    flex-direction: row;
  }

  .footer__link {
    font-size: 16px;
    line-height: 20px;
    margin-top: 70px;
  }

  .product .card__group::after {
    width: 190px;
    height: 130px;
  }

  .contact .card__group::after {
    width: 190px;
    height: 150px;
  }

  .contact .card__group {
    padding-top: 3.5rem;
  }

  .footer__link p {
    font-size: 30px;
  }

  .footer__li {
    font-size: 16px;
  }

  .fo-l {
    float: left;
    width: 64%;
    margin-right: 3%;
  }

  .fo-r {
    float: left;
    width: 30%;
    padding-left: 3%;
    border-left: 1px solid rgba(0, 82, 204, 0.1);
    box-sizing: border-box;
  }

  .fo-30 {
    float: left;
    width: 33.3%;
  }

  .fo-30 .p1,
  .p1 {
    font-size: 16px;
  }

  .fo-30 .p2,
  .p2 {
    font-size: 16px;
  }

  .foo_____ {
    margin-top: 10px;
    padding-bottom: 0;
    margin-bottom: 0px;
  }

  .foo-di {
    font-size: 14px;
    margin-top: 30px;
    padding-top: 20px;
    margin-bottom: 40px;
  }

  .f-link-mobile {
    display: none;
  }

  .f-link {
    display: block;
  }

  .contact-information-box{
    margin-bottom: 24px;
    float: left;
    width: 30%;
  }
  .supervise{
    margin-bottom: 48px;
    width: 25%;
    margin-left: 12%;
  }
  .declare {
      float: right;
      width: 23%;
      font-size: 12px;
      margin-bottom: 48px;
  }
}

@media screen and (min-width: 1440px) {
  .contact-address {
    margin-bottom: 35px !important;
  }
}

@media screen and (min-width: 1580px) {

  .nav,
  .nav__link {
    height: calc(var(--header-height));
  }

  .nav__logo {
    font-size: var(--normal-font-size);
  }

  .nav__logo img {
    height: 3.13rem;
  }

  .container {
    width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* .product-bg {
    background-image: url(../assets/images/bg_product.png);
  } */
  .contact {
    justify-content: space-between;
  }

  .footer__li {
    font-size: 16px;
  }

  .footer__link {
    margin-top: 80px;
    font-size: 20px;
    line-height: 24px;
  }

  .footer__link p {
    font-size: 36px;
  }

  .fo-30 .p1,
  .p1 {
    font-size: 18px;
  }

  .fo-30 .p2,
  .p2 {
    font-size: 18px;
  }
}

.inside {
  margin-top: 5rem;
}