* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8cc24;
}
body {
  background: url("../img/bgwall2.jpg") no-repeat center/cover fixed;
}
@font-face {
  font-family: "Libre Baskerville";
  src: url("../font/Libre_Baskerville/LibreBaskerville-Regular.ttf")
    format("truetype");
}

/* HEADER */
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}
header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85),
      rgba(255, 255, 255, 0)
    ),
    url("../img/bgwall.jpg") no-repeat center/cover;
  z-index: -1;
}
header .head {
  display: flex;
  flex-direction: row;
  align-items: center;
}
header img {
  width: 100px;
  margin-right: 20px;
}
header a {
  font-size: 20px;
  text-decoration: none;
  padding: 5px 15px;
  margin: 0 5px;
  color: #000;
  background-color: #f8cc24;
  border-radius: 15px;
}
header a:hover {
  background-color: #dfb91fda;
  color: #fff;
}
header a:active {
  outline: 2px solid #fff;
  transform: scale(0.98);
}

/* Mobile version  navigation */
nav {
  display: none;
}
@media (max-width: 768px) {
  /* .head{
      text-align: center;
   } */
  header img {
    width: 80px;
  }
  header h1 {
    font-size: 25px;
  }
  .nav {
    display: none;
  }
  nav {
    display: block;
    width: 100%;
    margin: 10px 0 15%;
    text-align: center;
  }
  nav a {
    font-size: 16px;
    text-decoration: none;
    padding: 2px 5px;
    margin: 0 1px;
    color: #000;
    background-color: #f8cc24;
    border-radius: 15px;
  }
}

/* Home - Banner */
.banner {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  margin: 5% 0 10%;
  padding: 2.5% 0;
  background-color: #f8ce243b;
}
.banner h1 {
    text-align:center;
  font-family: "Libre Baskerville", serif;
  font-size: 45px;
  background: linear-gradient(to left, #cba612 85%, #dfb820 85%, #f8cc24 85%);
  background-clip: text;
  color: transparent;
  animation: slide 5s linear infinite;
}
@keyframes slide {
  to {
    background-position: 110vw;
  }
}

@media (max-width: 768px) {
  .banner h1 {
    padding: 0 10px;
    font-size: 25px;
    text-align: center;
  }
}

/* Home - Certificates */
.certcontainer{
  margin-bottom:20vh;
}
.certheadercontainer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
hr:nth-child(2) {
  width: 20%;
  height: 4px;
  border: none;
  border-radius: 5px;
  background-color: #f8cc24;
}
hr:nth-child(4) {
  width: 10%;
  height: 4px;
  border: none;
  border-radius: 5px;
  background-color: #f8cc24;
}
#certheader {
  text-align: center;
  font-size: 35px;
  margin-bottom: 10px;
}
.cert {
  width: 100%;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content:end;
  padding: 0;
  position: relative;
}
.cert img {
  width: 300px;
  height: auto;
  position: absolute;
}
.cert img:nth-child(1) {
  left: 20%;
}
.cert img:nth-child(2) {
  left: 35%;
}
.cert img:nth-child(3) {
  left: 50%;
}
.cert img:nth-child(4) {
  left: 65%;
}
.cert img:active {
  transform: scale(1.55);
  z-index: 1;
  border: 4px solid #f8cc24;
  border-radius: 5px;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}
.cert p{
    position:absolute;
    bottom:10px;
    left:50%;
    transform:translateX(-50%);
    opacity:.6;
}

@media (max-width: 768px) {
  hr:nth-child(2) {
    width: 50%;
  }
  hr:nth-child(4) {
    width: 40%;
  }
  #certheader {
    font-size: 27px;
  }
  .certcontainer{
      margin-bottom:5vh;
  }
  .cert {
    height: 35vh;
  }
  .cert img {
    width: 180px;
  }
  .cert img:nth-child(1) {
    left: 5%;
  }
  .cert img:nth-child(2) {
    left: 20%;
  }
  .cert img:nth-child(3) {
    left: 35%;
  }
  .cert img:nth-child(4) {
    left: 50%;
  }
  .cert img:active {
    left: 27%;
    transform: translateX(-50%);
    transform: scale(1.8);
  }
}

