@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
/* =============================Common styles */
@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:wght@200..700&display=swap");
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 0.8rem;
  }
}

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

a {
  text-decoration: none;
}

body {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #000;
  font-family: "DM Sans", sans-serif;
}

img {
  max-width: 100%;
}

.global-width {
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media only screen and (min-width: 768px) {
  .global-width {
    max-width: 1300px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .global-width {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .global-width {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

::-webkit-scrollbar {
  width: 0.8rem;
  height: 0.3rem;
}

::-webkit-scrollbar-thumb {
  background: #8F9BB3;
  border-radius: 0.3rem;
  opacity: 0.3;
}

::-webkit-scrollbar-thumb:hover {
  background: #8F9BB3;
  opacity: 0.3;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.0784313725);
  border-radius: 0.3rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 2rem 0;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
@media only screen and (max-width: 767px) {
  .header {
    padding: 0;
  }
}
.header .global-width {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  z-index: 1002;
}
.header .logo img {
  width: 16rem;
}
@media only screen and (max-width: 767px) {
  .header .logo img {
    width: 13rem;
  }
}
.header .nav-menu {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header .nav-menu ul {
  display: flex;
  gap: 3rem;
  list-style: none;
}
.header .nav-menu ul li {
  position: relative;
}
.header .nav-menu ul li a {
  font-size: 1.6rem;
  color: #212121;
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 4px;
  position: relative;
}
.header .nav-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #0078D4;
  transition: 0.3s;
}
.header .nav-menu ul li a:hover::after, .header .nav-menu ul li a.active::after {
  width: 100%;
  background: #0078D4;
}
.header .auth-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header .signin-btn {
  padding: 1rem 2rem;
  border-radius: 3rem;
  color: #646464;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.6rem;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 767px) {
  .header .signin-btn {
    font-size: 1.3rem;
  }
}
.header .contact-btn {
  padding: 1rem 3rem;
  border-radius: 9px;
  color: #fff;
  background: radial-gradient(circle, #0078D4, #072F5F);
}
.header .burger-menu {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 1200;
}
.header .burger-menu span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #000;
  left: 0;
  transition: 0.35s ease;
}
.header .burger-menu span:nth-child(1) {
  top: 0;
}
.header .burger-menu span:nth-child(2) {
  top: 9px;
}
.header .burger-menu span:nth-child(3) {
  bottom: 0;
}
.header .header.menu-open .burger-menu span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.header .header.menu-open .burger-menu span:nth-child(2) {
  opacity: 0;
}
.header .header.menu-open .burger-menu span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}
@media only screen and (max-width: 767px) {
  .header .burger-menu {
    display: block;
  }
  .header .desktop-btn {
    display: none;
  }
  .header .nav-menu {
    position: fixed;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 1100;
  }
  .header .nav-menu ul {
    background: #fff;
    width: 90%;
    max-width: 420px;
    border-radius: 24px;
    padding: 32px 24px;
    margin: 21rem auto 0;
    flex-direction: column;
    gap: 24px;
  }
  .header .nav-menu a {
    color: #000;
  }
  .header .nav-menu a::after {
    background: #000;
  }
  .header .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
  }
}

.btn-contact {
  transform: translateY(-50%);
  height: 4.2rem;
  padding: 1rem 3rem;
  border-radius: 0.4rem;
  border: none;
  background: #EC3554;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: "DM Sans", sans-serif;
}
.btn-contact:hover {
  background: #d9364f;
}

.main-head {
  font-size: 6rem;
  font-weight: 600;
  color: #212121;
}
@media only screen and (max-width: 767px) {
  .main-head {
    font-size: 3rem;
    line-height: 43px;
  }
  .main-head br {
    display: none;
  }
}
.main-head span {
  color: #0078D4;
}

.sub-para {
  font-size: 1.6rem;
  color: #666666;
}
@media only screen and (max-width: 767px) {
  .sub-para {
    font-size: 1.4rem;
  }
  .sub-para br {
    display: none;
  }
}

.sub-head {
  font-size: 5.4rem;
  font-weight: 600;
  color: #212121;
}
@media only screen and (max-width: 767px) {
  .sub-head {
    font-size: 2.5rem;
    line-height: 40px;
  }
  .sub-head br {
    display: none;
  }
}
.sub-head span {
  color: #0078D4;
  font-size: 5.4rem;
}
@media only screen and (max-width: 767px) {
  .sub-head span {
    font-size: 2.5rem;
  }
}

.hero-section {
  padding: 5rem 0 0rem;
  text-align: center;
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .hero-section {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .main-head {
    margin-bottom: 3rem;
  }
}
.hero-section .main-head span {
  color: #0078D4;
}
.hero-section .sub-para {
  margin-top: -2rem;
  margin-bottom: 3rem;
}
.hero-section .hero-form {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section .hero-form .input-group {
  position: relative;
  width: 44rem;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-form .input-group {
    width: 25rem;
  }
}
.hero-section .hero-form input {
  width: 100%;
  height: 5rem;
  padding: 0 13rem 0 1.2rem;
  border-radius: 0.5rem;
  border: 1px solid #D5D6D9;
  font-size: 1.4rem;
  outline: none;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-form input {
    height: auto;
    padding: 1rem 1rem;
    font-size: 1.3rem;
  }
}
.hero-section .hero-form input::-moz-placeholder {
  color: #aaa;
}
.hero-section .hero-form input::placeholder {
  color: #aaa;
}
.hero-section .hero-form button {
  position: absolute;
  top: 50%;
  right: 0.4rem;
  transform: translateY(-50%);
  height: 4.2rem;
  padding: 1rem 3rem;
  border-radius: 0.4rem;
  border: none;
  background: #EC3554;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-form button {
    height: 3.2rem;
    padding: 0.5rem 1rem;
    font-size: 1.3rem;
  }
}
.hero-section .hero-form button:hover {
  background: #d9364f;
}
.hero-section .hero-media {
  display: flex;
  justify-content: center;
}
.hero-section .hero-media video {
  width: 100%;
  max-width: 900px;
  height: auto;
}

.mg-t-4 {
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .mg-t-4 {
    margin-top: 0;
  }
}

.key-benifits {
  padding: 4rem 0;
  text-align: center;
  background: #F7F7F7;
}
.key-benifits span {
  color: #EC3554;
  font-size: 1.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .key-benifits span {
    font-size: 1.2rem;
  }
}
.key-benifits .sub-head {
  margin: 0;
}
.key-benifits .sub-head span {
  color: #0078D4;
  font-size: 5.4rem;
}
@media only screen and (max-width: 767px) {
  .key-benifits .sub-head span {
    font-size: 2.5rem;
  }
}

.process-section {
  padding: 8rem 0 0;
}
@media only screen and (max-width: 767px) {
  .process-section {
    padding: 2rem 0;
    margin-top: 2rem;
  }
}
.process-section .process-header {
  text-align: center;
  margin: 0 auto 5rem;
}
.process-section .process-header .process-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  font-size: 1.4rem;
  color: #EC3554;
  font-weight: 500;
  border: 1px solid #D5D6D9;
}
@media only screen and (max-width: 767px) {
  .process-section .process-header .process-label {
    font-size: 1.2rem;
  }
}
.process-section .process-header .process-label img {
  width: 1.4rem;
  height: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .process-section .process-header .process-label img {
    width: 100%;
    height: auto;
  }
}
.process-section .process-header .sub-head {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.process-section .process-bg {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .process-section .process-bg {
    padding: 2rem 0;
    margin-top: -3rem;
  }
}
.process-section .process-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/bg-img.jpg") center/cover no-repeat;
  z-index: 0;
  height: 69rem;
}
@media only screen and (max-width: 767px) {
  .process-section .process-bg::before {
    height: 34rem;
  }
}
.process-section .process-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}
.process-section .process-bg .global-width {
  position: relative;
  z-index: 2;
}
.process-section .process-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.process-section .process-card {
  width: 39rem;
  height: 44.6rem;
  padding: 2.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
@media only screen and (max-width: 767px) {
  .process-section .process-card {
    height: auto;
  }
}
.process-section .process-card .icon {
  width: 6rem;
  height: 6rem;
  background: #EC3554;
  border-radius: 0.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .process-section .process-card .icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0;
  }
}
.process-section .process-card .icon img {
  width: 3rem;
  height: 4rem;
}
@media only screen and (max-width: 767px) {
  .process-section .process-card .icon img {
    width: 2rem;
    height: 2rem;
  }
}
.process-section .process-card .step {
  display: block;
  font-size: 2.6rem;
  font-weight: 700;
  color: #212121;
  margin-bottom: 0.8rem;
}
.process-section .process-card h3 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #212121;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .process-section .process-card h3 {
    margin-top: 1rem;
    font-size: 2rem;
  }
}
.process-section .process-card p {
  font-size: 1.5rem;
  color: #212121;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .process-section .process-card p {
    font-size: 1.4rem;
    margin: 0;
  }
}
.process-section .process-card:hover {
  transform: translateY(-0.6rem);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}
