* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", "Segoe UI";
  -webkit-tap-highlight-color: transparent;
}

h2 {
  font-size: 35px;
}

*:focus {
  outline: none;
}

.selectable {
  user-select: text;
}

html {
  scroll-behavior: smooth;
}

body {
  user-select: none;
  color: #111;
  background-color: #dfdfdf;
}

ul li {
  list-style-type: none;
}

a {
  color: #fff;
}

.page-container {
  width: 100%;
}


/* == Header content == */


.header-container {
  width: 100%;
  padding: 20px 10px;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 999;
  background: #dfdfdf;
  box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.35);
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.35);
  -moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.35);
}

.logo-container {
  width: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}

.logo {
  margin-right: 15px;
}

.logo img {
  object-fit: cover;
  width: 30px;
}

.menu-container {
  display: none;
  width: 40px;
  height: 40px;
  margin-right: 30px;
}

.burger-container {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.burger-container i {
  font-size: 20px;
}

.navbar-container {
  width: 50%;
}

.navbar-container ul {
  padding-top: 10px;
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
}

.navbar-container ul li {
  margin: 0 10px;
  list-style-type: none;
  background: #cfcfcf;
  border-radius: 10px;
}

.navbar-container ul li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  text-decoration: none;
  color: #111;
  transition: all .3s;
}

.navbar-container ul li a i {
  width: 20px;
  margin-right: 5px;
}

.navbar-container ul li a:hover {
  transition: all .3s;
  color: #007dfe;
}

.navbar-container.displaying {
  display: block;
}


/* == Main content == */

.main-container {
  background: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}

.close-image-button {
  display: none;
}

.close-image-button.active {
  display: block;
  color: #fff;
  font-size: 35px;
  font-weight: thin;
  z-index: 99999;
  position: fixed;
  left: 88%;
  top: 45px;
  cursor: pointer;
}

.each-section-gallery {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}

.each-section-gallery .section-title.top {
  margin-top: 120px;
}

.each-section-gallery .section-title {
  padding: 10px 60px 5px;
  width: 100%;
  text-align: left;
  margin: 40px 0 10px;
}

/* == Grid category section == */

.each-section-gallery .section-content {
  justify-content: center;
  padding: 10px 60px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 20px;
  grid-auto-flow: dense;
}

/* Used for big image */
.wide {
  grid-column: span 2;
  grid-row: span 2;
}

/* Each image container */

.each-img {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2.5px;
  overflow: hidden;
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}


.each-section-gallery .section-content img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 250ms ease;
  filter: brightness(84%);
  -webkit-filter: brightness(84%);
  -moz-filter: brightness(84%);
}

.each-section-gallery .section-content img:hover {
  cursor: pointer;
  transition: all 450ms ease;
  transform: scale(1.05);
  filter: brightness(100%);
  -webkit-filter: brightness(100%);
  -moz-filter: brightness(100%);
}

/* == Image modal == */

.each-section-gallery .section-content .each-img.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background:rgba(0,0,0,0.6);
  z-index: -1;
}

.each-section-gallery .section-content .each-img.active {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  position: fixed;
}

.each-img.active img {
  width: 80%;
  height: 80%;
  filter: none;
  -webkit-filter: none;
  -moz-filter: none;
  border-radius: 3px;
}

.each-img.active img:hover {
  transform: unset;
}

/* == Footer content == */

.footer-container {
  width: 100%;
  padding: 40px 20px 30px;
  background: #222;
  color: #dfdfdf;
}

footer {
  width: 100%;
}

.footer-container footer {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}

.footer-container footer section {
  margin: 0 10px;
}

footer section ul {
  display: flex;
}


footer section ul li {
  display: block;
  margin: 0 10px;
}

footer section ul li:first-child {
  margin-left: 0;
}

footer section ul li a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #333;
  padding: 10px;
  border-radius: 100%;
}

footer section p a {
  text-decoration: none;
}

footer section p a:hover {
  text-decoration: underline;
}


footer section ul li a:hover {
  transition: all 450ms ease;
  background-color: #444;
}

footer section ul li i {
  font-size: 18px;
}

section b {
  display: block;
  margin-bottom: 10px;
}

section p.data-contact, section.mark-info p {
  margin: 10px 0;
  display: flex;
  align-items: center;
}

section p.data-contact i, section.mark-info p i {
  display: block;
  width: 20px;
  margin-right: 5px;
}

/* == WA Floating Button == */

.phones-wa-floating {
  border-radius: 20px 20px 3px 20px;
  display: none;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  bottom: 92px;
  right: 60px;
}

.phones-wa-floating a {
  display: block;
  text-decoration: none;
  color: #fff;
}

.phones-wa-floating a:hover {
  color: #25D366;
}

.phones-wa-floating a:first-child {
  margin-bottom: 10px;
}

.whatsapp-floating-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 60px;
  width: 60px;
  background: #25D366;
  border-radius: 100%;
  cursor: pointer;
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.35);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.35);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.35);
  transition: all .2s;
}

.whatsapp-floating-button:active {
  background-color: #359e5b;
  transition: all .3s;
}

.whatsapp-floating-button i {
  color: #fff;
  font-size: 40px;
}
