@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #252525;
  line-height: 19px;
  min-width: 320px;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}

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

a {
  text-decoration: none;
}

a, button {
  transition: all 0.3s ease-in-out;
  font-family: "Montserrat", sans-serif;
}

button {
  cursor: pointer;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-top: 20px;
  z-index: 4;
}
.header__right {
  display: flex;
  align-items: center;
}

.main-menu {
  display: flex;
  align-items: center;
}
.main-menu li {
  margin-left: 43px;
}
.main-menu li:first-child {
  margin-left: 0;
}
.main-menu li.active a {
  color: #E56357;
}
.main-menu li.active a::after {
  content: "";
  width: calc(100% + 10px);
  height: 4px;
  background-color: #E56357;
  position: absolute;
  bottom: 0;
  left: -5px;
  right: 0;
  margin: auto;
}
.main-menu li a {
  font-weight: 700;
  line-height: 28px;
  color: #252525;
  display: block;
  padding-top: 45px;
  padding-bottom: 45px;
  position: relative;
}

.ios-app {
  margin-left: 70px;
  position: relative;
}

.ios-app-in-developer {
  width: 179px;
  height: 18px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  background-color: #000;
  color: #fff;
  border-radius: 8px;
  padding: 4px 4px;
  position: absolute;
  left: -50%;
  right: -50%;
  bottom: 57px;
  margin: auto;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.ios-app-in-developer span {
  display: block;
  text-align: center;
}
.ios-app-in-developer span::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid #000;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  display: block;
  margin: 3px auto 0 auto;
}
.ios-app-in-developer.is-active {
  opacity: 1;
  visibility: visible;
}

/*mobile menu*/
.mobile-menu-buttom-block {
  display: none;
}

.mobile-menu-buttom {
  background-color: transparent;
  padding: 10px 0px 10px 10px;
  margin-left: 5px;
  outline: none;
  border: none;
}

