body {
      margin: 0;
      padding: 0;
      background: url('../bg.jpg') no-repeat center center fixed; 
      background-size: cover;
      color: white;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      position: relative;
	  font-family: 'Inter', sans-serif;
}
body::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7); /* Затемнение фона */
      z-index: -1;
}
.h2, h2 {
        font-size: 1.4rem;
    }
.icon {
    font-size: 42px;
}
video {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }
video::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* Затемнение видео-фона */
      z-index: 1;
    }
.floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      transition: opacity 0.3s ease;
    }
.floating-buttons.hidden {
      opacity: 0;
      pointer-events: none;
    }
footer {
      background-color: rgba(0, 0, 0, 0.8);
      color: white;
      text-align: center;
      padding: 10px 0;
      margin-top: auto;
    }
.desk {
    padding:20px 0px;
    text-align:left;
    font-weight:300;
}
.lnk{
    width:100%;
    text-decoration:none;
}
.icon-boxes {
    margin-top:25px;
}
.ft {
    color:#7b7b7b;
    margin-top: 25px;
}


/*menu*/
.navbar .navbar-nav .nav-item::after {
  transition: all 0.5s;
}
@media only screen and (min-width: 992px) {
  .navbar {
    padding: 0;
  }
  .navbar .navbar-brand {
    padding: 0 0.7em;
  }
  .navbar .navbar-nav .nav-link {
    padding: 1em 0;
  }
  .navbar .navbar-nav .nav-item {
    margin: 0 1em;
  }
}
.navbar .navbar-nav .nav-item {
  position: relative;
}
.navbar .navbar-nav .nav-item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #ddd;
  width: 0%;
  content: "";
  height: 2px;
}
.navbar .navbar-nav .nav-item:hover::after {
  width: 100%;
}

.thumb img {
    border: 1px solid #dddddd63;
    border-radius: 5px;
    margin-bottom: 15px;
  transition: all 0.5s;
}

.thumb img:hover {
    border: 1px solid #fff;
}

