* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #001e23;
  color: #fff;
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3019607843);
  background-color: #0a0b0c;
}
body::-webkit-scrollbar,
body ::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1019607843);
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #0a0b0c;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 10;
}

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

.mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6901960784);
}

img {
  max-width: 100%;
}

header .header-area {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 20;
  height: auto;
  padding: 11px 0;
  transition: all 0.3s ease-out 0s;
}
header .header-area.scroll-down {
  background-color: #000;
}
header .header-area .custom-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
header .header-area .custom-container .logo {
  max-width: 170px;
}
header .header-area .custom-container nav {
  display: flex;
  align-items: center;
}
header .header-area .custom-container nav .menu {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
header .header-area .custom-container nav .menu li {
  list-style-type: none;
  padding: 0 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}
header .header-area .custom-container nav .menu li.active a {
  color: #45f882;
}
header .header-area .custom-container nav .menu li.active::after {
  opacity: 1;
}
header .header-area .custom-container nav .menu li::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #45f882;
  bottom: 25%;
  left: 6px;
  opacity: 0;
  transition: all 0.3s ease-out 0s;
}
header .header-area .custom-container nav .menu li a {
  transition: all 0.3s ease-out 0s;
}
header .header-area .custom-container nav .menu li:hover a {
  color: #45f882;
}
header .header-area .custom-container nav .menu li:hover::after {
  opacity: 1;
}

.wrapper section {
  padding: 6rem 0;
}
.wrapper section:hover .title:after {
  width: 100%;
  left: 0;
}
.wrapper section .title {
  font-size: 40px;
  font-family: "Lilita One", sans-serif;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 6rem;
  text-align: center;
  position: relative;
}
.wrapper section .title span {
  color: #45f882;
}
.wrapper section .title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  left: 45%;
  width: 0;
  height: 3px;
  background-color: #45f882;
  transition: all 0.4s ease-out 0s;
}
.wrapper section .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wrapper section#home {
  background-image: url("./images/banner_bg.jpg");
  position: relative;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 190px);
}
.wrapper section#home .content h1 {
  font-size: 60px;
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 1.5rem;
  color: #45f882;
  text-shadow: -1px 3px 0px rgb(255, 255, 255);
  text-transform: uppercase;
}
.wrapper section#home .content h1 span {
  color: #fff;
  text-shadow: -1px 3px 0px rgba(69, 248, 129, 0.66);
}
.wrapper section#home .content p {
  font-size: 18px;
  width: 55vw;
}
.wrapper section#about p {
  width: 50vw;
}
.wrapper section#products .products-section {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 60vw;
}
.wrapper section#products .products-section .card {
  padding: 0 15px;
  flex: 1;
}
.wrapper section#products .products-section .card .mask {
  background-color: rgba(0, 0, 0, 0.2392156863);
}
.wrapper section#products .products-section .card .project_item {
  border: 3px solid #383c4e;
  border-radius: 10px;
  padding: 3px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease-out 0s;
}
.wrapper section#products .products-section .card .project_item:hover {
  border-color: #45f882;
}
.wrapper section#products .products-section .card .project_item:hover .project_thumb:after {
  height: 100%;
  opacity: 0.6;
}
.wrapper section#products .products-section .card .project_item .project_thumb {
  height: 265px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.wrapper section#products .products-section .card .project_item .project_thumb::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: rgb(14, 20, 30);
  background: linear-gradient(0deg, rgb(14, 20, 30) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
  pointer-events: none;
  transition: all 0.4s ease-out 0s;
}
.wrapper section#products .products-section .card .project_item .project_thumb::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  border-radius: 6px;
  background: #45f882;
  background: linear-gradient(0deg, #45f882 0%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease-out 0s;
}
.wrapper section#products .products-section .card .project_item .project_thumb img {
  height: 100%;
  width: auto;
  max-width: auto;
}
.wrapper section#products .products-section .card .project_item .name {
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 28px;
  text-transform: uppercase;
}
.wrapper section#why-choose-us {
  background-image: url("./images/area_bg.jpg");
}
.wrapper section#why-choose-us ul {
  padding: 0;
  margin: 0;
  width: 50vw;
}
.wrapper section#why-choose-us ul li {
  list-style-type: none;
  padding-top: 2rem;
  position: relative;
  cursor: pointer;
  margin-bottom: 1rem;
}
.wrapper section#why-choose-us ul li:hover::before {
  top: 0;
  height: 100%;
  border-radius: 0;
  background: #45f882;
  background: linear-gradient(0deg, #45f882 0%, transparent 100%);
}
.wrapper section#why-choose-us ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #45f882;
  border-radius: 50%;
  position: absolute;
  left: -20px;
  top: 50px;
  transition: all 0.4s ease-out 0s;
}
.wrapper section#contacts ul {
  margin: 0;
  padding: 0;
}
.wrapper section#contacts ul li {
  list-style-type: none;
}
.wrapper section#contacts ul li label {
  font-weight: 600;
  margin-right: 10px;
  color: #45f882;
}

footer {
  padding: 1.5rem 0;
  color: #fff;
  font-weight: 700;
  background-color: #000;
}
footer .custom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}
footer .custom-container span {
  color: #45f882;
}/*# sourceMappingURL=style.css.map */