* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", "Segoe UI";
  -webkit-tap-highlight-color: transparent;
}

*:focus {
  outline: none;
}

.selectable {
  user-select: text;
}

html {
  scroll-behavior: smooth;
}

body {
  user-select: none;
  color: #111;
  background-color: #dfdfdf;
}

img {
  -webkit-user-drag: none;
}

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 {
  list-style-type: none;
  margin: 0 10px;
  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 {
  width: 100%;
}

.presentation-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  background: rgba(0, 0, 0, 0.5) url("../img/presentation.jpg") no-repeat;
  height: 100vh;
  background-size: cover;
  background-blend-mode: darken;
  box-shadow: 0 0 6px 0 rgb(0 0 0 / 20%);
}


.presentation-container .information-section {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.information-section h1 {
  text-shadow: 0px 0px 11px rgba(0,0,0,0.4);
  font-size: 60px;
  text-transform: uppercase;
}

.information-section p {
  font-size: 20px;
  text-shadow: 0px 0px 11px rgba(0,0,0,0.4);
  text-transform: uppercase;
}

.more-info-section {
  margin-top: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.more-info-section a {
  padding: 20px;
  display: block;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 100%;
  transition: all .3s;
}

.more-info-section a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.more-info-section a:hover {
  transition: all .3s;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.4px);
  -webkit-backdrop-filter: blur(4.4px);
  
}

/* == Cards section == */

.cards-container {
  margin: 30px 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  overflow: hidden;
  margin: 10px;
  background: #fff;
  border-radius: 10px;
  width: 23%;
  display: flex;
  flex-direction: column;
  transition: all .3s;
  box-shadow: 0 0 6px 0 rgb(0 0 0 / 20%);
}

.card:hover {
  cursor: pointer;
  transform: scale(1.02);
  transition: all .3s;
}

.card .card-img {
  width: 100%;

}

.card img {
  width: 100%;
  object-fit: cover;
}

.card-title, .card-body {
  padding: 20px;
}

.card-title {
  padding-bottom: 0;
}

.card-body {
  padding-top: 0;
  margin-top: 10px;
}

.flex-about-us {
  margin: 30px 0;
  width: 100%;
  justify-content: center;
  display: flex;
  
}

.about-us-container {
  width: 50%;
  background: #fff;
  padding: 40px;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 0 6px 0 rgb(0 0 0 / 20%);
}

.about-us-container .about-title {
  font-size: 24px;
  margin-bottom: 15px;
}

.about-us-container .about-p {
  width: 80%;
  font-size: 18px;
}

.how-we-work-container {
  width: 45%;
  background: #007dfe;
  color: #fff;
  padding: 40px;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 0 6px 0 rgb(0 0 0 / 20%);
}

.how-we-work-container h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.how-we-work-container ul li {
  margin: 20px 0;
}

.how-we-work-container ul li i {
  font-style: 18px;
  margin-right: 10px;
}

.products-we-work-container {
  margin: 0 auto;
  text-align: center;
  width: 100%;
  background-color: #fff;
  padding: 40px;
  box-shadow: 0 0 6px 0 rgb(0 0 0 / 20%);
}

.products-we-work-container .products-title {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-bottom: 15px;
}

.products-title img {
  margin-right: 5px;
  color: #111;
}

.products-we-work-container .products-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.products-container a {
  margin: 0 10px;
}

.products-container a img {
  width: 180px;
}

.contact-us-container {
  
  margin: 30px auto;
  width: 100%;
  background: #fff;
  padding: 40px;
  display: flex;
  box-shadow: 0 0 6px 0 rgb(0 0 0 / 20%);
}

.contact-us-container .contact-info h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-info {
  width: 50%;
}

.contact-info .contact-parraph-info {
  width: 85%;
  margin-top: 30px;
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
  user-select: text;
}

.contact-mail {
  width: 50%;
}

form {
  width: 100%;
}

.form-title {
  margin: 0 0 10px;
}

.contact-mail form .entry-data {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
}

.contact-mail form .flex-entry-data {
  display: flex;
  justify-content: space-between;
}

.contact-mail form .flex-entry-data .entry-data {
  width: 49.5%;
  margin-bottom: 0;
}

.entry-data span {
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: bold;
  color: #888;
}

.entry-data input {
  height: 40px;
  font-size: 18px;
  padding-left: 5px;
  outline: 0 none;
  border: none;
  border-radius: 5px;
  background: #dfdfdf;
}

.entry-data input:focus {
  border: 2px solid #007dfe;
}

.entry-data textarea {
  padding-left: 5px;
  padding-top: 5px;
  resize: none;
  outline: 0 none;
  border: none;
  border-radius: 5px;
  background: #dfdfdf;
  font-size: 18px;
}

.entry-data textarea:focus {
  border: 2px solid #007dfe;
}

.send-message-button {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin: 10px 0;
}

.send-message-button button {
  border-radius: 5px;
  border: none;
  width: 49%;
  cursor: pointer;
  background: #993c3c;
  color: #fff;
  transition: all .3s;
  padding: 10px 40px;
}

.send-message-button input {
  border-radius: 5px;
  width: 49%;
  cursor: pointer;
  background-color: #267443;
  color: #fff;
  padding: 10px 40px;
  border: none;
  transition: all .3s;
}

.send-message-button input, .send-message-button button {
  font-size: 14px;
  font-weight: bold;
}

.send-message-button button:hover {
  background: #cc5050;
  transition: all .3s;
}

.send-message-button input:hover {
  background-color: #359e5b;
  transition: all .3s;
}


/* == Footer content == */

.footer-container {
  width: 100%;
  padding: 40px 20px 30px;
  background: #222;
  color: #dfdfdf;
  box-shadow: 0 0 6px 0 rgb(0 0 0 / 20%);
}

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;
  transition: all .2s ease;
}

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 {
  font-size: 40px;
  color: #fff;
}


/* Recaptcha box */

.h-captcha {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 10px 0;
}