@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&display=swap");

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

:focus {
  outline: 0;
}

ul {
  list-style-type: none;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
html {
  height: 100%;
}

body {
  font-family: var(--font-main);
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  color: var(--dark-color);
  -webkit-text-size-adjust: 100%;
  background: var(--bg-main);
  font-weight: 500;
}

.container {
  width: 100%;
  max-width: 100%;
  padding: 0 24px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-radius: 10px;
  font-size: 15px;
  color: #fff;
  background: var(--main-color);
  transition: 0.5s;
  color: #fff;
  padding: 0 32px;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
}
.btn:hover {
  background: var(--second-color);
}
.btn--alt {
  background: var(--second-color);
}
.btn--alt:hover {
  background: var(--main-color);
}
.btn--border {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn--border:hover {
  border-color: var(--main-color);
  background: var(--main-color);
}
.btn--dark {
  background: var(--dark-color);
}
.btn--dark:hover {
  background: var(--second-color);
}

.burger {
  position: relative;
  display: none;
  cursor: pointer;
  z-index: 30;
  width: 50px;
  height: 50px;
  background: var(--second-color);
  border-radius: 10px;
  transition: 0.5s;
  margin-left: 12px;
}
.burger.open {
  background: #fff;
}
.burger.open:before {
  background: var(--dark-color);
  transform: rotate(-45deg);
  top: 50%;
  left: 13px;
  width: 24px;
  height: 2px;
  border-radius: 4px;
  position: absolute;
  transition: 0.5s;
  transform-origin: center;
  transform: translateY(-50%) rotate(-225deg);
}
.burger.open:after {
  background: var(--dark-color);
  top: 50%;
  left: 13px;
  width: 24px;
  height: 2px;
  border-radius: 4px;
  position: absolute;
  transition: 0.5s;
  transform-origin: center;
  transform: translateY(-50%) rotate(225deg);
}
.burger.open span:before {
  opacity: 0;
}
.burger:before {
  content: "";
  position: absolute;
  top: calc(50% - 7px);
  left: 16px;
  width: 18px;
  height: 2px;
  background: rgb(23, 23, 23);
  border-radius: 2px;
  transition: 0.5s;
}
.burger:after {
  content: "";
  position: absolute;
  top: calc(50% + 5px);
  left: 16px;
  width: 18px;
  height: 2px;
  background: rgb(23, 23, 23);
  border-radius: 2px;
  transition: 0.5s;
}
.burger span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: rgb(23, 23, 23);
  transform: translateY(-50%);
}
@media (max-width: 960px) {
  .burger {
    display: block !important;
  }
}

main {
  padding-top: 84px;
}

.header {
  padding: 16px 0;
  transition: 0.5s;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff; /* или нужный цвет */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  width: 100%;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__right {
  display: flex;
}
.header .btn {
  position: relative;
  z-index: 30;
}
@media (max-width: 480px) {
  .header .btn {
    display: none;
  }
}

.logo {
  font-size: 30px;
  color: var(--dark-color);
  font-weight: 700;
  position: relative;
  z-index: 30;
}

@media (max-width: 960px) {
  .main-menu {
    width: 100vw;
    height: 100vh;
    background: var(--second-color);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 20;
    padding-top: 120px;
    padding: 120px 24px 24px 24px;
    transform: translateX(calc(100vw + 20px));
    transition: 0.5s;
  }
}
.main-menu.open {
  transform: translateX(0);
}
.main-menu ul {
  display: flex;
}
@media (max-width: 960px) {
  .main-menu ul {
    flex-direction: column;
  }
}
.main-menu ul li {
  margin: 0 3px;
}
@media (max-width: 960px) {
  .main-menu ul li {
    margin: 0 0 30px 0;
  }
}
.main-menu ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  white-space: nowrap;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--dark-color);
  padding: 0 12px;
  border-radius: 10px;
  transition: 0.5s;
  height: 50px;
}
@media (max-width: 1280px) {
  .main-menu ul li a {
    padding: 0 6px;
    font-size: 14px;
  }
}
@media (max-width: 960px) {
  .main-menu ul li a {
    font-size: 35px;
    color: #fff;
    font-weight: 600;
  }
}
.main-menu ul li a:hover {
  background: var(--second-color);
  color: #fff;
}

main {
  padding-bottom: 24px;
}

.welcome-block {
  height: calc(100vh - 106px);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 200px;
}
@media (max-width: 960px) {
  .welcome-block {
    height: auto;
    margin-bottom: 100px;
  }
}

