/* Scroll Bar */
html::-webkit-scrollbar {
  position: absolute;
  width: 0.5vw;
}
html::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #151414;
}
html::-webkit-scrollbar-thumb:hover {
  background-color: var(--main);
}
html::-webkit-scrollbar-track {
  background-color: white;
}

/* Common CSS */

/* Google Fonts (Lato) */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

/* Variable List */
:root {
  --main: #F27920;
  --lightBlack: #221e1f;
  --lightWhite: white;
  --largeFont: 32px;
  --mediumFont: 16px;
  --normalFont: 14px;
  --textColor: #222;
  --textColor2: #948e8c;
  --textColor3: #777;
  --fontFamily: "Lato", sans-serif;
  --sectionPadding: 40px 0px;
  --transition: all 0.3s;
}

body {
  font-size: var(--normalFont);
  color: var(--textColor);
  font-family: var(--fontFamily);
  font-weight: 400;
}
h1,
h2,
h3,
h4 {
  font-family: var(--fontFamily);
  color: var(--textColor);
  font-weight: semi-bold;
  margin: 0;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
p {
  margin: 0;
}
a {
  text-decoration: none;
  color: var(--textColor);
  transition: var(--transition);
}

a:hover {
  color: var(--main);
}
.btn-buy {
  padding: 13px 29px;
  color: #fff;
  letter-spacing: 0.05em;
  border: 2px solid var(--main);
  /* background-image: linear-gradient(30deg, var(--main) 50%, transparent 50%); */
  background-color: var(--main);
  /* background-size: 850px; */
  background-repeat: no-repeat;
  /* background-position: 0; */
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-buy:hover,
.btn-buy:active {
  box-shadow: none;
  outline: 0;
  /* background-position: 100%; */
  color: #000;
  background-color: #fff;
}
.btn-buy.link {
  background: transparent;
  color: var(--main);
  font-weight: 500;
  font-size: var(--normalFont);
}

.section-padding {
  padding: var(--sectionPadding);
}
.section-title {
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: center;
}
.section-title h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title .line {
  position: relative;
  height: 4px;
  width: 45px;
  background-color: var(--main);
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  display: none;
}
.section-title h2:after,.section-title h2:before {
  position: absolute;
  content: "";
  height: 2px;
  width: 80%;
  background: linear-gradient(145deg, var(--main), black);
  bottom: 0;
  left: 50%;
  transform:
          translateX(-50%);
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.section-title h2:before {
  width: 60%;
  bottom: -4px;
  background: linear-gradient(275deg, var(--main), black);
}

.section-title .line:after,
.section-title .line:before {
  position: absolute;
  height: 4px;
  width: 10px;
  content: "";
  background-color: var(--main);
}

.section-title .line:after {
  right: 50px;
}

.section-title .line:before {
  left: 50px;
}
