
/* ====================================
Fonts
==================================== */
@font-face {
  font-family: leetTxt;
  src: url(fonts/Montserrat-Regular.ttf);
}
@font-face {
  font-family: leetHead;
  src: url(fonts/Montserrat-Black.ttf);
}
@font-face {
  font-family: leetThin;
  src: url(fonts/Montserrat-Medium.ttf) format('truetype');
}
@font-face {
  font-family: leetLogoFont;
  src: url(fonts/Montserrat-Black.ttf);
}
/* ====================================
Reset and Base
==================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  line-height: 1.5;
  background-color: var(--main-bg-color);
}
body {
  color: var(--main-txt-color);
  font-family: leetTxt, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
h3 {
  font-size: 3rem;
  font-family: leetTxt, sans-serif;
  color: white;
}

p {
      font-family: leetTxt, sans-serif;
    /* font-size: 0.9rem; */
    line-height: 1.8;
    margin: 2rem 0;
}
.bold{font-weight: 900;}
a {
  color: var(--accent-primary);
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
img{
  border-radius: 50%;
  max-width: 100%;
}
body {
  margin: 0;
  font-family: sans-serif;
  line-height: 1.6;
  color: #111;
  font-family: leetTxt, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.wrapper {
  margin: 0 auto;
  width: 100%;
  padding: 0;
}
@media (min-width: 768px) {
  .wrapper {
    padding: 0 15px;
  }
}

@media (min-width: 1200px) {
  .wrapper {
    padding: 0 10px;
    max-width: 1200px;
  }
}

@media (min-width: 1400px) {
  .wrapper {
    padding: 0 10px;
    max-width: 1400px;
  }
}

.headerwrapper{
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.column {
  flex: 1 1 100%;
  min-width: 0;
  padding: 0;
      padding-bottom: 1rem;
}
.columnz {
  flex: 1 1 100%;
  min-width: 0;
}

.column-2 {
  flex: 1 1 calc(50% - 1rem);
}
.column-3 {
  flex: 1 1 calc(33.33% - 1rem);
}
.column-4 {
  flex: 1 1 calc(25% - 1rem);
}
.column-5 {
  flex: 1 1 calc(20% - 1rem);
}

/* Media Queries */
@media (min-width: 768px) {
  /* Structure */
  .column, .columnz {
    flex: 1 1 0;
  }
}

a.btn_white {
  color: white;
  font-weight: 800;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 2rem;
  border: 3px solid white;
}
a.btn_white:hover {
  color: #8b8b8b;
  border: 3px solid #8b8b8b;
}
a.btn {
  color: #747d88;
  font-weight: 800;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 2rem;
  border: 3px solid #747d88;
}
a.btn:hover {
  color: #454545;
  border: 3px solid #454545;
}
.hero{
  background-image: linear-gradient(180deg, #000000 0%, #2b87da 100%);
  display: flex;
  flex-wrap: wrap;
  color: white;
  padding: 1rem;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding: 1rem;
}

.hero-img img {
  max-width: 100%;
  height: auto;
  border-radius:50%;
}

.services {
  text-align: center;
  padding: 2rem;
}

.service-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.icon-item {
  text-align: center;
  max-width: 180px;
}

.icon-item img {
  width: 100%;
  height: auto;
}

.stats {
  display: flex;
  justify-content: space-around;
  background: #f9c900;
  color: #000;
  padding: 30px 10px;
}
.stats .column {
	text-align: center;
}
.why-us, .machines {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  align-items: center;
}

.why-img, .machines-imgs {
  flex: 1;
  padding: 10px;
}

.why-text, .machines-text {
  flex: 1;
  padding: 10px;
}

.machines-imgs img {
  width: 80px;
  margin: 10px;
}

.contact {
  background: linear-gradient(to bottom, #00152a, #007BFF);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.contact input, .contact textarea {
  margin: 10px 0;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.contact button {
  background: white;
  color: #007BFF;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 30px 10px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 10px;
  border-radius: 0;
}
