<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  background-color: #aaaaaa;
}
header {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

@font-face {
  font-family: "Mont";
  src: url("fonts/Montserrat-ExtraLight.woff2") format("woff2"),
    url("fonts/Montserrat-ExtraLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mont";
  src: url("fonts/Montserrat-Regular.woff2") format("woff2"),
    url("fonts/Montserrat-Regular.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

body {
  background-color: #fff;
  font-family: "Mont", sans-serif;
  overflow-x: hidden;
}

nav {
  background-color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  font-family: "Mont", sans-serif;
}

.logo-company {
  height: 50px;
}

.navbarContent {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbarContent li {
  margin: 0 10px;
}

.navbarContent a {
  text-decoration: none;
  color: #f8bd20;
  transition: color 0.3s ease;
}

.navbarContent a:hover,
.navbarContent a:focus {
  color: #ffffff;
  text-decoration: none;
}
/* Styles for the hamburger menu */
.hamburger {
  display: none;
  cursor: pointer;
  position: relative;
  border: none;
}

.hamburger-box {
  width: 35px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  background-color: #f8bd20;
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 4px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: background-color 0.25s ease-in-out;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
  background-color: #f8bd20;
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 4px;
  transition: transform 0.25s ease-in-out;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/* Hamburger to X toggle */
.hamburger.active .hamburger-inner {
  background-color: transparent;
}

.hamburger.active .hamburger-inner::before {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active .hamburger-inner::after {
  transform: translateY(-10px) rotate(-45deg);
}





/* Navbar slide-in animation */
@keyframes slideIn {
  from {
    right: -100%;
  }
  to {
    right: 0;
  }
}

.navbarContent.active {
  animation: slideIn 0.5s ease forwards;
}


a {
  text-decoration: none;
  color: #000;
}

body.no-scroll {
  overflow: hidden;
}

.logo-company {
  width: 130px;
  height: auto;
  margin: 10px;
  cursor: pointer;
}

.logo-company1 {
  width: 130px;
  cursor: pointer;
  padding: 10px 0px 10px 20px;
}

.content {
  padding: 0px;
  text-align: left;
  margin-bottom: 20px;
}

.container {
  text-align: center;
  padding: 0px 100px;
  margin: 30px 0px;
}

.flexCont {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.text-box,
.image-box {
  box-sizing: border-box;
  padding: 20px;
  text-align: left;
  margin: auto;
}

.logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn {
  display: block;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: #000000;
  color: #000;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: auto;
  margin-bottom: 10px;
  font-family: "Mont", sans-serif;
  font-weight: 600;
}

/*Contact form styles*/
#contact-form {
  font-family: "Mont", sans-serif;
  max-width: 100%;
  margin: 50px auto;
  padding: 20px;
  background-color: #f2f2f2;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

#contact-form button[type="submit"] {
  width: 100%;
  padding: 10px;
  border: none;
  background-color: #f8bd20;
  color: black;
  font-size: 16px;
  border-radius: 3px;
  cursor: pointer;
}

#contact-form button[type="submit"]:hover {
  background-color: #dfaa1d;
}
/*Footer Styles*/
footer {
  background-color: #000000;
  padding: 20px 0;
  text-align: center;
}

.footer-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.footer-buttons .btn {
  padding: 10px 20px;
  margin: 0 10px;
  border: none;
  background-color: #000000;
  color: #f8bd20;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: "Mont", sans-serif;
  font-weight: 500;
}

.footer-buttons button:hover {
  color: #fff;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding: 50px 0px;
  margin-bottom: 350px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 10px;
}
.modal-content p {
  font-size: 13px;
}
footer .btn {
  margin: 2px 10px;
  border: none;
  font-family: "Roboto", sans-serif;
  background-color: #ffffff;
  cursor: pointer;
}
.headerImg {
  margin-bottom: 30px;
}

@media screen and (max-width: 992px) {
  .container {
    padding: 0px 50px;
  }
}

@media screen and (max-width: 768px) {
  body {
    padding-top: 0px;
  }
  .hamburger {
    display: block;
    z-index: 1000;
    background-color: #000000;
  }

  .navbarContent {
    display: none;
    position: fixed; /* Fixed or absolute, depending on your need */
    top: 0;
    right: 0;
    left: 30%; /* Take full width */
    bottom: 0; /* Take full height */
    background-color: black; /* Your navbar color */
    flex-direction: column;
    justify-content: center; /* Center items vertically */
    align-items: center; /* Center items horizontally */
    z-index: 999; /* Below the hamburger menu */
    transition: all 0.5s ease; /* Smooth transition for opening/closing */
  }

  .navbarContent.active {
    display: flex; /* Use flexbox to organize items */
    /* If you want the menu to animate from the top, change transform origin */
    transform: translateY(0%);
  }

  .navbarContent li {
    padding: 15px 0; /* Add padding to each link for touch friendliness */
    width: 100%; /* Full width links */
    text-align: center; /* Center text */
  }

  .navbarContent a {
    font-size: 1.5rem; /* Larger font size for readability */
    color: #f8bd20; /* Your link color */
    transition: color 0.25s ease-in-out;
  }

  .navbarContent a:hover,
  .navbarContent a:focus {
    color: #ffffff; /* Color for hover state */
  }



  .container {
    padding: 0px 10px;
  }
  .flexCont {
    grid-template-columns: 1fr;
  }
  p,
  li {
    font-size: 0.9em;
  }
  footer .btn {
    font-weight: 300;
    font-size: 0.6em;
  }
  h1 {
    font-size: 1.2em;
  }
  h2 {
    font-size: 1em;
  }

  .logolink {
    text-decoration: none;
    color: #000;
  }
}
</pre></body></html>