.mobile-menu {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 6;
  transition: all 0.4s ease-in-out;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu.active .mobile-menu-content {
  right: 0;
}

.mobile-menu__container {
  display: flex;
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mobile-menu-dark {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 4;
}

.mobile-menu-content {
  width: 70%;
  height: 100%;
  padding: 25px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  position: absolute;
  right: -70%;
  z-index: 5;
  transition: all 0.5s ease-in-out;
}
.mobile-menu-content button {
  width: 35px;
  display: block;
  margin-left: auto;
  padding: 0;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.mobile-list {
  padding-top: 30px;
}
.mobile-list li {
  margin-bottom: 34px;
}
.mobile-list li a {
  font-weight: 700;
  line-height: 28px;
  color: #252525;
  display: block;
  padding-left: 30px;
}

.iphone-link-container p {
  text-align: center;
  color: #898989;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 13px;
}
.iphone-link-container img {
  width: 170px;
  display: block;
  margin: 0 auto;
}

/* end mobile menu*/
@media screen and (max-width: 992px) {
  .nav {
    display: none;
  }
  .mobile-menu-buttom-block {
    display: block;
  }
  .ios-app {
    margin-left: 0;
  }
  .ios-app img {
    height: 35px;
  }
  .ios-app-in-developer {
    bottom: -35px;
  }
  .ios-app-in-developer span::after {
    content: none;
  }
  .ios-app-in-developer span::before {
    content: "";
    width: 0;
    height: 0;
    border-bottom: 10px solid #000;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    display: block;
    margin: -12px auto 2px auto;
  }
}
@media screen and (max-width: 768px) {
  .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
    padding: 27px 20px;
    background-color: #fff;
  }
}
@media screen and (max-width: 480px) {
  .header {
    padding: 21px 20px;
  }
  .logo {
    width: 142px;
  }
  .mobile-menu-buttom-block button {
    padding-top: 0;
    padding-bottom: 0;
  }
}
footer {
  color: #fff;
  position: relative;
  z-index: 2;
  margin-top: 50px;
  font-size: 15px;
  font-weight: 500;
  color: #898989;
  padding-bottom: 25px;
}

@media screen and (max-width: 768px) {
  footer {
    text-align: center;
  }
}
.about-page {
  background-color: #F5F5F5;
  padding-top: 37px;
  min-height: calc(100vh - 202px);
}

.about-center {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}
.about-center__left {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-center__right {
  width: 60%;
  display: flex;
  align-items: flex-end;
}
.about-center__right img {
  display: block;
  max-width: 100%;
}

.about-title {
  font-size: 35px;
  line-height: 42px;
  font-weight: 800;
  margin-bottom: 13px;
}

.about-subtitle {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 13px;
}
.about-subtitle strong {
  font-weight: 700;
  color: #E56357;
}

.about-slogan {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 21px;
}
.about-slogan strong {
  font-weight: 600;
}

.about-button {
  width: 146px;
  box-sizing: border-box;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  background-color: #E56357;
  border-radius: 5px;
  padding: 11px 28px;
}

@media screen and (max-width: 768px) {
  .about-center {
    padding-top: 111px;
    flex-direction: column;
    justify-content: center;
  }
  .about-center__left, .about-center__right {
    width: 100%;
  }
  .about-center__right {
    margin-top: 45px;
  }
}
.contact-page {
  background-color: #F5F5F5;
  padding-top: 50px;
  padding-bottom: 70px;
  min-height: calc(80vh - 102px);
}

.contact-center {
  max-width: 610px;
  margin: 0 auto;
  padding: 40px 50px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 8px;
}

.contact-title {
  font-size: 35px;
  line-height: 42px;
  font-weight: 800;
  margin-bottom: 7px;
}

.contact-subtitle {
  line-height: 20px;
  color: #000;
  margin-bottom: 34px;
}

.contact-form label {
  display: block;
  font-weight: 700;
  line-height: 15px;
  font-size: 13px;
  margin-bottom: 7px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  height: 44px;
  padding: 0 22px;
  box-sizing: border-box;
  display: block;
  border: 1px solid #999898;
  border-radius: 5px;
  margin-bottom: 21px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #E56357;
}
.contact-form input:focus, .contact-form input:active, .contact-form textarea:focus, .contact-form textarea:active {
  outline: none;
}
.contact-form textarea {
  height: 150px;
  resize: none;
  padding-top: 15px;
  padding-bottom: 15px;
}

.form-button {
  display: flex;
  justify-content: flex-end;
}

.form-submit {
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
  color: #fff;
  padding: 12px 28px;
  background: #E56357;
  border-radius: 5px;
  border: none;
  outline: none;
}

.contact-success {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.contact-success.active {
  opacity: 1;
  visibility: visible;
}
.contact-success__container {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px 30px;
  position: relative;
}

.contact-close-icon {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  padding: 10px;
}

.contact-success-text {
  padding: 15px 0;
}

@media screen and (max-width: 768px) {
  .contact-page {
    padding-top: 160px;
  }
}
@media screen and (max-width: 450px) {
  .contact-center {
    padding: 40px 15px;
  }
}
.white-side {
  width: 50%;
  height: 100vh;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.red-side {
  width: 50%;
  height: 100vh;
  background: linear-gradient(180deg, rgba(229, 96, 87, 0.35) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.container {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
}

.main-content {
  display: flex;
  position: relative;
  z-index: 3;
  align-items: center;
  padding-top: 65px;
}
.main-content__left, .main-content__right {
  width: 50%;
  box-sizing: border-box;
}
.main-content__left {
  padding-right: 69px;
}
.main-content__right {
  padding-left: 72px;
}

.mini-list {
  display: flex;
}
.mini-list li {
  position: relative;
  margin-left: 30px;
  color: #E56357;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
}
.mini-list li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 6px;
  background-color: #E56357;
  position: absolute;
  left: -18px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.mini-list li:first-child {
  margin-left: 0;
}
.mini-list li:first-child::before {
  content: none;
}

.main-title {
  font-size: 52px;
  line-height: 64px;
  font-weight: 800;
  color: #252525;
  margin-top: 25px;
  margin-bottom: 30px;
}
.main-title span {
  color: #E56357;
}

.main-slogan {
  font-size: 18px;
  line-height: 30px;
}

.main-form {
  width: 100%;
  display: flex;
  margin-top: 41px;
}
.main-form button {
  font-size: 16px;
  height: 54px;
  color: #fff;
  line-height: 19.5px;
  font-weight: 700;
  background-color: #E56357;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border: none;
  outline: none;
  padding: 17px 25px;
}
.main-form button:hover {
  background-color: #cf2f20;
}
.main-form input {
  width: calc(94% - 150px);
  height: 54px;
  border: 1px solid #999898;
  outline: none;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-left: 22px;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #E56357;
  font-weight: 500;
}
.main-form input::-webkit-input-placeholder {
  color: #8F8F8F;
  font-size: 15px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
.main-form input::-moz-placeholder {
  color: #8F8F8F;
  font-size: 15px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
.main-form input:-ms-input-placeholder {
  color: #8F8F8F;
  font-size: 15px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
.main-form input:-moz-placeholder {
  color: #8F8F8F;
  font-size: 15px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 992px) {
  .main-content__right {
    padding-left: 45px;
  }
  .mini-list li {
    font-size: 14px;
    line-height: 17px;
  }
  .mini-list li::before {
    width: 5px;
    height: 5px;
  }
  .main-title {
    font-size: 38px;
    line-height: 48px;
  }
  .main-slogan {
    font-size: 16px;
    line-height: 23px;
  }
  .tablet-none {
    display: none;
  }
  .main-form {
    flex-wrap: wrap;
  }
  .main-form input {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  .main-form button {
    width: 100%;
    border-radius: 8px;
  }
}
/*right side content*/
.phones-list {
  height: 685px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}

.phone-space {
  padding-left: 20px;
  padding-right: 20px;
}

.phone-section-activity {
  display: none;
  transition: all 0.5s ease-in-out;
}
.phone-section-activity.active {
  display: block;
  animation: fadein 2s;
}

.phone-section {
  width: 320px;
  height: 685px;
  box-sizing: border-box;
  border: 6px solid #000;
  border-radius: 48px;
  background-color: #fff;
  position: relative;
}
.phone-section__head {
  height: 115px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.phone-section__head.mini {
  height: 88px;
}
.phone-section__head.mini .user {
  margin-top: 10px;
}
.phone-section__grey {
  height: 39px;
  background: linear-gradient(180deg, #F8F8F8 0%, rgba(255, 255, 255, 0) 100%);
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.phone-section__content img {
  width: 163px;
  display: block;
  margin: 0 auto;
}
.phone-section__panel {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  margin: auto;
  padding-left: 25px;
  padding-right: 25px;
}
.phone-section__tooltip {
  width: 253px;
  height: 90px;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  right: -285px;
  top: 0;
  bottom: 0;
  margin: auto;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
}
.phone-section__tooltip.middle {
  height: 131px;
  top: unset;
  bottom: 28px;
}
.phone-section__tooltip.large {
  height: 151px;
}

.tooltip-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  color: #E56357;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
}
.tooltip-container::before {
  content: "";
  width: 0;
  height: 0;
  border-right: 15px solid #fff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  position: absolute;
  left: -15px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.phone-text {
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
}

.phone-text-title {
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 10px;
}

.user {
  display: flex;
  align-items: center;
}
.user__info {
  margin-left: 7px;
  margin-bottom: 3px;
}

.user-welcome {
  font-size: 11px;
  line-height: 13px;
}

.user-name {
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
}

.user-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  margin-left: 8px;
}

.drag-and-drop-area {
  background: linear-gradient(180deg, #FAFAFA 0%, rgba(250, 250, 250, 0) 100%);
  border: 3px dotted #BDBDBD;
  border-radius: 5px;
  padding: 50px 20px;
  margin-top: 30px;
  position: relative;
  z-index: 3;
}
.drag-and-drop-area img {
  height: 50px;
  display: block;
  margin: 0 auto 13px auto;
}
.drag-and-drop-area p {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  text-align: center;
}
.drag-and-drop-area button {
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  line-height: 17px;
  background-color: #E56357;
  border-radius: 5px;
  padding: 12px 40px;
  display: block;
  margin: 23px auto 0 auto;
}

@media screen and (max-width: 1360px) {
  .main-menu li {
    margin-left: 32px;
  }
  .ios-app {
    margin-left: 32px;
  }
  .container {
    max-width: 1100px;
  }
  .main-content__left {
    width: 49%;
  }
  .main-content__right {
    width: 51%;
    padding-left: 25px;
  }
  .main-title {
    font-size: 46px;
    line-height: 58px;
  }
  .tablet-none {
    display: none;
  }
}
@media screen and (max-width: 1250px) {
  .main-content__left {
    width: 41%;
  }
  .main-content__right {
    width: 58%;
  }
}
@media screen and (max-width: 992px) {
  .main-content__left {
    width: 50%;
  }
  .main-content__right {
    width: 50%;
    padding-left: 45px;
  }
  .main-title {
    font-size: 38px;
    line-height: 48px;
  }
  .phone-section__tooltip {
    display: none;
  }
}
.mini-table {
  border: 1px solid #898989;
  border-radius: 8px;
}

.title-underline {
  border-bottom: 1px solid #898989;
  padding: 11px 15px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
}

.input-box-wrapper {
  padding: 17px 14px;
}

.input-box {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 17px;
}
.input-box__label {
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  color: #000;
}
.input-box__label.active {
  font-weight: 600;
}
.input-box__line {
  width: 165px;
  border-bottom: 1px solid #898989;
  margin-left: 4px;
}
.input-box__line.active {
  border-bottom: 1px solid #000;
}
.input-box__icon {
  width: 15px !important;
  height: 15px;
  position: absolute;
  right: 0;
  bottom: 5px;
}
.input-box:last-child {
  margin-bottom: 0;
}

.close-block {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.center-content {
  margin-top: 114px;
}
.center-content img {
  width: 93px;
  display: block;
  margin: 0 auto;
}

.success-title {
  color: #252525;
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  text-align: center;
  margin-top: 22px;
}

.success-desc {
  color: #252525;
  font-size: 17px;
  line-height: 27px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 6px;
}

.phone-section-horizontal {
  max-width: 685px;
  height: 320px;
  box-sizing: border-box;
  border: 6px solid #000;
  border-radius: 48px;
  background-color: #fff;
  position: relative;
  margin-left: -90px;
}
.phone-section-horizontal .phone-section__tooltip {
  top: unset;
  left: 0;
  right: 0;
  bottom: -190px;
}
.phone-section-horizontal .phone-section__tooltip .tooltip-container::before {
  content: none;
}
.phone-section-horizontal .phone-section__tooltip::after {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 15px solid #fff;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  position: absolute;
  left: 0;
  top: -15px;
  right: 0;
  z-index: 3;
  margin: auto;
}

.main-signature {
  display: block;
  width: 90% !important;
  margin: -30px auto 0 auto !important;
}
.main-signature svg {
  display: block;
  width: 90% !important;
  margin: -30px auto 0 auto !important;
}
.main-signature path {
  fill: transparent;
  stroke: #111111;
  stroke-width: 3px;
}

@keyframes draw {
  100% {
    stroke-dashoffset: 0;
  }
}
.signature-hr {
  border-top: 1px solid #898989;
  margin-top: 20px;
}

.signature-status {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  transition: all 1s ease-in;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.signature-status.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.signature-status__procent {
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
}
.signature-status__status {
  display: flex;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
}
.signature-status__status::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #2ECC66;
  margin-right: 6px;
}

@media screen and (max-width: 768px) {
  .mobile-none {
    display: none;
  }
  .phone-section__tooltip {
    height: 67px;
    display: block;
    bottom: unset;
    top: -100px;
    right: 0;
    left: 0;
  }
  .phone-section__tooltip.middle {
    top: -100px;
    height: 67px;
    bottom: unset;
  }
  .phone-section__tooltip.large {
    height: 67px;
  }
  .phone-section-horizontal .phone-section__tooltip {
    top: -100px;
    bottom: unset;
  }
  .phone-section-horizontal .phone-section__tooltip::after {
    border-top: 15px solid #fff;
    border-bottom: unset;
    top: unset;
    bottom: -15px;
  }
  .tooltip-container {
    font-size: 13px;
    line-height: 18px;
  }
  .tooltip-container::before {
    border-top: 15px solid #fff;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    top: unset;
    left: 0;
    right: 0;
    bottom: -30px;
  }
}
/*right side content end*/
.pagination {
  width: 320px;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  position: relative;
  z-index: 4;
}
.pagination button {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 17px;
  color: #E56357;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  background-color: transparent;
  border: 1px solid #E56357;
  margin-left: 15px;
}
.pagination button.active, .pagination button:hover {
  background-color: #E56357;
  color: #fff;
}
.pagination button:first-child {
  margin-left: 0;
}

@media screen and (max-width: 768px) {
  .main-content {
    flex-direction: column;
    padding-top: 111px;
  }
  .main-content__left {
    margin-bottom: 30px;
    padding-right: 0;
  }
  .main-content__left, .main-content__right {
    width: 100%;
  }
  .main-content__right {
    padding-left: 0;
    position: relative;
    z-index: 2;
  }
  .main-content__right::before {
    content: "";
    background: linear-gradient(180deg, rgba(229, 96, 87, 0.35) 0%, rgba(255, 255, 255, 0) 100%);
    width: calc(100% + 40px);
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin-left: -20px;
    margin-right: -20px;
  }
  .white-side, .red-side {
    display: none;
  }
  .phone-section {
    margin: 125px auto 0 auto;
  }
  .phone-section-horizontal {
    margin: 0 auto;
  }
  .phones-list {
    height: 810px;
  }
  .pagination {
    margin: 20px auto 0 auto;
  }
}
@media screen and (max-width: 680px) {
  .phone-section-horizontal {
    height: auto;
    padding-bottom: 26px;
  }
}
@media screen and (max-width: 350px) {
  .container {
    padding: 0 10px;
  }
  .phone-section {
    width: 300px;
  }
}
/*animation*/
@keyframes fadein {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Firefox < 16 */
/* Safari, Chrome and Opera > 12.1 */
/* Internet Explorer */
/* Opera < 12.1 */
/*features*/
.features-wrapper {
  position: relative;
  z-index: 5;
  background-color: #F5F5F5;
  padding: 70px 0;
  margin-top: 100px;
}

.features-section {
  position: relative;
  z-index: 5;
}
.features-section__title {
  font-size: 35px;
  line-height: 38px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 53px;
}
.features-section__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.features-item {
  width: calc(32% - 10px);
  background-color: #fff;
  padding: 45px;
  box-sizing: border-box;
  border-radius: 8px;
  position: relative;
  margin: 10px;
}
.features-item__head {
  display: flex;
  align-items: center;
}
.features-item__body {
  height: 84px;
  overflow: hidden;
  font-size: 15px;
  line-height: 28px;
  color: #252525;
}
.features-item__link {
  color: #E56357;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  border: none;
  outline: none;
  margin-top: 18px;
}

.features-icon {
  padding-top: 13px;
}
.features-icon img {
  width: 70px;
}

.features-title {
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
  color: #252525;
}

.features-item-secret {
  width: 100%;
  min-height: 100%;
  padding: 45px;
  transform: translateY(-100%);
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 6;
  background-color: #fff;
  border-radius: 8px;
}
.features-item-secret__text {
  font-size: 15px;
  line-height: 28px;
  color: #252525;
}
.features-item-secret__less {
  color: #E56357;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  border: none;
  outline: none;
  margin-top: 18px;
}
.features-item-secret.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media screen and (max-width: 960px) {
  .features-item {
    width: calc(48% - 20px);
  }
}
@media screen and (max-width: 660px) {
  .features-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .features-section__title {
    margin-bottom: 25px;
    font-size: 25px;
  }
  .features-item {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */