.sticky {
  position: sticky;
}

.body-bg {
  background: linear-gradient(rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.9) 98%), url("../../assets/img/white-wallpaper.jpg") center / cover no-repeat;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

#navbar {
  padding-top: 6px;
  padding-bottom: 6px;
}

.nav-elements {
  padding-left: 3px;
  padding-right: 3px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  width: 270px;
  height: 70px;
  border-radius: 10px;
  background: linear-gradient(149deg, rgba(53,58,61,0.86) 0%, rgba(33,37,41,0.78)), rgba(33,37,41,0.5);
  color: var(--bs-body-bg);
  border: 0.5px solid rgba(0,0,0,0.2);
}

a {
  color: var(--bs-body-bg);
}

.nav-link {
  width: 90%;
  height: 90%;
  padding-right: 5px;
  padding-bottom: 0px;
  padding-left: 5px;
}

.nav-link:focus, .nav-link:hover {
  background: linear-gradient(149deg, rgb(63,69,72), rgb(25,28,31)), rgba(33,37,41,0.5);
  border-radius: 10px;
}

.phone {
  z-index: 9;
  /*overflow-x: hidden;*/
  background-color: white;
  max-width: 700px;
  height: 650px;
  border-radius: 40px;
  position: relative;
  margin: 50px auto;
  box-shadow: 0px 0px, 0px 0px 20px rgba(255,255,255,0.34);
  margin-top: 24px;
}

.screen {
  width: 95%;
  height: 92%;
  background: #ffffff;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 40px;
  margin: 0px;
  border: 2px solid var(--bs-secondary);
}

.notch {
  z-index: 2;
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--bs-gray-900);
  border-radius: 10px;
}

.home-button {
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  margin-bottom: 2px;
  background: var(--bs-body-color);
  border-radius: 50px;
  box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.44);
}

.nav-containter {
  margin-top: 8px;
  z-index: 10;
  position: fixed;
}

.hero {
  z-index: 1;
  padding-bottom: 0px;
  position: sticky;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.btn {
  margin: 4px;
}

.main-heading {
  line-height: 100px;
  letter-spacing: 10px;
  padding-left: 10px;
}

.showcase {
  padding-top: 0px;
}

.hr-1 {
  width: 220px;
}

@keyframes hr-hor {
  0% {
    max-width: 0%;
  }
  100% {
    max-width: 220px;
  }
}

.hr-1 {
  animation: hr-hor 2s ease forwards;
}

.name-head {
  letter-spacing: 9px;
  /*animation: letter-spacing 2s ease forwards;*/
  font-size: 20px;
}

.m-b-1 {
  margin-bottom: 12px;
}

.m-b-0 {
  margin-bottom: 0px;
}

.about-p {
  max-width: 400px;
  text-align: justify;
  box-shadow: 0px 0px;
  padding-left: 12px;
  padding-right: 12px;
  line-height: 24px;
}

.service-card {
  overflow: hidden;
  background: linear-gradient(149deg, rgb(53,58,61), rgba(33,37,41,0)), rgba(33,37,41,0.5);
  border-radius: 10px;
  border: 0.5px solid var(--bs-gray-900);
  padding: 20px;
  max-width: 300px;
  margin-bottom: 20px;
}

.service-card-cont {
  max-width: 900px;
  min-width: 300px;
}

.service-hr {
  min-width: 80%;
  margin-top: 0px;
}

ul {
  margin-top: 10px;
  letter-spacing: 1px;
}

.title-hr {
  min-width: 60%;
}

.price-span {
  font-size: 24px;
  text-align: center;
}

.notice-p-box {
  margin-bottom: 45px;
  padding: 10px;
  padding-bottom: 15px;
  padding-top: 15px;
  padding-right: 10px;
  padding-left: 10px;
  box-shadow: 0px 0px 20px rgba(255,255,255,0.08);
  border-radius: 12px;
  /*text-shadow: 0px 0px 20px var(--bs-secondary);*/
  /*background: rgba(0,0,0,0.33);*/
}

.notice-p {
  letter-spacing: 1px;
}

.form-control {
  border-color: white;
}

@media (min-width: 300px) {
  .main-heading {
    font-size: 60px;
    line-height: 70px;
  }
}

@media (min-width: 768px) {
  .main-heading {
    font-size: 90px;
    line-height: 100px;
    letter-spacing: 12px;
  }
}

.w800 {
  max-width: 800px!important;
}

.title-mini-text {
  font-size: 9px;
  letter-spacing: 10px;
}

@keyframes dev-text {
  0% {
    letter-spacing: -4px;
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    letter-spacing: 9px;
    opacity: 1;
  }
}

.title-mini-text {
  display: none;
  min-width: 200px;
  opacity: 0;
  animation: dev-text 2.5s ease-out forwards 1s;
}

@media (min-width: 768px) {
  .hero-heading-box {
    height: 370px;
  }
}

@media (min-width: 768px) {
  .title-mini-text {
    display: block;
  }
}

@media (min-width: 300px) {
  #notch {
    display: none;
  }
}

