@charset "UTF-8";
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ШРИФТЫ 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	ОБЩИЕ СТИЛИ ДЛЯ ВСЕГО САЙТА 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
*,
p,
h1, h2, h3, h4, h5, h6 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  overflow-x: hidden;
}
html.fixed {
  overflow: hidden;
}

body {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  color: #FFF;
  background: #1B202C;
  overflow-x: hidden;
}
@media (max-width: 565px) {
  body {
    font-size: 14px;
    line-height: 23px;
  }
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

button {
  display: block;
  font-family: "Montserrat", sans-serif;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
button:focus {
  outline: none;
}
button:disabled {
  pointer-events: none;
  opacity: 0.5;
}

input, textarea {
  font-family: "Montserrat", sans-serif;
  outline: none;
}
input:focus-visible, textarea:focus-visible {
  outline: none;
}
input:disabled, textarea:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.container {
  position: relative;
  max-width: 1210px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  position: relative;
  margin-bottom: 60px;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 992px) {
  .section-title {
    font-size: 30px;
    line-height: 110%;
  }
  .section-title br {
    display: none;
  }
}
.section-title:after {
  content: "";
  display: block;
  width: 180px;
  height: 1px;
  margin-top: 21px;
  margin-left: auto;
  margin-right: auto;
  background: #2E78FF;
}
@media (width <= 768px) {
  .section-title:after {
    margin-top: 10px;
  }
}

.section-subtitle {
  width: 100%;
  margin: 0 auto 40px auto;
  font-size: 16px;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  height: 60px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #FFF;
  border-radius: 10px;
  background: #2E78FF;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button span {
  position: relative;
  z-index: 1;
}
.button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(95.29deg, #2E78FF 22.7%, #4663BE 81.92%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button:hover:after {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.popup {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 34, 40, 0.9);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
}
.popup.is-open {
  opacity: 1;
  pointer-events: initial;
}
.popup__body {
  position: relative;
  max-width: 580px;
  width: 100%;
  margin: auto;
  padding: 40px;
  background: #1d2941;
  border-radius: 20px 20px 0 0;
  -webkit-box-shadow: 0 4px 50px 0 rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 50px 0 rgba(255, 255, 255, 0.05);
}
@media (max-width: 565px) {
  .popup__body {
    padding: 20px;
  }
}
.popup__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 30px;
  line-height: 110%;
  color: #FFF;
}
@media (width <= 565px) {
  .popup__title {
    font-size: 20px;
  }
}
.popup__tagtitle {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
  color: #FFF;
}
.popup__listtitle {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 120%;
  font-weight: 600;
  color: #FFF;
}
.popup-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.popup-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  color: #FFF;
}
.popup-list__item:before {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #2E78FF;
  border-radius: 50%;
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
}
.popup-list__itemnum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.popup-list__itemicon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(46, 120, 255, 0.4);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(46, 120, 255, 0.2);
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
.popup-list__itemtext {
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  color: #FFF;
}
.popup__close {
  position: absolute;
  top: 10px;
  right: -45px;
  display: block;
  width: 23px;
  height: 23px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (width <= 768px) {
  .popup__close {
    right: 10px;
  }
}
.popup__close:hover {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.popup__close:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 1px;
  background: #FFF;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 11px;
  left: 0;
}
.popup__close:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 1px;
  background: #FFF;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 11px;
  left: 0;
}
.popup__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (width <= 565px) {
  .popup__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.popup__pricebox {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.popup__newprice {
  font-size: 30px;
  line-height: 110%;
  font-weight: 600;
  color: #2E78FF;
}
.popup__oldprice {
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  font-variant: small-caps;
  text-decoration: line-through;
  color: #FFF;
  opacity: 0.6;
}

@media (max-height: 640px) {
  .popup {
    padding: 0;
    display: block;
  }
  .popup__body {
    margin: 50px auto;
  }
}
@-moz-document url-prefix() {
  * {
    scrollbar-width: thin;
  }
}
* ::-webkit-scrollbar {
  width: 6px; /* ширина всей полосы прокрутки */
}

* ::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2); /* цвет зоны отслеживания */
  border-radius: 20px;
}

