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,
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,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

iframe {
  display: block;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

a {
  text-decoration: none;
}

button {
  padding: 0;
  outline: none;
  border: 1px solid transparent;
}

.seven {
  background: url("../img/7.jpg") top no-repeat;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;

  form {
    width: 420px;
  }
}

@media (max-width: 1290px) {
  .seven {
    text-align: center;

    .school__inner {
      flex-direction: column;
      gap: 40px;

      .title {
        margin-bottom: 40px;
      }
    }

    .colorone {
      text-align: center;
    }

    .desc-item {
      margin: 0 auto;
      text-align: center;
      margin-bottom: 20px;
    }

    .link-button {
      justify-content: center;
    }
  }
}

.colorone {
  color: #fff;
  font-size: 25px;
  margin-bottom: 15px;
  margin-right: 10px;
  font-family: "Merriweather", sans-serif;
  text-align: left;
}

.logo-contact {
  width: 45px;
  height: 45px;
  position: absolute;
}

.seven:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.container {
  margin: 0 auto;
  max-width: 1170px;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 720px;
  }

  .d-flex {
    justify-content: center;
    text-align: center;
  }

  .form-inp {
    width: 63%;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }

  .autom {
    margin: 0 auto;
    margin-bottom: 40px;
  }

  .d-flex {
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .button-form {
    font-size: 16px;
  }

  .form {
    text-align: center !important;
  }
}

@media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 10px;
  }

  .autom {
    margin: 0 auto;
    margin-bottom: 40px !important;
  }

  #forms {
    width: 100%;
  }
}

.btn {
  outline: none;
  border: 1px solid #a99079;
  border-radius: 5px;
  max-width: 300px;
  width: 100%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  height: 60px;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  background-color: transparent;
  color: #a99079;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 16px;
}

.btn:hover {
  background-color: #c4ac97;
  color: #fff;
}

.btn.small {
  height: 40px;
  border: 1px solid #fff;
  color: #ffffff;
  max-width: 200px;
  margin: 20px 0 0 0;
}

.btn.small:hover {
  color: #a99079;
  background-color: #fff;
}

@media (max-width: 576px) {
  .btn {
    height: 58px;
    font-size: 15px;
    max-width: 250px;
    margin: 0 auto;
  }
}

.section {
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  position: relative;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
}

.page {
  position: relative;
}

.first {
  background: url("../img/1.jpg") center no-repeat;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
}

.first::after {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  content: "";
  left: 0;
  top: 0;
}

.first-txt {
  font-family: "Merriweather", sans-serif;
  color: #ffffff;
  font-size: 90px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 30px;
}

.sub-title {
  color: #fff;
  font-size: 30px;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 2px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .sub-title {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .first-txt {
    font-size: 48px;
  }

  .sub-title {
    font-size: 16px;
  }
}

.first-txt span {
  display: block;
  font-size: 90px;
  margin: 0 0 30px 0;
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-style: normal;
}

@media (max-width: 1200px) {
  .first-txt span {
    font-size: 90px;
  }
}

@media (max-width: 1024px) {
  .first-txt span {
    font-size: 90px;
  }
}

@media (max-width: 768px) {
  .first-txt span {
    font-size: 80px;
  }
}

@media (max-width: 768px) {
  .first-txt span {
    font-size: 40px;
  }
}

.first-btn {
  background-color: #a99079;
  color: #fff;
  margin: 0 auto;
}

.first-btn:hover {
  background-color: #c4ac97;
}

.header {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
}

.header-logo {
  max-width: 95px;
}

@media (max-width: 768px) {
  .header-logo {
    max-width: 60px;
  }
}

@media (max-width: 576px) {
  .header-logo {
    -webkit-transition: margin 0.5s linear;
    -o-transition: margin 0.5s linear;
    transition: margin 0.5s linear;
  }
}

.menu-wrap {
  height: 100vh;
  position: fixed;
  z-index: 11;
  max-width: 320px;
  padding: 15px 20px;
  width: 100%;
  top: 0;
  right: -320px;
  background: rgba(0, 0, 0, 0.9);
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  -webkit-transition: right 0.5s linear;
  -o-transition: right 0.5s linear;
  transition: right 0.5s linear;
}

.menu-wrap.active {
  right: 0px;
}

.menu-lang-wrap {
  font-size: 40px;
  letter-spacing: 3px;
  font-family: "BebasNeueRegular", sans-serif;
  color: #ffffff;
  width: 100%;
  max-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  position: relative;
  margin: 0 auto 50px auto;
}

.menu-lang-wrap .line {
  position: absolute;
  left: 0px;
  bottom: 0;
  height: 3px;
  width: 40px;
  background-color: #fff;
  border-radius: 5px;
  content: "";
  -webkit-transition: left 0.3s linear;
  -o-transition: left 0.3s linear;
  transition: left 0.3s linear;
}

.menu-lag-item {
  cursor: pointer;
}

.menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  margin: 0 0 50px 0;
}

