section:not(:nth-of-type(1)):not(:nth-of-type(2)) {
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  transform: translateY(50px);
  opacity: 0;
}

section.visible {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

.banner {
  padding: 160px 0 0 0;
}
@media(min-width:1440px){
  .banner {
    padding: 150px 0 0 0;
  }
}
.banner-heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-heading h1 {
  width: 90%;
  font-family: 'work-sans-semibold', sans-serif;
  margin-bottom: 12px;
  font-size: 6.4rem;
}
.banner-sub-heading {
  font-size: 5.6rem;
  font-family: 'work-sans-semibold', sans-serif;
}
.banner-heading p {
  font-size: 26px;
  font-family: "work-sans-regular", sans-serif;
  font-weight: 400;
}
.banner-button {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 25px;
}
.video-wrapper {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
#menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 8px;
  top: 2px;
}
.icon-bar {
  display: block;
  width: 27px;
  height: 4px;
  background-color: #0445d2;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}
#menu-toggle.open .icon-bar:nth-child(1) {
  transform: rotate(45deg) translate(4px, -4px);
}
#menu-toggle.open .icon-bar:nth-child(3) {
  transform: rotate(-45deg) translate(4px, 4px);
}
@media (max-width: 767px) {
  .banner-heading p {
    font-size: 20px;
  }
  .banner-card-col {
    margin-bottom: 4rem;
  }
  .banner-heading h1 {
    width: 100%;
  }
}
@media (max-width: 425px) {
  .banner-button {
    align-items: center;
  }
  .banner-button button {
    width: fit-content;
  }
}
.card-wrapper {
  width: 100%;
  height: 100%;
  box-shadow: 0 3px 6px #1450a840;
  background-color: #fff;
  transition: transform 0.5s;
  border-radius: 5px;
}
.two-card-section {
  margin: -129px 0 12rem 0;
}
.card-wrapper:hover {
  border: 1px solid #fff;
  box-shadow: 0 4px 12px 0 #19295e26;
  transform: scale(1.04);
}
.card-content {
  padding: 8rem 3rem;
}
.card-content h3,
.card-content p {
  text-align: center;
}
.card-content h3 {
  font-size: 3.6rem;
  font-family: 'work-sans-semibold', sans-serif;
}
.fade-in-cards {
  opacity: 0;
  visibility: hidden;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.fadeup {
  opacity: 1;
  visibility: visible;
  -webkit-animation-name: fadeUp;
  animation-name: fadeUp;
  border-radius: 5px;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@media (max-width: 767px) {
  .card-content h3,
  .card-content p {
    text-align: left;
  }
  .fade-in-cards {
    margin-top: 30px;
  }
}
.section-heading {
  text-align: center;
}
.accordion-row {
  margin-top: 6rem;
}
.accordion-second-section {
  margin-top: 7rem;
}
.accordian-item-wrapper {
  box-shadow: 0 3px 6px #1450a840;
  padding: 20px;
  border-radius: 5px;
}
.accordian-item-header {
  display: block;
  cursor: pointer;
}
.feature-section-content {
  height: 100%;
  display: flex;
  align-items: center;
}
.accordian-item-title {
  margin: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
}
.accordian-item-title-span {
  padding-right: 10px;
  display: inline-block;
  vertical-align: middle;
  flex-basis: 135%;
  font-size: 22px;
}
.accordian-arrow {
  opacity: 1;
  display: inline-block;
  vertical-align: middle;
  flex-basis: 40px;
}
.accordian-arrow svg {
  -webkit-transition: 500ms ease-out;
  transition: 500ms ease-out;
  -webkit-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.accordian-item-title img {
  width: 50px;
}
.accordian-item.accordian-open .accordian-arrow svg {
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: 500ms ease-out;
  transition: 500ms ease-out;
}
.accordian-item.accordian-open p {
  display: block;
  width: 90%;
}
.accordian-item p {
  display: none;
}
.accordian-item .accordian-item-content {
  overflow: hidden;
  transition: 500ms ease-out;
}
.svg-icon {
  width: 28px;
  font-size: 28px;
  color: #454545;
  -webkit-transition: 500ms ease-out;
  transition: 500ms ease-out;
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.feature-section-content .accordian-item:nth-of-type(2) {
  margin: 40px 0;
}
.accordion-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.accordion-image-wrapper img {
  width: 60%;
}
.accordian-open .accordian-item-title-span {
  color: #1034fe;
  margin-bottom: 14px;
  font-size: 22px;
}
.accordian-open .svg-icon {
  fill: #1034fe;
}
.accordian-wrapper {
  width: 100%;
}
.accordian-open .accordian-item-header {
  cursor: default !important;
}
@media (max-width: 767px) {
  .accordion-image-wrapper {
    margin-bottom: 30px;
  }
  .row-reverse {
    flex-direction: column-reverse;
  }
  .feature-section-content .accordian-item:nth-of-type(2) {
    margin: 20px 0;
  }
  .accordion-section .section-heading {
    text-align: initial;
  }
}
.human-centric-section {
  display: flex;
  align-items: center;
  margin: 6rem 0 12rem;
}
.benefits {
  margin: 12rem 0;
}
.explore-link img{
  margin:0 !important;
  width: 20px!important;
}
.explore-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  margin-top: 2rem;
}
.explore-text {
  position: relative;
  color: #1034fe;
}
.explore-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  background-color: #1034fe;
  transition: width 0.3s ease;
}
.card-link:hover .explore-text::after {
  width: 100%;
}
.content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content-wrapper .btn {
  width: fit-content;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .human-centric-img {
    margin-bottom: 50px;
  }
  .human-centric-section .section-heading {
    text-align: inherit;
  }
  .content-wrapper {
    align-items: inherit;
  }
}
.use-cases-section {
  margin: 12rem 0;
}
.tab-switch-section-heading {
  text-align: center;
  margin-bottom: 6rem;
}
.teammates-nine-cards-wrapper.row {
  margin: 6rem auto 0;
  row-gap: 2rem;
}
.teammates-hover-card a {
  color: #fff !important;
}
.hover-card-inner {
  border-radius: 16px;
  height: 100%;
  padding: 3rem;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease;
}
.hover-card-inner h3 {
  font-size: 24px;
  margin-bottom: 1.2rem;
}
.hover-card-inner p {
  font-size: 18px;
  color: #475467;
}
.read-more-btn {
  padding: 1rem 2rem;
  background: #fff;
  border: none;
  border-radius: 22px;
  margin-top: 2rem;
}
.read-more-btn p {
  font-size: 1.4rem;
  font-weight: 500;
  color: #000;
  margin: 0;
}
.use-case-image {
  margin: 3rem 0 5rem 0;
}
.use-case-image img {
  height: 160px;
}
.agent-analyst div {
  background: #EBF6FF;
}
.agent-force div {
  background: #E0FFED;
}
.agent-sre div {
  background: #EFF3FF;
}
.agent-hr div {
  background: #FFEDED;
}
.agent-search div {
  background: #FEFAEF;
}
.agent-instruct div {
  background: #bef5d5;
}
.agent-sketch div {
  background: #ffe3cf;
}
.agent-label div {
  background: #fff5ee;
}
.metasecure-ai div {
  background: #e0e7ff;
}
.flex-card-wrapper {
  display: flex;
  justify-content: space-between;
  margin: auto 0;
}
.flex-card-wrapper .use-case-image {
  width: 34%;
}
.flex-card-wrapper .card-text {
  width: 55%;
  margin-bottom: 3rem;
}
.hover-card-inner:has(.flex-card-wrapper) {
  text-align: left;
  padding-left: 4rem;
  display: flex;
}
.agent-sketch img {
  height: 229px;
}
.agent-label .flex-card-wrapper {
  align-items: flex-end;
  margin: auto 0 0;
}
/* .use-case-hover-icon {
position: absolute;
top: 2rem;
right: 2rem;
display: none;
animation: visibleEffect 0.5s;
cursor: pointer;
} */
.use-case-hover-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: block; 
  cursor: pointer;
}
@keyframes visibleEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* .use-case-hover-icon img {
height: 40px;
width: 40px;
} */
.hover-card-inner:hover {
  transform: scale(1.02);
  box-shadow: 0px 4px 12px 0px #19295e26;
}
/* .hover-card-inner:hover .use-case-hover-icon {
display: block;
} */
.use-case-hover-icon svg {
  height: 40px;
  width: 40px;
  transition: all 0.3s ease;
  --circle-color: white;
  --path-color: #575757;
}
.use-case-hover-icon svg circle {
  fill: var(--circle-color);
  stroke: var(--path-color);
}
.use-case-hover-icon svg path {
  fill: var(--path-color);
  fill-opacity: 0.9;
}
.hover-card-inner:hover .use-case-hover-icon svg {
  --circle-color: #2043df; 
  --path-color: white;
}
@media (max-width: 1100px) {
  .flex-card-wrapper .use-case-image {
    width: 44%;
  }
}
@media (max-width: 1024px) {
  .flex-card-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  .flex-card-wrapper div {
    width: 100% !important;
  }
  .hover-card-inner:has(.flex-card-wrapper) {
    padding-left: 2rem;
    text-align: center;
  }
  .flex-card-wrapper .use-case-image {
    margin-bottom: 2rem;
  }
  .use-case-image img,
  .use-case-images img {
    width: 130px;
    height: 130px !important;
  }
  .agent-label {
    order: 1;
  }
}
@media (max-width: 768px) {
  .teammates-nine-cards-wrapper.row {
    width: 100%;
  }
  .hover-card-inner {
    text-align: left !important;
  }
}
.industries-section {
  margin-bottom: 12rem;
}
.tabs-container {
  margin: 4rem auto;
  display: flex;
  gap: 60px;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 16px;
  width: 60%;
}
.tabs-container div {
  padding: 1rem 5rem;
  width: fit-content;
  text-align: center;
  cursor: pointer;
  border-radius: 8px;
  background: #bebebe30;
}
.tabs-container div:first-child {
  padding: 1rem;
}
.tab-switch-column p {
  color: #5e6575;
}
.tab-switch-column img {
  display: block;
  height: auto;
}
.tab-first-card {
  box-shadow: 6px 8px 16px 0 rgba(131, 153, 239, 0.25);
}
.tab-second-card {
  box-shadow: 6px 8px 16px 0 rgba(131, 153, 239, 0.25);
  height:100%;
}
.tab-third-card {
  box-shadow: 6px 8px 16px 0 rgba(131, 153, 239, 0.25);
  height: 100%;
}
.tab-fourth-card {
  box-shadow: 6px 8px 16px 0 rgba(131, 153, 239, 0.25);
}
.tab-card-content-div {
  margin-top: 6rem;
}
@media (max-width: 1440px) {
  .tabs-container {
    width: 80%;
  }
}
@media (max-width: 1024px) {
  .tabs-container {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .tab-third-card{
    height:auto;
  }
  .tabs-container div {
    width: 100%;
  }
}
.invite-modal-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100vw;
  height: 100vh;
  place-items: center;
  background: rgb(0, 0, 0, 0.5);
  z-index: 10000;
  filter: blur(1);
}
.invite-modal {
  background: white;
  padding: 30px;
  border-radius: 5px;
  animation: 0.3s fade-up;
  box-shadow: 0 10px 40px;
}
@keyframes fade-up {
  from {
    transform: translateY(-200px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
.close-btn-wrapper {
  text-align: right;
}
.close-btn {
  font-size: 30px;
  border: none;
  background: white;
}
.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: rgba(243, 243, 243, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.video-container-inside {
  position: relative;
}
.video-container .close {
  position: absolute;
  top: -60px;
  right: -60px;
  cursor: pointer;
  z-index: 99;
  width: 50px;
}
.video-container iframe {
  border: 13px solid #1034fe;
}
.show {
  pointer-events: all;
  opacity: 1;
}
@media (max-width: 530px) {
  .video-container .close {
    position: absolute;
    top: -80px;
    right: calc(50% - 20px);
    cursor: pointer;
    z-index: 99;
    width: 50px;
  }
}
.invite-modal-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  place-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  filter: blur(1);
  overflow-y: scroll;
}
.form {
  display: flex;
  justify-content: center;
}
.get-demo-container {
  background: #fff;
  padding: 50px 40px 72px;
  border-radius: 3px;
  animation: fade-up 0.3s;
  box-shadow: 0 10px 40px;
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: 6rem 0;
}
.close-button-wrapper {
  height: 40px;
  margin-left: 10px;
}
.heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.heading h2 {
  margin-bottom: 0;
}
.get-demo-form {
  margin-top: 30px;
}
.close-button-wrapper button.close-button {
  font-size: 22px;
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  color: #213047;
}
.get-demo-form h2 {
  margin-bottom: 40px;
  font-size: 4rem;
  line-height: 135%;
  text-align: left !important;
}
.form-field {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
input[type="text"],
.form-field select {
  width: 100%;
  height: 42px;
  padding: 0 15px;
  border-radius: 3px;
  box-shadow: 0 3px 6px rgb(83 109 254 / 16%);
  border: 1px solid #cbd6e2;
  background-color: #f5f8fa;
  font-size: 1.6rem;
  font-family: 'work-sans-regular', sans-serif;
  outline-color:#1034fe;
}
.comment input {
  width: 100%;
  height: 42px;
  padding: 0 15px;
  border-radius: 3px;
  box-shadow: 0 3px 6px rgb(83 109 254 / 16%);
  border: 1px solid #cbd6e2;
  background-color: #f5f8fa;
  font-size: 1.6rem;
  font-family: 'work-sans-regular', sans-serif;
}
.captcha-container input {
  width: 100%;
  height: 42px;
  padding: 0 15px;
  border-radius: 3px;
  box-shadow: 0 3px 6px rgb(83 109 254 / 16%);
  border: 1px solid #cbd6e2;
  background-color: #f5f8fa;
  font-size: 1.6rem;
  font-family: 'work-sans-regular', sans-serif;
}
.form-field input {
  width: 100%;
  height: 42px;
  padding: 0 15px;
  border-radius: 3px;
  box-shadow: 0 3px 6px rgb(83 109 254 / 16%);
  border: 1px solid #cbd6e2;
  background-color: #f5f8fa;
  font-size: 1.6rem;
  font-family: 'work-sans-regular', sans-serif;
}
.form-field input {
  outline-color: #00f!important;
}
input:focus {
  border-color: green;
}
.form-header {
  font-family: 'work-sans-medium', sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
  width: 100%;
}
.checkbox-container {
  width: 32%;
  margin-bottom: 10px;
}
.checkbox-container span {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  padding: 15px;
  user-select: none;
  font-family: 'work-sans-regular', sans-serif;
  border-radius: 3px;
  box-shadow: 0 3px 6px rgb(83 109 254 / 16%);
  border: 1px solid #cbd6e2;
  background-color: #f5f8fa;
  margin-right: 14px;
}
label input:checked + span {
  border: 1px solid #1034fe !important;
  color: #1034fe !important;
}
.check-box-wrapper {
  margin-right: 177px;
}
.check-box-wrapper > .checkbox-container {
  margin-right: 10px;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: white;
  border: 1px solid grey;
  box-shadow: 0 3px 6px rgb(83 109 254 / 16%);
  border-radius: 2px;
  visibility: hidden;
}
.resources-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
}
.platform-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.resources-form-header {
  font-family: 'work-sans-medium', sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
  width: 100%;
}
.comment label {
  margin: 30px 0 10px 0;
}
.secondary {
  margin-left: -165px;
}
.input-container {
  width: 48%;
}
.captcha-wrapper-xenonstack {
  display: flex;
}
.captach-heading-wrapper,
.captach-heading-wrapper div:nth-of-type(1) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.captach-heading-wrapper canvas {
  width: 57%;
  height: 86px;
  margin: 0 0 -28px 42px;
}
.captcha-wrapper-xenonstack input:focus {
  outline: none;
  border: 1px solid #2b3751;
}
.captcha-wrapper-xenonstack div:nth-of-type(1) {
  width: 100%;
}
.captach-heading-wrapper .refresh-button {
  border: none;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #39476033;
  border: 1px solid #e6ecf4;
  border-radius: 5px;
  text-align: left;
  height: 40px;
  width: 10%;
  font-size: 2.4rem;
  font-family: 'work-sans-regular', sans-serif;
  color: #222c3a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 15px;
}
p.errorMsgCaptcha {
  color: red !important;
  margin-top: 6px;
  font-size: 12px;
}
p.errormessage-comment {
  color: red !important;
  margin-top: 6px;
  font-size: 12px;
}
.captach-heading-wrapper label {
  margin-top: 24px;
}
.submit {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.data-resources {
  margin-bottom: 20px;
}
.thank-you-message-block {
  display: none;
}
.choice-option .checkbox-container span {
  height: 75px;
}
form#thanks-form-parent input:active,
form#thanks-form-parent input:focus {
  border: 1px solid #90b6df;
  outline: none;
}
#resource-comment {
  display: none;
}
#platform-comment {
  display: none;
}
#bi-comment {
  display: none;
}
@media (max-width: 767px) {
  .errorMsgCaptcha {
    font-size: 2rem;
  }
  .form-field {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .input-container {
    width: 100%;
  }
  .checkbox-container {
    width: 49%;
  }
  .secondary {
    margin-left: 0;
  }
  .form-field input {
    margin-bottom: 15px;
  }
  .captach-heading-wrapper {
    margin-top: -20px;
  }
  .get-demo-form h2 {
    text-align: center !important;
  }
  .checkbox-container {
    margin-top: 11px;
    font-size: 2rem;
  }
  .checkmark {
    top: 2px;
  }
  .form-field input {
    font-size: 2rem;
  }
  .comment input {
    font-size: 2rem;
  }
  .captcha-container input {
    font-size: 2rem;
  }
  p.errormessage-comment {
    margin-top: 0;
    margin-bottom: 5px;
  }
  p.media-errormessage {
    margin-top: 10px;
  }
  .check-box-wrapper{
    margin-right: 0;
  }
}
@media (max-width: 425px) {
  .get-demo-container {
    padding: 50px 20px 72px;
  }
  .captach-heading-wrapper {
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
  }
  .captach-heading-wrapper .refresh-button {
    width: 100px;
    margin-bottom: 30px;
  }
}
@media (max-width: 356px) {
  .captach-heading-wrapper canvas{
    width: 70%;
  }
}
.supported-iac-card img {
  width: 90px;
  margin-bottom: 25px;
  height: 90px;
}
.supported-iac-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  transition: all 0.4s ease;
}
.supported-iac-card p {
  text-align: center;
  font-family: 'work-sans-medium', sans-serif;
  font-weight: 600;
}
.supported-iac-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  color: #1034fe;
}
.supported-iac-card {
  transition: 0.4s ease all;
}
.supported-iac-card p:hover {
  color: #1034fe !important;
}
@media (max-width: 767px) {
  .supported-iac-card img {
    width: 40px;
    height: 40px;
  }
}

