@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
:root {
  --main-color: #9c634b;
  --second-color: #504434;
  --dark-color: #342b20;
  --second-font: "Georgia", serif;
  --bg-main: #f7f2ef;
  --light-color: #f1e5d9;
}

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: "Manrope", Arial, sans-serif;
  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: 1320px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .container {
    padding: 0 8px;
  }
}

@media (max-width: 767px) {
  .header__btns {
    display: none;
  }
}
.header__btns .btn {
  margin-left: 20px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--second-color);
}

@media (max-width: 767px) {
  .main-menu {
    order: 2;
  }
}
.main-menu ul {
  display: flex;
}
.main-menu ul li {
  margin-right: 20px;
}
.main-menu ul li a {
  font-size: 18px;
  font-family: var(--second-font);
  color: var(--second-color);
  border-bottom: 1px solid transparent;
  transition: 0.5s;
}
.main-menu ul li a:hover {
  border-color: var(--second-color);
}

.btn {
  display: inline-flex;
  height: 55px;
  padding: 0 24px;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  color: #fff;
  background: var(--main-color);
  transition: 0.5s;
}
.btn:hover {
  background: var(--second-color);
  color: #fff;
}
.btn--light {
  border: 1px solid var(--second-color);
  color: var(--second-color);
  background: transparent;
}
.btn--light-white {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}
.btn--light-white:hover {
  background: #fff;
  color: var(--second-color);
}

h1 {
  font-family: var(--second-font);
  font-size: 80px;
  line-height: 120%;
  margin-bottom: 30px;
  color: var(--dark-color);
  font-weight: 400;
}
@media (max-width: 1180px) {
  h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 34px;
  }
}

h2 {
  font-family: var(--second-font);
  font-size: 56px;
  line-height: 120%;
  margin-bottom: 30px;
  color: var(--dark-color);
  font-weight: 400;
}
@media (max-width: 1180px) {
  h2 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}

section {
  margin-bottom: 160px;
}
@media (max-width: 992px) {
  section {
    margin-bottom: 50px;
  }
}

