html,
body {
  scroll-behavior: smooth;
}
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --clr-primary: #d03523;
  --clr-secondary: #0b2212;
  --clr-text: #000000;
  --clr-gray: #0b2212;
  --font-family: "Montserrat", sans-serif;
  --clr-white: #ffffff;
}
.bg-clr-primary {
  background: var(--clr-primary);
}
.bg-clr-secondary {
  background: var(--clr-secondary);
}
.clr-main {
  color: var(--clr-primary);
}
.clr-secondary {
  color: var(--clr-secondary);
}
body {
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 500;
  box-sizing: border-box;
  line-height: 1.5;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
a,
a:hover {
  text-decoration: none;
}
.clr-white {
  color: var(--clr-white);
}
.max-width-1350 {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-wrapper {
  padding: 20px 10px;
}
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #ffffff;
  border-bottom: 1px solid #ededed;
}
.logo-side {
  text-align: center;
  margin: 20px 0;
}

.header-wrapper {
  padding: 0px 10px;
}

.header-menu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ddd6d6;
  border-bottom: 1px solid #ddd6d6;
  padding: 5px 0;
  margin: 10px 0;
}
a.header-menu-list-item {
  display: block;
  padding: 5px 15px;
  color: var(--clr-text);
  font-weight: 600;
}
.custom-btn .btn.btn-main {
  background: var(--clr-primary);
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-white);
}

.custom-btn .btn {
  padding: 7px 15px;
  font-weight: 600;
}

a.back-to-blog.back-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--clr-text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

a.back-to-blog.back-arrow .arrow-icon {
  font-size: 17px;
  display: flex;
  cursor: pointer;
}
.blog-head {
  text-align: center;
}

.blog-type {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--clr-primary);
}

span.blog-date {
  color: var(--clr-text);
}

.blog-title {
  font-size: 21px;
  /* font-size: calc(2.2rem + 1.5vw); */
  font-weight: 800;
  padding: 6px 0;
}
.blog-image-container {
  margin: 30px 0 0 0;
}

.section-wrapper {
  padding: 10px 10px;
}
.stripe {
  background: #e7e7e7;
  padding: 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
}

.section-title {
  font-weight: 700;
  font-size: 21px;
  padding: 5px 0;
}

