main {
  background-color: #fbf8f5;
  overflow-x: hidden; }

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

a {
  text-decoration: none;
  color: #3b424a;
  cursor: pointer;
  -webkit-transition: color 0.7s ease 0s;
  transition: color 0.7s ease 0s; }
  a:hover {
    color: #40572a; }

li {
  list-style: none; }

p:last-child {
  margin-bottom: 0; }

html {
  position: relative; }

html,
body {
  scroll-behavior: smooth;
  min-width: 320px; }

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #3b424a;
  overflow-x: hidden; }

body.lock {
  overflow: hidden; }

.container {
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto; }
  @media screen and (max-width: 480px) {
    .container {
      padding: 0 10px; } }

.small-container {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto; }
  @media screen and (max-width: 992px) {
    .small-container {
      max-width: 100%;
      padding: 0 10px; } }

h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: normal;
  color: #405729;
  font-size: 35px;
  line-height: 40px;
  letter-spacing: 1px;
  font-weight: 700; }
  @media screen and (max-width: 768px) {
    h2 {
      font-size: 32px;
      line-height: 38px; } }
  @media screen and (max-width: 400px) {
    h2 {
      font-size: 28px;
      line-height: 34px; } }

.navigation {
  position: fixed;
  width: 400px;
  height: 100vh;
  z-index: 100;
  right: -100%;
  top: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(35, 37, 38, 0.98)), to(rgba(65, 67, 69, 0.98)));
  background: linear-gradient(to right, rgba(35, 37, 38, 0.98), rgba(65, 67, 69, 0.98));
  padding: 40px;
  -webkit-transition: right 0.8s linear;
  transition: right 0.8s linear; }
  @media screen and (max-width: 450px) {
    .navigation {
      width: 280px; } }
  .navigation::before, .navigation::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #8cb059;
    border-radius: 50%;
    -webkit-filter: blur(70px);
            filter: blur(70px); }
  .navigation::before {
    bottom: 0;
    left: 0;
    z-index: 10; }
  .navigation::after {
    top: 0;
    right: 0; }
  .navigation__close {
    cursor: pointer; }
  .navigation__title {
    margin-bottom: 25px;
    color: #ddd; }
  .navigation.active {
    right: 0%;
    -webkit-transition: all 0.8s linear;
    transition: all 0.8s linear; }
  .navigation__close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ddd;
    opacity: 0.8;
    z-index: 11; }

.menu__inner {
  margin-bottom: 30px; }
.menu__link {
  font-size: 18px;
  line-height: 22px;
  display: inline-block;
  margin-bottom: 15px;
  color: #dddddd;
  -webkit-transition: color 0.6s ease;
  transition: color 0.6s ease; }
  .menu__link:hover {
    color: #8cb059;
    -webkit-transition: color 0.6s ease;
    transition: color 0.6s ease; }

.number__description {
  color: #ddd;
  font-size: 22px;
  margin-bottom: 10px; }
.number__phone--nav {
  margin-bottom: 20px; }
  .number__phone--nav a {
    display: inline-block;
    color: #ddd;
    font-size: 18px; }

.header {
  margin-bottom: 70px;
  padding-top: 20px;
  position: relative;
  z-index: 4; }
  @media screen and (max-width: 690px) {
    .header {
      margin-bottom: 44px; } }
  .header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media screen and (max-width: 690px) {
      .header__wrapper {
        -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; } }
  .header__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media screen and (max-width: 690px) {
      .header__left {
        margin-bottom: 20px;
        margin-right: 0; } }
  .header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media screen and (max-width: 343px) {
      .header__right {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -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; } }
  .header__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 250px;
    font-size: 13px;
    line-height: 17px; }
    .header__info span {
      font-weight: 600; }
    @media screen and (max-width: 878px) {
      .header__info {
        display: none; } }
  .header__info-img {
    width: 90px;
    height: 36px; }

.header--social .social__list {
  gap: 10px; }
.header--social .social__link {
  width: 40px;
  height: 40px; }

.header__burger {
  position: relative;
  width: 30px;
  height: 24px;
  z-index: 6;
  cursor: pointer; }
  @media screen and (max-width: 343px) {
    .header__burger {
      margin-top: 20px; } }
  .header__burger span {
    position: absolute;
    background-color: #3b424a;
    top: 11px;
    left: 0;
    width: 30px;
    height: 2px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
  .header__burger::before, .header__burger::after {
    content: '';
    position: absolute;
    background-color: #3b424a;
    width: 100%;
    height: 2px;
    left: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
  .header__burger::before {
    top: 0; }
  .header__burger::after {
    bottom: 0; }

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 15px; }
  .logo__img {
    width: 90px;
    margin-right: 10px; }
  .logo__description {
    font-size: 13px;
    line-height: 17px;
    max-width: 200px; }
    .logo__description span {
      font-weight: 700; }
    @media screen and (max-width: 930px) {
      .logo__description {
        max-width: 150px; } }
    @media screen and (max-width: 690px) {
      .logo__description {
        max-width: 256px; } }

.request-call {
  padding-left: 12px;
  margin-top: -3px; }
  .request-call a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    color: #405729; }

.number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .number__wrap {
    margin-right: 10px; }
  .number__phone {
    display: inline-block;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .number__timetable {
    font-size: 13px;
    line-height: 17px;
    padding-left: 12px; }

.online-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #2a6333;
  -webkit-animation: online-shining 3s infinite linear;
          animation: online-shining 3s infinite linear;
  border-radius: 50%;
  margin-right: 7px;
  margin-top: -1px; }

.social {
  margin-right: 40px; }
  @media screen and (max-width: 343px) {
    .social {
      margin-right: 0; } }
  .social__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .social__item + .social__item {
    margin-left: 3px; }
  .social__link {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 3px;
    cursor: pointer; }
  .social__link img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain; }

