@charset "UTF-8";
:root {
  --section: #fff;
  --main: #350058;
  --radius-full: 80px;
  --radius-desk: 30px;
  --radius: 20px;
  --radius-card: 15px;
  --radius-contact: 18px;
  --text: #350058;
  --gradient: radial-gradient(circle, var(--section) 0%, #9000FF 100%);
  --btn: #FF007B;
  --footer: #26023E;
  --copyright: #9000FF;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Montserrat", sans-serif;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

body {
  color: var(--text);
}

a {
  text-decoration: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

@font-face {
  font-style: normal;
  font-family: "Comforter";
  font-weight: 400;
  src: url(/wp-content/themes/olga/fonts/Comforter-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-family: "Poppins";
  font-weight: 400;
  src: url(/wp-content/themes/olga/fonts/Poppins-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-family: "Montserrat";
  font-weight: 400;
  src: url(/wp-content/themes/olga/fonts/Montserrat-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-family: "Montserrat";
  font-weight: 700;
  src: url(/wp-content/themes/olga/fonts/Montserrat-Bold.ttf);
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-family: "Montserrat";
  font-weight: 900;
  src: url(/wp-content/themes/olga/fonts/Montserrat-Black.ttf);
  font-display: swap;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  background: var(--main);
  overflow-x: hidden;
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
}

a:hover {
  transition: 0.3s ease-out;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 13px 26px;
}
@media (min-width: 991px) {
  .header {
    padding: 19px 26px;
  }
}
@media (min-width: 1280px) {
  .header {
    padding: 19px 72px;
  }
}
@media (min-width: 1700px) {
  .header {
    padding: 19px 145px;
  }
}
.header__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__block-logo {
  display: flex;
  align-items: center;
}
.header__block-logo .logo img {
  display: block;
  width: 59px;
}
@media (min-width: 991px) {
  .header__block-logo .logo img {
    width: auto;
  }
}

.main {
  background-color: var(--main);
  position: relative;
  height: 85vh;
  z-index: 2;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/wp-content/uploads/2025/03/back-mobile.webp);
}
@media (min-width: 640px) {
  .main {
    background-image: url(/wp-content/uploads/2025/03/desk-back.webp);
    background-size: cover;
    background-position: left bottom;
  }
}
@media (min-width: 991px) {
  .main {
    background-size: contain;
  }
}
@media (min-width: 1280px) {
  .main {
    height: 90vh;
  }
}
@media (min-width: 1700px) {
  .main {
    height: 95vh;
  }
}
.main::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -162px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--gradient);
  filter: blur(50px);
  z-index: 1;
  transform: rotate(47deg);
  pointer-events: none;
}
@media (min-width: 991px) {
  .main::before {
    width: 645px;
    height: 645px;
    top: auto;
    bottom: -360px;
    left: 0px;
  }
}
@media (min-width: 1700px) {
  .main::before {
    width: 1185px;
    height: 1185px;
    bottom: -800px;
    left: -200px;
  }
}
.main::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  bottom: -100px;
  right: -200px;
  width: 317px;
  height: 317px;
  background: var(--gradient);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 1280px) {
  .main::after {
    display: block;
    width: 788px;
    height: 788px;
    bottom: auto;
    top: -450px;
    right: -600px;
  }
}
.main__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 2;
}
@media (min-width: 640px) {
  .main__block {
    flex-direction: row-reverse;
    justify-content: center;
  }
}
.main__block-img {
  position: relative;
}
@media (min-width: 640px) {
  .main__block-img {
    position: absolute;
    bottom: 0;
    left: 20px;
  }
}
@media (min-width: 991px) {
  .main__block-img {
    left: 40px;
  }
}
@media (min-width: 1280px) {
  .main__block-img {
    left: 80px;
  }
}
.main__block-img img {
  width: 241px;
}
@media (min-width: 640px) {
  .main__block-img img {
    width: 300px;
  }
}
@media (min-width: 991px) {
  .main__block-img img {
    width: 341px;
  }
}
@media (min-width: 1280px) {
  .main__block-img img {
    width: 380px;
  }
}
@media (min-width: 1700px) {
  .main__block-img img {
    width: auto;
  }
}
.main__block-title {
  position: relative;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 88px;
}
@media (min-width: 640px) {
  .main__block-title {
    padding-top: 0;
    margin-left: 300px;
    width: 280px;
  }
}
@media (min-width: 991px) {
  .main__block-title {
    width: 480px;
  }
}
@media (min-width: 1280px) {
  .main__block-title {
    width: 660px;
  }
}
@media (min-width: 1700px) {
  .main__block-title {
    width: 920px;
  }
}
.main__block-title span {
  display: block;
  text-transform: uppercase;
  font-family: "Montserrat";
  font-weight: 900;
  color: var(--section);
  line-height: 1;
  position: relative;
}
.main__block-title span:first-child {
  font-size: 19px;
}
@media (min-width: 640px) {
  .main__block-title span:first-child {
    font-size: 23px;
  }
}
@media (min-width: 991px) {
  .main__block-title span:first-child {
    font-size: 52px;
  }
}
@media (min-width: 1700px) {
  .main__block-title span:first-child {
    font-size: 70px;
  }
}
.main__block-title span:nth-child(2) {
  font-size: 29px;
}
@media (min-width: 640px) {
  .main__block-title span:nth-child(2) {
    font-size: 34px;
  }
}
@media (min-width: 991px) {
  .main__block-title span:nth-child(2) {
    font-size: 58px;
  }
}
@media (min-width: 1280px) {
  .main__block-title span:nth-child(2) {
    font-size: 77px;
  }
}
@media (min-width: 1700px) {
  .main__block-title span:nth-child(2) {
    font-size: 104px;
  }
}
.main__block-title span:nth-child(4) {
  font-size: 37px;
  color: var(--section);
  z-index: 2;
  bottom: 14px;
}
@media (min-width: 640px) {
  .main__block-title span:nth-child(4) {
    font-size: 44px;
  }
}
@media (min-width: 991px) {
  .main__block-title span:nth-child(4) {
    font-size: 75px;
    bottom: 30px;
  }
}
@media (min-width: 1280px) {
  .main__block-title span:nth-child(4) {
    font-size: 100px;
    bottom: 42px;
  }
}
@media (min-width: 1700px) {
  .main__block-title span:nth-child(4) {
    font-size: 135px;
    bottom: 65px;
  }
}
.main__block-title span:nth-child(4)::before {
  content: "Бизнеса";
  position: absolute;
  top: 2px;
  left: 2px;
  -webkit-text-stroke: 0.45px var(--btn);
  color: transparent;
  z-index: -1;
}
@media (min-width: 991px) {
  .main__block-title span:nth-child(4)::before {
    -webkit-text-stroke: 3.45px var(--btn);
  }
}
.main__block-title .and-text {
  color: var(--btn);
  font-size: 35px;
  font-weight: 400;
  font-family: "Comforter";
  line-height: 1;
  text-transform: lowercase;
  bottom: 8px;
  z-index: 3;
}
@media (min-width: 640px) {
  .main__block-title .and-text {
    font-size: 44px;
  }
}
@media (min-width: 991px) {
  .main__block-title .and-text {
    font-size: 65px;
    bottom: 17px;
  }
}
@media (min-width: 1280px) {
  .main__block-title .and-text {
    font-size: 85px;
    bottom: 20px;
  }
}
@media (min-width: 1700px) {
  .main__block-title .and-text {
    font-size: 127px;
    bottom: 32px;
  }
}
.main__block-title .btn {
  width: 200px;
  height: 26px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--btn);
  color: var(--section);
  font-family: "Montserrat";
  font-size: 12px;
  line-height: 1.4;
  font-weight: 900;
  margin-top: 23px;
  text-decoration: underline;
}
.main__block-title .btn:hover {
  text-decoration: none;
}
@media (min-width: 640px) {
  .main__block-title .btn {
    width: 225px;
    height: 30px;
  }
}
@media (min-width: 991px) {
  .main__block-title .btn {
    width: 395px;
    height: 45px;
    font-size: 20px;
  }
}
@media (min-width: 1280px) {
  .main__block-title .btn {
    width: 520px;
    height: 70px;
    font-size: 30px;
  }
}
@media (min-width: 1700px) {
  .main__block-title .btn {
    width: 709px;
    height: 93px;
    font-size: 40px;
  }
}
.main__block-title .arrow-img {
  position: absolute;
  max-width: 100%;
  height: 60px;
  right: -8px;
  bottom: 15px;
  width: auto;
}
@media (min-width: 991px) {
  .main__block-title .arrow-img {
    height: 100px;
    bottom: 30px;
  }
}
@media (min-width: 1280px) {
  .main__block-title .arrow-img {
    height: 150px;
  }
}
@media (min-width: 1700px) {
  .main__block-title .arrow-img {
    height: 214px;
  }
}

