@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&display=swap");
/* =============================Common styles */
@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&display=swap");
@font-face {
  font-family: "Copernicus Trial";
  src: url("/assets/fonts/CopernicusTrial-Italic.woff2") format("woff2"), url("/assets/fonts/CopernicusTrial-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

.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: #222222;
  font-family: "Figtree", sans-serif;
}

img {
  width: 100%;
}

.global-width {
  max-width: 1240px;
  margin: 0 auto;
  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;
}

.btn {
  opacity: 1;
  outline: 0;
  color: #fff;
  line-height: 4rem;
  position: relative;
  text-align: center;
  letter-spacing: 0.0625rem;
  display: inline-block;
  text-decoration: none;
  font-family: "Figtree", sans-serif;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .btn {
    margin-bottom: 1rem;
  }
  .btn:last-child {
    margin-bottom: 0;
  }
}
.btn:hover:after {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
.btn:hover:before {
  opacity: 0;
  transform: translateY(50%) rotateX(90deg);
}
.btn:after {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  color: #fff;
  display: block;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  position: absolute;
  content: attr(data-back);
  transform: translateY(-50%) rotateX(90deg);
  border-radius: 0.4rem;
  font-weight: 600;
}
.btn:before {
  top: 0;
  left: 0;
  opacity: 1;
  color: #fff;
  display: block;
  padding: 0 3rem;
  line-height: 4rem;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  position: relative;
  content: attr(data-front);
  transform: translateY(0) rotateX(0);
  border-radius: 0.4rem;
  font-weight: 600;
}
.btn.color::before {
  background-color: #fff;
}
.btn.color::after {
  color: #fff;
}

.header-main {
  padding: 2rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 9.15%, rgba(255, 255, 255, 0));
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0);
  transition: background-color 0.26s ease, border-bottom-color 0.26s ease, transform 0.3s ease;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
  }
}
.navbar-inner .logo-img .image {
  width: 20rem;
  height: 4.5rem;
}
@media only screen and (max-width: 767px) {
  .navbar-inner .logo-img .image {
    width: 13rem;
    height: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .navbar-inner .logo-img .image {
    width: 11rem;
    height: 3.5rem;
  }
}
.navbar-inner .burger {
  position: relative;
  display: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 2rem;
  height: 1.5rem;
  z-index: 1002;
}
.navbar-inner .burger-line {
  position: absolute;
  right: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.navbar-inner .burger-line:nth-child(1) {
  top: 0;
}
.navbar-inner .burger-line:nth-child(2) {
  top: 0.6rem;
}
.navbar-inner .burger-line:nth-child(3) {
  top: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .navbar-inner .burger-line {
    height: 2px;
  }
}
.navbar-inner .burger.is-active .burger-line:nth-child(1) {
  top: 0.6rem;
  transform: rotate(45deg);
}
.navbar-inner .burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
}
.navbar-inner .burger.is-active .burger-line:nth-child(3) {
  top: 0.6rem;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  .navbar-inner .burger {
    display: block;
    order: 2;
  }
}
.navbar-inner .btn-contact {
  background-color: #EA1A71;
  color: #fff;
  font-weight: 600;
  font-size: 1.4rem;
  border-radius: 0.8rem;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  width: 11.2rem;
  height: 3.9rem;
}
@media only screen and (max-width: 767px) {
  .navbar-inner .btn-contact {
    width: 10.2rem;
    height: 3.9rem;
  }
}
.navbar-inner .btn-contact:hover {
  background-color: #d60074;
}
@media only screen and (max-width: 767px) {
  .navbar-inner .btn-contact {
    display: block;
    order: 1;
  }
}
.navbar-inner .menu-header {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  height: 100%;
}
.navbar-inner .menu-header .menu-item {
  padding-inline: 0.5rem;
}
.navbar-inner .menu-header .menu-item .menu-link {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  color: #252525;
}
.navbar-inner .menu-header .menu-item .menu-link:hover {
  color: #4A5A68;
}
.navbar-inner .menu-header .menu-item .menu-link.active {
  color: #4A5A68;
}
@media only screen and (max-width: 767px) {
  .navbar-inner .menu-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    background: #fff;
    position: fixed;
    top: 6.9rem;
    right: 0;
    width: 33rem;
    height: 100vh;
    z-index: 1001;
    transform: translateX(100%);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    gap: 2rem;
    list-style: none;
  }
  .navbar-inner .menu-header.is-active {
    transform: translateX(0);
  }
}