/* Home - Products */
.productcontainer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.productheader {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 25px;
  font-size: 25px;
}
.productheader h2 {
  margin-bottom: 10px;
}
.productshowcase {
  width: 75%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.product1,
.product2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product1 {
  width: 50%;
}
.product2 {
  width: 50%;
}
.product1 p,
.product2 p {
  font-size: 30px;
}
.product1 img,
.product2 img {
  height: 100%;
}
.product1 a,
.product2 a {
  font-size: 25px;
  text-decoration: none;
  padding: 10px 20px;
  background-color: #f8cc24;
  border-radius: 25px;
  color: #000;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.product1 a:hover,
.product2 a:hover {
  background-color: #dfb91fda;
  color: #fff;
}
.product1 a:focus,
.product2 a:focus {
  outline: 2px solid #fff;
}

@media (max-width: 768px) {
  .productheader {
    font-size: 20px;
  }
  .productshowcase {
    width: 100%;
    height: 250px;
  }
  .product1 p,
  .product2 p {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .product1 img,
  .product2 img {
    height: 50%;
    margin-bottom: 15px;
  }
  .product1 a,
  .product2 a {
    font-size: 15px;
  }

  .product1 a:hover,
  .product2 a:hover {
    background-color: #dfb91fda;
    color: #fff;
  }
  .product1 a:focus,
  .product2 a:focus {
    outline: 2px solid #fff;
  }
}

/* Home - Chart Alkaline */
.chartalkaline {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 10% 0;
}
.chartalkaline article {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 80%;
}
.chartalkaline h2 {
  font-size: 30px;
  margin-bottom: 25px;
}
.chartalkaline img {
  border-radius: 15px;
  border: 3px solid #f8cc24;
  margin-bottom: 25px;
}
.chartalkaline p {
  font-size: 25px;
}

.chartalkaline hr:nth-child(2) {
  width: 75%;
  height: 4px;
  border: none;
  border-radius: 5px;
  background-color: #f8cc24;
}
.chartalkaline hr:nth-child(4) {
  width: 65%;
  height: 4px;
  border: none;
  border-radius: 5px;
  background-color: #f8cc24;
  margin-bottom: 35px;
}

@media (max-width: 768px) {
  .chartalkaline article {
    width: 100%;
    padding: 0 10px;
  }
  .chartalkaline h2 {
    font-size: 25px;
    text-align: center;
    margin-bottom: 25px;
  }
  .chartalkaline img {
    width: 75%;
  }
  .chartalkaline p {
    font-size: 17px;
    padding: 0 15px;
  }
}

/* Home - activation 1 */
.activation1 {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px 10%;
  background-color: #6851006c;
  border-radius: 25px;
  padding: 20px 0;
}
.activation1header {
  text-align: center;
}
.activation1header p:nth-child(1) {
  font-size: 30px;
  font-weight: bold;
}
.activation1header p:nth-child(2) {
  font-size: 25px;
}
.activation1details {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.act1info {
  display: flex;
  justify-self: center;
  align-items: center;
  width: 60%;
}

.act1info ol {
  list-style-type: none;
}
.act1info li {
  display: flex;
  justify-self: start;
  align-items: center;
  margin: 15px 0;
}

.act1info li img {
  width: 40px;
  margin-right: 15px;
}

.act1btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#btnstart{
    margin-right:100px;
}

.act1btn a {
  text-decoration: none;
  background-color: #f8cc24;
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 30px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.act1btn a:hover {
  background-color: #dfb91fda;
  color: #fff;
}
.act1btn a:active {
  outline: 2px solid #fff;

  transform: scale(0.96);
}

@media (max-width: 768px) {
  .activation1 {
    width: 90%;
    margin: 20px 5%;
  }
  .activation1header {
    text-align: center;
    padding: 0 10px;
  }
  .activation1header p:nth-child(1) {
    font-size: 23px;
  }
  .activation1header p:nth-child(2) {
    font-size: 20px;
  }
  .activation1details {
    flex-wrap: wrap;
    font-size: 17px;
  }

  .act1info {
    width: 80%;
  }

  .act1info li img {
    width: 28px;
    margin-right: 10px;
  }

  .act1btn a {
    font-size: 20px;
  }
  #btnstart{
    margin-right:0;
    }
}

/* Home - activation 2 */
.act2 {
  margin-bottom: 40px;
}
.activation2details {
  width: 100%;
  display: flex;
  flex-direction: row;
  font-size: 25px;
}
.activation2details article {
  width: 50%;
}
.act2info {
  padding-left: 15%;
}
.act2info p {
  font-weight: bold;
}
.act2info ul {
  padding-left: 10%;
}
.act2info li {
  margin: 15px 0;
}
.act2info2 {
  margin-top: 20px;
  width: 80%;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .activation2details {
    flex-direction: column;
    font-size: 20px;
  }
  .activation2details article {
    width: 100%;
  }
  .act2info {
    padding-left: 15%;
  }
  .act2info2 {
    width: 90%;
    font-size: 17px;
  }
}

/* About Us HERERERERERERERE */

/* Packages = package1 */
.package1 {
  width: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 5% 0;
  font-size: 18px;
}
.package1 h2 {
  font-size: 35px;
}
.packdetail1 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 20px 0 35px;
}
.packdetail1 div {
  width: 30%;
  text-align: center;
}
.packdetail1 div p:nth-child(1) {
  font-size: 30px;
  font-weight: bold;
}
.packdetail1 div:nth-child(1) {
  padding-left: 10%;
}
.packdetail1 div:nth-child(3) {
  padding-right: 10%;
}
.packdetail1 img {
  width: 100px;
  margin-bottom: 15px;
}
.packdetail1 a {
  text-decoration: none;
  color: #000;
  background-color: #f8cc24;
  font-size: 20px;
  padding: 10px 15px;
  border-radius: 25px;
  text-align: center;
}
.packdetail2 {
  width: 100%;
  text-align: center;
  padding: 0 10%;
}
.packdetail2 p {
  text-align: center;
}
#product2 {
  width: 65%;
}

#producthr1 {
  width: 90%;
  margin: 0 5%;
  height: 4px;
  border: none;
  background-color: #f8cc24;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .package1 h2 {
    font-size: 27px;
  }
  .packdetail1 {
    flex-direction: column;
  }
  .packdetail1 div {
    width: 95%;
  }
  .packdetail1 div p:nth-child(1) {
    font-size: 20px;
    font-weight: bold;
  }
  .packdetail1 div:nth-child(1) {
    padding-left: 0;
    margin-bottom: 20px;
  }
  .packdetail1 div:nth-child(3) {
    padding-right: 0;
    margin-top: 30px;
  }
  .packdetail1 img {
    width: 100px;
  }
  .packdetail1 a {
    font-size: 18px;
  }
  .packdetail2 {
    margin-top: 0;
    padding: 0 5%;
  }
  #empty-div {
    display: none;
  }

  #producthr1 {
    margin: 5%;
  }
}

