@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: #f9f9f9;
  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: 18px 19px 16px;
  overflow: hidden;
  background: #fff;
}
header .inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.header__title_text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-weight: 400;
  font-size: 12px;
  line-height: 110%;
  color: #282828;
}
.header__title_text span:last-child {
  font-weight: 700;
}
/* 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: 0 20px;
}
#title h1 {
  margin: 30px 0 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
}
#title h2 {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #282828;
}
/* /title */

/* content */
#content {
  padding: 0 20px 36px;
  overflow: hidden;
}
#content .items {
  -ms-flex-direction: column;
  flex-direction: column;
}
#content .item {
  padding: 15.5px 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #ffffff;
  box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  border-radius: 15px;
  font-size: 14px;
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
}
#content .item .title {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 40px;
  background-color: #e5ebf1;
  justify-content: center;
}
#content .item.color .title {
  background-color: #63d84f;
}
#content .item .title span {
  line-height: 40px;
}
#content .item .title span.icon {
  margin-right: 10px;
}
#content .item .title span.text {
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}
#content .item.color .title span.text {
  color: #ffffff;
}
#content .item .info {
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#content .item .logo {
  overflow: hidden;
  height: 44px;
  width: 45%;
}
#content .item .logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  object-position: 0% 50%;
}
#content .item .text {
  flex-direction: column;
}
#content .item .text .td {
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
}
#content .item .text .td:first-child p {
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #282828;
  margin-bottom: 2px;
}
#content .item .text .td p {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #282828;
}
#content .item .item-btn {
  position: relative;
  z-index: 20;
  margin-top: 15px;
}
#content .item .item-btn .btn:hover {
  background: #b7d4ff;
}
#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: 35px;
  color: #ffffff;
  background: #7ab1ff;
  border-radius: 7px;
}
#content .item .item-btn .btn:hover {
  background: #2396ff;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#content .item .item-btn .btn.color {
  background: #81d364;
}
#content .item .item-btn .btn.color:hover {
  background: #63d84f;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#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: 700px) {
  /* content */
  #content .items {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #content .item {
    width: calc(50% - 8px);
  }
  /* /content */

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

@media (min-width: 1200px) {
  /* content */
  #content .item {
    width: calc(25% - 55px);
  }
  /* /content */
}

@media (min-width: 1024px) {
  header {
    padding: 22px 24px;
  }
  header .inner {
    max-width: 765px;
    margin: 0 auto;
  }
  .header__title_text {
    font-size: 14px;
  }
  .header__title_text span {
    line-height: 17px;
  }
  #title h1 {
    margin: 40px 0 10px;
    font-size: 22px;
  }
  #title h2 {
    margin-bottom: 30px;
    font-size: 14px;
  }
  #content {
    padding-bottom: 44px;
  }
  #content .inner {
    max-width: 580px;
    margin: 0 auto;
  }
  #content .item {
    padding: 14.5px 12.5px;
    margin-bottom: 25px;
    width: calc(50% - 12px);
  }
  #content .item .item-btn .btn {
    font-size: 16px;
    line-height: 50px;
  }
  #content .item .text .td p {
    font-size: 14px;
    line-height: 17px;
  }
}

@media (min-width: 1024px) and (max-width: 1599px) {
  .robozaim__add-offer {
    flex-direction: column !important;
  }
  .robozaim__add-offer p {
    margin: unset !important;
  }
  .robozaim__add-offer div {
    flex-wrap: wrap !important;
  }
}

@media (min-width: 1600px) {
  .inner {
    max-width: 1196px;
	margin: 0 auto;
  }
  header .inner {
    max-width: 1196px;
  }
  #content .inner {
    max-width: 1196px;
  }
  #title h1 {
    margin: 30px 0 13px;
    text-align: left;
  }
  #title h2 {
    margin-bottom: 46px;
    font-size: 14px;
    text-align: left;
  }
  /* content */
  #content {
    padding: 0 0 30px;
  }
  #content .item {
    padding: 14.5px 12.5px;
    margin-bottom: 30px;
    width: calc(25% - 24px);
    margin-right: 32px;
  }
  #content .item:nth-child(4n) {
    margin-right: unset;
  }
  #content .items {
    justify-content: flex-start;
  }
  /* /content */

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