.section-text {
  background: var(--section);
  position: relative;
  border-top-right-radius: var(--radius);
  border-top-left-radius: var(--radius);
}
@media (min-width: 1280px) {
  .section-text {
    border-top-right-radius: var(--radius-desk);
    border-top-left-radius: var(--radius-desk);
  }
}
@media (min-width: 1700px) {
  .section-text {
    border-top-right-radius: var(--radius-full);
    border-top-left-radius: var(--radius-full);
  }
}
.section-text .text-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-text .text-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  padding: 0 35px;
  color: var(--text);
}
@media (min-width: 991px) {
  .section-text .text-content p {
    padding: 0 50px;
    font-size: 30px;
    line-height: 65px;
  }
}
@media (min-width: 1280px) {
  .section-text .text-content p {
    padding: 0 150px;
    font-size: 40px;
    line-height: 80px;
  }
}
@media (min-width: 1700px) {
  .section-text .text-content p {
    padding: 0 338px;
  }
}

.section-text.about {
  padding: 59px 22px;
  z-index: 3;
  top: -15px;
  margin-bottom: -15px;
}
@media (min-width: 640px) {
  .section-text.about {
    padding: 85px 22px;
  }
}
@media (min-width: 991px) {
  .section-text.about {
    padding: 130px 22px;
  }
}
@media (min-width: 1280px) {
  .section-text.about {
    padding: 197px 22px;
    top: -25px;
    margin-bottom: -25px;
  }
}
@media (min-width: 1700px) {
  .section-text.about {
    top: -65px;
    margin-bottom: -65px;
  }
}