@media screen and (min-width: 62rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.btn-contact {
  background-color: #EA1A71;
  color: #fff;
  font-weight: 600;
  font-size: 1.4rem;
  border-radius: 0.8rem;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  width: 11.2rem;
  height: 3.9rem;
}
@media only screen and (max-width: 767px) {
  .btn-contact {
    width: 12rem;
    height: 4.2rem;
    font-size: 1.4rem;
    display: block;
    order: 1;
  }
}
.btn-contact:hover {
  background-color: #d60074;
}
@media only screen and (max-width: 767px) {
  .btn-contact {
    display: block;
    order: 1;
  }
}

.btn-outline {
  background-color: #fff;
  color: #EA1A71;
  font-weight: 600;
  font-size: 1.4rem;
  border-radius: 0.8rem;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  width: 11.2rem;
  height: 3.9rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #EA1A71;
}
@media only screen and (max-width: 767px) {
  .btn-outline {
    display: none;
  }
}
.btn-outline:hover {
  background-color: #EA1A71;
  color: #fff;
}

.main-head {
  font-size: 7.4rem;
  font-weight: 500;
  letter-spacing: -3px;
  color: #223C4E;
  margin-bottom: 3rem;
}
.main-head br {
  display: inline;
}
.main-head .res {
  display: none;
}
@media only screen and (max-width: 767px) {
  .main-head {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    line-height: 38px;
    letter-spacing: 0;
  }
  .main-head br {
    display: none;
  }
  .main-head .res {
    display: inline;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main-head {
    font-size: 5.4rem;
  }
}

.sub-para {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  color: #4A5A68;
}
.sub-para .res {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sub-para {
    font-size: 1.4rem;
    line-height: 22px;
  }
  .sub-para br {
    display: none;
  }
  .sub-para .res {
    display: inline;
  }
}

.sub-head {
  font-size: 5.6rem;
  font-weight: 400;
  letter-spacing: -1px;
  color: #223C4E;
}
@media only screen and (max-width: 767px) {
  .sub-head {
    font-size: 2.4rem;
    font-weight: 500;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .sub-head {
    font-size: 4.6rem;
  }
}

.main-sec {
  position: relative;
  padding: 5rem 0;
}
@media only screen and (max-width: 767px) {
  .main-sec {
    padding: 2rem 0;
    margin-top: 5rem;
  }
}
.main-sec .bg-line {
  position: absolute;
  top: 21.5rem;
  right: 0;
  width: 100%;
  max-width: none;
  z-index: 0;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .main-sec .bg-line {
    display: none;
  }
}
.main-sec .main-head {
  text-align: center;
}
.main-sec .main-head .highlight {
  font-family: "quinn-text", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 7.4rem;
  color: #223C4E;
}
@media only screen and (max-width: 767px) {
  .main-sec .main-head .highlight {
    font-size: 2.8rem;
    letter-spacing: -1px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main-sec .main-head .highlight {
    font-size: 5.4rem;
  }
}
.main-sec .sub-para {
  text-align: center;
  margin-top: 4rem;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .main-sec .sub-para {
    margin-top: 2.4rem;
  }
}
.main-sec .cta-buttons {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 767px) {
  .main-sec .cta-buttons {
    margin-top: 2.9rem;
    margin-bottom: 3rem;
  }
}
.main-sec .cta-buttons .btn-contact {
  display: inline-block;
}
.main-sec .img-sec {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .main-sec .img-sec {
    padding: 2rem;
    margin-top: 5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main-sec .img-sec {
    padding: 2rem;
  }
}
.main-sec .img-sec img {
  width: 109rem;
  height: 70rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .main-sec .img-sec img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main-sec .img-sec img {
    width: 100%;
    height: auto;
  }
}

.real-problems {
  padding: 6rem 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .real-problems {
    padding: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .real-problems {
    padding: 0;
  }
}
.real-problems .sub-head {
  text-align: center;
  margin: 0;
}
.real-problems .sub-head .highlight {
  font-family: "quinn-text", serif;
  font-weight: 400;
  font-style: italic;
  color: #223C4E;
}
@media only screen and (max-width: 767px) {
  .real-problems .sub-head .highlight {
    font-size: 2.6rem;
  }
}
.real-problems .sub-para {
  text-align: center;
}
.real-problems .problem-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .real-problems .problem-wrapper {
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
  }
}
.real-problems .column-left {
  background: #f6f6f6;
  border-radius: 3rem;
  padding: 4rem 3rem;
  position: relative;
  width: 50rem;
  height: 60rem;
  border: 1px solid #D4D4D8;
}
@media only screen and (max-width: 767px) {
  .real-problems .column-left {
    width: 100%;
    padding: 2rem;
    height: 36.6rem;
    border: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .real-problems .column-left {
    height: auto;
  }
}
.real-problems .column-left .box-head {
  font-size: 3.8rem;
  margin: 0;
  font-weight: 500;
  line-height: 5.5rem;
  letter-spacing: -1px;
}
@media only screen and (max-width: 767px) {
  .real-problems .column-left .box-head {
    font-size: 1.8rem;
    line-height: 35.26px;
    letter-spacing: -1px;
  }
}
.real-problems .column-left .sub-para {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 400;
  color: #4A5A68;
  line-height: 2.6rem;
}
@media only screen and (max-width: 767px) {
  .real-problems .column-left .sub-para {
    font-size: 1.4rem;
    line-height: 2.4rem;
    margin-top: 1rem;
    margin-bottom: 5rem;
  }
}
.real-problems .column-left .tags {
  position: relative;
  margin-top: 20rem;
}
@media only screen and (max-width: 767px) {
  .real-problems .column-left .tags {
    margin-top: 3rem;
  }
}
.real-problems .column-left .tags .tag-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .real-problems .column-left .tags .tag-icon {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.real-problems .column-left .tags div {
  display: inline-flex;
  padding: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  height: 5.3rem;
  border-radius: 3rem;
  font-size: 2rem;
  align-items: center;
  gap: 1.4rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 0.7rem;
  white-space: nowrap;
  position: absolute;
}
.real-problems .column-left .tags .tag-yellow {
  background: rgba(239, 167, 37, 0.3019607843);
  top: -11rem;
  left: 17.5rem;
  transform: rotate(-3deg);
}
@media only screen and (max-width: 767px) {
  .real-problems .column-left .tags .tag-yellow {
    top: -2.1rem;
    left: 8.8rem;
    width: 22.6rem;
    height: 3.5rem;
    font-size: 1rem;
    padding: 1rem;
  }
}
.real-problems .column-left .tags .tag-pink {
  background: rgba(238, 44, 98, 0.3019607843);
  top: -5.3rem;
  left: -3rem;
  transform: rotate(8deg);
}
@media only screen and (max-width: 767px) {
  .real-problems .column-left .tags .tag-pink {
    top: 1.8rem;
    left: -2.1rem;
    width: 22.6rem;
    height: 3.5rem;
    font-size: 1rem;
    padding: 1rem;
  }
}
.real-problems .column-left .tags .tag-purple {
  background: rgba(144, 91, 156, 0.3019607843);
  top: 3rem;
  left: 3rem;
  transform: rotate(-1.8deg);
}
@media only screen and (max-width: 767px) {
  .real-problems .column-left .tags .tag-purple {
    top: 6.6rem;
    left: 8.9rem;
    width: 22.6rem;
    height: 3.5rem;
    font-size: 1rem;
    padding: 1rem;
  }
}
.real-problems .column-left .tags .tag-green {
  background: rgba(149, 187, 17, 0.3019607843);
  top: 9.2rem;
  left: -2.9rem;
  transform: rotate(3.6deg);
}
@media only screen and (max-width: 767px) {
  .real-problems .column-left .tags .tag-green {
    top: 10.2rem;
    left: -2rem;
    width: 18.6rem;
    height: 3.5rem;
    font-size: 1rem;
    gap: 1rem;
    padding: 1rem;
  }
}
.real-problems .column-left .tags .tag-orange {
  background: rgba(239, 167, 37, 0.3019607843);
  top: 13.9rem;
  left: 15rem;
  transform: rotate(-7.5deg);
}
@media only screen and (max-width: 767px) {
  .real-problems .column-left .tags .tag-orange {
    top: 13.2rem;
    left: 12.8rem;
    width: 18.6rem;
    height: 3.5rem;
    font-size: 1rem;
    padding: 1rem;
    gap: 1rem;
  }
}
.real-problems .column-right {
  flex: 1;
  border-radius: 3rem;
  width: 59rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .real-problems .column-right {
    width: 100%;
  }
}
.real-problems .column-right .box {
  padding: 4rem 3rem;
  background: #f6f6f6;
  border-radius: 3rem;
  padding: 3rem;
  margin-bottom: 2rem;
  border: 1px solid #D4D4D8;
}
@media only screen and (max-width: 767px) {
  .real-problems .column-right .box {
    padding: 2rem;
  }
}
.real-problems .column-right .box .box-head {
  font-size: 3.6rem;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 5.5rem;
  letter-spacing: -1px;
  color: #223C4E;
}
@media only screen and (max-width: 767px) {
  .real-problems .column-right .box .box-head {
    font-size: 1.8rem;
    line-height: 4.5rem;
    line-height: 100%;
    margin-top: 3rem;
  }
}
.real-problems .column-right .box .sub-para {
  font-size: 1.6rem;
  font-weight: 400;
  color: #4A5A68;
  line-height: 2.4rem;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .real-problems .column-right .box .sub-para {
    font-size: 1.4rem;
    line-height: 21px;
    margin: 0;
  }
}
.real-problems .column-right .box-cube {
  height: 29.2rem;
}
@media only screen and (max-width: 767px) {
  .real-problems .column-right .box-cube {
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .real-problems .column-right .box-cube {
    height: auto;
  }
}
.real-problems .column-right .box-cube .cube-icon {
  top: 2rem;
  right: 2rem;
  width: 8rem;
  height: 8rem;
}
@media only screen and (max-width: 767px) {
  .real-problems .column-right .box-cube .cube-icon {
    width: 5.8rem;
    height: 6.1rem;
  }
}
.real-problems .column-right .box-cube .box-content {
  margin-top: -1.2rem;
  text-align: left;
}
.real-problems .column-right .box-bulb {
  height: 29.2rem;
}
@media only screen and (max-width: 767px) {
  .real-problems .column-right .box-bulb {
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .real-problems .column-right .box-bulb {
    height: auto;
  }
}
.real-problems .column-right .box-bulb .horizontal-wrapper {
  gap: 2rem;
}
.real-problems .column-right .box-bulb .horizontal-wrapper .bulb-icon {
  width: 8rem;
  height: 8rem;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .real-problems .column-right .box-bulb .horizontal-wrapper .bulb-icon {
    width: 4.4rem;
    height: 6.4rem;
  }
}
.real-problems .column-right .box-bulb .horizontal-wrapper .box-content {
  text-align: left;
  margin-top: -2rem;
}

.how-works {
  padding: 2rem 2rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .how-works {
    padding: 0;
  }
}
.how-works .bg-sec {
  background: #F8DEB0;
  height: 47rem;
  padding: 2rem;
  border-radius: 3rem;
}
@media only screen and (max-width: 767px) {
  .how-works .bg-sec {
    width: 100%;
    height: auto;
  }
}
.how-works .bg-sec .works-head {
  text-align: center;
}
.how-works .bg-sec .works-head .sub-head {
  margin: 0;
  letter-spacing: -1px;
}
.how-works .bg-sec .works-head .sub-head .highlight {
  font-family: "quinn-text", serif;
  font-weight: 400;
  font-style: italic;
  color: #223C4E;
}
@media only screen and (max-width: 767px) {
  .how-works .bg-sec .works-head .sub-head .highlight {
    font-size: 2.6rem;
  }
}
.how-works .bg-sec .steps-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  margin-top: 7rem;
}
@media only screen and (max-width: 767px) {
  .how-works .bg-sec .steps-row {
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .how-works .bg-sec .steps-row {
    width: 100%;
    height: auto;
  }
}
.how-works .bg-sec .steps-row .step {
  text-align: center;
  flex: 1;
}
.how-works .bg-sec .steps-row .step .step-number {
  font-size: 7.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 8rem;
  background: linear-gradient(-77deg, #96b9d2, #1d2830);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media only screen and (max-width: 767px) {
  .how-works .bg-sec .steps-row .step .step-number {
    font-size: 3rem;
    line-height: 50.19px;
  }
}
.how-works .bg-sec .steps-row .step .step-title {
  font-size: 3.8rem;
  font-weight: 500;
  margin: 0;
  line-height: 4.2rem;
  letter-spacing: -1px;
  color: #223C4E;
}
.how-works .bg-sec .steps-row .step .step-title br {
  display: none;
}
@media only screen and (max-width: 767px) {
  .how-works .bg-sec .steps-row .step .step-title {
    font-size: 2rem;
    line-height: 26.35px;
    margin-top: -1rem;
  }
  .how-works .bg-sec .steps-row .step .step-title br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .how-works .bg-sec .steps-row .step .step-title br {
    display: initial;
  }
}

.ai-section {
  padding: 5rem 15rem;
  margin-top: 5rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ai-section {
    padding: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-section {
    padding: 2rem;
    margin-top: 2rem;
  }
}
.ai-section .ai-header {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .ai-section .ai-header {
    margin-top: 2rem;
  }
}
.ai-section .ai-header .sub-head {
  text-align: left;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .ai-section .ai-header .sub-head {
    text-align: center;
    letter-spacing: -1px;
  }
}
.ai-section .ai-header .sub-head .highlight {
  font-family: "quinn-text", serif;
  font-weight: 400;
  font-style: italic;
  color: #223C4E;
}
@media only screen and (max-width: 767px) {
  .ai-section .ai-header .sub-head .highlight {
    font-size: 2.6rem;
  }
}
.ai-section .ai-header .sub-para {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .ai-section .ai-header .sub-para {
    text-align: center;
  }
}
.ai-section .ai-header .ai-tabs {
  display: flex;
  justify-content: left;
  gap: 3.2rem;
  list-style: none;
  padding: 0;
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .ai-section .ai-header .ai-tabs {
    display: none;
  }
}
.ai-section .ai-header .ai-tabs .tab {
  cursor: pointer;
  padding: -1rem 1rem;
  font-weight: 400;
  font-size: 1.8rem;
  position: relative;
  color: #223C4E;
}
@media only screen and (max-width: 767px) {
  .ai-section .ai-header .ai-tabs .tab {
    font-size: 1.4rem;
  }
}
.ai-section .ai-header .ai-tabs .tab.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #223C4E;
}
.ai-section .ai-content .tab-panel {
  display: none;
}
.ai-section .ai-content .tab-panel.active {
  display: block;
}
@media only screen and (max-width: 767px) {
  .ai-section .ai-content .tab-panel {
    display: block;
  }
}
.ai-section .ai-content .ai-box {
  background: #f6f6f6;
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  border-radius: 2rem;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  height: 55rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ai-section .ai-content .ai-box {
    flex-wrap: unset;
  }
}
@media only screen and (max-width: 767px) {
  .ai-section .ai-content .ai-box {
    flex-direction: column-reverse;
    gap: 0;
    padding: 1rem;
    height: auto;
    margin-bottom: 3rem;
  }
}
.ai-section .ai-content .ai-box .right {
  width: 50rem;
  height: 58rem;
}
@media only screen and (max-width: 767px) {
  .ai-section .ai-content .ai-box .right {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-section .ai-content .ai-box .right .tab-img {
    width: 100%;
    height: auto;
  }
}
.ai-section .ai-content .ai-box .left .sub-text {
  font-size: 1.6rem;
  color: #223C4E;
  font-weight: 400;
  line-height: 2.4rem;
  margin-bottom: 1.3rem;
}
@media only screen and (max-width: 767px) {
  .ai-section .ai-content .ai-box .left .sub-text {
    margin-top: 0;
  }
}
.ai-section .ai-content .ai-box .left .head-box {
  font-size: 3.6rem;
  margin-top: 1.3rem;
  margin-bottom: 4rem;
  font-weight: 500;
  line-height: 4.6rem;
  letter-spacing: -1px;
  color: #223C4E;
}
@media only screen and (max-width: 767px) {
  .ai-section .ai-content .ai-box .left .head-box {
    font-size: 2rem;
    line-height: 46px;
    letter-spacing: -1px;
    margin-bottom: 2rem;
  }
}
.ai-section .ai-content .ai-box .left .feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.ai-section .ai-content .ai-box .left .feature .feature-point {
  margin-top: 0.5rem;
}
.ai-section .ai-content .ai-box .left .feature .feature-point .org {
  width: 2rem;
  height: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .ai-section .ai-content .ai-box .left .feature .feature-point .org {
    height: 2rem;
  }
}
.ai-section .ai-content .ai-box .left .feature .icon-img {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .ai-section .ai-content .ai-box .left .feature .icon-img {
    width: 2rem;
    height: 2rem;
    margin-top: -1rem;
  }
}
.ai-section .ai-content .ai-box .left .feature .tab-head {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 3.2rem;
  letter-spacing: -1px;
  margin: 0;
  color: #223C4E;
}
@media only screen and (max-width: 767px) {
  .ai-section .ai-content .ai-box .left .feature .tab-head {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 100%;
  }
}
.ai-section .ai-content .ai-box .left .feature .tab-para {
  font-size: 1.6rem;
  color: #4A5A68;
  font-weight: 400;
  line-height: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .ai-section .ai-content .ai-box .left .feature .tab-para {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
  .ai-section .ai-content .ai-box .left .feature .tab-para br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .ai-section .ai-content .mg-t-1 {
    margin-top: -1rem;
  }
}

.blog-sec {
  padding: 3rem 0;
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .blog-sec {
    padding: 1rem 0;
    margin-top: -2rem;
  }
}
.blog-sec .blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
  .blog-sec .blog-header {
    gap: 2rem;
    justify-content: center;
    margin-bottom: 0;
  }
}
.blog-sec .blog-header .sub-head {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .blog-sec .blog-header .sub-head {
    font-size: 2.4rem;
    letter-spacing: -1px;
    text-align: center;
  }
}
.blog-sec .blog-header .sub-head .highlight {
  font-family: "quinn-text", serif;
  font-weight: 400;
  font-style: italic;
  color: #223C4E;
}
@media only screen and (max-width: 767px) {
  .blog-sec .blog-header .sub-head .highlight {
    font-size: 2.6rem;
  }
}
.blog-sec .blog-header .btn-contact {
  display: none;
}
.blog-sec .blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3rem;
  justify-items: flex-start;
  text-align: left;
  margin-top: 6rem;
  gap: 3rem;
}
@media only screen and (max-width: 767px) {
  .blog-sec .blog-cards {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-sec .blog-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.blog-sec .blog-cards .blog-card {
  width: 40.8rem;
  height: 51.8rem;
  background: #f6f6f6;
  border-radius: 2rem;
  padding: 2rem;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .blog-sec .blog-cards .blog-card {
    width: 100%;
    height: auto;
    padding: 1rem;
  }
}
.blog-sec .blog-cards .blog-card .blog-img {
  width: 36rem;
  height: 25.3rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .blog-sec .blog-cards .blog-card .blog-img {
    width: 100%;
    height: auto;
  }
}
.blog-sec .blog-cards .blog-card .blog-head {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  letter-spacing: -0.9px;
  color: #223C4E;
}
@media only screen and (max-width: 767px) {
  .blog-sec .blog-cards .blog-card .blog-head {
    margin: 0;
    font-size: 1.8rem;
    line-height: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .mg-t-2 {
    margin-top: 2rem;
  }
}
.contact-main {
  padding: 2rem 2rem;
}
@media only screen and (max-width: 767px) {
  .contact-main {
    padding: 0;
  }
}
.contact-main .contact-section {
  margin-top: 12rem;
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
@media only screen and (max-width: 767px) {
  .contact-main .contact-section {
    flex-direction: column;
    margin-top: 5rem;
  }
}
.contact-main .contact-section .sect-left .main-head {
  line-height: 94px;
}
.contact-main .contact-section .sect-left .main-head .highlight {
  font-family: "quinn-text", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 7.4rem;
  color: #223C4E;
}
@media only screen and (max-width: 767px) {
  .contact-main .contact-section .sect-left .main-head .highlight {
    font-size: 4.4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-main .contact-section .sect-left .main-head .highlight {
    font-size: 5.4rem;
  }
}
.contact-main .contact-section .sect-left .sub-para {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .contact-main .contact-section .sect-left .sub-para br {
    display: none;
  }
}
@media (min-width: 993px) {
  .contact-main .contact-section .sect-left {
    flex: 1;
    position: sticky;
    top: 8rem;
    align-self: flex-start;
  }
}
.contact-main .contact-section .sect-right {
  background: #f6f6f6;
  padding: 3rem 5rem;
  border-radius: 1.2rem;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .contact-main .contact-section .sect-right {
    padding: 2rem;
  }
}
.contact-main .contact-section .sect-right .contact-form .row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .contact-main .contact-section .sect-right .contact-form .row {
    flex-direction: column;
  }
}
.contact-main .contact-section .sect-right .contact-form .row.single {
  flex-direction: column;
}
.contact-main .contact-section .sect-right .contact-form .row .input-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-main .contact-section .sect-right .contact-form .row .input-field label {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.contact-main .contact-section .sect-right .contact-form .row .input-field label span {
  color: #223C4E;
}
.contact-main .contact-section .sect-right .contact-form .row .input-field input,
.contact-main .contact-section .sect-right .contact-form .row .input-field select,
.contact-main .contact-section .sect-right .contact-form .row .input-field textarea {
  padding: 1.2rem 1.6rem;
  font-size: 1.4rem;
  border: 1px solid #ccc;
  border-radius: 0.6rem;
  outline: none;
}
.contact-main .contact-section .sect-right .contact-form .row .input-field select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact-main .contact-section .sect-right .contact-form .row .input-field textarea {
  min-height: 12rem;
  resize: none;
}

.main-sec-solution {
  padding: 5rem 0;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .main-sec-solution {
    padding: 2rem 0;
    margin-bottom: 0;
  }
}
.main-sec-solution .solution-sec {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .main-sec-solution .solution-sec {
    display: grid;
  }
}
@media only screen and (max-width: 767px) {
  .main-sec-solution .solution-sec .main-head {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main-sec-solution .solution-sec .main-head br {
    display: none;
  }
}
.main-sec-solution .solution-sec .main-head .highlight {
  font-family: "quinn-text", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 7.4rem;
  color: #223C4E;
}
@media only screen and (max-width: 767px) {
  .main-sec-solution .solution-sec .main-head .highlight {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main-sec-solution .solution-sec .main-head .highlight {
    font-size: 5.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .main-sec-solution .solution-sec .sub-para {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .main-sec-solution .solution-sec .cta-buttons {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .main-sec-solution .solution-sec .right-sec {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.zeyrax-stand {
  padding: 4rem 0;
  margin-top: -7rem;
}
@media only screen and (max-width: 767px) {
  .zeyrax-stand {
    padding: 2rem 0;
    margin-top: -7rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .zeyrax-stand {
    margin-top: -9rem;
  }
}
.zeyrax-stand .sub-head {
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .zeyrax-stand .sub-head {
    font-size: 2.4rem;
  }
}
.zeyrax-stand .sub-head .highlight {
  font-family: "quinn-text", serif;
  font-weight: 400;
  font-style: italic;
  color: #223C4E;
}
@media only screen and (max-width: 767px) {
  .zeyrax-stand .sub-head .highlight {
    font-size: 2.6rem;
  }
}
.zeyrax-stand .sub-para {
  text-align: center;
  margin-top: -2rem;
}
@media only screen and (max-width: 767px) {
  .zeyrax-stand .sub-para {
    margin-bottom: 2rem;
  }
}
.zeyrax-stand .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 9rem;
  margin-top: 7rem;
}
@media only screen and (max-width: 767px) {
  .zeyrax-stand .card-grid {
    margin-top: 2rem;
    gap: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .zeyrax-stand .card-grid {
    gap: 5rem;
    margin-top: 5rem;
  }
}
.zeyrax-stand .flip-card {
  position: relative;
  width: 100%;
  height: 44rem;
  overflow: hidden;
  border-radius: 1.2rem;
  cursor: pointer;
  perspective: 1200px;
}
@media only screen and (max-width: 767px) {
  .zeyrax-stand .flip-card {
    height: 23rem;
  }
}
.zeyrax-stand .flip-card .card-face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  transition: transform 0.5s ease-in-out;
  -webkit-transition: transform 0.5s ease-in-out;
  -moz-transition: transform 0.5s ease-in-out;
  -ms-transition: transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 1.2rem;
  backface-visibility: hidden;
}
.zeyrax-stand .flip-card .card-ash {
  background-color: #F8F6F2;
  z-index: 2;
  transform: translateY(0%);
  justify-content: space-between;
  gap: 5rem;
}
@media only screen and (max-width: 767px) {
  .zeyrax-stand .flip-card .card-ash {
    justify-content: space-around;
    gap: 0;
    height: 23rem;
  }
}
.zeyrax-stand .flip-card .card-yellow {
  background-color: #F8DEB0;
  z-index: 1;
  transform: translateY(-100%);
}
.zeyrax-stand .flip-card .card-yellow .grid-img {
  width: 4.8rem;
  height: 6rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .zeyrax-stand .flip-card .card-yellow .grid-img {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.zeyrax-stand .flip-card .card-yellow .five-img {
  width: 6.8rem;
  height: 7rem;
}
@media only screen and (max-width: 767px) {
  .zeyrax-stand .flip-card .card-yellow .five-img {
    width: 3rem;
  }
}
.zeyrax-stand .flip-card .card-yellow .grid-head {
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 0.8rem;
  color: #223C4E;
}
@media only screen and (max-width: 767px) {
  .zeyrax-stand .flip-card .card-yellow .grid-head {
    font-size: 2rem;
    margin: 0;
    line-height: 26px;
  }
}
.zeyrax-stand .flip-card .card-yellow .grid-head .highlight {
  font-family: "quinn-text", serif;
  font-weight: 400;
  font-style: italic;
  color: #223C4E;
  font-size: 3.6rem;
}
@media only screen and (max-width: 767px) {
  .zeyrax-stand .flip-card .card-yellow .grid-head .highlight {
    font-size: 2.2rem;
  }
}
.zeyrax-stand .flip-card .card-yellow .grid-para {
  font-size: 1.6rem;
  font-weight: 400;
  color: #223C4E;
}
@media only screen and (max-width: 767px) {
  .zeyrax-stand .flip-card .card-yellow .grid-para {
    font-size: 1.4rem;
  }
}
.zeyrax-stand .flip-card.flipped .card-ash {
  transform: translateY(100%);
  z-index: 1;
}
.zeyrax-stand .flip-card.flipped .card-yellow {
  transform: translateY(0%);
  z-index: 2;
}
.zeyrax-stand .flip-card .grid-head .number-list {
  font-size: 4rem;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .zeyrax-stand .flip-card .grid-head .number-list {
    margin: 0;
    font-size: 2.4rem;
    line-height: 22.45px;
  }
}
.zeyrax-stand .flip-card .grid-details .grid-head {
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 0.8rem;
  color: #223C4E;
}
@media only screen and (max-width: 767px) {
  .zeyrax-stand .flip-card .grid-details .grid-head {
    font-size: 2rem;
    line-height: 22.45px;
  }
}
.zeyrax-stand .flip-card .grid-details .grid-head .highlight {
  font-family: "quinn-text", serif;
  font-weight: 400;
  font-style: italic;
  color: #223C4E;
  font-size: 3.6rem;
}
@media only screen and (max-width: 767px) {
  .zeyrax-stand .flip-card .grid-details .grid-head .highlight {
    font-size: 2.2rem;
  }
}
.zeyrax-stand .flip-card .grid-details .grid-para {
  font-size: 1.6rem;
  font-weight: 400;
  color: #223C4E;
}
@media only screen and (max-width: 767px) {
  .zeyrax-stand .flip-card .grid-details .grid-para {
    font-size: 1.4rem;
  }
}

.ask-question {
  padding: 6rem 0;
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .ask-question {
    padding: 1rem;
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .ask-question {
    padding: 2rem 0;
  }
}
.ask-question .ask-sec {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}
@media only screen and (max-width: 767px) {
  .ask-question .ask-sec {
    display: grid;
    padding: 0;
    gap: 0;
  }
}
.ask-question .left-sec {
  flex: 1;
}
.ask-question .left-sec .sub-head {
  letter-spacing: -1px;
  line-height: 60px;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .ask-question .left-sec .sub-head {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .ask-question .left-sec .sub-head br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ask-question .left-sec .sub-head br {
    display: none;
  }
}
.ask-question .right-sec {
  flex: 1;
}
.ask-question .right-sec .faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .ask-question .right-sec .faq-list {
    margin-top: 1rem;
  }
}
.ask-question .right-sec .faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f6f6f6;
  padding: 1.8rem 2.4rem;
  border-radius: 5rem;
  font-size: 1.6rem;
  color: #223C4E;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  width: 60rem;
  height: 8rem;
}
@media only screen and (max-width: 767px) {
  .ask-question .right-sec .faq-item {
    width: 100%;
    height: 6rem;
    font-size: 1.2rem;
    padding: 1rem 2rem;
  }
}
.ask-question .right-sec .faq-item .faq-icon .add {
  width: 4.8rem;
  height: 4.8rem;
}
@media only screen and (max-width: 767px) {
  .ask-question .right-sec .faq-item .faq-icon .add {
    width: 3rem;
    height: 3rem;
  }
}

.footer-main {
  position: relative;
  padding: 2rem;
  background-color: #F8DEB0;
}
@media only screen and (max-width: 767px) {
  .footer-main {
    padding: 0;
  }
}
.footer-main .footer-bg-line-shared {
  position: absolute;
  top: -4rem;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .footer-main .footer-bg-line-shared {
    display: none;
  }
}
.footer-main .footer-top {
  position: relative;
  padding-top: 4rem;
}
.footer-main .footer-top .footer-sec,
.footer-main .footer-top .footer-links,
.footer-main .footer-top .footer-branding,
.footer-main .footer-top .footer-text,
.footer-main .footer-top .cta-buttons {
  position: relative;
  z-index: 1;
}
.footer-main .footer-top .footer-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
@media only screen and (max-width: 767px) {
  .footer-main .footer-top .footer-sec {
    display: grid;
  }
}
.footer-main .footer-top .footer-sec .cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.3rem;
}
@media only screen and (max-width: 767px) {
  .footer-main .footer-top .footer-sec .cta-buttons {
    margin-top: -2rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}
.footer-main .footer-top .footer-sec .cta-buttons .btn-outline {
  display: grid;
}
@media only screen and (max-width: 767px) {
  .footer-main .footer-top .footer-sec .cta-buttons .btn-contact {
    margin-bottom: 0;
  }
}
.footer-main .footer-top .footer-sec .footer-text .sub-head-footer {
  font-size: 5.7rem;
  font-weight: 500;
  letter-spacing: -2px;
  color: #223C4E;
}
@media only screen and (max-width: 767px) {
  .footer-main .footer-top .footer-sec .footer-text .sub-head-footer {
    font-size: 2rem;
    margin-bottom: 0;
    line-height: 100%;
    letter-spacing: -1px;
    font-weight: 500;
  }
  .footer-main .footer-top .footer-sec .footer-text .sub-head-footer br {
    display: none;
  }
}
.footer-main .footer-top .footer-sec .footer-text .sub-para {
  text-align: left;
}
.footer-main .footer-top .footer-sec .footer-text .footer-buttons {
  display: flex;
  gap: 2rem;
}
.footer-main .footer-top .footer-links {
  display: flex;
  gap: 6rem;
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .footer-main .footer-top .footer-links {
    display: grid;
    gap: 0;
  }
}
.footer-main .footer-top .footer-links .link-group li {
  margin-bottom: 0.8rem;
}
.footer-main .footer-top .footer-links .link-group li a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  color: #4A5A68;
}
@media only screen and (max-width: 767px) {
  .footer-main .footer-top .footer-links .link-group li a {
    font-size: 1.4rem;
  }
}
.footer-main .footer-top .footer-links .link-group li a:hover {
  text-decoration: underline;
}
.footer-main .footer-top .footer-links .footer-branding {
  flex: 1 1 20rem;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .footer-main .footer-top .footer-links .footer-branding {
    align-items: flex-start;
    margin-top: 2rem;
  }
}
.footer-main .footer-top .footer-links .footer-branding .footer-logo {
  width: 20rem;
  height: 4.5rem;
}
@media only screen and (max-width: 767px) {
  .footer-main .footer-top .footer-links .footer-branding .footer-logo {
    width: 13rem;
    height: 3rem;
  }
}
.footer-main .footer-top .footer-links .footer-branding .social-icons {
  display: flex;
  gap: 1.5rem;
}
.footer-main .footer-top .footer-links .footer-branding .social-icons img {
  width: 2.4rem;
  height: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .footer-main .footer-top .footer-links .footer-branding .social-icons img {
    width: 100%;
    height: auto;
  }
}
.footer-main .footer-border {
  border-bottom: 1px solid #223C4E;
  margin-top: 3.5rem;
}
.footer-main .footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-main .footer-bottom .footer-links-inline {
  display: flex;
  gap: 2rem;
}
.footer-main .footer-bottom .footer-links-inline a {
  font-size: 1.3rem;
  color: #223C4E;
  text-decoration: none;
}
.footer-main .footer-bottom .footer-links-inline a:hover {
  text-decoration: underline;
}
.footer-main .footer-bottom p {
  font-size: 1.3rem;
  color: #223C4E;
  margin: 1rem 0 0;
}/*# sourceMappingURL=style.css.map */