.welcome {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 20px;
  height: 100%;
  width: calc(50% - 12px);
  padding: 30px;
}
@media (max-width: 960px) {
  .welcome {
    width: 100%;
    margin-bottom: 24px;
    padding: 20px;
  }
}
@media (max-width: 960px) {
  .welcome__top {
    margin-bottom: 120px;
  }
}
.welcome__numbers {
  display: block;
  margin-bottom: 6px;
  font-size: 42px;
  color: var(--main-color);
}
.welcome p {
  font-size: 15px;
  color: var(--dark-color);
  margin-bottom: 20px;
}
.welcome__content {
  max-width: 480px;
}
.welcome h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 960px) {
  .welcome h1 {
    font-size: 40px;
  }
}

.welcome-rating {
  display: flex;
  margin-bottom: 6px;
}
.welcome-rating li {
  margin-right: 6px;
}

.welcome-img {
  width: calc(50% - 12px);
  height: 100%;
}
@media (max-width: 960px) {
  .welcome-img {
    width: 100%;
  }
}
.welcome-img img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-item {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  height: calc(100vh - 106px);
  min-height: 600px;
}
.service-item__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.service-item__content {
  position: absolute;
  bottom: 0px;
  left: 0px;
  max-width: 600px;
  padding: 30px;
}
@media (max-width: 480px) {
  .service-item__content {
    padding: 20px;
  }
}
.service-item__content p {
  font-size: 15px;
  color: #fff;
  max-width: 400px;
  margin-bottom: 40px;
}
.service-item__btns {
  display: flex;
}
@media (max-width: 480px) {
  .service-item__btns {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.service-item__btns .btn {
  margin-right: 20px;
}
@media (max-width: 480px) {
  .service-item__btns .btn {
    width: 100%;
    margin-top: 20px;
    margin-right: 0;
  }
  .service-item__btns .btn:first-child {
    margin-top: 0;
  }
}

h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}
h2 span {
  color: var(--second-color);
}
h2.center {
  text-align: center;
}
h2.white {
  color: #fff;
}
@media (max-width: 960px) {
  h2 {
    font-size: 34px;
  }
}

h3 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}
h3 span {
  color: var(--second-color);
}
h3.white {
  color: #fff;
}
@media (max-width: 960px) {
  h3 {
    font-size: 28px;
  }
}

.services-block {
  margin-bottom: 200px;
}
@media (max-width: 960px) {
  .services-block {
    margin-bottom: 100px;
  }
}
.services-block__description {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.services-block__description .icon {
  margin-right: 20px;
}
.services-block__description .icon img {
  display: block;
  animation: rotate180 2s linear infinite;
}
.services-block h2 {
  max-width: 800px;
}

@keyframes rotate180 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}
.about-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 200px;
}
@media (max-width: 960px) {
  .about-block {
    margin-bottom: 100px;
  }
}
.about-block__left {
  width: calc(50% - 12px);
}
@media (max-width: 960px) {
  .about-block__left {
    width: 100%;
  }
}
.about-block__right {
  width: calc(50% - 12px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 960px) {
  .about-block__right {
    width: 100%;
  }
}
.about-block h3 {
  max-width: 600px;
}

.about-item {
  width: calc(50% - 30px);
  margin-bottom: 90px;
  font-size: 15px;
}
@media (max-width: 960px) {
  .about-item {
    width: calc(50% - 12px);
    margin-bottom: 40px;
  }
}
.about-item span {
  display: block;
  font-size: 70px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (max-width: 960px) {
  .about-item span {
    font-size: 50px;
  }
}
.about-item p {
  max-width: 300px;
}
.about-item:nth-last-child(-n+2) {
  margin-bottom: 0;
}

.about-main {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 200px;
}
@media (max-width: 960px) {
  .about-main {
    margin-bottom: 100px;
  }
}
.about-main__image {
  width: 50%;
}
@media (max-width: 960px) {
  .about-main__image {
    width: 100%;
  }
}
.about-main__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-main__body {
  width: 50%;
  padding: 30px;
  background: var(--second-color);
  display: flex;
  justify-content: space-between;
  min-height: calc(100vh - 200px);
  flex-direction: column;
}
@media (max-width: 960px) {
  .about-main__body {
    width: 100%;
    padding: 20px;
  }
}
.about-main-item {
  margin-bottom: 30px;
}
.about-main-item:last-child {
  margin-bottom: 0;
}
.about-main-item p {
  font-size: 15px;
  color: #fff;
  line-height: 120%;
  padding-left: 50px;
  max-width: 600px;
}
.about-main-item__title {
  display: flex;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #fff;
}
@media (max-width: 960px) {
  .about-main-item__title {
    font-size: 24px;
  }
}
.about-main-item__title .icon img {
  display: block;
  margin-right: 20px;
  position: relative;
  bottom: -3px;
}

.offers-block {
  margin-bottom: 200px;
}
@media (max-width: 960px) {
  .offers-block {
    margin-bottom: 100px;
  }
}
.offers-block p {
  font-size: 15px;
  line-height: 120%;
  margin-bottom: 40px;
  max-width: 500px;
}

.offer-item {
  display: flex;
  justify-content: space-between;
  min-height: 500px;
  margin-bottom: 24px;
}
@media (max-width: 960px) {
  .offer-item {
    flex-direction: column;
  }
}
.offer-item__content {
  width: calc(50% - 12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
}
@media (max-width: 960px) {
  .offer-item__content {
    width: 100%;
    order: 2;
    padding: 20px;
  }
}
.offer-item__description {
  display: flex;
  flex-wrap: wrap;
}
.offer-item__description span {
  display: inline-block;
  position: relative;
  margin-bottom: 12px;
  margin-right: 24px;
  text-transform: uppercase;
  font-size: 15px;
  padding-left: 20px;
}
.offer-item__description span:before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--main-color);
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 5px;
}
.offer-item__main p {
  font-size: 15px;
  line-height: 120%;
  margin-bottom: 40px;
  max-width: 500px;
}
.offer-item__image {
  width: calc(50% - 12px);
  overflow: hidden;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}
@media (max-width: 960px) {
  .offer-item__image {
    width: 100%;
    order: -2;
    margin-bottom: 24px;
  }
}
.offer-item__image img, .offer-item__image video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 350px;
}

