@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap");

:root {
  --font-Josefin: 'Josefin Sans', sans-serif;
  --font-OpenSans: 'Open Sans', sans-serif;
  --color-white: #ffffff;
  --color-blue: #51BCD3;
  --color-black: #373D3E;
  --color-grey: #A69999;
  --color-pink: #E06ABD;
}

menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style-type: none;
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 3.1rem;
  margin-bottom: 3rem;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 5rem;
  padding: 2px 5px;
}

menu li:last-child {
  margin-left: 12.2rem;
}

menu li:not(.logo, .dropdown-wrap):hover,
menu li:not(.logo, .dropdown-wrap):focus {
  cursor: pointer;
  border-bottom: 1px solid white;
}

menu li:hover img,
menu li:focus img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

menu li:hover>a,
menu li:focus>a {
  -webkit-transition: .3s;
  transition: .3s;
  opacity: .8;
  text-decoration: none;
  color: white;
  text-shadow: 0px 0px 8px #00000057;
}

menu li img {
  -webkit-transition: .3s filter;
  transition: .3s filter;
  margin-right: .5rem;
  width: 3.5rem;
  height: auto;
}

menu li img~a {
  margin-top: .3rem;
  text-transform: uppercase;
}

menu li a {
  font-family: var(--font-Josefin);
  font-style: normal;
  font-weight: normal;
  font-size: 2.2rem;
  line-height: 2.2rem;
  color: var(--color-white);
  -webkit-transition: .3s;
  transition: .3s;
}

menu .logo {
  margin-right: auto;
  font-size: 2.5rem;
  position: relative;
  margin-left: 0;
  height: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

menu .logo a:hover,
menu .logo a:focus {
  color: white;
  text-decoration: none;
  opacity: 1;
}

menu .logo:hover a {
  color: white;
  text-decoration: none;
  opacity: 1;
}

/* menu .logo:before { */
/*   content: ''; */
/*   position: absolute; */
/*   bottom: 0; */
/*   left: 50%; */
/*   -webkit-transform: translateX(-50%); */
/*   transform: translateX(-50%); */
/*   background: var(--color-white); */
/*   width: 1.2rem; */
/*   height: 1.2rem; */
/*   min-width: 1.2rem; */
/*   min-height: 1.2rem; */
/*   border-radius: 2rem; */
/* } */

menu .dropdown-wrap {
  position: relative;
}

menu .dropdown-wrap button {
  position: absolute;
  top: 0;
  z-index: 5;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

menu .dropdown-wrap.opened .dropdownMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

menu .dropdown-wrap .dropdownMenu {
  position: absolute;
  top: 4.5rem;
  z-index: 10;
  right: 0;
  padding: 1.9rem 0;
  background: white;
  border-radius: .5rem;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 21rem;
}

menu .dropdown-wrap .dropdownMenu:before {
  content: '';
  position: absolute;
  top: -.7rem;
  right: 1.4rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: .2rem;
  background: var(--color-white);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: -1;
}

menu .dropdown-wrap .dropdownMenu a {
  width: 100%;
  padding: 1rem 2rem;
  font-family: var(--font-Josefin);
  font-style: normal;
  font-weight: normal;
  font-size: 2rem;
  line-height: 2rem;
  color: var(--color-black);
  -webkit-transition: .3s;
  transition: .3s;
}

menu .dropdown-wrap .dropdownMenu a:hover,
menu .dropdown-wrap .dropdownMenu a.active {
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
  background: #F9F9F9;
}

menu .dropdown-wrap .dropdownMenu a.active {
  position: relative;
}

menu .dropdown-wrap .dropdownMenu a.active:before {
  content: '';
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background-image: url("../../images/ic_check.svg");
  background-position: center;
  background-size: 1rem auto;
  background-repeat: no-repeat;
}

footer {
  background-size: cover;
  background-position: center;
  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%;
  padding-top: 4.1rem;
  /* padding-bottom: 1.7rem; */
}

footer>div:first-child {
  margin-bottom: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

footer>div:first-child .logo {
  margin-right: auto;
  font-size: 2.5rem;
  position: relative;
  margin-left: 0;
  height: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-white);
}

footer>div:first-child .logo img {
  width: 156px;
}

footer>div:first-child .logo a:hover,
footer>div:first-child .logo a:focus {
  color: white;
  text-decoration: none;
  opacity: 1;
}

footer>div:first-child .logo:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: var(--color-white);
  width: 1.2rem;
  height: 1.2rem;
  min-width: 1.2rem;
  min-height: 1.2rem;
  border-radius: 2rem;
  display: none;
}

footer>div:first-child .container-menu {
  margin: 0 0 0 7rem;
}

footer>div:first-child ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

footer>div:first-child ul li {
  margin-bottom: 1rem;
}

footer.white>div:first-child ul li a {
  color: #36C3E2;
}

footer>div:first-child ul li a {
  font-family: var(--font-OpenSans);
  font-style: normal;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 2.2rem;
  text-align: center;
  color: var(--color-white);
  -webkit-transition: .3s;
  transition: .3s;
}

footer>div:first-child ul li a:hover {
  text-decoration: underline;
  text-shadow: 0px 0px 8px #00000057;
}

footer>p {
  font-family: var(--font-OpenSans);
  font-style: normal;
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: var(--color-white);
}

.footer-linkedin-link img {
  /* height: 21px; */
  height: 2rem;
}

.top-info {
  padding: 17rem 0 10.4rem;
}

.top-info .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-info .content .texts {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 15.5rem;
}

.top-info .content .texts h2 {
  font-family: var(--font-Josefin);
  font-style: normal;
  font-weight: 600;
  font-size: 6.1rem;
  line-height: 6.1rem;
  color: var(--color-white);
  margin-bottom: 2.6rem;
}

.top-info .content .texts p {
  font-family: var(--font-OpenSans);
  font-style: normal;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 2.5rem;
  color: var(--color-white);
  margin-bottom: 5rem;
  width: 100%;
  max-width: initial !important;
}

.top-info .content .images {
  min-width: 50rem;
}

.top-info .content .images .img {
  margin-left: 10rem;
  position: relative;
  z-index: 1;
  height: 56.8rem;
  width: 56.8rem;
  transform-origin: left;
  transform: scale(0.8);
}

.top-info .content .images .img.spin .circles {
  -webkit-transform: rotate(0deg) !important;
  transform: rotate(0deg) !important;
  -webkit-transition: -webkit-transform 1.5s linear;
  transition: -webkit-transform 1.5s linear;
  transition: transform 1.5s linear;
  transition: transform 1.5s linear, -webkit-transform 1.5s linear;
}

.top-info .content .images .img.spin .circles div {
  -webkit-transform: rotate(0deg) !important;
  transform: rotate(0deg) !important;
  -webkit-transition: -webkit-transform 1.5s linear;
  transition: -webkit-transform 1.5s linear;
  transition: transform 1.5s linear;
  transition: transform 1.5s linear, -webkit-transform 1.5s linear;
}

.top-info .content .images .img.spin .circles:nth-child(2) {
  -webkit-transform: rotate(360deg) !important;
  transform: rotate(360deg) !important;
  -webkit-transition: -webkit-transform 1.5s linear;
  transition: -webkit-transform 1.5s linear;
  transition: transform 1.5s linear;
  transition: transform 1.5s linear, -webkit-transform 1.5s linear;
}

.top-info .content .images .img.spin .circles:nth-child(2) div {
  -webkit-transform: rotate(-360deg) !important;
  transform: rotate(-360deg) !important;
  -webkit-transition: -webkit-transform 1.5s linear;
  transition: -webkit-transform 1.5s linear;
  transition: transform 1.5s linear;
  transition: transform 1.5s linear, -webkit-transform 1.5s linear;
}

.top-info .content .images .img.spin .rows .box {
  -webkit-transition: opacity .5s, -webkit-transform .5s;
  transition: opacity .5s, -webkit-transform .5s;
  transition: transform .5s, opacity .5s;
  transition: transform .5s, opacity .5s, -webkit-transform .5s;
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
  opacity: 1;
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
}

.top-info .content .images .img.spin .rows .small-box {
  -webkit-transition: opacity .5s, -webkit-transform .5s;
  transition: opacity .5s, -webkit-transform .5s;
  transition: transform .5s, opacity .5s;
  transition: transform .5s, opacity .5s, -webkit-transform .5s;
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
  opacity: 1;
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
}

.top-info .content .images .img .circles {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.7s linear;
  transition: -webkit-transform 0.7s linear;
  transition: transform 0.7s linear;
  transition: transform 0.7s linear, -webkit-transform 0.7s linear;
  top: 0;
  left: 0;
}

.top-info .content .images .img .circles:nth-child(2) {
  z-index: -1;
  -webkit-transform: rotate(190deg);
  transform: rotate(190deg);
}

.top-info .content .images .img .circles:nth-child(2) div {
  left: auto;
  right: -4.8rem;
  z-index: -1;
  -webkit-transform: rotate(-190deg);
  transform: rotate(-190deg);
}

.top-info .content .images .img .circles:nth-child(3) {
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg);
}

