/* USER VARIABLES SECTION */
:root {
  --accent: orange;
  --text: #333;
  --regular-text: 16px;
  --lineheight: 1.65;
  --userfont: "Open Sans", sans-serif;
  --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */
/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
/* FONTS LOAD SECTION */
@font-face {
  src: url("../fonts/roboto-regular-webfont.woff2") format("woff2");
  font-family: "roboto-st";
  font-weight: 400;
  font-style: normal;
}
@font-face {
  src: url("../fonts/roboto-italic-webfont.woff2") format("woff2");
  font-family: "roboto-st";
  font-weight: 400;
  font-style: italic;
}
@font-face {
  src: url("../fonts/roboto-bold-webfont.woff2") format("woff2");
  font-family: "roboto-st";
  font-weight: 700;
  font-style: normal;
}
@font-face {
  src: url("../fonts/roboto-bolditalic-webfont.woff2") format("woff2");
  font-family: "roboto-st";
  font-weight: 700;
  font-style: italic;
}
/* GENERAL CSS SETTINGS */
::placeholder {
  color: #666;
}

::selection {
  background-color: #238cf8;
  color: #fff;
}

input, textarea {
  outline: none;
}

input:focus:required:invalid, textarea:focus:required:invalid {
  border-color: red;
}

input:required:valid, textarea:required:valid {
  border-color: green;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--userfont);
  font-size: var(--regular-text);
  color: var(--text);
  font-weight: 500;
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
  height: 100%;
}

a {
  text-decoration: none;
}

/* USER STYLES */
.page {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #F6F9FF;
}

.image {
  max-width: 100%;
  margin-bottom: var(--bs-gutter-x);
  border-radius: 4px;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.text-secondary {
  color: #656b8a;
}

.sectionTitle {
  font-size: 2.3rem;
  font-weight: 800;
}

.text {
  line-height: 1.65;
}

.button {
  padding: 14px 18px;
  align-items: center;
  appearance: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  position: relative;
  transition: box-shadow 0.15s, transform 0.15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow, transform;
}
.button-hover {
  color: #363636;
}
.button-hover:hover {
  background: rgba(0, 0, 0, 0.05);
}
.button-primary {
  background-image: radial-gradient(100% 100% at 100% 0, #5adaff 0, #5468ff 100%);
  box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, rgba(58, 65, 111, 0.5) 0 -3px 0 inset;
  color: #fff;
}
.button-primary:focus {
  box-shadow: #3c4fe0 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
}
.button-primary:hover {
  box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
  transform: translateY(-2px);
  color: #fff;
}
.button-primary:active {
  box-shadow: #3c4fe0 0 3px 7px inset;
  transform: translateY(2px);
  color: #fff;
}
.button-light {
  background: #E4E6EF;
  color: #7E8299;
}
.button-light:focus {
  background: #E4E6EF;
}
.button-light:hover {
  background: #E4E6EF;
}
.button-light:active {
  background: #E4E6EF;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type=checkbox],
  input[type=radio] {
    --active: #275EFE;
    --active-inner: #fff;
    --focus: 2px rgba(39, 94, 254, .3);
    --border: #BBC1E1;
    --border-hover: #275EFE;
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  }
  input[type=checkbox]:after,
  input[type=radio]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }
  input[type=checkbox]:checked,
  input[type=radio]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
  input[type=checkbox]:disabled,
  input[type=radio]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }
  input[type=checkbox]:disabled:checked,
  input[type=radio]:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  input[type=checkbox]:disabled + label,
  input[type=radio]:disabled + label {
    cursor: not-allowed;
  }
  input[type=checkbox]:hover:not(:checked):not(:disabled),
  input[type=radio]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  input[type=checkbox]:focus,
  input[type=radio]:focus {
    box-shadow: 0 0 0 var(--focus);
  }
  input[type=checkbox]:not(.switch),
  input[type=radio]:not(.switch) {
    width: 21px;
  }
  input[type=checkbox]:not(.switch):after,
  input[type=radio]:not(.switch):after {
    opacity: var(--o, 0);
  }
  input[type=checkbox]:not(.switch):checked,
  input[type=radio]:not(.switch):checked {
    --o: 1;
  }
  input[type=checkbox] + label,
  input[type=radio] + label {
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
  }
  input[type=checkbox]:not(.switch) {
    border-radius: 7px;
  }
  input[type=checkbox]:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    transform: rotate(var(--r, 20deg));
  }
  input[type=checkbox]:not(.switch):checked {
    --r: 43deg;
  }
  input[type=checkbox].switch {
    width: 38px;
    border-radius: 11px;
  }
  input[type=checkbox].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    transform: translateX(var(--x, 0));
  }
  input[type=checkbox].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }
  input[type=checkbox].switch:disabled:not(:checked):after {
    opacity: 0.6;
  }
  input[type=radio] {
    border-radius: 50%;
  }
  input[type=radio]:after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    transform: scale(var(--s, 0.7));
  }
  input[type=radio]:checked {
    --s: .5;
  }
}
.price-page__header {
  margin-bottom: 50px;
}
.price-page__title {
  font-weight: 800;
  margin-bottom: 10px;
}
.price-page__description {
  max-width: 750px;
  color: #7E8299;
}