@media only screen and (max-width: 767px) {
  .process-section .process-card:hover {
    transform: none;
    box-shadow: none;
  }
}
@media only screen and (max-width: 767px) {
  .process-section .process-cards {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    gap: 1.2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .process-section .process-cards::-webkit-scrollbar {
    display: none;
  }
  .process-section .process-card {
    flex: 0 0 auto;
    min-width: 28rem;
    scroll-snap-align: start;
    width: 32rem;
    gap: 3rem;
  }
}

.blog-section {
  padding: 4rem 0;
}
@media only screen and (max-width: 767px) {
  .blog-section {
    padding: 2rem 0;
    margin-top: -3rem;
  }
}
.blog-section .blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .blog-section .blog-header {
    margin-bottom: 0;
  }
}
.blog-section .blog-header h2 {
  font-size: 3.8rem;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .blog-section .blog-header h2 {
    font-size: 2.8rem;
  }
}
.blog-section .blog-header .view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #EC3554;
  text-decoration: none;
}
.blog-section .blog-header .view-all img {
  width: 1.4rem;
  height: 1.4rem;
  transition: transform 0.3s ease;
}
.blog-section .blog-header .view-all:hover img {
  transform: translate(2px, -2px);
}
.blog-section .blog-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .blog-section .blog-layout {
    display: flex;
    flex-direction: column;
  }
}
.blog-section .blog-card {
  background: #F4F4F4;
  border-radius: 1.5rem;
  padding: 2rem 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-section .blog-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.blog-section .blog-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-section .blog-tags {
    margin-bottom: 0;
  }
}
.blog-section .blog-tags span {
  font-size: 1.2rem;
  padding: 0.3rem 0.7rem;
  border-radius: 2rem;
  background: #fff;
  border: 1px solid #D5D6D9;
}
.blog-section .blog-card h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-section .blog-card h3 {
    font-size: 1.8rem;
    line-height: 29px;
  }
}
.blog-section .blog-img {
  position: relative;
  margin-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .blog-section .blog-img {
    margin-top: 0;
  }
}
.blog-section .blog-img img {
  width: 100%;
  border-radius: 1rem;
  display: block;
}
.blog-section .blog-img .desktop-img {
  height: 31.7rem;
}
@media only screen and (max-width: 767px) {
  .blog-section .blog-img .desktop-img {
    display: none;
  }
}
.blog-section .blog-img .mobile-img {
  display: none;
}
@media only screen and (max-width: 767px) {
  .blog-section .blog-img .mobile-img {
    display: block;
    height: auto;
  }
}
.blog-section .blog-card--large {
  display: flex;
  flex-direction: column;
  height: 60.8rem;
}
@media only screen and (max-width: 767px) {
  .blog-section .blog-card--large {
    height: auto;
  }
}
.blog-section .blog-card--large {
  display: flex;
  flex-direction: column;
  height: 60.8rem;
}
@media only screen and (max-width: 767px) {
  .blog-section .blog-card--large {
    height: auto;
  }
}
.blog-section .blog-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.blog-section .blog-card--small {
  gap: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60rem;
  height: 29.4rem;
}
@media only screen and (max-width: 767px) {
  .blog-section .blog-card--small {
    flex-direction: column;
    width: 100%;
    height: auto;
    align-items: unset;
    gap: 0;
  }
}
.blog-section .blog-card--small .blog-img-small {
  margin-top: 0;
}
.blog-section .blog-card--small .blog-img-small img {
  width: 100%;
  border-radius: 1rem;
  display: block;
}
@media only screen and (max-width: 767px) {
  .blog-section .blog-card--small .blog-img-small .desktop-img {
    display: none;
  }
}
.blog-section .blog-card--small .blog-img-small .mobile-img {
  display: none;
}
@media only screen and (max-width: 767px) {
  .blog-section .blog-card--small .blog-img-small .mobile-img {
    display: block;
  }
}
.blog-section .blog-card--small .blog-content {
  width: 31rem;
}
@media only screen and (max-width: 767px) {
  .blog-section .blog-card--small .blog-content {
    width: 100%;
  }
}
.blog-section .blog-card--small .blog-content h3 {
  font-size: 2.5rem;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .blog-section .blog-card--small .blog-content h3 {
    font-size: 1.8rem;
    line-height: 29px;
  }
}

