:root {
  --black: #626262;
  --black2: #2e2d2b;
  --white: #ffffff;
  --primary-color: #ff6105;
  --accent-color: #E2EC55;
  --lightgrey: #fcf9f4;
  --title-font: "Cormorant Garamond", serif;
  --title-font: "Fraunces", serif;
  --title-font: "Noto Serif JP", serif;
  --subtitle-font: "Caveat", cursive;
  --subtitle-font: "Kalam", cursive;
  --subtitle-font: "Satisfy", cursive;
  --paragraph-font: "Plus Jakarta Sans", sans-serif;
}



body {
  font-family: var(--paragraph-font);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: var(--black);
  background: var(--lightgrey);
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
  color: var(--black2);
}

a {
  text-decoration: none;
}

p {
  font-weight: 400;
}

.custom-container {
  padding-left: 24px;
  padding-right: 24px;
  max-width: 1180px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-25 {
  padding-top: 25px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mt-70 {
  margin-top: 70px;
}

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

.pb-150 {
  padding-bottom: 150px;
}

.main-title {
  font-size:40px;
  font-family: var(--title-font);
  font-weight:700;
  color: var(--black2);
  position: relative;
  margin-bottom: 25px;
  line-height: 1.4;
  /* padding-bottom: 10px;
  margin-bottom: 25px; */
}

.main-title span {
  color: var(--primary-color);
  font-family: var(--subtitle-font);display: block;font-weight: 500;

}

.bg-grey {
  background: var(--lightgrey);
}


.theme-btn {
  font-size: 16px;
  font-weight: 400;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  text-decoration: none;
  text-transform: none;
  border-radius: 8px;
  outline: 0;
  border: 1px solid var(--primary-color);
  padding: 8px 20px;
  /* background: linear-gradient( 45deg, var(--green), var(--green2), var(--green3)); */
  background: var(--primary-color);
  color: #fff;
  transition: 0.3s ease-in;
}

.theme-btn svg {
  width: 16px;
  transition: 0.3s ease-in;

}

.theme-btn:hover {
  background: transparent;
  color: var(--primary-color)
}

.theme-btn:hover svg {
  transform: translateX(10px);
}

.theme-btn.btn-bordered {
  background: transparent;
}

.theme-btn.btn-bordered:hover {
  background: var(--primary-color);
  color: #fff;

}

.sub-title {
  color: var(--primary-color);
  font-family: var(--paragraph-font);
  font-size: 16px!important;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.sub-title::after {
  /* content: ''; */
  /* display: inline-block;vertical-align: middle;
  width: 45px;height: 2px;background: var(--primary-color);margin-left: 10px; */

}

.subtitle-bx {
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
}

.subtitle-bx span {
  position: absolute;
  bottom: 0;
  width: 50%;
  left: 55%;
  transform: translateX(-50%);
  display: block;
}

.subtitle-bx span img {
  width: 100%;
}

.bg-pattern {
  background-image: url(../images/pattern2.png);
  background-repeat: repeat;
}
.btn-border{
  background: transparent;
  color: var(--primary-color);
}
.btn-border:hover{
  background: var(--primary-color);color:var(--white)
}
.bg-grey2 {
  background: #eff7e6;
}

.main-title a {
  background: radial-gradient(circle at 30% 107%, #faed5b 0%, #fdf05b 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.sub-title span img {
  width: 70px;
}.fs-25{
  font-size: 25px;
}