@charset "UTF-8";
*,
*::after,
*::before {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

li {
  list-style: none;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

body {
  font-family: "Roboto Condensed", serif;
  color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background-color: transparent;
  border: none;
}

p {
  padding: 0;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 1100px) {
  .container {
    padding: 0 15px;
  }
}

.section {
  padding-top: 100px;
  padding-bottom: 60px;
}
@media (max-width: 769px) {
  .section {
    padding-top: 60px;
  }
}

.title {
  font-size: 40px;
  color: #333333;
  margin-bottom: 40px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 769px) {
  .title {
    font-size: 32px;
  }
}
@media (max-width: 461px) {
  .title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

.supheader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 7px 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.supheader__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.66);
  font-family: "Open Sans", sans-serif;
}
.supheader-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.supheader-left__item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.supheader-left__item-text {
  font-size: 13px;
}
.supheader-left__item-text--mail:hover {
  cursor: pointer;
  color: #ffffff;
}
.supheader-right {
  display: flex;
  align-items: center;
}
.supheader-right__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.5s linear;
}
.supheader-right__item--inst::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #f58529, #f77737, #d93f3f, #d0008b, #8134af);
  transition: bottom 0.5s ease;
}
.supheader-right__item--inst:hover::before {
  bottom: 0;
}
.supheader-right__item--inst:hover svg {
  position: relative;
  z-index: 2;
}
.supheader-right__item--inst:hover svg path {
  fill: #ffffff;
}
.supheader-right__item--vk::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4c75a3; /* Цвет фона */
  transition: bottom 0.5s ease; /* Плавная анимация */
}
.supheader-right__item--vk:hover::before {
  bottom: 0;
}
.supheader-right__item--vk:hover svg {
  fill: #ffffff;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1100px) {
  .supheader {
    background-color: #f5f5f5;
  }
  .supheader-left__item-text {
    color: #999;
  }
}
@media screen and (max-width: 600px) {
  .supheader {
    display: none;
  }
}
.header {
  position: fixed;
  top: 39px;
  left: 0;
  right: 0;
  transition: all 0.2s linear;
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
  z-index: 1000;
}
.header.open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
  z-index: 1000;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.nav {
  display: flex;
}

.nav__list {
  display: flex;
}

.nav__list-item {
  font-size: 16px;
  color: #ffffff;
  padding: 0 20px;
}
.nav__list-item.active .nav__list-link {
  color: #ffa300;
}

.nav__list-link {
  font-size: 16px;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
}

.header__logo-img--mobile {
  display: none;
}

.header.sticky .nav__list-item.active .nav__list-link, .header.open .nav__list-item.active .nav__list-link {
  color: #ffa300;
}
.header.sticky .nav__list-link, .header.open .nav__list-link {
  color: #666666;
}

.burger-checkbox {
  position: absolute;
  visibility: hidden;
}

.burger {
  cursor: pointer;
  display: none;
  position: relative;
  border: none;
  background: transparent;
  width: 40px;
  height: 26px;
  margin: 30px auto;
}

.burger::before,
.burger::after {
  content: "";
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background: #666;
}

.burger::before {
  top: 0;
  box-shadow: 0 11px 0 #666;
  transition: box-shadow 0.3s 0.15s, top 0.3s 0.15s, transform 0.3s;
}

.burger::after {
  bottom: 0;
  transition: bottom 0.3s 0.15s, transform 0.3s;
}

.burger-checkbox:checked + .burger::before {
  top: 11px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.15s, top 0.3s, transform 0.3s 0.15s;
}

.burger-checkbox:checked + .burger::after {
  bottom: 11px;
  transform: rotate(-45deg);
  transition: bottom 0.3s, transform 0.3s 0.15s;
}