@-webkit-keyframes online-shining {
  0% {
    opacity: 100%; }
  25% {
    opacity: 60%; }
  75% {
    opacity: 10%; }
  100% {
    opacity: 60%; } }

@keyframes online-shining {
  0% {
    opacity: 100%; }
  25% {
    opacity: 60%; }
  75% {
    opacity: 10%; }
  100% {
    opacity: 60%; } }
.hero {
  background: center/cover url(../img/main-bg.jpg) no-repeat;
  padding-bottom: 215px;
  overflow: hidden; }
  @media screen and (max-width: 992px) {
    .hero {
      background: center/cover url(../img/main-bg-992.jpg) no-repeat; } }
  @media screen and (max-width: 878px) {
    .hero {
      padding-bottom: 0; } }
  .hero .container {
    position: relative; }
    @media screen and (max-width: 878px) {
      .hero .container {
        padding-bottom: 500px; } }
    @media screen and (max-width: 690px) {
      .hero .container {
        padding-bottom: 478px; } }
    @media screen and (max-width: 580px) {
      .hero .container {
        padding-bottom: 428px; } }
    @media screen and (max-width: 450px) {
      .hero .container {
        padding-bottom: 380px; } }
    @media screen and (max-width: 400px) {
      .hero .container {
        padding-bottom: 350px; } }
    @media screen and (max-width: 359px) {
      .hero .container {
        padding-bottom: 294px; } }
    @media screen and (max-width: 343px) {
      .hero .container {
        padding-bottom: 285px; } }
  .hero__shine {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px; }
    .hero__shine::before {
      content: '';
      position: absolute;
      top: 54px;
      left: -72px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background-color: #ffffff;
      -webkit-filter: blur(90px);
              filter: blur(90px);
      z-index: 1;
      opacity: 0.5; }
      @media screen and (max-width: 535px) {
        .hero__shine::before {
          width: 200px;
          height: 200px; } }
  .hero__left {
    position: relative;
    z-index: 3; }
    .hero__left-shine {
      position: absolute;
      bottom: -165px;
      left: -165px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background-color: #ffffff;
      -webkit-filter: blur(90px);
              filter: blur(90px);
      z-index: -1;
      opacity: 0.5; }
      @media screen and (max-width: 535px) {
        .hero__left-shine {
          bottom: -64px;
          right: -29px;
          left: auto;
          width: 200px;
          height: 200px;
          -webkit-filter: blur(60px);
                  filter: blur(60px); } }
    @media screen and (max-width: 878px) {
      .hero__left {
        position: relative;
        width: 100%;
        text-align: center; } }
  .hero__title {
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
    font-weight: 600;
    color: #405729; }
    @media screen and (max-width: 992px) {
      .hero__title {
        font-size: 55px;
        line-height: 65px; } }
    @media screen and (max-width: 445px) {
      .hero__title {
        font-size: 42px;
        line-height: 48px;
        margin-bottom: 0; } }
    @media screen and (max-width: 346px) {
      .hero__title {
        font-size: 36px; } }
  .hero__name {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #405729; }
    @media screen and (max-width: 992px) {
      .hero__name {
        font-size: 44px;
        line-height: 54px; } }
    @media screen and (max-width: 445px) {
      .hero__name {
        font-size: 35px;
        line-height: 44px; } }
    @media screen and (max-width: 445px) {
      .hero__name {
        font-size: 30px;
        line-height: 38px; } }
  .hero__subtitle {
    position: relative;
    font-size: 26px;
    line-height: 34px;
    max-width: 550px;
    padding-left: 35px; }
    @media screen and (max-width: 992px) {
      .hero__subtitle {
        font-size: 22px;
        line-height: 30px;
        max-width: 420px; } }
    @media screen and (max-width: 878px) {
      .hero__subtitle {
        margin: 0 auto; } }
    @media screen and (max-width: 425px) {
      .hero__subtitle {
        padding-left: 0; } }
    .hero__subtitle::before {
      content: '';
      position: absolute;
      top: 7px;
      left: 8px;
      width: 4px;
      height: 20px;
      border-radius: 1px;
      -webkit-transform: rotate(-24deg);
              transform: rotate(-24deg);
      background-color: #405729; }
      @media screen and (max-width: 425px) {
        .hero__subtitle::before {
          display: none; } }
  .hero__btn-wrap {
    display: inline-block;
    position: relative; }
    .hero__btn-wrap::before {
      content: '';
      position: absolute;
      top: -10px;
      right: -140px;
      width: 160px;
      height: 160px;
      background: center/contain url(../img/cons5.svg) no-repeat;
      z-index: 3; }
      @media screen and (max-width: 660px) {
        .hero__btn-wrap::before {
          top: 182px;
          right: 30%;
          -webkit-transform: translate(0, -50%);
                  transform: translate(0, -50%); } }
      @media screen and (max-width: 660px) {
        .hero__btn-wrap::before {
          display: none; } }
  .hero__btn {
    margin-top: 30px; }
    .hero__btn:hover {
      color: #69470c; }
  .hero__reg-num {
    font-size: 12px;
    line-height: 14px;
    margin-top: 15px;
    opacity: 0.8; }
  .hero__image-wrap {
    position: absolute;
    width: 800px;
    height: 700px;
    z-index: 2;
    top: 105px;
    right: -65px;
    background: center/cover url(../img/lawyer2.png) no-repeat; }
    .hero__image-wrap::before {
      content: '';
      position: absolute;
      top: 100px;
      left: 106px;
      width: 137px;
      height: 110px;
      z-index: 2;
      background: center/contain url(../img/experience.svg) no-repeat; }
      @media screen and (max-width: 1130px) {
        .hero__image-wrap::before {
          top: 75px;
          left: 165px; } }
      @media screen and (max-width: 830px) {
        .hero__image-wrap::before {
          left: 40px; } }
      @media screen and (max-width: 580px) {
        .hero__image-wrap::before {
          left: 0; } }
      @media screen and (max-width: 530px) {
        .hero__image-wrap::before {
          top: 100px;
          width: 100px; } }
      @media screen and (max-width: 440px) {
        .hero__image-wrap::before {
          top: 100px;
          width: 80px; } }
      @media screen and (max-width: 418px) {
        .hero__image-wrap::before {
          top: 4px;
          width: 80px; } }
      @media screen and (max-width: 343px) {
        .hero__image-wrap::before {
          top: 0px;
          width: 80px; } }
    @media screen and (max-width: 1110px) {
      .hero__image-wrap {
        right: -166px; } }
    @media screen and (max-width: 992px) {
      .hero__image-wrap {
        top: 100px;
        right: -160px; } }
    @media screen and (max-width: 878px) {
      .hero__image-wrap {
        width: 100%;
        height: 500px;
        background: center/cover url(../img/lawyer-878.png) no-repeat;
        top: 595px;
        left: 55%;
        -webkit-transform: translate(-50%, 0);
                transform: translate(-50%, 0); } }
    @media screen and (max-width: 690px) {
      .hero__image-wrap {
        z-index: 3;
        height: 480px;
        top: 640px; } }
    @media screen and (max-width: 660px) {
      .hero__image-wrap {
        height: 440px;
        top: 660px; } }
    @media screen and (max-width: 449px) {
      .hero__image-wrap {
        height: 360px; } }
    @media screen and (max-width: 445px) {
      .hero__image-wrap {
        top: 608px;
        height: 320px; } }
    @media screen and (max-width: 360px) {
      .hero__image-wrap {
        top: 657px;
        height: 250px; } }
    @media screen and (max-width: 343px) {
      .hero__image-wrap {
        top: 695px; } }

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 30px 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 20px;
  border-radius: 10px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  position: relative;
  overflow-x: hidden; }
  @media screen and (max-width: 425px) {
    .btn {
      padding: 22px 32px; } }
  .btn .flare {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50px;
    -webkit-transform: skewX(-45deg);
            transform: skewX(-45deg);
    left: -150%;
    -webkit-animation: flareAnimation 5s infinite linear;
            animation: flareAnimation 5s infinite linear;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.4)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4)); }
  .btn__info-text {
    color: #405729;
    font-size: 14px;
    font-weight: 600; }
    @media screen and (min-width: 661px) {
      .btn__info-text {
        display: none; } }
    @media screen and (max-width: 660px) {
      .btn__info-text {
        display: block; } }

