@import url("https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&display=swap");

*:not(i) {
  font-family: "Inconsolata", monospace;
}

.navbar {
  padding: 25px 0px;
  border-bottom: 1px solid #282828;
  background-color: #080a107f;
  backdrop-filter: blur(5px);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .nav-link {
  font-weight: 500;
  color: #f1f1f1;
}

.navbar .nav-link:hover {
  color: #6bbf87;
}

.navbar .nav-link.activem {
  color: #6bbf87;
}

.btn-self {
  padding: 13px 18px;
  background-color: #6bbf87;
  border-radius: 4px !important;
  font-weight: 400;
  font-size: 17px;
  color: #080a10;
  border: 2px solid #6bbf87;
  transition: 0.2s ease all !important;
}

.btn-self:hover {
  background-color: transparent;
  border: 2px solid #6bbf87;
  color: #f1f1f1;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  font-size: 20px;
}

.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)),
    url(../images/hero.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50vh;
}

.hero-inner {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-inner h1 {
  color: #6bbf87;
  font-weight: 600;
  font-size: 42px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero-inner p {
  color: #878c91;
  font-weight: 500;
  margin-bottom: 20px;
}

.link-des {
  display: inline-block;
  padding: 14px 40px;
  background-color: #6bbf87;
  border-radius: 4px;
  font-weight: 400;
  font-size: 17px;
  color: #080a10;
  text-decoration: none;
  border: 2px solid #6bbf87;
  transition: 0.2s ease all;
}

.link-des:hover {
  background: transparent;
  color: #f1f1f1;
}

.sect-pad {
  padding-top: 55px;
}

.sect-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 25px;
}

.sect-head h2 {
  font-weight: 600;
  font-size: 34px;
  color: #f1f1f1;
  margin-bottom: 10px;
}

.sect-head p {
  color: #878c91;
  font-weight: 500;
}

.item {
  padding: 30px;
  background: #f1f1f10a;
  backdrop-filter: blur(54px);
  border-radius: 12px;
  border: 1px solid #f1f1f10a;
  transition: 0.2s ease all;
  cursor: default;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item address {
  color: #f1f1f1;
}

.item h5 {
  color: #6bbf87;
}

.item:hover {
  border: 1px solid #6bbf87;
}

.item img.theme-img {
  margin-bottom: 15px;
  border-radius: 8px;
  height: 370px;
  object-fit: cover;
  width: 100%;
}

.item img.client-img {
  margin-bottom: 15px;
  border-radius: 50%;
  height: 100px;
  object-fit: cover;
  width: 100px;
  text-align: center;
  display: block;
  border: 2px solid #6bbf87;
}

.item ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.item ul li {
  color: #878c91;
  font-weight: 500;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.item ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #6bbf87;
  font-size: 18px;
  font-weight: 700;
}

.item h2 {
  font-weight: 600;
  font-size: 34px;
  color: #6bbf87;
}

.item h4 {
  color: #6bbf87;
  font-weight: 600;
  font-size: 16px;
}

.item h3 {
  color: #6bbf87;
  font-weight: 600;
  font-size: 24px;
}

.item p {
  color: #878c91;
  font-weight: 500;
}

form {
  max-width: 900px;
  margin: 0 auto;
}

.form-control {
  background: #f1f1f11f;
  border: 1px solid #f1f1f11f;
  color: #f1f1f1;
  padding: 12px;
  border-radius: 4px;
}

input {
  color: #f1f1f1 !important;
  height: 60px;
}

.form-control::placeholder {
  color: #f1f1f1;
}

.form-control:focus {
  background: #f1f1f11f !important;
}

.form-control:focus::placeholder {
  color: #f1f1f1 !important;
}

label {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

footer hr {
  color: #b2b2b2;
}

.footer-link ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.footer-link ul li {
  list-style: none;
  color: #f1f1f1;
}

.footer-link ul li a {
  text-decoration: none;
  color: #f1f1f1;
}

.footer-link ul li a:hover {
  color: #6bbf87;
}

footer p {
  color: #f1f1f1;
}

.footer-top-info {
  background: #f1f1f10a;
  backdrop-filter: blur(54px);
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.footer-top-info a {
  color: #f1f1f1;
  text-decoration: none;
  transition: 0.3s ease all;
}

.footer-top-info a:hover {
  color: #6bbf87;
}

.footer-top-info p {
  color: #f1f1f1;
}

.footer-top-info address {
  color: #f1f1f1;
}

.footer-top-info h3 {
  color: #6bbf87;
  font-size: 20px;
}

.cont-it {
  background: #f1f1f10a;
  backdrop-filter: blur(54px);
  font-weight: 400;
  font-size: 16px;
  color: #f1f1f1;
  padding: 16px 0;
  border-radius: 4px;
  transition: 0.2s ease all;
}

.cont-it:hover {
  background-color: #6bbf87;
}

.cont-it h5 {
  margin: 0;
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
}

body {
  background: #080a10;
}