.menu-list-item {
  color: #ffffff;
  font-size: 40px;
  cursor: pointer;
  letter-spacing: 4px;
  font-family: "Oswald", sans-serif;
  border-bottom: 2px solid transparent;
  padding: 20px 0;
}

.menu-list-item:hover {
  border-bottom: 2px solid #fff;
}

.menu-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  gap: 20px;
}

.burger-wrap {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.3);
  position: relative;
  border-radius: 100%;
  cursor: pointer;
  z-index: 1000;
  -webkit-transition: all 0.3s linear 0.2s;
  -o-transition: all 0.3s linear 0.2s;
  transition: all 0.3s linear 0.2s;
}

.burger-wrap.active {
  margin: 0 200px 0 0;
  background-color: #fff;
}

.burger-wrap.active .burger-item {
  background-color: #000;
}

.burger-wrap:hover {
  background-color: #fff;
}

.burger-wrap:hover .burger-item {
  background-color: #000;
}

.burger-item {
  height: 2px;
  width: 60%;
  position: absolute;
  left: 20%;
  margin: 3px 0;
  background-color: #fff;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.burger-item:nth-child(1) {
  top: 10px;
}

.burger-item:nth-child(2) {
  top: 20px;
}

.burger-item:nth-child(3) {
  top: 30px;
}

.burger-wrap.active .burger-item:nth-child(2) {
  display: none;
}

.burger-wrap.active .burger-item:nth-child(1) {
  top: 20px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.burger-wrap.active .burger-item:nth-child(3) {
  top: 20px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.second {
  background: url("../img/2.jpg") top no-repeat;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
}

.title {
  color: #fff;
  font-size: 60px;
  letter-spacing: 4px;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  margin: 0 0 30px 0;
  margin-left: 35%;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .title {
    font-size: 70px;
  }
}

.title.center {
}

@media (max-width: 576px) {
  .title {
    font-size: 44px;
  }
}

.title-img {
  max-width: 60px;
  height: auto;
}

@media (max-width: 768px) {
  .title-img {
    max-width: 50px;
  }
}

@media (max-width: 576px) {
  .title-img {
    display: none;
  }
}

.subtitle {
  font-size: 34px;
  margin: 0 0 10px 0;
  font-family: "Inter", sans-serif;
}

@media (max-width: 768px) {
  .subtitle {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .subtitle {
    font-size: 22px;
  }
}

.dots {
  width: 100%;
  height: 12px;
  margin: 0 2px;
  background: url("../img/circle.svg") repeat-x bottom;
}

.services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  margin: 0 0 40px 0;
}

@media (max-width: 768px) {
  .services {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: no-wrap;
    flex-wrap: no-wrap;
  }
}

.services-item {
  /* width: 46% */
  color: #fff;
}

@media (max-width: 768px) {
  .services-item {
    width: 100%;
    margin: 0 0 20px 0;
  }
}

.services-item-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  width: 100%;
  color: #fff;
  margin: 0 0 8px 0;
}

.services-item-field-wrap {
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  height: 400px; */
}

.services-item-field-txt {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  z-index: 10;
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .services-item-field-txt {
    font-size: 18px;
  }

  .services-item-field:last-child .services-item-field-txt {
    white-space: normal;
    text-wrap: wrap;
    line-height: 1.2;
  }
}

.three {
  background: url("../img/3.jpg") top no-repeat;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
}

.three::after {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  content: "";
  left: 0;
  top: 0;
}

.desc-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
}

@media (max-width: 768px) {
  .desc-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: no-wrap;
    flex-wrap: no-wrap;
  }

  .services-item-field {
    white-space: normal;
  }
}

.desc-item {
  width: 42%;
  color: #ffffff;
  font-size: 20px;
  margin: 0 0 10px 0;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 768px) {
  .desc-item {
    font-size: 18px;
    width: 100%;
    margin: 0 auto;
  }
}

.mb {
  margin-bottom: 60px;
}