.price-table__wrapper {
  display: flex;
  align-items: center;
}
.price-table__main-card {
  background: #ffffff;
  width: 430px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  height: 550px;
  border-radius: 15px;
  z-index: 10;
  padding: 60px 30px 30px 30px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.price-table__secondary-card {
  background: #ffffff;
  width: 100%;
  height: 450px;
  padding: 60px 30px 60px 60px;
  border-radius: 15px;
  margin-left: -1rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.price-table__title {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.price-table__price {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.price-table__price__value {
  display: block;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
}
.price-table__price__description {
  display: flex;
  flex-direction: column;
  margin-left: 0.8rem;
}
.price-table__price__currency {
  text-transform: uppercase;
  color: #7E8299;
  font-size: 0.8rem;
}
.price-table__price__period {
  text-transform: uppercase;
  color: #3699FF;
  font-weight: 700;
  font-size: 0.8rem;
}
.price-table__alarm {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.price-table__alarm__wrapper {
  display: inline-block;
  background: linear-gradient(0deg, #f83600, #fe8c00);
  padding: 5px 15px;
  border-radius: 10px;
}
.price-table__alarm__text {
  color: #ffffff;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}
.price-table__advantages-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 30px;
}
.price-table__advantage {
  display: flex;
  align-items: center;
}
.price-table__advantage__icon {
  color: #3699FF;
}
.price-table__advantage__name {
  margin-left: 10px;
  font-size: 0.9rem;
}
.price-table__actions {
  margin-top: auto;
  padding-top: 50px;
}
.price-table__actions__description {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 0.7rem;
  color: #B5B5C3;
}
.price-table__actions .button {
  width: 100%;
  font-weight: 600;
}
.price-table__recurrent {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.price-table__recurrent label {
  color: #7E8299;
}
.price-table__secondary-title {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 35px;
}
.price-table__description {
  color: #666;
  display: none;
}
.price-table__functions-list {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.price-table__function {
  padding: 10px 12px;
  border: 1px solid #EBEDF3;
  border-radius: 10px;
  display: flex;
  align-items: center;
}
.price-table__function__icon {
  color: #3699FF;
  flex-shrink: 0;
}
.price-table__function__name {
  font-size: 0.8rem;
  margin-left: 8px;
  flex-shrink: 0;
}
.price-table__free-access {
  display: flex;
  align-items: center;
  background: #E1F0FF;
  border: 1px solid #E1F0FF;
  padding: 5px;
  border-radius: 10px;
}
.price-table__free-access__left {
  width: 65px;
  height: 65px;
  background: #3699FF;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.price-table__free-access__value {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 600;
}
.price-table__free-access__period {
  display: block;
  font-size: 0.65rem;
  color: #fff;
}
.price-table__free-access__right {
  margin-left: 15px;
}
.price-table__free-access__title {
  font-weight: 600;
  color: #085fb9;
}
.price-table__free-access__description {
  font-size: 0.8rem;
  color: #085fb9;
  opacity: 0.8;
  margin-bottom: 0;
}
.price-table__notification {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 0.42rem;
  background: #E1F0FF;
}
.price-table__notification.has-finished {
  background: #FFF4DE;
}
.price-table__notification.has-finished .price-table__notification__icon,
.price-table__notification.has-finished .price-table__notification__title,
.price-table__notification.has-finished .price-table__notification__description {
  color: #FFA800;
}
.price-table__notification__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.price-table__notification__icon {
  font-size: 2rem;
  color: #3699FF;
}
.price-table__notification__content {
  margin-left: 10px;
}
.price-table__notification__title {
  font-weight: 600;
  color: #236fbe;
}
.price-table__notification__description {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: #236fbe;
}

@media (max-width: 992px) {
  .price-table__wrapper {
    flex-direction: column;
  }
  .price-table__main-card {
    width: 100%;
    height: auto;
  }
  .price-table__secondary-card {
    width: calc(100% - 30px);
    height: auto;
    padding: 60px 15px 15px 15px;
    margin-top: -15px;
    margin-left: 0;
  }
  .price-table__functions-list {
    gap: 10px;
  }
  .price-table__function {
    padding: 6px 8px;
  }
  .price-table__function__name {
    font-size: 0.8rem;
    margin-left: 5px;
    flex-shrink: 0;
  }
  .price-table__free-access__left {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }
  .price-table__free-access__value {
    font-size: 1.2rem;
  }
  .price-table__free-access__right {
    margin-left: 10px;
  }
  .price-table__free-access__title {
    font-weight: 600;
    color: #085fb9;
  }
  .price-table__free-access__description {
    font-size: 0.8rem;
  }
}
#already {
  display: none;
  background: #3699FF;
  padding: 10px 0;
}
#already .alreadyWrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#already .alreadyWrapper .description {
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
}

#client {
  display: none;
  background: #3699FF;
  padding: 10px 0;
}
#client .alreadyWrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#client .alreadyWrapper .description {
  color: #fff;
  font-weight: 600;
  font-size: 0.75rem;
}

.auth-service-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 0.42rem;
  background: linear-gradient(45deg, #9733EE, #DA22FF);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px 0px;
  margin-bottom: 10px;
}
.auth-service-label__icon {
  color: #fff;
  font-size: 0.8rem;
}
.auth-service-label__text {
  color: #fff;
  font-size: 0.8rem;
}

#header {
  background: #F6F9FF;
}
#header .headerWrapper {
  display: flex;
  align-items: center;
  height: 80px;
  width: 100%;
}
#header .headerWrapper .logo {
  height: 60px;
  width: 150px;
  display: flex;
  align-items: center;
}
#header .headerWrapper .logo span {
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 0;
}
#header .headerWrapper .menu {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 30px;
}
#header .headerWrapper .menu .menuItem {
  font-size: 0.9rem;
  color: #656b8a;
}
#header .headerWrapper .headerActions {
  margin-left: 80px;
  overflow: visible;
}

