* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "inter-reg", sans-serif;
  line-height: 1.4;
  color: var(--text);
}

@font-face {
  font-family: "inter-reg", sans-serif;
  src: url("./fonts/Inter-Regular.otf");
  font-weight: 400;
}
@font-face {
  font-family: "inter-md", sans-serif;
  src: url("./fonts/Inter-Medium.otf");
  font-weight: 500;
}
@font-face {
  font-family: "inter-sb", sans-serif;
  src: url("./fonts/Inter-SemiBold.otf");
  font-weight: 600;
}
@font-face {
  font-family: "inter-bold", sans-serif;
  src: url("./fonts/Inter-Bold.otf");
  font-weight: 700;
}
@font-face {
  font-family: "inter-ebold", sans-serif;
  src: url("./fonts/Inter-ExtraBold.otf");
  font-weight: 800;
}
.inter-reg {
  font-family: "inter-reg", sans-serif;
  font-weight: 400;
}

.inter-md {
  font-family: "inter-md", sans-serif;
  font-weight: 500;
}

.inter-sb {
  font-family: "inter-sb", sans-serif;
  font-weight: 600;
}

.inter-bold {
  font-family: "inter-bold", sans-serif;
  font-weight: 700;
}

.inter-ebold {
  font-family: "inter-ebold", sans-serif;
  font-weight: 800;
}

/* variables */
:root {
  --primary: #E20074;
  --skyblue: #00A0DF;
  --gray: #292D30;
  --text: rgba(255, 255, 255, .85);
  --heading: #fff;
  --section-padding: clamp(45px, 7vw, 100px) 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "inter-sb", sans-serif;
  color: var(--heading);
}

h1,
.h1 {
  font-size: clamp(34px, 5vw, 60px);
}

h2,
.h2 {
  font-size: clamp(30px, 4.5vw, 50px);
}

h3,
.h3 {
  font-size: clamp(28px, 4vw, 36px);
}

h4,
.h4 {
  font-size: clamp(24px, 3.5vw, 32px);
}

section {
  padding: var(--section-padding);
}

.sec-title {
  border-radius: 30px;
  padding: 6px 16px;
  text-align: center;
  color: white;
  background-color: var(--primary);
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
}

.square-box {
  position: relative;
  font-size: 24px;
}
.square-box::before, .square-box::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary);
  width: 20px;
  height: 20px;
  border-radius: 5px;
}
.square-box::before {
  content: "";
  position: absolute;
  left: -40px;
  box-shadow: -5px -5px 0 white;
}
.square-box::after {
  content: "";
  position: absolute;
  right: -40px;
  box-shadow: 5px -5px 0 white;
}

.square-box-1 {
  position: relative;
  font-size: 24px;
}
.square-box-1::before, .square-box-1::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 5px;
}
.square-box-1::before {
  content: "";
  position: absolute;
  left: -40px;
  box-shadow: -5px -5px 0 white;
  background-color: #E96C22;
}
.square-box-1::after {
  content: "";
  position: absolute;
  right: -40px;
  box-shadow: 5px -5px 0 white;
  background-color: var(--skyblue);
}

.square-box-2 {
  position: relative;
  font-size: 24px;
}
.square-box-2::before, .square-box-2::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 5px;
}
.square-box-2::before {
  content: "";
  position: absolute;
  left: -40px;
  box-shadow: -5px -5px 0 black;
  background-color: white;
}
.square-box-2::after {
  content: "";
  position: absolute;
  right: -40px;
  box-shadow: 5px -5px 0 black;
  background-color: white;
}

.square-box-3 {
  position: relative;
  font-size: 24px;
}
.square-box-3::before, .square-box-3::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 5px;
}
.square-box-3::before {
  content: "";
  position: absolute;
  left: -40px;
  box-shadow: -5px -5px 0 var(--gray);
  background-color: var(--primary);
}
.square-box-3::after {
  content: "";
  position: absolute;
  right: -40px;
  box-shadow: 5px -5px 0 var(--gray);
  background-color: var(--skyblue);
}

.input-wrapper {
  margin-bottom: 10px;
}
.input-wrapper:last-child {
  margin-bottom: 20px;
}
.input-wrapper .label {
  margin-bottom: 5px;
}
.input-wrapper .input-control {
  background-color: white;
  outline: none;
  border: none;
  border-radius: 8px;
  padding: 16px 20px;
  color: black;
  width: 100%;
}

