body {
  font-family: "Lato", sans-serif;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #fbb32a;
}
a.active {
  color: #fbb32a;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.list-style {
  list-style: disc;
  padding-left: 40px;
}

ol.list-style {
  list-style: decimal;
  padding-left: 40px;
}

.pointer {
  cursor: pointer;
}

a.btn,
.btn,
input.btn,
button {
  color: inherit;
  padding: 10px 30px;
  font-weight: 500;
  border: none;
  border-radius: 100px;
  width: max-content;
  transition: 0.3s all;
  -ms-transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
a.btn:hover,
.btn:hover,
input.btn:hover,
button:hover {
  color: #ffffff;
}
a.btn:focus,
.btn:focus,
input.btn:focus,
button:focus {
  outline: 0;
  box-shadow: 0 0 0;
}
a.btn--white-outline,
.btn--white-outline,
input.btn--white-outline,
button--white-outline {
  background: transparent;
  border: 1px solid #ffffff;
}
a.btn--white-outline:hover,
.btn--white-outline:hover,
input.btn--white-outline:hover,
button--white-outline:hover {
  background: #fbb32a;
}
a.btn--primary,
.btn--primary,
input.btn--primary,
button--primary {
  background: #fbb32a;
  border: 1px solid #fbb32a;
}
a.btn--primary:hover,
.btn--primary:hover,
input.btn--primary:hover,
button--primary:hover {
  background: #f1ad2a;
}
a.btn--white,
.btn--white,
input.btn--white,
button--white {
  background: #ffffff;
  border: 1px solid #ffffff;
}
a.btn--white:hover,
.btn--white:hover,
input.btn--white:hover,
button--white:hover {
  background: #fbb32a;
}
a.btn--transparent,
.btn--transparent,
input.btn--transparent,
button--transparent {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid transparent;
}
a.btn--transparent:hover,
.btn--transparent:hover,
input.btn--transparent:hover,
button--transparent:hover {
  background: #ffffff;
  color: #000000;
}

input.form-control,
select.form-control,
textarea.form-control {
  border-radius: 8px;
  padding: 12px 15px;
}
input.form-control:focus,
select.form-control:focus,
textarea.form-control:focus {
  outline: 0;
  box-shadow: none;
}
input:focus,
select:focus,
textarea:focus {
  outline: 0;
  box-shadow: none;
}

::-webkit-file-upload-button {
  cursor: pointer;
}

.btn:active:focus {
  box-shadow: none;
}

.container {
  max-width: 1240px;
}

.recent-blog .recent-content h2.yellowText {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 1400px) {
  .container {
    max-width: 80%;
  }
}

.mb-300 {
  margin-bottom: -300px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.py-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-150 {
  padding-top: 150px;
}

.secondaryBtn {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.36);
  color: #fff;
  border: 0;
  outline: 0;
  padding: 10px 20px;
  border-radius: 14px;
  font-weight: medium;
  font-size: 22px;
  line-height: 1.7;
  border: 1px solid #fbb32a;
  transition: all 0.3s;
}
.secondaryBtn:hover {
  background: linear-gradient(to right, rgb(251, 179, 42) 0%, rgb(233, 68, 71) 100%);
  color: #fff;
  transition: all 0.3s;
}
.secondaryBtn.revert {
  background: linear-gradient(to right, rgb(251, 179, 42) 0%, rgb(233, 68, 71) 100%);
  color: #fff;
  transition: all 0.3s;
  border: 0;
}
.secondaryBtn.btnBlue {
  width: auto;
  margin-top: 30px;
  border: 1px solid rgb(54, 153, 232);
}
.secondaryBtn.btnBlue:hover {
  display: inline-flex;
  background: linear-gradient(to right, rgb(46, 176, 168) 0%, rgb(54, 153, 232) 100%);
}

.primaryBtn,
.interactive-button {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid #fbb32a;
  color: #fff;
  outline: 0;
  padding: 10px 20px;
  border-radius: 14px;
  font-weight: medium;
  font-size: 22px;
  line-height: 1.7;
  align-items: center;
  gap: 10px;
  position: relative;
  transition: all 0.3s;
}
.primaryBtn:hover,
.interactive-button:hover {
  color: #fff;
  background: linear-gradient(to right, rgb(251, 179, 42) 0%, rgb(233, 68, 71) 100%);
}
.primaryBtn.btnBlue,
.interactive-button.btnBlue {
  width: auto;
  display: inline-flex;
  margin-top: 30px;
  border: 1px solid rgb(54, 153, 232);
}
.primaryBtn.btnBlue:hover,
.interactive-button.btnBlue:hover {
  background: linear-gradient(to right, rgb(46, 176, 168) 0%, rgb(54, 153, 232) 100%);
}

.figureBtn {
  position: absolute;
  bottom: 45px;
  left: 100px;
  width: auto;
  text-align: center;
  justify-content: center;
  font-weight: bold;
  padding: 7px 30px;
  border-radius: 8px;
}
.figureBtn.primaryBtn {
  background: linear-gradient(to right, rgb(251, 179, 42) 0%, rgb(233, 68, 71) 100%);
}

.primaryBtn2,
.interactive-button {
  background: linear-gradient(to right, rgb(251, 179, 42) 0%, rgb(233, 68, 71) 100%);
}

.rounded-lg {
  border-radius: 1.2vw;
  overflow: hidden;
}

#banner-carousel .primaryBtn {
  font-size: 1vw;
}

.gap-2x {
  display: flex;
  gap: 15px;
}

