@import url("https://fonts.googleapis.com/css2?family=Blinker:wght@100;200;300;400;600;700;800;900&display=swap");

:root {
  --primary-color: #ff1f3e;
  --secondary-color: #1b1b6f;
  --white-color: #ffffff;
  --black-color: #000000;
  --gray-color: #808080;
  --secondary-gray: #1e1e1e;
  --light-blue: #d7f7ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  /* font-size: 1.1vw; */
}

body {
  position: relative;
  font-family: "Blinker", serif;
  font-size: 1rem;
  line-height: 1;
}

.container {
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding: 0 2rem;
}

button {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: inherit;
}

.banner-container .contact-btn:hover {
  color: var(--white-color) !important;
  background-color: transparent !important;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}

.banner-container .contact-btn:hover svg path {
  fill: var(--white-color);
}

/* Nav styles  */

nav {
  background-color: var(--white-color);
  position: sticky;
  top: -0.063rem;
  left: 0;
  z-index: 9999;
  margin-top: -0.063rem;
  height: 5rem;
  border-bottom: 0.063rem solid #e5e5e5;
}

nav .container {
  height: 100%;
}

.contact-btn {
  padding: 0.75rem 1.125rem;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  cursor: pointer;
}

.brand-logo {
  width: 8.75rem;
  height: 2rem;
  vertical-align: bottom;
}

.navContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.navMenus {
  height: 100%;
}

.menus {
  display: flex;
  height: 100%;
}

.menu button {
  height: 100%;
  outline: none;
  border: none;
  position: relative;
  background: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.menu button::after {
  content: "";
  background-color: var(--secondary-color);
  width: 100%;
  height: 0.25rem;
  position: absolute;
  z-index: 99;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  transition-duration: 0.15s;
}

.menu button::before {
  content: "";
  position: absolute;
  z-index: 99;
  left: 50%;
  right: 50%;
  transform: translate(-50%);
  bottom: -0.7rem;
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-bottom: 0.5rem solid var(--white-color);
  opacity: 0;
  transition: opacity 0.15s;
}

.menu button:hover::after,
.menu button:hover::before,
.menu button.active::after,
.menu button.active::before {
  opacity: 1;
}

.menuModal {
  transition: visibility 0.15s;
  visibility: hidden;
  min-width: 50rem;
  background-color: var(--white-color);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.1) 0px 0px 20px 0px;
  position: absolute;
  top: 5.65rem;
  left: 50%;
  transform: translate(-50%);
  border-radius: 1.4rem;
  overflow: hidden;
  transition: visibility 0.15s;
}

.menuModal:has(#modal2.active) {
  animation: animateWidth 0.2s ease-in-out;
  min-width: 65rem;
}

@keyframes animateWidth {
  from {
    min-width: 50rem;
  }

  to {
    min-width: 65rem;
  }
}

.navContainer:has(button:hover) .menuModal,
.menuModal:hover {
  visibility: visible;
}

.menuModalContainer {
  height: 100%;
}

.modal {
  width: 100%;
  height: 100%;
  display: none;
}

.modal.active {
  display: block;
  position: relative;
  z-index: 9999;
}

.modalConatiner {
  display: flex;
  align-items: stretch;
}

.leftContent {
  width: 40%;
}

.rightContent {
  width: 60%;
  padding: 1.5rem 0.75rem 0;
  border-left: 0.063rem solid rgb(231, 234, 242);
}

.menuModal:has(#modal2.active) .leftContent {
  width: 30%;
}

.menuModal:has(#modal2.active) .rightContent {
  width: 45%;
  padding-bottom: 2rem;
}

.leftContent ul li {
  list-style: none;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: var(--secondary-color);
  border-bottom: 0.063rem solid rgb(231, 234, 242);
}

.leftContent ul li.active {
  background-color: rgb(219 248 255);
}

.menuLinks {
  display: none;
}