#banner {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  background: #F6F9FF;
  overflow: hidden;
}
#banner .blur-gradient {
  position: absolute;
  z-index: 0;
  background-position: right center;
}
#banner .blur-gradient img {
  z-index: 0;
}
#banner .line {
  position: absolute;
  right: -30px;
  bottom: 5%;
  z-index: 0;
}
#banner .line img {
  z-index: 0;
}
#banner .mainTitle {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
}
#banner .mainTitle span {
  color: #0c63e4;
}
#banner .mainDescription {
  position: relative;
  color: #656b8a;
  margin-bottom: 30px;
  z-index: 10;
}
#banner .actions {
  z-index: 10;
  position: relative;
  display: flex;
  gap: 10px;
}
#banner .actions .video {
  color: #9D9595;
  font-weight: 500;
}
#banner .mainImageWrapper {
  position: relative;
  z-index: 100;
}

#about {
  background: #F6F9FF;
  position: relative;
  padding: 60px 0;
}
#about .sectionTitle {
  text-align: center;
  margin-bottom: 20px;
}
#about .text {
  text-align: center;
}

#orders {
  background: #F6F9FF;
  position: relative;
  padding: 60px 0;
}
#orders .sectionContent {
  padding: 0 50px;
}
#orders .sectionTitle {
  margin-bottom: 20px;
}
#orders .actions {
  margin-top: 25px;
}

#reports {
  background: #F6F9FF;
  position: relative;
  padding: 60px 0;
}
#reports .sectionContent {
  padding: 0 60px 0 0;
}
#reports .sectionTitle {
  margin-bottom: 20px;
}
#reports .options {
  margin-top: 30px;
}
#reports .options .dop {
  display: block;
  margin-bottom: 15px;
  font-size: 0.9rem;
}
#reports .options .item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
#reports .options .item.more {
  height: 35px;
  color: #ccc;
}
#reports .options .item .icon {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #2F80ED;
}
#reports .options .item .icon i {
  font-size: 0.9rem;
  color: #2F80ED;
}
#reports .options .item span {
  font-size: 0.9rem;
  font-weight: 600;
}
#reports .actions {
  margin-top: 25px;
}

.reviews {
  background: #F6F9FF;
  position: relative;
  padding: 70px 0;
}
.reviews .sectionTitle {
  margin-bottom: 20px;
}

.stock {
  background: #F6F9FF;
  position: relative;
  padding: 70px 0;
}
.stock__content .options {
  margin-top: 30px;
}
.stock__content .options .dop {
  display: block;
  margin-bottom: 15px;
  font-size: 0.9rem;
}
.stock__content .options .item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.stock__content .options .item.more {
  height: 35px;
  color: #ccc;
}
.stock__content .options .item .icon {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #2F80ED;
}
.stock__content .options .item .icon i {
  font-size: 0.9rem;
  color: #2F80ED;
}
.stock__content .options .item span {
  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: 600;
}
.stock .sectionTitle {
  margin-bottom: 20px;
}