.FAQ-section {
  padding: 4rem 0;
}
@media only screen and (max-width: 767px) {
  .FAQ-section {
    padding: 2rem 0;
  }
}
.FAQ-section .sub-head {
  margin: 0;
}
.FAQ-section .faq-header {
  text-align: center;
  margin-bottom: 3rem;
}
.FAQ-section .faq-header .faq-tag {
  display: inline-block;
  padding: 0.4rem 2.2rem;
  border-radius: 2rem;
  border: 1px solid #D5D6D9;
  color: #EC3554;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .FAQ-section .faq-header .faq-tag {
    font-size: 1.2rem;
    padding: 0.3rem 2rem;
  }
}
.FAQ-section .faq-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  margin-top: 7rem;
}
@media only screen and (max-width: 767px) {
  .FAQ-section .faq-wrapper {
    flex-direction: column-reverse;
    margin-top: 0;
    gap: 3rem;
  }
}
.FAQ-section .faq-left {
  flex: 1;
}
.FAQ-section .faq-item {
  background: #f8f8f8;
  border-radius: 1.2rem;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .FAQ-section .faq-item {
    padding: 1rem 1.5rem;
  }
}
.FAQ-section .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.FAQ-section .faq-item .faq-question h4 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #18181B;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .FAQ-section .faq-item .faq-question h4 {
    font-size: 1.5rem;
  }
}
.FAQ-section .faq-item .faq-question .faq-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.FAQ-section .faq-item .faq-question .faq-icon img {
  width: 2.2rem;
  height: 2.2rem;
  transition: transform 0.3s ease;
}
.FAQ-section .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  margin-top: 0;
}
.FAQ-section .faq-item .faq-answer .sub-para {
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .FAQ-section .faq-item .faq-answer .sub-para {
    font-size: 1.2rem;
  }
}
.FAQ-section .faq-item.active {
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}
.FAQ-section .faq-item.active .faq-answer {
  max-height: 200px;
}
.FAQ-section .faq-item.active .faq-icon img {
  transform: rotate(90deg);
}
.FAQ-section .cta-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.FAQ-section .cta-row .btn-contact {
  transform: none;
  border-radius: 1rem;
}
.FAQ-section .cta-text {
  margin: 0;
  font-size: 1.6rem;
  color: #646464;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .FAQ-section .cta-text {
    font-size: 1.4rem;
  }
}
.FAQ-section .faq-right {
  flex: 0.9;
}
.FAQ-section .faq-right img {
  width: 100%;
  height: 40rem;
  border-radius: 2rem;
}
@media only screen and (max-width: 767px) {
  .FAQ-section .faq-right img {
    height: auto;
  }
}