.menuLinks.active {
  display: block;
}

.rightNav {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}



/* right phone numner */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .nav-contact-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .nav-contact-number img {
    width: 1.5rem;
    height: 1.5rem;
    
  }
  .nav-contact-number p a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black-color);
    text-decoration: none;
  }
  

.mainLinks a {
  text-decoration: none;
  padding: 0.75rem;
  display: block;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.mainLinks a:not(:has(.linkSub)) {
  margin-bottom: unset;
}

.mainLinks a:hover {
  background-color: rgb(219 248 255);
}

.linkhead {
  color: var(--secondary-color);
  font-weight: 600;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.linkSub {
  margin-top: 0.5rem;
  font-weight: 300;
  color: rgb(128, 128, 128);
}

.linkhead svg {
  width: 0.5rem;
  height: 0.8rem;
  opacity: 0;
}

.mainLinks a:hover svg {
  transition: all 0.4s;
  width: 0.8rem;
  opacity: 1;
}

.customerStories {
  padding: 2rem;
  width: 35%;
  background: rgb(219 248 255);
}

.customerStories a {
  text-decoration: none;
}

.customerStories img {
  aspect-ratio: 17 / 11;
  object-fit: cover;
}

.customerStories h3 {
  font-size: 2rem;
  margin: 1.25rem 0;
  font-weight: 600;
  color: var(--secondary-color);
}

.customerStories p {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: var(--black-color);
}

.customerStories:hover h3 {
  text-decoration: underline;
}

.language {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.language .option {
  line-height: 1.5;
  font-weight: 400;
  font-size: 0.875rem;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.language .option span {
  margin-left: 0.75rem;
  cursor: pointer;
}

.language span {
  width: 1.25rem;
  height: 1.25rem;
}

.language .option span {
  width: 1rem;
  height: 1rem;
}

.language {
  gap: 0.5rem;
}

/* mobile nav styles  */

@media screen and (max-width: 768px) {
  html {
    font-size: unset;
  }

  body:has(.mobileNav.active) {
    overflow: hidden;
  }
}

/* Nav styles end*/

.banner-container .contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Footer Section Starts */

.footer {
  background: #1b1b6f;
}

.footer .footer_preText {
  padding-top: 2rem;
}

.footer .footer_preText p:nth-child(2) {
  padding-top: 1.5rem;
}

.footer .footer_preText p {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 400;
  color: #ffffff;
}

.footer .footer_preText p sup {
  position: relative;
  top: 0.1rem;
  font-size: 0.5rem;
  left: -0.125rem;
}

.footer .footer_preText p a {
  color: inherit;
}

.footer .footer_content .footer_top_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.footer .footer_content .footer_top_content .left_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.footer .footer_content .footer_top_content .left_content .language,
.language {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer .footer_content .footer_top_content .left_content .language .option,
.language .option,
.footer .footer_content .footer_top_content .right_content .customer_support {
  line-height: 1.5;
  font-weight: 400;
  font-size: 0.875rem;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.footer .footer_content .footer_top_content .right_content a.sign_in {
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.footer .footer_content .footer_top_content .right_content a.sign_in:hover {
  text-decoration: underline;
}

.footer .footer_content .footer_top_content .right_content .customer_support {
  font-size: 1rem;
}

.footer
  .footer_content
  .footer_top_content
  .left_content
  .language
  .option
  span,
.language .option span {
  margin-left: 0.75rem;
  cursor: pointer;
}

.footer .footer_content .footer_top_content .left_content .logo_link span {
  width: 7.813rem;
  display: inline-block;
  height: 1.813rem;
}

.footer .footer_content .footer_top_content .left_content span svg {
  width: 92%;
  height: 100%;
}

.footer .footer_content .footer_top_content .left_content .language span,
.language span {
  width: 1.25rem;
  height: 1.25rem;
}

.footer
  .footer_content
  .footer_top_content
  .left_content
  .language
  .option
  span,
.language .option span {
  width: 1rem;
  height: 1rem;
}

.footer .footer_content .footer_top_content .right_content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.footer .footer_content .footer_top_content .right_content .contact-btn {
  padding: 0.75rem 1.125rem;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 0.5rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

.footer
  .footer_content
  .footer_top_content
  .right_content
  .btn-secondary:hover {
  color: var(--white-color);
  background: none;
}

.data_masonry_column {
  display: flex;
  flex: 0 0 calc(14.5% - 0.2rem);
  flex-direction: column;
  gap: 1.25rem;
}

.data_masonry_column > div {
  display: flex;
  flex-direction: column;
  height: fit-content;
}

.data_masonry_column > div > div {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: #fff;
}

.data_masonry_column > div > a {
  font-size: 1rem;
  line-height: 2.3rem;
  color: #fff;
  text-decoration: inherit;
  font-weight: 400;
}

/* Footer Section Ends */

.Masonry_parent {
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 0;
  column-gap: 0;
}

.data_masonry_column {
  box-sizing: border-box;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  padding: 0.625rem;
}

.footer_copyRights {
  display: flex;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #fff;
  width: 100%;
  justify-content: flex-start;
}

.privacy_choice {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.privacy_choice_links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1.5rem;
}

.privacy_choice_links a,
#cpra_button {
  font-size: 0.938rem;
  line-height: 2rem;
  color: #fff;
  text-decoration: none;
}

.SocialLinks {
  display: flex;
  gap: 1.5rem;
}

.SocialLinks a {
  width: 2rem;
  height: 2rem;
  font-size: 0.938rem;
  line-height: 2rem;
  color: #fff;
  text-decoration: none;
}

.SocialLinks a svg {
  width: 100%;
  height: 85%;
}

.cpra_button_span {
  margin-right: 0.5rem;
}

.icon_span svg {
  color: #fff;
}

@media screen and (max-width: 1280px) {
  .Masonry_parent {
    -moz-column-count: 4;
    column-count: 4;
  }
}

@media screen and (max-width: 600px) {
  .Masonry_parent {
    -moz-column-count: 2;
    column-count: 2;
  }
}

@media screen and (min-width: 1281px) {
  .Masonry_parent {
    -moz-column-count: 7;
    column-count: 7;
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  .footer .footer_content .footer_top_content {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer .footer_content .footer_top_content .right_content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4rem;
    width: 100%;
  }

  .footer .footer_content .footer_top_content .left_content {
    width: 100%;
  }
}

@media screen and (max-width: 1366px) {
  .privacy_choice {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}

/* updates */
.footer .footer_content .footer_top_content .left_content .language,
.language {
  gap: 0.5rem;
}

.customer_support a {
  text-decoration: none;
  color: var(--white-color);
}

.customer_support a:hover,
.data_masonry_column > div > a:hover,
.privacy_choice_links a:hover {
  text-decoration: underline;
}

.data_masonry_column div div {
  margin-bottom: 0.75rem;
}

.footer_top_content {
  padding: 2.25rem 0 1.875rem 0;
}

.data_masonry_column {
  padding-left: 0px;
}

.footer .footer_content .footer_top_content .right_content {
  gap: 2.25rem;
}

.privacy_choice {
  margin-top: 3.125rem;
}

.footer_copyRights {
  padding-top: 0.75rem;
  padding-bottom: 4.375rem;
}

@media screen and (max-width: 1279px) {
  .footer .footer_content .footer_top_content .right_content {
    margin-right: 0.5rem;
    gap: 1rem;
  }
}

@media screen and (max-width: 600px) {
  .footer .footer_content .footer_top_content .right_content {
    margin-top: 2.5rem;
  }

  .footer .container {
    padding: 0 1.25rem;
  }

  .h100 {
    height: fit-content;
  }
}

@media screen and (max-width: 1366px) {
  .privacy_choice {
    flex-direction: row;
  }
}

@media screen and (max-width: 768px) {
  .footer .footer_preText {
    padding-top: 1.5rem;
  }

  .footer_copyRights {
    padding-top: 1.75rem;
    padding-bottom: 2.75rem;
  }
}

@media screen and (max-width: 370px) {
  .footer .footer_content .footer_top_content .left_content .language .option {
    font-size: 0.875rem;
  }

  .footer .footer_content .footer_top_content .left_content {
    gap: 1rem;
    justify-content: space-between;
  }
}

/* Footer Section Ends */

/* Intro section starts */

.intro_section {
  padding: 2rem 0;
}

.intro_section .intro_text h1 {
  font-size: 4rem;
  font-weight: 400;
}

.intro_section .intro_text span {
  color: #ff1f3e;
  font-weight: 800;
}

.intro_contact_section {
  padding-top: 0.938rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.563rem;
  width: 100%;
}

.intro_contact_section .intro_cta {
  padding: 0.75rem 1rem;
  background-color: #ff1f3e;
  border-radius: 0.5rem;
  border: 2px solid var(--primary-color);
}

.intro_contact_section .intro_cta a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.intro_contact_section .intro_cta:hover {
  background-color: var(--white-color);
}

.intro_contact_section .intro_cta:hover a {
  color: var(--secondary-color);
}

.intro_contact_section .intro_cta:hover svg path {
  fill: var(--secondary-color);
}

.intro_contact_section .tele_number {
  text-decoration: none;
  color: #000000;
  font-size: 1rem;
  font-weight: 400;
}

/* Intro section end */

/* TOC section starts */

.toc_container h2 {
  font-size: 3.25rem;
  font-weight: 600;
  line-height: 1.2;
  /* color: var(--black-color); */
  color: #1b1b6f;
  margin-bottom: 2rem;
  text-wrap: nowrap;
  white-space: nowrap;
}

.toc_container .sticky_container {
  display: flex;
  gap: 5rem;
  margin-bottom: 2.5rem;
  padding-top: 2.5rem;
}

.toc_container .sticky_container .left_block {
  flex: 0 0 calc(35%);
}

.toc_container .sticky_container .left_block .left_content {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  /* position: sticky; */
  /* top: 1.5rem; */
}

.toc_container .sticky_container .left_block .left_content li {
  padding: 1rem 0;
  /* border-radius: 10rem; */
  font-size: 2rem;
  font-weight: 600;
  color: #1b1b6f;
  cursor: pointer;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.toc_container .sticky_container .left_block .left_content li img {
  vertical-align: middle;
  padding-top: 0.375rem;
}

.toc_container .sticky_container .left_block .left_content li.active {
  /* background: var(--primary-color); */
  color: #2d7fcf;
}

.toc_container .sticky_container .left_block .left_content li.active svg path {
  /* background: var(--primary-color); */
  fill: #2d7fcf;
}

.toc_container .sticky_container .left_block .left_content li svg {
  width: 1rem;
  height: 1rem;
}

.toc_container .sticky_container .right_block {
  /* margin-top: 6rem; */
  background-color: #dbf9ff;
  padding-top: 4.375rem;
  border-radius: 2.5rem;
}

.toc_container
  .sticky_container
  .right_block
  .right_content
  > div:not(:last-child) {
  padding-bottom: 2.5rem;
}

.toc_container .sticky_container .right_block .right_content .section_title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  align-items: center;
}

.section_title img {
  width: 8.625rem;
  height: 6.625rem;
}

.toc_container .sticky_container .right_block .right_content h3 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 1rem;
  color: #1b1b6f;
  width: 71%;
}

.toc_container .sticky_container .right_block .right_content p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: var(--black-color);
}

.toc_container .sticky_container .right_block .right_content .key_features ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.toc_container
  .sticky_container
  .right_block
  .right_content
  .key_features
  ul
  .key {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black-color);
  margin-bottom: 0;
}

.toc_container
  .sticky_container
  .right_block
  .right_content
  .key_features
  ul
  .stack_card {
  /* background: #f8f8f8; */
  padding: 1.75rem 0 0;
  display: flex;
  align-items: self-start;
  gap: 1.5rem;
  border-radius: 0.75rem;
}

.toc_container
  .sticky_container
  .right_block
  .right_content
  .key_features
  ul
  .stack_card
  .icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.25rem;
}

.right_content > div[id] {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-left: 3.125rem;
  padding-right: 3.125rem;
  padding-bottom: 2.375rem;
}

.right_content > div[id].active {
  opacity: 1;
  visibility: visible;
  position: relative;
  height: auto;
  overflow: visible;
}

.right_content {
  position: relative;
  /* min-height: 400px;  */
}

/* TOC section ends */

.mobile_menus {
  display: none;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .intro_section .intro_text span {
    font-weight: 700;
  }

  .intro_contact_section .tele_number,
  .intro_contact_section .tele_number strong {
    font-weight: 600 !important;
  }

  .toc_container h2 {
    font-weight: 700;
  }

  .mobile_menus {
    display: block;
  }

  .mobile_menus h2 {
    margin-bottom: 1.25rem;
    font-size: 2rem;
  }

  #about_menu {
    width: 100%;
    margin-bottom: 1rem;
    padding: 1.094rem 0.875rem;
    font-size: 1.25rem;
    color: #2d7fcf;
    outline: none;
    border: 1px solid var(--black-color);
    border-radius: 0.5rem;
    position: relative;
  }

  #about_menu::after {
    position: absolute;
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%) rotate(45deg);
    border-bottom: 2px solid #676879;
    border-right: 2px solid #676879;
    cursor: pointer;
  }

  .toc_container
    .sticky_container
    .right_block
    .right_content
    .key_features
    ul {
    gap: 0;
  }

  .intro_section .intro_text {
    text-align: center;
  }

  .intro_contact_section {
    flex-direction: column;
    width: 100%;
  }

  .toc_container .sticky_container .right_block {
    padding-top: 2.5rem;
  }

  .toc_container .sticky_container .right_block h2 {
    display: block !important;
    padding-left: 1.25rem;
  }

  .right_innovation {
    padding: 0 1rem;
  }

  .toc_container .sticky_container .right_block .right_content .section_title {
    /* flex-direction: column; */
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .toc_container .sticky_container .right_block .right_content h3 {
    width: 100%;
    font-size: 1.5rem;
    margin-bottom: 0;
    line-height: 1;
  }

  .toc_container .sticky_container .right_block .right_content p {
    font-size: 1rem;
  }

  .toc_container
    .sticky_container
    .right_block
    .right_content
    .section_title
    img {
    width: 4.563rem;
    height: 3.5rem;
  }

  .toc_container
    .sticky_container
    .right_block
    .right_content
    .key_features
    ul
    .stack_card {
    padding-top: 1.25rem;
  }

  .toc_container
    .sticky_container
    .right_block
    .right_content
    .key_features
    ul
    .key {
    font-size: 1.25rem;
  }

  .toc_container .sticky_container .right_block .right_content p {
    margin-bottom: 0;
  }

  select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 1rem;
    border: 1px solid #dfdfdf;
    border-radius: 2px;
    /* margin-right: 2rem; */
    padding: 1rem;
    padding-right: 2rem;
    position: relative;
    background: url(../images/dropdown-icon-wp_copper.svg) center no-repeat;
    background-position: 97%;
    background-size: 1.25rem 1.25rem;
    color: #000000;
  }

  .toc_container .sticky_container .right_block .right_content > div[id] {
    /* opacity: 1 !important; */
    /* visibility: visible !important; */
    /* position: relative !important; */
    /* height: auto !important; */
    /* overflow: visible !important; */
    margin-bottom: 2rem;
    /* display: block !important; */
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  #section_one p:nth-child(2) {
    margin-bottom: 1rem;
  }

  .toc_container .sticky_container .left_block {
    display: none;
  }

  .toc_container .sticky_container .right_block {
    margin-top: 0;
  }

  .toc_container .sticky_container .left_block {
    display: none;
  }

  .toc_container .sticky_container .right_block {
    margin-top: 0;
  }
}

/* video section  */

.video-container {
  display: flex;
}

.video-text,
.video-player {
  width: 50%;
}

.video-text {
  font-size: 3rem;
  line-height: 3.5rem;
}

.video-text span {
  color: var(--primary-color);
  font-weight: 600;
}

/* video section ends */

/* form section  */

/* Form section starts */

.form_section_new {
  padding-top: 3.25rem;
  padding-bottom: 2.5rem;
}

.form_contentArea_new {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3rem;
}

.form_contentArea_new .form_content_new,
.form_contentArea_new .form_block_new {
  flex: 0 0 calc(50% - 3rem / 2);
}

.form_contentArea_new .form_content_new .image_wrapper {
  border-radius: 3rem;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.form_contentArea_new .form_content_new .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form_contentArea_new .form_block_new .form_table_new h2 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02rem;
  margin-bottom: 1.5rem;
  margin-top: 2.25rem;
}

.form_contentArea_new .form_block_new .form_table_new p {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.02rem;
  margin-bottom: 0.5rem;
}

.contactForm.mktoForm {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100% !important;
}

.contactForm.mktoForm .mktoFormCol {
  width: 100%;
}

.contactForm.mktoForm .mktoFieldWrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.contactForm.mktoForm .mktoFieldWrap:has(#LblemailOptIn) {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 1.5rem;
}

.contactForm.mktoForm .mktoFieldDescriptor input[name="emailOptIn"] {
  margin: 0 !important;
  width: 1.25rem !important;
  height: 1.2rem !important;
}

.mktoForm.mktoLayoutAbove .mktoCheckboxList {
  padding: 0 !important;
  width: fit-content !important;
  margin-right: 0.75rem !important;
}

.contactForm.mktoForm .mktoFieldWrap #LblemailOptIn {
  width: 100% !important;
  padding-top: 0 !important;
  color: #000000;
}

.contactForm.mktoForm .mktoFieldWrap #LblemailOptIn a {
  color: #000000;
  font-size: inherit !important;
}