@-webkit-keyframes flareAnimation {
  0% {
    left: -150%; }
  20% {
    left: 150%; }
  100% {
    left: 150%; } }

@keyframes flareAnimation {
  0% {
    left: -150%; }
  20% {
    left: 150%; }
  100% {
    left: 150%; } }
.btn--yellow {
  color: #69470c;
  background-color: #ffd888;
  border-bottom: 4px solid #D39F4D;
  -webkit-box-shadow: inset 0 -45px 80px -25px #f0a70d, inset 0 -3px 5px 0px #ffffff;
          box-shadow: inset 0 -45px 80px -25px #f0a70d, inset 0 -3px 5px 0px #ffffff; }
  .btn--yellow:hover {
    -webkit-box-shadow: inset 0 -45px 80px -25px #dd9703, inset 0 -3px 5px 0px #ffffff;
            box-shadow: inset 0 -45px 80px -25px #dd9703, inset 0 -3px 5px 0px #ffffff; }

.advantages {
  border-radius: 5px;
  position: relative;
  z-index: 3;
  top: -90px; }
  .advantages__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ece9e9;
    -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
            box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px; }
    @media screen and (max-width: 600px) {
      .advantages__wrap {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }

.advantage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  width: calc(100% / 3);
  background: #f2f6ed;
  background: -webkit-gradient(linear, left top, right top, from(#f2f2f2), to(rgba(255, 255, 255, 0.9)));
  background: linear-gradient(90deg, #f2f2f2 0%, rgba(255, 255, 255, 0.9) 100%); }
  @media screen and (max-width: 1100px) {
    .advantage {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media screen and (max-width: 600px) {
    .advantage {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      width: 100%;
      padding: 10px; } }
  .advantage__img {
    width: 120px;
    margin-right: 15px; }
    @media screen and (max-width: 878px) {
      .advantage__img {
        width: 90px; } }
  .advantage__title {
    margin-bottom: 10px;
    font-size: 18px;
    color: #405729;
    font-family: 'Raleway', sans-serif; }
  .advantage__descr {
    font-size: 15px;
    line-height: 22px; }

.about {
  margin-top: 50px; }
  @media screen and (max-width: 992px) {
    .about {
      margin-top: 25px; } }
  @media screen and (max-width: 878px) {
    .about {
      margin-top: 0px; } }
  @media screen and (max-width: 400px) {
    .about {
      margin-top: -20px; } }
  .about .small-container {
    position: relative; }
    .about .small-container::before {
      content: '';
      position: absolute;
      top: -70px;
      left: -235px;
      width: 656px;
      height: 700px;
      background: center/contain url(../img/column-01.png) no-repeat;
      -webkit-filter: blur(6px);
              filter: blur(6px);
      opacity: 0.8; }
      @media screen and (max-width: 1100px) {
        .about .small-container::before {
          display: none; } }
    .about .small-container::after {
      content: '';
      position: absolute;
      top: -70px;
      right: -235px;
      width: 656px;
      height: 700px;
      background: center/contain url(../img/column-01.png) no-repeat;
      -webkit-transform: scale(-1, 1);
              transform: scale(-1, 1);
      -webkit-filter: blur(6px);
              filter: blur(6px);
      opacity: 0.8; }
      @media screen and (max-width: 1100px) {
        .about .small-container::after {
          display: none; } }
  .about__wrapper {
    position: relative;
    margin: 0 auto;
    min-height: 500px;
    background: center/cover url(../img/dark-bg.jpg) no-repeat;
    border-radius: 30px;
    -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
            box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px; }
    @media screen and (max-width: 500px) {
      .about__wrapper {
        border-radius: 10px; } }
  .about__img-wrap {
    position: absolute;
    height: 600px;
    bottom: 0;
    left: 20px; }
    @media screen and (max-width: 878px) {
      .about__img-wrap {
        left: -40px; } }
    @media screen and (max-width: 820px) {
      .about__img-wrap {
        height: 475px;
        left: 20px; } }
    @media screen and (max-width: 775px) {
      .about__img-wrap {
        left: -20px; } }
    @media screen and (max-width: 675px) {
      .about__img-wrap {
        left: -40px; } }
    @media screen and (max-width: 650px) {
      .about__img-wrap {
        position: static;
        display: none; } }
  .about__main-img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain; }
  .about__title {
    margin-bottom: 40px;
    color: #dddddd;
    font-family: 'Raleway', sans-serif; }
    @media screen and (max-width: 768px) {
      .about__title {
        margin-bottom: 33px; } }
  .about__subtitle {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 28px; }
  .about__descr {
    color: #dddddd;
    max-width: 50%;
    margin-left: auto;
    padding: 50px 50px 20px 0; }
    @media screen and (max-width: 878px) {
      .about__descr {
        padding: 50px 20px 20px 0;
        max-width: 55%; } }
    @media screen and (max-width: 650px) {
      .about__descr {
        max-width: 100%;
        padding: 40px; } }
    @media screen and (max-width: 500px) {
      .about__descr {
        padding: 30px; } }
  .about__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .about__item {
    font-size: 15px;
    line-height: 22px;
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    margin-bottom: 25px;
    opacity: 0.8; }
    @media screen and (max-width: 500px) {
      .about__item {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }
    .about__item img {
      width: 80px; }
      @media screen and (max-width: 878px) {
        .about__item img {
          width: 60px; } }

.sertificate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  gap: 5px; }
  .sertificate__item {
    -ms-flex-preferred-size: 250px;
        flex-basis: 250px; }
    @media screen and (max-width: 965px) {
      .sertificate__item {
        -ms-flex-preferred-size: 175px;
            flex-basis: 175px; } }
    @media screen and (max-width: 730px) {
      .sertificate__item {
        -ms-flex-preferred-size: 145px;
            flex-basis: 145px; } }
    @media screen and (max-width: 580px) {
      .sertificate__item {
        -ms-flex-preferred-size: 110px;
            flex-basis: 110px; } }
    .sertificate__item--vertical {
      -ms-flex-preferred-size: 145px;
          flex-basis: 145px; }
      @media screen and (max-width: 965px) {
        .sertificate__item--vertical {
          -ms-flex-preferred-size: 103px;
              flex-basis: 103px; } }
      @media screen and (max-width: 730px) {
        .sertificate__item--vertical {
          -ms-flex-preferred-size: 84px;
              flex-basis: 84px; } }
      @media screen and (max-width: 580px) {
        .sertificate__item--vertical {
          -ms-flex-preferred-size: 64px;
              flex-basis: 64px; } }
    .sertificate__item img {
      width: 100%;
      height: 100%;
      -o-object-fit: contain;
         object-fit: contain; }
  .sertificate__img-wrap {
    max-width: 600px;
    max-height: 600px; }
    .sertificate__img-wrap img {
      width: 100%;
      height: 100%;
      -o-object-fit: contain;
         object-fit: contain; }

.services {
  padding: 120px 0 50px; }
  @media screen and (max-width: 992px) {
    .services {
      padding-top: 100px;
      padding-bottom: 40px; } }
  .services p {
    margin: 10px 0; }
  .services__image-wrapper {
    position: absolute;
    top: -188px;
    right: -216px;
    height: 525px;
    z-index: 0; }
    @media screen and (max-width: 1100px) {
      .services__image-wrapper {
        right: -36px;
        height: 346px; } }
    @media screen and (max-width: 320px) {
      .services__image-wrapper {
        right: -25px;
        height: 217px; } }
  .services__image {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain; }
  .services__title {
    text-align: center; }
    @media screen and (max-width: 935px) {
      .services__title {
        max-width: 75%;
        margin: 0 auto; } }
  .services__description {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 20px;
    font-size: 26px;
    line-height: 34px; }
    @media screen and (max-width: 935px) {
      .services__description {
        max-width: 75%;
        margin-left: auto;
        margin-right: auto; } }
    @media screen and (max-width: 768px) {
      .services__description {
        margin-bottom: 40px;
        font-size: 24px;
        line-height: 32px; } }
  .services__list {
    margin: 15px 0; }
  .services__item {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px; }
    .services__item::before {
      content: '';
      position: absolute;
      top: 6px;
      left: 0;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      border: 3px solid #405729; }

.accordion {
  position: relative;
  z-index: 3; }
  .accordion__wrapper {
    position: relative; }
    .accordion__wrapper::after {
      content: '';
      position: absolute;
      top: -95px;
      left: -193px;
      width: 350px;
      height: 350px;
      background: center/contain url(../img/book.png) no-repeat;
      z-index: 0; }
      @media screen and (max-width: 1100px) {
        .accordion__wrapper::after {
          top: -95px;
          left: -97px;
          width: 170px;
          height: 170px; } }
      @media screen and (max-width: 992px) {
        .accordion__wrapper::after {
          top: -117px;
          left: -60px; } }
      @media screen and (max-width: 935px) {
        .accordion__wrapper::after {
          left: -30px; } }
      @media screen and (max-width: 580px) {
        .accordion__wrapper::after {
          left: -80px; } }
      @media screen and (max-width: 400px) {
        .accordion__wrapper::after {
          width: 110px;
          left: -56px; } }
  .accordion__btn {
    position: relative;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    background: #232526;
    background: -webkit-gradient(linear, left top, right top, from(#232526), to(#414345));
    background: linear-gradient(to right, #232526, #414345);
    color: #dddddd;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    border-radius: 10px;
    outline: none;
    -webkit-transition: 0.4s;
    transition: 0.4s; }
    @media screen and (max-width: 600px) {
      .accordion__btn {
        padding-right: 45px; } }
    .accordion__btn span {
      text-decoration: underline;
      font-weight: 600; }
    .accordion__btn::after {
      position: absolute;
      content: '';
      /* Unicode character for "plus" sign (+) */
      top: 15px;
      right: 15px;
      background: center/contain url(../img/plus.png) no-repeat;
      width: 30px;
      height: 30px;
      -webkit-transition: 0.4s;
      transition: 0.4s; }
    .accordion__btn.active, .accordion__btn:hover {
      background-color: rgba(34, 34, 34, 0.95); }
    .accordion__btn.active::after {
      background: center/contain url(../img/minus.png) no-repeat; }
  .accordion__panel {
    position: relative;
    padding: 0 18px;
    background-color: rgba(255, 255, 255, 0.6);
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.2s ease-out;
    transition: max-height 0.2s ease-out;
    margin-bottom: 2px;
    z-index: 2;
    border-radius: 5px; }
  .accordion__order-btn {
    text-align: center; }

.civil-cases {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .civil-cases__item:first-child {
    margin-right: 30px; }

.steps {
  padding: 70px 0;
  position: relative;
  background: top/cover url(../img/steps-bg.jpg) no-repeat;
  background-position-y: -50px;
  margin-top: 34px; }
  .steps__main-title {
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    z-index: 2; }
  .steps__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media screen and (max-width: 1080px) {
      .steps__wrapper {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
  .steps__item {
    position: relative;
    -ms-flex-preferred-size: 22%;
        flex-basis: 22%;
    padding: 20px 15px 15px 20px;
    background-color: #f7f7f7;
    border-radius: 15px;
    margin-right: 10px;
    font-size: 15px;
    line-height: 23px;
    text-align: center;
    -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
            box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px; }
    @media screen and (max-width: 1080px) {
      .steps__item {
        margin-bottom: 30px;
        -ms-flex-preferred-size: 48%;
            flex-basis: 48%; } }
    @media screen and (max-width: 540px) {
      .steps__item {
        margin-bottom: 10px;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }
  .steps__icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px; }
  .steps__title {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
    color: #405729;
    font-family: 'Raleway', sans-serif; }
  .steps__descr span {
    font-weight: 700; }
  .steps__img {
    width: 200px; }
    @media screen and (max-width: 878px) {
      .steps__img {
        width: 150px; } }

.reviews {
  padding: 100px 10px 80px 10px; }
  @media screen and (max-width: 1024px) {
    .reviews {
      padding-top: 30px; } }
  .reviews .small-container {
    position: relative; }
    .reviews .small-container::before {
      content: '';
      position: absolute;
      top: -70px;
      left: -235px;
      width: 656px;
      height: 700px;
      background: center/contain url(../img/column-01.png) no-repeat;
      -webkit-filter: blur(6px);
              filter: blur(6px);
      opacity: 0.8; }
      @media screen and (max-width: 1100px) {
        .reviews .small-container::before {
          display: none; } }
    .reviews .small-container::after {
      content: '';
      position: absolute;
      top: -70px;
      right: -235px;
      width: 656px;
      height: 700px;
      background: center/contain url(../img/column-01.png) no-repeat;
      -webkit-transform: scale(-1, 1);
              transform: scale(-1, 1);
      -webkit-filter: blur(6px);
              filter: blur(6px);
      opacity: 0.8; }
      @media screen and (max-width: 1100px) {
        .reviews .small-container::after {
          display: none; } }
  .reviews p {
    margin-bottom: 10px; }
  .reviews__title {
    margin-bottom: 40px;
    text-align: center;
    color: #dddddd; }
  .reviews__box {
    background: center/cover url(../img/dark-bg.jpg) no-repeat;
    border-radius: 30px;
    padding: 50px 50px 60px 50px;
    -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
            box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px; }
    @media screen and (max-width: 500px) {
      .reviews__box {
        border-radius: 10px;
        padding: 50px 10px 60px 10px; } }
  .reviews__wrapper {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    padding: 5px; }

/* Swiper */
.swiper-button-prev {
  top: 130px;
  left: -70px; }

.swiper-button-next {
  top: 130px;
  right: -45px; }

.swiper-pagination.services__slider01-pagination,
.swiper-pagination.services__slider02-pagination {
  bottom: -40px; }

.swiper-pagination-bullet-active {
  background-color: #40572a; }

.swiper-pagination-bullet {
  width: 15px;
  height: 15px; }

.swiper-button-next:after,
.swiper-button-prev:after {
  color: white;
  font-size: 23px;
  padding: 14px 21px;
  border-radius: 100px;
  background-image: -webkit-linear-gradient(90deg, #8db159 0%, #8db159 100%);
  border-bottom: 2px solid #4b6725;
  -webkit-box-shadow: 0px 2px 25px 0px rgba(141, 177, 89, 0.7), inset 0px 0px 25px 0px rgba(232, 249, 210, 0.7);
          box-shadow: 0px 2px 25px 0px rgba(141, 177, 89, 0.7), inset 0px 0px 25px 0px rgba(232, 249, 210, 0.7);
  text-shadow: -0.695px 0.719px 1px rgba(61, 61, 61, 0.16); }

/* Section reviews starts */
.swiper-pagination.reviews-slider-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.2; }

.swiper-pagination.reviews-slider-pagination
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #8db159;
  opacity: 1; }

.reviews__title span {
  font-weight: 600; }

.reviews-slider {
  padding-bottom: 20px;
  position: relative; }
  @media screen and (max-width: 450px) {
    .reviews-slider p {
      font-size: 18px; } }
  .reviews-slider::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    right: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 95%;
    height: 34px;
    background-color: rgba(141, 177, 89, 0.2);
    -webkit-box-shadow: 0px 0px 16px 0px rgba(65, 65, 64, 0.12);
            box-shadow: 0px 0px 16px 0px rgba(65, 65, 64, 0.12);
    border-radius: 0px 0px 14px 14px;
    z-index: -1; }
  .reviews-slider__slide {
    position: relative;
    background: #faf8f5;
    padding: 5px;
    border-radius: 10px;
    position: relative;
    overflow: hidden; }

@media screen and (max-width: 830px) {
  .swiper-button-prev.reviews-slider-prev {
    display: none; }

  .swiper-button-next.reviews-slider-next {
    display: none; } }
.reviews-slider__review {
  border: 1px solid rgba(122, 149, 107, 0.5);
  padding: 25px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  line-height: 23px; }

.reviews-slider__wrapper {
  max-width: 640px; }

.reviews-slider-pagination .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -30px; }

.reviews-slider__name {
  font-size: 22px;
  font-weight: 700;
  color: #405729;
  margin-bottom: 20px; }

/* Section reviews ends */
.request {
  padding: 60px 80px; }
  @media screen and (max-width: 992px) {
    .request {
      margin-bottom: 70px; } }
  @media screen and (max-width: 878px) {
    .request {
      padding: 0 30px 0 40px;
      margin-bottom: 0; } }
  @media screen and (max-width: 425px) {
    .request {
      padding: 0; } }
  .request__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative; }
    .request__wrapper::after {
      content: '';
      position: absolute;
      top: -26px;
      left: -281px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background-color: #d39f4e;
      -webkit-filter: blur(90px);
              filter: blur(90px);
      z-index: 1;
      opacity: 0.7; }
    .request__wrapper::before {
      content: '';
      position: absolute;
      bottom: -163px;
      right: -322px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background-color: #8db159;
      -webkit-filter: blur(90px);
              filter: blur(90px);
      z-index: 1;
      opacity: 0.7; }
    @media screen and (max-width: 820px) {
      .request__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .request__info {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    position: relative;
    z-index: 3; }
    @media screen and (max-width: 820px) {
      .request__info {
        -ms-flex-preferred-size: 60%;
            flex-basis: 60%;
        -ms-flex-item-align: center;
            align-self: center;
        margin-bottom: 30px; } }
  .request__main-title {
    margin-bottom: 20px; }
  .request__main-description {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 20px; }
    @media screen and (max-width: 768px) {
      .request__main-description {
        font-size: 24px;
        line-height: 32px; } }
  .request__title {
    text-align: center;
    color: #dddddd;
    font-size: 26px; }
  .request__description {
    text-align: center;
    margin-bottom: 30px;
    color: #dddddd; }
  .request__way {
    font-size: 15px;
    line-height: 18px;
    opacity: 0.4;
    margin-bottom: 10px; }
  .request__form {
    -ms-flex-item-align: end;
        align-self: flex-end;
    z-index: 3;
    margin-bottom: 0; }
    .request__form-wrap {
      position: relative; }
      .request__form-wrap::before {
        content: '';
        position: absolute;
        top: 100px;
        left: -177px;
        width: 400px;
        height: 300px;
        background: center/contain url(../img/gavel.png) no-repeat;
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg); }
        @media screen and (max-width: 1100px) {
          .request__form-wrap::before {
            left: -140px; } }
        @media screen and (max-width: 992px) {
          .request__form-wrap::before {
            left: -160px; } }
        @media screen and (max-width: 878px) {
          .request__form-wrap::before {
            width: 255px;
            height: 240px;
            left: -147px; } }
        @media screen and (max-width: 819px) {
          .request__form-wrap::before {
            left: -110px; } }
        @media screen and (max-width: 425px) {
          .request__form-wrap::before {
            width: 125px;
            left: 268px;
            top: -110px;
            z-index: 2; } }
  .request__item {
    position: relative;
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 10px;
    padding-left: 20px; }
    .request__item:before {
      content: '';
      position: absolute;
      top: 6px;
      left: 0;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      border: 2px solid #405729; }

.whatsapp,
.telegram {
  width: 48%;
  display: inline-block;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  margin-bottom: 20px; }
  .whatsapp:hover,
  .telegram:hover {
    color: #ffffff; }

.whatsapp {
  border: 1px solid #6ebf3a;
  color: #6ebf3a; }
  .whatsapp:hover {
    color: #ffffff;
    background-color: #6ebf3a; }

.telegram {
  border: 1px solid #33abe0;
  color: #33abe0; }
  .telegram:hover {
    background-color: #33abe0; }

.form * {
  outline: none; }

.form {
  max-width: 400px;
  font-family: 'Nunito', sans-serif;
  color: #fff;
  margin: 0px 0px 20px 0;
  padding: 5px;
  border-radius: 10px;
  -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
          box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  background: -webkit-gradient(linear, left top, right top, from(#232526), to(#414345));
  background: linear-gradient(to right, #232526, #414345);
  position: relative;
  text-align: center;
  overflow: hidden; }
  .form::before, .form::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: #8cb059;
    border-radius: 50%;
    -webkit-filter: blur(60px);
            filter: blur(60px);
    z-index: 1;
    opacity: 0.5; }
  .form::before {
    bottom: 0;
    left: 0;
    z-index: 10; }
  .form::after {
    top: 0;
    right: 0; }
  .form__container {
    position: relative;
    border: 1px solid rgba(122, 149, 107, 0.5);
    border-radius: 8px;
    padding: 30px 40px;
    z-index: 10; }
    @media screen and (max-width: 360px) {
      .form__container {
        padding: 30px 20px; } }
  .form__result {
    font-size: 16px;
    color: #ddd; }
  .form__button {
    width: 100%;
    margin-top: 8px;
    padding: 20px 20px;
    font-family: 'Nunito', sans-serif; }
  .form__body {
    position: relative; }
    .form__body::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(51, 51, 51, 0.9) url("../img/loading.gif") center/50px no-repeat;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: all 0.5s ease 0s;
      transition: all 0.5s ease 0s; }
    .form__body._sending::after {
      opacity: 1;
      visibility: visible; }
  .form__item {
    margin: 0px 0px 10px 0; }
  .form__label {
    color: #dddddd;
    display: block;
    font-size: 15px;
    margin: 0px 0px 5px 0px; }
  .form__input {
    display: inline-block;
    font-size: 16px;
    height: 40px;
    padding: 0px 20px;
    border-radius: 5px;
    width: 100%;
    border: 1px solid #f0f0f0;
    background-color: #fafafa; }
    .form__input:focus {
      -webkit-box-shadow: 0 0 4px #7a956b;
              box-shadow: 0 0 4px #7a956b; }
    .form__input._error {
      -webkit-box-shadow: 0 0 15px red;
              box-shadow: 0 0 15px red; }

.checkbox {
  margin-top: 6px; }
  .checkbox._error .checkbox__label::before {
    -webkit-box-shadow: 0 0 15px red;
            box-shadow: 0 0 15px red; }
  .checkbox__input {
    display: none; }
    .checkbox__input:checked + .checkbox__label::after {
      -webkit-transform: scale(1);
              transform: scale(1); }
  .checkbox__label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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: 12px;
    line-height: 14px;
    align-items: center;
    position: relative;
    cursor: pointer;
    color: #969697;
    padding-left: 20px; }
    .checkbox__label a {
      color: #7a956b; }
    .checkbox__label::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 2px;
      width: 10px;
      height: 10px;
      background-color: #fff;
      border: 1px solid #7a956b;
      border-radius: 2px;
      margin: 3px 7px 0px 0px; }
    .checkbox__label::after {
      content: '';
      width: 8px;
      height: 8px;
      position: absolute;
      top: 4px;
      left: 4px;
      background-color: #7a956b;
      border-radius: 2px;
      -webkit-transform: scale(0);
              transform: scale(0);
      -webkit-transition: -webkit-transform 0.5s ease 0s;
      transition: -webkit-transform 0.5s ease 0s;
      transition: transform 0.5s ease 0s;
      transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s; }

::-webkit-input-placeholder {
  font-size: 14px;
  line-height: 17px;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  color: #8d8d8d; }

::-moz-placeholder {
  font-size: 14px;
  line-height: 17px;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  color: #8d8d8d; }

/* Firefox 19+ */
:-moz-placeholder {
  font-size: 14px;
  line-height: 17px;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  color: #8d8d8d; }

/* Firefox 18- */
:-ms-input-placeholder {
  font-size: 14px;
  line-height: 17px;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  color: #8d8d8d; }

.price {
  margin: 25px 0 15px 0; }
  .price__title {
    color: #405729; }
  .price__count {
    font-weight: 600; }
  .price__item {
    margin-bottom: 10px;
    font-size: 16px; }
    .price__item:first-child {
      background-color: rgba(141, 177, 89, 0.8);
      border-radius: 2px; }

.map {
  width: 100%;
  height: 500px; }
  @media screen and (max-width: 878px) {
    .map {
      height: 300px; } }

[class*='copyrights-pane'] {
  display: none !important; }

.contacts {
  padding-top: 40px; }
  .contacts__wrapper {
    text-align: center;
    margin-bottom: 30px; }
  .contacts__container {
    position: relative; }
    @media screen and (max-width: 660px) {
      .contacts__container {
        max-width: 70%; } }
    .contacts__container::before {
      content: '';
      position: absolute;
      top: -34px;
      left: -50px;
      width: 230px;
      height: 220px;
      background: center/contain url(../img/gerb1.png) no-repeat;
      -webkit-transform: rotate(-25deg);
              transform: rotate(-25deg);
      opacity: 0.4; }
      @media screen and (max-width: 1200px) {
        .contacts__container::before {
          top: -16px;
          left: -19px; } }
      @media screen and (max-width: 878px) {
        .contacts__container::before {
          width: 100px;
          height: 100px;
          top: 55px;
          left: 6px; } }
      @media screen and (max-width: 660px) {
        .contacts__container::before {
          left: -106px; } }
      @media screen and (max-width: 510px) {
        .contacts__container::before {
          left: -82px; } }
      @media screen and (max-width: 380px) {
        .contacts__container::before {
          width: 65px;
          height: 65px;
          left: -51px; } }
    .contacts__container::after {
      content: '';
      position: absolute;
      top: -28px;
      right: -30px;
      width: 242px;
      height: 220px;
      background: center/contain url(../img/document.png) no-repeat;
      -webkit-transform: rotate(-365deg);
              transform: rotate(-365deg); }
      @media screen and (max-width: 878px) {
        .contacts__container::after {
          top: 44px;
          right: -30px;
          width: 130px;
          height: 130px; } }
      @media screen and (max-width: 660px) {
        .contacts__container::after {
          right: -137px; } }
      @media screen and (max-width: 510px) {
        .contacts__container::after {
          right: -113px; } }
      @media screen and (max-width: 380px) {
        .contacts__container::after {
          width: 100px;
          height: 100px;
          right: -80px; } }
  .contacts__title {
    margin-bottom: 20px; }
  .contacts__address {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px; }
  .contacts__info {
    font-size: 13px;
    line-height: 17px;
    opacity: 0.7; }
  .contacts__details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px; }
    @media screen and (max-width: 705px) {
      .contacts__details {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .contacts__phone {
    padding-left: 40px;
    margin-right: 30px;
    position: relative; }
    .contacts__phone::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 23px;
      height: 23px;
      background: center/contain url(../img/telephone.png) no-repeat; }
    @media screen and (max-width: 705px) {
      .contacts__phone {
        margin-bottom: 10px;
        margin-right: 0; } }
  .contacts__email {
    padding-left: 40px;
    position: relative; }
    .contacts__email::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 25px;
      height: 25px;
      background: center/contain url(../img/email.png); }

.footer {
  position: relative;
  background: #232526;
  background: -webkit-gradient(linear, left bottom, left top, from(#232526), to(#414345));
  background: linear-gradient(to top, #232526, #414345);
  z-index: 2; }
  .footer::before, .footer::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: #8cb059;
    border-radius: 50%;
    -webkit-filter: blur(60px);
            filter: blur(60px);
    z-index: 3;
    opacity: 0.5; }
  .footer::before {
    bottom: 0;
    left: 0;
    z-index: 10; }
  .footer::after {
    top: 0;
    right: 0; }
  .footer__wrapper {
    position: relative;
    z-index: 12; }
  .footer__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(183, 178, 189, 0.3);
    margin-bottom: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media screen and (max-width: 985px) {
      .footer__menu {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -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__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .footer .social {
    margin-right: 0; }
  .footer__number {
    margin-right: 20px;
    margin-bottom: 0;
    text-align: center; }
    .footer__number a {
      display: inline-block;
      color: #dddddd;
      font-weight: 700; }
  .footer__scedule {
    font-size: 12px;
    color: #969697;
    margin-top: -5px;
    opacity: 0.5; }

@media screen and (max-width: 985px) {
  .f-menu {
    margin-bottom: 20px; } }
.f-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media screen and (max-width: 690px) {
    .f-menu__list {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      gap: 10px; } }
.f-menu__link {
  color: #dddddd;
  font-size: 15px;
  line-height: 15px;
  -webkit-transition: color 0.6s ease;
  transition: color 0.6s ease; }
  .f-menu__link:hover {
    color: #8cb059;
    -webkit-transition: color 0.6s ease;
    transition: color 0.6s ease; }
.f-menu__item + .f-menu__item {
  margin-left: 30px; }

.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 15px;
  color: #ffffff;
  padding-bottom: 30px; }
  @media screen and (max-width: 878px) {
    .info {
      -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;
      text-align: center; } }
  .info__website-name {
    font-weight: 600;
    max-width: 300px;
    color: #dddddd;
    opacity: 1; }
    @media screen and (max-width: 768px) {
      .info__website-name {
        max-width: 100%; } }
    @media screen and (max-width: 878px) {
      .info__website-name {
        margin-bottom: 20px; } }
    .info__website-name span {
      font-weight: 600; }
  .info__copyright {
    max-width: 410px;
    opacity: 0.5; }
    @media screen and (max-width: 878px) {
      .info__copyright {
        margin-bottom: 20px; } }
  .info__link {
    opacity: 0.5; }
    .info__link a {
      color: #ffffff; }
      .info__link a:hover {
        color: #8cb059; }
      .info__link a:active {
        text-decoration: underline; }

.privacy-policy h2 {
  margin-bottom: 25px; }

/* Popup styles */
.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s; }
  .popup p {
    margin-bottom: 15px; }
  .popup li {
    margin-top: 15px;
    margin-bottom: 15px; }

.popup.open {
  opacity: 1;
  visibility: visible; }

.popup.open .popup__content {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1; }

.popup__body {
  min-height: 100%;
  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;
  padding: 30px 10px; }

.popup__content {
  color: #000;
  max-width: 800px;
  padding: 30px;
  position: relative;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  opacity: 0;
  -webkit-transform: translate(0px, -100%);
  transform: translate(0px, -100%);
  border-radius: 10px; }

.popup__close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  color: #dddddd;
  text-decoration: none; }

.popup__title {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 25px; }

.popup__image img {
  max-width: 100%;
  vertical-align: top;
  max-height: 650px; }

/* Popup styles ends*/
.popup__wrapper {
  background: #ddd;
  padding: 30px;
  border-radius: 30px; }
  @media screen and (max-width: 500px) {
    .popup__wrapper {
      border-radius: 10px; } }

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