h1 {
  margin-bottom: 39px;
  font-size: 24px;
  font-weight: 900;
  line-height: 29px;
  text-transform: uppercase;
  color: var(--text);
  font-family: "Montserrat";
}
@media (min-width: 991px) {
  h1 {
    font-size: 70px;
    line-height: 86px;
  }
}
@media (min-width: 1280px) {
  h1 {
    font-size: 75px;
    line-height: 91px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1700px) {
  h1 {
    font-size: 80px;
    line-height: 96px;
  }
}
h1 span {
  color: var(--section);
  position: relative;
  z-index: 2;
}
h1 .title-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/wp-content/themes/olga/img/title-back-one-mobile.svg);
  width: 145px;
  height: 36px;
}
@media (min-width: 991px) {
  h1 .title-back {
    background-image: url(/wp-content/themes/olga/img/title-back-one.svg);
    width: 479px;
    height: 118px;
  }
}
h1 .title-back .title-text {
  height: auto;
  text-align: center;
}

h2 {
  font-weight: 900;
  font-size: 30px;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: "Montserrat";
  z-index: 2;
  position: relative;
  margin-bottom: 50px;
}
@media (min-width: 991px) {
  h2 {
    font-size: 70px;
    line-height: 86px;
  }
}
@media (min-width: 1280px) {
  h2 {
    font-size: 75px;
    line-height: 91px;
  }
}
@media (min-width: 1700px) {
  h2 {
    font-size: 80px;
    line-height: 96px;
  }
}
h2 span {
  color: var(--section);
  position: relative;
  z-index: 2;
}
h2 .title-back {
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
h2 .title-back .title-text {
  font-family: "QUARTZO";
  height: auto;
  line-height: 1.2;
  text-align: center;
}

h3 {
  font-weight: 900;
  font-family: "Montserrat";
  font-size: 24px;
  line-height: 27px;
  text-transform: uppercase;
  color: var(--advantages);
  margin-bottom: 19px;
}
@media (min-width: 1280px) {
  h3 {
    font-size: 50px;
    line-height: 55px;
  }
}

.section-block {
  position: relative;
  border-top-right-radius: var(--radius);
  border-top-left-radius: var(--radius);
}
@media (min-width: 1280px) {
  .section-block {
    border-top-right-radius: var(--radius-desk);
    border-top-left-radius: var(--radius-desk);
  }
}
@media (min-width: 1700px) {
  .section-block {
    border-top-right-radius: var(--radius-full);
    border-top-left-radius: var(--radius-full);
  }
}
.section-block .section-content {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.section-block .section-content .cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 991px) {
  .section-block .section-content .cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.section-block .section-content .cards__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 264px;
  margin-bottom: 44px;
}
@media (min-width: 991px) {
  .section-block .section-content .cards__item {
    height: 360px;
    margin: 0 35px;
    width: 411px;
  }
}
.section-block .section-content .cards__item:first-child .cards__item-img img {
  width: 53px;
}
.section-block .section-content .cards__item:nth-child(2) .cards__item-img img {
  width: 39px;
}
.section-block .section-content .cards__item:nth-child(3) .cards__item-img img {
  width: 42px;
}
.section-block .section-content .cards__item:nth-child(4) .cards__item-img img {
  width: 48px;
}
.section-block .section-content .cards__item:last-child {
  margin-bottom: 0;
}
.section-block .section-content .cards__item:last-child .cards__item-img img {
  width: 51px;
}
.section-block .section-content .cards__item-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background-color: var(--btn);
  margin-bottom: 23px;
}
.section-block .section-content .cards__item-text h3 {
  color: var(--section);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 0;
  text-transform: none;
}
@media (min-width: 991px) {
  .section-block .section-content .cards__item-text h3 {
    font-size: 20px;
  }
}
.section-block .section-content .cards__item-text p {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: var(--section);
}
@media (min-width: 991px) {
  .section-block .section-content .cards__item-text p {
    font-size: 20px;
  }
}