.contactForm .mktoFormRow {
  width: 100%;
}

.contactForm fieldset {
  padding: 0 !important;
  margin-bottom: 0 !important;
  border: 0 !important;
}

.contactForm fieldset legend {
  padding: 0 !important;
}

.contactForm fieldset .mktoFormRow {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.contactForm fieldset .mktoFormRow .mktoFieldDescriptor {
  flex: 0 0 calc(50% - 1rem / 2);
}

.mktoFormRow.half_width {
  flex: 0 0 calc(50% - 1rem / 2);
}

.mktoFormRow.half_width:has(.full-width) {
  flex: 0 0 100%;
}

/* .contactForm .mktoFormRow:last-child:has(input:not([type="hidden"])) {
  flex: 0 0 100% !important;
} */

.full-width {
  flex: 0 0 100% !important;
}

.contactForm.mktoForm .mktoRequiredField label.mktoLabel,
.contactForm.mktoForm .mktoField {
  width: 100% !important;
}

.contactForm.mktoForm .mktoFieldWrap label.mktoLabel {
  color: #1b1b6f;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Blinker", serif;
}

.contactForm.mktoForm .mktoFieldWrap select {
  font-size: 1rem;
  height: 3.25rem;
}

.contactForm.mktoForm .mktoField {
  padding: 1rem;
  border-radius: 0.5rem;
  border: 0.063rem solid #bfbfbf;
  margin-top: 0.5rem;
  font-size: 1rem;
  height: 100%;
}

.contactForm.mktoForm .mktoFieldWrap .mktoGutter,
.contactForm.mktoForm .mktoOffset {
  width: 0 !important;
  height: 0 !important;
}

.contactForm.mktoForm .mktoButtonRow {
  width: 100%;
}

.contactForm.mktoForm .mktoButtonRow span {
  margin: 0 !important;
}

.contactForm.mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
  padding: 1.1rem;
  background: #ff1f3e;
  border-radius: 0.5rem;
  color: #ffffff;
  border: 0;
  margin-top: 0.875rem;
  /* margin-bottom: 2rem; */
  width: 100%;
  border: 0.063rem solid transparent !important;
  font-family: "Blinker", serif;
  font-weight: 400;
  font-size: 1.125rem;
}