* ::-webkit-scrollbar-thumb {
  background-color: #2E78FF; /* цвет бегунка */
  border-radius: 20px; /* округлось бегунка */
  border: 3px solid transparent;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	//END ОБЩИЕ СТИЛИ ДЛЯ ВСЕГО САЙТА 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	ВСПОМОГАТЕЛЬНЫЕ КЛАССЫ (нужны там где нет нужды в осмысленном класснейминге)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
	HEADER 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
	//END HEADER  
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
	FOOTER  
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.footer {
  width: 100%;
  margin-top: auto;
  border-bottom: 5px solid #2E78FF;
}
.footer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 992px) {
  .footer__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
.footer__infobox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.footer__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.6);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__text[href]:hover {
  color: #2E78FF;
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 992px) {
  .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
  }
}
.footer__linksbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 10px;
}
@media (max-width: 992px) {
  .footer__linksbox {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
	//END FOOTER  
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.mb {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .mb {
    margin-bottom: 40px;
  }
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.app {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

.color-blue {
  color: #2E78FF;
}

.bluebox {
  background: rgba(46, 120, 255, 0.2);
  border: 1px solid rgba(46, 120, 255, 0.4);
  border-radius: 10px;
}

.present__box {
  position: relative;
  z-index: 1;
  padding: 30px;
  background: url("../img/complex/present-bg.webp") center center/cover no-repeat;
  border-radius: 20px;
}
@media (width <= 768px) {
  .present__box {
    padding: 15px;
  }
}
.present__title {
  margin-bottom: 20px;
  font-size: 48px;
  line-height: 50px;
  font-weight: 600;
  color: #FFF;
  text-align: center;
}
@media (width <= 768px) {
  .present__title {
    font-size: 30px;
    line-height: 40px;
  }
}
.present__subtitle {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 130%;
  color: #FFF;
  text-align: center;
}
.present__button {
  max-width: 280px;
  margin: 0 auto;
}
.present-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 100px;
}
@media (width <= 992px) {
  .present-services {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 768px) {
  .present-services {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-top: 30px;
  }
}
.present-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 160px;
  padding: 20px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.present-service__namebox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.present-service__name {
  font-size: 16px;
  line-height: 120%;
  font-weight: 600;
  color: #FFF;
}
.present-service__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: auto;
  width: 147px;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgb(46, 120, 255);
  border-radius: 7px;
}
.present-decor-1 {
  position: absolute;
  z-index: -1;
  top: 64px;
  left: 50%;
  -webkit-transform: translateX(-500px);
  -ms-transform: translateX(-500px);
  transform: translateX(-500px);
}
@media (width <= 992px) {
  .present-decor-1 {
    -webkit-transform: translateX(-320px);
    -ms-transform: translateX(-320px);
    transform: translateX(-320px);
  }
}
@media (width <= 768px) {
  .present-decor-1 {
    display: none;
  }
}
.present-decor-2 {
  position: absolute;
  z-index: -1;
  top: 203px;
  left: 50%;
  -webkit-transform: translateX(-275px);
  -ms-transform: translateX(-275px);
  transform: translateX(-275px);
}
@media (width <= 768px) {
  .present-decor-2 {
    display: none;
  }
}
.present-decor-3 {
  position: absolute;
  z-index: -1;
  top: 90px;
  right: 50%;
  -webkit-transform: translateX(485px);
  -ms-transform: translateX(485px);
  transform: translateX(485px);
}
@media (width <= 992px) {
  .present-decor-3 {
    -webkit-transform: translateX(315px);
    -ms-transform: translateX(315px);
    transform: translateX(315px);
  }
}
@media (width <= 768px) {
  .present-decor-3 {
    display: none;
  }
}

.advantages__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 10px;
  padding: 30px;
}
@media (width <= 768px) {
  .advantages__box {
    grid-template-columns: repeat(1, 1fr);
    padding: 15px;
  }
}

.advantage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.advantage__iconbox {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #2E78FF;
  border-radius: 50%;
}
.advantage__name {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  color: #FFF;
}
.advantage__text {
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: #FFF;
  opacity: 0.8;
}
@media (width <= 768px) {
  .advantage__text br {
    display: none;
  }
}

@media (width <= 768px) {
  .cases__title {
    margin-bottom: 30px;
  }
}
.cases__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (width <= 992px) {
  .cases__box {
    grid-template-columns: 1fr;
  }
}
.cases__morebtn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 240px;
  width: 100%;
  height: 60px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #FFF;
  border-radius: 7px;
  border: 1px solid #2E78FF;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background: rgba(255, 255, 255, 0.05);
  margin: 0 auto;
}

.case {
  padding: 20px;
}
.case__title {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 120%;
  font-weight: 600;
  color: #FFF;
}
@media (width <= 768px) {
  .case__title br {
    display: none;
  }
}
.case-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  padding: 10px 0;
}
.case-info__item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (width <= 565px) {
  .case-info__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.case-info__name {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 12px;
  line-height: 100%;
  font-weight: 400;
  color: #FFF;
  opacity: 0.6;
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}
.case-info__val {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 14px;
  line-height: 171%;
  font-weight: 400;
  color: #FFF;
}

.info-cards {
  position: relative;
}
.info-cards__title {
  margin-bottom: 20px;
}
@media (width <= 768px) {
  .info-cards__title {
    margin-bottom: 20px;
  }
}
.info-cards__subtitle {
  max-width: 416px;
  margin-bottom: 40px;
}
.info-cards__box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (width <= 992px) {
  .info-cards__box {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width <= 768px) {
  .info-cards__box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 565px) {
  .info-cards__box {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.info-cards-presentbox {
  grid-column: span 2;
  grid-row: span 2;
}
@media (width <= 992px) {
  .info-cards-presentbox {
    grid-column: span 3;
  }
}
@media (width <= 768px) {
  .info-cards-presentbox {
    grid-column: span 2;
  }
}
@media (width <= 565px) {
  .info-cards-presentbox {
    grid-column: span 1;
  }
}

.info-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 220px;
  padding: 20px;
  overflow: hidden;
}
@media (width <= 565px) {
  .info-card {
    height: auto;
    min-height: 120px;
    padding: 10px;
  }
}
.info-card-big {
  grid-column: span 2;
}
@media (width <= 565px) {
  .info-card-big {
    grid-column: span 1;
  }
}
.info-card-imgbox {
  padding: 0;
  border: none;
}
.info-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
}
.info-card__title {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 110%;
  font-weight: 600;
  color: #FFF;
}
.info-card__text {
  font-size: 14px;
  line-height: 120%;
  font-weight: 400;
  color: #FFF;
  opacity: 0.8;
}
.info-card__num {
  margin-top: auto;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}
@media (width <= 992px) {
  .info-card-empty {
    display: none;
  }
}
.info-card-blue {
  border-radius: 10px;
  background: linear-gradient(158deg, #2e78ff 6.6%, #4663be 71.08%);
}

.features {
  position: relative;
  padding-bottom: 70px;
}
.features-card {
  position: relative;
  height: 300px;
}
@media (width <= 565px) {
  .features-card {
    height: 220px;
  }
}
.features-card__icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 138px;
  height: 138px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (width <= 565px) {
  .features-card__icon {
    width: 110px;
    height: 110px;
    margin-right: -10px;
    margin-bottom: -10px;
  }
}
.features__buttonmore {
  max-width: 267px;
  margin: 0 auto;
}
.features__decor {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
/*# sourceMappingURL=complex.css.map */
