/* google-font  */
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700;800;900&display=swap");

body {
  font-family: "Work Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

h1 {
  font-size: 72px;
  line-height: normal;
}

h2 {
  font-size: 56px;
  line-height: normal;
}

p {
  font-size: 18px;
  line-height: 26px;
}

body {
  overflow-x: hidden;
}

.py-110px {
  padding-top: 100px;
  padding-bottom: 110px;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 30px;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 30px;
}

.mt-50px {
  margin-top: 50px;
}

:root {
  /* color  */
  --headding-color: #04091e;
  --paragraph-color: #747681;
  --primary-color: #f01543;
  --white-color: #fff;

  /* font-weight  */
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
}

.main-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  appearance: none;
  outline: none;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  font-size: 16px;
  font-weight: var(--font-semibold);
  padding: 14px 35px;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.main-btn:hover {
  color: var(--white-color);
  border: 1px solid var(--primary-color);
}

.main-btn:before {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -110%;
  left: -10%;
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  z-index: -1;
}

.main-btn:hover::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.main-btn:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--primary-color);
  transform: translate3d(0, -100%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  z-index: -1;
}

.main-btn:hover::after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}
