html {
  scroll-behavior: smooth;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-image: url(/assets/lines-1.webp);
  background-size: fill;
  background-position: center;
  background-color: #080808;
  transition: opacity 0.5s;
  cursor: default;
}

a {
  cursor: grab;
}
a:active {
  cursor: grabbing;
}

body::-webkit-scrollbar {
  width: 0.3rem;
  scroll-behavior: smooth;
}

body::-webkit-scrollbar-track {
  background: rgb(0, 0, 0);
  scroll-behavior: smooth;
}

body::-webkit-scrollbar-thumb {
  background: #ffffff;
  scroll-behavior: smooth;
}

.logo {
  position: fixed;
  top: -15px;
  left: 0;
  padding: 10px;
  z-index: 1;
  user-select: none;
  cursor: default;
  filter: brightness(70%) !important;
}

.logo img {
  width: 150px;
  height: auto;
}

.menutoggle {
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: url(/assets/menu.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
  cursor: pointer;
  z-index: 10000;
  transition: 1s;
  filter: brightness(70%) !important;
}

.menutoggle:hover {
  background: url(/assets/menu.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
}

.menutoggle.active {
  top: 5px;
  right: 5px;
  background: url(/assets/close.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
  transition: 1.2s;
  border-radius: 100px;
}

.menutoggle.active:hover {
  background: url(/assets/close.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
  background-color: rgba(255, 0, 0, 0.5);
}

.sideimg {
  position: absolute;
  top: 0;
  right: 10px;
  /* height: 100%; */
}

.navigation {
  position: fixed;
  bottom: 100%;
  right: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1s;
  cursor: auto;
  visibility: hidden;
  opacity: 0;
}

.navigation-style-1,
.navigation-style-2,
.navigation-style-3 {
  position: fixed;
  bottom: 100%;
  right: 0;
  /* left: 100%; */
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1.3s;
  cursor: auto;
  visibility: hidden;
  opacity: 0;
}

.navigation-style-1.active,
.navigation-style-2.active,
.navigation-style-3.active,
.navigation.active {
  visibility: visible;
  opacity: 1;
  bottom: 0;
  transition: 1.3s;
}

.navigation-style-1 {
  background-color: #161616;
}
.navigation-style-2 {
  background-color: #353535;
}
.navigation-style-3 {
  background-color: #464646;
}
.navigation ul {
  position: relative;
  list-style: none;
  text-align: center;
}

.navigation ul li input {
  border: none;
  background-color: #ffffff;
}
.navigation ul li input,
.navigation ul li a {
  font-size: 2.5em;
  color: #3a3a3a;
  text-decoration: none;
  font-weight: 300;
  -webkit-transition: font-size 0.5s;
}
.navigation ul li input:hover {
  color: #1d1d1d;
  font-size: 3.4em;
  font-weight: 600;
  transition: 0.5s;

  -webkit-transition: font-size 0.5s;
}

@media (max-width: 1043px) {
  .menutoggle.active:hover {
    background-color: transparent;
  }
}

/* Footer */
.footer {
  width: 100%;
  display: block;
  font-family: "Poppins", sans-serif;
  cursor: default;
  background-image: none !important;
  cursor: default;
}

.inner-footer {
  width: 95%;
  margin: auto;
  padding: 30px 10px;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  justify-content: center;
}

.footer-items {
  width: 25%;
  padding: 10px 20px;
  box-sizing: border-box;
  color: #fff;
}

.footer-items h1 {
  color: #fff;
  font-family: "Gotham-Black";
}
.footer-items h3 {
  color: #fff;
  font-family: "Gotham-Medium";
}

.footer-items p {
  font-size: 16px;
  text-align: left;
  line-height: 25px;
  color: #fff;
  cursor: default;
}

.border1 {
  height: 3px;
  width: 40px;
  background: #ff7f50;
  color: #ff7f50;
  background-color: #ff7f50;
  border: 0px;
}

.footer ul {
  list-style: none;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.5px;
  user-select: none;
  cursor: default;
}

.footer ul a {
  text-decoration: none;
  outline: none;
  color: #fff;
  transition: 0.3s;
  user-select: none;
  cursor: default;
}

.footer ul a:hover {
  color: #ff7f50;
}

.footer ul li {
  margin: 10px 0;
  height: 25px;
}

.footer li i {
  margin-right: 20px;
}

.social-media {
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 20px;
  user-select: none;
}

.social-media a {
  text-decoration: none;
}

.social-media i {
  height: 25px;
  width: 25px;
  margin: 20px 10px;
  padding: 4px;
  color: #fff;
  transition: border-bottom 0.5s;
  border-bottom: 2px solid transparent;
  overflow: hidden;
  cursor: grab;
}

.social-media i:hover {
  border-bottom: 2px solid #fff;
}

.footer-bottom {
  padding: 10px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  background-image: none !important;
}

::selection {
  color: #ff7f50;
}

.footer-bottom::selection {
  color: #ff7f50;
}
.footer-bottom a {
  padding: 10px;
  color: #f7f7f7;
  font-size: 16px;
  text-align: center;
  user-select: none;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: none;
  user-select: none;
}
.footer-bottom a:hover {
  color: #ff7f50;
}

/* Add an underline animation to ul and li elements */
.footer ul li::before,
.footer ul a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #f7f5f5; /* Adjust to your desired color */
  bottom: 0;
  left: 0;
  transition: width 0.3s ease-in-out;
  transform-origin: left;
}

.footer ul li:hover::before::before,
.footer ul a:hover::before {
  width: 100%;
}

.selectionon a {
  user-select: all !important;
}

.contactbtn {
  height: 20vh;
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.button-50 {
  appearance: button;
  background-color: #000;
  background-image: none;
  border: 1px solid #000;
  border-radius: 4px;
  box-shadow: #fff 4px 4px 0 0, #000 4px 4px 0 1px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-family: ITCAvantGardeStd-Bk, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0 5px 10px 0;
  overflow: visible;
  padding: 12px 40px;
  text-align: center;
  text-transform: none;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}

.button-50:focus {
  text-decoration: none;
}

.button-50:hover {
  text-decoration: none;
}

.button-50:active {
  box-shadow: rgba(0, 0, 0, 0.125) 0 3px 5px inset;
  outline: 0;
}

.button-50:not([disabled]):active {
  box-shadow: #fff 2px 2px 0 0, #000 2px 2px 0 1px;
  transform: translate(2px, 2px);
}

@media (min-width: 768px) {
  .button-50 {
    padding: 12px 50px;
  }
  .contactbtn {
    flex-direction: row;
  }
}

@media screen and (max-width: 1275px) {
  .footer-items {
    width: 50%;
  }
}

/* for mobile screen view */

@media screen and (max-width: 660px) {
  .footer-items {
    width: 100%;
  }
  .contactbtn {
    flex-direction: column;
    gap: 15px;
  }
}