.top-info .content .images .img .circles:nth-child(3) div {
  -webkit-transform: rotate(-150deg);
  transform: rotate(-150deg);
  top: 26.8rem;
  left: -7rem;
}

.top-info .content .images .img .circles:nth-child(4) {
  -webkit-transform: rotate(430deg);
  transform: rotate(430deg);
}

.top-info .content .images .img .circles:nth-child(4) div {
  -webkit-transform: rotate(-430deg);
  transform: rotate(-430deg);
  height: 8.4rem;
  width: 8.4rem;
  left: auto;
  right: -2.2rem;
  top: 11.3rem;
}

.top-info .content .images .img .circles div {
  width: 14rem;
  height: 14rem;
  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;
  font-family: var(--font-Josefin);
  font-style: normal;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  border-radius: 500px;
  color: var(--color-black);
  background: linear-gradient(84.82deg, #FFFFFF -28.43%, #F3F3F3 183.97%, #D4D3D1 666.6%);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-shadow: 1rem 1rem 1.8rem 1rem #59bdd354;
  box-shadow: 1rem 1rem 1.8rem 1rem #59bdd354;
}

.top-info .content .images .img>img {
  height: 56.8rem;
  width: 56.8rem;
  min-height: 56.8rem;
  min-width: 56.8rem;
}

.top-info .content .images .img .rows .box {
  background: linear-gradient(88.62deg, #FFFFFF 9.15%, #F3F3F3 157.28%, #D4D3D1 493.86%);
  max-width: 46.8rem;
  width: 100%;
  border-radius: 1rem;
  padding: 2rem 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--color-white);
  position: absolute;
  bottom: -5rem;
  left: 46%;
  opacity: 0;
  -webkit-transform: translateX(-50%) scale(0.2);
  transform: translateX(-50%) scale(0.2);
}

.top-info .content .images .img .rows .box .date {
  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: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--font-OpenSans);
  font-style: normal;
  font-weight: bold;
  font-size: 3rem;
  line-height: 4.1rem;
  text-align: center;
  color: var(--color-black);
  margin-right: 2.7rem;
  margin-bottom: 0;
}

.top-info .content .images .img .rows .box .date span {
  font-size: 1.5rem;
  line-height: 2.1rem;
}

.top-info .content .images .img .rows .box .data {
  width: 100%;
  position: relative;
}

.top-info .content .images .img .rows .box .data>p:first-child {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  font-family: var(--font-Josefin);
  font-style: normal;
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1.7rem;
  color: var(--color-black);
  margin-bottom: .7rem;
}

.top-info .content .images .img .rows .box .data>p:first-child span {
  margin-left: auto;
}

.top-info .content .images .img .rows .box .data .text {
  font-family: var(--font-OpenSans);
  font-style: normal;
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 1.9rem;
  color: var(--color-black);
}

.top-info .content .images .img .rows .box .data>img {
  position: absolute;
  bottom: 1.1rem;
  right: 0;
}

.top-info .content .images .img .rows .small-box {
  background: linear-gradient(88.62deg, #FFFFFF 9.15%, #F3F3F3 157.28%, #D4D3D1 493.86%);
  max-width: 30.6rem;
  border-radius: 1rem;
  padding: 1.3rem 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--color-white);
  position: absolute;
  bottom: -14.4rem;
  left: 46%;
  opacity: 0;
  -webkit-transform: translateX(-50%) scale(0.2);
  transform: translateX(-50%) scale(0.2);
}

.top-info .content .images .img .rows .small-box .date {
  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: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--font-OpenSans);
  font-style: normal;
  font-weight: bold;
  font-size: 1.9rem;
  line-height: 2.7rem;
  text-align: center;
  color: var(--color-black);
  margin-right: 2.7rem;
  margin-bottom: 0;
}

.top-info .content .images .img .rows .small-box .date span {
  font-size: 1rem;
  line-height: 1.4rem;
}

.top-info .content .images .img .rows .small-box .data {
  width: 100%;
  position: relative;
}

.top-info .content .images .img .rows .small-box .data>p:first-child {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  font-family: var(--font-Josefin);
  font-style: normal;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.1rem;
  color: var(--color-black);
  margin-bottom: .45rem;
}

.top-info .content .images .img .rows .small-box .data>p:first-child span {
  margin-left: auto;
}

