/* 
    font-family: 'Montserrat', sans-serif;
    champagne color: #A48F7A
    light-gray color: #EEEEEE
    navy-blue color: #2F4858
*/



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  max-width: 1920px;
  margin: 0 auto;
}

.on {
  display: flex;
}

.hide {
  display: none;
  cursor: none;
  width: 0;
  height: 0;
}

.hidden {
  opacity: 0;
}

.appeared {
  animation: appearSth 1.2s;
}


@keyframes appearSth {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}


/* group elements like titles and subtitles of each section  */
.header,
.about,
.products,
.realizations,
.advantages,
.manufacturers,
.footer {
  width: 96%;
  margin: 0 auto;
}

.products__title,
.realizations__title,
.advantages__title,
.manufacturers__title,
.contact__section-title {
  text-align: center;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 10% 0 5%;
  letter-spacing: 4px;
}

.products__title,
.realizations__title {
  margin-bottom: 0;
}

.realizations__title {
  margin-top: calc(10% - 50px);
}

.products__description,
.realizations__description {
  font-size: 22px;
  text-align: center;
  margin: 1% auto 5%;
  width: 60%;
}

.products__description {
  margin-bottom: calc(5% - 50px);
}

@media (max-width: 1600px) {

  .products__description,
  .realizations__description {
    font-size: 20px;
    text-align: center;
    margin: 1% auto 5%;
    width: 100%;
  }
}

/* navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  position: fixed;
  top: -1px;
  width: 100%;
  max-width: 1920px;
  background-color: #fff;
  z-index: 3;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(156, 156, 156, 0.5);
  -moz-box-shadow: 0px 2px 5px 0px rgba(156, 156, 156, 0.5);
  box-shadow: 0px 2px 5px 0px rgba(156, 156, 156, 0.5);
}

.nav__logo-link {
  margin-left: 2%;
}

.nav__logo-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-left: 2%;
  color: #A48F7A;
}

.nav__logo {
  height: 90px;
}

.nav__hamburger-menu {
  display: none;
}

.nav__logo-link {
  text-decoration: none;
  color: black;
}

.nav__links {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
  list-style: none;
}

.nav__element {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 25px 25px;
}

.nav__link {
  position: relative;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  overflow: hidden;
  background-color: #fff;
  color: black;
  cursor: pointer;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background-color: #A48F7A;
  transition: 0.5s;
}

.nav__link:hover::after {
  left: 0;
}

.nav__others {
  padding-right: 150px;
}

/* first submenu */
.nav__submenu {
  display: none;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  width: 100%;
  margin: auto;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
}

.nav__submenu:hover {
  display: block;
  position: absolute;
  top: 20px;
  width: 200px;
  background-color: #fff;
}

.nav__element--dropdown:hover .nav__submenu {
  display: block;
  position: absolute;
  top: 90px;
  width: 100%;
  background-color: #fff;
}

.nav__submenu-list {
  display: flex;
  justify-content: space-between;
  width: 96%;
  list-style: none;
  height: 160px;
  margin: 0 auto;
}

.nav__submenu-element {
  display: flex;
  justify-content: center;
  width: 15%;
  transition: 0.4s;
}

.nav__submenu-link {
  font-size: 16px;
  margin: 15px auto;
  color: #A48F7A;
  text-decoration: none;
}

.nav__second-submenu-title--items-alignment {
  display: flex;
  align-items: center;
}

/* second submenu in first submenu XDD */
.nav__second-submenu-list {
  list-style: none;
}

.nav__second-submenu-title {
  font-size: 14px;
  margin: 15px auto;
  color: #A48F7A;
}

.nav__second-submenu-link {
  text-decoration: none;
  color: black;
}

.nav__second-submenu-elem {
  margin: 10px auto;
  font-size: 12px;
}

.nav__second-submenu-list--flex {
  display: flex;
  justify-content: center;
  align-items: space-around;
  width: 100%;
}

.nav__second-submenu-title--flex {
  width: 33.33%;
}

.nav__button {
  background-color: #A48F7A;
  color: #fff;
  border: none;
  height: 60%;
  width: 10%;
  font-size: 14px;
  margin-right: 2%;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: bold;
  transition: 0.4s;
}

