* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  /*overflow: hidden;*/
  font-family: 'Montserrat', sans-serif;
  background: #fde4d5;
}
h1 {
  font-family: 'Lora', serif;
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.6em;
  color: rgb(133, 35, 35, 0.842);
  font-weight: 300;
  text-align: center;
  text-shadow: 3px 3px 9px rgba(85, 0, 136, 0.5);
}
h3 {
  padding: 15px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  /* text-shadow: 3px 3px 9px rgba(85, 0, 136, 0.5); */
}
h4 {
  padding-left: 15px;
  font-size: 16px;
  color: black;
}
p {
  color: #444;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 15px;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
p {
  padding: 15px;
  line-height: 1.6;
}
.father {
  display: flex;
  flex-flow: column nowrap;
  /* height: auto; */
}
.inner-padding {
  padding: 0 50px;
}
/* start manu */
header.header {
  position: sticky;
  top: 0px;
  background-color: rgb(112, 43, 43);
  width: 100%;
  z-index: 1000;
}
.container {
  max-width: 65rem;
  padding: 0 2rem;
  margin: 0 auto;
  display: flex;
  position: relative;
}
.logo-container {
  flex: 1;
  display: flex;
  align-items: center;
}
.nav-btn {
  flex: 3;
  display: flex;
  /* display: none;*/
}
.nav-links {
  flex: 2;
}
.log-sign {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.logo {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2rem;
}
.logo span {
  font-weight: 300;
}
.btn {
  display: inline-block;
  padding: 0.5rem 1.3rem;
  font-size: 0.7rem;
  border: 2px solid #fff;
  border-radius: 2rem;
  line-height: 1;
  margin: 0 0.2rem;
  transition: 0.3s;
  text-transform: uppercase;
}
.btn.solid,
.btn.transparent:hover {
  background-color: #fff;
  color: #69bde7;
}
.btn.transparent,
.btn.solid:hover {
  background-color: transparent;
  color: #fff;
}
.nav-links > ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-link {
  position: relative;
}
.nav-link > a {
  line-height: 3rem;
  color: #fff;
  padding: 0 0.8rem;
  letter-spacing: 1px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.5s;
}
.nav-link > a > i {
  margin-left: 0.2rem;
  z-index: 50000;
}
.nav-link:hover > a {
  transform: scale(1.1);
}
.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  width: 10rem;
  /*transform: translateY(10px);*/
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}
.dropdown ul {
  position: relative;
}
.dropdown-link > a {
  display: flex;
  background-color: rgb(112, 43, 43);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
}

.dropdown-link:hover > a {
  background-color: #f8662d;
  color: #fff;
}
.dropdown-link:not(:nth-last-child(2)) {
  border-bottom: 1px solid #efefef;
}
.dropdown-link > i {
  transform: rotate(-90deg);
}
.arrow {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5.5px;
  left: 32px;
  background-color: rgb(112, 43, 43);
  transform: rotate(45deg);
  cursor: pointer;
  transition: 0.3s;
  z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow {
  background-color: #f8662d;
}
.dropdown-link {
  position: relative;
}
.dropdown.second {
  top: 0;
  left: 100%;
  padding-left: 0.8rem;
  cursor: pointer;
  /* transform: translateX(10px); */
}
.dropdown.second .arrow {
  top: 10px;
  left: -5.5px;
}
.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown {
  /* transform: translate(0, 0);*/
  opacity: 1;
  pointer-events: auto;
}

/* mobile size */
.hamburger-menu-container {
  flex: 1;
  /* display: flex; */
  display: none;
  align-items: center;
  justify-content: flex-end;
}
.hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger-menu div {
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color: #fff;
  position: relative;
  z-index: 1001;
  transition: 0.5s;
}
.hamburger-menu div::before,
.hamburger-menu div::after {
  content: '';
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: #fff;
  border-radius: 3px;
}

.hamburger-menu div::before {
  transform: translateY(-7px);
}
.hamburger-menu div::after {
  transform: translateY(7px);
}
#check {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}
#check:checked ~ .hamburger-menu-container .hamburger-menu div {
  background-color: transparent;
}
#check:checked ~ .hamburger-menu-container .hamburger-menu div::before {
  transform: translateY(0) rotate(-45deg);
}
#check:checked ~ .hamburger-menu-container .hamburger-menu div::after {
  transform: translateY(0) rotate(45deg);
}

@keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
/*End of menu*/
/*start of section*/
section::before {
  content: ' ';
  /* border: 2px solid rgb(133, 35, 35); */
  background: rgb(153, 91, 91);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  box-shadow: 1px 1px 50px -7px rgba(133, 35, 35, 0.842);
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: -1;
}
.section {
  margin-top: 60px;
  padding: 10px 40px;
  position: relative;
  background: #fde4d5;
  display: flex;
  flex-flow: column nowrap;
  height: auto;
}
.article-element {
  display: flex;
  flex-flow: row nowrap;
}
.article-info {
  flex: 1 1 auto;
  margin-bottom: 15px;
}
.article-info ul {
  color: #444;
  font-size: 13px;
  letter-spacing: 1px;
  padding-left: 45px;
  list-style: square;
  line-height: 1.6;
}