.top-info .content .images .img .rows .small-box .data .text {
  font-family: var(--font-OpenSans);
  font-style: normal;
  font-weight: normal;
  font-size: .9rem;
  line-height: 1.2rem;
  color: var(--color-black);
}

.top-info .content .images .img .rows .small-box .data>img {
  position: absolute;
  bottom: .6rem;
  right: 0;
  width: 1.1rem;
}

.benefits {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 20rem;
  padding: 60px;
}

.benefits .container {
  background: #FEFAF8;
  border-radius: 100px;
  padding: 100px;
}

.benefits h4 {
  font-family: var(--font-Josefin);
  font-style: normal;
  font-weight: 600;
  font-size: 4.3rem;
  line-height: 4.3rem;
  color: var(--color-black);
  margin: 0 auto 4.1rem auto;
  text-align: center;
}

.benefits .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.benefits .list>div {
  margin: 0 5.9rem 5rem 5.9rem;
  max-width: 30.6rem;
  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: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .3s;
  transition: .3s;
  /* cursor: pointer; */
}

.benefits .list>div:hover .icon {
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.benefits .list>div:hover p,
.benefits .list>div:hover .text {
  color: var(--color-pink);
  -webkit-transition: .3s;
  transition: .3s;
}

.benefits .list>div .icon {
  -webkit-transition: .3s;
  transition: .3s;
  width: 10rem;
  height: 10rem;
  background: white;
  border-radius: 10rem;
  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-bottom: 2.6rem;
  -webkit-box-shadow: 1px 11px 8px 1px #e06abd33;
  box-shadow: 1px 11px 8px 1px #e06abd33;
}

.benefits .list>div .icon img {
  width: 5.8rem;
  height: auto;
}

.benefits .list>div p {
  -webkit-transition: .3s;
  transition: .3s;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 2.6rem;
  text-align: center;
  color: #373D3E;
  margin-bottom: 2.2rem;
  white-space: nowrap;
}

.benefits .list>div .text {
  white-space: normal;
  font-size: 1.6rem;
  line-height: 2.2rem;
  margin-bottom: 0;
  font-weight: normal;
  -webkit-transition: .3s;
  transition: .3s;
}

.home-blogs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 50px;
  margin-bottom: 15rem;
  padding: 60px;
  padding-bottom: 100px;
}

.home-blogs-list-slider-controls {
  margin-bottom: 30px;
}

.home-blogs-list-slider-al,
.home-blogs-list-slider-ar {
  margin: 0 10px;
  cursor: pointer;
}

.home-blogs .slick-track {
  display: flex;
}

.home-blogs-slider-item {
  margin: 10px 10px;
  background-color: #fff;
  box-shadow: 0 0 5px 0px #e1e1e1;
  border-radius: 15px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  position: relative;
}

.home-blogs-slider-item-img {

  overflow: hidden;
}

.home-blogs-slider-item-img img {
  height: 265px;
  width: 100%;
  object-fit: cover;
}

.home-blogs-slider-item-title {
  padding: 20px;
}

.home-blogs-slider-item-title a {
  font-family: Josefin Sans;
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 26px;
  color: #373D3E;
  word-break: break-word;
}

.home-blogs-slider-item-text {
  font-family: Open Sans;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  color: #373D3E;
  padding: 20px;
  position: relative;
}



.home-blogs-slider-item.active .home-blogs-slider-item-text {
  height: auto;
}

.home-blogs-slider-item-adt-data {
  display: flex;
  padding: 20px;
  justify-content: end;
}

.home-blogs-slider-date {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  color: #A69999;
}

.home-blogs-slider-goto,
.home-blogs-slider-goto a {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #E06ABD;
}

.screens {
  padding: 35.5rem 0;
  margin-bottom: 29.4rem;
  background: radial-gradient(100.3% 307.49% at 18.49% 9%, #24B7D8 0%, #2FBEDD 19.63%, rgba(43, 192, 224, 0.9) 35.33%, rgba(69, 193, 219, 0.85) 57.97%, rgba(88, 201, 225, 0.8) 79.69%, rgba(117, 210, 230, 0.8) 98.02%);
}

.screens>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.screens>div .texts {
  max-width: 48.1rem;
  margin-right: 5.9rem;
}

.screens>div .texts h4 {
  font-family: var(--font-Josefin);
  font-style: normal;
  font-weight: 600;
  font-size: 4.3rem;
  line-height: 4.3rem;
  color: var(--color-white);
  margin-bottom: 2rem;
}

.screens>div .texts p {
  font-family: var(--font-OpenSans);
  font-style: normal;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 2.5rem;
  color: var(--color-white);
  margin-bottom: 6rem;
}

.screens>div .images {
  position: relative;
  width: 100%;
}

.screens>div .images img {
  width: auto;
  height: 36.9rem;
  position: absolute;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}

.screens>div .images img:nth-child(1) {
  top: -54.4rem;
  left: 47.1rem;
}

.screens>div .images img:nth-child(2) {
  left: 3.7rem;
  top: 0;
}

.screens>div .images img:nth-child(3) {
  left: 73.9rem;
  top: -10.8rem;
}

.screens>div .images img:nth-child(4) {
  top: 39.1rem;
  left: 49rem;
}

.inter h4 {
  font-family: var(--font-Josefin);
  font-style: normal;
  font-weight: 600;
  font-size: 4.3rem;
  line-height: 4.3rem;
  color: var(--color-black);
  margin: 0 auto 4.1rem auto;
  text-align: center;
  margin-bottom: 80px;
}

.about-us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: radial-gradient(100.3% 307.49% at 18.49% 9%, #24B7D8 0%, #2FBEDD 19.63%, rgba(43, 192, 224, 0.9) 35.33%, rgba(69, 193, 219, 0.85) 57.97%, rgba(88, 201, 225, 0.8) 79.69%, rgba(117, 210, 230, 0.8) 98.02%);
}

.about-us>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-us .texts {
  padding: 27.7rem 0 25.6rem 0;
  width: 100%;
  max-width: 44.4rem;
  margin-right: 19rem;
  padding-bottom: 110px;
  padding-top: 100px;
}

.about-us .texts h4 {
  font-family: var(--font-Josefin);
  font-style: normal;
  font-weight: 600;
  font-size: 4.3rem;
  line-height: 4.3rem;
  color: var(--color-white);
  margin-bottom: 2.2rem;
}

.about-us .texts p {
  font-family: var(--font-OpenSans);
  font-style: normal;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 2.5rem;
  color: var(--color-white);
  margin-bottom: 40px;
}

.about-us .texts .icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  margin: 100px 0 0 0;
  width: 110%;
}