/* Packages - Reseller packages */
.entrypackages{
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f8ce243b;
  margin: 5%;
  border-radius: 25px;
  font-size: 18px;
  padding: 20px 0;
}
.entrypackages article{
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  font-size: 18px;
  padding: 20px 0;
}
.entrypackages article div{
  background-color: #f8ce243b;
  border-radius: 25px;
  padding: 30px;
  text-align: center;
}
.entrypackages article div p{
  font-size: 20px;
}

#packagetitle{
  text-align: center;
  font-size: 35px;
}

@media (max-width:768px) {
   #packagetitle{
      font-size: 25px;
    } 
    .entrypackages article div p{
      font-size: 18px;
    }
    .entrypackages article div{
      padding: 10px;
    }.entrypackages article{
      gap:10px;
    }
}

.resellerpackages {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: #f8ce243b;
  margin: 5%;
  margin-top: 10px;
  border-radius: 25px;
  gap: 50px;
  font-size: 18px;
  padding: 40px 5% 40px 10%;
}
.resellerpackages > article {
  width: 30%;
}

.resellerpackages .priv {
  margin-left: -20px;
  font-size: 20px;
}
.resellerpackages .price {
  display: inline;
  text-decoration:none;
  background-color: #f8cc24;
  color: #000;
  padding: 0 10px;
  border-radius: 3px;
  font-size: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.resellerpackages article img {
  width: 40%;
  height: 100%;
  padding-left: 5px;
}
.resellerpackages article p:nth-child(2) {
  padding-left: 13%;
  font-size: 23px;
  font-weight: bold;
}
.resellerpackages article:nth-child(2) p:nth-child(2),
.resellerpackages article:nth-child(3) p:nth-child(2) {
  padding-left: 15%;
}
.resellerpackages article:nth-child(4) p:nth-child(2),
.resellerpackages article:nth-child(5) p:nth-child(2) {
  padding-left: 10%;
}
@media (max-width: 768px) {
  .resellerpackages {
    width: 90%;
    margin: 10px 5% 10%;
    gap: 30px;
    padding: 10px;
    padding-left: 25px;
  }
  .resellerpackages > article {
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .resellerpackages article:nth-child(n) p:nth-child(2) {
    padding-left: 0;
  }

  .resellerpackages article img {
    width: 100px;
    height: 100%;
  }
  .resellerpackages .price {
    /* display: block; */
    width: 70%;
    text-align: center;
    border-radius: 3px;
    font-size: 20px;
  }
}

/* ========== FOOTER ============ */
footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 15px 0;
  border-top: 4px solid #f8cc24;
  margin-top: 10%;
  background: url("../img/bgwall.jpg") no-repeat center/cover;
}

footer div {
  width: 100%;
}

footer h2 {
  font-size: 30px;
  text-align: center;
}
#footerbr {
  display: none;
}

footer .footercontainer {
  display: flex;
  margin-top: 30px;
  justify-content: space-evenly;
  flex-direction: row;
}
.footercontainer > div:nth-child(2) {
  display: flex;
}
.footercontainer iframe {
  aspect-ratio: 1/1;
  width: 60%;
  border: 3px solid #f8cc24;
  border-radius: 5px;
  margin: auto;
}
.footercontainer > div:nth-child(2) {
  padding-right: 3.5%;
}

