@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Montserrat:wght@400;700&display=swap");
body {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -o-text-size-adjust: none;
  position: relative;
  background-color: #f8f8f8;
  min-height: 100vh;
  overflow-anchor: none;
}
body,
body a {
  color: #000;
}
body.scroll-off {
  overflow: hidden;
}
strong,
b {
  font-weight: 700;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
}
.duration {
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

/* header */
header {
  padding: 22px 0 21px 15px;
  overflow: hidden;
  border-bottom: 7px solid #4bb462;
}
header .inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.inner {
  max-width: 774px;
  margin: 0 auto;
}
/* logo */
#logo {
	margin-right: auto;
	padding-right: 20px;
	max-width: 200px;
}
#logo svg,
#logo img {
	-o-object-fit: contain;
	object-fit: contain;
	width: 100%;
	height: 100%;
	max-height: 50px;
}
/* /logo */
/* /header */

/* title */
#title {
  padding: 20px 15px 0;
  text-align: center;
  margin: 0 auto;
}
#title h2 {
  margin-bottom: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
}
#title p {
  font-size: 14px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.75);
}
/* /title */

/* content */
#content {
  padding: 20px 15px 30px;
  overflow: hidden;
}
#content .items {
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
#content .item {
  -webkit-box-shadow: inset 0 0 0 2px #e5ebf1;
  box-shadow: 0px 4px 20px 3px rgba(0, 0, 0, 0.07);
  border-radius: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 14px;
  position: relative;
  margin-bottom: 10px;
  width: calc(50% - 5px);
  background: #fff;
}
#content .item .info {
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 10px;
}
#content .item .logo {
  overflow: hidden;
  height: 60px;
  padding: 10px 7.5px 0;
}
#content .item .logo svg,
#content .item .logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  object-position: 50% 50%;
}
#content .item .line p {
  font-size: 2.7vw;
  line-height: 20px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
#content .item .text {
  flex-direction: column;
}
#content .item .text .td {
  flex-direction: row;
  justify-content: center;
  margin-bottom: 2px;
}
#content .item .text .td:first-child {
  border-top: 0;
}
#content .item .text .td .icon {
  margin-right: 5px;
}
#content .item .text .td p {
  font-size: 12px;
  line-height: 14px;
}
#content .item .text .td:first-child p {
  font-weight: 700;
}
#content .item .item-btn {
  position: relative;
  z-index: 20;
  margin-top: 7px;
  overflow: hidden;
}
#content .item .item-btn .btn {
  display: block;
  width: 100%;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 14px;
  line-height: 48px;
  height: 48px;
  color: #000;
  border-top: 1px solid #4bb462;
  background: #4bb462;
  border-radius: 0 0 25px 25px;
  text-transform: uppercase;
  color: #fff;
}
#content .item .item-btn .btn:hover {
  background: #008736;
}
#content .item .link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
}
/* /content */

/* footer */
footer {
  padding: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  font-size: 12px;
}
/* /footer */


@media (max-height: 550px) {
  /* title */
  #title h1 {
    margin-bottom: 0;
  }
  /* /title */
}

@media (min-width: 360px) {
  /* title */
  #title h1 {
    font-size: 30px;
    line-height: 37px;
  }
  /* /title */
}

@media (min-width: 720px) {
  /* title */
  #title h2 {
    font-size: 16px;
    line-height: 18px;
  }
  #title p {
    font-size: 16px;
    line-height: 18px;
  }
  /* /title */

  /* content */
  #content .items {
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
  }
  #content .item {
    width: calc(50% - 50px);
  }
  /* /content */

  /* footer */
  footer {
    padding: 40px 20px;
  }
  /* /footer */
  #content .items {
    flex-wrap: wrap;
    flex-direction: row;
  }
  #content .item {
    /* padding: 20px; */
    width: calc(50% - 4px);
  }
  #content .item .line {
    top: 100px;
  }
  #content .item .line p {
    font-size: 16px;
    padding: 10px;
  }
  #content .item .item-btn .btn {
    font-size: 14px;
    line-height: 50px;
    height: 50px;
  }
  #content .item .text .td p {
    font-size: 15px;
    line-height: 18px;
  }
}

@media (min-width: 900px) {
  /* title */
  #title {
    padding-bottom: 35px;
  }
  /* /title */
}

@media (min-width: 1024px) {
  header {
    padding: 23px 24px;
    border-bottom: 10px solid #4bb462;
  }
  #title {
    width: unset;
    padding: 40px 30px;
  }
  #title h2 {
    font-size: 18px;
    line-height: 20px;
  }
  #title p {
    font-size: 18px;
    line-height: 20px;
  }
  #content .item {
    width: calc(25% - 8px);
    margin-right: 8px;
  }
  #content .items {
    justify-content: flex-start;
    /* max-width: 774px; */
    margin: 0 auto;
  }
  #content {
    padding-top: 0;
    padding-bottom: 78px;
  }
}

@media (min-width: 1600px) {
  .inner {
    max-width: 1210px;
    margin: 0 auto;
  }

  /* title */
  #title {
    padding: 40px 40px;
  }
  #title h1 {
    font-size: 48px;
    line-height: 59px;
    margin-bottom: 35px;
  }
  /* /title */

  /* content */
  #content {
    padding: 0 0 84px;
  }
  #content .items {
    justify-content: flex-start;
  }
  #content .item {
    width: calc(16.6% - 16px);
    margin: 0 8px 20px;
  }
  /* /content */

  /* footer */
  footer {
    padding: 50px 20px;
  }
  /* /footer */
}

@media (min-width: 2000px) {
  /* title */
  #title {
    padding: 45px 0 50px;
  }
  #title h1 {
    font-size: 64px;
    line-height: 78px;
    margin-bottom: 50px;
  }
  /* /title */

  /* content */
  #content {
    padding: 50px;
  }
  /* /content */
}