@media screen and (max-width: 1100px) {
  .header {
    background-color: #fff;
  }
  .header__inner {
    height: 80px;
  }
  .header__logo-img {
    display: none;
    width: 109px;
  }
  .header__logo-img--mobile {
    display: block;
    width: 109px;
  }
  .burger {
    display: block;
    right: 15px;
  }
  .nav {
    position: absolute;
    opacity: 0;
    top: 80px;
    left: 0;
    background-color: #ffffff;
    width: 100%;
    transition: all 0.2s linear;
    z-index: 1000;
  }
  .nav.active {
    opacity: 1;
    z-index: 1000;
  }
  .nav__list {
    flex-grow: 1;
    flex-direction: column;
  }
  .nav__list-item {
    padding: 12px;
    width: 100%;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06) inset;
  }
  .nav__list-link {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .header {
    top: 0;
  }
  .header.sticky {
    top: 0;
  }
  .header__inner {
    height: 50px;
  }
  .nav {
    top: 50px;
  }
  .header__logo-img {
    display: none;
    width: 74px;
  }
  .header__logo-img--mobile {
    display: block;
    width: 74px;
  }
}
.banner {
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  padding-top: 139px;
}
.banner__inner {
  display: flex;
  padding: 80px 0;
  justify-content: space-between;
  gap: 30px;
}
.banner-left {
  width: 100%;
  max-width: 470px;
}
.banner__title {
  font-size: 40px;
  color: #eded00;
  text-align: left;
  font-family: "Roboto Condensed", serif;
  font-weight: 400;
  margin-bottom: 22px;
  font-style: normal;
}
.banner__text {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 50px;
  font-family: "Open Sans", sans-serif;
  line-height: 25px;
}
.banner__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 63px;
  font-size: 22px;
  line-height: 2.8;
  gap: 10px;
  color: #ffa300;
  border-radius: 5px;
  border: 2px solid #ffa300;
  width: 100%;
  max-width: 310px;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 50px;
  background-color: transparent;
  transition: all 0.3s linear;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.banner__phone::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffa300; /* Цвет фона */
  transition: bottom 0.3s ease; /* Плавная анимация */
}
.banner__phone:hover {
  color: #ffffff;
  position: relative;
  z-index: 2;
}
.banner__phone:hover::before {
  bottom: 0;
}
.banner__phone:hover svg {
  position: relative;
  z-index: 2;
}
.banner__phone:hover svg path {
  fill: #ffffff;
}
.banner__guarantee {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  color: #ffffff;
}
.banner-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-right: 25px;
  width: 100%;
  max-width: 547px;
}
.banner-right__item {
  display: flex;
  align-items: center;
  gap: 25px;
}
.banner-right__item-icon {
  flex-shrink: 0;
  height: 72px;
  max-width: 72px;
  flex-grow: 1;
  align-self: auto;
  width: 72px;
  border-radius: 50%;
  background-color: #eded00;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.banner-right__item-icon::after {
  content: "";
  position: absolute;
  background-image: url("../../img/banner/vertical-line.png");
  height: 72px;
  width: 1px;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-right__item-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  max-width: 400px;
}
.banner-right__item-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  font-family: "Roboto Condensed", serif;
}
.banner-right__item-text {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  line-height: 18px;
}