footer .footer1 {
  display: flex;
  align-items: center;
  padding-left: 5%;
}

footer ol {
  list-style-type: none;
}

footer li {
  margin: 20px 0;
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 20px;
}

footer li a {
  text-decoration: none;
}
footer li img {
  width: 40px;
  margin-right: 15px;
}

footer .footer2 {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
  gap: 10px;
}
footer .footer2 h3 {
  font-size: 25px;
}
footer .footer2 img {
  width: 30%;
}

#TM {
  font-size: 11px;
  opacity:.4;
}

@media (max-width: 768px) {
  footer h2 {
    font-size: 20px;
    width: 100%;
    padding: 0 3%;
  }
  #footerbr {
    display: block;
  }
  footer .footercontainer {
    flex-direction: column;
  }
  .footer1 ol li {
    font-size: 15px;
  }
  .footer1 ol li img {
    width: 30px;
  }
  .footer2 {
    margin-top: 30px;
  }
  .footer2 p:nth-child(3) {
    font-size: 17px;
  }
  #TM {
    font-size: 8px;
  }
}

/* ABOUT - BANNER */
.who-we-container {
  background-color: transparent;
  margin: 60px 0;
}

.who-we-container h2 {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
}

.who-we-img-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 80%;
  margin: auto;
}

.who-we-img-content img {
  width: 30%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.who-we-text-content {
  font-size: 25px;
  text-align: justify;
  flex: 1;
  min-width: 200px;
}

@media (max-width: 768px) {
  .who-we-container {
    width: 98%;
  }
  .who-we-img-content {
    flex-direction: column;
  }
  .who-we-container h2 {
    font-size: 25px;
  }

  .who-we-img-content img {
    width: 60%;
  }

  .who-we-text-content {
    font-size: 18px;
  }
}

/* ABOUT - Mission Vision */
.mv-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  max-width: 1000px;
  margin: auto;
  padding-top: 10px;
}

.mv-section {
  width: 45%;
  text-align: left;
  padding-bottom: 50px;
}

.mission-title {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  padding: 5px 15px;
  border-radius: 5px;
}

.vision-title {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  padding: 5px 15px;
  border-radius: 5px;
}

.mv-section p {
  font-size: 25px;
}

@media (max-width: 768px) {
  .mv-container {
    max-width: 90%;
    align-items: start;
    margin-bottom: 20px;
  }

  .mv-section {
    text-align: center;
    padding-bottom: 25px;
  }

  .mission-title,
  .vision-title {
    font-size: 25px;
    font-weight: bold;
  }

  .mv-section p {
    font-size: 18px;
  }
}

.WBP-container {
  align-items: center;
  text-align: center;
  margin-top: 40px;
}
.WBP-section img {
  width: 80%;
}
.WBP-title {
  font-size: 35px;
  font-weight: bold;
  padding-top: 50px;
}

.WBP-title hr:nth-child(1) {
  width: 30%;
  height: 4px;
  background-color: #f8cc24;
  border: none;
  margin: 15px 50%;
  transform: translateX(-50%);
}
.WBP-title hr:nth-child(2) {
  width: 25%;
  height: 4px;
  background-color: #f8cc24;
  border: none;
  margin: 15px 50%;
  transform: translateX(-50%);
}
#CWE {
  width: 70%;
  margin: 15px 0;
}
#CWE2 {
  width: 50%;
  border-radius: 30px;
  margin: 15px 0;
}

@media (max-width: 768px) {
  .WBP-container {
    width: 90%;
    margin: 0 auto;
  }

  .WBP-title {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .WBP-section img {
    width: 100%;
  }
  #CWE {
    width: 100%;
    height: 100%;
  }
  #CWE2 {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .WBP-title hr:nth-child(1) {
    width: 75%;
  }
  .WBP-title hr:nth-child(2) {
    width: 60%;
  }
}

.WBP-button {
  display: inline-block;
  padding: 10px 45px;
  font-size: 30px;
  font-weight: normal;
  background-color: #f8cc24;
  border: none;
  border-radius: 25px;
  margin-top: 20px;
  margin-bottom: 30px;
  cursor: pointer;
  color: black;
}

.WBP-button:hover {
  background-color: #dfb91fda;
  color: #fff;
}
.WBP-button:focus {
  outline: 2px solid #fff;
}

.WBP-Overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 600px;
  max-width: 1700px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  margin: 0 auto;
}

.WBP-Overlay p {
  font-size: 25px;
  text-align: center;
  align-items: center;
  min-width: 200px;
  width: 80%;
}

@media (max-width: 768px) {
  .WBP-Overlay {
    min-width: 300px;
  }
  .WBP-Overlay p {
    font-size: 14px;
    width: 100%;
  }
  .WBP-button {
    font-size: 14px;
  }
}


/*  */
