body {
  padding: 0;
  margin: 0;
  font-family: "Orgon";
  cursor: none;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
}

a {
  display: inline-block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: "HandelGothic BT";
}

.custom-btn {
  background: var(--dark-red);
  padding: 11px 20px;
  color: #fff;
  font-weight: 500;
  text-transform: none;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.header_sec .custom-btn {
  margin-left: 30px;
}

.custom-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: initial;
  right: 0;
  background: var(--dark-black);
  width: 0;
  transition: width 0.3s;
  height: 100%;
  z-index: -1;
}

.custom-btn:hover::before {
  left: 0;
  right: initial;
  width: 100%;
}

.custom-btn:hover {
  color: #fff;
}

.scroll-down {
  position: absolute;
  bottom: 60px;
  width: 100%;
  z-index: 8;
  text-align: center;
  left: 0;
}

.scroll-down span {
  max-width: 40px;
  height: 60px;
  display: inline-block;
  width: 100%;
  background: transparent;
  border: 3px solid #fff;
  margin: 30px 0px 0px 0px;
  border-radius: 20px;
  position: relative;
  z-index: 5;
}

.scroll-down span:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 100%;
  animation: scroll-down 1.5s linear infinite;
}

p,
.para {
  font-size: 16px;
  color: #545454;
  font-weight: 400;
  line-height: 25px;
}

.heading .title {
  font-size: 35px;
  margin: 9px 0 25px 0;
  text-transform: capitalize;
  line-height: 45px;
  color: var(--dark-black);
}

.heading .subtitle {
  font-weight: 600;
  color: var(--dark-red);
  letter-spacing: 1px;
  font-size: 18px;
  line-height: 25px;
}

@keyframes scroll-down {
  0% {
    top: 20%;
  }
  100% {
    top: 60%;
    opacity: 0;
  }
}

.sec-padding {
  padding: 80px 0;
}

.sec-pt {
  padding-top: 80px;
}

.sec-pb {
  padding-bottom: 80px;
}

.sec-margin {
  margin: 80px 0;
}

.sec-mt {
  margin-top: 80px;
}

.sec-mb {
  margin-bottom: 80px;
}

.cursor {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 1px solid #fff;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(calc(-50% + 15px), -50%);
  z-index: 1024;
  mix-blend-mode: difference;
}

.cursor2 {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #fff;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 1024;
  mix-blend-mode: difference;
}

.cursor.hover {
  width: 0;
  height: 0;
  transition: 0.2s;
}

.cursor2.cursorinnerhover {
  width: 30px;
  height: 30px;
}

/* roots */

:root {
  --dark-black: #000;
  --light-black: #3e3c42;
  --dark-red: #c42e30;
}