.section-block.advantages {
  z-index: 4;
  background-color: var(--main);
  top: -30px;
  margin-bottom: -30px;
}
@media (min-width: 1280px) {
  .section-block.advantages {
    top: -40px;
    margin-bottom: -40px;
  }
}
@media (min-width: 1700px) {
  .section-block.advantages {
    top: -80px;
    margin-bottom: -80px;
  }
}
.section-block.advantages .section-content {
  padding: 106px 35px 147px 35px;
}
@media (min-width: 1280px) {
  .section-block.advantages .section-content {
    padding: 126px 35px 235px 35px;
  }
}
.section-block.advantages .section-content::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -100px;
  width: 156px;
  height: 167px;
  background: var(--gradient);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}
@media (min-width: 991px) {
  .section-block.advantages .section-content::before {
    width: 707px;
    height: 707px;
    right: -600px;
    top: 80px;
  }
}
.section-block.advantages .section-content::after {
  content: "";
  position: absolute;
  top: 40%;
  left: -170px;
  width: 248px;
  height: 248px;
  background: var(--gradient);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}
@media (min-width: 991px) {
  .section-block.advantages .section-content::after {
    width: 493px;
    height: 493px;
    left: -300px;
    top: 50%;
  }
}
.section-block.advantages .section-content h2 {
  color: var(--section);
}

.section-text.services {
  z-index: 5;
  top: -45px;
  padding: 73px 56px 110px 56px;
  margin-bottom: -45px;
}
@media (min-width: 1280px) {
  .section-text.services {
    top: -55px;
    margin-bottom: -55px;
    padding: 141px 56px 207px 56px;
  }
}
@media (min-width: 1700px) {
  .section-text.services {
    top: -95px;
    margin-bottom: -95px;
    padding: 141px 56px 227px 56px;
  }
}
.section-text.services .text-content h2 {
  color: var(--text);
}
.section-text.services .text-content .avatar {
  width: 135px;
}
@media (min-width: 991px) {
  .section-text.services .text-content .avatar {
    width: 300px;
  }
}

.section-block.questions {
  z-index: 8;
  top: -60px;
  background: var(--main);
  margin-bottom: -60px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  overflow: hidden;
}
@media (min-width: 1280px) {
  .section-block.questions {
    top: -70px;
    margin-bottom: -70px;
  }
}
.section-block.questions .text-content {
  padding: 50px 27px 40px 27px;
  text-align: center;
}
@media (min-width: 1280px) {
  .section-block.questions .text-content {
    padding: 63px 27px 81px 27px;
  }
}
.section-block.questions .text-content span {
  display: block;
  color: var(--section);
  font-weight: 400;
  line-height: 50px;
  font-size: 16px;
}
@media (min-width: 991px) {
  .section-block.questions .text-content span {
    font-size: 20px;
  }
}
@media (min-width: 1280px) {
  .section-block.questions .text-content span {
    font-size: 30px;
  }
}
.section-block.questions .text-content span strong {
  font-weight: 900;
}
.section-block.questions .text-content::after {
  content: "";
  position: absolute;
  top: -220px;
  left: -70px;
  width: 255px;
  height: 257px;
  background: var(--gradient);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}
@media (min-width: 991px) {
  .section-block.questions .text-content::after {
    left: auto;
    top: auto;
    width: 493px;
    height: 493px;
    right: -300px;
    bottom: 150px;
  }
}

footer {
  padding: 6px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--footer);
}
@media (min-width: 991px) {
  footer {
    padding: 0 76px;
    height: 86px;
  }
}
@media (min-width: 1700px) {
  footer {
    padding: 0 223px 0 174px;
  }
}
footer img {
  max-width: 100%;
  height: auto;
  width: 78px;
}
@media (min-width: 640px) {
  footer img {
    width: 125px;
  }
}
@media (min-width: 991px) {
  footer img {
    width: 205px;
  }
}
footer span {
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  font-family: "Poppins";
  color: var(--copyright);
}
@media (min-width: 640px) {
  footer span {
    font-size: 20px;
    line-height: 18px;
  }
}
@media (min-width: 991px) {
  footer span {
    font-size: 30px;
    line-height: 28px;
  }
}/*# sourceMappingURL=style.css.map */