html,
body {
  height: 100%;
  background-color: #000000;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  min-height: 1800px;
  animation: gradientAnimation 15s ease infinite;
  scroll-behavior: smooth;
}

nav {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  z-index: 1;
}

h1 {
  font-size: 1.65rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  animation: 0.5s fadeIn ease-in 2.6s forwards;
  opacity: 0;
}

h2 {
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
  animation: 0.5s fadeIn ease-in 2.9s forwards;
  opacity: 0;
}

h2, h3, h4 {
  font-weight: 300;
  text-transform: uppercase;
}

h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 3.5rem;
}

.mb-3 {
  margin-bottom: 2rem !important;
}

section {
  position: relative;
  padding-top: calc(40px + 1rem);
  padding-left: 1em;
  padding-right: 1em;
  background-color: #000000;
}

input, textarea {
  outline: none !important;
}

ul {
  padding: 0;
}

hr {
  margin-top: 0;
  border-color: #ffffff;
}

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

.min-100 {
  min-height: 100vh;
}

.navbar {
  background: transparent;
  position: fixed;
  transition: 0.5s background-color;
  width: 100%;
  z-index: 1000;
}
.navbar a, .navbar button {
  border: none;
  background: none;
}
.navbar a:hover, .navbar button:hover {
  opacity: 0.95;
}
.navbar a.language-button, .navbar button.language-button {
  opacity: 0.4;
  text-decoration: none;
  border: 0;
  background: none;
}
.navbar a.language-button:hover, .navbar button.language-button:hover {
  opacity: 1;
}
.navbar a.lang-active, .navbar button.lang-active {
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #6C63FF, #38D9A9);
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1rem;
  margin-top: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease, opacity 1s, all 0.3s ease;
}
.cta-button:hover {
  transform: scale(1.05) !important;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

#about div.row > div, #about div.row > .service-card, #about h3, #about h4, #about .cta-button, #tech div.row > div, #tech div.row > .service-card, #tech h3, #tech h4, #tech .cta-button, #services div.row > div, #services div.row > .service-card, #services h3, #services h4, #services .cta-button, #portfolio div.row > div, #portfolio div.row > .service-card, #portfolio h3, #portfolio h4, #portfolio .cta-button, #contacts div.row > div, #contacts div.row > .service-card, #contacts h3, #contacts h4, #contacts .cta-button {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}
#about div.row > div.visible, #about div.row > .service-card.visible, #about h3.visible, #about h4.visible, #about .cta-button.visible, #tech div.row > div.visible, #tech div.row > .service-card.visible, #tech h3.visible, #tech h4.visible, #tech .cta-button.visible, #services div.row > div.visible, #services div.row > .service-card.visible, #services h3.visible, #services h4.visible, #services .cta-button.visible, #portfolio div.row > div.visible, #portfolio div.row > .service-card.visible, #portfolio h3.visible, #portfolio h4.visible, #portfolio .cta-button.visible, #contacts div.row > div.visible, #contacts div.row > .service-card.visible, #contacts h3.visible, #contacts h4.visible, #contacts .cta-button.visible {
  opacity: 1;
  transform: translateY(0);
}

.logo-header {
  top: 50%;
  left: 50%;
  z-index: 10;
}

.home {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  align-content: center;
}

a.nav-link {
  padding: 0;
  position: relative;
  color: #ffffff;
}

@media screen and (max-device-width: 767px) {
  .navbar {
    background-color: rgba(0, 0, 0, 0.8);
  }
}
@media screen and (min-device-width: 1024px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.hamburger {
  position: absolute;
  top: 10px;
  z-index: 10;
  cursor: pointer;
}
.hamburger .inner {
  position: relative;
  padding: 10px;
  width: 25px;
  height: 25px;
  background-color: transparent;
  border: none;
}
.hamburger .inner span {
  background: #fff;
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  transition: top 0.1s ease-out, transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.hamburger .inner span:nth-child(1) {
  top: 18px;
}
.hamburger .inner span:nth-child(2) {
  top: auto;
  bottom: 18px;
}

@media screen and (min-device-width: 500px) and (max-device-width: 991px) {
  .mobile-nav .hamburger {
    left: 4rem;
  }
}
nav.mobile-nav .mobile-menu {
  opacity: 0;
  transition: 0.4s opacity ease-out;
}

nav.mobile-nav.overlay-menu .mobile-menu {
  opacity: 1;
}

.mobile .navbar {
  position: fixed;
  padding-top: 2.5em;
  padding-left: 1.4em;
  width: 100%;
  z-index: 9;
  opacity: 1;
  transition: 0.3s opacity ease-out;
}
.mobile .navbar ul li {
  list-style: none;
  text-transform: uppercase;
}
.mobile .navbar button {
  padding-left: 0px;
  padding-right: 15px;
  font-size: 1.25rem;
  color: #ffffff;
}
.mobile .navbar .nav-item {
  padding-top: 1em;
  padding-bottom: 1em;
}
.mobile .navbar .nav-item a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.25em;
}

a.nav-logo-link {
  position: relative;
}
a.nav-logo-link .nav-logo-img {
  display: none;
}

@media screen and (max-device-width: 500px) {
  .to-contact {
    width: 14em;
    height: 2.25em;
  }
}
.to-contact:hover {
  background-color: #fff;
  color: #111;
  cursor: pointer;
}

.about {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  color: rgba(255, 255, 255, 0.95);
  background-color: #000000;
}
.about strong {
  color: rgb(255, 255, 255);
}
.about .container {
  position: relative;
  z-index: 1;
}
.about .row > div {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}

@keyframes moveBg {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.services {
  margin-bottom: 5rem;
  padding: 60px 0;
  position: relative;
}
.services .service-card {
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background: linear-gradient(45deg, #6C63FF, #38D9A9);
}
.services .service-card:hover {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}
.services .service-card h5 {
  font-size: 1.5rem;
  margin-bottom: 25px;
}
.services .service-card .price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f39c12;
}
.services .service-card .divider {
  border-color: #fff;
  margin: 10px 0;
}
.services .service-card .details {
  font-size: 1rem;
}
.services .row .col-12 {
  display: flex;
  flex-direction: column;
}
.services .row .col-12 p {
  flex-grow: 1;
}

.mobile .menu {
  flex: 0 0 100%;
}
.mobile .portfolio {
  margin-bottom: 5rem;
}
.mobile .portfolio .row {
  flex-wrap: wrap;
}

#tech .tech-item {
  background: #222;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  color: #fff;
}
#tech .tech-logo {
  max-height: 100px;
  width: auto;
}
@media screen and (max-width: 498px) {
  #tech .tech-logo {
    max-height: 50px;
  }
}