.contactForm.mktoForm .mktoButtonWrap.mktoSimple .mktoButton:hover {
  background: transparent !important;
  color: #1b1b6f;
  border: 0.063rem solid #ff1f3e !important;
}

.contactForm.mktoForm .mktoError {
  position: unset;
}

.contactForm.mktoForm .mktoError .mktoErrorArrowWrap {
  display: none;
}

.contactForm.mktoForm .mktoError .mktoErrorMsg {
  background-color: unset !important;
  background-image: unset !important;
  border: none !important;
  box-shadow: none !important;
  color: #ff1f3e !important;
  text-shadow: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  font-size: 0.875rem !important;
}

.contactForm.mktoForm .mktoAsterix {
  float: left;
  padding-left: unset;
  padding-right: 0.188rem;
  color: #ff1f3e !important;
}

/* new edits */

.form_contentArea_new .form_content_new .image_wrapper > div {
  width: 100%;
  height: 100%;
}

.cta_container a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner_number_cta {
  text-decoration: none;
  margin-top: 2rem;
}

.banner_number_cta div {
  width: 100%;
  height: 100%;
}

.banner_number_cta a {
  padding: 0.75rem 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
  color: var(--white-color);
  background-color: var(--primary-color);
  border: 0.125rem solid var(--primary-color);
  position: relative;
  z-index: 10;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.contactForm fieldset .mktoFormRow .mktoFieldDescriptor:has(#LblemailOptIn) {
  flex: 0 0 100%;
}

@media screen and (max-width: 600px) {
  .banner_number_cta {
    margin-top: 1rem;
  }

  .banner_number_cta a {
    font-size: 0.938rem;
  }

  .module01 .transaction_block {
    padding-bottom: 2.5rem;
  }

  .footer .footer_content .footer_top_content .right_content .contact-btn {
    line-height: 1;
  }
}

@media screen and (max-width: 450px) {
  .banner_number_cta {
    margin-top: 0.75rem;
  }

  .banner_number_cta a {
    font-size: 0.875rem;
  }
}

/* new edits ends */

@media screen and (max-width: 600px) {
  .form_contentArea_new {
    flex-direction: column;
    gap: 2rem;
  }

  .form_contentArea_new .form_content_new .image_wrapper {
    border-radius: 1.75rem;
  }

  .form_contentArea_new .form_block_new .form_table_new h2 {
    font-size: 1.625rem;
    margin-top: 0;
  }

  .form_contentArea_new .form_block_new .form_table_new p {
    font-size: 1.25rem;
  }

  .contactForm.mktoForm {
    padding: 0;
  }
}

nav .contact-btn:hover svg path {
  fill: var(--secondary-color);
}

.review {
  position: absolute;
  right: 7rem;
  bottom: 2rem;
  width: 10.375rem;
  height: 5rem;
}

.review img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  #banner {
    margin-bottom: 3.5rem;
  }

  .intro_section .intro_text h1 {
    font-size: 2.25rem;
  }

  .intro_contact_section {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 1.5rem;
  }

  .banner-container {
    height: 22rem;
    /* background-image: url(../images/hero-banner-mobile.-wp_copper-wp_copper.png); */
    /* background-position: -3rem; */
  }

  .review img {
    display: none;
  }

  .banner-bg-shape {
    height: 22rem;
    background-position-y: 0.2rem;
  }

  .banner-bg-shape {
    width: 105%;
    left: -32%;
  }

  .banner-contant h2 {
    font-size: 2.25rem;
    line-height: unset;
    text-align: unset;
    margin-bottom: 0.25rem;
  }

  .banner-contant h4 {
    line-height: unset;
    font-size: 1.5rem;
    text-align: unset;
  }

  .banner-contant .contact-btn {
    margin-top: 1rem;
    margin-left: 0;
    padding: 0.75rem;
  }

  .banner-contant {
    bottom: 2.5rem;
    left: 3.5rem;
  }

  .video-container {
    flex-wrap: wrap;
  }

  .video-text,
  .video-player {
    width: 100%;
  }

  .video-text {
    font-size: 2rem;
    line-height: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
  }

  .video-text span {
    font-weight: 400;
  }

  .banner-device {
    width: 10.688rem;
    height: 9.688rem;
    bottom: -1rem;
    right: 7rem;
  }

  .right_innovation .right_innovation_section .innovation_content {
    width: 100%;
  }

  .swiper_navigation .swiper_paginations,
  .event_swiper_navigation .event_swiper_paginations {
    display: none;
  }

  .toc_container .sticky_container {
    display: block;
    padding-top: 3.5rem;
  }

  #modal_container .modal_content .modal_block {
    width: 100%;
  }

  .modal_section .modal_body .left_form_content {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 540px) {
  .contact-btn,
  .intro_contact_section .tele_number,
  .intro_cta {
    white-space: nowrap;
  }

  .banner-container {
    background-image: url(../images/hero-banner-mobile-wp_copper.png);
    background-position: right;
  }

  .banner-bg-shape {
    width: 115%;
    background-position-y: 3.5rem;
  }

  .banner-contant h2 {
    text-align: center;
  }

  .banner-contant h4 {
    text-align: center;
  }

  .banner-contant {
    left: 2rem;
  }

  .banner-device {
    width: 9.688rem;
    height: 9.688rem;
    bottom: -3rem;
    right: 3rem;
  }
}