.rightInfo {
  color: #444;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.6;
  list-style: square;
  padding-left: 15px;
}
.article-info.rightInfo h4 {
  padding-left: 0px;
}
.article-info.rightInfo ul {
  padding-left: 30px;
}
.article-info.rightInfo h3 {
  visibility: hidden;
}
.article-image {
  flex: 1 1 auto;
  width: 100%;
  max-width: 400px;
  max-height: 300px;
  height: auto;
  padding-left: 15px;
  margin-top: 15px;
}
.article-image-noSize {
  flex: 1 1 auto;
  width: 100%;
  max-width: 300px;
  max-height: 350px;
  height: auto;
  padding-left: 15px;
  margin: 15px;
}
.image-align {
  display: flex;
  justify-content: center;
  align-items: center;
}
.article-table-image {
  flex: 1 1 auto;
  width: 100%;
  max-width: 550px;
  max-height: 550px;
  height: auto;
  padding-left: 15px;
  margin-top: 15px;
}
.single-image-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 400px;
  max-height: 300px;
  height: auto;
  padding-left: 15px;
  margin-top: 15px;
}

.article-video {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 400px;
  max-height: 400px;
  height: auto;
  padding-left: 15px;
  margin-top: 15px;
}
.article-image-horisental {
  flex: 1 1 auto;
  max-width: 300px;
  max-height: auto;
  padding-left: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  align-self: center;
}
/* image cards for galary page*/

.mercancias-por-fila {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
}
.mercancia-element {
  padding-bottom: 20px;
  align-self: center;
  width: 18rem;
  max-width: 33%;
  /* flex: 1 1 30%; */
}
.card {
  box-shadow: 1px 1px 50px -7px rgba(133, 35, 35, 0.842);
  border: 7px solid rgb(255, 255, 255);
  border-radius: 5px;
}
.card-body {
  background-color: #fff;
  display: block;
}
.card-img {
  height: auto;
  width: 100%;
}

/*End of Section*/
/*start of footer*/
.footer {
  margin-top: 40px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  color: #edc988;
  background-color: rgb(112, 43, 43);
  box-shadow: 1px 1px 50px -7px rgba(133, 35, 35, 0.842);
}
.footer ul {
  list-style: none;
  color: #edc988;
  padding: 10px;
}
.footer a {
  font-size: 11px;
  color: #fff;
}
.footer a:hover {
  color: #edc988;
}
.products-footer {
  display: flex;
  flex-flow: row nowrap;
  flex: 2 1 70%;
}
.companyInfo-footer {
  flex: 1 1 30%;
}
.copy-right-footer {
  flex: 1 1 100%;
  text-align: center;
  height: 40px;
  padding: 10px;
  font-size: 12px;
}
/*End of footer*/

@media (max-width: 920px) {
  .inner-padding {
    padding: 0;
  }
  /* start of menu*/
  .hamburger-menu-container {
    display: flex;
  }
  #check {
    display: block;
  }
  .nav-btn {
    position: fixed;
    height: calc(100vh - 3rem);
    top: 3rem;
    left: 0;
    width: 100%;
    background-color: rgb(112, 43, 43);
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: 0.65s;
  }
  #check:checked ~ .nav-btn {
    transform: translateX(0);
  }
  #check:checked ~ .nav-btn .nav-link,
  #check:checked ~ .nav-btn .log-sign {
    animation: animation 0.5s ease forwards var(--i);
  }

  .nav-links {
    flex: initial;
    width: 100%;
  }
  .nav-links > ul {
    flex-direction: column;
  }
  .nav-link {
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
  }
  .nav-link > a {
    line-height: 1;
    padding: 1.6rem 2rem;
  }
  .nav-link:hover > a {
    transform: scale(1);
    background-color: #f8662d;
  }
  .dropdown,
  .dropdown.second {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    background-color: #bb4e23;
    display: none;
  }
  .nav-link:hover > .dropdown,
  .dropdown-link:hover > .dropdown {
    display: block;
  }
  .nav-link:hover > a > i,
  .dropdown-link:hover > a > i {
    transform: rotate(360deg);
  }
  .dropdown-link > a {
    background-color: transparent;
    color: #fff;
    padding: 1.2rem 2rem;
    line-height: 1;
  }
  .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 3rem;
  }
  .dropdown.second .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 4rem;
  }
  .arrow {
    z-index: 1;
    background-color: #bb4e23;
    left: 10%;
    transform: scale(1.1) rotate(45deg);
    transition: 0.5s;
  }
  .nav-link:hover > .arrow {
    background-color: #50a9d6;
  }
  .dropdown .dropdown .arrow {
    display: none;
  }
  .dropdown-link:hover > a {
    background-color: #8d310d;
  }
  .dropdown-link:first-child:hover ~ .arrow {
    background-color: #8d310d;
  }
  .nav-link > a > i {
    font-size: 1.1rem;
    transform: rotate(-90deg);
    transition: 0.7s;
  }
  .dropdown i {
    font-size: 1rem;
    transition: 0.7s;
  }
  .log-sign {
    flex: initial;
    width: 100%;
    padding: 1.5rem 1.9rem;
    justify-content: flex-start;
    transform: translateY(15px);
  }
  /*end of menu*/
  .secondary {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .article-element {
    flex-flow: column nowrap;
  }
  .article-image {
    order: 2;
  }
  .article-image-horisental {
    order: 2;
  }
  .mercancias-por-fila {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
  }
  .mercancia-element {
    max-width: 45%;
    padding-bottom: 20px;
    align-self: center;
  }
}
@media all and (max-width: 500px) {
  .articles {
    flex-direction: column;
  }
  .aside {
    flex-direction: column;
  }
  .slider-container {
    display: none;
  }
  .mercancias-por-fila {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
  }
  .mercancia-element {
    max-width: 100%;
    padding-bottom: 20px;
    align-self: center;
  }
}