.benefits-card-outer-wrapper {
  height: 100%;
}
.benefits-card-content-wrapper {
  box-shadow: 0 3px 6px #1450a840;
  padding: 4rem;
  text-align: center;
  height: 100%;
  cursor: default !important;
  transition: transform 0.5s;
  border-radius: 5px;
}
.benefits-card-content-wrapper:hover {
  transform: scale(0.95);
  cursor: pointer;
}
.usecase-section-heading {
  margin-bottom: 6rem;
}
.benefits-card-content-wrapper img {
  width: 130px;
  margin-bottom: 40px;
  height: 120px;
}
.benefits-card-content-wrapper svg {
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .benefits-card-outer-wrapper {
    padding-top: 30px;
  }
  .last-card {
    padding-bottom: 0;
  }
  .benefits-card-content-wrapper {
    text-align: inherit;
  }
  .benefits .section-heading {
    text-align: initial;
  }
  .multiple-card-section h2 {
    text-align: left;
  }
  .multiple-card-section p {
    text-align: left;
  }
}
.pricing-section {
  margin-bottom: 6rem;
}
.pricing-card-outer-wrapper {
  margin-top: 7rem;
}
.pricing-card-content-wrapper {
  text-align: center;
  height: 100%;
  padding-bottom: 10px;
}
.card-hover {
  margin-left: -30px;
  margin-right: -30px;
  height: 100%;
}
.pricing-card-content-wrapper img {
  width: 140px;
  margin-bottom: 30px;
  height: 140px;
}
.underline:after {
  display: block;
  content: "";
  position: absolute;
  bottom: -7px;
  left: 20px;
  width: calc(100% - 40px);
  height: 1px;
  background: #1034fe;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.underline {
  position: relative;
  cursor: pointer;
}
.underline:hover:after {
  width: 100%;
  left: 0;
}
.right-border {
  padding: 0 2rem;
}
.left-border {
  padding: 0 2rem;
}
@media (max-width: 777px) {
  .pricing-card-outer-wrapper {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .card-hover {
    margin: 0;
  }
  .pricing-card-content-wrapper {
    text-align: initial;
  }
  .pricing-section .section-heading {
    text-align: initial;
  }
}
.main-heading-section h2 {
  font-family: "work-sans-semibold", "sans-serif";
  font-size: 5.4rem;
}
.main-heading-section {
  margin-bottom: 7rem;
}
.three-card-section {
  margin: 10rem 0 12rem 0;
}
.sliding-card {
  max-width: 100%;
  height: 100%;
}
.content-heading h2 {
  font-family: "work-sans-semibold", "sans-serif";
}
.content-heading {
  margin-bottom: 5rem;
  text-align: center;
}
.card-cta-wrapper {
  margin: 30px 0;
}
.card-cta-wrapper img {
  width: 30px!important;
}
@media (min-width: 768px) and (max-width: 1540px) {
  .sliding-card-content h2 {
    font-size: 18px !important;
  }
  .sliding-card-content h3 {
    font-size: 15px !important;
  }
}
@media (max-width: 767px) {
  .card-col-wrapper {
    margin-bottom: 4rem;
  }
}
.sliding-cards-section {
  margin-bottom: 12rem;
}
.sliding-cards-heading {
  margin-bottom: 6rem;
}
.sliding-cards-heading h2 {
  font-family: 'work-sans-semibold', 'sans-serif';
}
.sliding-cards-container {
  position: relative;
}
.sliding-cards-wrapper {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}
.sliding-card {
  flex: 0 0 30%;
  max-width: 380px;
  transition: transform 0.3s;
  height: auto;
}
.sliding-card-wrapper {
  border-radius: 10px;
  box-shadow: 0 3px 6px #1450a840;
  height: 100%;
  background: #FCFCFE;
  border: 1px solid #ececec;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sliding-cards-wrapper::-webkit-scrollbar {
  display: none;
}
.sliding-card-content {
  padding: 30px 40px 30px 24px;
}
.sliding-card-content h3 {
  font-family: 'work-sans-medium', 'sans-serif';
  font-size: 22px;
  margin-bottom: 14px;
  color: #022557!important;
}
.sliding-card-content p {
  font-size: 17px;
}
.sliding-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 28px;
}
.prev-btn,
.next-btn {
  background-color: #fff;
  cursor: pointer;
  border: none;
}
@media(max-width: 767px) {
  .sliding-card {
    min-width: 300px;
  }
  .sliding-card-content h2 {
    font-size: 20px;
  }
  .sliding-card-content h3 {
    font-size: 17px;
  }
}
/*New*/
.industries-section {
  margin-bottom: 12rem;
}