.price-section {
  background: linear-gradient(45deg, #C9D6FF, #E2E2E2);
  position: relative;
  padding: 100px 0;
}

#features {
  background: #F6F9FF;
  position: relative;
  padding: 100px 0;
}
#features .sectionTitle {
  text-align: center;
  margin-bottom: 20px;
}
#features .sectionText {
  text-align: center;
}
#features .featuresList {
  margin-top: 60px;
}
#features .featuresList .mainItem {
  padding: 0 60px;
  display: flex;
  align-items: center;
  min-height: 300px;
  border-radius: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 30px;
  background-image: url("/images/promo/lines/line-2.svg"), linear-gradient(45deg, #2F80ED, #56CCF2);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 100%;
}
#features .featuresList .mainItem .itemInfo {
  padding: 60px 0;
  max-width: 40%;
}
#features .featuresList .mainItem .itemInfo .itemTitle {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.4;
  color: #fff;
}
#features .featuresList .mainItem .itemInfo .itemDescription {
  color: #eee;
}
#features .featuresList .mainItem .itemImage {
  width: 70%;
  margin-left: auto;
  padding: 20px 0 0 0;
}
#features .featuresList .secondaryItem {
  z-index: 10;
  position: relative;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  border-radius: 20px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  margin-bottom: 30px;
  overflow: hidden;
}
#features .featuresList .secondaryItem.first {
  background: url("/images/promo/lines/line-2.svg"), linear-gradient(45deg, #ACB6E5, #6bd8c4);
}
#features .featuresList .secondaryItem.second {
  background: url("/images/promo/lines/line-2.svg"), linear-gradient(45deg, #BE93C5, #7BC6CC);
}
#features .featuresList .secondaryItem .itemInfo {
  padding: 60px 0 0 0;
  width: 100%;
}
#features .featuresList .secondaryItem .itemInfo .itemTitle {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.4;
  color: #fff;
}
#features .featuresList .secondaryItem .itemInfo .itemDescription {
  color: #eee;
}
#features .featuresList .secondaryItem .itemImage {
  width: 700px;
  height: 380px;
}
#features .featuresList .secondaryItem .itemImage img {
  position: absolute;
  bottom: 0;
  left: 40px;
}

#moreFeatures {
  background: #F6F9FF;
  position: relative;
  padding: 60px 0;
}
#moreFeatures .sectionHeader {
  margin-bottom: 60px;
}
#moreFeatures .sectionHeader .sectionTitle {
  margin-bottom: 20px;
}
#moreFeatures .item {
  margin-bottom: 80px;
}
#moreFeatures .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #0398E2;
  margin-bottom: 10px;
  color: #fff;
}
#moreFeatures .item .name {
  display: block;
  font-weight: 700;
  margin-bottom: 7px;
}
#moreFeatures .item .description {
  font-size: 0.8rem;
  padding-right: 35px;
}

#callToAction {
  background: #F6F9FF;
  background: url("/images/promo/lines/line-1.svg"), #F6F9FF;
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  padding: 60px 0 0px 0;
}
#callToAction .sectionTitle {
  margin-bottom: 20px;
}
#callToAction .actions {
  margin-top: 25px;
}
#callToAction .imgContainer {
  padding-right: 30px;
}
#callToAction img {
  z-index: 0;
}

#footer {
  background: #F6F9FF;
  padding-top: 60px;
  position: relative;
  margin-top: auto;
}
#footer .footerWrapper {
  border-top: 1px solid #eee;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: #777;
}
#footer .footerWrapper .links {
  margin-left: auto;
  display: flex;
  gap: 30px;
}
#footer .footerWrapper .links a {
  color: #777;
}

.page-content {
  background: #F6F9FF;
  padding: 70px 0;
}
.page-content__wrapper {
  background: #fff;
  border-radius: 0.42rem;
  padding: 50px 30px;
  box-shadow: 0 0 7px 0 rgba(82, 63, 105, 0.05);
}

.public-offer__main-title {
  font-weight: 800;
  margin-bottom: 30px;
}
.public-offer__title {
  font-weight: 700;
  margin-bottom: 10px;
}
.public-offer__point {
  margin-bottom: 7px;
}
.public-offer__section {
  margin: 30px 0;
  padding-top: 30px;
  border-top: 1px solid #EBEDF3;
}

.contacts__main-title {
  font-weight: 800;
  margin-bottom: 30px;
}
.contacts__title {
  font-weight: 700;
  margin-bottom: 10px;
}
.contacts__point {
  margin-bottom: 7px;
}
.contacts__section {
  margin: 30px 0;
  padding-top: 30px;
  border-top: 1px solid #EBEDF3;
}

/*# sourceMappingURL=main.css.map */