@media (min-width: 576px) {
  #notch {
    display: block;
  }
}

@media (min-width: 300px) {
  .lng-selectors {
    display: none;
  }
}

@media (min-width: 768px) {
  .lng-selectors {
    display: block;
  }
}

@media (min-width: 300px) {
  .notch {
    display: none;
  }
}

@media (min-width: 768px) {
  .notch {
    display: block;
  }
}

.website-embeds {
  height: 100%;
  position: sticky!important;
  display: none;
}

@media (min-width: 300px) {
  .bg-blur {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (min-width: 992px) {
  .bg-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

@media (min-width: 300px) {
  .navbar-lang {
    display: block;
  }
}

@media (min-width: 768px) {
  .navbar-lang {
    display: none;
  }
}

.font-18 {
  font-size: 20px;
}

h1 {
  font-size: 40px;
}

.dropdown-menu {
  background: var(--bs-secondary);
}

.dropdown-item.active, .dropdown-item:active {
  color: #ffffff;
  text-decoration: none;
  background-color: #000000;
}

.dropdown-item:focus, .dropdown-item:hover {
  color: #dddddd;
  background-color: #000000;
}

.prev-head {
  padding-bottom: 12px;
}

.message-area {
  height: 200px;
}

.footer-icons {
  font-size: 30px;
}

.padding-sides-mid {
  padding-left: 15px;
  padding-right: 15px;
}

.loading-icon {
  bottom: 0;
  height: 100vh;
  right: 50%;
}

.mobile-lang-box {
  margin-top: 15px;
}

.on-top {
  z-index: 10;
}

section {
  overflow-x: hidden;
  padding-right: 8px;
  padding-left: 8px;
  padding-bottom: 50px;
  padding-top: 50px;
}

footer {
  background: rgba(0,0,0,0.2)!important;
  border-top-width: 1px;
  border-top-style: solid;
}

.car-control {
  text-shadow: 1px 0px 1px var(--bs-btn-color), 0px 0px 3px var(--bs-btn-color);
  font-size: 32px;
  border-radius: 20px;
  background: rgba(255,255,255,0);
  color: rgb(255,255,255);
}

.form-control:focus {
  color: #ffffff;
  background-color: rgba(251,174,22,0);
  border-color: white;
  outline: 0;
  box-shadow: none;
}

.form-control {
  display: block;
  width: 80%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  background-color: rgba(255,255,255,0);
  background-clip: padding-box;
  border: none;
  border-radius: 0;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  text-align: left;
  border-bottom: 1px solid #ffffff;
}

.bg-black {
  background-color: black!important;
}

.w400 {
  max-width: 400px;
}

.service-col {
  min-height: 100%!important;
}

.contact-col {
  margin-top: 35px;
}

.web-info {
  padding: 3px;
}