.has-line {
  border-left: 3px solid #000000;
  padding-left: 10px;
  margin-bottom: 10px;
}
.has-line.light-line {
  border-color: #a5a0a0;
}
.blog-content-box {
  padding: 20px 10px;
}
.bottom-border {
  border-bottom: 1px solid #d1cfcf;
}
.section-title-lg {
  font-size: 24px;
  font-weight: 800;
  padding: 10px 10px;
}
.quote {
  margin-top: 11px;
  font-weight: 700;
}
.section-title-lg.has-line1 {
  padding: 0;
}
.f-w-600 {
  font-weight: 600;
}
.share-container {
  margin-top: 20px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.share-container a {
  background: var(--clr-primary);
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: 19px;
  color: #ffffff;
  cursor: pointer;
}

.share-container a:hover {
  background: var(--clr-primary);
  color: #ffffff;
}
a.logo img {
  width: 45px;
  object-fit: cover;
}

.logo-name {
  font-weight: 900;
  font-size: 18px;
}

.tagline.clr-main {
  font-size: 10px;
  font-weight: 500;
}
.required {
  color: #ff4747;
}
.toggle {
  display: block;
  background: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bar {
  width: 25px;
  height: 2px;
  background: var(--clr-secondary);
  position: relative;
}

.bar::before {
  content: "";
  position: absolute;
  top: -7px;
  width: 100%;
  height: 2px;
  background: var(--clr-secondary);
}
.header-menu,
.header-btn-area {
  display: none;
}

.bar::after {
  content: "";
  position: absolute;
  top: 7px;
  width: 100%;
  height: 2px;
  background: var(--clr-secondary);
}
.header-menu.show {
  position: absolute;
  background: #ffffff;
  width: 100%;
  top: 0;
  left: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.toggle.mobile-menu {
  position: absolute;
  top: 15px;
  right: 15px;
}

.toggle.mobile-menu .bar {
  background: transparent;
}

.toggle.mobile-menu .bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.toggle.mobile-menu .bar::before {
  top: 0;
  transform: rotate(45deg);
}
.mobile-btn {
  display: block;
}
a.privacylink {
  font-size: 13px;
  color: var(--clr-text);
  font-weight: 500;
  gap: 5px;
}
a.privacylink:hover {
  color: var(--clr-primary);
}
.final-thought {
  text-align: center;
  /* background: var(--clr-primary); */
  padding: 30px 10px;
  border-radius: 10px;
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 700;
}
a.privacylink i {
  display: flex;
}
.form-field-container label.error {
  color: #ff4747;
  font-size: 12px;
  position: absolute;
  /* bottom: -6px; */
  background: #ffffff;
  padding: 0px 2px;
  margin: 0;
  height: auto;
  left: 10px;
  top: -9px;
}

.form-field-container {
  position: relative;
}

.form-field-container input.error {
  border-color: #ff4747;
}
.final-thought-title {
  font-style: italic;
}
.body-text.has-line.clr-main {
  /* border-color: var(--clr-main); */
}

/* ======== RESPONSIVE ======== */
@media only screen and (min-width: 1180px) {
  a.logo img {
  width: 55px;
  object-fit: cover;
}

.logo-name {
  font-weight: 900;
  font-size: 21px;
}
.tagline.clr-main {
  font-size: 0.875rem;
  font-weight: 500;
}
  .blog-list-page .blog-title {
  font-size: 18px;
  font-weight: 700;
  line-height: initial;
  color: #000000;
  padding-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
  .header-wrapper {
    padding: 10px 10px;
  }
  .header-menu-container.no-btn{
    position: relative;
  }
  .header-menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd6d6;
    border-bottom: 1px solid #ddd6d6;
    padding: 15px 0;
    margin: 30px 0;
  }
  .final-thought {
    text-align: center;
    /* background: var(--clr-primary); */
    padding: 30px 10px;
    border-radius: 10px;
    font-size: 2rem;
    color: #ffffff;
    font-weight: 700;
  }
  a.back-to-blog.back-arrow {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .header-menu-container.no-btn {
    justify-content: center;
  }
  .toggle,
  .mobile-btn {
    display: none;
  }
  .footer-wrapper {
    padding: 60px 10px;
  }
  .header-menu,
  .header-btn-area {
    display: flex;
    align-items: center;
  }
  .blog-content-box {
    padding: 20px 40px;
  }
  .stripe {
    padding: 40px;
    font-size: 18px;
  }
  .blog-title {
    font-size: 26px;
    /* font-size: calc(2.2rem + 1.5vw); */
  }
  /* //End Media Query */
}
/* ======== //RESPONSIVE ======== */
/* @media only screen and (min-width: 1180px) {
  .blog-title {
    font-size: 18px;
    font-weight: 700;
    line-height: initial;
    color: #000000;
    padding-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
} */
a.header-menu-list-item:hover {
  color: var(--clr-primary);
}
.blog-list-page .blog-title {
  font-size: 18px;
  font-weight: 700;
  line-height: initial;
  color: #000000;
  padding-bottom: 20px;
  /* display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; */
}
.blogListPage .logo-side {
  margin: 0;
  padding: 10px 0;
}
header.header.new-header {
}

.header-wrapper header.header.new-header {
  display: flex;
}

header.header.new-header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  min-height: 90px;
}

header.header.new-header .logo-side {
  /* width: 270px; */
  text-align: left;
}

header.header.new-header .logo-side .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header.header.new-header.header-menu-container.no-btn {
  border: none;
}

header.header.new-header .header-menu-container {
  border: none;
  margin: 0 0;
  padding: 0;
}
.readmorebtn {
  display: inline-block;
  font-size: 12px;
  background: var(--clr-primary);
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 0.25rem;
}