@media screen and (max-width: 506px) {
  .banner-contant {
    width: 53%;
  }
}

@media screen and (max-width: 478px) {
  .banner-contant {
    width: 57%;
  }
}

@media screen and (max-width: 444px) {
  .banner-contant {
    width: 62%;
  }
}

@media screen and (max-width: 430px) {
  .brand-logo {
    width: 6.75rem;
    height: 1.5rem;
  }
}

@media screen and (max-width: 420px) {
  .banner-bg-shape {
    width: 121%;
    left: -40%;
  }
}

@media screen and (max-width: 410px) {
  .banner-bg-shape {
    width: 131%;
    left: -45%;
  }
}

@media screen and (max-width: 409px) {
  .banner-contant {
    width: 68%;
  }

  #about_menu {
    padding-right: 2rem;
    font-size: 1.125rem;
  }

  .form_title br {
    display: none;
  }

  .intro_section .intro_text h1 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 374px) {
  .banner-contant {
    width: 74%;
  }
}

@media screen and (max-width: 380px) {
  #banner {
    background: var(--primary-color);
  }

  .banner-container {
    background-image: none;
  }

  .banner-device {
    right: 7rem;
    width: 10.688rem;
    height: 11.688rem;
  }

  .banner-bg-shape {
    display: none;
  }

  .banner-contant {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    text-align: left;
    padding-top: 2rem;
  }

  .banner-contant h2 {
    text-align: left;
  }

  .banner-contant h4 {
    text-align: left;
  }
}

@media screen and (max-width: 350px) {
  .intro_contact_section {
    flex-wrap: wrap;
  }
}