@charset "UTF-8";
/*======Color======*/
/*======Config======*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  max-width: 1400px;
  margin: auto;
}

/*======Header======*/
header {
  background-color: #021b64;
  padding: 10px 0px;
}
header .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header #brand {
  width: 70px;
}
header #brand img {
  width: 100%;
}
header #menubar svg {
  width: 40px;
  fill: #ffffff;
}
header #menu {
  position: fixed;
  padding: 10px;
  left: 0;
  top: 0;
  width: 90vw;
  height: 100vh;
  background-color: rgba(2, 26, 100, 0.937254902);
}
header #menu button {
  border: 0;
  background-color: rgb(226, 7, 7);
  color: white;
  padding: 5px 10px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}
header #menu img {
  margin-bottom: 20px;
}
header #menu li {
  border: 1px solid white;
  border-radius: 5px;
  margin-top: 10px;
  width: 80%;
}
header #menu a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 10px;
}
header #menu p {
  position: absolute;
  bottom: 0;
  left: 0;
  color: white;
  font-size: 13px;
  padding: 10px;
}

/*======Products======*/
.products {
  margin: 20px 0;
}
.products h3 {
  margin-bottom: 5px;
  font-size: 22px;
}
.products .product {
  margin-top: 25px;
}
.products .product img {
  width: 100%;
}
.products .product a {
  color: #021b64;
  text-decoration: none;
  font-size: 18px;
}
.products .product h4 {
  margin-top: 5px;
}

/*======Main======*/
main {
  background-color: #021b64;
  padding: 30px 0px;
  box-shadow: inset 0 37px 47px -15px rgba(0, 0, 0, 0.75), inset 0 -37px 47px -15px rgba(0, 0, 0, 0.75);
  color: #ffffff;
}
main h2, main h5, main li, main p {
  margin: 15px 0;
  text-align: left;
}
main a {
  font-size: 1em;
}
main article ul {
  list-style-type: none;
}
main li, main p {
  line-height: 25px;
}
main article ul li:before {
  content: "✓";
  padding: 2px;
  background-color: green;
  color: white;
  margin-right: 10px;
}
main h2, main h3, main h5 {
  margin: 30px 0 15px;
}

/*======Details======*/
#pdetails .swpabout {
  padding: 15px 0;
}
#pdetails .swpproduct {
  margin-top: 10px;
  margin-bottom: 30px;
}
#pdetails .swpproduct img {
  width: 100%;
}
#pdetails .swpproduct h3 {
  font-size: 25px;
}
#pdetails .swpproduct ul {
  margin: 20px 0;
}
#pdetails .swpproduct li::before {
  content: "✓";
  color: green;
  font-size: 20px;
  font-weight: 900;
  margin-right: 5px;
}
#pdetails .swpproduct .swppprice {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#pdetails .swpproduct .quantityprice {
  border: 5px solid tomato;
  padding: 4px 20px;
  color: white;
  background: tomato;
}
#pdetails .swpproduct .quantitygroup {
  display: flex;
  align-items: center;
}
#pdetails .swpproduct .quantitybtn {
  padding: 1px 18px;
  color: white;
  background: tomato;
  display: block;
  border: 0;
  width: 100%;
  cursor: pointer;
  font-size: 35px;
}
#pdetails .swpproduct button {
  margin-top: 15px;
  padding: 8px 20px;
  color: white;
  background: tomato;
  display: block;
  border: 0;
  width: 100%;
  cursor: pointer;
  font-size: 22px;
}

/*======Footer======*/
footer {
  text-align: center;
  border-top: 20px solid #006915;
  padding: 20px 0 10px;
  background: #010c2e;
  margin-bottom: -160px;
  box-shadow: inset 0 37px 47px -15px rgba(0, 0, 0, 0.75);
}
footer .btmmenu {
  margin: 10px 0;
  padding: 0 10px;
  border-right: 2px solid green;
}
footer .btmmenu:last-child {
  border-right: none;
}
footer a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
}
footer .aboutus {
  border-right: none;
}
footer .footer p {
  margin: 15px 0;
  font-size: 13px;
  color: #fff;
  line-height: 17px;
  text-align: justify;
}
footer .suportcard ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  width: 150px;
  overflow: hidden;
  padding: 20px 10px;
  filter: grayscale(100%);
}
footer .suportcard ul li img {
  width: 100%;
  opacity: 0.5;
}
footer .suportcard ul li img:hover {
  opacity: 1;
}
footer .suportcard ul li:hover {
  filter: grayscale(0%);
}

/*===========Responsive===========*/
@media (max-width: 450px) {
  .container {
    padding: 0px 10px;
  }
}/*# sourceMappingURL=style.css.map */