@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
  padding: 0;
  margin: 0;
  outline: none;
  box-sizing: border-box;
}

/*===== VARIABLES CSS =====*/

:root {
  /*========== Colors ==========*/
  --primary-color: #8bc2bf;
  --secoundary-color: #d23828;
  --black-color: #333533;
  --white-color: #ffffff;
  --body-color: #ffffff;
  --primary-font: "Poppins", serif;
  --body-font: "Poppins", serif;

  --sec-title-font: 25px;
  --p-font: 16px;
  --m-title: 25px;
  --l-title: 36px;
  --p-font-height: 24px;
  --lp-font-height: 50px;
  /*========== Font weight ==========*/
  --font-medium: 400;
  --font-semi-bold: 600;
}

/*========== BASE ==========*/

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
div#__next {
  overflow-x: hidden;
}
body {
  background: var(--white-color);
  color: #11142d;
  font-size: var(--p-font);
  font-weight: 400;
  font-family: var(--body-font);
  line-height: var(--p-font-height);
  overflow-x: hidden;
}
img {
  vertical-align: middle;
  height: auto;
}

a {
  text-decoration: none;
  display: inline-block;
}

a:hover {
  text-decoration: none;
  color: var(--main-color);
}

ul,
ol {
  padding: 0;
  list-style: none;
}

button:focus {
  outline: none;
}

/* ============================GENERAL STYLE END======= */

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
span,
label {
  margin: 0;
}

.cpb-0{
padding: 0!important;
}
.ovh {
  overflow: hidden;
}

table.table {
  white-space: nowrap;
}

/* ===================custom button============ */

.custom-btn {
  width: fit-content;
  padding: 6px 22px 6px 6px;
  border-radius: 50px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
  background: var(--secoundary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}