.divContain {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.divContain p {
  font-size: 1.1vw;
  margin: 0;
}

.appPerformance {
  position: relative;
  border-radius: 2vw;
}
.appPerformance > img {
  background: #f0f3f5;
  border-radius: 1.5vw;
}
.appPerformance::after {
  content: "";
  position: absolute;
  right: -120px;
  display: inline-flex;
  width: 15vw;
  height: 15vw;
  background: url(https://3426102.fs1.hubspotusercontent-na1.net/hubfs/3426102/raw_assets/public/AFFLE_LATEST/NewtonAI/images/opticks/rounded_circle.svg) no-repeat center center/cover;
  bottom: auto;
  top: 0;
  right: -120px;
}
.appPerformance img {
  width: 100%;
  z-index: 1;
  position: relative;
}

.circleRound {
  position: relative;
}
.circleRound:after, .circleRound:after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: 20px;
  display: inline-flex;
  width: 15vw;
  height: 15vw;
  background: url(https://3426102.fs1.hubspotusercontent-na1.net/hubfs/3426102/raw_assets/public/AFFLE_LATEST/NewtonAI/images/opticks/rounded_circle.svg) no-repeat center center/cover;
}

.btn-with-icon {
  display: flex;
  gap: 15px;
  position: relative;
  padding-right: 60px !important;
  transition: 0.3s all;
  -ms-transition: 0.3s all;
  -webkit-transition: 0.3s all;
  color: #fff;
}
.btn-with-icon img {
  min-width: 32px;
  width: 32px !important;
  object-fit: contain;
  position: absolute;
  background: #000;
  padding: 5px;
  border-radius: 50%;
  top: 9px;
  right: 7px;
  transition: 0.3s all;
  -ms-transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.btn-with-icon:hover img {
  transform: translateX(5px);
}

.common-btn .btn-with-icon img {
  top: 7px;
}

.section-title {
  position: relative;
}
.section-title .title {
  color: #ffffff;
  font-size: 54px;
  font-weight: bold;
}
.section-title .title.sm {
  font-size: 40px;
}

.header-section {
  position: absolute;
  top: 0;
  width: 100%;
  padding-top: 50px;
  z-index: 9999;
}
.header-section .logo-box {
  max-width: 160px;
}
.header-section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 9;
}
.header-section .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.header-section .menu .menu-item {
  position: relative;
  padding: 10px 0;
}
.header-section .menu .menu-item a {
  text-transform: capitalize;
  font-weight: 400;
  color: #ffffff;
  font-size: 15px;
  transition: 0.3s all;
  -ms-transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.header-section .menu .menu-item a:hover {
  color: #fbb32a;
}
.header-section .menu .menu-item a.btn:hover {
  color: #000000;
}
.header-section .menu .menu-item.cta-btn a {
  margin-left: 15px;
}
.header-section .menu .menu-item.cta-btn a:first-child {
  margin-left: 0;
}
.header-section .menu .menu-item.active a {
  font-weight: 700;
}
.header-section .menu .menu-item.active a.btn {
  color: #ffffff;
  font-weight: 400;
}
.header-section .menu .menu-item.active .sub-menu .menu-item a {
  font-weight: 400;
}
.header-section .menu .menu-item.active .sub-menu .menu-item.active a {
  color: #ffffff;
}
.header-section .menu .menu-item.has-child:hover .sub-menu,
.header-section .menu .menu-item .show .sub-menu {
  display: block;
}
.header-section .menu ul.sub-menu {
  display: none;
  list-style: none;
  padding: 0px 0 0;
  position: absolute;
  top: 40px;
  min-width: 200px;
  z-index: 999;
  left: 0;
  border-radius: 10px;
  overflow: hidden;
}
.header-section .menu ul.sub-menu .menu-item {
  background: #000;
  padding: 0px 0;
  border-bottom: 1px solid #6b6b6b;
}
.header-section .menu ul.sub-menu .menu-item:last-child {
  border: none;
}
.header-section .menu ul.sub-menu .menu-item a {
  padding: 15px 20px;
  display: block;
  color: #fff;
}
.header-section .menu ul.sub-menu .menu-item:hover {
  background: #202020;
}
.header-section .menu ul.sub-menu .menu-item:hover a {
  color: #fbb32a;
}
.header-section .menu ul.sub-menu .menu-item.active:hover a {
  color: #ffffff !important;
}
.header-section .menu-icon,
.header-section .close-menu-icon {
  display: none;
}

.menu-show {
  position: relative;
  overflow: hidden;
}
.menu-show:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 999;
}
.menu-show .header-section .menu-icon {
  display: none;
}
.menu-show .header-section .close-menu-icon {
  display: block;
  position: relative;
  z-index: 999;
  top: -10px;
  right: 15px;
}
.menu-show .header-section .menu {
  display: block;
  position: fixed;
  right: 0;
  top: 0;
  width: 350px;
  height: 100vh;
  background: #ffffff;
  z-index: 99;
  opacity: 1;
  transition: 0.5s all;
  -ms-transition: 0.5s all;
  -webkit-transition: 0.5s all;
  padding: 60px 40px;
}
.menu-show .header-section .menu .menu-item {
  margin-bottom: 15px;
}
.menu-show .header-section .menu .menu-item:last-child {
  margin-bottom: 0;
}
.menu-show .header-section .menu .menu-item a {
  font-size: 22px;
  color: #000000;
}
.menu-show .header-section .menu .menu-item a.btn--gradient {
  background: transparent;
}
.menu-show .header-section .menu .menu-item.active > a {
  color: #fbb32a;
}

.banner-section {
  height: 100%;
  position: relative;
  width: 100%;
}
.banner-section.blogBanner {
  height: 100vh;
}
.banner-section.blogBanner .bg-overlay {
  background: linear-gradient(45deg, #140069, #140069 41%, #4d0936 98%);
}
.banner-section.sucsStory {
  height: 100vh;
}
.banner-section.sucsStory.careersPage {
  height: 35vw;
  min-height: 0;
}
.banner-section.sucsStory .bg-overlay {
  background: linear-gradient(45deg, #140069, #140069 41%, #140069 61%, #ff009d 98%);
}
.banner-section.sucsStory h1.title,
.banner-section.sucsStory .yellowText {
  font-size: 2.8vw;
}
.banner-section.sucsStory p {
  color: #ffffff;
  font-size: 1.4vw;
}
.banner-section.opticks-ai-banner {
  min-height: 100vh;
}
.banner-section .bg-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
.banner-section .image-background {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -100;
}
.banner-section .full_image_bg {
  height: auto;
  height: 100%;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  object-position: top;
  position: absolute;
  background: linear-gradient(45deg, rgb(20, 0, 105) 0%, rgb(20, 0, 105) 41%, rgb(223, 0, 150) 98%);
  width: auto;
}
.banner-section .full_image_bg img {
  transform: scaleX(-1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.banner-section .bannerImgSec {
  display: flex;
  align-content: center;
}
.banner-section .bannerImgSec img.objectContain {
  object-fit: contain;
  max-height: 65vh;
}
.banner-section .screenpusher {
  height: 100vh;
}
.banner-section .herotile_animatedBg {
  bottom: 0;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}
.banner-section .herotile_animatedBg:after {
  -webkit-backdrop-filter: blur(150px);
  backdrop-filter: blur(150px);
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
}
.banner-section .herotile_animationBgWrapper {
  animation: herotile_move 34s ease-in-out -10s infinite;
  bottom: 0;
  height: 42%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.banner-section .herotile_animationBgWrapper div {
  border-radius: 50%;
  position: absolute;
  opacity: 0.7;
}
.banner-section .herotile_animationBgWrapper div:first-child {
  background: #1476fc;
  height: 377px;
  right: 9%;
  top: -8%;
  width: 430px;
}
.banner-section .herotile_animationBgWrapper div:nth-child(2) {
  background: #222268;
  height: 517px;
  left: 15%;
  top: -10%;
  width: 547px;
}
.banner-section .herotile_animationBgWrapper div:nth-child(3) {
  background: #ff0047;
  bottom: 0;
  height: 200px;
  right: -35%;
  width: 206px;
}
.banner-section .herotile_animationBgWrapper div:nth-child(4) {
  background: #a52987;
  bottom: 0;
  height: 159px;
  left: 35%;
  width: 160px;
}
.banner-section .herotile_animationBgWrapper div:nth-child(4) {
  background: #a52987;
  bottom: 0;
  height: 159px;
  left: 0;
  width: 160px;
}
.banner-section .herotile_animationBgWrapper div:nth-child(6) {
  background: #1476fc;
  height: 204px;
  left: 0;
  top: 75%;
  width: 257px;
}
.banner-section .herotile_animationBgWrapper div:nth-child(7) {
  background: #ff0047;
  height: 152px;
  right: 0;
  top: -10%;
  width: 159px;
}
.banner-section .spiral-bg-icon {
  position: absolute;
  z-index: 99;
  top: -50px;
  right: 50px;
  transform: scale(0.75);
  opacity: 0.9;
}
.banner-section .spiral-bg-icon img {
  animation: am-zoom-in-zoom-out 20s ease-out infinite;
}
.banner-section .banner-section-inner {
  position: relative;
  z-index: 999;
  padding-top: 150px;
  min-height: 0;
}
.banner-section .banner-section-inner .bg-image .pattern {
  opacity: 0.1;
}
.banner-section .banner-section-inner .banner-content {
  position: absolute;
  top: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  width: 100%;
  height: 100%;
}
.banner-section .banner-section-inner .banner-content .content-area {
  width: calc(45% - 25px);
  padding: 120px 40px 0;
  color: #ffffff;
}
.banner-section .banner-section-inner .banner-content .content-area .title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
}
.banner-section .banner-section-inner .banner-content .content-area .title span {
  color: #fbb32a;
}
.banner-section .banner-section-inner .banner-content .content-area p {
  font-size: 24px;
}
.banner-section .banner-section-inner .banner-content .content-area .cta {
  margin-top: 110px;
  display: flex;
}
.banner-section .banner-section-inner .banner-content .content-area .cta a {
  margin-right: 15px;
  padding: 12px 20px;
}
.banner-section .banner-section-inner .banner-content .content-area .cta a:last-child {
  margin-right: 0;
}
.banner-section .banner-section-inner .banner-content .image-area {
  width: calc(55% - 25px);
  padding-right: 0;
  display: flex;
  align-items: center;
  padding-top: 0;
}
.banner-section .banner-section-inner .owl-theme .owl-dots {
  margin-top: 30px;
}
.banner-section .banner-section-inner .owl-theme .owl-dots .owl-dot span {
  border: 1px solid #3599e7;
  background: transparent;
  width: 45px;
  height: 12px;
  transition: 0.3s all;
  -ms-transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.banner-section .banner-section-inner .owl-theme .owl-dots .owl-dot.active span {
  background: #3599e7;
}
.banner-section .banner-section-inner .content-area-inner {
  height: 240px;
}
.banner-section .stats-section {
  padding-top: 40px;
  position: relative;
}
.banner-section .stats-section .stats-bg {
  opacity: 0.4;
}
.banner-section .stats-section-inner {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.banner-section .stats-section .stats-item {
  border-right: 2px solid rgba(255, 255, 255, 0.6);
  width: 33%;
}
.banner-section .stats-section .stats-item:last-child {
  border-right: none;
}
.banner-section .stats-section .number,
.banner-section .stats-section .text {
  color: #ffffff;
  text-align: center;
}
.banner-section .stats-section .number {
  font-size: 64px;
  font-weight: 800;
}
.banner-section .stats-section .text {
  font-size: 20px;
  font-weight: 500;
}
.banner-section .stats-section .text span {
  display: block;
}
.banner-section.sucsStory {
  position: relative;
  min-height: 100vh;
}
.banner-section.sucsStory .banner-section-inner {
  position: absolute;
  top: 50%;
  transform: translate(0, -40%);
  padding: 0;
  height: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 15px;
}
.banner-section.opticks-ai-banner.telescopeB {
  max-height: none;
  height: 100vh;
}
.banner-section.opticks-ai-banner.telescopeB .banner-section-inner {
  padding-top: 0;
}
.banner-section.opticks-ai-banner .banner-section-inner {
  position: absolute;
  top: 50%;
  transform: translate(0, -40%);
  padding: 0;
  height: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 15px;
}
.banner-section.opticks-ai-banner .full_image_bg {
  width: 100%;
}
.banner-section.opticks-ai-banner .full_image_bg .bg-mobile {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0%;
  height: auto;
  max-width: 90%;
}
.banner-section.opticks-ai-banner .full_image_bg img {
  transform: none;
  object-position: top;
}
.banner-section.opticks-ai-banner .full_image_bg img.circle-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  object-position: center;
  padding-left: 35%;
}
.banner-section.opticks-ai-banner .banner-content-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  height: 100%;
}
.banner-section.opticks-ai-banner .banner-content-box .title {
  font-size: 2.9vw;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 30px;
  color: #f1ad2a;
  text-align: start;
  max-width: 70%;
}
.banner-section.opticks-ai-banner .banner-content-box .title.no-max {
  max-width: none !important;
}
.banner-section.opticks-ai-banner .banner-content-box .title span {
  display: block;
}
.banner-section.opticks-ai-banner .banner-content-box .title .opticksLogo {
  display: inline-flex;
  position: absolute;
  width: 12vw;
  margin: 10px 0 0 10px;
}
.banner-section.opticks-ai-banner .banner-content-box p {
  color: #ffffff;
  font-size: 1.6vw;
}
.banner-section.opticks-ai-banner .banner-content-box .smallerText {
  font-size: 1.3vw;
}
.banner-section.opticks-ai-banner .banner-content-box .cta {
  margin-top: 20px;
}

.blogBanner .banner-content-box {
  gap: 2%;
}
.blogBanner .banner-section-inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1550px) {
  .blogBanner .banner-section-inner {
    padding-top: 14vw;
  }
}

.blog-image {
  width: 68%;
  position: relative;
}
@media screen and (max-width: 1750px) {
  .blog-image {
    width: 62%;
  }
}
@media screen and (max-width: 1600px) {
  .blog-image {
    width: 58%;
  }
}
@media screen and (max-width: 1500px) {
  .blog-image {
    width: 53%;
  }
}
@media screen and (max-width: 1400px) {
  .blog-image {
    width: 60%;
  }
}
.blog-image figure {
  max-width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.2vw;
  overflow: hidden;
}
.blog-image figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.blog-image .secondaryBtn {
  position: absolute;
  bottom: 2.8vw;
  left: 6vw;
}

.recent-blog {
  gap: 10px;
  width: 30%;
}
.recent-blog .btn {
  background: rgba(54, 85, 232, 0.2);
  color: #fff;
  font-weight: 500;
  font-size: 0.8vw;
}
.recent-blog .recent-content {
  background: rgba(0, 0, 0, 0.2);
  padding: 0.5vw 0 0.5vw 1.5vw;
  border-radius: 1.2vw;
  width: 100%;
}
.recent-blog .recent-content .sm-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9vw;
}
.recent-blog .recent-content h2 {
  font-size: 1vw;
  margin: 0.3vw 0 0.3vw 0;
  padding-right: 0.6vw;
}
.recent-blog .arrowSend {
  display: inline-flex;
  width: 1.8vw;
  height: 1.8vw;
  background: url(https://3426102.fs1.hubspotusercontent-na1.net/hubfs/3426102/raw_assets/public/AFFLE_LATEST/NewtonAI/images/blog/send_arrow.svg) no-repeat center center/contain;
}

.searchBar {
  display: inline-flex;
  position: relative;
  width: 100%;
  margin: 3vw auto;
}
.searchBar input.searchGry {
  padding: 1vw 2vw 1vw 4vw;
  background: rgba(76, 76, 76, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ddd;
  width: 100%;
  border-radius: 0.8vw;
}
.searchBar .searchBtn {
  position: absolute;
  left: 0.5vw;
  background: url(https://3426102.fs1.hubspotusercontent-na1.net/hubfs/3426102/raw_assets/public/AFFLE_LATEST/NewtonAI/images/blog/searchIcon.svg) no-repeat center center/contain;
  width: 1.5vw;
  height: 1.5vw;
  top: 50%;
  transform: translate(0, -50%);
}

.filterSec {
  display: flex;
  row-gap: 1.4vw;
  column-gap: 2vw;
  justify-content: center;
  flex-wrap: wrap;
}
.filterSec .btn {
  background: rgba(54, 153, 232, 0.15);
  border-radius: 0.6vw;
  color: #fff;
  font-weight: 400;
  font-size: 0.9vw;
}
.filterSec .btn a {
  color: #fff;
}
.filterSec .btn.active, .filterSec .btn:hover {
  background: #fbb32a;
  color: #000;
}
.filterSec .btn.active a, .filterSec .btn:hover a {
  color: #000;
}

.blog-sec {
  position: relative;
}
.blog-sec .blog-container {
  background: rgba(54, 153, 232, 0.1);
  max-width: 100%;
  padding: 0.7vw;
  border-radius: 1vw;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1%;
}
@media screen and (max-width: 1500px) {
  .blog-sec .blog-container {
    max-width: 100%;
  }
}
.blog-sec .blog-container figure {
  margin: 0;
  max-width: 100%;
  border-radius: 1vw;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 2/1.2;
  height: auto;
}
.blog-sec .blog-container figure img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
}
.blog-sec .blog-container p {
  color: #fff;
  font-size: 1.1vw;
  margin: 0.7vw 0;
}
.blog-sec .blog-container .sm-label {
  color: rgba(255, 255, 255, 0.4);
}
.blog-sec .blog-container .onDactive {
  width: 3vw;
}
.blog-sec .blog-container .onActive {
  width: 3vw;
  display: none;
}
.blog-sec .blog-container:hover p {
  color: #fbb32a;
}
.blog-sec .blog-container:hover .onActive {
  display: block;
}
.blog-sec .blog-container:hover .onDactive {
  display: none;
}
.blog-sec .blog-container.updates {
  background: rgba(54, 153, 232, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5vw 1.6vw 1vw;
  grid-column: 4;
  grid-row: 2;
}
.blog-sec .blog-container.updates:hover {
  transform: scale(1.1) !important;
}
.blog-sec .blog-container.updates h3.title {
  font-size: 1.5vw;
  color: #fff;
  font-weight: 600;
  margin-bottom: 1vw;
}
.blog-sec .blog-container.updates .inputForm {
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
}
.blog-sec .blog-container.updates .inputForm .hs-form-frame iframe .hsfc-Step__Content {
  padding: 0;
}
.blog-sec .blog-container.updates .inputForm input,
.blog-sec .blog-container.updates .inputForm select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  border-radius: 0.6vw;
  color: #fff;
  padding: 0.6vw 0.7vw;
  font-size: 0.9vw;
}
.blog-sec .blog-container.updates .inputForm input::placeholder,
.blog-sec .blog-container.updates .inputForm select::placeholder {
  color: #fff;
}
.blog-sec .blog-container.updates .inputForm option {
  color: #000;
  padding: 0 1vw;
}
.blog-sec .blog-container.updates .inputForm .btn,
.blog-sec .blog-container.updates .inputForm .yellowBtn,
.blog-sec .blog-container.updates .inputForm .hs-button.primary {
  width: 100%;
  background: #fbb32a;
  color: #000;
  border-radius: 0.6vw;
  font-weight: 600;
  margin-top: 0.6vw;
  font-size: 0.9vw;
}
.blog-sec .blog-container.updates .inputForm .hs-form-field label {
  display: none;
}
.blog-sec .blog-container.updates .inputForm .hbspt-form form {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}
.blog-sec .blog-container.updates .inputForm .hs-input.invalid, .blog-sec .blog-container.updates .inputForm .hs-input.error {
  border-color: rgb(249, 77, 77);
}
.blog-sec .blog-container.updates .inputForm .hs-main-font-element:not(.submitted-message),
.blog-sec .blog-container.updates .inputForm .hs_error_rollup {
  display: none;
}
.blog-sec .blog-container.updates .inputForm .submitted-message span {
  font-size: 1.7vw !important;
  color: #fbb32a;
  font-weight: bold !important;
}
.blog-sec .yellowBtn {
  width: auto;
  background: #fbb32a;
  color: #000;
  border-radius: 0.6vw;
  font-weight: 600;
  margin-top: 0.6vw;
  font-size: 1.1vw;
}

@keyframes herotile_move {
  0% {
    transform: rotate(0deg) translateX(-20px);
  }
  to {
    transform: rotate(1turn) translateX(20px);
  }
}
@keyframes am-zoom-in-zoom-out {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}
@keyframes zoomInOut {
  0% {
    transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
    -ms-transform: translate(-50%, -50%) scale(1.3);
    -webkit-transform: translate(-50%, -50%) scale(1.3);
  }
}
.trusted-partner-section {
  background: linear-gradient(45deg, rgb(8, 20, 36) 0%, rgb(1, 1, 1) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 50px;
}
.trusted-partner-section .section-title {
  text-align: center;
  position: relative;
}
.trusted-partner-section .owl-carousel {
  margin-top: 50px;
}
.trusted-partner-section .owl-carousel:before, .trusted-partner-section .owl-carousel:after {
  content: "";
  width: 100px;
  height: 100px;
  background: rgb(7, 16, 29);
  position: absolute;
  left: -40px;
  top: -30px;
  z-index: 9;
  opacity: 1;
  filter: blur(15px);
}
.trusted-partner-section .owl-carousel:after {
  left: unset;
  right: -40px;
  background: rgb(2, 4, 6);
}
.trusted-partner-section .owl-carousel .owl-item img {
  filter: invert(1);
  width: auto;
  max-width: 100%;
  margin: auto;
}

.ace-growth-section {
  background: rgb(1, 1, 1);
  position: relative;
  overflow: hidden;
}
.ace-growth-section:before {
  content: "";
  background: #25a49d;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  filter: blur(200px);
}
.ace-growth-section .section-title {
  text-align: center;
}
.ace-growth-section .section-title .title {
  color: #ffffff;
  position: relative;
  font-weight: bold;
}
.ace-growth-section .section-title .text-outline {
  font-size: 280px;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  opacity: 0.1;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.ace-growth-section .item {
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.ace-growth-section .item-inner.sky-color .btn.dark {
  border-color: #3599e7;
}
.ace-growth-section .item-inner.sky-color .btn.dark img {
  background: #3599e7;
}
.ace-growth-section .item-inner.orange-color .btn.dark {
  border-color: #fbb32a;
}
.ace-growth-section .item-inner.orange-color .btn.dark img {
  background: #fbb32a;
}
.ace-growth-section .item-inner.light-green-color .btn.dark {
  border-color: #25a49d;
}
.ace-growth-section .item-inner.light-green-color .btn.dark img {
  background: #25a49d;
}
.ace-growth-section .item-inner a {
  position: absolute;
  z-index: 9999;
  bottom: 50px;
  left: 155px;
  background: #000000;
  color: #ffffff;
}
.ace-growth-section .item-inner a.btn-with-icon img {
  top: 5px;
}
.ace-growth-section .owl-carousel .owl-nav {
  margin-top: 20px;
}
.ace-growth-section .owl-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  background: rgba(251, 177, 41, 0.15);
  border-radius: 50%;
  font-size: 28px;
}
.ace-growth-section .owl-carousel .owl-nav button:hover {
  background: #fbb32a;
}
.ace-growth-section .owl-carousel .owl-nav button:hover span {
  color: #ffffff;
}
.ace-growth-section .owl-carousel .owl-nav button span {
  display: block;
  color: #fbb32a;
  transform: translateY(-4px);
}
.ace-growth-section .common-btn {
  width: max-content;
  margin: 30px auto 0;
}

.feature-section {
  background: linear-gradient(135deg, #690d58 0%, #150e15 50%);
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 30px;
}
.feature-section .bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.feature-section .bg-pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.1;
}
.feature-section-inner {
  position: relative;
}
.feature-section .tab-section .nav {
  margin-bottom: 20px;
  border: none;
  justify-content: space-between;
}
.feature-section .tab-section .nav-item {
  margin-right: 10px;
}
.feature-section .tab-section .nav-link {
  background: rgba(255, 255, 255, 0.1);
  border-color: transparent;
  color: #ffffff;
  border-radius: 100px;
  padding: 12px 40px;
}
.feature-section .tab-section .nav-link.active, .feature-section .tab-section .nav-link:hover {
  background: #fbb32a;
}
.feature-section .tab-section .accordion-item {
  background: transparent;
  border: none;
}
.feature-section .tab-section .accordion-collapse {
  background: transparent;
}
.feature-section .tab-section .accordion-body {
  background: transparent;
  padding: 0;
  color: #ffffff;
}
.feature-section .tab-section .accordion-body .title {
  margin-top: 60px;
  margin-bottom: 30px;
}
.feature-section .tab-section .accordion-body .sub-title {
  font-size: 32px;
  font-weight: 400;
  opacity: 0.8;
}
.feature-section .tab-section .accordion-body .content {
  display: flex;
  gap: 50px;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 30px;
}
.feature-section .tab-section .accordion-body .content-list {
  width: calc(35% - 25px);
}
.feature-section .tab-section .accordion-body .content-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 25px;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.8);
}
.feature-section .tab-section .accordion-body .content-list li .icon {
  min-width: 40px;
  width: 40px;
  height: 40px;
  line-height: 38px;
  background: rgba(105, 13, 88, 0.2);
  border-radius: 50%;
  text-align: center;
}
.feature-section .tab-section .accordion-body .content-image {
  width: calc(65% - 25px);
}

.testimonial-section {
  background: rgb(1, 1, 1);
  position: relative;
  overflow: hidden;
}
.testimonial-section:before {
  content: "";
  background: #07a3cc;
  width: 50%;
  height: 80%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  top: 35%;
  filter: blur(120px);
  animation: zoomInOut 10s infinite alternate ease-in-out;
}
.testimonial-section .owl-slider {
  padding: 0px 100px;
  margin: 70px auto 30px;
}
.testimonial-section .owl-slider .item {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px 25px;
  text-align: center;
  color: #ffffff;
  position: relative;
}
.testimonial-section .owl-slider .client-image {
  max-width: 150px;
  margin: auto;
  margin-bottom: 15px;
}
.testimonial-section .owl-slider .client-image .cta {
  position: absolute;
  right: 50px;
  top: 50px;
  width: 40px;
  height: 40px;
  background: #fbb32a;
  border-radius: 50%;
  padding: 7px;
  transform: rotate(-45deg);
}
.testimonial-section .owl-slider .content .name {
  font-size: 24px;
  font-weight: 700;
}
.testimonial-section .owl-slider .content .designation {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.7;
  margin-bottom: 20px;
}
.testimonial-section .owl-slider .content p {
  opacity: 0.7;
}
.testimonial-section .owl-slider .content .rating-comments {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  margin-top: 30px;
  opacity: 0.7;
}
.testimonial-section .owl-slider .content .rating-comments .rating-icon {
  display: flex;
  gap: 5px;
  width: auto;
  align-items: center;
}
.testimonial-section .owl-slider .content .rating-comments .rating-icon img {
  width: 30px;
}
.testimonial-section .owl-slider .content .rating-comments .comment-icon {
  width: 30px;
}
.testimonial-section .owl-carousel .owl-nav {
  margin-top: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 108%;
  display: flex;
  justify-content: space-between;
}
.testimonial-section .owl-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  background: #3599e7;
  border-radius: 50%;
  font-size: 28px;
}
.testimonial-section .owl-carousel .owl-nav button:hover {
  background: #fbb32a;
}
.testimonial-section .owl-carousel .owl-nav button:hover span {
  color: #ffffff;
}
.testimonial-section .owl-carousel .owl-nav button.owl-prev {
  transform: translateX(-60px);
}
.testimonial-section .owl-carousel .owl-nav button.owl-next {
  transform: translateX(60px);
}
.testimonial-section .owl-carousel .owl-nav button span {
  display: block;
  color: #ffffff;
  transform: translateY(-4px);
}

.blog-section {
  background: #000000;
}
.blog-section .section-title {
  padding-right: 120px;
}
.blog-section .section-title .sub-title {
  margin-top: 60px;
  color: #ffffff;
  font-size: 36px;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.5;
}
.blog-section .post-box {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.cta-section {
  background: #000000;
  padding-bottom: 120px;
  z-index: 1;
  position: relative;
}
.cta-section .content {
  padding: 30px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.cta-section .content .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cta-section .content .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.cta-section .content .title {
  position: relative;
  text-align: center;
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
}
.cta-section .content .title.text-yellow {
  color: #e2a126;
}
.cta-section .content .title span {
  color: #fbb32a;
}
.cta-section .content .cta {
  text-align: center;
  margin-top: 25px;
}
.cta-section .content .cta a {
  display: inline-block;
  padding: 12px 30px 14px;
}
.cta-section .content .cta a img {
  background: #fbb32a;
  transition: 0.3s all;
  -ms-transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.cta-section .content .cta a:hover img {
  background: #ffffff;
}
.cta-section .content .wave-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
}

.footer-section {
  background: #0a0a0a;
  padding-top: 30px;
  color: #ffffff;
}
.footer-section .logo-box {
  padding-right: 70px;
}
.footer-section .logo-box .logo-image {
  max-width: 180px;
  width: 100%;
}
.footer-section .logo-box p {
  margin: 30px 0;
  opacity: 0.8;
  font-weight: 400;
}
.footer-section .footer-box {
  display: flex;
  gap: 50px;
  justify-content: space-evenly;
}
.footer-section .footer-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}
.footer-section .footer-box li {
  margin-bottom: 10px;
}
.footer-section .footer-box li:last-child {
  margin-bottom: 0;
}
.footer-section .footer-box a {
  color: #ffffff;
  opacity: 0.8;
  font-weight: 400;
  transition: 0.3 all;
  -ms-transition: 0.3 all;
  -webkit-transition: 0.3 all;
}
.footer-section .footer-box a:hover {
  color: #fbb32a;
  opacity: 1;
}
.footer-section .copyright-social {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}
.footer-section .copyright-social a {
  color: #ffffff;
}
.footer-section .copyright-text {
  display: flex;
  gap: 20px;
  opacity: 0.8;
  font-weight: 400;
}
.footer-section .social-icons .social-icons-list {
  color: #ffffff;
  display: flex;
  gap: 30px;
}
.footer-section .social-icons svg {
  fill: #ffffff;
}

.opticksai-video-section {
  position: relative;
}
.opticksai-video-section .section-title .title {
  font-size: 2.8vw;
  font-weight: bold;
  margin-bottom: 2vw;
}
.opticksai-video-section .content-box .logo {
  max-width: 300px;
  margin: 20px auto 40px;
}
.opticksai-video-section .content-box .screen {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.opticksai-video-section .content-box .screen:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  top: 82%;
  width: 90%;
  height: 20px;
  background: #ffffff;
}
.opticksai-video-section .content-box .video-box {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
}
.opticksai-video-section .content-box .video-box:after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: 20px;
  display: inline-flex;
  width: 15vw;
  height: 15vw;
  background: url(https://3426102.fs1.hubspotusercontent-na1.net/hubfs/3426102/raw_assets/public/AFFLE_LATEST/NewtonAI/images/opticks/rounded_circle.svg) no-repeat center center/cover;
}
.opticksai-video-section .content-box .video-box .video {
  width: 100%;
  padding: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  height: 100%;
  position: relative;
  z-index: 1;
}
.opticksai-video-section .content-box .video-box .video video {
  width: 100%;
  height: 100%;
}
.opticksai-video-section .adsScore,
.opticksai-video-section .asoScore {
  position: absolute;
  bottom: 30px;
  left: 23.8%;
  width: 11.7vw;
  z-index: 1;
  border: 0.34vw solid rgba(0, 0, 0, 0.2);
  border-radius: 0.4vw;
  overflow: hidden;
}
.opticksai-video-section .adsScore[data-aos^=zoom][data-aos^=zoom].aos-animate,
.opticksai-video-section .asoScore[data-aos^=zoom][data-aos^=zoom].aos-animate {
  transform: scale(1.5);
  transform-origin: right top;
}
.opticksai-video-section .asoScore {
  left: 43%;
}
.opticksai-video-section .asoScore[data-aos^=zoom][data-aos^=zoom].aos-animate {
  transform-origin: left top;
}

.opticks-slider-section {
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 70px;
}
.opticks-slider-section .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.2);
}
.opticks-slider-section .title {
  margin-bottom: 2vw;
  font-size: 2.5vw;
  font-weight: bold;
}
.opticks-slider-section .typing-container span {
  color: #f1ad2a;
  font-weight: 800;
}
.opticks-slider-section .typing-container span:after {
  animation-name: blinking;
  animation-duration: 0.7s;
  animation-iteration-count: infinite;
  font-weight: 600;
}
@keyframes blinking {
  from {
    color: transparent;
  }
  to {
    color: #f1ad2a;
  }
}
.opticks-slider-section .content-box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  gap: 5px;
}
.opticks-slider-section .content-list {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.opticks-slider-section .content-list .item {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  text-align: center;
}
.opticks-slider-section .content-list .item:last-child {
  flex-direction: column-reverse;
}
.opticks-slider-section .content-list .item:hover {
  color: #f1ad2a;
}
.opticks-slider-section .content-list .item:hover .btn {
  opacity: 1;
}
.opticks-slider-section .tw-relative {
  position: relative;
  overflow: hidden;
}
.opticks-slider-section .tw-relative .btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 9;
  background: #f1ad2a;
  color: #ffffff;
  opacity: 0;
}
.opticks-slider-section .tw-relative .btn:hover {
  color: #000000;
}

.opticks-feature {
  position: relative;
  overflow: hidden;
}
.opticks-feature:before {
  content: "";
  display: inline-flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.1;
}
.opticks-feature .opticks-feature-inner {
  z-index: 1;
  position: relative;
}
.opticks-feature .opticks-feature-inner .circleRound {
  position: relative;
}
.opticks-feature .opticks-feature-inner .circleRound img {
  position: relative;
  z-index: 1;
}
.opticks-feature .opticks-feature-inner .circleRound:after {
  bottom: auto;
  top: 60px;
  right: auto;
  left: -100px;
}
.opticks-feature .opticks-feature-inner h3.title {
  font-size: 2.7vw;
  font-weight: bold;
}
.opticks-feature .opticks-feature-inner .sm-title {
  font-size: 1.9vw;
  font-weight: bold;
  color: #fff;
}
.opticks-feature .opticks-feature-inner .headingPara {
  font-size: 1.25vw;
  color: #fff;
  margin-top: 40px;
}
.opticks-feature .feature-item {
  padding: 20px 10px;
}
.opticks-feature .feature-item .feature-item-inner {
  background: rgba(54, 153, 232, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.opticks-feature .feature-item .feature-item-inner:hover {
  background: rgba(54, 153, 232, 0.2);
  border: 1px solid rgba(54, 153, 232, 0.1);
  color: #fff;
}
.opticks-feature .feature-item.orange .feature-item-inner {
  border-color: #fbb329;
}
.opticks-feature .feature-item.orange .icon {
  background: #fbb329;
}
.opticks-feature .feature-item.green .feature-item-inner {
  border-color: #2db0aa;
}
.opticks-feature .feature-item.green .icon {
  background: #2db0aa;
}
.opticks-feature .feature-item.blue .feature-item-inner {
  border-color: #3599e7;
}
.opticks-feature .feature-item.blue .icon {
  background: #3599e7;
}
.opticks-feature .feature-item.red .feature-item-inner {
  border-color: #ef533d;
}
.opticks-feature .feature-item.red .icon {
  background: #ef533d;
}
.opticks-feature .feature-item-inner {
  background: #ffffff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: start;
  text-align: center;
  flex-direction: column;
  gap: 30px;
  padding: 30px 30px 30px;
  background: rgba(9, 22, 34, 0.4);
  transition: 0.3s all;
}
.opticks-feature .feature-item-inner:hover {
  background: #fff;
}
.opticks-feature .feature-item-inner:hover .text {
  color: #fff;
}
.opticks-feature .feature-item .icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.opticks-feature .feature-item.asaItem .feature-item-inner {
  background: rgba(54, 153, 232, 0.1);
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 3vw 2vw;
}
@media screen and (max-width: 1500px) {
  .opticks-feature .feature-item.asaItem .feature-item-inner {
    padding: 4vw 3vw;
  }
}
.opticks-feature .feature-item.asaItem .feature-item-inner:hover {
  background: rgba(54, 153, 232, 0.2);
}
.opticks-feature .feature-item.asaItem .feature-item-inner .icon {
  width: 5vw;
  height: 5vw;
}
.opticks-feature .feature-item.asaItem .feature-item-inner .icon.lgIcon {
  width: 7vw;
}
.opticks-feature .feature-item .text {
  margin-bottom: 0;
  font-size: 1.4vw;
  color: #000000;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
.opticks-feature .feature-item.newtonIndex .h-70 {
  height: auto;
  min-height: 90%;
  gap: 2vw;
}
@media screen and (max-width: 1500px) {
  .opticks-feature .feature-item.newtonIndex .h-70 {
    gap: 1vw;
  }
}
.opticks-feature .feature-item.newtonIndex .feature-item-inner {
  padding: 30px 15px 30px;
}
.opticks-feature .feature-item.newtonIndex .feature-item-inner .divContain {
  gap: 15px;
}
.opticks-feature .feature-item.newtonIndex .feature-item-inner .iconLg {
  max-width: 70%;
}
.opticks-feature .feature-item.newtonIndex .feature-item-inner .text-green {
  color: #2eb0a8;
}
.opticks-feature .feature-item.newtonIndex .feature-item-inner .text-yellow {
  color: #fbb32a;
}
.opticks-feature .feature-item.newtonIndex .feature-item-inner .text-red {
  color: #e94447;
}
.opticks-feature .teleScopeDeliver .feature-item-inner {
  background: rgba(54, 153, 232, 0.3);
  border-radius: 1.5vw;
}

.bolder {
  font-weight: 800;
}

.yellowText {
  color: #e2a126;
  font-size: 50px;
  font-weight: 600;
}

.yellowGrd {
  background: linear-gradient(to right, rgba(203, 127, 14, 0) 0%, rgba(203, 127, 14, 0) 8%, rgba(203, 127, 14, 0.14) 48%, rgba(203, 127, 14, 0) 92%, rgba(203, 127, 14, 0) 99%);
}

.intelligence .container-full {
  position: relative;
}
.intelligence .section-title .title {
  font-weight: 600;
}
.intelligence:before, .intelligence:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -50%;
  left: 0;
}
.intelligence:after {
  top: auto;
  bottom: -50%;
  left: 0;
  display: none;
}
.intelligence .container {
  z-index: 9;
  position: relative;
}

.videoContainer {
  margin-top: 4vw;
}
.videoContainer .gap-2x {
  gap: 1vw;
  display: flex;
  align-items: end;
}
.videoContainer .col-left,
.videoContainer .col-right {
  width: 24vw;
}
.videoContainer .col-left img,
.videoContainer .col-right img {
  max-width: 100%;
}
.videoContainer .col-center,
.videoContainer .circleRound {
  width: 60vw;
  height: auto;
  border-radius: 2vw;
  background: #fff;
  border: 4px solid #fff;
  display: flex;
  position: relative;
  z-index: 2;
}
.videoContainer .col-center:after, .videoContainer .col-center:after,
.videoContainer .circleRound:after,
.videoContainer .circleRound:after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: 20px;
  display: inline-flex;
  width: 15vw;
  height: 15vw;
  background: url(https://3426102.fs1.hubspotusercontent-na1.net/hubfs/3426102/raw_assets/public/AFFLE_LATEST/NewtonAI/images/opticks/rounded_circle.svg) no-repeat center center/cover;
}
.videoContainer .col-center img,
.videoContainer .circleRound img {
  border-radius: 2vw;
  width: 100%;
  position: relative;
  z-index: 2;
}

.sliderSec {
  padding: 160px 0 0;
  position: relative;
  overflow: hidden;
}
.sliderSec .cta-section {
  background: none;
  padding: 100px 0;
}
.sliderSec:before {
  position: absolute;
  left: -50%;
  bottom: -20%;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgb(74, 0, 62) 0%, rgba(0, 0, 0, 0) 60%);
}
.sliderSec:after {
  position: absolute;
  right: -50%;
  bottom: 10%;
  width: 100%;
  height: 100%;
}
.sliderSec .sliderContent {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sliderSec .sliderContent h2 {
  font-weight: 600;
  margin-top: 40px;
  font-size: 0;
  color: #fff;
}
.sliderSec .sliderContent h2 .greenTxt,
.sliderSec .sliderContent h2 .boldTxt {
  color: #2cafa7;
}
.sliderSec .sliderContent .sliderImgSec {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: #2cafa7;
  color: #fff;
  position: relative;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}
.sliderSec .sliderContent h2 {
  font-size: 0;
}
.sliderSec .sliderContent .mainSlider {
  flex: 1;
  height: auto;
  border: 6px solid #fcfcfc;
  border-radius: 14px;
  position: relative;
  z-index: 1;
}
.sliderSec .sliderContent .mainSlider img {
  border-radius: 6px;
}
.sliderSec .sliderContent .innerSliderCont {
  color: #fff;
  flex: 1;
  padding: 20px 10px;
  position: absolute;
  border-radius: 20px;
  display: flex;
  height: 100%;
  box-sizing: border-box;
  top: 0;
  left: 0;
  font-size: 14px;
  transition: transform 0.6s ease-in-out 0s;
}
.sliderSec .sliderContent .sliderImgSec:before {
  content: "";
  display: inline-block;
  width: 100px;
  height: 100px;
  background: #2cafa7;
  position: absolute;
  bottom: -20px;
  left: -20px;
  border-radius: 20px;
}
.sliderSec .sliderContent.blue .boldTxt {
  color: #3499e6;
}
.sliderSec .sliderContent.blue .sliderImgSec {
  background: #3499e6;
}
.sliderSec .sliderContent.blue .sliderImgSec:before {
  background: #3499e6;
}
.sliderSec .sliderContent.blue .sliderImgSec:after {
  background: #3499e6;
}
.sliderSec .sliderContent.red .boldTxt {
  color: #ed533e;
}
.sliderSec .sliderContent.red .sliderImgSec {
  background: #ed533e;
}
.sliderSec .sliderContent.red .sliderImgSec:before {
  background: #ed533e;
}
.sliderSec .sliderContent.red .sliderImgSec:after {
  background: #ed533e;
}
.sliderSec .sliderContent.yellow .boldTxt {
  color: #fbb32a;
}
.sliderSec .sliderContent.yellow .sliderImgSec {
  background: #fbb32a;
}
.sliderSec .sliderContent.yellow .sliderImgSec:before {
  background: #fbb32a;
}
.sliderSec .sliderContent.yellow .sliderImgSec:after {
  background: #fbb32a;
}
.sliderSec .sliderContent.pink .boldTxt {
  color: #fb2aa4;
}
.sliderSec .sliderContent.pink .sliderImgSec {
  background: #fb2aa4;
}
.sliderSec .sliderContent.pink .sliderImgSec:before {
  background: #fb2aa4;
}
.sliderSec .sliderContent.pink .sliderImgSec:after {
  background: #fb2aa4;
}
.sliderSec .owl-item {
  padding: 110px 0;
}

.center .sliderContent:hover {
  min-width: 40vw;
  margin: 0 -11.5vw;
}
.center .sliderContent:hover .innerSliderCont {
  transition: transform 0.6s ease-in-out 0s;
  position: relative;
}
.center .sliderContent:hover .sliderImgSec:after {
  display: none;
}
.center .sliderImgSec:after {
  content: "";
  display: inline-block;
  width: 100px;
  height: 140px;
  background: #2cafa7;
  position: absolute;
  top: 0;
  right: -25px;
  border-radius: 20px 20px 70px 20px;
}

.sliderSec .owl-carousel.owl-drag .owl-item {
  transition: transform 0.6s ease-in-out 0s;
  filter: brightness(0.5) blur(1px);
}
.sliderSec .owl-carousel.owl-drag .owl-item.active {
  transform: scale(1);
  transition: transform 0.6s ease-in-out 0s;
  filter: brightness(0.5) blur(1px);
}
.sliderSec .owl-carousel.owl-drag .owl-item.center {
  transform: scale(1.5);
  transition: transform 0.6s ease-in-out 0s;
  z-index: 9;
  filter: brightness(1) blur(0px);
}
.sliderSec .owl-carousel.owl-drag .owl-item.center h2 {
  font-size: 2vw;
  transition: transform 3s ease 3s;
}

.owl-carousel .owl-stage-outer {
  padding: 0 0px;
}

.screen-inner {
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  height: auto;
  aspect-ratio: 2/1.1;
}

.opticksContain .cta-section {
  background: none;
  padding-bottom: 70px;
}
.opticksContain .cta-section .textSec {
  color: #fff;
  z-index: 9;
  position: relative;
}
.opticksContain .cta-section .textSec .title {
  font-size: 2.8vw;
}
.opticksContain .cta-section .textSec p {
  font-size: 1.5vw;
  margin: 0;
  line-height: 1.4;
}
.opticksContain .cta-section .textSec .br-2 {
  border-right: 2px solid #fff;
}

.text-yellow {
  color: #fbb32a;
}

.bg-container {
  background: #101020;
  position: relative;
  overflow: hidden;
}
.bg-container .blurCircle1 {
  display: inline-block;
  position: absolute;
  width: 29vw;
  height: 29vw;
  border: 5vw solid #fe4343;
  border-radius: 50%;
  right: -7vw;
  top: -13vw;
  filter: blur(7vw);
  opacity: 0.7;
}
.bg-container .blurCircle2 {
  display: inline-block;
  position: absolute;
  width: 20vw;
  height: 20vw;
  border: 5vw solid #2eb0a8;
  border-radius: 50%;
  left: -7vw;
  top: 43vw;
  filter: blur(6vw);
  opacity: 0.8;
}
.bg-container .blurCircle3 {
  display: inline-block;
  position: absolute;
  width: 34vw;
  height: 34vw;
  border: 5vw solid #fbb32a;
  border-radius: 50%;
  right: -15vw;
  top: 75vw;
  filter: blur(6vw);
  opacity: 0.8;
}
.bg-container .blurCircle4 {
  display: inline-block;
  position: absolute;
  width: 22vw;
  height: 22vw;
  border: 5vw solid #fbb32a;
  border-radius: 50%;
  left: -10vw;
  top: 155vw;
  filter: blur(6vw);
  opacity: 0.9;
}

.cta.centered {
  display: flex;
  justify-content: center;
  padding: 60px 0 0;
}

.border-b {
  position: relative;
}
.border-b:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  margin: 0 auto;
  width: 80%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  bottom: 0;
}

.newtonIndexContainer {
  gap: 3rem;
}

.sliderSec2,
.asoSlider {
  color: #fff;
  font-size: 22px;
}
.sliderSec2 p,
.asoSlider p {
  font-size: 1.3vw;
}
.sliderSec2 .columns,
.asoSlider .columns {
  position: relative;
  z-index: 2;
}
.sliderSec2 .columns:after,
.asoSlider .columns:after {
  content: "";
  position: absolute;
  left: -100px;
  bottom: 130px;
  display: inline-flex;
  width: 15vw;
  height: 15vw;
  background: url(https://3426102.fs1.hubspotusercontent-na1.net/hubfs/3426102/raw_assets/public/AFFLE_LATEST/NewtonAI/images/opticks/rounded_circle.svg) no-repeat center center/cover;
}
.sliderSec2 ul,
.asoSlider ul {
  margin-top: 40px;
  display: inline-block;
  width: 100%;
}
.sliderSec2 ul li,
.asoSlider ul li {
  padding-left: 15px;
  position: relative;
  margin: 0 auto 10px;
  font-size: 1.3vw;
}
.sliderSec2 ul li:before,
.asoSlider ul li:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fbb32a;
  position: absolute;
  left: -5px;
  top: 12px;
}
.sliderSec2 h5,
.asoSlider h5 {
  font-size: 2.5vw;
  font-weight: bold;
  margin: 0 auto 20px;
}
.sliderSec2 .owl-theme .owl-dots .owl-dot,
.asoSlider .owl-theme .owl-dots .owl-dot {
  margin-top: 30px;
}
.sliderSec2 .owl-theme .owl-dots .owl-dot.active span, .sliderSec2 .owl-theme .owl-dots .owl-dot:hover span,
.asoSlider .owl-theme .owl-dots .owl-dot.active span,
.asoSlider .owl-theme .owl-dots .owl-dot:hover span {
  background: #e94447;
}
.sliderSec2 .owl-theme .owl-dots .owl-dot span,
.asoSlider .owl-theme .owl-dots .owl-dot span {
  width: 2.3vw;
  height: 0.8vw;
  margin: 0 0.3vw;
  background: rgba(255, 255, 255, 0.2);
}

.roundedVideo {
  position: relative;
  z-index: 2;
  border-radius: 2vw;
}

.coverImg {
  object-position: center !important;
  object-fit: cover;
  width: 100%;
}

.blog-post__social-sharing {
  display: none;
}

.banner-section.blogBannerSec {
  display: flex;
  align-items: center;
}
.banner-section.sucsStory .avatar {
  margin: 0;
  width: 100px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-section.sucsStory .avatar img {
  object-fit: cover;
}
.banner-section.sucsStory .owl-item {
  padding: 0 10px;
}
.banner-section.sucsStory .owl-theme .owl-dots {
  margin-top: 15px;
}
.banner-section.sucsStory .owl-theme .owl-dots .owl-dot {
  margin-top: 0px;
}
.banner-section.sucsStory .owl-theme .owl-dots .owl-dot.active span, .banner-section.sucsStory .owl-theme .owl-dots .owl-dot:hover span {
  background: #e94447;
}
.banner-section.sucsStory .owl-theme .owl-dots .owl-dot span {
  width: 2.3vw;
  height: 0.8vw;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
}
.banner-section .whiteTextBox {
  background: #fff;
  border-radius: 2vw;
  padding: 1vw;
}
.banner-section .whiteTextBox p {
  color: #000;
  font-size: 0.8vw;
}
.banner-section .whiteTextBox h4.bolder {
  color: #000;
  font-size: 1vw;
  margin: 0;
  width: 100%;
}
.banner-section .whiteTextBox .desig {
  color: #e94447;
  font-weight: bold;
  font-size: 0.8vw;
}
.banner-section .whiteTextBox .quotes {
  display: inline-flex;
  width: 2.6vw;
  height: 2.6vw;
}

.careersPage .title {
  font-size: 3.4vw;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.careersPage .title span.yellowText {
  font-size: 3.4vw;
  font-weight: bold;
}
.careersPage .careerForm {
  display: inline-flex;
  width: 100%;
  padding: 0vw 0vw 0 0.6vw;
  background: rgba(0, 0, 0, 0.2);
  border: 0.1vw solid rgba(255, 255, 255, 0.1);
  border-radius: 1vw;
  position: relative;
  flex-direction: column;
}
.careersPage .careerForm label {
  color: #fff;
}
.careersPage .careerForm input {
  height: 3.4vw;
  padding: 0 1vw 0 2.5vw;
  flex: 1;
  background: rgba(0, 0, 0, 0);
  border: 0;
  color: #fff;
  font-size: 1vw;
}
.careersPage .careerForm .typeSearch {
  background: url(https://3426102.fs1.hubspotusercontent-na1.net/hubfs/3426102/raw_assets/public/AFFLE_LATEST/NewtonAI/images/blog/searchIcon.svg) no-repeat 0.5vw 50%/1.4vw;
}
.careersPage .careerForm .locateSearch,
.careersPage .careerForm select#locationSelect {
  flex: 1;
  border: 0;
  padding: 0.8vw 0 0.8vw 2vw;
  font-size: 1vw;
  color: #fff;
  background: url(https://3426102.fs1.hubspotusercontent-na1.net/hubfs/3426102/raw_assets/public/AFFLE_LATEST/NewtonAI/images/successStory/location.svg) no-repeat 0.5vw 50%/1.2vw;
}
.careersPage .careerForm .locateSearch option,
.careersPage .careerForm select#locationSelect option {
  color: #000;
}
.careersPage .careerForm button {
  align-items: center;
  min-width: 7vw;
  justify-content: center;
  border-radius: 1vw;
  padding: 0.7vw 0;
}
.careersPage .careerForm .seperator {
  border-right: 0.15vw solid rgba(255, 255, 255, 0.4);
  align-self: center;
  display: flex;
  height: 30px;
}
.careersPage .careerTable .table-responsive {
  background-color: rgba(0, 0, 0, 0.2);
  border: 2px solid;
  border-radius: 1vw;
  padding: 1vw;
}
.careersPage .careerTable table,
.careersPage .careerTable .table > * {
  background: none;
}
.careersPage .careerTable table th,
.careersPage .careerTable table td,
.careersPage .careerTable .table > * th,
.careersPage .careerTable .table > * td {
  background: none;
  border-bottom: 1px solid #333;
  color: #242424;
  align-items: center;
  vertical-align: middle;
  color: #fff;
}
.careersPage .careerTable table th.disabled,
.careersPage .careerTable table td.disabled,
.careersPage .careerTable .table > * th.disabled,
.careersPage .careerTable .table > * td.disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
  text-decoration: none;
}
.careersPage .careerTable table th .secondaryBtn,
.careersPage .careerTable table td .secondaryBtn,
.careersPage .careerTable .table > * th .secondaryBtn,
.careersPage .careerTable .table > * td .secondaryBtn {
  padding: 0.4vw 1vw;
}
.careersPage .careerTable table th h2,
.careersPage .careerTable table td h2,
.careersPage .careerTable .table > * th h2,
.careersPage .careerTable .table > * td h2 {
  font-size: 1.3vw;
  font-weight: bold;
}
.careersPage .careerTable table th p,
.careersPage .careerTable table td p,
.careersPage .careerTable .table > * th p,
.careersPage .careerTable .table > * td p {
  font-size: 0.8vw;
}
.careersPage .careerTable table th p strong,
.careersPage .careerTable table td p strong,
.careersPage .careerTable .table > * th p strong,
.careersPage .careerTable .table > * td p strong {
  color: #c5c5c5;
}
.careersPage .careerTable table th .applyBtn,
.careersPage .careerTable table td .applyBtn,
.careersPage .careerTable .table > * th .applyBtn,
.careersPage .careerTable .table > * td .applyBtn {
  font-size: 1vw;
}
.careersPage .careerTable table th .applyBtn.disabled,
.careersPage .careerTable table td .applyBtn.disabled,
.careersPage .careerTable .table > * th .applyBtn.disabled,
.careersPage .careerTable .table > * td .applyBtn.disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
  text-decoration: none;
}
.careersPage .share {
  display: inline-flex;
  width: 1.2vw;
  height: 1.2vw;
  background: url(https://3426102.fs1.hubspotusercontent-na1.net/hubfs/3426102/raw_assets/public/AFFLE_LATEST/NewtonAI/images/successStory/share_icon_wht.svg) no-repeat center center/cover;
  margin: 0 auto;
}
.careersPage .share.disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
  text-decoration: none;
}
.careersPage .title {
  display: flex;
  justify-content: center;
  align-self: center;
}
.careersPage .midLogo {
  display: inline-flex;
  width: 16vw;
  margin: 0 1vw;
}

.filterSection {
  margin-top: -7vw;
  margin-bottom: -14vw;
  position: relative;
  z-index: 99;
}
.filterSection .d-flex {
  gap: 20px;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 567px) {
  .filterSection .d-flex.sm-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
  .filterSection .d-flex.sm-grid .col {
    grid-column: span 1;
  }
  .filterSection .d-flex.sm-grid .col:first-child {
    grid-column: span 2;
  }
  .audit-telescope:before {
    height: 100px !important;
    background-size: 100% 100% !important;
  }
  .audit-telescope .newContactBanner .contactContainer .contentSec {
    padding: 0 0 50px 0 !important;
  }
  .audit-telescope .contentSecDesc {
    padding: 20px !important;
  }
  .audit-telescope .newContactBanner .headingLg {
    font-size: 27px !important;
  }
  .audit-telescope .heading {    
    font-size: 17px;
    margin: 20px auto 30px !important;
  }
  .audit-telescope .description {
    font-size: 14px !important;
  }
  .videoContainer .col-left, .videoContainer .col-right {
    width: 30px;
  }
  .audit-telescope .newContactBanner .contactContainer .contentSec .nikodesc {
    margin-top: -40px !important;
  }
  .py-40 {
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .audit-telescope .newContactBanner {
    padding-bottom: 20px;
  }
}
.filterSection .d-flex .roundedBox {
  background: #ddd;
  border-radius: 2vw;
  height: 20vw;
  flex: auto;
  min-width: 0;
  max-width: none;
  overflow: hidden;
  width: 4vw;
  transition: all 0.4s;
  position: relative;
}
.filterSection .d-flex .roundedBox:hover {
  width: 10vw;
  transition: all 0.4s;
}
.filterSection .d-flex .roundedBox figure {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
}
.filterSection .d-flex .roundedBox figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.filterSection .d-flex .roundedBox figcaption.vertical {
  position: absolute;
  bottom: 0vw;
  right: -45%;
  color: #fff;
  font-weight: bold;
  width: 100%;
  text-align: left;
  transform: rotate(-90deg) translate(60%, 0);
  transform-origin: bottom;
  font-size: 1vw;
  transition: all 0.2s;
}
.filterSection .d-flex .roundedBox figcaption.horizontal {
  position: absolute;
  bottom: 1vw;
  left: -100%;
  color: #fff;
  font-weight: bold;
  width: 100%;
  text-align: left;
  transform-origin: bottom;
  font-size: 1.2vw;
  transition: all 0.2s;
}
.filterSection .d-flex .roundedBox:hover figcaption.vertical {
  bottom: -0.6vw;
  right: -100%;
}
.filterSection .d-flex .roundedBox:hover figcaption.horizontal {
  bottom: 1vw;
  left: 1vw;
}

.successSec .container {
  gap: 2%;
}
.successSec .blog-container {
  min-width: 32%;
  width: 32%;
  padding: 1vw;
}
.successSec .blog-container figure {
  aspect-ratio: 2/0.96;
}
.successSec .blog-container .arrowIcon {
  width: 3vw;
}
.successSec .blog-container .badge {
  display: inline-flex;
  width: auto;
  color: #000;
  font-size: 0.8vw;
  padding: 0.4vw 0.4vw;
  border-radius: 0.5vw;
  margin: 1vw 0 0;
  align-self: start;
  background: rgba(255, 255, 255, 0.5);
}

.gapTop {
  padding-top: 18vw;
}

.fullBlogContainer {
  display: flex;
  width: 100%;
  border-radius: 1vw;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(54, 153, 232, 0.15);
  padding: 1vw;
  margin-bottom: 2vw;
  gap: 1.5vw;
}
.fullBlogContainer .sm-label {
  font-size: 1vw;
  color: hsla(0, 0%, 100%, 0.4);
}
.fullBlogContainer .sm-label:hover {
  color: #e2a126;
}
.fullBlogContainer .badge {
  display: inline-flex;
  width: auto;
  color: #000;
  font-size: 0.8vw;
  padding: 0.4vw 0.4vw;
  border-radius: 0.5vw;
  margin: 1vw 0 0;
  align-self: start;
  background: rgba(255, 255, 255, 0.5);
}
.fullBlogContainer .arrowIcon {
  width: 3.5vw;
}
.fullBlogContainer figure.smBannerImg {
  width: auto;
  flex: 1;
  border-radius: 20px;
  max-width: none;
  overflow: hidden;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fullBlogContainer figure.smBannerImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logoSec {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3vw 0 0vw 0;
  position: relative;
  z-index: 1;
}

.logoSec img {
  max-width: none;
}

.contentBannerBg {
  min-height: 50vh;
}
.contentBannerBg .banner-section-inner {
  padding-top: 9.5vw;
}
.contentBannerBg .full_image_bg img {
  transform: scaleX(1);
}
.contentBannerBg .bannersTitle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-weight: bold;
  font-size: 2.8vw;
  flex-direction: column;
  color: #fff;
  font-size: 2.4vw;
}
.contentBannerBg .bannersTitle .shadowed {
  text-shadow: 0 0 1px #fbb32a;
}

.contentSection {
  display: flex;
  padding: 100px 0;
}
.contentSection.releaseHistory {
/*   height: calc(100vh - 141px); */
  height: 84vh;
  overflow: auto;
  padding: 0;
  margin-top: 16vh;
}
.contentSection.releaseHistory::-webkit-scrollbar {
  width: 8px;
}
.contentSection.releaseHistory::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}
.contentSection.releaseHistory::-webkit-scrollbar-thumb {
  background: rgba(251, 179, 42, 0.5);
  border-radius: 4px;
}
.contentSection.releaseHistory::-webkit-scrollbar-thumb:hover {
  background: rgba(251, 179, 42, 0.8);
}
.contentSection .container {
  display: flex;
  gap: 20px;
  max-width: 90%;
}
.contentSection .listing {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 24%;
  position: sticky;
  top: 0;
}
.contentSection .listing a {
  display: inline-flex;
  color: #fff;
  font-weight: bold;
  font-family: lato;
  font-size: 1.1vw;
  padding: 6px 15px;
  width: 100%;
  border-radius: 0.4vw;
  transition: all 0.2s;
}
.contentSection .listing a:hover {
  color: #fbb32a;
  background: rgba(255, 255, 255, 0.1);
}
.contentSection .rightContentSec {
  padding-left: 5vw;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.contentSection .rightContentSec.border-none {
  border: 0;
  padding: 0;
}
.contentSection .rightContentSec .yellowTitle,
.contentSection .rightContentSec .innerTitle {
  color: #fbb32a;
  font-size: 2vw;
  font-weight: bold;
}
.contentSection .rightContentSec .yellowTitle.sm-title {
  font-size: 1.3vw;
}
.contentSection .rightContentSec .innerTitle {
  font-size: 1vw;
}
.contentSection .rightContentSec .para {
  font-family: lato;
  color: #fff;
  font-size: 1vw;
  margin-bottom: 2vw;
}
.contentSection .rightContentSec .subContent {
  padding: 0.5vw 0 2vw 2vw;
}
.contentSection .rightContentSec .subContent h5.yellowTitle {
  font-size: 1.5vw;
  margin-top: 1vw;
}
.contentSection .rightContentSec .subContent .subList {
  font-size: 1vw;
  color: #fff;
  list-style: disc outside;
  padding-left: 1vw;
}
.contentSection .rightContentSec .subContent .subList .innerListing {
  list-style: circle outside;
  padding-left: 1vw;
}

.autoSystm {
  max-width: 70vw;
  width: 100%;
  margin: 0 auto;
}

.grayedBox {
  background: rgba(54, 153, 232, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2vw 1.2vw;
  border-radius: 2vw;
  max-width: 100%;
  cursor: pointer;
}
.grayedBox.flex-1 {
  flex: 1;
}
.grayedBox:hover, .grayedBox.active {
  background: rgba(54, 153, 232, 0.2);
  border: 1px solid rgba(54, 153, 232, 0.1);
  color: #fff;
}
.grayedBox .smTitle {
  font-size: 1.5vw;
  color: #fbb32a;
  font-weight: 600;
}
.grayedBox p {
  color: #fff;
  font-size: 1.2vw;
  text-align: center;
}

.certifiedTitle {
  font-size: 2vw;
  font-weight: bold;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.8vw;
}
.certifiedTitle img {
  max-width: 1.4vw;
}

.phoneScreen {
  height: 600px;
  max-height: 60vh;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.phoneScreen.active, .phoneScreen.preview {
  display: block;
  opacity: 1;
}

.gap-6 {
  gap: 3vw;
}

.headingPara {
  font-size: 1.25vw;
  color: #fff;
  margin-top: 40px;
}

.contactUs .banner-content-box {
  background: rgba(0, 0, 0, 0.3);
  padding: 2.4vw 2.4vw;
  border-radius: 1.5vw;
  display: inline-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactUs .banner-content-box .bannersTitle {
  align-items: start;
}
.contactUs .contactForm {
  border-left: 1px solid #989898;
  padding: 0 0 0 2.5vw;
  justify-content: center;
  align-items: center;
}
.contactUs .para {
  font-family: lato;
  color: #fff;
  font-size: 1vw;
  margin-bottom: 2vw;
}
.contactUs .sm-title {
  font-size: 2.2vw;
}

.min-h-screen {
  min-height: 100vh;
}

.formsSection .hbspt-form {
  width: 100%;
  color: #fff;
}
.formsSection .hs-form-field {
  width: 100%;
}
.formsSection .hs_firstname.hs-form-field {
  width: 48.3%;
  display: inline-flex;
}
.formsSection .hs_lastname.hs-form-field {
  width: 48.1%;
  display: inline-flex;
}
.formsSection label {
  display: none;
}
.formsSection .input {
  width: 100%;
}
.formsSection input,
.formsSection select,
.formsSection textarea {
  border-radius: 0.4vw;
  border: 0;
  width: 100%;
  height: 2.4vw;
  padding: 0.3vw 1vw;
  font-size: 0.9vw;
}
.formsSection input.invalid, .formsSection input.error,
.formsSection select.invalid,
.formsSection select.error,
.formsSection textarea.invalid,
.formsSection textarea.error {
  box-shadow: 0 0 0px 2px rgba(255, 0, 0, 0.9);
}
.formsSection .hs-fieldtype-textarea {
  height: auto;
}
.formsSection form {
  display: flex;
  gap: 0.7vw;
  row-gap: 0.7vw;
  flex-wrap: wrap;
  justify-content: space-between;
}
.formsSection .hs-button {
  background: linear-gradient(to right, rgb(251, 179, 42) 0%, rgb(233, 68, 71) 100%);
  color: #fff;
  transition: all 0.3s;
  border: 0;
  padding: 0.4vw 3vw;
  height: auto;
  font-size: 1.1vw;
}
.formsSection .appleAds form {
  justify-content: start;
}
.formsSection .appleAds form .hs_firstname.hs-form-field {
  width: 100%;
}
.formsSection .appleAds form .hs_submit {
  margin: 0 auto;
}

.blogBannerSec .banner-section-inner {
  padding-bottom: 4vw;
  max-width: 60vw;
}
.blogBannerSec .sm-text {
  font-size: 1.2vw;
  font-weight: 500;
}
.blogBannerSec .bannersTitle {
  justify-content: start;
  align-items: start;
  font-size: 3vw;
}

.blogSection {
  background: #fff;
  padding: 1vw;
}
.blogSection .blogDetail {
  max-width: 90%;
  margin: 0 auto;
}
.blogSection .blogDetail .container {
  max-width: 60vw;
}
.blogSection li p {
  display: inline-flex;
}
.blogSection li p strong {
  margin: 0 2px;
}
.blogSection p.blog-post__summary {
  background: #efefef;
  border-radius: 0.3vw;
  padding: 1.3vw 2vw;
  color: #000;
  font-size: 1.3vw;
}
.blogSection p.blog-post__summary:empty {
  display: none;
}
.blogSection .blog-post__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3vw;
}
.blogSection .blog-post__bio {
  display: flex;
  gap: 2vw;
  align-items: center;
}
.blogSection .blog-post__bio .blog-post__author a {
  font-size: 1.8vw;
  font-weight: 800;
  color: #e94447;
}
.blogSection .blog-post__bio .blog-post__author .blog-post__timestamp {
  font-weight: bold;
  color: #000;
  font-size: 1.1vw;
}
.blogSection .blog-post__avatar {
  width: 8vw;
  height: 8vw;
  background-size: cover;
  background-position: center center;
  display: inline-flex;
  border-radius: 50%;
}
.blogSection .kl-social-link .kl-social-logos {
  display: inline-flex;
  width: 1.7vw;
  height: 1.7vw;
  background-size: cover !important;
  border-radius: 50%;
  overflow: hidden;
}
.blogSection .kl-social-link .kl-social-logos.kl-logo-facebook {
  background: url(https://3426102.fs1.hubspotusercontent-na1.net/hubfs/3426102/raw_assets/public/AFFLE_LATEST/NewtonAI/images/blog/fb_icon.svg) no-repeat center center;
}
.blogSection .kl-social-link .kl-social-logos.kl-logo-instagram {
  background: url(https://3426102.fs1.hubspotusercontent-na1.net/hubfs/3426102/raw_assets/public/AFFLE_LATEST/NewtonAI/images/blog/insta_icon.svg) no-repeat center center;
}
.blogSection .kl-social-link .kl-social-logos.kl-logo-twitter {
  background: url(https://3426102.fs1.hubspotusercontent-na1.net/hubfs/3426102/raw_assets/public/AFFLE_LATEST/NewtonAI/images/blog/x_icon.svg) no-repeat center center;
}
.blogSection .blog-post__tags {
  display: inline-flex;
  margin-top: 2vw;
  gap: 0.6vw;
  flex-wrap: wrap;
}
.blogSection .blog-post__tags a {
  background: rgba(54, 153, 232, 0.44);
  color: #fff;
  font-size: 1vw;
  padding: 0.3vw 1vw;
  border-radius: 0.3vw;
}
.blogSection .innerContainer p {
  font-size: 1.1vw;
  font-weight: 400;
  color: #000;
}
.blogSection hr {
  margin: 2.5vw 0;
}
.blogSection h2 {
  margin: 2vw 0 1vw !important;
  font-size: 2vw !important;
}
.blogSection h3 {
  font-size: 1.5vw !important;
  font-weight: 800 !important;
  margin-top: 2vw !important;
}
.blogSection ul {
  margin-bottom: 1vw;
}
.blogSection ul li {
  list-style: disc inside;
  font-size: 1vw;
}
.blogSection .blogImg {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4vw 0;
}
.blogSection .blogImg img {
  border-radius: 1vw;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}
.blogSection .innerContainer p img {
  border-radius: 1vw;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 45vw !important;
  margin: 2vw auto;
  display: flex;
}
.blogSection .innerContainer a {
  color: #e94447;
}
.blogSection .circles1,
.blogSection .circles2,
.blogSection .circles3,
.blogSection .circles4 {
  position: absolute;
  display: flex;
}
.blogSection .circles1 img,
.blogSection .circles2 img,
.blogSection .circles3 img,
.blogSection .circles4 img {
  max-width: 5.7vw;
}
.blogSection .circles1 {
  left: 0;
  top: 4%;
}
.blogSection .circles2 {
  right: 0;
  top: 40%;
}
.blogSection .circles3 {
  left: 0;
  top: 60%;
}
.blogSection .circles4 {
  right: 0;
  top: 90%;
}

.banner-section.sucsStoryDetl {
  height: auto;
  overflow: visible;
}
.banner-section.sucsStoryDetl figure.csBannerImg {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2vw;
  overflow: hidden;
  margin-bottom: -4vw;
}
.banner-section.sucsStoryDetl figure.csBannerImg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.banner-section.sucsStoryDetl .container {
  max-width: 60vw;
}

.caseStudyDetail {
  background: #fff;
  padding: 0;
}
.caseStudyDetail .resultBox .grayedBox {
  max-width: 24%;
}
.caseStudyDetail .grayedBox {
  background: #efefef;
  border-radius: 1.5vw;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: start;
  flex:1;
}
.caseStudyDetail .grayedBox h1,
.caseStudyDetail .grayedBox h2,
.caseStudyDetail .grayedBox h3,
.caseStudyDetail .grayedBox h4,
.caseStudyDetail .grayedBox h5 {
  color: #e94447;
  font-size: 1.3vw !important;
  font-weight: 800 !important;
  margin-top: 0 !important;
}
.caseStudyDetail .grayedBox p,
.caseStudyDetail .grayedBox p span {
  color: #000000;
  font-size: 0.9vw;
  margin: 0;
}
.caseStudyDetail .grayedBox li p {
  display: inline-flex;
}
.caseStudyDetail .redTitle {
  color: #e94447;
  font-size: 1.3vw;
  font-weight: 800;
}
.caseStudyDetail .smPara,
.caseStudyDetail p {
  color: #000000;
  font-size: 0.9vw;
  margin: 0;
}
.caseStudyDetail .contentSec {
  padding: 8vw 2vw 0;
  max-width: 60vw;
}
.caseStudyDetail .contentSec .row {
  justify-content: center;
  gap: 1.3vw;
}
.caseStudyDetail .heading,
.caseStudyDetail h2,
.caseStudyDetail h3,
.caseStudyDetail h4 {
  font-size: 2.2vw !important;
  font-weight: 800;
  margin: 0 auto !important;
  display: flex;
  justify-content: center;
  text-align: center;
}
.caseStudyDetail .graySection {
  background: rgba(239, 239, 239, 0.5);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  padding: 2vw;
  margin-top: 4vw;
}
.caseStudyDetail .graySection.flex-col {
  flex-direction: column;
  align-items: center;
}
.caseStudyDetail .graySection .contentBox {
  background: #fff;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2.5vw;
  padding: 2vw;
  border-radius: 2vw;
  width: 65%;
  position: relative;
  width: 56vw;
}
.caseStudyDetail .graySection .contentBox .sm-heading {
  color: #e94447;
  font-size: 1vw !important;
  font-weight: 800;
  text-align: center;
}
.caseStudyDetail .graySection .contentBox .smTitle {
  color: #000;
  font-weight: 800 !important;
  margin: 0 !important;
  font-size: 1.5vw !important;
}
.caseStudyDetail .graySection .contentBox figure {
  display: flex;
  width: 7vw;
  height: 7vw;
  border-radius: 50%;
  overflow: hidden;
  margin: 0;
}
.caseStudyDetail .graySection .contentBox figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.caseStudyDetail .graySection .contentBox:before, .caseStudyDetail .graySection .contentBox:after {
  content: "";
  display: inline-flex;
  width: 2.4vw;
  height: 2.4vw;
  position: absolute;
}
.caseStudyDetail .graySection .contentBox:before {
  top: 0;
  left: -3.5vw;
  background: url(https://3426102.fs1.hubspotusercontent-na1.net/hubfs/3426102/raw_assets/public/AFFLE_LATEST/NewtonAI/images/blog/quotes1.svg) no-repeat center center/contain;
}
.caseStudyDetail .graySection .contentBox:after {
  bottom: 0;
  right: -3.5vw;
  background: url(https://3426102.fs1.hubspotusercontent-na1.net/hubfs/3426102/raw_assets/public/AFFLE_LATEST/NewtonAI/images/blog/quotes2.svg) no-repeat center center/contain;
}

.blogListContainer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.successSec .blog-container.featured-success-story {
  min-width: 100%;
  display: flex !important;
  flex-direction: row;
  gap: 1.5vw;
}
.successSec .blog-container.featured-success-story figure {
  align-items: center;
  border-radius: 20px;
  display: flex;
  flex: 1;
  justify-content: center;
  margin: 0;
  max-width: none;
  overflow: hidden;
  width: auto;
}
.successSec .blog-container.featured-success-story figure img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.successSec .blog-container.featured-success-story .featureContent {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: 41.66666667%;
  justify-content: space-between;
}
.successSec .blog-container.featured-success-story .featureContent p {
  font-size: 36px;
  color: #e2a126;
  font-weight: 600;
}
.successSec .blog-container.featured-success-story .sm-label {
  font-size: 1vw;
}

.blog-sec .blog-container.hidden-post {
  display: none;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999999;
  font-size: 24px;
  background: linear-gradient(45deg, #140069 0%, #ae008b 100%);
}

#lottie-container {
  width: 15vw;
  height: 15vw;
  transform: rotate(45deg);
}

.asoSlider .container {
  max-width: 70vw;
}
.asoSlider .owl-stage .item {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(54, 153, 232, 0.1);
}
.asoSlider .owl-stage .border-r {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.asoSlider .owl-stage figure {
  margin-bottom: 0;
}
.asoSlider .owl-stage img {
  max-height: 600px;
  margin: 3vw 0;
}
.asoSlider .owl-stage .appStore {
  display: flex;
  gap: 1.2vw;
  justify-content: space-between;
}
.asoSlider .owl-stage .appStore a {
  max-width: 48%;
  flex: 1;
}
.asoSlider .owl-stage .appStore img {
  margin: 2vw 0 0;
}
.asoSlider h3 {
  font-size: 1.7vw;
}
.asoSlider p {
  font-size: 1.2vw;
}

.asoImg .feature-item-inner {
  padding: 3vw;
  background: rgba(54, 153, 232, 0.1);
  border-radius: 30px;
}

.contentColumn .container {
  gap: 2vw;
}
.contentColumn .gridContain {
  display: flex;
}

.grayBox {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(54, 153, 232, 0.1);
  max-width: 25%;
  flex: 1;
  overflow: hidden;
}
.grayBox .yellowHeading {
  color: #000000;
  font-size: 1.2vw;
  display: flex;
  justify-content: center;
  padding: 1vw 0;
  font-weight: 900;
  background: #fbb32a;
}
.grayBox ul.contentUl {
  padding: 0.8vw;
}
.grayBox ul.contentUl li {
  color: #fff;
  font-family: Lato;
  font-size: 1.1vw;
  display: flex;
  justify-content: center;
  padding: 0.8vw 0;
  text-align: center;
  width: 100%;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}
.grayBox ul.contentUl li:last-child {
  border: 0;
}

.asoSection h3 {
  font-size: 1.8vw;
}

.appStoreOptimize img {
  max-width: 100%;
  margin-left: 1vw;
}
@media screen and (max-width: 1500px) {
  .appStoreOptimize img {
    max-height: 400px;
  }
}
.appStoreOptimize .mt-n {
  position: relative;
  margin-top: -5vw;
  margin-right: -3vw;
}

.hs-content-id-192630681179 .bannersTitle {
  font-size: 3.8vw;
  text-shadow: 5px 6px rgba(0, 0, 0, 0.1);
}

.releaseHistory table.releaseTable {
  width: 80%;
  margin: 3vw auto;
  vertical-align: top;
}
.releaseHistory table.releaseTable > thead th, .releaseHistory table.releaseTable > tbody th {
  background: rgba(255, 255, 255, 0.1);
}
.releaseHistory table.releaseTable > thead td, .releaseHistory table.releaseTable > thead th, .releaseHistory table.releaseTable > tbody td, .releaseHistory table.releaseTable > tbody th {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1vw;
  vertical-align: top;
  font-weight: normal;
  padding: 10px 10px;
}
.releaseHistory table.releaseTable > thead td td, .releaseHistory table.releaseTable > thead th td, .releaseHistory table.releaseTable > tbody td td, .releaseHistory table.releaseTable > tbody th td {
  border: 0;
}
.releaseHistory table.releaseTable .w-40 {
  width: 40%;
}

.appleAdsLogo {
  max-width: none;
  display: inline-flex;
  align-items: center;
}
.appleAdsLogo img {
  max-width: 100%;
  max-height: 2.2vw;
}
@media screen and (max-width: 980px) {
  .appleAdsLogo img {
    max-height: 35px;
  }
}
@media screen and (max-width: 767px) {
  .appleAdsLogo img {
    max-height: 28px;
  }
}

@media only screen and (min-width: 1950px) {
  .container {
    max-width: 65%;
  }
}
@media only screen and (min-width: 1600px) {
  .banner-section {
    overflow: hidden;
  }
  .banner-section .banner-section-inner {
    height: 100%;
    position: relative;
  }
  .banner-section .screenpusher {
    height: auto;
  }
  .ace-growth-section .owl-slider {
    max-width: 1240px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1550px) {
  .banner-section.opticks-ai-banner .banner-content-box .title {
    max-width: 40vw;
  }
  .opticksai-video-section .content-box .logo {
    max-width: 220px;
  }
  .sliderSec .sliderContent .innerSliderCont {
    font-size: 12px;
  }
  .sliderSec .sliderContent .sliderImgSec:before {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: -15px;
    left: -15px;
    border-radius: 15px;
  }
  .banner-section.opticks-ai-banner .full_image_bg .bg-mobile {
    max-width: 100%;
  }
  .opticksai-video-section .content-box .video-box:after {
    left: 20px;
  }
  .sliderSec2 .owl-theme .owl-dots .owl-dot span,
  .banner-section .banner-section-inner .owl-theme .owl-dots .owl-dot span {
    width: 24px;
    height: 8px;
    margin: 0 3px;
  }
  .sliderSec2 h5 {
    font-size: 2.4vw;
  }
  .sliderSec2 {
    color: #fff;
    font-size: 17px;
  }
  .sliderSec2 ul li {
    margin: 0 auto 10px;
  }
  .section-title .title {
    font-size: 36px;
  }
  .yellowText {
    font-size: 36px;
  }
  .opticks-feature .opticks-feature-inner h3.title,
  .opticksai-video-section .section-title .title {
    font-size: 36px;
    margin: 0 auto 20px;
    font-weight: bold;
  }
  .banner-section.opticks-ai-banner .banner-content-box .title.no-max {
    max-width: 70%;
    margin-bottom: 10px;
  }
  .banner-section.opticks-ai-banner .banner-content-box .title .opticksLogo {
    margin: 9px 0 0 10px;
  }
  .primaryBtn,
  .secondaryBtn {
    font-size: 16px;
  }
  .appPerformance {
    max-width: 900px;
    margin: 0 auto;
  }
  .opticks-feature .opticks-feature-inner .headingPara {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto;
  }
  .divContain p {
    font-size: 16px;
  }
  .opticks-feature .opticks-feature-inner .circleRound {
    max-width: 280px;
  }
  .opticks-feature-inner .newtonIndexContainer {
    gap: 1.5rem;
    justify-content: center;
  }
  .opticks-feature-inner .newtonIndexContainer .divContain .text {
    font-size: 18px;
  }
  .opticks-feature-inner .newtonIndexContainer .divContain p {
    font-size: 1.04vw;
  }
  .opticks-feature-inner .newtonIndexContainer .newtonIndex .h-70 {
    height: 300px;
    min-height: 0;
  }
  .banner-section.opticks-ai-banner .banner-section-inner {
    transform: translate(0, -30%);
  }
  .contentBannerBg .bannersTitle .shadowed {
    width: auto;
  }
  .contentBannerBg {
    min-height: 60vh;
  }
  .contentBannerBg .banner-section-inner:not(.formsSection) .bannersTitle .shadowed {
    display: flex;
    justify-content: center;
  }
  .blogBannerSec .banner-section-inner {
    padding-bottom: 4vw;
    padding-top: 12vw;
  }
  .banner-section .whiteTextBox p,
  .banner-section .whiteTextBox .desig {
    font-size: 12px;
  }
  .banner-section .whiteTextBox h4.bolder {
    font-size: 14px;
  }
  .contentBannerBg .banner-section-inner {
    padding-top: 10vw;
  }
  .banner-section .banner-section-inner .banner-content .content-area {
    padding: 60px 40px 0;
  }
  .banner-section .banner-section-inner .content-area-inner {
    height: auto;
  }
  .banner-section .banner-section-inner .banner-content .content-area .cta {
    display: flex;
    margin-top: 40px;
  }
  #banner-carousel .primaryBtn {
    font-size: 13px;
  }
  .banner-section .banner-section-inner .banner-content .content-area .title {
    margin-bottom: 20px;
  }
  .thanksPage h4 {
    font-size: 18px;
  }
  .banner-section .bannerImgSec img.objectContain {
    max-height: 440px;
  }
  .opticks-ai-banner .banner-section-inner .banner-content-box {
    max-width: 60%;
  }
}
@media only screen and (max-width: 1400px) {
  .header-section .menu {
    gap: 30px;
  }
  .header-section .menu .menu-item a {
    font-size: 12px;
  }
  .banner-section .content {
    width: 100%;
  }
  .banner-section .banner-section-inner .banner-content .content-area .title {
    font-size: 30px;
  }
  .banner-section .banner-section-inner .banner-content .content-area p {
    font-size: 18px;
  }
  .banner-section .stats-section .number {
    font-size: 50px;
  }
  .banner-section .stats-section .text {
    font-size: 16px;
  }
  .feature-section .tab-section .accordion-body .content-list li {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .feature-section .tab-section .accordion-body .content-image {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 400px;
  }
  .feature-section .tab-section .accordion-body .content {
    margin-top: 40px;
  }
  .feature-section .tab-section .accordion-body .title {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 10px;
  }
  .feature-section .tab-section .accordion-body .sub-title {
    font-size: 22px;
  }
  .testimonial-section .owl-slider .content .name {
    font-size: 21px;
  }
  .testimonial-section .owl-slider .content .designation {
    font-size: 16px;
  }
  .testimonial-section .owl-slider .content p {
    font-size: 14px;
  }
  .testimonial-section .owl-slider .content .rating-comments .rating-icon img {
    width: 20px;
    height: 20px;
    align-items: center;
  }
  .blog-section .section-title .sub-title {
    font-size: 32px;
    margin-top: 40px;
  }
  .cta-section .content .title {
    font-size: 28px;
  }
  .cta-section .content .cta a {
    display: inline-block;
    padding: 7px 20px 7px;
    border-radius: 6px;
  }
  .footer-section .footer-box h3 {
    font-size: 16px;
  }
  .footer-section .footer-box a {
    font-size: 14px;
  }
  .footer-section .logo-box p {
    font-size: 14px;
  }
  .successSec .blog-container.featured-success-story .featureContent p {
    font-size: 32px;
  }
  .successSec .blog-container .sm-label {
    font-size: 12px;
  }
  .successSec .blog-container .arrowIcon {
    width: 30px;
  }
  .successSec .blog-container .featureContent {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .successSec .blog-container.featured-success-story figure img {
    object-fit: contain;
  }
  .banner-section.opticks-ai-banner.telescopeB {
    height: 660px;
    max-height: none;
    min-height: 0;
  }
  .opticks-ai-banner .banner-section-inner .banner-content-box {
    max-width: 60%;
  }
  .banner-section .bannerImgSec img.objectContain {
    max-height: 370px;
    object-fit: contain;
  }
  .figureBtn {
    bottom: 35px;
    left: 80px;
  }
}
@media only screen and (max-width: 1200px) {
  .banner-section .banner-section-inner .banner-content .content-area {
    width: calc(50% - 25px);
    padding: 10px 40px 0;
  }
  .banner-section .banner-section-inner .content-area-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .banner-section .banner-section-inner .banner-content .content-area .cta {
    margin-top: 0;
  }
  .banner-section .banner-section-inner .banner-content .content-area .title {
    margin-bottom: 10px;
  }
  .banner-section .banner-section-inner .banner-content .image-area {
    width: calc(50% - 25px);
  }
  .feature-section .tab-section .accordion-body .content-list {
    width: calc(50% - 25px);
  }
  .feature-section .tab-section .accordion-body .content-list li {
    display: flex;
    align-items: center;
  }
  .blog-section .section-title .sub-title {
    font-size: 25px;
    margin-top: 30px;
  }
  .cta-section {
    padding-bottom: 60px;
  }
  .banner-section.opticks-ai-banner.telescopeB {
    min-height: 660px;
    height: auto;
  }
  .banner-section .bannerImgSec img.objectContain {
    max-height: 300px;
  }
  .opticks-ai-banner .banner-section-inner .banner-content-box {
    max-width: 60%;
  }
  .banner-section.opticks-ai-banner {
    min-height: 0;
    height: 560px;
  }
  .banner-section.opticks-ai-banner .banner-section-inner {
    transform: translate(0, -40%);
  }
  .cta.centered {
    padding: 30px 0 0;
  }
  .opticks-slider-section {
    padding: 30px;
  }
  .divContain {
    gap: 10px;
  }
  .divContain p {
    font-size: 12px;
  }
  .opticks-feature .feature-item-inner {
    padding: 20px 10px 20px;
    gap: 20px;
  }
  .min-vh-100 {
    min-height: 70vh !important;
  }
  .min-h-screen {
    min-height: 60vh;
  }
  .contactUs .para {
    font-size: 15px;
  }
  .contentBannerBg {
    min-height: 360px;
  }
  .contentSection {
    padding: 50px 0;
  }
  .banner-section.sucsStory.careersPage {
    height: 60vw;
  }
  .banner-section.blogBanner {
    height: 100vh;
    max-height: 530px;
  }
  .blogBanner .banner-section-inner {
    padding-top: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translate(0, -38%);
    top: 50%;
  }
  .blogBannerImg {
    height: 100vh;
    max-height: 600px;
  }
  .blogBannerImg img {
    height: 100%;
  }
  .recent-blog {
    min-width: 0;
    width: auto;
  }
  .recent-blog .recent-blogs-sec {
    flex: 1;
  }
  .recent-blog .btn {
    font-size: 12px;
  }
  .recent-blog .recent-content {
    flex: 1;
    align-content: center;
  }
  .recent-blog .recent-content .sm-label {
    font-size: 10px;
  }
  .recent-blog .recent-content h2 {
    font-size: 11px;
  }
  .recent-blog .arrowSend {
    width: 20px;
    height: 20px;
  }
  .blog-image {
    width: 100%;
  }
  .blog-sec .blog-container .sm-label {
    font-size: 12px;
  }
  .banner-section .whiteTextBox p,
  .banner-section .whiteTextBox .desig {
    font-size: 12px;
  }
  .banner-section .whiteTextBox h4.bolder {
    font-size: 14px;
  }
  .filterSec .btn {
    font-size: 12px;
    border-radius: 6px;
  }
  .banner-section.sucsStory {
    min-height: 615px;
    height: auto;
  }
  .banner-section.sucsStory .sucsStoryImg {
    height: 100%;
  }
  .banner-section.sucsStory .sucsStoryImg img {
    height: 100%;
  }
  .blog-sec.successSec .blog-container figure {
    border-radius: 10px;
    overflow: hidden;
  }
  .blog-sec.successSec .blog-container figure img {
    object-fit: cover;
  }
  .successSec.pt-70 {
    padding-top: 50px;
  }
  .successSec .blog-container.featured-success-story figure {
    width: 100%;
    height: 250px;
    border-radius: 15px;
  }
  .successSec .blog-container.featured-success-story figure img {
    object-fit: cover;
  }
  .successSec .blog-container.featured-success-story .featureContent p {
    font-size: 28px;
  }
  .successSec .blog-container .badge {
    font-size: 10px;
  }
  .successSec .blog-container p {
    font-size: 14px;
  }
  .header-section .header-section-inner.container {
    max-width: 90%;
  }
  .figureBtn {
    bottom: 28px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-section .banner-section-inner .banner-content .content-area .cta a {
    padding: 8px 10px;
    border-radius: 8px;
  }
  .banner-section .banner-section-inner .banner-content .content-area .title {
    font-size: 24px;
  }
  .banner-section .banner-section-inner .banner-content .content-area p {
    font-size: 15px;
  }
  .banner-section .banner-section-inner .content-area-inner {
    height: 200px;
  }
  .banner-section.opticks-ai-banner.telescopeB {
    height: 660px;
    max-height: none;
    min-height: 0;
  }
}
@media only screen and (max-width: 992px) {
  .header-section {
    padding-top: 30px;
  }
  .tab-content.accordion .accordion-header {
    display: none;
  }
  .py-70 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .testimonial-section .owl-slider .item {
    padding: 30px 25px;
  }
  .blog-section .section-title {
    padding-right: 0;
  }
  .blog-section .section-title .sub-title {
    font-size: 20px;
    margin-top: 14px;
  }
  .banner-section .stats-section .number {
    font-size: 35px;
  }
  .banner-section .stats-section .text {
    font-size: 14px;
  }
  .section-title .title {
    font-size: 28px;
    margin-bottom: 0;
  }
  .section-title .yellowText {
    font-size: 28px;
  }
  .ace-growth-section .item {
    padding: 30px 0 0;
  }
  .primaryBtn,
  .secondaryBtn {
    font-size: 1.5vw;
  }
  .primaryBtn img,
  .secondaryBtn img {
    width: 2vw;
  }
  .banner-section .banner-section-inner {
    padding-top: 130px;
  }
  .banner-section .banner-section-inner .banner-content {
    gap: 0;
  }
  .banner-section .banner-section-inner .banner-content .content-area {
    padding: 10px 0px 0 40px;
    width: calc(60% - 25px);
  }
  .banner-section .banner-section-inner .banner-content .content-area .content-area-inner {
    height: 150px;
  }
  .banner-section .banner-section-inner .banner-content .content-area .title {
    font-size: 18px;
  }
  .banner-section .banner-section-inner .banner-content .content-area p {
    font-size: 13px;
  }
  .banner-section .banner-section-inner .banner-content .content-area .cta a {
    padding: 8px 15px;
    border-radius: 8px;
  }
  .banner-section .banner-section-inner .banner-content .image-area {
    width: 40%;
  }
  .testimonial-section-inner.container .owl-slider.aos-init.aos-animate {
    margin-bottom: 0;
    margin-top: 40px;
  }
  .blog-section .post-box {
    border-radius: 10px;
  }
  .cta-section .content .title {
    font-size: 22px;
  }
  .footer-section .footer-box h3 {
    margin-bottom: 15px;
    margin-top: 10px;
  }
  .footer-section .logo-box {
    padding-right: 30px;
  }
  .footer-section .logo-box .logo-box-inner {
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
  }
  .footer-section .logo-box .logo-box-inner p {
    max-width: 60%;
    margin: 0;
  }
  .footer-section .logo-box .logo-box-inner img.img-fluid:not(.logo-image) {
    max-width: 180px;
    margin-top: -70px;
  }
  .footer-section .footer-box {
    gap: 20px;
  }
  .footer-section .footer-box li {
    margin-bottom: 2px;
  }
  .footer-section .footer-box li a {
    font-size: 12px;
  }
  .footer-section .copyright {
    display: flex;
    align-items: center;
  }
  .footer-section .copyright-text {
    font-size: 12px;
  }
  .feature-section .tab-section .accordion-body .content {
    flex-direction: column;
    margin-top: 30px;
    gap: 10px;
  }
  .feature-section .tab-section .accordion-body .content-image {
    width: 100%;
    height: 360px;
  }
  .feature-section .tab-section .accordion-body .content-list {
    width: 100%;
  }
  .feature-section .tab-section .accordion-body .content-list ul {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .feature-section .tab-section .accordion-body .content-list ul li {
    margin-bottom: 10px;
  }
  .feature-section .tab-section .accordion-body .content-list ul li .icon {
    min-width: 20px;
    width: 20px;
    height: 20px;
    line-height: 16px;
  }
  .feature-section .tab-section .accordion-body .content-list ul li .icon img {
    width: 16px;
  }
  .header-section .menu {
    display: none;
  }
  .header-section .menu .menu-item:last-child {
    margin-bottom: 0;
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 20px;
    align-items: center;
  }
  .header-section .menu .menu-item:last-child .btn--transparent {
    color: #fff;
    background: linear-gradient(to right, rgb(251, 179, 42) 0%, rgb(233, 68, 71) 100%);
    padding: 10px 20px;
    border-radius: 10px;
  }
  .header-section .menu-icon {
    display: block;
  }
  .header-section .menu-icon svg,
  .header-section .close-menu-icon svg {
    fill: #fff;
  }
  .menu-show .header-section .menu {
    display: block;
    width: 100%;
    backdrop-filter: blur(11px);
    background: rgba(0, 0, 0, 0.6);
    height: 100svh;
  }
  .menu-show .header-section .menu .menu-item a {
    color: #fff;
  }
  .menu-show .header-section .close-menu-icon {
    right: -50px;
  }
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
  .menu-show .header-section .close-menu-icon {
    right: -5px;
  }
}
@media only screen and (max-width: 992px) {
  .banner-section.opticks-ai-banner.telescopeB {
    min-height: 450px;
    height: auto;
  }
  .banner-section .bannerImgSec img.objectContain {
    max-height: 240px;
  }
  .opticks-feature .feature-item.asaItem .feature-item-inner {
    padding: 3vw 1vw;
  }
  .opticks-feature .opticks-feature-inner h3.title,
  .opticksai-video-section .section-title .title {
    font-size: 3.4vw;
    margin: 0 auto 20px;
  }
  .section-title .title.mb-5 {
    margin-bottom: 2rem !important;
  }
  .sliderSec2 .owl-theme .owl-dots .owl-dot {
    margin-top: 10px;
  }
  .telescopeSlider .large-12.mt-5 {
    margin-top: 0rem !important;
  }
  .section-title + .row.mt-5 {
    margin-top: 1rem !important;
  }
  .opticks-feature .feature-item {
    padding-bottom: 0;
  }
  .opticks-feature .opticks-feature-inner .headingPara {
    font-size: 14px;
    max-width: 80%;
    display: inline-flex;
    width: 100%;
  }
  .grayedBox p {
    margin: 0;
  }
  .opticks-feature .feature-item .icon {
    width: 40px;
    height: 40px;
  }
  .opticks-feature .feature-item-inner {
    gap: 20px;
    padding: 20px 10px 20px;
  }
  .opticks-feature .feature-item .text {
    font-size: 1.6vw;
    line-height: 1.5;
  }
  .banner-section.opticks-ai-banner {
    min-height: 43vh;
  }
  .banner-section.opticks-ai-banner .banner-content-box p {
    font-size: 14px;
    margin: 10px 0 !important;
  }
  .opticks-feature-inner .newtonIndexContainer .newtonIndex .h-70 {
    height: auto;
  }
  .opticks-feature .feature-item.newtonIndex .feature-item-inner .iconLg {
    max-width: 70px;
  }
  .opticks-feature-inner .newtonIndexContainer .divContain .text {
    font-size: 14px;
  }
  .opticks-feature-inner .newtonIndexContainer .divContain p {
    font-size: 10px;
  }
  .opticks-feature .feature-item.newtonIndex .feature-item-inner .divContain {
    gap: 8px;
  }
  .min-vh-100 {
    min-height: 500px !important;
  }
  .min-h-screen {
    min-height: 400px;
  }
  .contactUs .para {
    font-size: 13px;
  }
  .banner-content-box > div {
    padding: 0 20px 0 30px !important;
    width: 48%;
  }
  .contactUs .contactForm {
    padding: 0 30px 0 30px !important;
    width: auto;
    min-width: 0;
  }
  .formsSection input,
  .formsSection select,
  .formsSection textarea {
    height: 30px;
    font-size: 10px;
  }
  .formsSection .hs-fieldtype-textarea {
    height: 70px;
  }
  .formsSection .hs-button {
    font-size: 12px;
    height: auto;
    line-height: 1;
    padding: 10px 12px;
  }
  .contentBannerBg {
    min-height: 260px;
  }
  .contentBannerBg .bannersTitle {
    padding: 0 !important;
  }
  .contentSection .rightContentSec .yellowTitle.sm-title {
    font-size: 14px;
  }
  .contentSection .rightContentSec .para {
    font-size: 11px;
  }
  .contentSection .rightContentSec .subContent h5.yellowTitle {
    font-size: 12px;
    margin-top: 10px;
  }
  .contentSection .rightContentSec .subContent .subList {
    font-size: 10px;
  }
  .contentSection {
    padding: 50px 0;
  }
  .banner-section.sucsStory.careersPage {
    height: 40vw;
  }
  .careersPage .careerForm .locateSearch,
  .careersPage .careerForm select#locationSelect {
    padding: 10px 0 10px 25px;
    font-size: 10px;
  }
  .careersPage .careerTable table th .applyBtn,
  .careersPage .careerTable table td .applyBtn,
  .careersPage .careerTable .table > * th .applyBtn,
  .careersPage .careerTable .table > * td .applyBtn {
    font-size: 10px;
    line-height: normal;
    height: auto;
    padding: 6px 20px 8px;
  }
  .careersPage .share {
    width: 15px;
    height: 15px;
  }
  .careersPage .careerTable table th h2,
  .careersPage .careerTable table td h2,
  .careersPage .careerTable .table > * th h2,
  .careersPage .careerTable .table > * td h2 {
    font-size: 13px;
  }
  .careersPage .careerTable table th p,
  .careersPage .careerTable table td p,
  .careersPage .careerTable .table > * th p,
  .careersPage .careerTable .table > * td p {
    font-size: 10px;
  }
  .careersPage .careerForm input {
    height: 35px;
    padding: 0 10px 0 25px;
    flex: 1;
    background: rgba(0, 0, 0, 0);
    border: 0;
    color: #fff;
    font-size: 10px;
  }
  .blogBanner .banner-section-inner {
    padding-top: 0;
    transform: translateY(-41%);
  }
  .blogBanner .banner-section-inner .blog-image {
    width: 100%;
    padding: 0 !important;
  }
  .blogBanner .banner-section-inner .recent-blog {
    display: none !important;
  }
  .searchBar input.searchGry {
    font-size: 14px;
  }
  .searchBar .searchBtn {
    width: 16px;
    height: 20px;
    background-size: contain;
    padding: 0;
    left: 10px;
    top: 20px;
  }
  .blog-sec .blog-container .sm-label {
    font-size: 10px;
  }
  .blog-sec .blog-container p {
    font-size: 12px;
  }
  .blog-sec .blog-container .onActive,
  .blog-sec .blog-container .onDactive {
    width: 25px;
  }
  .filterSec .btn {
    font-size: 12px;
    border-radius: 6px;
  }
  .blogListContainer {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-sec .blog-container.updates {
    grid-column: 3;
  }
  .blog-sec .blog-container.updates h3.title {
    font-size: 18px;
  }
  .blog-sec .blog-container.updates .inputForm input,
  .blog-sec .blog-container.updates .inputForm select {
    font-size: 12px;
    padding: 10px 10px;
  }
  .blog-sec .blog-container.updates .inputForm .btn,
  .blog-sec .blog-container.updates .inputForm .hs-button.primary,
  .blog-sec .blog-container.updates .inputForm .yellowBtn {
    font-size: 12px;
  }
  .blog-sec .pt-70 {
    padding-top: 50px;
  }
  .blog-sec .yellowBtn {
    font-size: 12px;
  }
  .blogBannerSec .banner-section-inner {
    padding-top: 110px;
    max-width: 70vw;
  }
  .blogSection .blogDetail .container {
    max-width: 70vw;
  }
  .blogSection .innerContainer p,
  .blogSection .innerContainer p.blog-post__summary {
    font-size: 10px;
  }
  .blogSection .innerContainer p img,
  .blogSection .innerContainer p.blog-post__summary img {
    max-width: 100% !important;
  }
  .blogSection ul li {
    font-size: 9px;
  }
  .blogSection .kl-social-link .kl-social-logos {
    width: 18px;
    height: 18px;
  }
  .blogSection .blog-post__tags a {
    font-size: 8px;
  }
  .banner-section.sucsStory {
    min-height: 600px;
  }
  .banner-section.sucsStory .sucsStoryImg {
    height: 100%;
    display: flex;
  }
  .banner-section.sucsStory .banner-content-box > div:not(.careerForm) {
    padding: 0 10px 0 0px !important;
    width: 50%;
  }
  .banner-section.sucsStory .banner-content-box > div:not(.careerForm) p {
    margin-top: 10px !important;
  }
  .filterSection .d-flex .roundedBox figcaption.vertical,
  .filterSection .d-flex .roundedBox figcaption.horizontal {
    font-size: 12px;
  }
  .successSec .blog-container.featured-success-story {
    border-radius: 15px;
    padding: 12px;
    flex-direction: column;
  }
  .successSec .blog-container.featured-success-story .sm-label {
    font-size: 12px;
  }
  .successSec .blog-container.featured-success-story .featureContent {
    width: 100%;
  }
  .successSec .blog-container.featured-success-story .featureContent p {
    font-size: 21px;
  }
  .header-section .menu .menu-item.has-child a {
    display: none;
  }
  .header-section .menu .menu-item.has-child:hover ul.sub-menu {
    display: none;
  }
  .header-section .menu .menu-item.has-child:hover .show ul.sub-menu {
    display: flex;
  }
  .header-section .menu .menu-item .accordion-item {
    background: none;
    border: 0;
  }
  .header-section .menu .menu-item .accordion-item .accordion-header {
    border: 0;
  }
  .header-section .menu .menu-item .accordion-item .accordion-button,
  .header-section .menu .menu-item .accordion-item .accordion-button:focus,
  .header-section .menu .menu-item .accordion-item .accordion-button:active {
    background: none;
    color: #fff;
    padding: 10px 0px;
    border: 0;
    font-size: 22px;
    box-shadow: none;
    margin-bottom: 0;
  }
  .header-section .menu .menu-item .show .sub-menu {
    position: relative;
    top: 0;
    display: flex;
    flex-direction: column;
  }
  .header-section .menu .menu-item .show .sub-menu .menu-item {
    margin: 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 0px 0;
    border-bottom: 1px solid #6b6b6b;
    backdrop-filter: blur(10px);
  }
  .header-section .menu .menu-item .show .sub-menu .menu-item a {
    font-size: 16px;
    display: inline-flex;
    width: 100%;
  }
  .header-section .menu .menu-item .show .sub-menu .menu-item:last-child {
    position: relative;
    bottom: auto;
  }
  #banner-carousel .primaryBtn {
    font-size: 12px;
  }
  .banner-section.opticks-ai-banner .banner-content-box .cta {
    padding: 0 0px 0 0px !important;
    width: 100%;
  }
  .banner-section.sucsStoryDetl .container,
  .caseStudyDetail .contentSec {
    max-width: 80vw;
  }
  .caseStudyDetail .graySection .contentBox {
    width: 66vw;
  }
  .contentSection .rightContentSec .innerTitle {
    font-size: 13px;
  }
  .figureBtn {
    bottom: 37px;
  }
  .thanksPage h4 {
    font-size: 14px;
  }
  .phoneScreen {
    height: 200px;
    max-height: 60vh;
  }
  .asoImg .feature-item-inner {
    border-radius: 10px;
  }
  .grayBox {
    border-radius: 10px;
  }
  .asoSlider p {
    font-size: 12px;
  }
  .asoSlider h3 {
    font-size: 15px;
  }
  .asoSlider h5 {
    font-size: 25px;
  }
  .asoSlider .owl-stage .item {
    border-radius: 15px;
  }
  .asoSlider .container {
    max-width: 90vw;
  }
  .asoSlider .container .col-md-6 {
    padding: 0 20px !important;
  }
  .asoSlider .owl-theme .owl-dots {
    line-height: 0;
    min-height: 0;
  }
  .asoSlider .owl-theme .owl-dots .owl-dot {
    margin-top: 0;
  }
  .graphSec.pt-70 {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 850px) {
  .banner-section.opticks-ai-banner {
    min-height: 400px;
    height: auto;
  }
  .opticks-slider-section-inner .section-title {
    margin-bottom: 30px;
  }
  .footer-section .logo-box .logo-box-inner p {
    max-width: 100%;
    font-size: 12px;
  }
  .footer-section .logo-box .logo-box-inner img.img-fluid:not(.logo-image) {
    max-width: 180px;
    margin-top: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    max-width: 90%;
  }
  .header-section {
    padding-top: 20px;
  }
  .banner-section .banner-section-inner {
    padding-top: 100px;
  }
  .banner-section .banner-section-inner .bg-image {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(40px);
  }
  .banner-section .banner-section-inner .bg-image > img.pattern {
    display: none;
  }
  .banner-section .banner-section-inner .banner-content {
    position: relative;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .banner-section .banner-section-inner .banner-content .content-area,
  .banner-section .banner-section-inner .banner-content .image-area {
    width: 100%;
    padding: 0px 0px;
  }
  .banner-section .banner-section-inner .banner-content .content-area .content-area-inner,
  .banner-section .banner-section-inner .banner-content .image-area .content-area-inner {
    height: auto;
  }
  .banner-section .banner-section-inner .owl-theme .owl-dots {
    margin-top: 10px;
  }
  .banner-section .banner-section-inner #banner-carousel .primaryBtn {
    font-size: 10px;
  }
  .banner-section .stats-section {
    padding-top: 0px;
    padding-bottom: 20px;
  }
  .banner-section .stats-section .number {
    font-size: 25px;
    letter-spacing: 1px;
  }
  .banner-section .stats-section .text {
    font-size: 12px;
  }
  .banner-section .logoSec {
    margin: 20px auto;
  }
  .banner-section .logoSec img {
    max-width: 250px;
  }
  .blogBannerSec .banner-section-inner {
    padding-top: 80px;
    max-width: 90vw;
  }
  .blogBannerSec .sm-text {
    font-size: 12px;
  }
  .blogBannerSec .bannersTitle {
    font-size: 30px !important;
    text-align: left !important;
  }
  .blogSection .blog-post__bio .blog-post__author a {
    font-size: 12px;
  }
  .blogSection .blog-post__bio .blog-post__author .blog-post__timestamp {
    font-size: 14px;
  }
  .blogSection .kl-social-sharing {
    display: inline-flex;
    gap: 10px;
    justify-content: end;
  }
  .blogSection .kl-social-sharing .kl-social-link {
    display: inline-flex;
  }
  .blogSection .kl-social-sharing .kl-social-link .kl-social-logos {
    height: 22px;
    width: 22px;
  }
  .blogSection .kl-social-sharing .kl-social-link .kl-social-logos.kl-logo-email {
    display: none;
  }
  .blogSection .kl-social-link .kl-social-logos {
    height: 14px;
    width: 14px;
    border-radius: 50%;
  }
  .blogSection .blog-post__tags a {
    font-size: 10px;
    border-radius: 3px;
    color: #fff;
    padding: 3px 10px;
  }
  .blogSection .blog-post__avatar {
    height: 50px;
    width: 50px;
  }
  .blogSection .blog-post__author {
    align-content: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .blogSection .innerContainer p,
  .blogSection .innerContainer p.blog-post__summary {
    font-size: 12px !important;
  }
  .blogSection ul li {
    font-size: 10px;
    padding: 4px 0;
    color: #515151;
  }
  .blogSection ul li br {
    display: none;
  }
  .blogSection h2 {
    font-size: 16px !important;
    font-weight:bold;
  }
  .blogSection h3 {
  font-size: 14px !important;
  }
  
  .blogSection .blogDetail {
    max-width: 100%;
  }
  .blogSection .blogDetail .container {
    max-width: 90vw;
  }
  .blogSection .innerContainer p img {
    border-radius: 13px;
  }
  .blogSection p.blog-post__summary {
    font-size: 10px;
    padding: 13px 20px;
    border-radius: 10px;
  }
  .blogSection {
    padding: 20px;
  }
  .trusted-partner-section .owl-carousel {
    margin-top: 40px;
  }
  .trusted-partner-section .owl-carousel:before, .trusted-partner-section .owl-carousel:after {
    width: 60px;
  }
  .primaryBtn,
  .secondaryBtn {
    font-size: 10px;
  }
  .primaryBtn img,
  .secondaryBtn img {
    width: 12px;
  }
  .feature-section .tab-section .accordion-body .content-image {
    height: auto;
  }
  .feature-section .tab-section .accordion-body .content-list li {
    font-size: 13px;
  }
  .feature-section .tab-section .accordion-body .title {
    font-size: 26px;
  }
  .feature-section .tab-section .accordion-body .sub-title {
    font-size: 16px;
  }
  .testimonial-section .owl-slider {
    padding: 0 40px;
  }
  .testimonial-section .owl-slider .owl-slider .content p {
    font-size: 12px;
  }
  .blog-section .section-title .sub-title {
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 20px;
  }
  .post-box:not(.featured-post) {
    margin-bottom: 20px;
  }
  .cta-section.py-70 {
    padding-top: 0;
  }
  .cta-section.py-70 .content .title {
    font-size: 18px !important;
    line-height: 1.5;
  }
  .footer-section {
    border-top: 1px solid #ddd;
  }
  .footer-section .footer-box {
    flex-wrap: wrap;
    justify-content: start;
    flex-direction: column;
    gap: 10px;
  }
  .footer-section .footer-box h3 {
    margin-bottom: 0px;
  }
  .footer-section .footer-box .footer-box-menu {
    flex: 1;
    width: 100%;
  }
  .footer-section .logo-box {
    padding: 0;
  }
  .footer-section .logo-box .logo-box-inner img.img-fluid:not(.logo-image) {
    margin: 0 auto;
    max-height: 80px;
  }
  .footer-section .logo-box .logo-box-inner img.logo-image {
    max-width: 150px;
    margin: 0 auto 10px;
  }
  .footer-section .logo-box .logo-box-inner p {
    max-width: 100%;
    font-size: 10px;
    text-align: center;
  }
  .footer-section .copyright-social {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }
  .banner-section.opticks-ai-banner.telescopeB {
    min-height: 750px;
  }
  .banner-section.opticks-ai-banner.telescopeB.telescopeBanner {
    min-height: 400px;
    height: 400px;
  }
  .banner-section.opticks-ai-banner.telescopeB.telescopeBanner .banner-section-inner {
    margin-top: 0.5rem !important;
  }
  .banner-section.opticks-ai-banner.telescopeB .banner-section-inner {
    display: flex;
    flex-direction: column;
    margin-top: 3.5rem !important;
  }
  .banner-section.opticks-ai-banner.telescopeB .banner-section-inner .banner-content-box {
    width: 100%;
  }
  .banner-section.opticks-ai-banner.telescopeB .banner-section-inner .banner-content-box .title .text-white br {
    display: none;
  }
  .banner-section.opticks-ai-banner.telescopeB .bannerImgSec {
    margin-top: 2rem;
  }
  .blogBanner .banner-section-inner {
    padding-top: 0;
    transform: translateY(-34%);
  }
  .banner-section.blogBanner {
    height: 100vh;
    max-height: 330px;
  }
  .opticks-feature .newtonIndexContainer .feature-item {
    min-width: 100%;
    padding: 0;
  }
  .opticks-feature .newtonIndexContainer .feature-item.newtonIndex .feature-item-inner {
    padding: 20px 15px 20px;
  }
  .opticks-feature .opticks-feature-inner h3.title,
  .opticksai-video-section .section-title .title {
    font-size: 20px;
    margin: 0 auto 20px;
    max-width: none;
  }
  .opticksai-video-section .section-title .title {
    font-size: 20px;
  }
  .opticks-feature .feature-item .text {
    font-size: 14px;
  }
  .opticks-feature .feature-item .text br {
    display: none;
  }
  .opticks-feature .feature-item.asaItem .feature-item-inner {
    padding: 20px 20px;
    gap: 15px;
  }
  .opticks-feature .feature-item.asaItem .feature-item-inner .icon {
    width: 30px;
    height: 30px;
  }
  .banner-section.opticks-ai-banner .banner-content-box .title {
    font-size: 23px;
  }
  .banner-section.opticks-ai-banner .banner-content-box .smallerText {
    font-size: 14px;
    margin: 10px auto 0 !important;
  }
  .banner-section.opticks-ai-banner .banner-content-box p {
    font-size: 14px;
  }
  .banner-section.opticks-ai-banner .banner-content-box .title .opticksLogo {
    margin: 4px 0 0 10px;
    width: 100px;
  }
  .banner-section.opticks-ai-banner .full_image_bg .bg-mobile {
    transform: translate(0, 0%);
    object-fit: contain;
    max-width: none;
    width: auto;
    top: 30%;
    max-height: 100%;
  }
  .banner-section.opticks-ai-banner .banner-content-box .title.no-max {
    max-width: 80%;
  }
  .banner-section.opticks-ai-banner {
    min-height: 430px;
  }
  .opticksai-video-section .content-box .video-box {
    max-width: 100%;
  }
  .opticksai-video-section .content-box .video-box .video {
    top: auto;
    transform: translate(0, 0);
    left: 0;
    right: 0;
  }
  .screen-inner {
    border-radius: 8px;
    height: auto;
  }
  .opticksai-video-section .content-box .screen {
    margin-bottom: 0;
  }
  .section-title .title {
    font-size: 20px;
  }
  .headingPara {
    font-size: 14px;
  }
  .content-box > div > div {
    padding: 0 5px !important;
    width: 50%;
    margin: 0 auto 10px;
  }
  .content-box > div > div:nth-child(2) {
    order: 1;
    align-items: center;
    display: flex;
  }
  .content-box.mt-5 {
    margin-top: 2rem !important;
  }
  .content-box .d-flex {
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    order: 2;
  }
  .content-box .grayedBox {
    padding: 7px 20px;
    height: 150px;
  }
  .content-box .grayedBox h5.smTitle {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .content-box .grayedBox p {
    font-size: 14px;
  }
  .content-box figure {
    margin: 0;
    display: flex;
    justify-content: center;
  }
  .content-box figure .phoneScreen {
    max-width: 100%;
  }
  .sliderSec2.telescopeSlider h5 {
    font-size: 18px;
  }
  .sliderSec2.telescopeSlider p {
    font-size: 12px;
  }
  .sliderSec2.telescopeSlider .d-flex.gap-5 {
    gap: 20px !important;
    flex-direction: column;
  }
  .sliderSec2.telescopeSlider .col-md-5.pe-3 {
    padding: 0 0px !important;
  }
  .opticks-feature .opticks-feature-inner .headingPara {
    max-width: 100%;
  }
  .cta-section .content .cta {
    margin-top: 10px;
  }
  .opticksContain {
    margin-top: 40px;
  }
  .opticksContain .cta-section {
    padding-bottom: 40px;
  }
  .section-title .title,
  .section-title .yellowText {
    font-size: 20px;
  }
  .section-title .typing-container {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .opticks-slider-section {
    padding: 20px 0;
  }
  .cta.centered {
    padding: 0px 0 0;
  }
  .sliderSec2 h5 {
    font-size: 20px;
  }
  .sliderSec2 p {
    font-size: 12px;
  }
  .sliderSec2 ul li {
    font-size: 10px;
  }
  .sliderSec2 ul li:before {
    width: 7px;
    height: 7px;
  }
  .videoContainer .col-center,
  .videoContainer .circleRound {
    width: 100%;
  }
  .opticksContain .cta-section .textSec {
    flex-direction: column;
    align-items: center;
  }
  .opticksContain .cta-section .textSec {
    gap: 10px;
  }
  .opticksContain .cta-section .textSec p {
    font-size: 10px;
    text-align: center;
  }
  .opticksContain .cta-section .textSec br {
    display: none;
  }
  .opticksContain .cta-section .textSec .br-2 {
    border-right: 0;
    border-bottom: 2px solid;
    padding-bottom: 10px;
  }
  .footer-section-inner .row {
    flex-direction: column-reverse;
  }
  .divContain p {
    font-size: 14px;
  }
  .opticks-feature-inner .newtonIndexContainer .divContain p {
    font-size: 12px;
  }
  .min-vh-100 {
    min-height: 880px !important;
  }
  .min-h-screen {
    min-height: 800px;
  }
  .banner-section.contentBannerBg.min-h-screen {
    min-height: 100vh;
  }
  .banner-content-box {
    flex-direction: column;
    min-width: 100%;
  }
  .contactUs .banner-content-box {
    margin-top: 60px !important;
    padding: 20px;
  }
  .banner-content-box > div,
  .contactUs .contactForm {
    width: 100%;
    padding: 20px 0px 0 !important;
    justify-content: start;
  }
  .contactUs .contactForm {
    border-left: 0;
    border-top: 1px solid #989898;
    margin-top: 20px;
  }
  .contactUs .sm-title {
    font-size: 24px;
  }
  .contentBannerBg .bannersTitle {
    font-size: 30px;
    text-align: center;
  }
  .formsSection .hs-button {
    border-radius: 6px;
    margin: 10px auto;
  }
  .formsSection .appleAds form {
    gap: 10px;
  }
  .formsSection form {
    justify-content: space-between;
    gap: 10px;
  }
  .formsSection input,
  .formsSection select,
  .formsSection textarea {
    font-size: 12px;
    height: 40px;
    padding: 5px 10px;
    border-radius: 8px;
  }
  .hs_submit.hs-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .formsSection .hs-button {
    font-size: 15px;
  }
  .contentSection .rightContentSec .yellowTitle {
    font-size: 16px;
  }
  .contentSection .rightContentSec .innerTitle {
    font-size: 14px;
  }
  .contentSection .rightContentSec .yellowTitle.sm-title {
    font-size: 20px;
  }
  .contentSection .rightContentSec .para {
    font-size: 14px;
  }
  .contentSection .rightContentSec .subContent h5.yellowTitle {
    font-size: 16px;
  }
  .contentSection .rightContentSec .subContent .subList {
    font-size: 12px;
  }
  .contentSection .d-flex {
    display: flex;
    flex-direction: column;
  }
  .contentSection .d-flex .listing {
    gap: 0;
  }
  .contentSection .d-flex .listing a {
    font-size: 12px;
  }
  .contentSection .d-flex .rightContentSec {
    padding: 20px 0 0 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .accordion-button,
  .accordion-button:focus,
  .accordion-button:not(.collapsed) {
    background: transparent;
    color: #fff;
    box-shadow: none;
    outline: 0;
    padding: 5px 15px;
    margin-bottom: 10px;
  }
  .accordion-button::after {
    color: #fff;
    filter: invert(100);
  }
  #tncAccordion {
    margin: 0 -15px;
  }
  .contactUs .para {
    font-size: 15px;
  }
  body > div {
    overflow-x: auto;
  }
  .banner-section.sucsStory.careersPage {
    height: 440px;
  }
  .careersPage .title {
    font-size: 20px;
  }
  .careersPage .title span.yellowText {
    font-size: 20px;
  }
  .careersPage .sucsStoryImg {
    height: 100%;
  }
  .careersPage .sucsStoryImg img {
    height: 100%;
  }
  .careersPage .careerForm {
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0 !important;
  }
  .careersPage .careerForm button {
    font-size: 14px;
    line-height: normal;
    height: auto;
    padding: 6px 20px 8px;
  }
  .careersPage .careerForm .seperator {
    display: none;
  }
  .careersPage .careerForm input,
  .careersPage .careerForm select#locationSelect {
    height: auto;
    padding: 10px 10px 10px 25px;
    font-size: 14px;
    line-height: 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    background-size: 12px !important;
    width: 80%;
  }
  .searchBar {
    margin: 20px auto;
  }
  .searchBar input.searchGry {
    padding: 10px 20px 10px 36px;
  }
  .searchBar .searchBtn {
    left: 13px;
    top: 23px;
  }
  .filterSec .btn {
    border-radius: 6px;
    font-size: 9px;
    padding: 8px 10px;
  }
  .blogListContainer {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px !important;
  }
  .blog-sec .blog-container {
    padding: 8px;
    border-radius: 10px;
  }
  .blog-sec .blog-container.updates {
    padding: 8px;
    border-radius: 10px;
    grid-column: span 2;
    padding: 15px;
  }
  .blog-sec .blog-container.updates h3.title {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .blog-sec.pt-70 {
    padding-top: 40px;
  }
  .blog-sec .blog-container.updates .inputForm .btn,
  .blog-sec .blog-container.updates .inputForm .hs-button.primary,
  .blog-sec .blog-container.updates .inputForm .yellowBtn {
    font-size: 11px;
    width: 100%;
  }
  .hs_submit .actions {
    width: 100%;
  }
  .banner-section.sucsStory .banner-section-inner {
    transform: translateY(-45%);
  }
  .banner-section.sucsStory .banner-content-box > div:not(.careerForm) {
    padding: 0px !important;
    margin-bottom: 20px;
    width: 100%;
  }
  .banner-section .whiteTextBox {
    padding: 15px;
  }
  .banner-section .whiteTextBox .quotes {
    display: inline-flex;
    height: 15px;
    width: 20px;
    margin: 0;
  }
  .gapTop {
    padding-top: 90px;
  }
  .filterSection {
    margin-bottom: -60px;
    margin-top: -30px;
  }
  .filterSection .container {
    max-width: 100%;
  }
  .filterSection .d-flex {
    flex-direction: row;
    gap: 10px;
  }
  .filterSection .d-flex .roundedBox {
    width: 100%;
  }
  .filterSection .d-flex .roundedBox:hover {
    width: 100%;
  }
  .blog-sec.successSec .blog-container.featured-success-story {
    order: 1;
  }
  .blog-sec.successSec .blog-container.featured-success-story .featureContent p {
    font-size: 15px;
  }
  .blog-sec.successSec .blog-container {
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    order: 2;
  }
  .blog-sec.successSec .blog-container .badge {
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 5px;
  }
  .blog-sec.successSec .blog-container .sm-label {
    font-size: 12px;
  }
  .blog-sec.successSec .blog-container p {
    font-size: 15px;
  }
  .filterSection .d-flex .roundedBox figcaption.horizontal {
    display: block;
    left: 1vw;
    line-height: 1.2;
  }
  .filterSection .d-flex .roundedBox figcaption.vertical {
    display: none;
  }
  .blog-sec.successSec .yellowBtn {
    border-radius: 8px;
  }
  .banner-section.sucsStory {
    min-height: 680px;
  }
  .banner-section.sucsStory h1.title,
  .banner-section.sucsStory .yellowText {
    font-size: 22px;
  }
  .banner-section.sucsStory p {
    font-size: 12px;
  }
  .banner-section.sucsStory .banner-content-box > div p {
    font-size: 14px;
  }
  .banner-section.sucsStory .owl-item {
    padding: 0 !important;
  }
  .caseStudyDetail .graySection {
    padding: 20px;
    margin: 0 -20px;
  }
  .caseStudyDetail .graySection .contentBox {
    width: 100%;
    flex-direction: column-reverse;
    font-size: 12px;
    padding: 20px;
  }
  .caseStudyDetail .graySection .contentBox figure {
    width: 60px;
    height: 60px;
  }
  .caseStudyDetail .graySection .contentBox .sm-heading {
    font-size: 12px !important;
  }
  .caseStudyDetail .graySection .contentBox .smTitle {
    font-size: 14px !important;
  }
  .caseStudyDetail .contentSec .row {
    margin: 0 auto;
    gap: 15px;
  }
  .caseStudyDetail .contentSec .row.resultBox {
    flex-direction: column;
  }
  .caseStudyDetail .contentSec .row.resultBox .grayedBox {
    max-width: 100%;
  }
  .caseStudyDetail h1,
  .caseStudyDetail h2,
  .caseStudyDetail h3,
  .caseStudyDetail h4,
  .caseStudyDetail h5 {
    font-size: 26px !important;
  }
  .caseStudyDetail .grayedBox {
    padding: 25px;
    border-radius: 10px;
  }
  .caseStudyDetail .grayedBox h1,
  .caseStudyDetail .grayedBox h2,
  .caseStudyDetail .grayedBox h3,
  .caseStudyDetail .grayedBox h4,
  .caseStudyDetail .grayedBox h5 {
    font-size: 16px !important;
  }
  .caseStudyDetail .grayedBox p span,
  .caseStudyDetail .grayedBox p {
    font-size: 12px;
  }
  .caseStudyDetail .smPara,
  .caseStudyDetail p {
    font-size: 12px;
  }
  .caseStudyDetail .heading,
  .caseStudyDetail h2,
  .caseStudyDetail h3,
  .caseStudyDetail h4 {
    font-size: 24px !important;
  }
  .successSec .blog-container:not(.featured-success-story) .featureContent {
    margin-top: 8px;
  }
  .figureBtn {
    bottom: 15px;
    left: 50px;
  }
  .phoneScreen {
    height: 400px;
    max-height: 60vh;
  }
  .banner-section.opticks-ai-banner.telescopeB.asoBanner .banner-section-inner {
    margin-top: 2rem !important;
  }
  .asoSection h3 {
    font-size: 16px;
  }
  .content-box .d-flex {
    align-items: center;
  }
  .asoSlider .container .col-md-6 {
    padding: 20px 20px 0 !important;
  }
  .asoSlider .container .col-md-6 h3 {
    margin: 0 0 15px 0 !important;
  }
  .sliderSec2 .owl-theme .owl-dots .owl-dot span,
  .asoSlider .owl-theme .owl-dots .owl-dot span {
    width: 22px;
    height: 8px;
    margin: 0 3px;
  }
  .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 20px;
  }
  .contentColumn .gridContain {
    display: grid;
    grid-template-columns: auto auto;
    gap: 15px;
  }
  .contentColumn .gridContain .grayBox {
    max-width: 100%;
  }
  .contentColumn .gridContain .grayBox .yellowHeading {
    font-size: 12px;
    padding: 8px 0;
  }
  .contentColumn .gridContain .grayBox ul.contentUl li {
    font-size: 10px;
    padding: 8px 0;
  }
  .appStoreOptimize .tagIcon {
    position: absolute;
    max-height: 30px;
  }
  .appStoreOptimize .tagIcon.appTitle_tags {
    left: -28px;
    top: 22px;
  }
  .appStoreOptimize .tagIcon.icon_tags {
    left: -28px;
    top: 95px;
  }
  .appStoreOptimize .tagIcon.subTitle_tags {
    left: -28px;
    top: 82px;
    max-height: 80px;
  }
  .appStoreOptimize .tagIcon.appPreview_tags {
    right: -10px;
    bottom: 165px;
  }
  .appStoreOptimize .tagIcon.screenshot_tags {
    right: -10px;
    bottom: 115px;
  }
  .appStoreOptimize .tagIcon.promoText_tags {
    top: 85px;
    left: -30px;
  }
  .appStoreOptimize .tagIcon.devname_tags {
    top: 124px;
    left: -30px;
  }
  .appStoreOptimize .tagIcon.longDesc_tags {
    top: 90px;
    right: -30px;
  }
  .appStoreOptimize .tagIcon.rating_tags {
    right: -30px;
    top: 173px;
  }
  .appStoreOptimize .tagIcon.replies_tags {
    right: -30px;
    top: 273px;
  }
  #lottie-container {
    width: 200px;
    height: 200px;
  }
  .banner-section.opticks-ai-banner .banner-content-box .cta {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media only screen and (max-width: 430px) and (max-height: 932px) {
  .banner-content-box {
    margin: 0 auto;
  }
  .banner-content-box .blog-image figure img {
    max-height: 280px;
  }
  .figureBtn {
    bottom: 15px;
    left: 50px;
  }
}


/*For niko*/


.banner-content-box.noBg {
  background: none;
}

.pb-2 {
  padding-bottom: 2vw;
}

.formsSection .contactForm.niko {
  padding: 1.7vw 1.7vw;
  background: #fff;
  border-radius: 1.2vw;
}
.formsSection .contactForm.niko .hbspt-form {
  height: 100%;
  display: flex;
  justify-content: space-evenly;
}
.formsSection .contactForm.niko label {
  display: inline-block;
  width: 100%;
  font-size: 0.9vw;
  color: #181818;
  font-weight: 600;
  font-family: Lato;
  margin-bottom: 0.4vw;
}
.formsSection .contactForm.niko label.hs-error-msg {
  font-size: 0.7vw;
  color: #ff0000;
}
.formsSection .contactForm.niko .hs-form-field {
  flex-direction: column;
}
.formsSection .contactForm.niko .hs-form-field.hs-app_name, .formsSection .contactForm.niko .hs-form-field.hs-mobilephone {
  width: 48.3%;
  display: inline-flex;
}
.formsSection .contactForm.niko input, .formsSection .contactForm.niko select, .formsSection .contactForm.niko textarea {
  border: 1px solid #BCBCBC;
}
.formsSection .contactForm.niko input.hs-button, .formsSection .contactForm.niko select.hs-button, .formsSection .contactForm.niko textarea.hs-button {
  border: 0;
}

.nikoBannerBg .bannersTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 1.7vw;
  flex-direction: column;
  color: #fff;
  text-align: center;
  font-weight: normal;
}
.nikoBannerBg .bannersTitle .text-yellow {
  color: #fbb32a;
  font-weight: bold;
  font-size: 2vw;
}
.nikoBannerBg .contactUs.formsSection.p-0 .banner-content-box {
  padding: 0 1vw;
}
.nikoBannerBg .videoSec {
  width: 100%;
  height: auto;
  display: inline-flex;
  border-radius: 1vw;
  overflow: hidden;
  border: 1px solid #fff;
  position: relative;
}
.nikoBannerBg .videoSec .play-btn {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translate(0px, -50%);
}
.nikoBannerBg .videoSec video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nikoSlider .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 15%;
  max-height: 5vw;
}
@media screen and (max-width: 1400px) {
  .nikoSlider .splide__slide {
    max-width: 12%;
  }
}
.nikoSlider .splide__slide img {
  max-width: 12vw;
}
.nikoSlider .splide__slide img.mt-n4 {
  margin-top: -1vw;
  max-height: 3.5vw;
}
.nikoSlider .splide__slide img.mt-n3 {
  margin-top: 0vw;
  max-height: 4.4vw;
}
@media screen and (max-width: 1500px) {
  .nikoSlider .splide__slide img {
    max-width: 10vw;
  }
  .nikoSlider .splide__slide img.mt-n4 {
    margin-top: -0.2vw;
    max-height: 3vw;
  }
  .nikoSlider .splide__slide img.mt-n3 {
    max-height: 4vw;
    margin-top: 0.1vw;
  }
}

.nikoFooter .bannersTitle {
  color: #fff;
  font-weight: bold;
  font-family: lato;
  font-size: 2.1vw;
}
@media screen and (max-width: 1440px) {
  .nikoFooter .bannersTitle {
    font-size: 2.8vw;
  }
}
.nikoFooter .para {
  color: #fff;
  font-size: 1.1vw;
  font-family: lato;
}
@media screen and (max-width: 1440px) {
  .nikoFooter .para {
    font-size: 1.4vw;
  }
}

.nikoLogo {
  position: absolute;
  top: -5vw;
  left: 10vw;
  z-index: 9;
  width: 20%;
}
.nikoLogo img {
  max-width: 100%;
}

.py-20 {
  padding: 2.5vw 0 !important;
}

.pt-20 {
  padding-top: 2.5vw !important;
}

.nikoContentBg {
  background: url(https://3426102.fs1.hubspotusercontent-na1.net/hubfs/3426102/raw_assets/public/AFFLE_LATEST/NewtonAI/images/niko/nikocontentBg.svg) no-repeat center right/contain;
  display: inline-flex;
  width: 100%;
  height: auto;
  border-radius: 1vw;
}
.nikoContentBg .leftContent {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5vw 0;
  border-radius: 1vw;
}
.nikoContentBg .leftContent .listing {
  width: 90%;
  margin: 0 auto;
  text-align: left;
  font-family: lato;
  font-size: 1vw;
  counter-reset: #000;
  margin: 10px auto;
}
.nikoContentBg .leftContent .para {
  font-size: 1.2vw;
  color: #000;
  font-family: lato;
  width: 90%;
  margin: 0;
}
.nikoContentBg .leftContent .para .redTxt {
  color: #E94246;
  font-weight: bold;
}
.nikoContentBg .rightContent img {
  max-width: 11vw;
  margin: -1.5vw 4vw 1vw -1.9vw;
}

/* Hide controls visually but keep them in DOM */
#nikoVideo {
  cursor: pointer;
}

#nikoVideo::-webkit-media-controls {
  opacity: 0 !important;
}

#nikoVideo::-moz-media-controls {
  opacity: 0 !important;
}

#nikoVideo::-ms-media-controls {
  opacity: 0 !important;
}

.nikoBlogSec {
  flex-direction: row;
  min-height: 100vh;
}
.nikoBlogSec .banner-section-inner {
  padding-top: 0 !important;
  padding-bottom: 15vw !important;
}
.nikoBlogSec .bannersTitle {
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 3.6vw;
}
.nikoBlogSec .full_image_bg img {
  transform: scaleX(1);
}

.nikoBlogContentSec .blog-post__meta {
  margin-top: 1.2vw;
}
.nikoBlogContentSec .blogDetail .container {
  max-width: 1240px;
}
@media screen and (max-width: 1440px) {
  .nikoBlogContentSec .blogDetail .container {
    max-width: 60vw;
  }
}
.nikoBlogContentSec .blogImg {
  margin: 2vw 0 -22%;
  border: 2px solid #fff;
}
.nikoBlogContentSec .blogImg img {
  height: auto;
  box-shadow: none;
  width: 100%;
}
.nikoBlogContentSec .blueContainer {
  display: flex;
  margin: 0 -20px -20px;
  padding-top: 17vw;
  padding-bottom: 6vw;
  height: auto;
  background: linear-gradient(45deg, rgb(5, 0, 29) 0%, rgb(1, 79, 95) 100%);
  margin-bottom: 14vw;
}
.nikoBlogContentSec .blueContainer > .container {
  margin-bottom: -20vw;
}
.nikoBlogContentSec h2.headingtitle {
  font-size: 1.6vw;
  font-weight: bold;
  font-family: lato;
  margin-top: 1vw !important;
  margin-bottom: 0 !important;
  display: inline-flex;
}
.nikoBlogContentSec h2.headingtitle.f-bold {
  font-weight: 800;
}
.nikoBlogContentSec h2.headingtitle .greenHeading {
  color: #2EB0A8;
}
.nikoBlogContentSec h2.headingtitle.redHeading {
  color: #E94246;
}
.nikoBlogContentSec h2.headingtitle.smFont {
  font-size: 1.5vw !important;
}
.nikoBlogContentSec .whiteBoxContent {
  background: #fff;
  border-radius: 2vw;
  padding: 2vw 4vw;
  font-family: lato;
  font-size: 1vw;
  color: #000;
  text-align: left;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 2vw;
}
.nikoBlogContentSec .whiteBoxContent.pb-0 {
  padding-bottom: 0;
}
.nikoBlogContentSec .whiteBoxContent .headingtitle {
  font-weight: 800 !important;
}
.nikoBlogContentSec .whiteBoxContent .headingtitle.mt-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.nikoBlogContentSec .whiteBoxContent .headingtitle.mb-5 {
  margin-bottom: 1vw !important;
}
.nikoBlogContentSec .whiteBoxContent .slidingNiko {
  position: absolute;
  right: -6.7vw;
}
.nikoBlogContentSec .whiteBoxContent .slidingNiko img {
  max-width: 8vw;
}
.nikoBlogContentSec .whiteBoxContent .headingSm {
  font-size: 1.3vw;
  font-weight: 700;
  font-family: lato;
}
.nikoBlogContentSec .whiteBoxContent .headingSm.redHeading {
  color: #E94246;
}
.nikoBlogContentSec .whiteBoxContent .headingSm.yellowHeading {
  color: #FFA011;
}
.nikoBlogContentSec .whiteBoxContent .headingSm.greenHeading {
  color: #2EB0A8;
}
.nikoBlogContentSec .whiteBoxContent .headingSm.blueHeading {
  color: #3699E8;
}
.nikoBlogContentSec .whiteBoxContent .listing {
  list-style-type: disc inside;
}
.nikoBlogContentSec .whiteBoxContent .grayBgBoxSec {
  border-radius: 1vw;
  background-color: #EBEBEB;
}
.nikoBlogContentSec .whiteBoxContent .grayBgBox {
  padding: 1vw 5vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.nikoBlogContentSec .whiteBoxContent .grayBgBox.bb-dashed {
  border-bottom: 1px dashed #333;
}
.nikoBlogContentSec .whiteBoxContent .grayBgBox.br-dashed {
  border-right: 1px dashed #333;
}
.nikoBlogContentSec .whiteBoxContent .grayBgBox h3.headingSm {
  font-size: 1.4vw !important;
  margin: 0.5vw 0 !important;
  font-weight: 700 !important;
}
.nikoBlogContentSec .whiteSection {
  margin: 0 -4vw;
}
.nikoBlogContentSec .whiteSection .container {
  padding: 0;
}
.nikoBlogContentSec .whiteSection .whiteBoxContent {
  box-shadow: none;
  padding: 1.5vw;
}
.nikoBlogContentSec .whiteSection .whiteBoxContent .nikoThinking {
  position: absolute;
  top: 50%;
  right: 0;
  max-width: 8.9vw;
  left: 0;
  margin: 0 auto;
  transform: translateY(-50%);
}
.nikoBlogContentSec .whiteSection .whiteBoxContent .nikoThinking img {
  max-width: 100%;
}
.nikoBlogContentSec .gifSec .videoSecNiko {
  width: 100%;
  border-radius: 1vw;
  overflow: hidden;
  display: flex;
}
.nikoBlogContentSec .gifSec .videoSecNiko video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nikoBlogContentSec .gifSec figure {
  width: 100%;
  border: 5px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 1.5vw;
  overflow: hidden;
}
.nikoBlogContentSec .gifSec figure img {
  width: 100%;
}
.nikoBlogContentSec .nikoContentSec .headingSm {
  font-size: 1.1vw;
  font-weight: 700;
  font-family: lato;
}
.nikoBlogContentSec .nikoContentSec .headingSm.redHeading {
  color: #E94246;
}
.nikoBlogContentSec .nikoContentSec .nikoFig {
  padding: 0 3vw 0 0;
}
.nikoBlogContentSec .nikoContentSec .nikoFig .nikoGif {
  max-width: 12.5vw;
}
.nikoBlogContentSec .nikoContentSec .para {
  font-size: 1vw;
  font-family: lato;
  margin: 0;
}
.nikoBlogContentSec .whiteboxSm {
  background: #fff;
  border-radius: 2vw 2vw 0vw 0;
  padding: 3vw;
  font-family: lato;
  font-size: 1vw;
  color: #000;
  text-align: left;
  margin-bottom: -2vw;
  z-index: 1;
  position: relative;
  box-shadow: 0 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}
.nikoBlogContentSec .whiteboxSm:after {
  content: "";
  position: absolute;
  left: 0;
  right: -1vw;
  width: 110%;
  background: #fff;
  bottom: -1vw;
  height: 3vw;
}
.nikoBlogContentSec .whiteboxSm .nikoSitting {
  width: 12vw;
  position: absolute;
  top: -2vw;
  right: -14vw;
  z-index: 1;
}
.nikoBlogContentSec .whiteboxSm h2.headingtitle {
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 2.2vw !important;
  text-align: center;
}
.nikoBlogContentSec .whiteboxSm h2.headingtitle .blueHeading {
  color: #3699E8;
}
.nikoBlogContentSec .appGrowth .listingPara .para {
  position: relative;
}
.nikoBlogContentSec .appGrowth .listingPara .para:before {
  content: "";
  display: inline-block;
  width: 0.4vw;
  height: 0.4vw;
  background: #E94246;
  border-radius: 100%;
  position: absolute;
  left: -16px;
  top: 10px;
}
.nikoBlogContentSec .appGrowth img.icon {
  width: 4vw;
  height: 4vw;
}
@media screen and (max-width: 1500px) {
  .nikoBlogContentSec .container {
    max-width: 60vw;
  }
}

.primaryBtn.revert {
  color: #fff;
  font-weight: bold;
  font-size: 1.6vw;
  background: linear-gradient(to right, rgb(251, 179, 42) 0%, rgb(233, 68, 71) 100%);
}
.primaryBtn.revert.moreRounded {
  border-radius: 24px;
}
@media screen and (max-width: 1500px) {
  .primaryBtn.revert.moreRounded {
    border-radius: 16px !important;
  }
}

.videoSec {
  position: relative;
  display: inline-block;
  width: 100%;
}
.videoSec video {
  width: 100%;
  height: auto;
  border-radius: 1vw;
  cursor: pointer;
}
.videoSec .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1vw;
  opacity: 1;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.videoSec .video-overlay.hidden {
  opacity: 1;
  pointer-events: none;
}
.videoSec .play-btn {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.videoSec .play-btn:hover {
  transform: scale(1.1);
}
.videoSec .play-btn svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.videoSec:hover .video-overlay {
  background: rgba(0, 0, 0, 0.4);
}

ul.noListing li {
  list-style: none;
}
small.linked {
      color: #707070;
    font-size: 13px;
    display: inline-block;
}
.recent-content {
  height: 100%;
}


.ctaBtnSec {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
  background: #f7f7f7;
/*   border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd; */
  padding: 2vw 0 2vw;
  margin-top:2vw;
}
.caseStudyDetail .graySection + .ctaBtnSec {
    padding-top: 0;
  margin-top:0;
}


.cta-section-inner.min-h-200 {
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
/*# sourceMappingURL=style.css.map */

/* Blog Fixes */
.kl-testimonial {
    display: inline-flex;
    gap: 1vw;
    border: 1px solid #ebebeb;
    border-radius: 0.8vw;
    padding: 1vw;
    box-shadow: -20px 20px 10px rgba(0, 0, 0, 0.02);
    margin: 0 auto 2vw;
    flex-direction: row-reverse;
}
.blogSection .innerContainer p.kl-testimonial__content {
    color: #2c2c2c;
    font-size: 1vw;
    font-weight: 400;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.kl-testimonial__footer {
    display: inline-flex;
    flex-direction: column;
}

.kl-testimonial__footer img {
    max-width: 10vw;
    height: auto;
}

.blogSection .innerContainer .kl-testimonial__author {
  text-align:center;
}


/* // home page video */
.videoHome video {
    border: 1px solid #fff;
}
.videoSec.videoHome {
    margin-top: 6vw;
    max-width: 92%;
}



/* Release History page */

.footer-section {
  z-index: 9;
  position: relative;
}

.versionList {
  width: 20%;
  padding-top: 0.6vw;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  margin-right: 4vw;
  top: 11vw;
  min-width: 0;
  max-width: 15vw;
  margin-top: 1vw;
}

.versionList li {
  color: #fff;
  font-size: 1vw;
  position: relative;
}

.versionList li a {
  color: #fff;
}

.versionList li .active,
.versionList li a.active {
  color: #FBB32A;
}

.versionList li a.active:before {
  content: "";
  display: inline-block;
  width: 5vw;
  position: absolute;
  height: 1px;
  background: #FBB32A;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
}

.versionList li a.active:after {
  content: "";
  display: inline-block;
  width: 0.6vw;
  height: 0.6vw;
  border-radius: 50%;
  position: absolute;
  background: #FBB32A;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
}

.versionBox {
  width: 100%;
  background: rgba(54, 153, 232, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1.8vw;
  color: #fff;
  padding: 2vw;
  position: relative;
  z-index: 999;
  font-family: lato;
  font-size: 1.15vw;
}
.versionBox.unreleased {
  display:none !important;
}
.versionBox h2.title {
  font-size: 1.4vw;
  font-weight: 600;
  margin-bottom: 0px;
}

.versionBox .text-md {
  font-size: 1vw;
}

.versionBox h3.yellowText {
  font-size: 1.15vw;
}

.versionBox ul li {
  font-size: 0.9vw;
  list-style: inside disc;
}

.versionBox .statusSec {
  display: flex;
  align-items: end;
}

.versionBox .yellowTag, .versionBox .greenTag, .versionBox .grayTag {
  font-size: 0.7vw;
  background: #FBB32A;
  color: #000;
  padding: 0.2vw 0.6vw;
  border-radius: 0.4vw;
  font-weight: 600;
  text-transform: capitalize;
}

.descContain p, .descContain .desTxt {
  font-size: 1vw;
  margin: 0 auto 0.4vw;
}

.rightDescBoxes {
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
  width: 100%;
  flex: 1;
  margin-left: 20vw;
  padding-bottom: 5vw;
}

.releaseHistorySec {
  margin-top: 3vw;
}

.releaseHistorySec .middleContentSec {
  padding: 0 17vw;
  max-height: 70vh;
  overflow: auto;
}

.releaseHistorySec .middleContentSec::-webkit-scrollbar {
  display: none;
}

.releaseHistory.pt-8 {
  padding-top: 8vw;
  padding-bottom: 4vw !important;
}

.mt-3v {
  margin-top: 3vw;
}

.px-17 {
  padding: 0 17vw;
}
.recent-blog .recent-content h2.yellowText {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Contact us page new 7 May */
.newContactBanner {
  position: relative;
  background: #f9f9f9;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.newContactBanner::before, .newContactBanner::after {
/*   content: ""; */
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  z-index: 0;
}
.newContactBanner::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgb(222, 200, 150) 0%, transparent 100%);
  top: 10%;
  left: -10%;
}
.newContactBanner::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(180, 220, 215, 0.9) 0%, transparent 100%);
  top: -30%;
  right: 20%;
}
.newContactBanner .pink-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 160, 170, 0.8) 0%, transparent 100%);
  bottom: -5%;
  right: -2%;
  filter: blur(80px);
  z-index: 0;
}
.newContactBanner .listings {
  font-size: 1vw;
  font-family: Lato;
  color: #000;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  margin-top: 1.6vw;
}
.newContactBanner .listings li {
  padding-left: 2vw;
  background: url(https://3426102.fs1.hubspotusercontent-na1.net/hubfs/3426102/raw_assets/public/AFFLE_LATEST/NewtonAI/images/checkRed.svg) no-repeat 0 0.3vw/1.1vw;
}
.newContactBanner .contactContainer {
  display: flex;
  padding: 3vw 0;
  gap: 2vw;
  max-width: 80vw;
}
@media screen and (max-width: 1500px) {
  .newContactBanner .contactContainer {
    max-width: 80%;
    gap: 3.5vw;
    width: 1240px;
  }
}
.newContactBanner .contactContainer .formSec {
  background: #fff;
  border-radius: 1vw;
  flex: 1;
  padding: 1.4vw;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
    min-height: 35.5vw;
}
@media screen and (max-width: 1500px) {
  .newContactBanner .contactContainer .formSec {
    padding: 1.8vw;
  }
}
.newContactBanner .contactContainer .contentSec {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 0.4vw;
}
.newContactBanner .contactContainer .formsSection label {
  display: block;
  color: #000;
  font-size: 1vw;
  font-weight: bold;
  margin-bottom: 0.2vw;
}
.newContactBanner .contactContainer .formsSection label.hs-error-msg {
  font-size: 0.8vw;
  color: #E94447;
}
.newContactBanner .contactContainer .formsSection .hs-form-field {
  flex-direction: column;
}
.newContactBanner .contactContainer .formsSection input, .newContactBanner .contactContainer .formsSection select, .newContactBanner .contactContainer .formsSection textarea {
  border: 1px solid #BCBCBC;
}
.newContactBanner .details {
  display: flex;
  gap: 2vw;
  margin-top: 1.5vw;
  justify-content: space-between;
  padding: 1vw 2vw 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.newContactBanner .details .detail-item {
  text-align: center;
}
.newContactBanner .details .detail-item .number {
  display: block;
  font-size: 2.5vw;
  font-weight: 800;
  color: #E94447;
  font-family: Lato;
}
.newContactBanner .details .detail-item .label {
  display: block;
  font-size: 1vw;
  font-weight: bold;
  color: #333;
  font-family: Lato;
  margin-top: 0.3vw;
}
.newContactBanner > * {
  position: relative;
  z-index: 1;
}

.d-flow-root {
  display: flow-root;
}

.mt-160 {
  margin-top: 160px;
}


.mt-120 {
  margin-top: 120px;
}

.t-14 {
  top: 160px;
}

.headingLg {
  font-size: 2.2vw;
  font-weight: 800;
  margin-bottom: 0.8vw;
}

.redHeading {
  font-size: 2.4vw;
  color: #E94447;
}

.contactClients:before {
  display: none;
}
.contactClients .owl-slider {
  padding: 0;
}

.contactSec .trusted-partner-section {
  background: #000;
}
.contactSec .trusted-partner-section .trusted-partner-section-inner {
  padding-bottom: 3vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contactSec .testimonial-section .owl-slider .content p, .contactSec .testimonial-section .owl-slider .content .designation {
  opacity: 1;
  font-size: 1vw;
}
.contactSec .testimonial-section .owl-slider .content p {
  text-align: left;
  flex: 1;
}
.contactSec .testimonial-section .owl-slider .content .name {
  font-size: 1.4vw;
  color: #FBB32A;
  font-weight: 800;
}
.contactSec .testimonial-section .owl-slider .item {
  background: rgba(54, 153, 232, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.contactSec .testimonial-section .owl-slider .content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contactSec .testimonial-section .owl-stage {
  display: flex;
}
.contactSec .testimonial-section .owl-item {
  display: flex;
}


.clientLogo {
  display: flex;
  justify-content: center;
  margin: 0.6vw auto 1vw;
}
.clientLogo img {
  max-height: 4vw;
  width: auto !important;
  margin: -1.2vw 0;
}
@media screen and (max-width: 767px) {
  .clientLogo img {
    max-height: 50px;
  }
  .audit-telescope:before {
    height: 110px;
  }
  .mt-120 {
  margin-top:110px;
}
}
/* White filter for images */
.white-filter {
  filter: brightness(0) invert(1);
}


.description {
  color: #333;
  display: block;
  font-family: Lato;
  font-size: 1vw;
  font-weight: 700;
  margin-top: 0.3vw;
}
@media screen and (max-width: 1180px) {
  .description {
    font-size: 11px;
  }
}
@media screen and (max-width: 890px) {
  .description {
    font-size: 14px;
  }
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7vw;
  margin-top: 1vw;
}
.chips .chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45vw 1.2vw;
  border-radius: 50px;
  border: none;
  font-family: Lato;
  font-size: 0.95vw;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.chips .chip:nth-child(1) {
  background: linear-gradient(135deg, #FFE8D6, #FECFB0);
  color: #B85C2A;
}
.chips .chip:nth-child(2) {
  background: linear-gradient(135deg, #D4F5E2, #AEEACB);
  color: #1E7A48;
}
.chips .chip:nth-child(3) {
  background: linear-gradient(135deg, #D6E8FF, #B3D0FF);
  color: #1A4BAF;
}
.chips .chip:nth-child(4) {
  background: linear-gradient(135deg, #EDD9F7, #D9B8F0);
  color: #6A2A96;
}

.audit-telescope::before {
  content: "";
  background: url(https://3426102.fs1.hubspotusercontent-na1.net/hubfs/3426102/raw_assets/public/AFFLE_LATEST/NewtonAI/images/telescope/headerBg.png) no-repeat center top/cover;
  display: inline-block;
  height: 12.7vw;
  width: 100%;
  position: absolute;
}

.audit-telescope .newContactBanner {
  background: url(https://3426102.fs1.hubspotusercontent-na1.net/hubfs/3426102/raw_assets/public/AFFLE_LATEST/NewtonAI/images/telescope/contactBg.jpg) no-repeat center top/cover;
}

.audit-telescope .formsSection .hs-mobilephone.hs-form-field {
  width: 48.3%;
  display: inline-flex;
}
.audit-telescope .formsSection .hs-country.hs-form-field {
  width: 48.1%;
  display: inline-flex;
}
.audit-telescope .formsSection form {
   row-gap: 1vw;
}
.audit-telescope .formsSection form input:not([type="submit"]), .audit-telescope .formsSection form select, .audit-telescope .formsSection form textarea {
  background: #F9F9F9;
}
.audit-telescope .heading {
  color: #fff;
  font-weight: bold;
  font-size: 1.4vw;
  margin-bottom: 2vw;
  margin-top: 2vw;
}
.audit-telescope .blueHeading {
  color: #6FCAFF;
}
.audit-telescope .formHeading {
  font-size: 1.3vw;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2vw;
}
.audit-telescope .formHeading .blueTxt {
  color: #4285F4;
}
.audit-telescope .formHeading .redTxt {
  color:#ea4c45;
}
.audit-telescope .newContactBanner .contactContainer {
  max-width: 80vw;
  gap: 0;
/*   box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1); */
  padding: 0;
  overflow: hidden;
  margin: 3vw auto;
/*   border-radius: 2vw;
  background: url(https://3426102.fs1.hubspotusercontent-na1.net/hubfs/3426102/raw_assets/public/AFFLE_LATEST/NewtonAI/images/telescope/contact_bg_1.svg) no-repeat center center/cover; */
}
@media screen and (max-width: 1180px) {
  .audit-telescope .newContactBanner .contactContainer {
    max-width: 80%;
    padding: 0 !important;
  }
  .audit-telescope .heading {
    font-size:18px;
  }
  .audit-telescope .description {
    font-size:14px !important;
  }
  .audit-telescope .newContactBanner .headingLg {
    font-size: 30px;
  }
}
@media screen and (max-width: 890px) {
  .audit-telescope .newContactBanner .contactContainer {
    max-width: 90%;
  }
}
.audit-telescope .newContactBanner .contactContainer .formSec {
 box-shadow: none;
  padding: 2vw 4vw;
}

@media screen and (max-width: 890px) {
  .audit-telescope .newContactBanner .contactContainer .formSec {
    margin: 0;
  }
  .audit-telescope .newContactBanner .contactContainer .formSec label {
    margin-bottom: 10px !important;
  }
  .audit-telescope .newContactBanner .headingLg {
    font-size: 26px;
  }
  .audit-telescope .description {
    font-size: 12px !important;
  }
  .audit-telescope .formHeading {
    font-size: 24px !important;
    margin: 10px auto 30px;
  }
  .audit-telescope .newContactBanner .contactContainer .formSec {
    padding: 30px 40px;
  }
  .audit-telescope .newContactBanner .contactContainer .contentSec {
    padding: 0 20px 0 0;
  }
}
.audit-telescope .newContactBanner .contactContainer .contentSec {
  width: 56%;
  color: #313131;
  position: relative;
  overflow: visible;
}
.audit-telescope .newContactBanner .contactContainer .contentSec .nikodesc {
  position: absolute;
  top: 0;
  right: -2vw;
  width: 14vw;
  z-index: 2;
}
@media screen and (max-width: 890px) {
  .audit-telescope .newContactBanner .contactContainer .contentSec .nikodesc {
    width: 100%;
    margin-bottom: -30px;
    margin-top: 0px;
  }
  .audit-telescope .heading {
  font-size: 17px;
  }
  .audit-telescope .description {
    font-size:15px !important;
  }
.mt-120 {
    margin-top: 96px;
}
}
.audit-telescope .newContactBanner .contactContainer .contentSec .nikodesc img {
  max-width: 100%;
}
.audit-telescope .newContactBanner .contactContainer .contentSec::before {
/*   content: ""; */
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 200' fill='none'%3E%3Cpath d='M-10 80 Q60 20 160 60 Q240 95 310 40' stroke='%23b8d4d8' stroke-width='1.5' fill='none' opacity='0.7'/%3E%3Cpath d='M-10 110 Q70 50 170 85 Q250 118 310 65' stroke='%23c5e0e5' stroke-width='1.2' fill='none' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}
.audit-telescope .newContactBanner .contactContainer .contentSec {
  /* teal circle blob — bottom left */
}
.audit-telescope .newContactBanner .contactContainer .contentSec::after {
/*   content: ""; */
  position: absolute;
  bottom: -18%;
  left: -8%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #2bbfaa;
  z-index: 0;
  pointer-events: none;
}
.audit-telescope .newContactBanner .contactContainer .contentSec {
  /* pink pill — top right */
}
.audit-telescope .newContactBanner .contactContainer .contentSec .blob-pink {
  position: absolute;
  top: 6%;
  right: 4%;
  width: 70px;
  height: 32px;
  border-radius: 50px;
  background: #f06292;
  z-index: 0;
  pointer-events: none;
  transform: rotate(-8deg);
}
.audit-telescope .newContactBanner .contactContainer .contentSec {
  /* orange pill — bottom right */
}
.audit-telescope .newContactBanner .contactContainer .contentSec .blob-orange {
  position: absolute;
  bottom: 10%;
  right: 3%;
  width: 80px;
  height: 34px;
  border-radius: 50px;
  background: #f5a623;
  z-index: 0;
  pointer-events: none;
  transform: rotate(5deg);
}
.audit-telescope .newContactBanner .contactContainer .contentSec {
  /* blue dot — mid left */
}
.audit-telescope .newContactBanner .contactContainer .contentSec .blob-blue {
  position: absolute;
  top: 38%;
  left: 4%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3b82f6;
  z-index: 0;
  pointer-events: none;
}
.audit-telescope .newContactBanner .contactContainer .contentSec > * {
  position: relative;
  z-index: 1;
}
.audit-telescope .contentSecDesc {
  padding: 2vw 5vw 2vw 0;
}
.audit-telescope .headingLg, .audit-telescope .description {
  color: #fff;
}
.audit-telescope .description {
  font-weight: normal;
  font-size: 1.3vw;
}
.audit-telescope .newton-logo-badge {
  display: inline-flex;
  align-self: flex-start;
  position: relative;
  z-index: 1;
  margin-bottom: 0.4vw;
}
.audit-telescope .newton-logo-badge img {
  height: 2.2vw;
  width: auto;
  display: block;
}
@media screen and (max-width: 1180px) {
  .audit-telescope .newton-logo-badge img {
    height: 35px;
  }
}
@media screen and (max-width: 890px) {
  .audit-telescope .newton-logo-badge img {
    height: 45px;
  }
}
.audit-telescope .apple-partner-badge {
  display: inline-flex;
  align-items: center;
  width: auto;
  align-self: flex-start;
  background: #fff;
  border-radius: 0.6vw;
  padding: 0.6vw 1.4vw;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-top: 1.2vw;
  position: relative;
  z-index: 1;
}
.audit-telescope .apple-partner-badge img {
  height: 1.6vw;
  width: auto;
  display: block;
}
@media screen and (max-width: 1180px) {
  .audit-telescope .apple-partner-badge img {
    height: 20px;
  }
}
@media screen and (max-width: 890px) {
  .audit-telescope .apple-partner-badge {
    padding: 10px 20px;
    border-radius: 6px;
  }
}
.audit-telescope .formsSection .hs_submit.hs-submit {
  width: 100%;
}
.audit-telescope .opticks-feature .feature-item {
  display: flex;
}

.audit-telescope .formsSection .hs_submit.hs-submit input {
  border: 0 !important;
}
.audit-telescope .opticks-feature .feature-item {
  display: flex;
}
@media screen and (max-width: 890px) {
  .audit-telescope .opticks-feature .feature-item .feature-item-inner {
    width: 100%;
  }
}

.grndTxt {
  background: linear-gradient(90deg, #ff3b3b, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.blueGrndTxt {
  background: linear-gradient(90deg, #6DEBFF, #2FA5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contactContainer.px-20 {
  padding: 2.5vw;
}

/* Contact Banner Modal */
#contactBannerModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.35s ease forwards;
}
#contactBannerModal .headingLg {
  font-weight: 800;
}
#contactBannerModal.is-open {
  display: flex;
}
#contactBannerModal .modal-inner {
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 16px;
  animation: modalSlideUp 0.35s ease forwards;
}
#contactBannerModal .modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}
#contactBannerModal .modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}
#contactBannerModal .newContactBanner {
  margin-top: 0 !important;
  border-radius: 16px;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalSlideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*# sourceMappingURL=style.css.map */


.animationLogo {
  position: absolute;
  top: 60%;
  left: -14%;
  right: auto;
  width: 20vw;
  max-width: 300px;
  z-index: 2;
  pointer-events: none;
  animation: nikoFlyTopRight 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 3.2s;
}

.formSec .animationLogo {
  display: none;
}

.animationLogo img {
  max-width: 100%;
}

@keyframes nikoFly {
  0% {
    opacity: 1;
    transform: translate(-80vw, 200%) scale(1) rotate(0deg);
  }
  12% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate(37.5vw, -10%) scale(1) rotate(0deg);
  }
}
@keyframes nikoFlyTopRight {
  0% {
    top: 60%;
    opacity: 1;
  }
  100% {
    top: 2%;
    left: 88.8%;
    right: auto;
    opacity: 1;
  }
}
@media screen and (max-width: 1750px) {
  .blog-image {
    width: 62%;
  }
  @keyframes nikoFlyTopRight {
    0% {
      top: 60%;
      left: -19%;
    }
    100% {
      top: 1%;
      left: 87.5%;
      right: auto;
      opacity: 1;
    }
  }
}
@media screen and (max-width: 1630px) {
  @keyframes nikoFlyTopRight {
    0% {
      top: 60%;
      left: -19%;
    }
    100% {
      top: 1%;
      left: 86.4%;
      right: auto;
      opacity: 1;
    }
  }
}
@media screen and (max-width: 1600px) {
  .blog-image {
    width: 58%;
  }
}

@media screen and (max-width: 1550px) {
  .blogBanner .banner-section-inner {
    padding-top: 14vw;
  }

@media screen and (max-width: 1500px) {
  #banner-carousel .primaryBtn {
    font-size: 1.2vw;
  }
 @keyframes nikoFlyTopRight {
    0% {
      top: 60%;
      left: -19%;
    }
    100% {
      top: 0%;
      left: 85.5%;
      right: auto;
      opacity: 1;
    }
  }
}