.ct-section {
  margin-top: 5rem;
  position: relative;
  padding: 5rem 0;
  background: #C7DCF1;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .ct-section {
    height: 58rem;
    padding: 2rem 0;
    margin-top: 3rem;
  }
}
.ct-section::before {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -6rem;
  width: 124rem;
  height: 55rem;
  background: url(/assets/images/ct-img.svg) center/cover no-repeat;
  background-size: contain;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .ct-section::before {
    width: 100%;
    background: url(/assets/images/mob-ct.svg) center/cover no-repeat;
    right: 0rem;
    bottom: 0rem;
    height: 38rem;
  }
}
.ct-section .ct-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.ct-section .ct-content {
  max-width: 55rem;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .ct-section .ct-content {
    width: 100%;
  }
}
.ct-section .sub-head {
  font-size: 5.2rem;
  margin-bottom: 0rem;
}
@media only screen and (max-width: 767px) {
  .ct-section .sub-head {
    font-size: 2.5rem;
  }
}
.ct-section .ct-form {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.ct-section .ct-form input {
  width: 38rem;
  height: 5rem;
  padding: 0 14rem 0 1.6rem;
  border-radius: 0.6rem;
  border: none;
  outline: none;
  font-size: 1.4rem;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .ct-section .ct-form input {
    width: 100%;
  }
}
.ct-section .ct-form .btn-contact {
  position: absolute;
  top: 50%;
  right: 0.6rem;
  background: #072F5F;
}

.footer-section {
  background: #FFFFFF;
  padding: 6rem 0 3rem;
}
@media only screen and (max-width: 767px) {
  .footer-section {
    margin-top: 2rem;
    padding: 3rem 0 3rem;
    border-top: none;
  }
}
.footer-section .footer-inner .footer-total {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 12rem;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-total {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
.footer-section .footer-inner .footer-logo-area {
  max-width: 33%;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-logo-area {
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
.footer-section .footer-inner .footer-logo-area .footer-logo img {
  max-width: 150px;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-logo-area .footer-logo {
    display: flex;
    flex-direction: column;
  }
}
.footer-section .footer-inner .footer-logo-area .sub-para {
  line-height: 22px;
  margin-top: 1rem;
  font-size: 1.6rem;
  color: #646464;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-logo-area .sub-para {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-logo-area .sub-para {
    text-align: left;
  }
  .footer-section .footer-inner .footer-logo-area .sub-para br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer-section .footer-inner .footer-logo-area .sub-para br {
    display: none;
  }
}
.footer-section .footer-inner .link-cls {
  display: flex;
  justify-content: center;
  gap: 20rem;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .link-cls {
    gap: 2rem;
  }
}
.footer-section .footer-inner .link-cls .footer-link {
  display: flex;
  flex-direction: column;
}
.footer-section .footer-inner .link-cls .footer-link h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .link-cls .footer-link h4 {
    font-size: 1.2rem;
  }
}
.footer-section .footer-inner .link-cls .footer-link a {
  color: #646464;
  font-size: 1.4rem;
  text-decoration: none;
  margin-bottom: 0.6rem;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .link-cls .footer-link a {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .link-cls .footer-link {
    align-items: flex-start;
  }
}
.footer-section .footer-inner .footer-social {
  text-align: center;
  margin-top: -1rem;
  gap: 1rem;
  display: flex;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-social {
    display: flex;
    justify-content: flex-start;
    margin-top: -4rem;
  }
}
.footer-section .footer-inner .footer-social a img {
  width: 4rem;
  height: 4rem;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-social a img {
    width: 2.5rem;
    height: 3rem;
  }
}
.footer-section .footer-inner .footer-social a:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-social {
    margin-top: 1rem;
  }
}
.footer-section .copyright {
  text-align: center;
  font-size: 1.4rem;
  color: #646464;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .footer-section .copyright {
    margin-top: 2rem;
    font-size: 1.1rem;
  }
}

@media only screen and (max-width: 767px) {
  .mob-screen {
    display: flex;
    align-items: center;
  }
}

.contact-section {
  position: relative;
  padding: 6rem 0;
  background: #F7F7F7;
}
@media only screen and (max-width: 767px) {
  .contact-section {
    padding: 3rem 0;
    margin-top: 2rem;
    margin-bottom: -4rem;
  }
}
.contact-section .contact-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  height: 23.2rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-header {
    height: auto;
    margin-bottom: -3rem;
  }
}
.contact-section .contact-header .main-head {
  display: inline-block;
  margin-top: 7rem;
  color: #000;
  padding: 1.5rem 4rem;
  border-radius: 1rem;
  letter-spacing: -2px;
  line-height: 72px;
  font-size: 6.4rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-header .main-head {
    background: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    margin-top: 2rem;
    font-size: 3rem;
    line-height: 68px;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section .sub-head {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section .sub-para {
    text-align: center;
  }
}
.contact-section .contact-content {
  gap: 7rem;
  display: flex;
  align-items: flex-start;
  margin-top: 11rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content {
    flex-direction: column;
    margin-top: 3rem;
    gap: 4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-section .contact-content {
    margin-top: 6rem;
    gap: 0;
  }
}
.contact-section .contact-content .contact-left {
  flex: 1;
}
.contact-section .contact-content .contact-left .sub-head {
  margin-top: 0;
}
.contact-section .contact-content .contact-left .sub-para {
  margin-top: -4rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-left .sub-para {
    margin-top: -1rem;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-left .contact-info {
    margin-top: 3rem;
  }
}
.contact-section .contact-content .contact-left .contact-info .details {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-section .contact-content .contact-left .contact-info .details .cont-det {
  display: grid;
}
.contact-section .contact-content .contact-left .contact-info .details .cont-det h4 {
  margin: 0;
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-left .contact-info .details .cont-det h4 {
    font-size: 1.4rem;
  }
}
.contact-section .contact-content .contact-left .contact-info .details .cont-det p {
  color: #5F6368;
  font-size: 1.6rem;
  line-height: 22px;
  font-weight: 400;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-left .contact-info .details .cont-det p {
    font-size: 1.3rem;
  }
}
.contact-section .contact-content .contact-left .contact-info .details .cont-det p a {
  text-decoration: none;
  color: #5F6368;
}
.contact-section .contact-content .contact-right {
  flex: 1;
  position: sticky;
  top: 10rem;
  background: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-right {
    width: 100%;
  }
}
.contact-section .contact-content .contact-right form {
  padding: 3rem;
  border-radius: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-right form {
    padding: 2rem;
  }
}
.contact-section .contact-content .contact-right form .form-group {
  display: flex;
  gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-right form .form-group {
    display: grid;
  }
}
.contact-section .contact-content .contact-right form input,
.contact-section .contact-content .contact-right form textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-family: "DM Sans", sans-serif;
  border: none;
  background: #F9F8F6;
}
.contact-section .contact-content .contact-right form textarea {
  min-height: 12rem;
  resize: none;
}
.contact-section .contact-content .contact-right form button {
  background: #0078D4;
  color: #fff;
  border: none;
  padding: 1.4rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-right form button {
    padding: 1rem 0;
    font-size: 1.4rem;
  }
}
.contact-section .contact-content .contact-right form button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.about-sec {
  padding: 4rem 0;
  align-items: center;
  text-align: center;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .about-sec {
    margin-top: 0;
  }
}
.about-sec .sub-para {
  margin-top: -3rem;
}
@media only screen and (max-width: 767px) {
  .about-sec .sub-para {
    margin-top: -1rem;
  }
}
.about-sec .abt-img {
  margin-top: 5rem;
}
.about-sec .abt-img img {
  width: 100%;
  display: block;
}
.about-sec .abt-img .img-mob {
  display: none;
}
@media only screen and (max-width: 767px) {
  .about-sec .abt-img {
    margin-top: 3rem;
  }
  .about-sec .abt-img .img-desktop {
    display: none;
  }
  .about-sec .abt-img .img-mob {
    display: block;
  }
}

.flying-fynn-sec {
  position: relative;
  background-color: rgba(0, 120, 212, 0.2196078431);
  overflow: hidden;
  padding: 1.5rem 0;
  margin-top: 7rem;
}
@media only screen and (max-width: 767px) {
  .flying-fynn-sec {
    margin-top: 0rem;
  }
}
.flying-fynn-sec .global-width {
  position: relative;
  z-index: 2;
}
.flying-fynn-sec .flying-fynn-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
@media only screen and (max-width: 767px) {
  .flying-fynn-sec .flying-fynn-content {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
}
.flying-fynn-sec .flying-fynn-content .sub-head {
  width: 122rem;
}
@media only screen and (max-width: 767px) {
  .flying-fynn-sec .flying-fynn-content .sub-head {
    width: 100%;
  }
}
.flying-fynn-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/blue-lines.svg") no-repeat;
  background-size: contain;
  background-position: right center;
  z-index: 1;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .flying-fynn-sec::before {
    background: url("/assets/images/blue-line-mob.svg") no-repeat;
    background-position: center bottom;
    background-size: contain;
    width: 100%;
    height: 100%;
    top: -59px;
    left: -2px;
  }
  .flying-fynn-sec .sub-para {
    margin-top: -1rem;
  }
}

.business-scale {
  padding: 6rem 0;
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .business-scale {
    margin-top: 2rem;
    padding: 2rem 0;
  }
}
.business-scale-header {
  text-align: center;
  margin: 0 auto 5rem;
}
@media only screen and (max-width: 767px) {
  .business-scale-header {
    margin: 0;
  }
}
.business-scale-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(42rem, 1fr));
  gap: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .business-scale-grid {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}
.business-scale .sub-para {
  margin-top: -3rem;
}
@media only screen and (max-width: 767px) {
  .business-scale .sub-para {
    margin-top: -1rem;
  }
}
@media only screen and (max-width: 767px) {
  .business-scale .card-img {
    width: 3rem;
  }
}
.business-scale .scale-card {
  position: relative;
  border-radius: 1.6rem;
  padding: 3rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  height: 30rem;
}
@media only screen and (max-width: 767px) {
  .business-scale .scale-card {
    height: auto;
    padding: 2rem 2rem;
  }
}
.business-scale .scale-card::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 22rem;
  height: 22rem;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}
.business-scale .scale-card img,
.business-scale .scale-card h4,
.business-scale .scale-card p {
  position: relative;
  z-index: 1;
}
.business-scale .scale-card h4 {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 1.6rem 0 0.8rem;
  color: #1F1F1F;
}
.business-scale .scale-card .card-para {
  font-size: 1.6rem;
  color: #666666;
}
@media only screen and (max-width: 767px) {
  .business-scale .scale-card .card-para {
    font-size: 1.4rem;
  }
  .business-scale .scale-card .card-para br {
    display: none;
  }
}
.business-scale .card-everyone::after {
  background: url("/assets/images/grad1.svg") no-repeat;
  width: 22rem;
  height: 26rem;
  top: 2%;
  right: 0px;
}
@media only screen and (max-width: 767px) {
  .business-scale .card-everyone::after {
    top: -8%;
    right: -49px;
  }
}
.business-scale .card-vision::after {
  background: url("/assets/images/grad2.svg") no-repeat;
  width: 26rem;
  height: 29rem;
  top: -1%;
  right: -5%;
}
@media only screen and (max-width: 767px) {
  .business-scale .card-vision::after {
    right: -25%;
  }
}
.business-scale .card-purpose::after {
  background: url("/assets/images/grad3.svg") no-repeat;
  width: 30rem;
  height: 26rem;
  top: 9%;
  right: -12%;
}
@media only screen and (max-width: 767px) {
  .business-scale .card-purpose::after {
    right: -39%;
  }
}
.business-scale .card-passion::after {
  background: url("/assets/images/grad4.svg") no-repeat;
  width: 24rem;
  height: 24rem;
  top: 9%;
  right: -5%;
}
@media only screen and (max-width: 767px) {
  .business-scale .card-passion::after {
    right: -24%;
  }
}
.business-scale .mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #78BFF6;
  padding: 0.6rem 1.6rem;
  border-radius: 3rem;
}
.business-scale .mission-badge img {
  width: 1.6rem;
  height: 1.6rem;
}
.business-scale .mission-badge span {
  font-size: 1.3rem;
  font-weight: 500;
  color: #0039A9;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .business-scale .business-scale {
    padding: 4rem 0;
  }
  .business-scale .business-scale-header h2 {
    font-size: 2.6rem;
  }
}

.blog-head {
  position: relative;
  padding: 6rem 0;
  background: #F9F9F9;
}
@media only screen and (max-width: 767px) {
  .blog-head {
    padding: 3rem 0;
    margin-top: 2rem;
    margin-bottom: -4rem;
  }
}
.blog-head .head-blog {
  display: flex;
  justify-content: center;
  align-items: center;
}

.head-main {
  padding: 0;
}

.blog-grid-section {
  padding: 8rem 0;
  background: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-grid-section {
    padding: 6rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .blog-grid-section {
    margin-top: 5rem;
    padding: 2rem 0;
  }
}
.blog-grid-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-grid-section .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-grid-section .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.blog-grid-section .blog-cards {
  background: #F9F8F6;
  border-radius: 1.6rem;
  overflow: hidden;
  transition: all 0.3s ease;
  display: grid;
  width: 39rem;
  height: 60rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-grid-section .blog-cards {
    width: 100%;
    height: auto;
  }
}
.blog-grid-section .blog-cards:hover {
  transform: translateY(-6px);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-grid-section .blog-cards {
    border-radius: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .blog-grid-section .blog-cards {
    border-radius: 1.2rem;
    width: 100%;
    height: auto;
  }
}
.blog-grid-section .blog-cards .blog-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 2rem;
}
.blog-grid-section .blog-cards .blog-img .news-img {
  transition: transform 0.3s ease;
  border-radius: 1.5rem;
  width: 35rem;
}
@media only screen and (max-width: 767px) {
  .blog-grid-section .blog-cards .blog-img .news-img {
    width: 100%;
  }
}
.blog-card:hover .blog-grid-section .blog-cards .blog-img .news-img {
  transform: scale(1.05);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-grid-section .blog-cards .blog-img {
    height: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-grid-section .blog-cards .blog-img {
    width: 100%;
    height: auto;
  }
}
.blog-grid-section .blog-cards .blog-content {
  padding: 2rem;
  margin-top: -4rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-grid-section .blog-cards .blog-content {
    padding: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-grid-section .blog-cards .blog-content {
    padding: 14px;
    margin-top: -2rem;
  }
}
.blog-grid-section .blog-cards .blog-content .blog-title {
  font-size: 2.4rem;
  color: #000;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 32px;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .blog-grid-section .blog-cards .blog-content .blog-title {
    font-size: 2rem;
    line-height: 30px;
    text-align: center;
  }
}
.blog-grid-section .blog-cards .blog-content .sub-para {
  color: #808080;
  line-height: 24px;
  font-weight: 400;
  margin-top: 2rem;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .blog-grid-section .blog-cards .blog-content .sub-para {
    margin-top: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
  }
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-meta {
    align-items: flex-start;
    gap: 6px;
    margin-top: 2rem;
  }
}
.blog-meta .meta-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-meta .meta-left img {
  width: 2.8rem;
  height: 2.8rem;
}
@media only screen and (max-width: 767px) {
  .blog-meta .meta-left img {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.blog-meta .meta-date {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .blog-meta .meta-date {
    font-size: 1.4rem;
  }
}

.mg-t-4 {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .mg-t-4 {
    margin-top: 0.5rem;
  }
}

.blog-inner-page {
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
.blog-inner-page .main-header {
  width: 100%;
  background: #F9F8F6;
  margin-top: 10rem;
  padding: 4rem 1rem;
  text-align: center;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .main-header {
    margin-top: 7rem;
    padding: 2rem 1rem;
    height: auto;
    margin-bottom: 3rem;
  }
}
.blog-inner-page .main-header .header-content {
  max-width: 900px;
  margin: 0 auto;
}
.blog-inner-page .main-header .header-content .blog-head {
  font-size: 6rem;
  margin-bottom: 1rem;
  line-height: 68px;
  letter-spacing: 0;
  font-weight: 500;
  color: #000;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .main-header .header-content .blog-head {
    line-height: 42px;
    letter-spacing: 0;
    font-size: 3rem;
    font-weight: 600;
  }
}
.blog-inner-page .main-header .header-content .subtitle {
  font-size: 1.8rem;
  color: #808080;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .main-header .header-content .subtitle {
    line-height: 28px;
    font-size: 1.4rem;
  }
}
.blog-inner-page .main-header .header-content .blog-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}
.blog-inner-page .mobile-more-blogs {
  display: none;
  background: #F9F8F6;
  padding: 2rem 1.5rem;
  margin: 3rem 1rem 0;
  border-radius: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .mobile-more-blogs {
    margin: 0;
    padding: 1rem 2rem;
  }
}
.blog-inner-page .mobile-more-blogs h3 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .mobile-more-blogs h3 {
    margin: 0;
    font-size: 2rem;
  }
}
.blog-inner-page .mobile-more-blogs ul li {
  margin-bottom: 1.2rem;
  border-bottom: 1px solid #ECECF1;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .mobile-more-blogs ul li {
    margin-top: 1rem;
    padding-bottom: 0rem;
  }
}
.blog-inner-page .mobile-more-blogs ul li a {
  color: #000;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .mobile-more-blogs ul li a {
    font-size: 1.4rem;
    line-height: 22px;
  }
}
.blog-inner-page .mobile-more-blogs ul li a:hover {
  color: #000;
}
.blog-inner-page .mobile-more-blogs ul li p {
  color: #808080;
  font-size: 1.4rem;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .mobile-more-blogs ul li p {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .mobile-more-blogs {
    display: block;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-inner-page .mobile-more-blogs {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .blog-inner-page .mobile-more-blogs {
    display: none;
  }
}
.blog-inner-page .blog-image {
  width: 100%;
}
.blog-inner-page .blog-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-image {
    display: none;
  }
}
.blog-inner-page .blog-image-mobile {
  display: none;
  width: 100%;
}
.blog-inner-page .blog-image-mobile img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-image-mobile {
    display: block;
  }
}
.blog-inner-page .blog-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
  }
}
.blog-inner-page .blog-content {
  font-size: 1rem;
}
.blog-inner-page .blog-content .blog-inner-head {
  margin-top: 3rem;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-content .blog-inner-head {
    font-size: 2.2rem;
    line-height: 33px;
    margin-top: 2rem;
    margin-bottom: 0;
  }
}
.blog-inner-page .blog-content .sub-blog-head {
  font-size: 2.5rem;
  font-weight: 500;
}
.blog-inner-page .blog-content .sub-blog {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 29px;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-content .sub-blog {
    line-height: 28px;
    font-size: 1.8rem;
  }
}
.blog-inner-page .blog-content .blog-para {
  color: #808080;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-content .blog-para {
    font-size: 1.4rem;
  }
}
.blog-inner-page .blog-content .blog-points {
  margin: 20px 0;
  padding-left: 25px;
  list-style-type: disc;
}
.blog-inner-page .blog-content .blog-points li {
  color: #808080;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-content .blog-points {
    padding-left: 20px;
  }
  .blog-inner-page .blog-content .blog-points li {
    font-size: 1.4rem;
  }
}
.blog-inner-page .blog-sidebar .sticky-sidebar {
  position: sticky;
  top: 2rem;
}
.blog-inner-page .blog-sidebar .toc {
  background: #F9F8F6;
  padding: 1.5rem;
  border-radius: 0.8rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-sidebar .toc {
    padding: 0.5rem 1rem;
    margin-bottom: 0rem;
  }
}
.blog-inner-page .blog-sidebar .toc h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #000;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-sidebar .toc h3 {
    margin-top: 0rem;
    font-size: 2rem;
  }
}
.blog-inner-page .blog-sidebar .toc ul li {
  margin-bottom: 0.8rem;
}
.blog-inner-page .blog-sidebar .toc ul li a {
  color: #808080;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-sidebar .toc ul li a {
    font-size: 1.4rem;
  }
}
.blog-inner-page .blog-sidebar .toc ul li a:hover {
  color: #000;
}