@media(max-width:1200px){
  .tabs-container {
    flex-wrap:wrap;
    gap:2.5rem 4rem;
  }
}
.tab-pointer-wrapper {
  display: flex;
  gap: 18px;
}
.tab-heading {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
}
.tab-heading img {
  width: 40px;
  margin-top: 6px;
}
.tabs-container div {
  padding: 1rem 4rem !important;
  width: fit-content;
  text-align: center;
  cursor: pointer;
  border-radius: 30px;
  background: #bebebe30;
}
.tabs-container p {
  font-size: 17px;
  color: #424242;
  margin: 0;
}
.tab-content {
  display: none;
  animation: fadeEffect 1s;
}
.tab-content.active {
  display: block;
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tabs-container div.active {
  background: #0445d2;
}
.tabs-container div.active p {
  font-weight: 600;
  color: #fff;
}
.tabs-container div.active {
  cursor: default !important;
}
.tab-switch-cards-wrapper > div {
  display: flex;
  flex-direction: column;
}
.tab-switch-column {
  padding: 12px 36px;
  border-radius: 18px;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
}
.tab-switch-column h3 {
  font-size: 22px;
  font-weight: 600;
  color: #262626;
  margin: 2rem 0;
}
.tab-switch-column p {
  font-size: 15px;
  color: #5e6575;
}
.tab-switch-column img {
  margin: 15px auto 30px auto;
  display: block;
  height: auto;
  width: 240px;
}
.tab-second-card {
  background: #fffefe;
}
.tab-second-card img{
  height: 240px;
  margin: 15px auto 30px auto;
}
.tab-third-card {
  height: 100%;
}
.tab-fourth-card {
  height: 100%;
}
@media (max-width: 768px) {
  .tab-first-card {
    min-height: auto;
  }
  .tabs-container {
    width: 100%;
    flex-direction: column;
    gap: 2rem;
    border: none;
    box-shadow: none;
  }
  .tabs-container div{
    width: 100%;
  }
}
.agent-tab-switch-section {
  margin: 12rem 0;
}
.agent-tab-switch-header {
  gap: 6rem;
  width: max-content;
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
  margin-top: 1rem;
}
.wrapper-agent-tab-switch {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.tab-btn {
  padding: 1rem 4rem;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  background: #bebebe30;
  font-size: 16px;
  font-weight: bold;
  color: #424242;
}
@media(max-width: 767px){
  .agent-tab-switch-header{
    gap: 1.5rem;
  }
  .tab-switch-section-heading {
    text-align: left;
  }
}
@media(max-width: 400px){
  .agent-tab-switch-header{
    gap: 2rem;
  }
  .tab-btn{
    padding:10px;
  }
}
.tab-btn.active {
  color: #fff;
  background: #2043df;
  border-bottom: 2px solid #2043df;
}
.tab-content {
  display: none;
  align-items: start;
}
.tab-content.active {
  display: flex;
}
.tab-para {
  margin-top: 5rem;
  display: flex;
  gap: 3rem;
  flex-direction: column;
}
.tab-para h3{
  margin-bottom: 1rem;
  font-size: 20px;
}
.tab-para p{
  font-size: 16px;
}
.tab-text h2{
  font-size: 3.2rem;
  margin-bottom: 1rem;
  font-family: 'work-sans-semibold', sans-serif;
}
@media(max-width:767px){
  .tab-content {
    flex-direction: column;
  }
  .tab-para {
    margin-top: 7rem;
    gap: 5rem;
    margin-bottom: 6rem;
  }
  .tab-text{
    margin-top: 5rem;
  }
}
.explore-now-link {
  display: block;     
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.circle {
  width: 32px;
  height: 32px;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  background: #2043df;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.circle svg {
  width: 18px;
  height: 18px;
  transition: stroke 0.3s ease;
}
.link-text {
  font-size: 16px;
  font-weight: 500;
  color: #2043df;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}
.explore-cta {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.tab-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.explore-now-link:hover .circle {
  background: #2043df;
}
.explore-now-link:hover .circle svg path {
  stroke: #fff;
}
.explore-now-link:hover .link-text {
  opacity: 1;
  transform: translateX(0);
}
.tab-content {
  align-items: center;
  flex-wrap: wrap;
}
.tab-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tab-image img {
  max-width: 100%;
  height: auto;
}
p.section-heading {
  margin: 0 auto 40px;
  width: 80%;
}
@media(max-width:767px){
  .hover-card-inner h3{
    font-size: 18px;
  }
  .hover-card-inner p{
    font-size: 16px;
  }
  .tab-btn{
    font-size:14px;
  }
}
.card-heading,
.card-slider-heading,
.tab-switch-section-heading,
.integration-card-heading,
.grid-card-heading{
  width: 80%;
  margin: 0 auto;
}
.wrapper-agent-tab-switch{
  margin: 4rem 0 3rem;
}
@media(max-width:767px){
  .card-heading,
  .card-slider-heading,
  .tab-switch-section-heading,
  .integration-card-heading,
  .grid-card-heading{
    width: 100%;
    margin: 0;
  }
}
@media(min-width:1025px) and (max-width:1540px){
  .banner-heading h1 {
    font-size: 5rem !important;
  }
  .banner-heading p{
    font-size: 22px;
  }
  .card-heading h2,
  .card-slider-heading h2,
  .section-header h2,
  .integration-card-heading h2,
  .footer__banner--heading h2,
  .grid-card-heading h2,
  h2.section-heading,
  .tab-switch-section-heading h2{
    font-size: 4.2rem;
  }
  .arch-card-text-div h3{
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
  .capabilities-card-content h3,
  .question-header h3,
  .card-text-div h3{
    font-size: 2.8rem;
  }
  .hover-card-inner h3{
    font-size: 20px;
  }
  .card-text-div-left p,
  .card-text-div-right p,
  .card-text-div-right p{
    font-size: 16px;
  }
  .arch-card-text-div p,
  .card-heading p,
  .hover-card-inner p,
  .integration-card-heading p,
  .tab-switch-section-heading p,
  .card-pointers-wrapper-one p,
  .card-pointers-wrapper-two p,
  .grid-card-subtext p,
  .card-pointers-wrapper-three p{
    font-size: 16px;
  }
  .pricing-card-content-wrapper p{
    font-size: 18px;
    width: 90%;
    margin: 0 auto;
  }
  .footer__banner--heading p,
  p.section-heading {
    margin: 0 auto 40px;
    width: 80%;
  }
  .card-slider-heading p,
  .card-text-div p,
  .capabilities-card-content p{
    font-size:16px;
  }
  .card-text,
  .section-header p{
    font-size: 18px;
  }
  .section-tag p{
    font-size: 16px; !important;
  }
  .metric-value{
    font-size: 3.6rem !important;
  }
  .metric-label{
    font-size: 2.4rem !important;
  }
  .use-case-hover-icon {
    width: 35px;
    height: 35px;
  }
  .card-title{
    font-size: 3rem !important;
  }
  .card-text-div{
    margin: 2rem 0 2rem !important;
  }
  .supported-iac-card img{
    width: 70px;
    height: 70px;
  }
}
@media(max-width:1024px){
  .supported-iac-card img{
    width: 75px;
    height: 75px;
  }
  .hover-card-inner p{
    font-size: 2.3rem;
  }
  .hover-card-inner h3{
    font-size: 20px;
  }
}
@media(max-width:768px){
  .supported-iac-card img{
    width:60px;
    height:60px;
  }
  .hover-card-inner h3{
    font-size: 18px;
  }
  p.section-heading{
    margin: 0;
    width: 100%;
  }
}
@media(max-width:767px){
  .supported-iac-card img{
    width: 50px;
    height: 50px;
  }
}