@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Playfair Display", seri;
}

input, button, textarea {
  font-family: "Playfair Display", seri;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/
.parallax {
  position: relative;
  overflow: hidden;
  z-index: 20;
}
.parallax img {
  display: block;
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  z-index: -10;
}

body {
  display: grid;
  grid-template: 1fr auto/1fr;
}
body * {
  transition: all 0.3s ease 0.1s;
}

._none {
  display: none;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.container._narrow {
  max-width: 1000px;
}

.header {
  background-color: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 14px;
  cursor: pointer;
  height: 50px;
  color: #8f8f8f;
}
@media screen and (max-width: 700px) {
  .header {
    height: 120px;
    display: none;
  }
}
.header__flex {
  display: flex;
  width: calc(100vw - 30px);
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  .header__flex {
    flex-wrap: wrap;
  }
}
.header__left {
  display: flex;
}
@media screen and (max-width: 700px) {
  .header__left {
    flex-wrap: wrap;
  }
  .header__left > * {
    margin: 5px;
  }
}
.header__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__icon {
  height: 17px;
  width: 17px;
  margin-right: 5px;
}
.header__icon img {
  max-width: 100%;
}
.header__right {
  display: flex;
}
.header__messenger {
  margin-right: 10px;
  display: block;
  width: 17px;
  height: 17px;
}
.header__messenger:last-child {
  margin-right: 0;
}
.header__messenger:first-child {
  background: url("../img/icons/icons.svg#whatsapp-128-svgrepo-com") no-repeat center center;
}
.header__messenger:last-child {
  background: url("../img/icons/icons.svg#telegram-svgrepo-com") no-repeat center center;
  width: 19px;
  height: 19px;
}

.navbar-brand {
  width: 70px;
  height: 70px;
  background: url("../img/Logo-urist1.png") no-repeat center center;
  background-size: cover;
}

@media screen and (min-width: 990px) {
  .navbar-collapse {
    flex-grow: 0;
  }
}
.navbar {
  background-color: #222222 !important;
}
.navbar .navbar-toggler {
  background-color: #b78b4a;
}
.navbar li a {
  color: #b78b4a;
}
.navbar li a:hover {
  color: #8f8f8f;
}
@media screen and (min-width: 990px) {
  .navbar li {
    background-color: #b78b4a; /* Green */
    border: none;
    margin-right: 10px;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
  }
  .navbar li:hover {
    opacity: 0.7;
  }
  .navbar li a {
    color: white;
  }
  .navbar li a:hover {
    color: white;
  }
}

.main {
  background: url("../img/diploma.jpg") no-repeat center center;
  box-shadow: inset 0 0 0 1000px rgba(51, 51, 51, 0.7);
  background-size: cover;
  height: calc(100vh - 120px);
  width: 100%;
}
@media screen and (max-width: 700px) {
  .main {
    height: calc(100vh - 70px);
  }
}
.main__text {
  color: white;
  font-size: 20px;
}
.main__container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main__flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main__flex > * {
  margin-bottom: 20px;
}
.main__flex > *:last-child {
  margin-bottom: 0;
}
.main__title {
  font-size: 41px;
  color: white;
  text-align: center;
  max-width: 1000px;
}
@media screen and (max-width: 700px) {
  .main__title {
    font-size: 34px;
  }
}
.main__line {
  width: 200px;
  height: 2px;
  background-color: #b78b4a;
}
.main__button * {
  background-color: #b78b4a;
  max-width: 200px;
}

.uslugi__cards {
  width: 100%;
}

.cards__flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.section {
  padding: 100px 0;
}
@media screen and (max-width: 770px) {
  .section {
    padding: 50px 0;
  }
}
@media screen and (max-width: 470px) {
  .section {
    padding: 20px 0;
  }
}

.top {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
.top > * {
  margin-bottom: 30px;
}
.top > *:last-child {
  margin-bottom: 0;
}
.top__uptitle {
  font-weight: bold;
  font-size: 16px;
  color: #b78b4a;
}
.top__line {
  width: 200px;
  height: 2px;
  background-color: #b78b4a;
}
.top__title {
  font-size: 50px;
  color: black;
}
.top__subtitle {
  font-size: 15px;
  color: #666666;
  max-width: 600px;
  line-height: 1.5rem;
}

.card {
  border-width: 0;
  margin: 15px 0;
}
.card__number {
  font-size: 50px;
  color: #b78b4a;
}
.card__title {
  font-size: 28px;
}
.card__line {
  width: 200px;
  height: 2px;
  background-color: black;
}
.card__text {
  font-size: 15px;
  color: #666666;
  line-height: 1.5rem;
}
.card__text span {
  font-weight: bold;
}
.card__backtitle {
  font-size: 25px;
  margin-bottom: 20px;
  text-align: center;
}
.card__backtext {
  font-size: 15px;
  text-align: center;
}

.card__wrapper {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s ease-in-out;
  box-shadow: 0px 3px 14px -2px rgba(0, 0, 0, 0.75);
  width: 400px;
  height: 300px;
}
@media screen and (max-width: 700px) {
  .card__wrapper {
    width: 300px;
  }
}

.card:hover .card__wrapper {
  transform: rotateY(180deg);
}

.card__front,
.card__back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.card__front {
  justify-content: space-between;
  z-index: 1;
  backface-visibility: hidden;
}

.card__back {
  justify-content: center;
  background: #b78b4a;
  color: white;
  transform: rotateY(180deg);
  z-index: 2;
  backface-visibility: hidden;
}

.muzhik {
  width: 100%;
  background-color: #f5f5f5;
}
.muzhik__flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.muzhik__flex > * {
  width: calc(50% - 20px);
}
@media screen and (max-width: 670px) {
  .muzhik__flex > * {
    width: 100%;
  }
}
.muzhik__top {
  margin-right: 20px;
}
@media screen and (max-width: 770px) {
  .muzhik__foto {
    width: 320px;
  }
}
.muzhik__foto img {
  max-width: 100%;
}

.top__rospis {
  width: 163px;
  height: 90px;
}
.top__rospis img {
  max-width: 100%;
}
.top__title {
  font-size: 50px;
}
@media screen and (max-width: 770px) {
  .top__title {
    font-size: 34px;
  }
}
.opit {
  background: url("../img/diploma.jpg") no-repeat center center;
  box-shadow: inset 0 0 0 1000px rgba(51, 51, 51, 0.7);
  background-size: cover;
  color: white;
}
.opit__flex {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.opit__flex > * {
  margin-bottom: 45px;
}
.opit__flex > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 700px) {
  .opit__flex > * {
    margin-bottom: 25px;
  }
  .opit__flex > *:last-child {
    margin-bottom: 0;
  }
}
.opit__title {
  border-left: 3px solid #b78b4a;
  padding-left: 20px;
  font-size: 50px;
  min-width: 300px;
  line-height: 3.5rem;
}
@media screen and (max-width: 700px) {
  .opit__title {
    font-size: 34px;
    line-height: 2rem;
    max-width: 200px;
  }
}
.opit__text {
  font-size: 15px;
  line-height: 1.5rem;
}
.opit__row {
  display: flex;
}
.opit__row > * {
  margin-right: 25px;
}
.opit__row > *:last-child {
  margin-right: 0;
}
@media screen and (max-width: 700px) {
  .opit__row > * {
    margin-right: 0;
  }
  .opit__row > *:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 700px) {
  .opit__row {
    flex-direction: column;
    align-items: center;
  }
  .opit__row > * {
    margin-bottom: 25px;
  }
  .opit__row > *:last-child {
    margin-bottom: 0;
  }
}
.opit__card {
  background-color: rgba(51, 51, 51, 0.9);
  border-radius: 5px;
  width: 200px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 700px) {
  .opit__card {
    width: 100%;
  }
}
.opit__digit {
  font-size: 55px;
  margin-bottom: 35px;
  font-weight: bold;
  color: #b78b4a;
  flex-wrap: wrap;
}
.get {
  width: 100%;
}
.get__flex {
  width: 100%;
  display: flex;
}
@media screen and (max-width: 1176px) {
  .get__flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.get__combine {
  padding-left: 100px;
}
@media screen and (max-width: 700px) {
  .get__combine {
    padding-left: 0;
  }
}
@media screen and (max-width: 1176px) {
  .get__top {
    max-width: 100%;
  }
}
.get__items .col-md-4 {
  width: 50px;
  height: 50px;
}
.get__items .col-md-8 {
  width: 100%;
}
.get__items .row {
  min-width: 400px;
  flex-wrap: nowrap !important;
}
@media screen and (max-width: 700px) {
  .get__items .row {
    min-width: 0;
    width: 300px;
    align-items: center;
  }
}
.get__items span {
  font-weight: bold;
}

.get small {
  align-self: center;
}

.vremia {
  max-width: 450px;
  min-width: 340px;
  max-height: 578px;
  color: white;
  background-color: #b78b4a;
  padding: 10px;
  margin-top: -180px;
}
@media screen and (max-width: 1176px) {
  .vremia {
    margin-top: 20px;
  }
}
.vremia__title {
  height: 120px;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vremia__item {
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  border-bottom: 1px solid white;
}
.vremia__item:hover {
  opacity: 0.7;
  cursor: pointer;
}
.rabota .top {
  justify-self: center;
}
.rabota .top__line {
  margin: 0 auto;
}

.etapi {
  position: relative;
}
.etapi__grid {
  display: grid;
  grid-template: repeat(2, 1fr)/repeat(2, 1fr);
  gap: 50px;
}
@media screen and (max-width: 770px) {
  .etapi__grid {
    grid-template: repeat(auto-fit, minmax(0, 1fr))/1fr;
    padding-left: 50px;
  }
  .etapi__grid .etapi__etap_pusto {
    display: none;
  }
}
.etapi__etap {
  padding-left: 10px;
}
.etapi__title {
  font-size: 27px;
  margin-bottom: 10px;
}
.etapi__telo {
  color: #666666;
  line-height: 1.5rem;
}
.etapi__molotok {
  width: 50%;
  height: 300px;
  margin-top: -80px;
}
@media screen and (max-width: 770px) {
  .etapi__molotok {
    margin-top: 20px;
    height: 10px;
  }
}
.etapi__molotok img {
  max-width: 100%;
}

.kolonka {
  position: absolute;
  display: flex;
  align-items: center;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  left: 50%; /* position the left edge of the element at the middle of the parent */
  transform: translateX(-50%);
  top: 0;
}
@media screen and (max-width: 770px) {
  .kolonka {
    left: 0;
    transform: translateX(0);
  }
}
.kolonka__element {
  width: 42px;
  height: 42px;
  border: 2px solid #b78b4a;
  border-radius: 50%;
  padding: 7px;
}
.kolonka__element img {
  max-width: 100%;
}
.kolonka__filler {
  height: 100%;
  width: 3px;
  background-color: #b78b4a;
}

.govorat__flex {
  display: grid;
  grid-template: 1fr/repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 870px) {
  .govorat__flex {
    grid-template: repeat(2, 1fr)/1fr;
    gap: 10px;
  }
}
.govorat__left {
  display: grid;
  grid-template: repeat(3, auto)/1fr;
  gap: 20px;
  align-content: center;
}
@media screen and (max-width: 600px) {
  .govorat__left {
    gap: 50px;
  }
}
.govorat__img {
  width: 80px;
  height: 80px;
}
.govorat__img img {
  max-width: 100%;
}
.govorat__title {
  font-size: 45px;
}
@media screen and (max-width: 770px) {
  .govorat__title {
    font-size: 34px;
  }
}
.govorat__text {
  color: #666666;
  line-height: 1.5rem;
}

.svoj {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 45px 30px;
  margin-bottom: 20px;
  background-color: #b78b4a;
  min-height: 300px;
  color: white;
  border-radius: 10px;
}
.svoj__text {
  font-size: 15px;
  margin-bottom: 65px;
  font-style: italic;
  line-height: 1.5rem;
}
.svoj__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.svoj__img {
  width: 65px;
  height: 65px;
  margin-bottom: 10px;
  border-radius: 50%;
  overflow: hidden;
}
.svoj__img img {
  max-width: 100%;
}
.svoj__name {
  font-size: 18px;
}

.kartinki {
  background-color: black;
  padding: 20px 0;
}
.kartinki__row {
  display: grid;
  grid-template: 1fr/repeat(6, auto);
}
@media screen and (max-width: 770px) {
  .kartinki__row {
    grid-template: repeat(3, auto)/repeat(3, auto);
    justify-content: center;
    gap: 20px;
  }
}
.kartinki__kartinka {
  width: 74px;
  height: 74px;
}
@media screen and (max-width: 770px) {
  .kartinki__kartinka {
    width: 50px;
    height: 50px;
  }
}
.kartinki__kartinka img {
  max-width: 100%;
}

.konsultacija {
  background: url("../img/p31.jpg") no-repeat center center;
  box-shadow: inset 0 0 0 1000px rgba(51, 51, 51, 0.7);
  background-size: cover;
  color: white;
  text-align: center;
}
.konsultacija__contact {
  display: flex;
}
.konsultacija__icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  padding-top: 3px;
}
.konsultacija__icon img {
  max-width: 100%;
}
.konsultacija__text {
  font-size: 20px;
}
.konsultacija .top {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.konsultacija .top__title {
  color: white;
}
.konsultacija .top__subtitle {
  color: white;
}

.footer {
  background: #222222;
  color: #8f8f8f;
}
.footer .links ul {
  list-style-type: none;
}
.footer .links li {
  margin-bottom: 15px;
}
.footer .links li:last-child {
  margin-bottom: 0;
}
.footer .links li a {
  color: #8f8f8f;
  transition: color 0.2s;
}
.footer .links li a:hover {
  text-decoration: none;
  color: #b78b4a;
}
.footer .about-company i {
  font-size: 25px;
}
.footer .about-company a {
  color: white;
  transition: color 0.2s;
}
.footer .about-company a:hover {
  color: #4180cb;
}
.footer .location i {
  font-size: 18px;
}
.footer .copyright p {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer h4 {
  font-size: 22px;
  border-bottom: 1px solid #b78b4a;
  padding-bottom: 15px;
  width: 120px;
  margin: 15px 0;
}
.footer .header__contact {
  margin-bottom: 10px;
  justify-content: start;
}
.footer .header__contact:last-child {
  margin-bottom: 0;
}
.footer .header__messenger_wa {
  margin-right: 5px;
}
@media screen and (max-width: 700px) {
  .footer .header__messenger_wa {
    margin-right: 15px;
  }
}

.header__left_footer {
  flex-direction: column;
  max-width: 300px;
  text-align-last: left;
}

.form {
  background-color: #15172b;
  border-radius: 20px;
  box-sizing: border-box;
  height: 500px;
  padding: 20px;
  width: 320px;
  position: fixed;
  top: 0;
  right: -350px;
  z-index: 100;
  height: 100vh;
}
.form._active {
  right: 0;
}
.form__close {
  font-size: 18px;
  color: #b78b4a;
  position: absolute;
  top: 10;
  right: 20px;
  cursor: pointer;
}

.title {
  color: #eee;
  font-family: sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin-top: 30px;
}

.subtitle {
  color: #eee;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

.input-container {
  height: 50px;
  position: relative;
  width: 100%;
}

.ic1 {
  margin-top: 40px;
}

.ic2 {
  margin-top: 30px;
}

.input {
  background-color: #303245;
  border-radius: 12px;
  border: 0;
  box-sizing: border-box;
  color: #eee;
  font-size: 18px;
  height: 100%;
  outline: 0;
  padding: 4px 20px 0;
  width: 100%;
}

.submit {
  background-color: #b78b4a;
  border-radius: 12px;
  border: 0;
  box-sizing: border-box;
  color: #eee;
  cursor: pointer;
  font-size: 18px;
  height: 50px;
  margin-top: 38px;
  text-align: center;
  width: 100%;
}
.submit:hover {
  opacity: 0.7;
}

.submit:active {
  background-color: rgba(51, 51, 51, 0.9);
}

label {
  color: white;
  margin-bottom: 10px;
}

/* ===== Buttons Css ===== */
.contact-form .single-form .input-form .primary-btn {
  background: #b78b4a;
  color: var(--white);
  box-shadow: var(--shadow-2);
}

.contact-form .single-form .input-form .active.primary-btn,
.contact-form .single-form .input-form .primary-btn:hover,
.contact-form .single-form .input-form .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}

.contact-form .single-form .input-form .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*===========================
    contact-01 css 
===========================*/
.contact-area {
  padding-top: 50px;
  padding-bottom: 100px;
}

.contact-area .mt-15 {
  margin-top: 15px;
}

.contact-area .section-title .title {
  font-size: 28px;
  font-weight: 600;
  line-height: 55px;
}

@media (max-width: 767px) {
  .contact-area .section-title .title {
    font-size: 24px;
    line-height: 35px;
  }
}
.contact-form .single-form label {
  font-size: 12px;
  color: var(--dark-2);
  line-height: 18px;
  margin-left: 44px;
}

.contact-form .single-form .input-form {
  position: relative;
}

.contact-form .single-form .input-form i {
  font-size: 24px;
  position: absolute;
  top: 10px;
  left: 10px;
  color: var(--dark-3);
}

.contact-form .single-form .input-form textarea,
.contact-form .single-form .input-form input {
  width: 100%;
  height: 44px;
  padding-left: 45px;
  padding-right: 30px;
  color: var(--dark-3);
  font-size: 16px;
  border: 0;
  border-bottom: 1px solid var(--gray-4);
  font-weight: 500;
}

.contact-form .single-form .input-form textarea::placeholder,
.contact-form .single-form .input-form input::placeholder {
  opacity: 1;
  color: var(--dark-3);
}

.contact-form .single-form .input-form textarea {
  padding-top: 10px;
}

.form-input .help-block {
  margin-top: 2px;
}

.form-input .help-block .list-unstyled li {
  font-size: 12px;
  line-height: 16px;
  color: var(--error);
}

.form-input label {
  font-size: 12px;
  line-height: 18px;
  color: var(--dark-3);
  margin-bottom: 8px;
  display: inline-block;
}

.form-input .input-items {
  position: relative;
}

.form-input .input-items input,
.form-input .input-items textarea {
  width: 100%;
  height: 44px;
  border: 2px solid;
  padding-left: 44px;
  padding-right: 12px;
  position: relative;
  font-size: 16px;
}

.form-input .input-items textarea {
  padding-top: 8px;
  height: 130px;
  resize: none;
}

.form-input .input-items i {
  position: absolute;
  top: 11px;
  left: 13px;
  font-size: 20px;
  z-index: 9;
}

.form-input .input-items.default input,
.form-input .input-items.default textarea {
  border-color: var(--gray-4);
  color: var(--dark-3);
}

.form-input .input-items.default input:focus,
.form-input .input-items.default textarea:focus {
  border-color: var(--primary);
}

.form-input .input-items.default input::placeholder,
.form-input .input-items.default textarea::placeholder {
  color: var(--dark-3);
  opacity: 1;
}

.form-input .input-items.default i {
  color: var(--dark-3);
}

.form-input .input-items.active input,
.form-input .input-items.active textarea {
  border-color: var(--primary-dark);
  color: var(--black);
}

.form-input .input-items.active input::placeholder,
.form-input .input-items.active textarea::placeholder {
  color: var(--black);
  opacity: 1;
}

.form-input .input-items.active i {
  color: var(--primary-dark);
}

.form-input .input-items.error input,
.form-input .input-items.error textarea {
  border-color: var(--error);
  color: var(--error);
}

.form-input .input-items.error input::placeholder,
.form-input .input-items.error textarea::placeholder {
  color: var(--error);
  opacity: 1;
}

.form-input .input-items.error i {
  color: var(--error);
}

.form-input .input-items.success input,
.form-input .input-items.success textarea {
  border-color: var(--success);
  color: var(--success);
}

.form-input .input-items.success input::placeholder,
.form-input .input-items.success textarea::placeholder {
  color: var(--success);
  opacity: 1;
}

.form-input .input-items.success i {
  color: var(--success);
}

.form-input .input-items.disabled input,
.form-input .input-items.disabled textarea {
  border-color: var(--dark-2);
  color: var(--dark-3);
  background: none;
}

.form-input .input-items.disabled input::placeholder,
.form-input .input-items.disabled textarea::placeholder {
  color: var(--dark-3);
  opacity: 1;
}

.form-input .input-items.disabled i {
  color: var(--dark-3);
}

.form-style-four .form-input label {
  padding-left: 44px;
  margin-bottom: 0;
}

.form-style-four .form-input .input-items input,
.form-style-four .form-input .input-items textarea {
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.contact-info ul li .single-info {
  position: relative;
  margin-top: 19px;
}

.contact-info ul li .single-info .info-icon {
  position: absolute;
  top: 0;
  left: 0;
}

.contact-info ul li .single-info .info-icon i {
  color: var(--dark-3);
  font-size: 18px;
  line-height: 24px;
}

.contact-info ul li .single-info .info-content {
  padding-left: 30px;
}

.contact-info ul li .single-info .info-content .text {
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-3);
  font-weight: 500;
}

.contact-info .social li {
  display: inline-block;
  margin-right: 12px;
}

.contact-info .social li a {
  font-size: 20px;
  height: 40px;
  width: 40px;
  line-height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.096);
  text-align: center;
  border-radius: 5px;
  color: var(--dark-3);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.contact-info .social li a:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: transparent;
}

.contact-area h3 {
  color: #b78b4a;
}

.contact-info .header__contact {
  justify-content: start;
  margin-bottom: 7px;
}

.cont button {
  color: white !important;
}
.cont button:hover {
  background-color: rgba(51, 51, 51, 0.9) !important;
  opacity: 0.7 !important;
}
.cont .social li a {
  border-width: 0;
}

.header__messenger_wa {
  display: block;
  background: url("../img/icons/icons.svg#whatsapp-whats-app-svgrepo-com") no-repeat center center;
  width: 19px;
  height: 19px;
}

.header__messenger_tg {
  background: url("../img/icons/icons.svg#telegram-svgrepo-com-db") no-repeat center center;
  width: 19px;
  height: 19px;
  display: block;
}

.politika {
  background-color: rgba(51, 51, 51, 0.9);
  color: #8f8f8f;
}
.politika h1 {
  font-size: 30px;
}
.politika__text {
  text-align: justify;
  padding: 20px;
  font-size: 18px;
}

#btn-back-to-top,
#btn-phone {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: none;
  font-size: 20px;
  background-color: #b78b4a;
  color: white;
  background: #b78b4a url("../img/arrow-up-svgrepo-com.png") no-repeat center center/18px;
}

#btn-phone {
  bottom: 80px;
  width: 40px;
  height: 40px;
  display: block;
  background: #b78b4a url("../img/phone-svgrepo-com.png") no-repeat center center/15px;
}

.office {
  background: url("../img/1а1а офис улица.jpeg") no-repeat center center;
  height: 500px;
  background-size: cover;
}
@media screen and (max-width: 770px) {
  .office {
    height: 70vw;
  }
}

.newfooter__flex {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-top: 1px solid #b78b4a;
}
.newfooter__flex a {
  color: #666666;
  margin-right: 15px;
}