@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: 36px 0;
  overflow: hidden;
  background: #565abf;
  padding: 19px 15px 18px;
}

header .inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .inner p {
  text-align: right;
  font-weight: 700;
  font-size: 10px;
  line-height: 110%;
  color: #ffffff;
  width: 96px;
  text-transform: uppercase;
}
header .inner p span {
  text-transform: none;
}

/* logo */
#logo {
	margin-right: auto;
	padding-right: 20px;
	max-width: 220px;
}
#logo svg,
#logo img {
	-o-object-fit: contain;
	object-fit: contain;
	width: 100%;
	height: 100%;
	max-height: 50px;
}
/* /logo */
/* /header */

/* content */
#content {
  padding: 30px 15px;
  overflow: hidden;
}
#content .items {
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}
#content .item {
  background: #fff;
  border-radius: 20px;
  padding: 20px 10px 14px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 14px;
  position: relative;
  margin: 5.5px;
  width: calc(50% - 12px);
  box-shadow: 0px 5px 20px 1px rgba(0, 0, 0, 0.05);
}
#content .item:hover {
  box-shadow: 0px 5px 20px 5px rgba(254, 158, 118, 0.15);
}
#content .item .info {
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
#content .item .logo {
  overflow: hidden;
  height: 44px;
  margin: 0 0 10px;
}
#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: column;
  align-items: center;
  margin-top: 10px;
  font-size: 12px;
}
#content .item .text .td:first-child {
  padding-top: 0;
  margin-top: 0;
}
#content .item .text .td:first-child p {
  font-weight: 700;
}
#content .item .text .td p {
  line-height: 15px;
}
#content .item .item-btn {
  position: relative;
  z-index: 20;
  display: block;
  width: 100%;
  height: 52px;
  margin: 0 auto;
  color: #fff;
  background: #f6522e;
  border-radius: 20px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#content .item:hover {
  box-shadow: 0px 5px 20px 5px rgba(254, 158, 118, 0.15);
}

#content .item .item-btn:hover {
  background: #fe9e76;
}
#content .item .item-btn .btn {
  font-weight: 700;
  font-size: 14px;
  line-height: 110%;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#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 (min-width: 720px) {
  /* header */
  header .inner p {
    width: unset;
    font-size: 16px;
  }
  /* header */

  /* 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;
    margin: 0 -20px;
  }
  #content .item {
    width: calc(50% - 50px);
    padding: 20px 13px 15px;
    margin: 0 7px 15px;
  }

  #content .item .item-btn {
    height: 60px;
    border-radius: 30px;
  }

  #content .item .text .td {
    font-size: 16px;
  }
  #content .item .text .td p {
    line-height: 20px;
  }
  /* /content */

  /* footer */
  footer {
    padding: 40px 20px;
  }
  /* /footer */
  #content .items {
    flex-wrap: wrap;
    flex-direction: row;
  }
  #content .item .item-btn .btn {
    font-size: 16px;
  }
  #content .item .text .td .icon {
    margin-right: 20px;
  }
}

@media (min-width: 900px) {
  .inner {
    margin: 0 auto;
  }
  header {
    padding: 30px 15px;
  }
  header .inner p {
    text-align: left;
  }

  /* content */
  #content {
    padding: 60px 15px;
  }
  #content .item {
    width: calc(33% - 50px);
  }
  #content .item .logo {
    height: 75px;
    margin: 0 0 15px;
  }
  /* /content */
}
@media (min-width: 1024px) {
  header {
    display: flex;
    justify-content: center;
  }

  header .inner {
    width: 900px;
  }
  .inner {
    max-width: 1220px;
    margin: 0 auto;
  }

  /* content */
  #content .items {
    margin: 0 -10px;
  }
  #content .item {
    width: calc(20% - 60px);
    min-width: 235px;
    box-shadow: 0px 5px 20px 2px rgba(0, 0, 0, 0.1);
  }
  #content .item:hover {
    box-shadow: 0px 5px 20px 12px rgba(254, 158, 118, 0.2);
  }
  /* /content */
}
@media (min-width: 1024px) {
  #content .item {
    padding: 20px 28px 15px;
  }
}

@media (min-width: 1229px) {
  header .inner {
    width: 1200px;
  }
}

@media (min-width: 1600px) {
  /* footer */
  footer {
    padding: 50px 20px;
  }
  /* /footer */
}