.four {
  background: url("../img/4.jpg") top no-repeat;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  overflow: hidden;
  height: auto;
  padding: 50px 0;
}

.four::after {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
  left: 0;
  top: 0;
}

.slider-item img {
  max-width: 350px;
  -webkit-transform: scale(1.4);
  -ms-transform: scale(1.4);
  transform: scale(1.4);
  z-index: -1;
  width: 300px;
  height: 300px;
}

.slider {
  overflow: hidden;
  width: 100%;
}

@media (max-width: 1024px) {
  .slider {
    width: 100%;
  }
}

.slider-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .slider-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.slider-item {
  margin: 25px;
  max-width: 300px;
  height: 300px;
  /*  border-radius: 100%; */
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  cursor: pointer;
  position: relative;
  width: 300px;
  height: 300px;
}

.slider-item:hover .info-wrap {
  opacity: 1;
}

@media (max-width: 1024px) {
  .slider-item {
    margin: 20px auto;
  }
}

.link-button {
  display: flex;
}

.link-button1 {
  margin-right: 35px !important;
}

.info-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(169, 144, 121, 0.5);
  opacity: 0;
  /*  border-radius: 100%; */
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.name {
  font-size: 40px;
  font-family: "Inter", sans-serif;
  color: #fff;
  text-align: center;
}

.title-form {
  margin-bottom: 40px;
  font-size: 20px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

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

.form {
  font-size: 33px;
  border-radius: 4px;
  padding-top: 8px;
}

.button-form {
  z-index: 33;
  outline: none;
  padding: 15px 20px;
  border: 1px solid #a99079;
  border-radius: 5px;
  cursor: pointer;
  background-color: #a99079;
  color: #fff;
  font-family: "Oswald", sans-serif;
  letter-spacing: 3px;
  font-size: 16px;
  text-transform: uppercase;
  width: 100%;
}

form {
  padding: 40px 20px;
  margin: 0 auto;
  background-color: #a9907939;
  border-radius: 5px;
}

.form-inp {
  margin-bottom: 30px;
  border-radius: 5px;
  height: 30px;
  width: 100%;
  border: none;
  padding: 25px 15px;
}

.hidden {
  display: none;
}

.link-form {
  color: #a99079;
}

/*

.img1{
  margin-top: 292px;
  margin-right: 46px;
}
.img3{
  margin-top: -19px;
  margin-right: 161px;

  max-width: 400px!important;

  margin-top: 5px;
  margin-right: 181px;
}
.img2{

  margin-top: 50px;
  margin-right: 40px;
  max-width: 375px!important;
}

.img4{

  margin-top: 60px;
  margin-right: 95px;

  max-width: 390px!important;
}
*/

.title.black {
  color: #444545;
}

@media (max-width: 768px) {
  .title.black,
  .title {
    text-align: center;
  }
}

.five {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
}

/* Products section start */
.products {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  background-image: url(../img/bg-products.jpg);
  color: #fff;

  &::after {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    content: "";
    left: 0;
    top: 0;
  }

  h2 {
    margin: 0 0 20px 0;
  }

  .products__cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;

    .btn {
      margin: 40px auto 0;
    }
  }

  .products__item {
    border-radius: 5px;
    padding: 20px 10px 30px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    background: rgb(169, 144, 121);
    line-height: 1.3;
    background: radial-gradient(
      circle,
      rgba(169, 144, 121, 1) 0%,
      rgba(68, 51, 51, 1) 100%
    );
  }

  .products__item--featured {
    flex-direction: row;
    padding: 20px 40px 30px 40px;

    .featured__info {
      max-width: 250px;
      margin: 0 auto;

      p {
        margin-bottom: 20px;
      }
    }
  }
}

.products__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  grid-auto-rows: minmax(400px, auto);
}

.products__cta {
  grid-column: 1 / 3;
  grid-row: 1;

  p {
    line-height: 1.3;
  }
}

.products__cta + .products__item {
  grid-column: 3 / 4;
  grid-row: 1;
  background-color: #71f4a1;
}

.products__cta + .products__item + .products__item {
  grid-column: 4 / 5;
  grid-row: 1;
  background-color: #5385f1;
}

.products__item--featured {
  grid-column: 1 / 3;
  grid-row: 2;
  background-color: #dc52ff;
}

.products__item--featured + .products__item {
  grid-column: 3 / 4;
  grid-row: 2;
  background-color: #f4bd4e;
}

.products__item--featured + .products__item + .products__item {
  grid-column: 4 / 5;
  grid-row: 2;
  background-color: #f56c6c;
}