.about-us .texts .icons .ico {
  display: flex;
  line-height: 24px;
  font-family: Josefin Sans;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #FFFFFF;
  gap: 8px;
  align-items: center;
}

.about-us .texts .icons .ico img {
  background: white;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 99px;
  padding: 6px;
  display: block;
}

.about-us .img {
  position: relative;
  height: 100%;
  width: 100%;
}

.about-us .img .img-wrap {
  background-size: cover;
  position: absolute;
  width: 51vw;
  height: 100%;
  top: 0;
  left: 0;
}

.about-us .img img {
  position: absolute;
  height: 100%;
  width: auto;
}

.partners {
  width: 100%;
  padding: 100px 0;
}

.partners .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 19.2rem;
}

.partners .list>div {
  margin: 0 5.9rem 0 5.9rem;
  max-width: 30.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
}

.partners .list>div:first-child {
  margin-left: 0;
}

.partners .list>div:last-child {
  margin-right: 0;
}

.partners .list>div:hover .icon {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.partners .list>div:hover p,
.partners .list>div:hover .text {
  color: var(--color-pink);
}

.partners .list>div .icon {
  -webkit-transition: .3s;
  transition: .3s;
  width: 10rem;
  height: 10rem;
  min-width: 10rem;
  min-height: 10rem;
  background: white;
  border-radius: 10rem;
  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-bottom: 0;
  background: var(--color-pink);
  margin-right: 2.5rem;
  -webkit-box-shadow: .1rem 1.1rem .8rem .1rem #e06abd33;
  box-shadow: .1rem 1.1rem .8rem .1rem #e06abd33;
}

.partners .list>div .icon img {
  width: 5.8rem;
  height: auto;
}

.partners .list>div p {
  -webkit-transition: .3s;
  transition: .3s;
  font-family: var(--font-Josefin);
  font-style: normal;
  font-weight: 600;
  font-size: 3.5rem;
  line-height: 3.5rem;
  color: #373D3E;
  margin-bottom: 1.6rem;
  white-space: nowrap;
}

.partners .list>div .text {
  -webkit-transition: .3s;
  transition: .3s;
  white-space: normal;
  font-size: 1.8rem;
  line-height: 2.5rem;
  margin-bottom: 0;
  font-weight: normal;
}

.partners .icons {
  margin: 0 11.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.partners .icons img {
  margin: 1rem;
  height: auto;
  width: auto;
  max-width: 20rem;
  max-height: 8rem;
}

.partner-list-block h4 {
  font-family: var(--font-Josefin);
  font-style: normal;
  font-weight: 600;
  font-size: 4.3rem;
  line-height: 4.3rem;
  color: var(--color-black);
  margin: 0 auto 4.1rem auto;
  text-align: center;
  margin-bottom: 80px;
}

.partner-list-slider {
  width:calc(100% - 240px);
  margin: auto;
}
@media (max-width: 1300px) {
	.partner-list-slider {
	 width:90%;
	}
}

.partner-list-slider-item {
  padding: 0 10px;
}

.partner-list-slider .slick-list
{
  margin: 0 -27px;
}

.partner-list-slider .slick-track {
  display: flex;
}

.slick-initialized .slick-slide.partner-list-slider-item {
  display: grid;
  height: auto;
  align-items: center;
  max-width: 300px;
  margin: 0 27px;
}

.partner-list-slider .partner-list-slider-item img {
  max-height: 200px;
  margin: auto;
}

.slider {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 29.6rem 16.7rem 36.7rem 0;
  width: 100%;
  max-width: 168.3rem;
  margin-right: auto;
  margin-left: auto;
}

.slider .img {
  width: 100%;
  min-height: 60rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 4rem;
}

.slider .slider-wrap {
  max-width: 80vw;
  position: static;
  width: 100%;
}

.slider .slider-wrap .el {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}

.slider .slider-wrap .el>.img {
  width: 70%;
}

.slider .slider-wrap .el>.text {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slider .slider-wrap .el h4 {
  font-family: var(--font-Josefin);
  font-style: normal;
  font-weight: 600;
  font-size: 4.3rem;
  line-height: 4.3rem;
  color: var(--color-black);
  margin-bottom: 2rem;
}

.slider .slider-wrap .el p {
  font-family: var(--font-OpenSans);
  font-style: normal;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 2.5rem;
  color: var(--color-black);
  margin-bottom: 4.5rem;
}

.slider .slider-wrap .slick-arrow {
  height: 71px;
  width: 71px;
  border-radius: 7rem;
  background: var(--color-pink);
  color: white;
  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;
  font-size: 4rem;
  font-family: sans-serif;
  line-height: normal;
  font-weight: 400;
  cursor: pointer;
  border: none;
  -webkit-transition: .3s;
  transition: .3s;
}

.slider .slider-wrap .slick-arrow.slick-prev {
  padding: 0 .2rem .6rem 0;
  position: absolute;
  top: 43%;

  transform: translateY(-50%) translateX(40px);
  left: 0;
  z-index: 10;
}

.slider .slider-wrap .slick-arrow.slick-prev:hover {
  -webkit-transition: .3s;
  transition: .3s;

  transform: translateY(-50%) translateX(40px) scale(1.2);
  -webkit-box-shadow: 0 0 1.11rem .9rem #e06abd42;
  box-shadow: 0 0 1.11rem .9rem #e06abd42;
}

.slider .slider-wrap .slick-arrow.slick-next {
  padding: 0 0 .6rem .3rem;
  position: absolute;
  top: 43%;

  transform: translateY(-50%) translateX(-40px);
  right: 0;
}

.slider .slider-wrap .slick-arrow.slick-next:hover {
  -webkit-transition: .3s;
  transition: .3s;

  transform: translateY(-50%) translateX(-40px) scale(1.2);
  -webkit-box-shadow: 0 0 2rem .5rem #e06abd42;
  box-shadow: 0 0 2rem .5rem #e06abd42;
}



html {
  font-size: 10px;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  background: white;
  font-family: var(--font-Josefin);
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  position: relative;
  padding: 0;
}

button:focus {
  outline: 0;
}

.home .blue-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 24rem;
  font-family: var(--font-OpenSans);
  font-style: normal;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: var(--color-white);

  background-color: #E06ABD;
  box-shadow: 25px 25px 50px #41aac0,
    -25px -25px 50px #57e6ff;
  border-radius: 500px;
  min-height: 5.6rem;
  border: none;
  outline: 0;
  -webkit-transition: .3s;
  transition: box-shadow 0.3s ease-in-out;
  position: relative;
}

.home .blue-button:hover {
  color: white;
  box-shadow: 15px 15px 30px #41aac0,
    -15px -15px 30px #57e6ff;
}

.blue-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 24rem;
  font-family: var(--font-OpenSans);
  font-style: normal;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: var(--color-white);

  background-color: #E06ABD;
  box-shadow: 15px 15px 30px #c9c9c9,
    -15px -15px 30px #ffffff;
  border-radius: 500px;
  min-height: 5.6rem;
  border: none;
  outline: 0;
  -webkit-transition: .3s;
  transition: box-shadow 0.3s ease-in-out;
  position: relative;
}

.blue-button:hover {
  color: white;
  box-shadow: 10px 10px 20px #c9c9c9,
    -10px -10px 20px #ffffff;
}



p {
  margin: 0;
}

.margin-element {
  width: 100%;
  max-width: 130.5rem;
  margin-left: auto;
  margin-right: auto;
}

.blue-box {
  background: radial-gradient(100.3% 307.49% at 18.49% 9%, #24B7D8 0%, #2FBEDD 19.63%, rgba(43, 192, 224, 0.9) 35.33%, rgba(69, 193, 219, 0.85) 57.97%, rgba(88, 201, 225, 0.8) 79.69%, rgba(117, 210, 230, 0.8) 98.02%);
  min-height: 100rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 1700px) {
  .slider {
    max-width: 95vw;
  }
}

@media screen and (max-width: 1600px) {
  html {
    font-size: 9px;
  }



}

@media screen and (max-width: 1300px) {
  html {
    font-size: 8px;
  }
}

@media screen and (max-width: 1160px) {
  html {
    font-size: 7px;
  }
}

@media screen and (min-width: 961px) {
  menu .burger {
    display: none;
  }

  .mobile-only {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  html {
    font-size: 12px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .margin-element {
    max-width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: calc(100vw - 3.2rem);
    margin-left: auto;
    margin-right: 1.6rem;
  }

  .screens,
  .about-us,
  .top-info {
    background: radial-gradient(125.73% 378.01% at 18.49% 9%, #24B7D8 0%, #2FBEDD 19.63%, rgba(43, 192, 224, 0.9) 35.33%, rgba(69, 193, 219, 0.85) 57.97%, rgba(88, 201, 225, 0.8) 79.69%, rgba(117, 210, 230, 0.8) 98.02%);
  }

  .about-us {
    padding: 0 40px 0 20px;
  }

  .blue-button {
    font-size: 1.2rem;
    line-height: 1.6rem;
    max-width: 18rem;
    min-height: 4.8rem;
  }

  menu .logo {
    height: 2.4rem;
  }

  menu .logo:before {
    width: .6rem;
    height: .6rem;
    min-width: .6rem;
    min-height: .6rem;
  }

  menu .logo a {
    font-size: 1.3rem;
    line-height: 1.3rem;
  }

  menu>li:not(.logo) {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(54, 195, 226, 0.95);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: .3s;
    transition: .3s;
    margin-left: 150vw;
  }

  .mobile-menu.active {
    margin-left: 0;
  }

  .mobile-menu .mobileDrop {
    position: relative;
  }

  .mobile-menu .mobileDrop.opened .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .mobile-menu .mobileDrop .list {
    margin-top: 20px;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: 2rem;
    left: 0;
  }

  .mobile-menu .mobileDrop .list a {
    margin-bottom: 2rem;
    opacity: 0.7;
  }

  .mobile-menu .mobileDrop .list a.active {
    opacity: 1;
    border-bottom: 1px solid white;
  }

  .mobile-menu>img {
    width: 1.85rem;
    height: auto;
    position: absolute;
    top: 3.3rem;
    right: 2.15rem;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
  }

  .mobile-menu ul li {
    margin-bottom: 3.5rem;
  }

  .mobile-menu ul li a {
    font-family: var(--font-Josefin);
    font-style: normal;
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 1.6rem;
    color: var(--color-white);
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .mobile-menu ul li a img {
    margin-left: 2rem;
  }

  .top-info {
    padding-top: 12rem;
    min-height: 1rem;
    padding-bottom: 0;
    z-index: 1;
  }

  .top-info .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .top-info .content .texts {
    padding-top: 0;
  }

  .top-info .content .texts h2 {
    font-size: 3.5rem;
    line-height: 3.5rem;
    margin-bottom: 1rem;
    /* max-width: 28.4rem; */
  }

  .top-info .content .texts p {
    font-size: 1.4rem;
    line-height: 1.9rem;
    margin-bottom: 3rem;
    /* max-width: 24.1rem; */
  }

  .top-info .content .images {
    margin-bottom: -3.6rem;
    min-height: 31.3rem;
    min-width: 31.3rem;
  }

  .top-info .content .images .img {
    margin-left: auto;
    margin-right: -8.7rem;
    width: 31.3rem;
    height: 31.3rem;
  }

  .top-info .content .images .img>img {
    height: 31.3rem;
    width: 31.3rem;
    min-height: 31.3rem;
    min-width: 31.3rem;
  }

  .top-info .content .images .img .rows {
    display: none;
  }

  .top-info .content .images .img .circles div {
    font-size: .9rem;
    line-height: .9rem;
  }

  .top-info .content .images .img .circles:nth-child(2) div {
    display: none;
  }

  .top-info .content .images .img .circles:nth-child(3) div {
    width: 8.4rem;
    height: 8.4rem;
    top: 7.1rem;
    left: -4rem;
    -webkit-box-shadow: -0.9rem 0.7rem 1.6rem -0.1rem #24647340;
    box-shadow: -0.9rem 0.7rem 1.6rem -0.1rem #24647340;
  }

  .top-info .content .images .img .circles:nth-child(4) {
    z-index: -1;
  }

  .top-info .content .images .img .circles:nth-child(4) div {
    width: 5.7rem;
    height: 5.7rem;
    right: 6rem;
    top: -2.8rem;
  }

  .benefits {
    z-index: 2;
    background: white;
    margin-bottom: 9rem;
    padding: 15px;
  }

  .benefits .container {
    border-radius: 30px;
    padding: 15px;
  }

  .benefits h4 {
    font-size: 2.7rem;
    line-height: 2.7rem;
    margin-top: 10rem;
    margin-bottom: 3rem;
  }

  .benefits .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .benefits .list>div {
    margin: 0;
  }

  .benefits .list>div .icon {
    height: 7rem;
    width: 7rem;
    margin-bottom: 2rem;
  }

  .benefits .list>div .icon img {
    width: 3.4rem;
  }

  .benefits .list>div>p {
    font-size: 1.8rem;
    line-height: 1.8rem;
    margin-bottom: 1.2rem;
  }

  .benefits .list>div .text {
    font-size: 1.4rem;
    line-height: 1.9rem;
    margin-bottom: 4.5rem;
    opacity: .8;
  }

  .screens {
    padding-top: 7.2rem;
    padding-bottom: 7.3rem;
    margin-bottom: 10rem;
  }

  .screens>div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .screens>div .texts {
    margin-right: 0;
    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: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .screens>div .texts h4 {
    font-size: 2.7rem;
    line-height: 2.7rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .screens>div .texts>p {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.9rem;
    margin-bottom: 2rem;
    font-weight: 400;
  }

  .screens>div .texts a {
    display: none;
  }

  .screens>div .images {
    display: none;
  }

  .slider {
    padding: 10rem 0 13rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    max-width: 100%;
    width: calc(100vw - 3.2rem);
    margin-left: auto;
    margin-right: 1.6rem;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .slider #slider-img {
    min-height: 37.1rem;
    margin-right: 0;
  }

  .slider .sl-wrap {
    width: 100%;
  }



  .slider .slider-wrap .slick-arrow {
    display: none !important;
  }

  .slider .slider-wrap .el {
    flex-direction: column;
  }

  .slider .slider-wrap .el>* {
    width: 100% !important;
  }

  .slider .slider-wrap {
    max-width: 95vw;
    margin-left: 1vw;
  }

  .slider .slider-wrap .el .img {
    min-height: 23rem;
    margin-bottom: 20px;
  }

  .slider .slider-wrap .el>.text {
    padding: 0 20px;
  }

  .slider .slider-wrap .el h4 {
    font-size: 2.7rem;
    line-height: 2.7rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  .slider .slider-wrap .el p {
    font-size: 1.4rem;
    line-height: 1.9rem;
    margin-bottom: 3rem;
  }



  .about-us .margin-element {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .about-us .margin-element .texts {
    padding-top: 5.7rem;
    padding-bottom: 5.6rem;
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about-us .margin-element .texts h4 {
    font-size: 2.7rem;
    line-height: 2.7rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  .about-us .margin-element .texts p {
    font-size: 1.4rem;
    line-height: 1.9rem;
    margin-bottom: 2rem;
  }

  .about-us .margin-element .texts .mobile-only {
    flex-direction: column;
  }

  .about-us .margin-element .texts .mobile-only img {
    height: 24rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: 100vw;
  }

  .about-us .margin-element .texts button {
    margin: 0 auto;
  }

  .about-us .margin-element .img {
    display: none;
  }

  .partners {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .partners .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
  }

  .partners .list>div {
    margin: 0 0 5rem 0;
  }

  .partners .list>div .icon {
    width: 5rem;
    height: 5rem;
    min-width: 5rem;
    min-height: 5rem;
  }

  .partners .list>div .icon img {
    width: 2.6rem;
  }

  .partners .list>div p {
    font-size: 2.7rem;
    line-height: 2.7rem;
    margin-bottom: .6rem;
  }

  .partners .list>div .text {
    font-size: 1.4rem;
    line-height: 1.9rem;
    opacity: .8;
  }

  .partners .icons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0;
  }

  .partners .icons img {
    margin: 0 auto;
    max-width: 10rem;
    max-height: 5.3rem;
  }

  .partners .icons img:last-child {
    display: none;
  }

  footer {
    padding-top: 3rem;
  }

  footer>div:first-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  footer>div:first-child .logo {
    margin-right: 0;
    font-size: 1.8rem;
    line-height: 1.8rem;
    height: 3.5rem;
    margin-bottom: 2rem;
  }

  footer>div:first-child .logo:before {
    height: .9rem;
    width: .9rem;
    min-height: .9rem;
    min-width: .9rem;
  }

  footer>div:first-child .container-menu {
    width: 100%;
    margin: 0;
  }

  footer>div:first-child ul {
    width: 100%;
  }

  footer>div:first-child .container-menu:nth-child(3) li:first-child {
    border-top: none;
  }

  footer>div:first-child ul li {
    margin-bottom: 0;
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }

  footer>div:first-child ul li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
  }

  footer>div:first-child ul li a {
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 1.9rem;
  }

  footer>P {
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  html {
    font-size: 10px;
  }
}

/*# sourceMappingURL=maps/app.css.map */


@media (max-width: 599px) {
  .home-blogs {
    padding: 60px 20px;
  }
}

/* ================================================ Add block for aboutpage ==================================================================== */



.teampage-projects-section {
  max-width: 1240px;
  box-sizing: border-box;
}

.teampage-projects-section h2 {
  font-family: Josefin Sans;
  font-style: normal;
  font-weight: semibold;
  font-size: 40px;
  line-height: 38px;
  color: #292929;
  text-align: center;
  margin-bottom: 80px;
}

.teampage-projects-wrapper {
  padding-top: 71px;
  padding-bottom: 100px;
}

.teampage-projects-card {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 64px;
}

.teampage-projects-card:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.teampage-projects-card-image {
  position: relative;
}

.teampage-projects-card:nth-of-type(2n) .teampage-projects-card-col-1 {
  margin-right: 0;
  margin-left: 40px;
}

.teampage-projects-card:nth-of-type(2n) h5 {
  text-align: right;
}

.teampage-projects-card:nth-of-type(2n) p {
  text-align: right;
}

.teampage-projects-card:last-of-type {
  margin-bottom: 0;
}

.teampage-projects-card-col-1 {
  margin-right: 40px;
}

.teampage-projects-card-col-2 {}

.teampage-projects-card-image-main {
  border-radius: 16px;
  max-width: 490px;
  object-fit: cover;
  object-position: center;
  min-height: 200px;
}

.teampage-projects-card-image-brand {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #C2C2C295;
  border-radius: 16px;
  padding: 12px 26px 11px 25px;
}

.teampage-projects-card-image-brand img {
  max-width: 175px;
  margin: 0 auto;
  border-radius: 0;
}

.teampage-projects-card h5 {
  font-family: Open Sans;
  font-style: normal;
  font-weight: semibold;
  font-size: 24px;
  line-height: 24px;
  color: #373D3E;
  margin-bottom: 24px;
}

.teampage-projects-card p {
  font-family: Open Sans;
  font-style: normal;
  font-weight: regular;
  font-size: 14px;
  line-height: 24px;
  color: #373D3E;
  max-width: 620px;
}

@media screen and (max-width: 1024px) {

  .teampage-projects-card {
    flex-wrap: wrap;
  }

  .teampage-projects-card {}

  .teampage-projects-card-image {
    margin-bottom: 40px;
  }

  .teampage-projects-card-image-main {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .teampage-projects-card h5 {
    text-align: left !important;
  }

  .teampage-projects-card p {
    max-width: 100%;
    text-align: left !important;
  }

  .teampage-projects-card:nth-of-type(2n) .teampage-projects-card-col-1 {
    margin-right: 0;
    margin-left: 0px;
  }

  .teampage-projects-card-col-1 {
    margin-right: 0px;
  }
}

@media screen and (max-width: 450px) {

  .teampage-projects-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .teampage-projects-section h2 {
    margin-bottom: 40px;
  }
}



.home-boxes .box {
  min-height: 330px;
  height: 100%;
}

.home-boxes p {
  height: 150px;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.home-boxes p:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 81px;
  background: linear-gradient(0deg, #FDE2EB 30%, rgba(253, 226, 235, 0.4));
  left: 0;
  bottom: 0;
  transition: .1s ease;
}

.home-boxes .box.active p {
  height: 100%;
}

.home-boxes .box.active p:after {
  opacity: 0;
}

.home-boxes .box.active .box-button {
  transform: rotate(45deg);
}

.home-boxes .box .box-button {
  transition: .2s ease;
  width: 18px;
  height: 18px;
  position: relative;
  margin-left: auto;
  cursor: pointer;
}

.home-boxes .box-button .box-button-h {
  width: 2px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #292929;
  border-radius: 25px;
}

.home-boxes .box-button .box-button-w {
  height: 2px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #292929;
  border-radius: 25px;
}

@media screen and (max-width: 1280px) {

  .home-boxes {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-boxes .boxes-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .home-boxes .box {
    width: 49%;
  }
}

@media screen and (max-width: 768px) {

  .home-boxes .box {
    min-height: unset;
    width: 100%;
  }
}

.inter {
  padding-top: 120px;
}






/* ================================================ NEW SLIDER ==================================================================== */


.home .slider {
  padding-top: 80px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 140px;
  padding-right: 140px;
  padding-bottom: 32px;
}

.slider .img {
  width: 100%;
  min-height: 50rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 4rem;
}

.slider .slider-wrap {
  max-width: 80vw;
  max-width: 100%;
  position: static;
  width: 100%;
}

.slider .slick-list {
  /* max-width: 1320px; */
  max-width: 1440px;
	margin:0 auto;
}

.slider .slider-wrap .el {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  justify-content: center;
}

.slider .slider-wrap .el>.img {
  width: 70%;
  max-width: 730px;
}

.slider .slider-wrap .el>.text {
  width: 36%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slider .slider-wrap .el p {
  margin-bottom: 3.5rem;
}




.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  margin-top: 36px;
  position: relative;
}

.slick-dots .dot {
  width: 16px;
  height: 16px;
  left: 0;
  z-index: 1;
  position: absolute;
  display: flex;
  transition: all 250ms cubic-bezier(0, 0, 0.5, 1);
  background-color: #EC8FC7;
  border-radius: 100%;
  margin-left: 4px;
  margin-right: 4px;

}

.slick-dots li {
  width: 16px;
  height: 16px;
  border-radius: 25px;
  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-left: 4px;
  margin-right: 4px;
  -webkit-transition: .3s;
  transition: .3s;
  border: none;
  background-color: #FBC6DC;
  cursor: pointer;
  position: relative;

}

.slick-dots li:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 100%;


  transition: all 250ms cubic-bezier(0, 0, 0.5, 1);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.slick-dots li.slick-active:before,
.slick-dots li:hover:before {

  background-color: #EC8FC7;
}

.slick-dots li button {
  display: none;
}

.home-blogs .margin-element {
  max-width: 1320px;
}

.home-blogs h4 {
  font-family: var(--font-Josefin);
  font-style: normal;
  font-weight: 600;
  font-size: 4.3rem;
  line-height: 4.3rem;
  color: #000;
  margin: 0 auto 4.1rem auto;
  text-align: center;
  margin-bottom: 80px;

}

.home-blogs .slick-arrow,.partners .slick-arrow {
  height: 71px;
  width: 71px;
  border-radius: 7rem;
  background: var(--color-pink);
  color: white;
  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;
  font-size: 4rem;
  font-family: sans-serif;
  line-height: normal;
  font-weight: 400;
  cursor: pointer;
  border: none;
  -webkit-transition: .3s;
  transition: .3s;
}
.partners.partners_blue .slick-arrow {
	background: white;
	color: #2cbcdc;
}
.partners.partners_blue .slick-arrow.slick-next:hover,.partners.partners_blue .slick-arrow.slick-prev:hover{
	-webkit-box-shadow: 0 0 2rem 0.5rem #2cbcdc24;
    box-shadow: 0 0 2rem 0.5rem #2cbcdc24;
}
.home-blogs .slick-arrow.slick-prev,.partners .slick-arrow.slick-prev {
  padding: 0 .2rem .6rem 0;
  position: absolute;
  top: 400px;
  transform: translateY(-50%) translateX(40px);
  left: 0;
  z-index: 10;
}
.partners .slick-arrow.slick-prev {
	top:50%;
	left: -120px;
}

.home-blogs .slick-arrow.slick-prev:hover,.partners .slick-arrow.slick-prev:hover {
  -webkit-transition: .3s;
  transition: .3s;

  transform: translateY(-50%) translateX(40px) scale(1.2);
  -webkit-box-shadow: 0 0 1.11rem .9rem #e06abd42;
  box-shadow: 0 0 1.11rem .9rem #e06abd42;
}

.home-blogs .slick-arrow.slick-next,.partners .slick-arrow.slick-next {
  padding: 0 0 .6rem .3rem;
  position: absolute;
  top: 400px;

  transform: translateY(-50%) translateX(-40px);
  right: 0;
}
.partners .slick-arrow.slick-next {
	top:50%;
	right: -120px;
}
.home-blogs .slick-arrow.slick-next:hover,.partners .slick-arrow.slick-next:hover {
  -webkit-transition: .3s;
  transition: .3s;

  transform: translateY(-50%) translateX(-40px) scale(1.2);
  -webkit-box-shadow: 0 0 2rem .5rem #e06abd42;
  box-shadow: 0 0 2rem .5rem #e06abd42;
}

.home-blogs {
  position: relative;
  margin-bottom: 0;

  padding-left: 120px;
  padding-right: 120px;
}

.home-blogs .slick-slider {
  position: unset;
}
.home-blogs .slick-slider .slick-list {
	overflow: visible;
}
.home-blogs .home-blogs-slider-item {
	
}
.home-blogs .home-blogs-slider-item.active {
	
}

.home-blogs-list-slider-controls {
  margin-bottom: 30px;
  display: flex;
}

.home-blogs-list-slider-al,
.home-blogs-list-slider-ar {
  margin: 0 20px;
  cursor: pointer;
  background: #FFFFFF;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  border-radius: 100%;
  width: 71px;
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-blogs .slick-track {
  display: flex;
  align-items: start;
}

.home-blogs-slider-item {
  margin: 10px 20px;
  background-color: #fff;
  box-shadow: 0px 0px 5px #D0D0D0;
  border-radius: 15px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  overflow: hidden;
}

.home-blogs-slider-item .up_cross {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65px;
  height: 70px;
  cursor: pointer;
}

.home-blogs-slider-item .up_cross::before {
  position: absolute;
  right: 35px;
  top: 30px;
  content: " ";
  height: 20px;
  width: 3px;
  background: var(--color-pink);
  /* -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); */
  border-radius: 100px;
  transition: 0.2s ease;
}

.home-blogs-slider-item .up_cross::after {
  position: absolute;
  right: 35px;
  top: 30px;
  content: " ";
  height: 20px;
  width: 3px;
  background: var(--color-pink);
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  border-radius: 100px;
  transition: 0.2s ease;
}

.home-blogs-slider-item.active .up_cross::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.2s ease;
  
}
.home-blogs-slider-item.active .up_cross::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: 0.2s ease;
}

.home-blogs-slider-item-img {
  overflow: hidden;
}

.home-blogs-slider-item-img img {
  height: 265px;
  width: 100%;
  object-fit: cover;
}

.home-blogs-slider-item-title {
  padding: 36px 20px;
  padding-bottom: 24px;
  padding-top: 40px;
max-height: 90px;;
}
/* .home-blogs-slider-item-title {
	min-height:116px;
} */
@media (max-width: 1240px) {
	
	.home-blogs-slider-item-title {
		max-height: auto;
	}
	.home-blogs-slider-item-title {
	min-height:auto;
}
}
.home-blogs-slider-item-title p {
  font-family: Josefin Sans;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
  color: #373D3E;
  word-break: break-word;
	
}

.home-blogs-slider-item-text {
  font-family: Open Sans;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  color: #373D3E;
  padding: 0px 20px;
  height: 150px;
  overflow: hidden;
}

.home-blogs-slider-item-adt-data {
  display: flex;
  padding: 20px;
  justify-content: end;
  margin-top: auto;
  padding-top: 32px;
  padding-bottom: 40px;
  position: relative;
}

.home-blogs-slider-date {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  color: #A69999;
}

.home-blogs-slider-goto,
.home-blogs-slider-goto a {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #E06ABD;
}

.partners_blue {
  background-color: #2CBCDC;
  padding-top: 100px;
  padding-bottom: 100px;
}

.partners_blue h4 {
  color: #fff;
  margin-bottom: 80px;
}

.screens>div .texts {
  max-width: 47%;
}

.home .homepage-cards-section {
  padding-top: 0;
}

.home .screens {
  margin-bottom: 120px;
  margin-top: 120px;
}

@media (max-width: 991px) {
  .home-blogs {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 50px;
  }

  .home .screens {
    margin-bottom: 00px;
    margin-top: 50px;
  }

  .home .slider {
    padding-left: 40px;
    padding-right: 40px;
  }

  .partners_blue h4 {
    margin-bottom: 40px;
  }

  .home-blogs h4 {
    margin-bottom: 40px;
  }

  .inter h4 {
    margin-bottom: 40px;
  }

  .partner-list-block h4 {
    margin-bottom: 40px;
  }

  .screens>div .texts {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .home-blogs {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home .slider {
    padding-left: 20px;
    padding-right: 20px;
  }

  .partners_blue h4 {
    font-size: 32px;
  }

  .home-blogs h4 {
    font-size: 32px;
  }

  .inter h4 {
    font-size: 32px;
  }

  .partner-list-block h4 {
    font-size: 32px;
  }

  .slider .slider-wrap .el p {
    margin-bottom: 20px;
  }

  .partners_blue {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .home-blogs {
    margin-top: 0;
    padding-bottom: 30px;
  }

  .home .screens {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: 30px;
  }

  .inter {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-us .texts .icons {
    margin-top: 40px;
  }

  .partners {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .home .slider {
    padding-top: 60px;
  }
}

/* ================================================ HIDDEN PAGE ==================================================================== */

.dx-hp-wrapper-menu-blue-box
{
	height: 110px;
}

.dx-hp-wrapper .container
{
	max-width: 1400px;
	margin: 100px auto;
}

.dx-hp-wrapper h4
{
	font-family: var(--font-Josefin);
	font-style: normal;
	font-weight: 600;
	font-size: 4.3rem;
	line-height: 4.3rem;
	color: var(--color-black);
	margin: 0 auto 4.1rem auto;
	text-align: center;
}

.dx-hp-introduction-text-block
{
	font-size: 20px;
	margin: 50px auto;
	font-family: "Open Sans";
	font-style: normal;
	text-align: center;
	color: #373D3E;
}

.dx-hp-videos-item
{
	background: #FEFAF8;
	display: flex;
	flex-wrap: wrap;
	padding: 50px;
	margin-bottom: 50px;
}

.dx-hp-videos-item:nth-child(2n)
{
	background: linear-gradient(0deg, #E8FBFF 0%, #E8FBFF 100%), #FEFAF8;
}

.dx-hp-videos-item-text-block
{
	width: 40%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 30px;
}

.dx-hp-videos-item-icon
{
	width: 40px;
}

.dx-hp-videos-item-text
{
	color: #373D3E;
	font-family: Josefin Sans;
	font-size: 34px;
	font-style: normal;
	font-weight: 600;
	line-height: 50px; /* 125% */ 
}

.dx-hp-videos-item-video-block
{
	position: relative;
	width: 60%;
}

.dx-hp-videos-item-video-overlay
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.76);
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: Josefin Sans;
	font-size: 34px;
	cursor: pointer;
}

.dx-hp-download-buttons-block
{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
	justify-content: center;
}

.dx-hp-download-button
{
	background: var(--secondary-5, #E06ABD);
	padding: 16px 44px;
	color: #FFF;
	font-family: Josefin Sans;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 31px;
	border-radius: 30px;
	margin: 0 10px 15px;
	display: block;
	width: max-content;
	
	display: flex;
	align-items: center;
}

.dx-hp-download-button img
{
	width: 20px;
	margin-right: 7px;
}

.dx-hp-download-button:hover
{
	color: #e8e8e8;
}

@media (max-width: 767px) 
{
	.dx-hp-wrapper .container
	{
		margin-bottom: 50px;
	}
	
	.dx-hp-videos-item
	{
		padding: 25px;
	}
	
	.dx-hp-videos-item-text-block
	{
		width: 100%;
		flex-direction: row;
		padding: 35px 0;
	}
	.dx-hp-videos-item-video-block
	{
		width: 100%;
	}
	
	.dx-hp-videos-item-text
	{
		font-size: 25px;
		line-height: 1.3;
		margin-left: 10px;
	}
}