.nav__button:hover {
  background-color: #574b3f;
}

.nav__btn-link {
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: white;
}

.contact__field-container {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 4;
}

.contact__field {
  position: fixed;
  top: 0;
  right: -30%;
  width: 30%;
  height: 100%;
  background-color: #F7F7F7;
  z-index: 4;
  transition: 1s;
}

.contact__field--small {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: #F7F7F7;
  z-index: 4;
  transition: 1s;
}


.contact__field-title {
  font-size: 22px;
  font-weight: bold;
  margin: 5% 5%;
}

.contact__field-title::after {
  position: absolute;
  content: '';
  top: 10%;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(153, 153, 153, .7);
}

.contact__field-description {
  display: flex;
  margin: 12% 0 5% 10%;
  width: 80%;
}

.contact__field-icon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__field-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  width: 80%;
  height: 50px;
  margin: 5px;
  border: none;
  background-color: #A48F7A;
  color: white;
  word-break: keep-all;
}

.contact__field-icon {
  width: 16px;
  height: 16px;
  margin: 5px;
}

.contact__field-icon-txt {
  font-size: 16px;
}

.contact__field-form {
  display: block;
  margin: 2% auto;
  text-align: center;
}

.contact__field-form-input,
.contact__field-form-btn,
.contact__field-form-textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  width: 80%;
  height: 50px;
  margin: 5px;
  border: none;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(219, 216, 219, 1);
  -moz-box-shadow: 0px 5px 15px 0px rgba(219, 216, 219, 1);
  box-shadow: 0px 5px 15px 0px rgba(219, 216, 219, 1);
}

.contact__field-form-input {
  padding-left: 5%;
}

.contact__field-form-textarea {
  height: 150px;
  padding: 2% 0 0 5%;
}

.contact__field-form-btn {
  background-color: #A48F7A;
  cursor: pointer;
  transition: 0.4s;
  color: white;
  padding: auto;
}

.contact__field-form-btn:hover {
  background-color: #574b3f;
}

.contact__socials {
  display: flex;
  justify-content: space-evenly;
  width: 80%;
  margin: 4% auto;
}

.contact__social {
  transform: scale(1);
  transition: 0.4s;
}

.contact__social:hover {
  transform: scale(1.2);
}