@media screen and (max-width: 769px) {
  .banner {
    height: auto;
  }
  .banner__inner {
    flex-direction: column;
    padding: 50px 22px;
    gap: 30px;
  }
  .banner-left {
    width: 100%;
    max-width: 100%;
  }
  .banner-right {
    max-width: 100%;
  }
  .banner-right__item-content {
    max-width: 100%;
  }
  .banner__title {
    font-size: 27px;
  }
}
@media screen and (max-width: 600px) {
  .banner {
    padding-top: 30px;
  }
}
@media screen and (max-width: 461px) {
  .banner__inner {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  .banner-right__item-title {
    font-size: 18px;
  }
  .banner-right__item-text {
    font-size: 12px;
  }
}
.process {
  padding-top: 60px;
}
.process__inner {
  display: flex;
  flex-direction: column;
}
.process__title {
  text-align: center;
  font-family: "Roboto Condensed", serif;
  margin-bottom: 27px;
  font-size: 34px;
  color: #333333;
  font-weight: 400;
}
.process__subtitle {
  color: #333333;
  font-weight: 400;
  font-family: "Roboto Condensed", serif;
  font-size: 20px;
  margin-bottom: 22px;
  line-height: 28px;
  text-align: center;
}
.process__items {
  display: flex;
  justify-content: center;
}
.process__item {
  width: 100%;
  max-width: 394px;
  position: relative;
  font-size: 15px;
  line-height: 25px;
  color: #666666;
  font-family: "Open Sans", sans-serif;
}
.process__item-img {
  position: absolute;
}
.process__item-text {
  padding: 24px;
  position: relative;
  z-index: 12;
}

@media screen and (max-width: 769px) {
  .process {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .process__title {
    font-size: 26px;
  }
  .process__items {
    flex-direction: column;
    gap: 30px;
  }
  .process__item {
    max-width: 100%;
  }
  .process__item:nth-child(3) {
    margin-top: -42px;
  }
}
.advantages {
  padding-top: 60px;
}
.advantages__inner {
  display: flex;
  flex-direction: column;
}
.advantages__title {
  text-align: center;
  font-family: "Roboto Condensed", serif;
  margin-bottom: 27px;
  font-size: 34px;
  color: #333333;
  font-weight: 400;
}
.advantages__items {
  display: flex;
  justify-content: center;
}
.advantages__item {
  width: 100%;
  max-width: 394px;
  position: relative;
  font-size: 24px;
  line-height: 25px;
  color: #666666;
  font-family: "Roboto Condensed", serif;
}
.advantages__item-img {
  position: absolute;
}
.advantages__item-text {
  padding: 35px 50px;
  position: relative;
  z-index: 12;
}

@media screen and (max-width: 769px) {
  .advantages {
    padding: 30px 0;
  }
  .advantages__title {
    font-size: 26px;
  }
  .advantages__items {
    flex-direction: column;
    gap: 30px;
  }
  .advantages__item {
    max-width: 100%;
  }
}
.services {
  padding: 93px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.services__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services__title {
  font-size: 34px;
  line-height: 48px;
  color: #ffffff;
  font-family: "Roboto Condensed", serif;
  margin-bottom: 27px;
  font-weight: 400;
}
.services__subtitle {
  text-align: center;
  margin-bottom: 44px;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 400;
}
.services__items {
  display: flex;
  gap: 45px;
  margin-bottom: 55px;
}
.services__item {
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.services__item-title {
  text-align: center;
  font-size: 34px;
  line-height: 47px;
  color: #eeee22;
  font-family: "Roboto Condensed", serif;
  font-weight: 400;
}
.services__item-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.services-item__list-item {
  position: relative;
  font-size: 15px;
  line-height: 24px;
  padding-left: 23px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
.services-item__list-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../../img/services/list-marker.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  width: 18px;
  height: 18px;
}
.services__info-title {
  font-size: 24px;
  line-height: 40px;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 400;
  font-family: "Roboto Condensed", serif;
}
.services__info-phone {
  color: #ffa300;
  font-size: 24px;
  line-height: 40px;
  font-family: "Roboto Condensed", serif;
  margin-bottom: 63px;
}
.services-decor {
  position: relative;
  text-align: center;
  width: 100%;
  margin-bottom: 38px;
  max-width: 744px;
}
.services-decor::after {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 350px;
  height: 1px;
  background-color: #ffffff;
  right: 0;
  top: 50%;
}
.services-decor::before {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 350px;
  height: 1px;
  background-color: #ffffff;
  left: 0;
  top: 0;
  top: 50%;
}
.services-pay {
  display: flex;
  flex-direction: column;
}
.services-pay__title {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 10px;
  color: #eeee22;
  font-family: "Roboto Condensed", serif;
  font-weight: 400;
}
.services-pay__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 73px;
}
.services-pay__list-item {
  position: relative;
  font-size: 15px;
  line-height: 24px;
  padding-left: 45px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
.services-pay__list-item::after {
  content: "";
  position: absolute;
  left: 30px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #ffffff;
  top: 50%;
  transform: translateY(-50%);
}
.services-doc {
  display: inline-block;
  border: 2px solid #ffa300;
  border-radius: 5px;
  text-align: center;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  padding: 11px 26px;
  width: 100%;
  color: #ffa300;
  max-width: 180px;
  margin: 0 auto;
  background-color: transparent;
  transition: all 0.3s linear;
  position: relative;
  z-index: 3;
  overflow: hidden;
  cursor: pointer;
}
.services-doc::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffa300; /* Цвет фона */
  transition: bottom 0.3s ease; /* Плавная анимация */
}
.services-doc:hover {
  color: #ffffff;
  position: relative;
  z-index: 2;
}
.services-doc:hover::before {
  bottom: 0;
}

@media screen and (max-width: 769px) {
  .services {
    padding: 50px 0;
  }
  .services__items {
    flex-direction: column;
  }
  .services__item-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 461px) {
  .parallax__items {
    gap: 20px;
  }
}
.partner {
  padding: 90px 0;
}
.partner__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.partner-img {
  width: 100%;
  max-width: 169px;
  object-fit: cover;
}

@media screen and (max-width: 769px) {
  .partner {
    padding: 50px 0;
  }
}
@media screen and (max-width: 461px) {
  .partner__inner {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.parallax-container {
  position: relative;
  height: 724px;
  overflow: hidden;
  width: 100%;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../img/paralax/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.2s ease-in-out;
  z-index: 1;
}

.parallax__title {
  font-size: 34px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 22px;
  font-family: "Roboto Condensed", serif;
}

.parallax__subtitle {
  font-size: 20px;
  margin-bottom: 45px;
  font-weight: 400;
  font-family: "Roboto Condensed", serif;
  color: #ffffff;
  line-height: 28px;
}
.parallax__subtitle span {
  text-transform: uppercase;
  color: #eded00;
  font-weight: 700;
}

.parallax__items {
  display: flex;
  justify-content: center;
}

.parallax__item {
  width: 100%;
  max-width: 350px;
}

.parallax__item-icon {
  margin-bottom: 22px;
}

.parallax__item-title {
  font-size: 28px;
  font-weight: 400;
  line-height: 40px;
  color: #ffffff;
  margin-bottom: 28px;
}

.parallax__item-text {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 25px;
  text-align: left;
}

@media screen and (max-width: 769px) {
  .parallax-container {
    height: auto;
  }
  .parallax__title {
    font-size: 26px;
  }
  .parallax__items {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .parallax__item {
    max-width: 100%;
    padding: 0 22px;
  }
  .parallax__item-title {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 461px) {
  .parallax__items {
    gap: 20px;
  }
}
.map {
  width: 100%;
  height: 400px;
}

.cta {
  padding: 60px 0;
}
.cta__inner {
  display: flex;
  gap: 45px;
}
.cta__form {
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
}
.cta__form-title {
  font-family: "Roboto Condensed", serif;
  font-size: 28px;
  margin-bottom: 25px;
  color: #333333;
  line-height: 40px;
}
.cta__form-input-wrapper {
  width: 100%;
  margin-bottom: 15px;
  position: relative;
}
.cta__form-input-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.cta__form-input {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #666666;
  padding-left: 42px;
  padding-top: 11px;
  padding-bottom: 11px;
  padding-right: 11px;
  border-radius: 5px;
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.08);
  background-color: #F5F5F5;
  border: 2px solid transparent;
  transition: all 0.3s linear;
  outline: #ffa300;
}
.cta__form-input:focus {
  border-color: #ffa300;
}
.cta__form-input:focus + .cta__form-input-icon svg path {
  fill: #ffa300 !important;
}
.cta__form-input::placeholder {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #666666;
}
.cta__form-textarea-wrapper {
  width: 100%;
  margin-bottom: 15px;
  position: relative;
}
.cta__form-textarea-icon {
  position: absolute;
  top: 11px;
  left: 10px;
}
.cta__form-textarea {
  width: 100%;
  resize: none;
  height: 120px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #666666;
  padding-left: 42px;
  padding-top: 11px;
  padding-bottom: 11px;
  padding-right: 11px;
  border-radius: 5px;
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.08);
  background-color: #F5F5F5;
  border: 2px solid transparent;
  transition: all 0.3s linear;
  outline: #ffa300;
}
.cta__form-textarea:focus {
  border-color: #ffa300;
}
.cta__form-textarea:focus + .cta__form-textarea-icon svg path {
  fill: #ffa300 !important;
}
.cta__form-textarea::placeholder {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #666666;
}
.cta__form-verify {
  color: #666666;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 25px;
  font-family: "Open Sans", sans-serif;
}
.cta__form-btn {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  line-height: 42px;
  width: 134px;
  background-color: #FAC000;
  color: #ffffff;
  border-radius: 5px;
  position: relative;
  z-index: 3;
  overflow: hidden;
  cursor: pointer;
}
.cta__form-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffa300; /* Цвет фона */
  transition: bottom 0.3s ease; /* Плавная анимация */
}
.cta__form-btn:hover {
  color: #ffffff;
  position: relative;
  z-index: 2;
}
.cta__form-btn:hover::before {
  bottom: 0;
}
.cta-contacts {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 350px;
}
.cta-contacts__title {
  font-family: "Roboto Condensed", serif;
  font-size: 28px;
  margin-bottom: 25px;
  color: #333333;
  line-height: 40px;
}
.cta-contacts__item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.cta-contacts__item-img {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffa300;
  height: 52px;
  width: 52px;
  border-radius: 50%;
}
.cta-contacts__item-text {
  color: #666666;
  font-size: 15px;
  line-height: 25px;
  font-family: "Open Sans", sans-serif;
  max-width: 274px;
}
.cta-contacts__item-text--mail {
  color: #ffa300;
}
.cta-social {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 350px;
}
.cta-social__title {
  font-family: "Roboto Condensed", serif;
  font-size: 28px;
  margin-bottom: 25px;
  color: #333333;
  line-height: 40px;
}
.cta-social__items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cta-social__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  background: #f5f5f5;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s linear;
}
.cta-social__item--inst::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #f58529, #f77737, #d93f3f, #d0008b, #8134af); /* Цвет фона */
  transition: bottom 0.5s ease; /* Плавная анимация */
}
.cta-social__item--inst:hover::before {
  bottom: 0;
}
.cta-social__item--inst:hover svg {
  position: relative;
  z-index: 2;
}
.cta-social__item--inst:hover svg path {
  fill: #ffffff;
}
.cta-social__item--vk::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4c75a3; /* Цвет фона */
  transition: bottom 0.5s ease; /* Плавная анимация */
}
.cta-social__item--vk:hover::before {
  bottom: 0;
}
.cta-social__item--vk:hover svg {
  fill: #ffffff;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 769px) {
  .cta {
    padding: 30px;
  }
  .cta__inner {
    flex-direction: column;
  }
  .cta__form {
    max-width: 100%;
  }
  .cta-contacts {
    max-width: 100%;
  }
  .cta-contacts__item-text {
    max-width: 100%;
  }
}
@media screen and (max-width: 461px) {
  .cta {
    padding: 15px;
  }
}
.footer {
  padding: 62px 0;
  background-color: #222222;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #666666;
  font-size: 15px;
  line-height: 25px;
  font-family: "Open Sans", sans-serif;
}
.footer__company {
  text-transform: uppercase;
}

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