.gallery-block {
  margin-bottom: 200px;
}
@media (max-width: 960px) {
  .gallery-block {
    margin-bottom: 100px;
  }
}
.gallery-block p {
  font-size: 15px;
  line-height: 120%;
  margin-bottom: 40px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.gallery {
  display: flex;
  justify-content: space-between;
  padding-top: 60px;
  flex-wrap: wrap;
}
.gallery a {
  width: calc(20% - 16px);
  display: block;
  margin-bottom: 24px;
}
@media (max-width: 960px) {
  .gallery a {
    width: calc(33.3333333333% - 16px);
  }
}
@media (max-width: 566px) {
  .gallery a {
    width: calc(50% - 6px);
    margin-bottom: 12px;
  }
}
.gallery a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media (max-width: 566px) {
  .gallery a img {
    border-radius: 10px;
  }
}

.faq-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 200px;
}
@media (max-width: 960px) {
  .faq-block {
    margin-bottom: 100px;
  }
}
.faq-block__left {
  width: calc(50% - 12px);
}
@media (max-width: 960px) {
  .faq-block__left {
    width: 100%;
    margin-bottom: 40px;
  }
}
.faq-block__right {
  width: calc(50% - 12px);
}
@media (max-width: 960px) {
  .faq-block__right {
    width: 100%;
  }
}

.question {
  max-width: 700px;
}
.question .accordion {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .question .accordion {
    margin-bottom: 18px;
  }
}
.question .accordion li {
  width: 100%;
  margin-bottom: 16px;
  background: #FFF;
  border-radius: 20px;
  padding: 30px;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .question .accordion li {
    padding: 20px;
  }
}
.question .accordion .opener {
  display: block;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-graphik);
  color: rgb(0, 0, 0);
  padding-right: 50px;
  transition: 0.5s;
  position: relative;
}
@media (max-width: 767px) {
  .question .accordion .opener {
    font-size: 16px;
  }
}
.question .accordion .opener span {
  position: absolute;
  right: 0px;
  top: -10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.5s;
  background: var(--main-color);
}
@media (max-width: 767px) {
  .question .accordion .opener span {
    top: calc(50% - 20px);
  }
}
.question .accordion .opener span:before {
  content: "";
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 10px;
  top: 19px;
  transition: 0.5s;
}
.question .accordion .opener span:after {
  content: "";
  width: 2px;
  height: 20px;
  background: #fff;
  position: absolute;
  left: 19px;
  top: 10px;
  transition: 0.5s;
}
.question .accordion .active {
  background: var(--second-color);
}
.question .accordion .active .opener span {
  transform: rotate(-45deg) scale(1.4);
  background: transparent;
}
@media (max-width: 767px) {
  .question .accordion .active .opener span {
    top: -10px;
    right: -10px;
  }
}
.question .accordion .active .opener .submenu li {
  border: none;
}
.question .submenu {
  overflow: hidden;
  display: none;
}
.question .submenu li {
  margin-bottom: 0;
  background: transparent;
  font-size: 15px;
  line-height: 120%;
  color: var(--dark-color);
  border: 0;
  padding: 12px 0 0 0;
}
.question .submenu li a:hover {
  text-decoration: none;
}

