* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* ======= color ======= */

:root {
  --white: #fff;
  --black: #1a1a1a;
  --red: #fd1d27;
  --yellow: #FF9800;
}

/* ========= font ======= */

@font-face {
  font-family: poppins;
  src: url(../font/Poppins/Poppins-Regular.ttf);
}

@font-face {
  font-family: Bitter;
  src: url(../font/Bitter/Bitter-VariableFont_wght.ttf);
}

body {
  font-family: poppins;
  overflow-x: hidden;
}

span {
  font-family: poppins;
}

.main-heading {
  font-size: 32px;
  font-family: Bitter;
  color: #fff;

}

h3 {
  font-family: Bitter;
  font-size: 50px;
  font-weight: 500;
  color: var(--black);
}

h6 {
  color: var(--black);
  font-size: 20px;
  font-family: Bitter;
  font-weight: 600;
  line-height: 1.5;
}

h5 {
  font-size: 26px;
  font-family: Bitter;
  font-weight: 600;
}

h4 {
  font-size: 28px;
  font-family: Bitter;
  font-weight: 600;
}

p {
  color: #706e6e;
}

/* ====== other ====== */

a {
  text-decoration: none;
}

ul li {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1340px;
  margin: 0px auto;
  padding: 0px 20px;
}

.primary-btn a {
  display: inline-block;
  padding: 12px 25px;
  color: var(--white);
  background-color: var(--red);
  transition: all .2s ease-in-out;
}

.primary-btn a:hover {
  background-color: var(--yellow);
}

/* img {
  width: 100%;
} */

.sub-text {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sticky {
  box-shadow: 0px 2px 20px 0px #d1d1d199;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0px;
  z-index: 999;
  background-color: var(--white);
}

body {
  overflow-x: hidden;
}

/* ======== inner page ======= */

.inner-banner {
  padding: 130px 0px;
  background-size: cover;
  background-position: center;
  color: var(--white);
}