/* Responsive design */
@media (max-width: 1200px) {
  .section.products {
    width: 100%;
    height: auto;
    padding: 80px 0;
  }

  .products__inner {
    grid-auto-rows: minmax(320px, auto);
    gap: 20px;
  }
}

@media (max-height: 978px) {
  .section.products {
    height: auto;
  }
}

@media (max-height: 678px) {
  .second.second {
    height: auto;
  }
}

@media (max-width: 1025px) {
  .products__cta {
    grid-column: 1/5;
  }

  .products__cta + .products__item,
  .products__cta + .products__item + .products__item {
    display: none;
  }

  .products__item--featured + .products__item,
  .products__item--featured + .products__item + .products__item {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .products__inner {
    grid-template-columns: 1fr;
  }

  .products__cta,
  .products__item--featured,
  .products__cta + .products__item,
  .products__cta + .products__item + .products__item,
  .products__item--featured + .products__item,
  .products__item--featured + .products__item + .products__item {
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .products__cta {
    margin-bottom: 40px;
  }

  .products {
    .products__item--featured {
      flex-direction: column-reverse;
    }
  }
}

/* Products section end */

/* Contacts section start */
.contacts {
  height: auto;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/3.jpg) top no-repeat;
  background-size: cover;
  position: relative;

  &::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4);
  }

  h2.title {
    margin: 0 0 80px 0;
    text-align: center;
  }

  .contacts__addresses {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 80px;

    .contacts__addresses-box {
      flex: 1;
      background-color: rgba(255, 255, 255, 0.9);
      border-radius: 5px;
      padding: 50px 20px;
      font-size: 32px;

      .location {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        font-size: 25px;
        font-weight: 700;
        color: #444545;

        img {
          width: 100px;
          height: 100px;
        }
      }

      .phone-number {
        display: block;
        font-size: 25px;
        font-weight: 600;
        color: #444545;
        text-align: center;
        margin-bottom: 28px;

        &:hover {
          opacity: 0.8;
        }
      }

      .open-hours {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 25px;
        font-weight: 400;
        color: #444545;
        gap: 5px;
      }
    }
  }

  .contacts__map-link {
    margin-bottom: 80px;
    position: relative;

    img {
      display: block;
      width: 100%;
      object-fit: cover;
      border-radius: 5px;
    }

    .contacts__map-button {
      position: absolute;
      left: 50%;
      top: 50%;
      border: 2px solid #fff;
      transform: translate(-50%, -50%);
      padding: 15px 40px;
      border-radius: 5px;
      font-family: "Oswald", sans-serif;
      text-transform: uppercase;
      color: #fff;
      letter-spacing: 2px;
      transition: background-color 0.3s ease-in-out;
    }

    .contacts__map-button:hover {
      background-color: rgba(255, 255, 255, 0.2);
    }
  }

  .contacts__map-link:hover .contacts__map-button {
    background-color: rgba(255, 255, 255, 0.3);
  }

  .contacts__cta {
    margin: 0 auto;
  }
}

@media (max-width: 1200px) {
  .contacts {
    .contacts__addresses {
      .contacts__addresses-box {
        padding: 20px 5px;

        .location {
          font-size: 32px;
          flex-direction: column;
        }

        .phone-number {
          font-size: 38px;
        }

        .open-hours {
          font-size: 24px;
        }
      }
    }
  }
}

@media (max-width: 1025px) {
  .contacts {
    h2.title {
      margin: 0 0 40px 0;
    }

    .contacts__addresses {
      flex-direction: column;
      gap: 40px;
      margin-bottom: 40px;

      .contacts__addresses-box {
        padding: 30px;
      }
    }

    .location {
      justify-content: center;
    }

    .contacts__map-link {
      .contacts__map-button {
        padding: 10px 15px;
      }

      img {
        display: block;
        width: 100%;
        height: 260px;
        object-fit: cover;
        border-radius: 5px;
      }
    }
  }
}

@media (max-width: 769px) {
  .contacts {
    .contacts__map-link {
      .contacts__map-button {
        padding: 8px;
        font-size: 12px;
      }
    }

    .contacts__addresses {
      .contacts__addresses-box {
        padding: 20px 5px;

        .location {
          font-size: 32px;
          flex-direction: column;
        }

        .phone-number {
          font-size: 38px;
        }

        .open-hours {
          font-size: 24px;
        }
      }
    }
  }
}

