@import url("./components/header.css");
@import url("./components/footer.css");
@import url("./ting.css");
@import url("./components/tools.css");
@import url("./news.css");

@font-face {
  font-family: "futurica";
  src: url("/assets/fonts/Futurica.ttf");
}
@font-face {
  font-family: futurica;
  src: url("/assets/fonts/FuturicaL.ttf");
  font-weight: lighter;
}
/* @font-face {
  font-family: futurica;
  src: url("/public/assets/fonts/a_FuturicaMedium_2305.ttf");
  font-weight: 500;
} */
@font-face {
  font-family: futurica;
  src: url("/assets/fonts/FuturicaB.ttf");
  font-weight: bold;
}
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
label {
  font-family: futurica;
}
img {
  object-fit: cover;
}
.line-height-1-1 {
  line-height: 1.1rem;
}
.transition-scale {
  transition: 0.6s;
  position: relative;
  z-index: -1;
}
.img-scale:hover img,
.first-content-left:hover.first-content-left .first-content-left-img {
  transform: scale(1.1);
}
/* .first-content-left:hover.first-content-left .first-content-left-img,
.img-up:hover.img-up img,
.img-down:hover.img-down img {
  transform: scale(1.1);
} */
.berrors{
  justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.layer {
  position: relative;
}
.layer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background-image: linear-gradient(to bottom, transparent, #000000d9);
  border-radius: 10px;
  top: 0;
}
.layer2::before {
  height: 99%;
  background-image: linear-gradient(to bottom, transparent, #0f0f0ff7);
}
.layer-green-news::before {
  background: #41a4813b !important;
}
.layer-services::before {
  background-image: linear-gradient(
    to bottom,
    transparent,
    #0000006e
  ) !important;
}
.layer-green::before {
  background: #41a48185 !important;
  background-image: none;
}
.menu-list-item img {
  transition: all 500ms ease;
}
.menu-list-item:hover img {
  transform: scale(-1) rotate(180deg);
}
.menu-list-item:hover p {
  color: #69b99d;
}
.btn-primary {
  background-color: #69b99d;
  color: #fff;
  padding: 11px 28px;
  border-radius: 25px;
  font-size: 12px;
}
.btn-primary img {
  transition: 0.3s all ease-in-out;
}
.btn-primary:hover.btn-primary img {
  animation: toLeftFromRight 0.3s forwards;
}
.navbar {
  transition: 0.3s all ease-in-out;
}
.navbar-active {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  animation-duration: 0.7s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-timing-function: ease;
  transition: 0.3s all ease-in-out;
}
.box-shadow {
  box-shadow: 0px 1px 10px 0px rgb(12 12 12 / 6%);
}
.btn-form {
  background-color: #69b99d;
  color: #fff;
  padding: 8px 70px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
}
/* .mobile-menu {
  position: fixed;
  width: 0;
  height: 100vh;
  background-color: #ccf4e6;
  z-index: 99;
  right: 0;
  transition: 0.5s;
  transform: translateX(100%);
  transition: all 0.5s linear;
   opacity: 0;
  visibility: hidden;
} */
.show {
  width: 100%;
  transform: translateX(0);
  visibility: visible;
}

/* .owl-carousel {
  cursor: default !important;
}
.grabbing {
  cursor: default;
} */

@media only screen and (max-width: 768px) {
  br {
    display: none;
  }
}

@keyframes toLeftFromRight {
  49% {
    transform: translateX(-100%);
  }
  50% {
    opacity: 0;
    transform: translateX(100%);
  }
  51% {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
