body {
  padding: 0;
  margin: 0;
  font-family: "Outfit";
  overflow-x: hidden;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1250px;
  margin: 0px auto;
}
@media (max-width: 1340px) {
  .container {
    width: 1200px;
  }
}
@media (max-width: 1220px) {
  .container {
    width: 1050px;
  }
}
@media (max-width: 1070px) {
  .container {
    width: 1020px;
  }
}
@media (max-width: 1030px) {
  .container {
    width: 990px;
    padding: 0px 3px;
  }
}
@media (max-width: 990px) {
  .container {
    width: 100%;
    padding: 0px 3px;
  }
}

.wrapper .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 44px;
  padding: 12px 0px;
  background-color: white;
  z-index: 5;
}
.wrapper .header .header_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wrapper .header .header_container .header_logo {
  margin-right: 15px;
  z-index: 5;
}
.wrapper .header .header_container .header_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 990px) {
  .wrapper .header .header_container .header_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    top: 0;
    left: -110%;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 3;
    -webkit-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
  }
  .wrapper .header .header_container .header_menu .header_menu_item {
    margin: 20px 10px;
  }
  .wrapper .header .header_container .header_menu.active {
    left: 0;
    -webkit-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
  }
}
.wrapper .header .header_container .header_menu .header_menu_item {
  padding: 0px 16px;
  margin-left: 16px;
  text-decoration: none;
  font-size: 14px;
  line-height: 24px;
  color: black;
}
.wrapper .header .header_container .header_menu .header_menu_item:hover {
  text-decoration: underline;
}
.wrapper .header .header_container .header_menu .header_menu_item.button {
  width: 138px;
  height: 44px;
  background-color: #996830;
  color: white;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .header .header_container .header_menu .header_menu_item.button:hover {
  text-decoration: none;
}
.wrapper .header .header_container .header_burger {
  display: none;
  z-index: 5;
  cursor: pointer;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 25px;
  height: 20px;
  content: "";
}
@media (max-width: 990px) {
  .wrapper .header .header_container .header_burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .wrapper .header .header_container .header_burger.active span {
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
  }
  .wrapper .header .header_container .header_burger.active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(0px, 12px);
            transform: rotate(45deg) translate(0px, 12px);
  }
  .wrapper .header .header_container .header_burger.active span:nth-child(2) {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  .wrapper .header .header_container .header_burger.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(0px, -12px);
            transform: rotate(-45deg) translate(0px, -12px);
  }
}
.wrapper .header .header_container .header_burger span {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 100%;
  height: 3px;
  background-color: #996830;
  cursor: pointer;
}
.wrapper .page .banner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .page .banner .banner_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .page .banner .banner_text h1 {
  text-align: center;
  color: #2C2C2C;
  font-size: 72px;
  font-weight: 500;
  line-height: 96px;
  margin: 20px;
  margin-top: 80px;
}
.wrapper .page .banner .banner_text h1 span {
  font-family: cursive;
}
.wrapper .page .banner .banner_text p {
  font-size: 20px;
  color: #2C2C2C;
  max-width: 800px;
  text-align: center;
}
@media (max-width: 990px) {
  .wrapper .page .banner .banner_text h1 {
    font-size: 48px;
    margin-top: 0;
    line-height: 56px;
  }
}
.wrapper .page .banner .banner_media img {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 640px;
  -o-object-fit: cover;
     object-fit: cover;
}
.wrapper .page .banner .banner_bottom_text {
  width: 100%;
  height: auto;
  background-color: #2C2C2C;
  margin-top: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .page .banner .banner_bottom_text .banner_bottom_items_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0;
}
.wrapper .page .banner .banner_bottom_text .banner_bottom_items_container .main-text {
  color: #C4A386;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  font-family: "Playfair Display";
}
.wrapper .page .banner .banner_bottom_text .banner_bottom_items_container .banner_bottom_items {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1200px) {
  .wrapper .page .banner .banner_bottom_text .banner_bottom_items_container .banner_bottom_items {
    marign: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.wrapper .page .banner .banner_bottom_text .banner_bottom_items_container .banner_bottom_items .banner_bottom_item {
  width: 260px;
  margin: 10px 0;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.wrapper .page .banner .banner_bottom_text .banner_bottom_items_container .banner_bottom_items .banner_bottom_item .text {
  margin-left: 10px;
  color: white;
}
.wrapper .page .banner .banner_bottom_text .banner_bottom_items_container .banner_bottom_items .banner_bottom_item .text p {
  margin: 5px 0;
}
.wrapper .page .about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wrapper .page .about .about_content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1220px) {
  .wrapper .page .about .about_content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.wrapper .page .about .about_content .about_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 578px;
}
.wrapper .page .about .about_content .about_text h1 {
  font-size: 60px;
  font-weight: 400;
  max-width: 592px;
  margin: 10px 0;
}
.wrapper .page .about .about_content .about_text p {
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
}
.wrapper .page .about .about_content .about_text p:nth-child(1) {
  margin-bottom: 40px;
}
.wrapper .page .about .about_content .about_media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .page .about .about_content .about_media .about_media_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.wrapper .page .about .about_content .about_media .about_media_item img {
  width: 100%;
  position: relative;
}
.wrapper .page .about .about_content .about_media .about_media_item:nth-child(2) {
  margin-top: 80px;
  margin-left: 16px;
}
@media (max-width: 800px) {
  .wrapper .page .about .about_content .about_media .about_media_item {
    width: 47%;
  }
}
.wrapper .page .about .about_footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wrapper .page .about .about_footer .about_footer_item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33.333%;
          flex: 1 1 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.wrapper .page .about .about_footer .about_footer_item h1 {
  font-size: 60px;
  font-weight: 400;
  margin: 10px 0;
  margin-right: 15px;
}
.wrapper .page .about .about_footer .about_footer_item p {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 800px) {
  .wrapper .page .about .about_footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20px 10px;
  }
}
.wrapper .page .services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wrapper .page .services .services_head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.wrapper .page .services .services_head h1 {
  font-size: 60px;
  font-weight: 400;
  max-width: 778px;
  margin: 10px 0;
}
.wrapper .page .services .services_content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
}
@media (max-width: 860px) {
  .wrapper .page .services .services_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wrapper .page .services .services_content .services_content_item {
    margin: 20px 0;
  }
  .wrapper .page .services .services_content .services_content_item .services_content_item_text {
    border-bottom: 1px solid #2C2C2C;
  }
}
.wrapper .page .services .services_content .services_content_item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33.333%;
          flex: 1 1 33.333%;
  padding: 0 40px;
  height: 416px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wrapper .page .services .services_content .services_content_item .services_content_item_text h1 {
  font-size: 36px;
  font-weight: 400;
  margin: 0;
}
.wrapper .page .services .services_content .services_content_item .services_content_item_text p {
  font-weight: 300;
}
.wrapper .page .works .works_content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 900px) {
  .wrapper .page .works .works_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.wrapper .page .works .works_content .works_desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 100%;
}
@media (max-width: 900px) {
  .wrapper .page .works .works_content .works_desktop {
    width: 100%;
  }
}
.wrapper .page .works .works_content .works_desktop .works_text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.wrapper .page .works .works_content .works_desktop .works_text h1 {
  font-size: 52px;
  font-weight: 400;
  margin: 10px 0;
  max-width: 542px;
}
.wrapper .page .works .works_content .works_desktop .works_main_item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 596px;
}
.wrapper .page .works .works_content .works_desktop .works_main_item img {
  width: 100%;
}
.wrapper .page .works .works_content .works_desktop .works_main_item h3 {
  font-size: 36px;
  font-weight: 400;
  margin: 10px 0;
}
.wrapper .page .works .works_content .works_desktop .works_main_item p {
  font-size: 14px;
  font-weight: 300;
}
.wrapper .page .works .works_content .works_desktop .works_main_item .button {
  margin-top: 96px;
}
@media (max-width: 900px) {
  .wrapper .page .works .works_content .works_desktop .works_main_item {
    display: none;
  }
}
.wrapper .page .works .works_content .works_items {
  margin-left: 88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 900px) {
  .wrapper .page .works .works_content .works_items {
    margin-left: 0;
  }
}
.wrapper .page .works .works_content .works_items .works_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 480px;
  margin-top: 20px;
}
@media (max-width: 530px) {
  .wrapper .page .works .works_content .works_items .works_item {
    width: 100%;
  }
}
.wrapper .page .works .works_content .works_items .works_item:nth-child(1) {
  display: none;
}
@media (max-width: 900px) {
  .wrapper .page .works .works_content .works_items .works_item:nth-child(1) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.wrapper .page .works .works_content .works_items .works_item img {
  width: 100%;
}
.wrapper .page .works .works_content .works_items .works_item h3 {
  font-size: 36px;
  font-weight: 400;
  margin: 10px 0;
}
.wrapper .page .works .works_content .works_items .works_item p {
  font-size: 14px;
  font-weight: 300;
  margin: 10px 0;
}
.wrapper .page .works .works_content .works_items .works_item .button {
  display: none;
}
.wrapper .page .contact {
  padding: 88px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper .page .contact .contact_title h1 {
  color: #2C2C2C;
  font-size: 48px;
  max-width: 592px;
  font-weight: 500;
  margin: 10px 0;
}
.wrapper .page .contact .contact_title h3 {
  color: #996830;
  font-size: 48px;
  max-width: 592px;
  font-weight: 500;
  margin: 10px 0;
  font-style: italic;
}
.wrapper .page .contact .contact_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.wrapper .page .contact .contact_info .contact_info_item {
  margin: 10px 0;
}
.wrapper .page .contact .contact_info .contact_info_item h3 {
  font-size: 24px;
  font-weight: 400;
  color: #2C2C2C;
  margin: 10px 0;
}
.wrapper .page .contact .contact_info .contact_info_item h3.d {
  font-size: 14px;
}
.wrapper .page .contact .contact_info .contact_info_item p {
  font-size: 14px;
  font-weight: 400;
  color: #2C2C2C;
  margin: 10px 0;
  max-width: 280px;
}
.wrapper .page .contact .contact_info .contact_info_item p.orange {
  color: #996830;
  font-size: 24px;
}
.wrapper .footer .footer_container {
  padding: 80px 5px;
  border-top: 1px solid grey;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 990px) {
  .wrapper .footer .footer_container {
    width: 100%;
    padding: 24px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.wrapper .footer .footer_container .footer_copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 16px;
  font-weight: 400;
}
.wrapper .footer .footer_container .footer_copy.orange {
  color: #996830;
}
@media (max-width: 990px) {
  .wrapper .footer .footer_container .footer_copy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrapper .footer .footer_container .footer_media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 990px) {
  .wrapper .footer .footer_container .footer_media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.wrapper .footer .footer_container .footer_media .footer_media_socials a {
  margin: 0px 12px;
}
@media (max-width: 990px) {
  .wrapper .footer .footer_container .footer_media .footer_media_socials a:nth-child(1) {
    margin-left: 0;
    margin-right: 12px;
  }
}
@media (max-width: 990px) {
  .wrapper .footer .footer_container .footer_media .footer_media_socials {
    margin: 12px 0;
  }
}

.button {
  width: 138px;
  height: 44px;
  background-color: #996830;
  padding: 0px 20px;
  color: white;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}
.button:hover {
  text-decoration: none;
}

section {
  margin: 20px auto;
}

.array {
  width: 15px;
  height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  margin-left: 10px;
}
.array span {
  content: "";
  background-color: white;
  width: 100%;
  height: 2px;
}
.array span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(4px, -1px);
          transform: rotate(45deg) translate(4px, -1px);
}
.array span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(4px, 1px);
          transform: rotate(-45deg) translate(4px, 1px);
}

.page {
  margin-top: 68px;
}

.top-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10px 0;
}
.top-line span {
  content: "";
  width: 64px;
  height: 1px;
  background-color: #996830;
}
.top-line p {
  text-transform: uppercase;
  color: #996830;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin-left: 15px;
}