*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul{
  list-style: none;
}

a{
  text-decoration: none;
}

section{
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--dark);
  scroll-margin-top: 90px;
}

.magnet{
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  user-select: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

html{
  scroll-behavior: smooth;
}
body{
  background-color: var(--dark);
}

body.modal-open .service-details {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

body.modal-open {
  overflow: hidden;
}

body.modal-open .service-item,
body.modal-open .service-item * {
    cursor: default !important;
}

.white{
  color: white;
}

textarea{
  resize: none;
}

:root{
  --primary-clr: /*#c48f56 #fd780f*/ #ff7d1a;
  --priimary-clr: ;
  --secondary-clr: #202020;
  --dark: #181818;
  --main-radius: 20px; /*25-30*/
}

::-webkit-scrollbar {
  width: 12px;
  scrollbar-width: thin;
  scrollbar-color: #555 #1e1e1e;
  cursor: pointer;
}

::-webkit-scrollbar-track {
  background: #1e1e1e;
}

::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 10px;
  border: 3px solid #1e1e1e;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #777;
  background-color: var(--primary-clr);
}

@media screen and (max-width: 1535px) {}
@media screen and (max-width: 1279px) {}
@media screen and (max-width: 1023px) {}
@media screen and (max-width: 767px) {}
@media screen and (max-width: 479px) {
  .pageloader{
    display: none!important;
  }
}