.about {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about__content {
  width: calc(100% - 540px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 100px;
}
@media (max-width: 1180px) {
  .about__content {
    width: calc(100% - 420px);
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .about__content {
    width: 100%;
  }
}
.about__btns {
  display: flex;
}
@media (max-width: 480px) {
  .about__btns {
    justify-content: space-between;
  }
}
.about__btns .btn {
  margin-right: 20px;
}
@media (max-width: 480px) {
  .about__btns .btn {
    width: calc(50% - 10px);
    margin: 0;
  }
}
.about__image {
  width: 500px;
}
@media (max-width: 1180px) {
  .about__image {
    width: 400px;
  }
}
@media (max-width: 767px) {
  .about__image {
    width: 100%;
    order: -2;
  }
}
.about__image img {
  width: 100%;
}

p {
  font-size: 16px;
  line-height: 25px;
  color: var(--second-color);
  margin-bottom: 20px;
}

.content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.content-head.center {
  text-align: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .content-head {
    align-items: flex-start;
  }
}
.content-head p {
  margin-bottom: 0;
  max-width: 500px;
}
@media (max-width: 767px) {
  .content-head p {
    width: 100%;
  }
}
.content-head h2 {
  margin-bottom: 0;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .content-head h2 {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .content-head {
    flex-direction: column;
  }
}

.services {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.service-item {
  width: calc(25% - 15px);
}
@media (max-width: 767px) {
  .service-item {
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
}
.service-item__images {
  display: block;
  width: 100%;
  height: 480px;
  margin-bottom: 20px;
}
@media (max-width: 1180px) {
  .service-item__images {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .service-item__images {
    height: 240px;
  }
}
.service-item__images img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-item__title {
  display: block;
  font-size: 30px;
  color: var(--dark-color);
  font-family: var(--second-font);
}
@media (max-width: 1180px) {
  .service-item__title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .service-item__title {
    font-size: 18px;
  }
}

.productions {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.production-item {
  position: relative;
  height: 420px;
  width: calc(25% - 15px);
  margin-bottom: 20px;
  display: block;
  overflow: hidden;
}
@media (max-width: 992px) {
  .production-item {
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .production-item {
    height: 300px;
  }
}
.production-item:hover:before {
  background: rgba(0, 0, 0, 0.4);
}
.production-item:hover .production-item__img img {
  transform: scale(1.2);
}
.production-item:hover .production-item__show {
  transform: translateY(0);
}
.production-item:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: 0.5s;
}
.production-item--lg {
  width: calc(50% - 10px);
}
@media (max-width: 992px) {
  .production-item--lg {
    width: 100%;
  }
}
.production-item__img {
  display: block;
  width: 100%;
  height: 100%;
}
.production-item__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  transition: 0.5s;
}
.production-item__show {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  z-index: 9;
  transition: 0.5s;
  z-index: 3;
  transform: translateY(90px);
}
@media (max-width: 767px) {
  .production-item__show {
    transform: translateY(0);
  }
}
.production-item__title {
  display: block;
  font-size: 30px;
  color: #fff;
  font-family: var(--second-font);
}
@media (max-width: 1180px) {
  .production-item__title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .production-item__title {
    font-size: 16px;
  }
}
.production-item__link img {
  display: block;
}

.news {
  display: flex;
  flex-wrap: wrap;
}

.new-item {
  width: 33.3333333333%;
  border: 1px solid var(--second-color);
  padding: 20px;
}
@media (max-width: 992px) {
  .new-item {
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .new-item {
    width: 100%;
    margin-bottom: -1px;
  }
}
.new-item:nth-child(1), .new-item:nth-child(2) {
  border-right: 0;
}
@media (max-width: 767px) {
  .new-item:nth-child(1), .new-item:nth-child(2) {
    border-right: 1px solid var(--second-color);
  }
}
.new-item__img {
  display: block;
  height: 290px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .new-item__img {
    height: 240px;
  }
}
.new-item__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.new-item__title {
  display: block;
  font-family: var(--second-font);
  margin-bottom: 40px;
  font-size: 30px;
  color: var(--dark-color);
}
@media (max-width: 992px) {
  .new-item__title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.new-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.new-item__date {
  font-size: 18px;
}
@media (max-width: 992px) {
  .new-item__date {
    font-size: 14px;
  }
}
.reviews-slider {
  position: relative;
}

.swiper-nav {
  display: flex;
  position: absolute;
  right: 40px;
  z-index: 80;
  top: 70px;
}
@media (max-width: 992px) {
  .swiper-nav {
    position: relative;
    right: 0;
    top: 0;
    padding-top: 50px;
    width: 100%;
    justify-content: center;
  }
}

.swiper-button-next {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-left: 20px;
}
.swiper-button-next:before, .swiper-button-next:after {
  display: none;
}
@media (max-width: 992px) {
  .swiper-button-next {
    margin-left: 10px;
  }
}

.swiper-button-prev {
  transform: rotate(180deg);
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.swiper-button-prev:before, .swiper-button-prev:after {
  display: none;
}
@media (max-width: 992px) {
  .swiper-button-prev {
    margin-right: 10px;
  }
}

.review-item {
  background: var(--light-color);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .review-item {
    flex-wrap: wrap;
  }
}
.review-item__image {
  display: block;
  width: 550px;
}
@media (max-width: 1180px) {
  .review-item__image {
    width: 400px;
  }
}
@media (max-width: 992px) {
  .review-item__image {
    width: 100%;
  }
}
.review-item__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.review-item__main {
  width: calc(100% - 540px);
  padding: 140px 40px 40px 40px;
}
@media (max-width: 1180px) {
  .review-item__main {
    width: calc(100% - 420px);
    padding: 140px 20px 20px 20px;
  }
}
@media (max-width: 1180px) and (max-width: 992px) {
  .review-item__main {
    padding: 20px;
    width: 100%;
  }
}
.review-item__title {
  display: block;
  font-size: 46px;
  font-family: var(--second-font);
  margin-bottom: 60px;
  color: var(--dark-color);
}
@media (max-width: 1180px) {
  .review-item__title {
    font-size: 34px;
    margin-bottom: 30px;
  }
}
.review-item__content {
  display: flex;
}
@media (max-width: 566px) {
  .review-item__content {
    flex-direction: column;
  }
}
.review-item__content-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 566px) {
  .review-item__content-info {
    margin-bottom: 20px;
  }
}
.review-item__content-name {
  font-size: 18px;
}
@media (max-width: 992px) {
  .review-item__content-name {
    font-size: 14px;
  }
}
.review-item__content-img {
  display: block;
  width: 230px;
  min-width: 230px;
  margin-left: 20px;
  height: 300px;
}
@media (max-width: 566px) {
  .review-item__content-img {
    width: 100%;
    margin-left: 0;
  }
}
.review-item__content-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sign-up-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.sign-up-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .sign-up-item {
    flex-direction: column;
  }
}
.sign-up-item__image {
  width: calc(50% - 30px);
}
@media (max-width: 767px) {
  .sign-up-item__image {
    order: 2;
    width: 100%;
  }
}
.sign-up-item__image img {
  width: 100%;
  max-width: 500px;
  border-radius: 100% 100% 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.sign-up-item__content {
  width: calc(50% - 30px);
  padding-top: 60px;
}
@media (max-width: 767px) {
  .sign-up-item__content {
    width: 100%;
    padding-top: 0;
    padding-bottom: 50px;
  }
}
.sign-up-item__title {
  display: block;
  font-size: 36px;
  color: var(--dark-color);
  font-family: var(--second-font);
  margin-bottom: 20px;
}
.sign-up-item p {
  margin-bottom: 20px;
}
.sign-up-item ul {
  margin-bottom: 30px;
}
.sign-up-item ul li {
  margin-bottom: 6px;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  font-weight: 700;
}
.sign-up-item ul li:before {
  content: "";
  width: 21px;
  height: 21px;
  background: url(../svg/check.svg) 50% 50% no-repeat;
  position: absolute;
  left: 0;
  top: 1px;
}
.sign-up-item__cost {
  display: block;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: var(--second-font);
}

.today {
  position: relative;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 200px 0 50px 0;
}
.today:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
  transition: 0.5s;
}
.today__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.today__content {
  position: relative;
  z-index: 9;
}
.today__title {
  display: block;
  text-align: center;
  font-size: 56px;
  color: #fff;
  margin-bottom: 30px;
  font-family: var(--second-font);
}
.today__btns {
  display: flex;
  justify-content: center;
}
.today__btns .btn {
  margin: 0 10px;
}
.today__bottom {
  position: relative;
  z-index: 9;
  padding: 0 40px 0px 40px;
}
.today__bottom ul {
  display: flex;
  justify-content: space-between;
}
.today__bottom ul li a {
  display: flex;
  align-items: center;
  font-size: 30px;
  color: #fff;
  font-family: var(--second-font);
  transition: 0.5s;
}
.today__bottom ul li a:hover {
  transform: scale(1.1);
}
.today__bottom ul li a .icon {
  margin-left: 20px;
}
.today__bottom ul li a .icon img {
  display: block;
}

.footer {
  border-top: 1px solid var(--second-color);
  padding: 20px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.footer-content__menu ul {
  display: flex;
}
.footer-content__menu ul li {
  margin-right: 20px;
}
.footer-content__menu ul li a {
  font-size: 18px;
  font-family: var(--second-font);
  color: var(--second-color);
  border-bottom: 1px solid transparent;
  transition: 0.5s;
}
.footer-content__menu ul li a:hover {
  border-color: var(--second-color);
}

.footer-bottom {
  display: flex;
  justify-content: center;
}

.copy {
  font-size: 16px;
  color: var(--second-color);
}

.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 */