.blog-inner-page {
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
.blog-inner-page .main-header {
  width: 100%;
  background: #F9F8F6;
  margin-top: 10rem;
  padding: 4rem 1rem;
  text-align: center;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .main-header {
    margin-top: 7rem;
    padding: 2rem 1rem;
    height: auto;
    margin-bottom: 3rem;
  }
}
.blog-inner-page .main-header .header-content {
  max-width: 900px;
  margin: 0 auto;
}
.blog-inner-page .main-header .header-content .blog-head {
  font-size: 6rem;
  margin-bottom: 1rem;
  line-height: 68px;
  letter-spacing: 0;
  font-weight: 500;
  color: #000;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .main-header .header-content .blog-head {
    font-size: 3rem;
    line-height: 43px;
    letter-spacing: 0;
    font-size: 3rem;
    font-weight: 500;
  }
}
.blog-inner-page .main-header .header-content .subtitle {
  font-size: 1.8rem;
  color: #808080;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .main-header .header-content .subtitle {
    line-height: 28px;
    font-size: 1.4rem;
  }
}
.blog-inner-page .main-header .header-content .blog-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}
.blog-inner-page .blog-image {
  width: 100%;
}
.blog-inner-page .blog-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-image {
    display: none;
  }
}
.blog-inner-page .blog-image-mobile {
  display: none;
  width: 100%;
}
.blog-inner-page .blog-image-mobile img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-image-mobile {
    display: block;
  }
}
.blog-inner-page .blog-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
    margin: 0;
  }
}
.blog-inner-page .blog-content {
  font-size: 1rem;
}
.blog-inner-page .blog-content .blog-inner-head {
  margin-top: 3rem;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-content .blog-inner-head {
    font-size: 2.2rem;
    line-height: 33px;
    margin-top: 2rem;
    margin-bottom: 0;
  }
}
.blog-inner-page .blog-content .sub-blog-head {
  font-size: 2.5rem;
  font-weight: 500;
}
.blog-inner-page .blog-content .sub-blog {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 29px;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-content .sub-blog {
    line-height: 28px;
    font-size: 1.8rem;
  }
}
.blog-inner-page .blog-content .blog-para {
  color: #808080;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-content .blog-para {
    font-size: 1.4rem;
  }
}
.blog-inner-page .blog-content .blog-points {
  margin: 20px 0;
  padding-left: 25px;
  list-style-type: disc;
}
.blog-inner-page .blog-content .blog-points li {
  color: #808080;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-content .blog-points {
    padding-left: 20px;
  }
  .blog-inner-page .blog-content .blog-points li {
    font-size: 1.4rem;
  }
}
.blog-inner-page .blog-sidebar .sticky-sidebar {
  position: sticky;
  top: 2rem;
}
.blog-inner-page .blog-sidebar .toc {
  background: #F9F8F6;
  padding: 1.5rem;
  border-radius: 0.8rem;
  margin-bottom: 3rem;
  display: block;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-sidebar .toc {
    padding: 0.5rem 1rem;
    margin-bottom: 0rem;
    display: none;
  }
}
.blog-inner-page .blog-sidebar .toc h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #000;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-sidebar .toc h3 {
    margin-top: 0rem;
    font-size: 2rem;
  }
}
.blog-inner-page .blog-sidebar .toc ul li {
  margin-bottom: 0.8rem;
}
.blog-inner-page .blog-sidebar .toc ul li a {
  color: #808080;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-sidebar .toc ul li a {
    font-size: 1.4rem;
  }
}
.blog-inner-page .blog-sidebar .toc ul li a:hover {
  color: #000;
}
.blog-inner-page .blog-sidebar .more-blogs {
  padding: 1.5rem;
  border-radius: 0.8rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-sidebar .more-blogs {
    display: none;
  }
}
.blog-inner-page .blog-sidebar .more-blogs h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #000;
  margin-top: 2rem;
}
.blog-inner-page .blog-sidebar .more-blogs ul li {
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #ECECF1;
}
.blog-inner-page .blog-sidebar .more-blogs ul li a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.8rem;
  font-weight: 500;
}
.blog-inner-page .blog-sidebar .more-blogs ul li a:hover {
  color: #000;
}
.blog-inner-page .blog-sidebar .more-blogs ul li p {
  color: #808080;
  font-size: 1.4rem;
  margin-top: 0.5rem;
}

.blog-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-point {
  padding-left: 2rem;
}
.blog-point li {
  position: relative;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 1.2rem;
  padding-left: 1.6rem;
}
.blog-point li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.6rem;
  height: 0.6rem;
  background: #646464;
  border-radius: 50%;
}/*# sourceMappingURL=style.css.map */