@media (max-width: 487px) {
  .contacts {
    .contacts__addresses {
      .contacts__addresses-box {
        .location {
          font-size: 26px;
          flex-direction: column;
        }

        .phone-number {
          font-size: 32px;
        }

        .open-hours {
          font-size: 20px;
        }
      }
    }
  }
}

/* Contacts section end */

/* Footer start */
footer.footer {
  background-color: #444545;
  padding: 80px 0;

  .footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
  }

  .footer__link {
    display: block;
    font-family: "Inter", sans-serif !important;
    font-weight: 400;
    color: #a99079;
    font-size: 16px;
    letter-spacing: normal;
    padding: 10px 5px;
    border-bottom: none;
  }

  .menu-list-item.footer__link:hover,
  .footer__link:hover {
    opacity: 0.8;
    border-bottom: none;
  }

  .footer__address {
    color: #a99079;

    p {
      margin-bottom: 20px;
      line-height: 1.3;
    }

    a {
      color: #a99079;

      &:hover {
        opacity: 0.8;
      }
    }
  }

  .footer__social {
    display: flex;
    gap: 20px;
  }

  .footer__copyrights {
    font-weight: 300;
    font-size: 14px;
    color: #a99079;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

/* Footer end */

/* Page components start */
.page-header {
  margin-bottom: 127px;
}

.breadcrumbs {
  color: #fff;
  display: flex;
  text-transform: uppercase;

  a.breadcrumbs__link {
    color: inherit;
  }

  a.breadcrumbs__link--active {
    color: rgba(255, 255, 255, 0.5);
  }

  .breadcrumbs__divider {
    padding: 0px 10px;
  }
}

/* Page components end */

/* CONTACTS page start  */
.page-contacts.contacts {
  padding-top: 223px;

  .title {
    margin: 0 0 20px 0;
    text-align: left;
  }

  .contacts__addresses {
    gap: 0;

    .contacts__addresses-box {
      border-top-left-radius: 0;
      border-top-right-radius: 0;
      border-bottom-left-radius: 5px;
      border-bottom-right-radius: 5px;
    }

    .contacts__addresses-box:nth-child(1) {
      border-bottom-right-radius: 0;
    }

    .contacts__addresses-box:nth-child(2) {
      border-bottom-left-radius: 0;
    }

    .contacts__map-link {
      margin-bottom: 0;
    }
  }
}

@media (max-width: 1200px) {
  .page-contacts.contacts {
    padding-top: 140px;
  }

  .page-header {
    margin-bottom: 60px;
  }
}

@media (max-width: 1025px) {
  .page-contacts.contacts {
    & .contacts__addresses {
      .contacts__addresses-box:nth-child(1) {
        border-bottom: 1px solid #d2d2d2;
        border-bottom-left-radius: 0;
      }
    }
  }

  .page-contacts.contacts {
    .contacts__addresses {
      .contacts__addresses-box:nth-child(2) {
        border-bottom-left-radius: 5px !important;
        border-bottom-left-radius: 5px !important;
      }
    }
  }
}

.menu-list {
  li {
    padding: 20px 0;
  }

  li a {
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 40px;

    &:hover {
      text-decoration: underline;
    }
  }
}

/* CONTACTS page end  */

.contacts-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  margin: 0 0 30px 0;
}

.contact-item {
  color: #a99079;
  font-size: 28px;
  max-width: 30%;
  line-height: 1.5;
  width: 100%;
  font-family: "Inter", sans-serif;
}

.seven {
  .title {
    margin: 0 0 40px;
  }
}

@media (max-width: 768px) {
  .contacts-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: no-wrap;
    flex-wrap: no-wrap;
  }
}

@media (max-width: 768px) {
  .contact-item {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
}

.contact-item span {
  display: block;
  width: 100%;
}

.contact-item a {
  margin: 0 20px;
}

@media (max-height: 640px) {
  .title {
    margin: 0 auto 40px;
  }
}

@media (max-width: 768px) {
  .btn.contact {
    margin: 0 auto;
  }

  .title {
    margin: 0 auto 40px;
  }
}

@media (max-height: 780px) {
  .section.seven,
  .section.three {
    height: auto;
    padding: 80px 0;
  }

  .section.seven {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .margin {
    margin: 0 0 0 -130px;
  }

  .contact-item {
    font-size: 24px;
  }

  .section.three,
  .section.seven {
    padding: 80px 0;
    height: auto;
  }
}

@media (max-width: 1024px) {
  .section.four,
  .section.second {
    height: 100%;
    padding: 80px 0;
  }
}
