@charset "UTF-8";

body {
  font-family: 'Plus Jakarta Sans';
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: #1e1e1e;
  font-size: 16px;
  color: ivory;
}

.wrapper {
  margin: 0 auto;
  max-width: 1000px;
  width: 90%;
}

h1,
h2 {
  font-weight: 700;
  text-align: center;
}

h1 {
  margin: 2rem auto;
}

ul {
    padding: 0;
    list-style: none;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

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

i {
  color: #0b0a0c;
}

.hidden {
  display: none;
}

#responseMessage {
  padding: 0.5rem;
  border: 1px solid #4caf50;
  background-color: #4caf50;
  color: ivory;
  text-align: center;
  display: none;
  width: 100%;
  position: relative;
  border-radius: 1rem;
  top: -20px;
  opacity: 0;
  transition: top 0.5s ease, opacity 0.5s ease;
  z-index: 999;
  margin-bottom: 10px;
}

.error {
  display: flex;
  flex-direction: column;
  color: red;
  font-size: 13px;
}

#errorSummary {
  color: red;
  font-size: 13px;
  margin-bottom: 8px;
}

.horizontal-line {
  height: 1px;
  background-color: #4a48bf;
  margin: 5rem 0;
}

svg {
  transition: transform 0.5s ease-in;
  margin-top: 2rem;
}

a.active {
  transition: transform 0.3s ease-out;
}

