/* ********* Common css ************ */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

/* common_font_sizes */
h1 {
  font-size: 63px;
  line-height: 70px;
  font-weight: 700;
  font-family: var(--Mont);
  color: var(--white);
}

h2 {
  font-size: 45px;
  line-height: 72px;
  font-weight: 600;
  font-family: var(--Poppins);
  color: var(--dark);
}

h3 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  font-family: var(--Poppins);
  color: var(--dark);
}

h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  font-family: var(--Poppins);
  color: var(--dark);
}

h5 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  font-family: var(--Poppins);
  color: var(--dark);
}

h6 {
  font-family: var(--Poppins);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

:root {
  /* colors */
  --pink: #B71471;
  --white: #fff;
  --dark: #27253D;
  color: #33314A;
  /* font-familys */
  --inter: 'Inter', sans-serif;
  --Mont: 'Mont', sans-serif;
  --Mont-Book: 'Mont Book', sans-serif;
  --Poppins: 'Poppins', sans-serif;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  font-family: var(--Poppins);
  color: #787788;
}

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

body {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  font-family: var(--Poppins);
}

html,
body {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'Mont Book';
  src: url('/fonts/Mont-Book.woff2') format('woff2'),
    url('/fonts/Mont-Book.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mont';
  src: url('/fonts/Mont-Bold.woff2') format('woff2'),
    url('/fonts/Mont-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

.book_btn {
  display: inline-block;
  color: var(--white);
  font-family: var(--inter);
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  border-radius: 8px;
  padding: 16px 32px;
  background: var(--pink, linear-gradient(92deg, #B71471 1.74%, #D72C8E 107.77%));
  transition: all ease-in-out 300ms;
}

.book_btn:hover {
  background: var(--white);
  color: var(--dark);
}

.call_btn {
  display: inline-block;
  color: var(--white);
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  border-radius: 8px;
  padding: 16px 32px;
  font-family: var(--Poppins);
  background: var(--pink, linear-gradient(92deg, #B71471 1.74%, #D72C8E 107.77%));
  transition: all ease-in-out 300ms;
}

.call_btn:hover {
  background: var(--white);
  color: var(--dark);
}

.more_info_btn {
  display: inline-block;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  border: 1px solid var(--white);
  text-align: center;
  font-family: var(--Poppins);
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  transition: all ease-in-out 300ms;
}

.more_info_btn:hover {
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--dark);
}

.quote_btn {
  color: var(--white);
  text-align: center;
  font-family: var(--poppins);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  padding: 16px 32px;
  border-radius: 8px;
  background: linear-gradient(92deg, #B71471 1.74%, #D72C8E 107.77%);
  transition: all ease-in-out 300ms;
}

.quote_btn:hover {
  background: var(--white);
  color: var(--dark);
}

.view_btn {
  display: inline-block;
  color: var(--white);
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  border-radius: 8px;
  padding: 16px 63px;
  font-family: var(--Poppins);
  background: var(--pink, linear-gradient(92deg, #B71471 1.74%, #D72C8E 107.77%));
  transition: all ease-in-out 300ms;
}

.view_btn:hover {
  background: var(--dark);
  color: var(--white);
}

/* =======================btn_shapes======================= */
.btn_shape {
  position: relative;
}

.btn_shape::after {
  content: "";
  position: absolute;
  left: 180px;
  top: 10px;
  background: url(../images/cta_shap.png)no-repeat;
  width: 48px;
  height: 48px;
}
.home-page-banner .landing_left .btn_shape::after {
  left: 280px;
  top: 5px;
}

/* ===================headings_shapes=================== */
.heading_shape {
  position: relative;
}

.heading_shape::before {
  content: "";
  position: absolute;
  top: -30px;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../images/solution_shap.png)no-repeat;
}