.btn {
  padding: 8px 20px;
  font-family: "inter-md", sans-serif;
  border-radius: 8px;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}

.custom-button {
  position: relative;
  background-color: var(--primary);
  color: #000;
  font-size: 16px;
  font-weight: bold;
  padding: 36px 62px 36px 80px;
  text-align: center;
  cursor: pointer;
  -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
          clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
  transition: all 0.3s ease;
  width: 256px;
  height: 102px;
  display: flex;
  align-items: center;
}
.custom-button:nth-child(2) {
  transform: translateX(-38px);
}
.custom-button:nth-child(3) {
  transform: translateX(-76px);
}
.custom-button:nth-child(4) {
  transform: translateX(-113px);
}
.custom-button:nth-child(5) {
  transform: translateX(-148px);
}
.custom-button span {
  position: relative;
  z-index: 2;
}

.custom-btn-primary {
  background-color: var(--primary);
  color: white;
}
.custom-btn-primary:hover {
  background-color: var(--primary);
}

.custom-btn-outline {
  border: 1px solid white;
  background-color: transparent;
  color: white;
}
.custom-btn-outline:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* colors */
.bg-primary {
  background-color: var(--primary) !important;
}

.text-primary-custom {
  color: var(--primary);
}

.text-white {
  color: white;
}

.text-primary {
  color: var(--primary) !important;
}

.bg-black {
  color: black;
}

.bg-white {
  background-color: white;
}

.bg-gray {
  background-color: var(--gray);
}

.text-gray {
  color: var(--gray);
}

.text-skyblue {
  color: var(--skyblue);
}

/* styling */
p {
  margin-bottom: 0;
}

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

a {
  text-decoration: none;
  color: var(--primary);
}

.text-start {
  text-align: start;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: end;
}

.d-block {
  display: block;
}

.vertical-center {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

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

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

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

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

.fs-20 {
  font-size: clamp(17px, 2vw, 20px);
}

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

.fs-24 {
  font-size: clamp(18px, 2vw, 24px);
}

.overflow {
  overflow: hidden;
}

.position-relative {
  position: relative;
}

.flex-right {
  justify-content: right;
}

.card {
  padding: 32px 20px;
  border-radius: 16px;
  background-color: var(--gray);
  height: 100%;
}
.card .number {
  font-size: clamp(72px, 10vw, 100px);
  font-weight: 900;
  display: block;
  text-align: center;
  color: var(--primary);
}

.card-1 {
  padding: 20px;
  border-radius: 16px;
  background-color: var(--gray);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.card-1 .card-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 88px;
  height: 88px;
  z-index: -1;
}

.list-with-icon {
  padding-left: 30px;
  position: relative;
}

.list-with-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background: url("") center/cover no-repeat;
}

.half-sec .content-left .content-wrapper {
  padding-right: 60px;
}

.half-sec .content-right .content-wrapper {
  padding-left: 60px;
}

@media (max-width: 1200px) {
  .custom-button {
    font-size: 14px;
    padding: 36px 60px;
  }
  .custom-button:nth-child(5) {
    transform: translateX(-150px);
  }
  .custom-button span {
    position: relative;
    z-index: 2;
  }
  .card-1 .card-img {
    opacity: 0.6;
  }
}
@media (min-width: 992px) {
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
}
@media (max-width: 992px) {
  .custom-main {
    gap: 12px;
    flex-wrap: wrap;
  }
  .custom-button {
    transform: unset !important;
    -webkit-clip-path: unset;
            clip-path: unset;
    border-radius: 8px;
    width: unset;
    height: unset;
    padding: 10px 16px;
  }
}
@media (max-width: 480px) {
  .sec-title {
    font-size: 16px;
  }
  .square-box::before, .square-box::after {
    display: none;
  }
  .square-box-1::before, .square-box-1::after {
    display: none;
  }
  .square-box-2::before, .square-box-2::after {
    display: none;
  }
  .square-box-3::before, .square-box-3::after {
    display: none;
  }
}
.text-container {
display: -webkit-box;
-webkit-line-clamp: 4; /* Show only 4 lines initially */
-webkit-box-orient: vertical;
overflow: hidden;
position: relative;
}


.view-more {
cursor: pointer;
display: block;
margin-top: 5px;
font-size: 14px;
font-weight: bold;
}
/*# sourceMappingURL=style.css.map */