a.active:hover {
  transform: translateY(8px);
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.header__container__menu {
  display: none;
}
.header__nav > ul {
  display: flex;
  list-style: none;
}
.header__nav__links a {
  color: #181818;
  font-size: 1rem;
  line-height: 1.3rem;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.header__nav__links a:hover {
  color: ivory;
  transform: translateY(-2px);
}
.header__nav__links a:last-child {
  margin-right: 0;
}
.header__nav__links a:active {
  transform: translateY(-2px);
}

html {
  font-family: "Plus Jakarta Sans";
  background-color: #1e1e1e;
  font-size: 16px;
}



body {
  color: ivory;
  list-style: none;
}

.wrapper {
  margin: 0 auto;
  max-width: 1000px;
  width: 90%;
}

h1,
h2 {
  font-weight: 700;
  text-align: center;
}

h1 {
  margin: 2rem auto;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

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

i {
  color: #0b0a0c;
}

.hidden {
  display: none;
}

#responseMessage {
  padding: 0.5rem;
  border: 1px solid #4caf50;
  background-color: #4caf50;
  color: ivory;
  text-align: center;
  display: none;
  width: 100%;
  position: relative;
  border-radius: 1rem;
  top: -20px;
  opacity: 0;
  transition: top 0.5s ease, opacity 0.5s ease;
  z-index: 999;
  margin-bottom: 10px;
}

.error {
  display: flex;
  flex-direction: column;
  color: red;
  font-size: 13px;
}

#errorSummary {
  color: red;
  font-size: 13px;
  margin-bottom: 8px;
}

.horizontal-line {
  height: 1px;
  background-color: #4a48bf;
  margin: 5rem 0;
}

svg {
  transition: transform 0.5s ease-in;
  margin-top: 2rem;
}

a.active {
  transition: transform 0.3s ease-out;
}

a.active:hover {
  transform: translateY(8px);
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.section__about__block {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.section__about__block > p {
  position: absolute;
  top: 50%;
  text-align: justify;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  text-shadow: 2px 2px 1px rgb(69, 34, 65);
  line-height: 1.3rem;
  overflow: hidden;
  max-height: calc(55vh - 20px);
}
.section__about__image {
  position: relative;
}
.section__about__image > img {
  width: 100%;
  height: 55vh;
  filter: brightness(1) saturate(0.5) blur(15px);
}
.section__characteristics__block {
  padding: 1rem 5px;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 2px 46px -4px rgba(0, 0, 0, 0.6);
  text-align: center;
}
.section__characteristics__block > .column {
  margin: 3rem;
}
.section__price__block {
  padding: 2rem 0;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 2px 46px -4px rgba(0, 0, 0, 0.6);
  transition: all 0.2s ease-in-out;
  text-align: center;
}
.section__price__block .price {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}
.section__price__block .price::before {
  content: "€550";
  animation: text-hover 1s ease-in-out infinite normal;
}
.section__price__block .details li {
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.5s, transform 0.5s;
}
.section__price__block .details li.active {
  opacity: 1;
  transform: translateX(0);
}
.section__price__block > ul > li {
  font-style: italic;
  padding: 1rem 0;
  white-space: nowrap;
  font-size: 12px;
}
.section__soc_media {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}
.section__soc_media__header {
  font-style: italic;
  padding-bottom: 1rem;
}
.section__soc_media__header > p {
  padding-top: 1rem;
}
.section__soc_media__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.section__soc_media__links > a {
  color: #4a48bf;
}
.section__soc_media__links > a i {
  color: ivory;
}
.section__soc_media__details {
  text-shadow: 2px 2px 1px #1f1f1f;
  transition: transform 0.3s ease-out;
}
.section__soc_media__details:hover {
  transform: translateY(8px);
}
.section__contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.section__contact__inputs > input,
.section__contact__inputs textarea {
  border: 0;
  margin: 10px 0;
  padding: 20px;
  outline: none;
  font-size: 16px;
  text-align: center;
}
.section__contact__inputs > textarea {
  font-size: 17px;
}
.section__contact__form {
  display: flex;
  flex-direction: column;
  padding: 2vw 4vw;
  max-width: 600px;
  border-radius: 10px;
  margin-bottom: 3rem;
}
.section__contact__form > button {
  padding: 15px;
  background-color: #4caf50;
  font-size: 18px;
  border: 0;
  outline: none;
  cursor: pointer;
  width: 100%;
  color: ivory;
}
.section__contact__form > h3 {
  font-weight: 800;
  margin: 2rem auto;
}
.section__duk__title__set {
  font-size: 1.5rem;
  margin: 2rem auto;
}
.section__duk__accordion {
  text-align: left;
  cursor: pointer;
}
.section__duk__accordion__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem;
}
.section__duk__accordion__box > h4 {
  font-size: 1rem;
}
.section__duk__accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1.4s ease;
  margin: 1rem;
}
.section__duk__accordion__content.active {
  animation: fade 1s ease-in-out;
}
.section__duk__accordion__content > p {
  padding-top: 1rem;
  line-height: 1.6;
}
.section__main_contacts > span {
  margin-bottom: 1rem;
}
.section__main_contacts__email_phone_group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.section__main_contacts__email, .section__main_contacts__phone {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
  gap: 1rem;
}
.section__main_contacts__email > img, .section__main_contacts__phone > img {
  width: 2.5rem;
  height: 100%;
  border-radius: 5px;
}
.section__main_contacts__email > h5, .section__main_contacts__phone > h5 {
  line-height: 1.5rem;
}
.section__main_contacts__phone {
  gap: 0.5rem;
}

@media only screen and (max-width: 772px) {
  .wrapper {
    text-align: center;
  }
  .header {
    margin: 0.5rem;
  }
  .header__container {
    position: absolute;
    top: 1rem;
  }
  .header__container__logo > a img {
    width: 15rem;
    height: 7rem;
  }
  .header__container__menu {
    display: block;
    cursor: pointer;
    position: fixed;
    right: 1.3rem;
    z-index: 9999;
  }
  .header__container__menu > a span {
    display: block;
    background: #6ad1f9;
    transition: all 400ms ease-out;
    transform-origin: 0.313rem 0.063rem;
  }
  .header__container__menu > a span:not(:last-child) {
    margin-bottom: 0.25rem;
  }
  .header__container__menu.active {
    transition: height 0.5s ease;
  }
  .header__container__menu.active > a span {
    background-color: #181818;
  }
  .header__container__menu.active > a span:nth-child(1) {
    transform: rotate(45deg);
  }
  .header__container__menu.active > a span:nth-child(2) {
    opacity: 0;
  }
  .header__container__menu.active > a span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .header__container__menu .line {
    width: 2.1rem;
    height: 0.188rem;
    margin: 0.375rem 0;
  }
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    z-index: 999;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border-radius: 15px;
    transform: translateX(-100%);
    transition: ease-in-out 0.5s;
  }
  .header__nav.active {
    height: auto;
    padding: 1rem;
    text-align: center;
    line-height: 2rem;
    animation: slide 1s ease-in-out;
    transform: translateX(0);
  }
  .header__nav ul {
    display: block;
    margin: 0 auto;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
  }
  .header__nav.active ul {
    opacity: 1;
  }
  .header__nav > ul li a:hover {
    color: #4a48bf;
    transform: translateY(-2px);
  }
  .header__nav > ul li a:hover:last-child {
    margin-right: 0;
  }
  .header__nav ul li a {
    position: relative;
    transition: color 0.2s;
    color: #181818;
    font-size: 1.2rem;
  }
  .header__nav ul li a:hover {
    color: #4a48bf;
  }
  .header__nav ul li a:hover::after {
    background-color: #4a48bf;
  }
  .section__about__block > p {
    top: 50%;
    line-height: 2rem;
    max-height: calc(85vh - 20px);
    text-align: center;
    overflow-y: scroll;
  }
  .section__about__image > img {
    width: 100%;
    height: 85vh;
  }
  .section__footer {
    max-width: none;
    margin-top: 2rem;
  }
  .section__soc__media {
    margin-top: 2rem;
  }
  .section__soc_media__links {
    flex-wrap: nowrap;
    margin-top: 2rem;
  }
  .section__soc_media__header {
    margin-top: 2rem;
  }
  .section__main_contacts__email {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    margin: 0;
  }
  .section__main_contacts__phone {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 4.375rem;
  }
  .section__main_contacts__email_phone_group {
    flex-wrap: wrap;
    display: flex;
    gap: 2rem;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  .section__duk__accordion {
    padding-bottom: 0;
  }
  .section__duk__accordion__box {
    text-align: center;
    display: block;
  }
  .section__duk__accordion__content {
    text-align: center;
  }
  .section__duk__accordion__content > p {
    padding-top: 0;
    font-style: italic;
  }
  .section__main_contacts__email > h5, .section__main_contacts__phone > h5 {
  margin: 0;
}
}
@media only screen and (min-width: 773px) {
  header {
    display: flex;
    justify-content: space-between;
    position: fixed;
    z-index: 999999;
    background: #1e1e1e;
    padding: 0rem 4rem;
    right: 0;
    left: 0;
  }
  .header__nav > ul {
    gap: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header__nav > ul > li > a {
    color: #6ad1f9;
  }
  .header__nav > ul > li > a:hover,
  .header__nav > ul > li > a:focus {
    color: ivory;
    outline: none;
    position: relative;
    display: flex;
    align-items: center;
  }
  .header__nav > ul > li > a:focus {
    font-size: 1.1em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .header__container__logo > a > img {
    width: 7rem;
    height: 3rem;
  }
  .section__about__image > img {
    margin-top: 5rem;
  }
  .section__about__block > p {
    padding: 0;
    line-height: 3rem;
    text-align: center;
    top: 60%;
  }
   .section__price__block > ul {
    padding: 0;
  }
  .section__price__block > ul > li {
    font-size: 15px;
  }
  .section__contact__inputs > input,
  .section__contact__inputs textarea {
    width: 25rem;
    border-radius: 5px;
  }
  .section__contact__form {
    display: flex;
    align-items: center;
  }
  .section__contact__form > button {
    width: 30%;
    height: 100%;
    border-radius: 5px;
  }
  .section__characteristics__block {
    padding: 1rem 10rem;
  }
}
@media only screen and (min-width: 1500px) {
  .header {
    top: 0;
  }
  .header__nav > ul li a {
    font-size: 20px;
  }
  .header__container__logo > a > img {
    width: 7rem;
    height: 3.3rem;
  }
  .header__nav > ul > li > a:focus {
    font-size: 1.3rem;
  }
  .section__about__image > img {
    height: 70vh;
  }
  .section__about__image {
    margin-top: 5rem;
  }
  .section__about__image > img {
    margin-top: 1rem;
  }
  .section__about__block > p {
    top: 50%;
    line-height: 3.5rem;
  }
  .section__price__block .details li.active {
    font-size: 17px;
  }
  .section__characteristics__block {
    padding: 1rem 15rem;
  }
}
@keyframes slide {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}/*# sourceMappingURL=style.css.map */