.contact__field-close {
  position: absolute;
  top: 3%;
  right: 5%;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

@media(max-width: 1399px) {
  .nav__submenu-list {
    height: 190px;
  }

  .contact__field-title {
    font-size: 26px;
  }

  .contact__field-description {
    margin: 20% 0 2% 5%;
    font-size: 14px;
  }

  .contact__field-icon-container {
    margin: 10% 0;
  }

  .contact__field-icon-box {
    height: 40px;
    font-size: 14px;
  }

  .contact__field-form {
    margin: 20% 0;
  }

  .contact__field-form-input,
  .contact__field-form-btn,
  .contact__field-form-textarea {
    font-size: 14px;
    height: 40px;
  }

  .contact__field-form-textarea {
    height: 130px;
  }
}

@media(max-width: 1199px) {

  .contact__field-title {
    font-size: 22px;
    margin: 10%;
  }

  .contact__field-description {
    margin: 30% 0 2% 5%;
    font-size: 14px;
  }

  .nav__logo-link {
    display: none;
  }

  .nav__submenu:hover {
    display: none;
  }

  .nav__element--dropdown:hover .nav__submenu {
    display: none;
  }

  .nav__links.on {
    position: absolute;
    top: 0;
    padding-top: 90px;
  }

  .nav__links {
    flex-direction: column;
    position: absolute;
    top: -60vh;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    width: 100%;
    height: 60vh;
    transition: 1s;
  }

  .nav__element {
    height: 10%;
    width: 100%;
  }

  .nav__hamburger-menu {
    margin-left: 2%;
    display: flex;
    justify-content: center;
    z-index: 4;
  }

  .nav__hamburger-menu-icon {
    width: 50px;
    height: 50px;
  }
}

@media(max-width: 991px) and (orientation: portrait) {
  .nav__button {
    font-size: 16px;
    width: 15%;
  }

  .nav__links {
    width: 100%;
  }

  .nav__link {
    font-size: 12px;
  }

  .contact__field-title {
    font-size: 18px;
    margin: 10%;
  }

  .contact__field-description {
    margin: 25% 0 2% 10%;
    font-size: 16px;
  }

  .contact__field-icon-container {
    flex-direction: column;
    align-items: center;
  }

  .contact__field-icon-box {
    height: 40px;
    width: 80%;
    font-size: 16px;
  }

  .contact__field-icon {
    width: 25px;
    height: 25px;
  }

  .contact__field-form {
    margin: 2% 0;
  }

  .contact__socials {
    margin: 8% auto;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .nav {
    justify-content: space-between;
  }

  .nav__logo {
    display: none;
  }

  .nav__submenu:hover {
    display: none;
  }

  .nav__element--dropdown:hover .nav__submenu {
    display: none;
  }

  .nav__links.on {
    position: absolute;
    top: 0;
    padding-top: 90px;
  }

  .nav__links {
    flex-direction: column;
    position: absolute;
    top: -70vh;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    width: 100%;
    height: 70vh;
    transition: 1s;
  }

  .nav__element {
    height: 10%;
    width: 100%;
  }

  .nav__hamburger-menu {
    display: flex;
    z-index: 4;
  }

  .nav__hamburger-menu-icon {
    width: 50px;
    height: 50px;
  }

  .contact__field-title {
    font-size: 20px;
    margin: 2% 10%;
  }

  .contact__field-description {
    display: none;
  }

  .contact__field-icon-container {
    flex-direction: row;
    align-items: center;
    margin: 0 auto;
  }

  .contact__field-icon-box {
    display: none;
  }

  .contact__field-title::after {
    position: absolute;
    content: '';
    top: 15%;
    right: 0;
    height: 1px;
    width: 100%;
    background-color: rgba(153, 153, 153, .7);
  }

  .contact__socials {
    display: none;
  }
}

@media (max-width: 575px) and (orientation: portrait) {
  .nav {
    justify-content: space-between;
  }

  .nav__button {
    width: 30%;
  }

  .contact__field-form {
    margin: 20% 0;
  }

  .nav__submenu {
    display: none;
  }

  .nav__submenu:hover {
    display: none;
  }

  .contact__field-title::after {
    top: 10%;
  }
}

/* shop icon */

.shop__icon-container {
  position: fixed;
  top: 120px;
  right: -20px;
  width: 100px;
  height: 45px;
  z-index: 3;
  padding: 15px 50px 15px 15px;
  background-color: #A48F7A;
  border-radius: 10px;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

.shop__icon {
  position: absolute;
  width: 25px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

/* go top icon */
.top__icon-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 3;
  padding: 15px 50px 15px 15px;
  background-color: #A48F7A;
  border-radius: 50%;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

.top__icon {
  position: absolute;
  width: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* header - big hero img and txt */
.header {
  position: relative;
  height: 95vh;
  overflow: hidden;
  background-color: #A48F7A;
}


.header__carousel-track {
  position: absolute;
  list-style-type: none;
  height: 100%;
  width: 100%;
  transition: 0.8s;
}

.header__carousel-slide {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
}

.header__carousel-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.header__carousel-img--1 {
  background-image: url(../img/491_gallery1_1551869303.jpg);
  background-attachment: fixed;
}

.header__carousel-img--2 {
  background-image: url(../img/secondBanerImg.jpg);
}

.header__carousel-img--3 {
  background-image: url(../img/glowne3.jpg);
}

.header__carousel-nav {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.header__carousel-circle-nav {
  border: 0;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 10px;
  transition: 0.5s;
  cursor: pointer;
}

.header__carousel-circle-nav.current-slide {
  background-color: rgba(255, 255, 255, 1);
}

.header__text {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  color: white;
  font-size: 60px;
  text-transform: uppercase;
  z-index: 2;
  font-weight: medium;
  padding: 0 10%;
}

.header__arrow-container {
  position: absolute;
  display: flex;
  height: calc(100% - 60px);
  top: 60px;
  width: 10%;
  z-index: 2;
  cursor: pointer;
}

.header__arrow-container--next {
  right: 0;
}

.header__arrow--prev {
  z-index: 2;
}

.header__arrow--next {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}

.header--shade {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

@media (max-width: 1399px) {
  .header__text {
    font-size: 50px;
    top: 40%;
  }
}

@media (max-width: 1199px) {
  .header {
    height: 80vh;
  }

  .header__text {
    font-size: 40px;
  }
}

@media (max-width: 991px) and (orientation: portrait) {
  .header {
    height: 70vh;
  }

  .header__text {
    font-size: 30px;
    top: 40%;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .header {
    height: 100vh;
  }

  .header__text {
    top: 40%;
  }
}

@media (max-width: 575px) and (orientation: portrait) {

  .header__text {
    font-size: 30px;
    top: 50%;
  }

  .shop__icon-container {
    right: -50px;
  }
}

@media (max-width: 360px) and (orientation: portrait) {
  .shop__icon-container {
    right: -50px;
  }

  .header__text {
    font-size: 22px;
    top: 50%;
  }
}

/* about us section */
.about {
  display: flex;
  padding-top: 40px;
}

.about__text-container {
  padding: 5% 1%;
  width: 40%;
  background-color: #EEEEEE;
  text-align: center;
}

.about__title {
  font-size: 30px;
  margin-bottom: 5%;
}

.about__description {
  font-size: 16px;
  line-height: 150%;
  width: 100%;
}

.about__description span {
  display: block;
  margin-top: 5%;
}

.about__img-bg {
  width: 60%;
  background-image: url(../img/pratic_pergole_07_vision_scheda.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 1670px) {
  .about__text-container {
    padding: 3% 0;
  }
}

@media (max-width: 1550px) {
  .about__text-container {
    padding: 2% 0;
  }
}

@media (max-width: 1399px) {
  .about__title {
    font-size: 25px;
  }

  .about__description {
    font-size: 14px;
  }

  .about__text-container {
    padding: 2% 0;
  }
}

@media (max-width: 1199px) {
  .about__title {
    font-size: 25px;
  }

  .about__description {
    font-size: 14px;
    line-height: 140%;
  }
}

@media (max-width: 991px) and (orientation: portrait) {
  .about {
    flex-direction: column;
  }

  .about__text-container {
    width: 100%;
  }

  .about__title {
    font-size: 26px;
  }

  .about__description {
    font-size: 14px;
  }

  .about__img-bg {
    width: 100%;
    height: 500px;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .about__text-container {
    height: 100vh;
  }
}

@media (max-width: 575px) and (orientation: portrait) {
  .about {
    flex-direction: column;
  }

  .about__text-container {
    width: 100%;
    height: 100%;
  }

  .about__title {
    font-size: 28px;
  }

  .about__description {
    font-size: 12px;
  }

  .about__img-bg {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 360px) and (orientation: portrait) {

  .about__img-bg {
    height: 200px;
  }
}


/* advantages section */
.advantages__container {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 5% 0;
  background-color: #EEEEEE;
}

.advantages__single-advantage-box {
  text-align: center;
  width: 25%;
}

.advantages__icon-wrapper {
  margin: 5% 0;
}

.advantages__icon {
  width: 100px;
  height: 100px;
}

.advantages__single-advantage-title {
  font-size: 26px;
  color: #2F4858;
  font-weight: medium;
}

.advantages__single-advantage-content {
  margin: 5%;
}

@media(max-width: 991px) and (orientation: portrait) {
  .advantages__title {
    font-size: 30px;
    letter-spacing: 2px;
  }

  .advantages__single-advantage-title {
    font-size: 22px;
  }

  .advantages__icon {
    height: 100px;
    width: 100px;
  }
}

@media(max-width: 767px) and (orientation: portrait) {

  .advantages__single-advantage-title {
    font-size: 18px;
  }

  .advantages__single-advantage-content {
    font-size: 14px;
  }

  .advantages__icon {
    height: 70px;
    width: 70px;
  }
}

@media(max-width: 575px) and (orientation: portrait) {
  .advantages__title {
    font-size: 24px;
    letter-spacing: 1px;
  }

  .advantages__container {
    flex-direction: column;
    align-items: center;
  }

  .advantages__icon {
    height: 60px;
    width: 60px;
  }

  .advantages__single-advantage-box {
    width: 100%;
  }

  .advantages__single-advantage-title {
    font-weight: bold;
    text-align: center;
  }

  .advantages__single-advantage-content {
    text-align: center;
  }

}

/* Our products section */

.products__cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: space-between;
}

.products__card-link {
  text-decoration: none;
  color: black;
}

.products__card {
  position: relative;
  width: 25%;
  height: 600px;
  margin: 0 calc(25% / 6);
  margin-bottom: 50px;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.products__card:hover {
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.6);
}

.products__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.products__description-mid {
  font-size: 26px;
  margin: 5% 0 0 10%;
  font-weight: bold;
}

.products__description-bottom {
  font-size: 14px;
  margin: 2% 4% 0 10%;
}

.products__read-more-button {
  position: absolute;
  display: block;
  left: 10%;
  bottom: 5%;
  font-size: 14px;
  color: #c4c4c4;
  cursor: pointer;
}


.products__btn-link {
  text-decoration: none;
  color: #c4c4c4;
  transition: 0.3s;
}

.products__btn-link:hover {
  color: black;
}

@media (max-width: 1600px) {
  .products__card {
    width: 30%;
    margin: 0 calc(10% / 6) 50px;
  }

  .products__description-mid {
    font-size: 20px;
    margin: 5% 0 5% 10%;
  }

  .products__description-bottom {
    font-size: 14px;
  }
}

@media (max-width: 1400px) {

  .products__description-mid {
    font-size: 20px;
    margin: 2% 0 2% 10%;
  }

  .products__description-bottom {
    font-size: 14px;
    margin: 2% 20% 0 10%;
  }

  .products__read-more-button {
    left: 10%;
    bottom: 3%;
  }
}

@media (max-width: 1199px) {
  .products__card {
    width: 45%;
    margin: 0 calc(10% / 4) 50px;
  }

  .products__description-mid {
    font-size: 18px;
    margin: 2% 0 2% 10%;
  }

  .products__description-bottom {
    font-size: 12px;
    margin: 2% 20% 0 10%;
  }

  .products__read-more-button {
    left: 10%;
    bottom: 5%;
  }
}

@media(max-width: 991px) and (orientation: portrait) {
  .products__title {
    font-size: 30px;
    letter-spacing: 2px;
  }

  .products__description {
    font-size: 22px;
  }

  .products__card {
    height: 500px;
  }

  .products__img {
    width: 100%;
    height: 250px;
  }

  .products__description-top {
    font-size: 12px;
  }

  .products__description-mid {
    font-size: 16px;
  }

  .products__description-bottom {
    font-size: 12px;
    margin: 2% 2% 2% 10%;
  }

}

@media(max-width: 767px) and (orientation: portrait) {

  .products__description {
    font-size: 16px;
  }

  .products__card {
    width: 80%;
    height: 70vh;
  }

  .products__img {
    width: 100%;
    height: 40vh;
  }

  .products__description-top {
    font-size: 10px;
  }

  .products__description-mid {
    font-size: 16px;
    font-weight: bold;
  }


  .products__read-more-button {
    font-size: 14px;
  }
}

@media(max-width: 575px) and (orientation: portrait) {
  .products__title {
    font-size: 24px;
    letter-spacing: 1px;
  }

  .products__description {
    font-size: 14px;
  }

  .products {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .products__img {
    width: 100%;
    height: 30vh;
  }

  .products__title,
  .products__description {
    width: 100%;
    margin-bottom: 5%;
  }

  .products__cards-container,
  .products__cards-container--bottom {
    flex-direction: column;
    width: 90%;
    margin: 0;
    justify-content: center;
    align-items: center;
  }

  .products__card {
    width: 100%;
    margin-bottom: 10%;
  }
}


/* Our realizations section */

.realizations__top-box,
.realizations__bottom-box {
  display: flex;
}

.realizations__img-wrapper {
  position: relative;
  width: 30%;
  height: 400px;
}

.realizations__img-wrapper:hover .realizations__img-hover-bg {
  opacity: 0.7;
}

.realizations__img-wrapper:hover .realizations__img-hover-txt {
  opacity: 1;
}

.realizations__img-wrapper--long-img {
  width: 40%;
}

.realizations__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.realizations__img-hover-bg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  transition: 0.3s;
  color: white;
  text-align: center;
}

.realizations__img-hover-txt {
  font-size: 25px;
}

.realizations__btn-link {
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: white;
}

.realizations__button {
  display: block;
  width: 400px;
  height: 80px;
  margin: 5% auto 1%;
  border: none;
  color: white;
  background-color: #A48F7A;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  transition: 0.4s;
}

.realizations__button:hover {
  background-color: #574b3f;
}

@media (max-width: 1400px) {
  .realizations__img-wrapper {
    height: 300px;
  }

  .realizations__img {
    height: 300px;
  }

  .realizations__img-hover-bg {
    height: 300px;
  }
}

@media (max-width: 1199px) {
  .realizations__img-wrapper {
    height: 280px;
  }

  .realizations__img {
    height: 280px;
  }

  .realizations__img-hover-bg {
    height: 280px;
  }
}

@media (max-width: 991px) and (orientation: portrait) {
  .realizations__title {
    font-size: 30px;
    letter-spacing: 2px;
  }

  .realizations__description {
    font-size: 22px;
  }

  .realizations__img-wrapper {
    height: 250px;
  }

  .realizations__img {
    height: 250px;
  }

  .realizations__img-hover-bg {
    height: 250px;
  }

  .realizations__button {
    width: 300px;
    height: 60px;
    font-size: 16px;
  }
}

@media (max-width: 767px) and (orientation: portrait) {

  .realizations__description {
    font-size: 16px;
  }
}

@media (max-width: 575px) and (orientation: portrait) {
  .realizations__title {
    font-size: 24px;
    letter-spacing: 1px;
  }

  .realizations__description {
    font-size: 14px;
  }

  .realizations__top-box,
  .realizations__bottom-box {
    flex-direction: column;
  }

  .realizations__img-wrapper {
    position: relative;
    width: 100%;
    height: 50vh;
    margin-bottom: 1%;
  }

  .realizations__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 360px) and (orientation: portrait) {
  .realizations__description {
    width: 95%;
  }

}

/* manufacturers section */
.manufacturers__logo-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  margin: 10% auto;
}

.manufacturers__manufacturer-logo-box {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 15%;
  height: 100px;
  transition: 0.3s;
  margin: 0 auto;
}

.manufacturers__manufacturer-logo-box a {
  width: 100%;
}

.manufacturers__manufacturer-logo-box--right-line::before {
  position: absolute;
  content: '';
  top: -20%;
  right: -30%;
  width: 1px;
  height: 140%;
  background-color: rgba(153, 153, 153, .7);
}

.manufacturers__manufacturer-logo-box--bottom-line::after {
  content: '';
  position: absolute;
  bottom: -90%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(153, 153, 153, .7);
}

.manufacturers__manufacturer-logo-box:hover .manufacturers__manufacturer-logo {
  filter: none;
}

.manufacturers__manufacturer-logo-box:hover {
  opacity: 1;
}

.manufacturers__manufacturer-logo {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  object-fit: contain;
}

.manufacturers__manufacturer-logo-box--opacity {
  opacity: 0.5;
}

.manufacturers__title {
  width: 70%;
  margin: 9% auto 10%;
}


@media (max-width: 1600px) {
  .manufacturers__manufacturer-logo-box--bottom-line::after {
    content: '';
    position: absolute;
    bottom: -75%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(153, 153, 153, .7);
  }
}

@media (max-width: 1199px) {
  .manufacturers__manufacturer-logo-box--bottom-line::after {
    content: '';
    position: absolute;
    bottom: -60%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(153, 153, 153, .7);
  }
}

@media (max-width: 991px) and (orientation: portrait) {
  .manufacturers__title {
    font-size: 30px;
    letter-spacing: 2px;
  }

  .manufacturers__manufacturer-logo-box {
    height: 80px;
  }

  .manufacturers__manufacturer-logo-box--bottom-line::after {
    bottom: -60%;
  }
}

@media (max-width: 575px) and (orientation: portrait) {
  .manufacturers__title {
    margin: 20% auto 5%;
    font-size: 24px;
    letter-spacing: 1px;
    width: 90%;
  }

  .manufacturers__logo-wrapper {
    flex-wrap: wrap;
  }

  .manufacturers__manufacturer-logo-box {
    display: flex;
    justify-content: center;
    height: 15vh;
    width: 45%;
  }

  .manufacturers__manufacturer-logo-box--right-line::before,
  .manufacturers__manufacturer-logo-box--bottom-line::after {
    display: none;
  }

  .manufacturers__manufacturer-logo {
    filter: none;
  }

  .manufacturers__manufacturer-logo-box--opacity {
    opacity: 1;
  }
}

@media (max-width: 360px) and (orientation: portrait) {
  .manufacturers__title {
    margin: 20% auto 5%;
    font-size: 24px;
    width: 95%;
  }

}

/* footer */
.footer__map-container {
  position: relative;
  width: 100%;
  height: 600px;
}

.footer__infowindow-close {
  position: absolute;
  right: 5%;
  top: 3%;
  width: 30px;
  height: 30px;
  color: #A48F7A;
  cursor: pointer;
}

.footer__infowindow-full {
  position: absolute;
  top: 20%;
  left: 36%;
  width: 40px;
  height: 40px;
  color: #A48F7A;
  transform: scale(0);
  cursor: pointer;
  transition: 1s;
}

.footer__map-infowindow {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 25%;
  height: 85%;
  background-color: #fff;
  box-shadow: 0 44px 98px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-50%);
  transition: 1s;
}

.footer__infowindow-top,
.footer__infowindow-bottom {
  width: 100%;
  margin: 12% 0 12% 12%;
}

.footer__infowindow-top {
  line-height: 200%;
}

.footer__infowindow-title {
  margin: 5% 0;
  font-weight: bold;
}

.footer__infowindow-title-btm {
  margin-bottom: 2%;
  font-weight: bold;
}

.footer__info-box {
  display: flex;
  align-items: center;
  margin-top: 2%;
}

.footer__map-icon {
  width: 18px;
  height: 18px;
  margin-right: 5%;
}

.footer__open-hours-list {
  list-style-type: none;
  width: 100%;
}

.footer__open-hours-item {
  display: flex;
  font-size: 14px;
  margin: 5% auto;
  width: 100%;
}

.footer__days {
  width: 20%;
}

.footer__hours {
  width: 50%;
  text-align: right;
}

.footer__content-container {
  background-color: #2F4858;
  width: 100%;
  height: 600px;
}

.footer__content-top {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0 10%;
  padding: 5% 0 5% 0;
  width: 80%;
}

.footer__nav {
  display: flex;
  justify-content: space-around;
  list-style-type: none;
  width: 50%;
}

.footer__nav-element {
  margin: 0 1%;
  transition: 0.4s;
}

.footer__nav-element:hover {
  transform: scale(1.3);
}

.footer__nav-link {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

.footer__socials {
  display: flex;
  justify-content: space-around;
  width: 20%;
  margin-left: 35%;
}

.footer__social {
  transform: scale(1);
  transition: 0.3s;
}

.footer__social:hover {
  transform: scale(1.4);
  color: #DFE0DF;
}

.footer__content-mid {
  display: flex;
  position: relative;
  justify-content: space-around;
  align-items: flex-start;
  margin: 0 10%;
  width: 80%;
}

.footer__content-mid::before {
  position: absolute;
  content: '';
  top: -30%;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(153, 153, 153, .7);
}

.footer__content-mid::after {
  position: absolute;
  content: '';
  bottom: -30%;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(153, 153, 153, .7);
}

.footer__left-box,
.footer__mid-box,
.footer__right-box {
  width: 30%;
}

.footer__logo-link {
  width: 100%;
}

.footer__logo-box {
  width: 100%;
}

.footer__logo {
  width: 90%;
}

.footer__title {
  color: #A48F7A;
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5%;
}

.footer__mid-box {
  display: flex;
  flex-direction: column;
}

.contact__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}

.contact__info-box {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin: 2% 0;
}

.contact__icon {
  width: 18px;
  height: 18px;
  margin-right: 5%;
}

.footer__menu {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer__links {
  margin: 2% 0;
}

.footer__link {
  text-decoration: none;
  color: white;
  font-size: 18px;
}

.footer__content-bottom {
  position: relative;
  bottom: -15%;
  text-align: center;
  color: white;
}

@media (max-width: 1600px) {
  .footer__map-infowindow {
    width: 25%;
  }
}

@media (max-width: 1441px) {
  .footer__map-infowindow {
    width: 25%;
  }
}

@media (max-width: 1400px) {
  .footer__nav-link {
    font-size: 14px;
  }

  .footer__content-mid::before {
    top: -20%;
  }

  .footer__content-mid::after {
    bottom: -20%;
  }
}

@media (max-width: 1399px) {
  .footer__map-infowindow {
    width: 25%;
    height: 65%;
  }
}

@media (max-width: 1199px) {
  .footer__content-mid::before {
    top: -15%;
  }

  .footer__content-mid::after {
    bottom: -15%;
  }

  .footer__description {
    font-size: 16px;
  }
}

@media (max-width: 991px) and (orientation: portrait) {
  .footer__map-infowindow {
    left: 15%;
    width: 32%;
    height: 60%;
  }

  .footer__nav {
    width: 60%;
  }

  .footer__nav-link {
    font-size: 12px;
  }

  .footer__socials {
    width: 25%;
    margin-left: 10%;
  }

  .footer__title {
    font-size: 18px;
  }

  .footer__link {
    font-size: 14px;
  }

  .contact__info-box {
    font-size: 14px;
  }

  .contact__icon {
    height: 20px;
    width: 20px;
  }

  .footer__content-container {
    background-color: #2F4858;
    width: 100%;
    height: 350px;
  }

  .footer__content-bottom {
    bottom: -12%;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .footer__map {
    height: 100vh;
  }

  .footer__map-infowindow {
    width: 40%;
    height: 60%;
  }

  .footer__content-mid {
    margin: 0 auto;
    justify-content: space-between;
  }

  .footer__social {
    height: 25px;
    width: 25px;
  }

  .contact__info-box {
    font-size: 12px;
  }

  .footer__link {
    font-size: 12px;
  }
}

@media (max-width: 575px) and (orientation: portrait) {
  .footer__map-infowindow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 60%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    box-shadow: 0 44px 98px 0 rgba(0, 0, 0, 0.1);
    transition: 1s;
  }

  .footer__map-container {
    height: 90vh;
    margin: 0;
  }

  .footer__content-container {
    background-color: #2F4858;
    width: 100%;
    height: 70vh;
    margin-top: 30%;
  }

  .footer__nav {
    display: none;
  }

  .footer__socials {
    width: 80%;
    justify-content: space-around;
    margin: auto;
    padding: 5% 0;
  }

  .footer__left-box {
    display: none;
  }

  .footer__mid-box,
  .footer__right-box {
    width: 50%;
  }
}

@media (max-width: 360px) and (orientation: portrait) {
  .footer__map-infowindow {
    width: 90%;
    height: 80%;
  }

  .footer__socials {
    width: 80%;
    justify-content: space-around;
    margin: 10% auto;
  }

  .footer__left-box {
    display: none;
  }

  .footer__mid-box,
  .footer__right-box {
    width: 50%;
  }

  .footer__right-box {
    text-align: right;
  }

  .footer__title {
    font-size: 16px;
  }
}

.black-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.7;
}

.black-bg p {
  font-size: 30px;
  color: white;
  text-align: center;
  opacity: 1;
}

.main-work {
  position: relative;
  background-image: url(../img/491_gallery1_1551869303.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
}

.main-p-top,
.main-p {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 40px;
  text-align: center;
  z-index: 10;
}

.main-p {
  margin-top: 3%;
}

.main--shade {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}