.reviews-block {
  margin-bottom: 200px;
}
@media (max-width: 960px) {
  .reviews-block {
    margin-bottom: 100px;
  }
}

.reviews {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  flex-wrap: wrap;
}

.review-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  width: calc(25% - 18px);
  min-height: 550px;
}
@media (max-width: 1280px) {
  .review-item {
    width: calc(50% - 12px);
    margin-bottom: 24px;
  }
}
@media (max-width: 566px) {
  .review-item {
    padding: 20px;
    width: 100%;
    margin-bottom: 24px;
    min-height: 350px;
  }
}
.review-item--bg {
  background: var(--second-color);
}
.review-item--bg p {
  color: #fff;
}
.review-item--bg .review-item__user {
  color: #fff;
}
.review-item__content {
  margin-bottom: 20px;
}
.review-item__content p {
  font-size: 24px;
}
@media (max-width: 566px) {
  .review-item__content p {
    font-size: 20px;
  }
}
.review-item__rating {
  display: flex;
  margin-bottom: 40px;
}
.review-item__rating span {
  margin-right: 5px;
}
.review-item__rating img {
  display: block;
}
.review-item__user {
  display: flex;
  align-items: center;
  font-size: 15px;
}
.review-item__avatar {
  display: block;
  width: 50px;
  height: 50px;
  margin-right: 16px;
  min-width: 50px;
}
.review-item__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.appoinment-block {
  position: relative;
}
.appoinment-block__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  z-index: 1;
}
.appoinment-block__content {
  padding: 280px 30px;
  position: relative;
  z-index: 9;
}
@media (max-width: 960px) {
  .appoinment-block__content {
    padding: 80px 20px;
  }
}
.appoinment-block__content p {
  font-size: 15px;
  line-height: 120%;
  margin-bottom: 40px;
  max-width: 500px;
  color: #fff;
  margin: 0 auto 40px;
  text-align: center;
}

.appoinment {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 960px) {
  .appoinment {
    flex-direction: column;
  }
}
.appoinment .btn {
  margin: 0 12px;
  width: 280px;
}
.appoinment__politics {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 15px;
  padding-top: 16px;
}

.form-group {
  margin: 0 12px;
  width: 280px;
}
@media (max-width: 960px) {
  .form-group {
    margin: 0 0 20px 0;
  }
}
@media (max-width: 480px) {
  .form-group {
    width: 100%;
  }
}
.form-group input {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 10px;
  padding: 0 20px;
  font-size: 16px;
  color: var(--dark-color);
}

.footer__content {
  background: var(--main-color);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer__content {
    padding: 20px;
  }
}
.footer__left ul {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .footer__left ul {
    display: none;
  }
}
.footer__left ul li {
  margin-bottom: 16px;
}
.footer__left ul li a {
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  transition: 0.5s;
}
.footer__left ul li a:hover {
  color: var(--dark-color);
}
@media (max-width: 767px) {
  .footer__center {
    width: 100%;
    order: -2;
  }
}
@media (max-width: 1280px) {
  .footer__right {
    width: 100%;
    padding-top: 40px;
  }
}

.social {
  display: flex;
}
.social a {
  margin-right: 16px;
}
.social a img {
  display: block;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
}

.footer-contact {
  margin-bottom: 30px;
}
.footer-contact__title {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.footer-contact__info {
  display: block;
  font-size: 40px;
  color: #fff;
}
@media (max-width: 1280px) {
  .footer-contact__info {
    font-size: 24px;
  }
}
.footer-contact__worktime {
  font-size: 15px;
  color: #fff;
  padding-top: 10px;
}

.feedback {
  max-width: 350px;
}
.feedback__title {
  display: block;
  font-size: 24px;
  color: #fff;
  margin-bottom: 16px;
}
.feedback p {
  font-size: 15px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .feedback .btn {
    width: 100%;
  }
}

.footer-bottom {
  width: 100%;
  display: flex;
  padding-top: 120px;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.footer-bottom p {
  font-size: 15px;
  color: #fff;
}
@media (max-width: 480px) {
  .footer-bottom p {
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-bottom p:last-child {
    margin-bottom: 0;
  }
}
.footer-bottom p a {
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: 0.5s;
}
.footer-bottom p a:hover {
  border-color: #fff;
}

.development {
  padding: 20px;
  background: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}
.development a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}/*# sourceMappingURL=styles.css.map */