.portfolio {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}
.portfolio .row {
  position: relative;
  margin: 0 !important;
}
.portfolio .project-name {
  padding: 10px;
  background-color: rgba(10, 10, 10, 0.75);
}
.portfolio .port-item {
  flex: 0 0 20%;
  scroll-snap-align: start;
  min-width: 400px;
  opacity: 0;
}
.portfolio .coube {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
}
.portfolio .img-coube1 {
  background-image: url("../images/kepicomua.webp");
}
.portfolio .img-coube2 {
  background-image: url("../images/enoua.webp");
}
.portfolio .img-coube3 {
  background-image: url("../images/edtapp-site.webp");
}
.portfolio .img-coube4 {
  background-image: url("../images/trendnutrition.webp");
}
.portfolio .img-coube6 {
  background-image: url("../images/dressupkids.webp");
}
.portfolio .img-coube7 {
  background-image: url("../images/JKLogo.webp");
}
.portfolio .img-coube8 {
  background-image: url("../images/ride2ukraine.webp");
}
.portfolio img {
  height: 100%;
  width: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.social-links a {
  color: #ffffff;
  font-size: 2.5em;
  text-decoration: none;
  padding: 10px;
}
.social-links a:active {
  color: #ffffff;
}

.contacts {
  margin-bottom: 10rem;
  padding-top: 7.5rem;
  position: relative;
  color: #ffffff;
}
.contacts a {
  color: #ffffff;
}
.contacts a:hover {
  text-decoration: underline;
}
.contacts .contact-icon {
  font-size: 1.5em;
  color: #ffffff;
}
.contacts .input-style {
  border: none;
  border-bottom: 1px solid #ced4da;
  background-color: transparent;
  padding: 0.5rem;
  border-radius: 0;
  outline: none;
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  background-clip: padding-box;
}
.contacts .question {
  font-weight: 400;
}
.contacts .label-name {
  color: #6c757d;
  top: 7px;
  left: 23px;
}
.contacts .textarea-style {
  border: none;
  border-bottom: 1px solid #ced4da;
  border-radius: 0;
  outline: none;
  border-bottom: 1px solid #ced4da;
  padding: 30px 1rem 0.375rem 0.5rem;
  display: block;
  width: 100%;
  min-height: 10rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  background-color: transparent;
  background-clip: padding-box;
}
.contacts .form-line.non-valid input {
  border-bottom-color: red;
}
.contacts .form-line.non-valid textarea {
  border-bottom-color: red;
}
.contacts .form-line.non-valid .label-name {
  color: red;
}
.contacts .send-msg-text {
  padding-top: 1em;
  opacity: 0;
  color: #D9A476;
  transition: opacity 0.75s;
}
.contacts .send-msg-text.show {
  opacity: 1;
}

footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  color: #26353c;
}
footer p {
  border-top: 1px #dcdcdc solid;
  padding-top: 0.75em;
  opacity: 0.75;
  color: #ffffff;
}

.container-fluid {
  padding-top: 50px;
  padding-bottom: 50px;
}

.portfolio-card {
  background: #e0e5ec;
  border-radius: 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 170px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.portfolio-card p {
  display: flex;
  font-weight: bold;
  transition: color 0.3s ease;
  margin: 0;
}
@media screen and (max-width: 498px) {
  .portfolio-card {
    height: 150px;
  }
}
.portfolio-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease;
  z-index: 1;
}
.portfolio-card:hover::after {
  background: rgba(0, 0, 0, 0);
}

@media (max-width: 767px) {
  .col-12 {
    width: 100%;
  }
  .portfolio-card p {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .col-md-4 {
    width: 33.33%;
  }
}
@media (min-width: 992px) {
  .col-lg-3 {
    width: 25%;
  }
}

/*# sourceMappingURL=styles-2.css.map */
