:root {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  list-style: none;
}

a {
  color: #000000;
}

p {
  text-align: left;
}

*:active {
  outline: none;
}
html {
  margin: 0px;
  padding: 0px;
}
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  height: 7px;
  width: 7px;
  scroll-behavior: smooth;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@media (min-width: 1400px) and (max-width: 1500px) {
  .container {
    max-width: 1220px !important;
  }
}
a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

h2:not(#about-hero h2, #modalContactForm h2) {
  font-size: 42px !important;
  color: #335288;
  font-weight: 600 !important;
  line-height: 63px !important;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 15px 0;
  background: #012970;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 57px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol a {
  color: #fff;
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #8894f6;
  content: "/";
}

/*  Disable aos animation delay on mobile devices */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------- Header---------------------------------*/

.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
}

.header.header-scrolled {
  background-color: #fff;
  padding: 15px 10px;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: "Poppins", sans-serif;
  margin-top: 3px;
}

/*-------------------- Navigation Menu-------------------------------------*/

/* Desktop Navigation  */

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px 15px 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #3d3d3d;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #1f668f;
}

.navbar .getstarted {
  background: #16425b;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #16425b;
}
.dropdown ul li {
  color: whitesmoke;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul li:hover {
  background-color: #e9effa;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}
.navbar .dropdown ul li a:hover {
  color: rgb(0, 0, 0);
}
.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #16425b;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #16425b;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px !important;
  font-size: 15px;
  color: #16425b;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #000000;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 15px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(127, 137, 161, 0.25);
  border-radius: 10px;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #16425b;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero-section {
  background: url("/assets/img/bg.png") no-repeat center center/cover;
  background-attachment: fixed;
  padding: 6rem 1em 3rem 1em;
}

.main-section-container {
  display: flex;
  justify-content: center;
  gap: 3em;
  flex-wrap: wrap;
  align-items: center;
}
.hero-left {
  flex: 1;
}

.hero-section h1 {
  font-weight: 600;
  color: #004e9a;
  letter-spacing: 2px;
  line-height: 80px;
  font-size: 45px;
}
.hero-section h1 > span {
  font-family: "Baloo Bhai 2", cursive;
  font-weight: 900;
  color: #004e9a;
  letter-spacing: 2px;
  line-height: 80px;
  font-size: 80px;
}

.hero-section p {
  font-weight: 400;
  color: #385170;
  font-size: 16px;
  line-height: 24px;
}
.hero-sec-btns {
  margin-top: 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1em;
}
.hero-sec-btns a {
  cursor: pointer;
}
.hero-sec-btns a .hero-btn {
  border: none;
  border-radius: 5px;
  padding: 0.5em 1.3em;
  background: #f16f6f;
  color: #fff;
}
.hero-sec-btns a:nth-child(2) .hero-btn {
  background: #6a77ef;
}
.hero-sec-btns .hero-btn:active {
  outline: 5px solid rgba(207, 173, 20, 0.3);
}

.hero-right {
  flex: 1;
}

.hero-right img {
  width: 30rem;
}

@media screen and (max-width: 480px) {
  .hero-section h1 {
    line-height: 60px;
    font-size: 35px;
  }
  .hero-section h1 > span {
    line-height: 60px;
    font-size: 60px;
  }
  .hero-right img {
    width: 20rem;
  }
}

@media screen and (min-width: 300px) and (max-width: 460px) {
  .header.header-scrolled {
    padding: 15px 10px;
  }
}

/* --------------------bold-text --------------------- */
#cyber_security_services_headings {
  margin-top: 8rem !important;
}

.header-title {
  font-size: 19px !important;
}

.services {
  text-align: center;
  margin-top: 0rem;
}
.bold-text h1 {
  font-size: 42px;
  color: #335288;
  font-weight: 700;
  line-height: 63px;
  margin-top: 4rem;
}
.bold-text p {
  color: #6f6f6f;
  font-size: 16px;
  margin: auto;
  width: 70%;
}

.line {
  margin: auto;
  margin-top: 15px;
  margin-bottom: 4rem;
  width: 100px;
  height: 3px;
  background-color: #16425b;
}
#cyber-security-line {
  margin-bottom: 2rem !important;
}
@media screen and (min-width: 1000px) and (max-width: 1200px) {
  .services .box h3 {
    font-size: 24px !important;
  }
}
/* ------------------services cards-------------------------------- */
.services .box {
  min-height: auto;
  padding-bottom: 0.2rem;
  margin-top: -1rem;
  background: #ffffff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
@media screen and (min-width: 950px) {
  .services .box {
    min-height: 33.5rem;
  }
}
#servies-card-2 {
  padding-top: -5rem;
}
.services .box img {
  padding: 70px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}
.services .box:hover img {
  transform: scale(1);
}
.services .box h3 {
  font-size: 30px;
  color: #012970;
  font-weight: 500;
  margin-bottom: 10px;
}
.services .box p {
  padding: 0 40px 0 40px;
  font-size: 16px;
  color: #6f6f6f;
}

/*---------------------------- cyber security services ----------------------- */
.service-1 {
  margin-bottom: 5rem;
  width: 100%;
  height: 135vh;
  background: url(../img/vector-bg.png) top center no-repeat;
  background-size: cover;
}

.services-first-p {
  margin-top: 5px;
  margin-bottom: 20px;
  font-size: 22px;
}

.cyber-services .box {
  margin: 1rem;
  padding-bottom: 2rem;
  height: fit-content;
  background: #ffffff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: 40px;
  border-top-right-radius: 40px;
}

.box-1 {
  border-bottom: 3px solid #3b7ca6;
  min-height: 31rem;
}
.cyber-services .box img {
  display: block;
  margin: auto;
  padding: 35px 90px;
  transition: 0.5s;
  transform: scale(1.1);
}
.cyber-services .box:hover img {
  transform: scale(1);
}
.cyber-services .box h3 {
  text-align: center;
  font-size: 23px;
  line-height: 33px;
  color: #3e3d40;
  font-weight: 500;
  margin-bottom: 10px;
  padding: 0px 20px;
}
.cyber-services .box p {
  text-align: center;
  padding: 0px 50px 0px 50px;
  font-size: 16px;
  color: #6f6f6f;
}
.btns {
  width: 100%;
}
.btns i {
  margin-left: 7px;
}
.btn-outline-info {
  outline: 1px solid #16425b !important ;
  border: none !important;
  color: #16425b;
  display: block;
  margin: auto;
  transition: all 0.3s ease-in-out;
}
.btn-outline-info:hover {
  border: none;
  background-color: #335288;
  color: #fff;
}
@media screen and (min-width: 300px) and (max-width: 400px) {
  .services-first-p {
    padding: 0px 10px 0px 10px;
  }
  .services .box img {
    padding: 40px 50px !important;
  }
}

@media screen and (min-width: 400px) and (max-width: 500px) {
  .cyber-services .box {
    height: 70vh;
  }
  .services .box img {
    padding: 40px 50px !important;
  }
}

@media screen and (min-width: 700px) and (max-width: 1024px) {
  .hero-txt {
    margin-top: 0rem !important;
  }
  .cyber-services .box {
    height: 100%;
    padding-bottom: 0px;
  }
  .cyber-services .box h3 {
    font-size: 22px;
  }
  .hero h1 {
    font-size: 75px;
    line-height: 75px;
  }
  .hero p {
    width: 100%;
    line-height: 30px;
  }
  .vectorImg {
    margin-top: 4rem;
  }
  .service-1 {
    height: 150vh;
  }
  .btn-get-started {
    padding: 15px 30px !important;
  }
  #btn-2 {
    margin-left: 20px !important;
  }
}

@media screen and (min-width: 700px) and (max-width: 900px) {
  .accounting-products .box {
    margin-top: 2rem !important;
  }
}
@media screen and (max-width: 500px) and (max-height: 900px) {
  .cyber-services .box {
    margin: 0px !important;
  }
  .btns {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 300px) and (max-width: 1024px) {
  .cyber-services .box h3 {
    padding: 0px 20px 0px 20px;
  }
  .service-1 {
    height: fit-content !important;
    padding-bottom: 15rem;
  }
  .services-first-p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    padding: 0rem 1rem;
  }
  .services-first {
    margin-top: 15rem;
  }
  .service-1 {
    margin-bottom: 0;
  }
  .cyber-services .box {
    height: fit-content;
    padding-bottom: 2rem;
  }
}

@media screen and (min-width: 300px) and (max-width: 475px) {
  #specialization .box {
    padding-bottom: 2rem;
  }
  .bold-text p {
    width: 90%;
  }
  .services .box h3 {
    padding: 0px 20px 0px 20px;
    font-size: 22px;
    line-height: 30px;
  }
  .services .box p {
    padding: 0px 20px 0px 20px;
  }
  .col-lg-4 {
    padding: 2.5rem 2.5rem 0rem 2.5rem;
  }

  .line {
    margin-bottom: 4rem !important;
  }
  .services-first > .services > .line {
    margin-bottom: 0rem !important;
  }
  .Accounting-products > .line {
    margin-bottom: 0rem !important;
  }
  .product-disclaimer p {
    margin: 1.5rem 0rem !important;
  }
}

@media screen and (min-width: 1300px) and (max-width: 1500px) {
  .bold-text h1 {
    margin-top: 0rem !important;
  }
  .services {
    margin-top: 6rem !important;
  }
}
@media screen and (min-width: 1700px) and (max-width: 2000px) {
  .service-1 {
    height: 130vh !important;
  }
  .vectorImg {
    margin-left: 7rem;
  }
  #cyber_security_services_headings {
    margin-top: 16rem !important;
  }
}
@media screen and (min-width: 1300px) and (max-width: 1500px) {
  .service-1 {
    height: 150vh !important;
  }
  .vectorImg {
    margin-left: 7rem;
    height: 100%;
  }
}
@media screen and (min-width: 1500px) and (max-width: 1600px) {
  .service-1 {
    height: 130vh !important;
  }
  .vectorImg {
    margin-left: 7rem;
    height: 100%;
  }
}
.Accounting-products > .line {
  margin-bottom: 2rem !important;
}
.accounting-products .box {
  margin: 1rem;
  background: #ffffff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  padding-bottom: 1rem;
}
.accounting-products .box img {
  display: block;
  margin: auto;
  padding: 40px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}
.accounting-products .box:hover img:nth-child(1) {
  transform: scale(1);
}
.accounting-products .box h3 {
  text-align: center;
  font-size: 22px;
  line-height: 33px;
  color: #3e3d40;
  font-weight: 500;
  margin-bottom: 12px;
  padding: 0px 20px;
}
.accounting-products .box h3 img {
  padding: 0px;
  float: right;
  margin-right: 3rem;
}
.accounting-products .box p {
  text-align: center;
  padding-left: 2.2rem;
  padding-right: 2.2rem;
  font-size: 16px;
  color: #6f6f6f;
  margin-bottom: 2rem;
}

.btns {
  width: 100%;
}
.btns i {
  margin-left: 7px;
}
.btn-outline-info {
  display: block;
  margin: auto;
  font-size: 14px;
}
.product-btn {
  width: 75%;
}
.btn-outline-info:hover {
  border: none;
  background-color: #335288;
  color: #fff;
}
.product-disclaimer {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .accounting-products .box h3 img {
    margin-right: 7rem;
    margin-top: 1rem;
  }
  .accounting-products .box p {
    margin-top: 20px;
    padding-left: 32px;
    font-size: 16px;
    color: #6f6f6f;
    margin-bottom: 2rem;
  }
  .product-disclaimer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media screen and (min-width: 500px) and (max-width: 1000px) {
  .accounting-products .box {
    height: fit-content;
    padding-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .accounting-products .box h3 {
    padding: 0px 20px 0px 20px;
  }

  .img-fluid {
    padding: 15px;
    margin-top: 6px;
  }
}

/*------------- footer start --------- */
.footer {
  background-color: #e6e5e3;
}

.footer-section {
  padding: 4em 1em;
}

.footer-container {
  max-width: 80rem;
  margin-inline: auto;
}
.footer-container marquee {
  margin-bottom: 1.5em;
}

.footer-link:hover {
  color: #1f668f;
  border-bottom: 1px solid #1f668f;
}

.footer-main-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  column-gap: 3em;
}

.footer-main-content * {
  font-size: 17px;
  text-align: left;
}

.footer-main-content h5 {
  font-size: 19px;
  font-weight: 500;
}
.footer-main-content h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1em;
}

.footer-sec {
  flex: 1;
  min-width: 12em;
}

.footer-sec p {
  margin-bottom: 1rem;
}

.footer-sec:not(:nth-child(1)) {
  margin-top: 3em;
}

.footer-logo {
  margin-bottom: 2em;
}

/* ---------------- Back to top button -------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 25px;
  bottom: 25px;
  z-index: 99999;
  background: #3d84ff;
  width: 45px;
  height: 45px;
  border-radius: 30px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 18px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #4c5efa;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 300px) and (max-width: 900px) {
  .back-to-top {
    right: 20px;
  }
}

/* =================================loader css ======================= */

.loading-loader {
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
}
#loading {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 30px;
  width: 30px;
  transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
  animation: animated 1.2s ease-in-out infinite;
}

@keyframes animated {
  0%,
  10%,
  100% {
    height: 28px;
    width: 28px;
  }
  65% {
    height: 45px;
    width: 45px;
  }
}

.spans {
  position: absolute;
  display: block;
  width: 13px;
  height: 13px;
  animation: rotated 1.2s linear both infinite;
}

@keyframes rotated {
  0%,
  30% {
    transform: rotate(0);
  }
  65% {
    transform: rotate(-40deg);
  }
  100% {
    transform: rotate(-90deg);
  }
}

#span1 {
  top: 0;
  left: 0;
  background-color: #55d462;
}

#span2 {
  top: 0;
  right: 0;
  background-color: #8675e5;
}

#span3 {
  bottom: 0;
  left: 0;
  background-color: #d84c77;
}

#span4 {
  bottom: 0;
  right: 0;
  background-color: #fd9a3f;
}

@media screen and (min-width: 300px) and (max-width: 576px) {
  .row {
    margin-right: calc(var(--bs-gutter-x) / -4);
  }
}

/* Mobile 425px css */
@media screen and (min-width: 300px) and (max-width: 500px) {
  .service-1 {
    margin-top: -10rem !important;
  }
  .Accounting-products {
    margin-top: -7rem !important;
  }
  .product-disclaimer {
    margin-top: 0rem !important;
  }
  .about-us-main {
    margin-top: -6rem !important;
  }
  .core-values {
    margin-top: -6rem !important;
  }
  .improve-security {
    margin-top: 2rem !important;
  }
  .Cyber-services-second {
    padding-bottom: 0px;
  }
  .security-product .box {
    padding: 1rem !important;
    height: fit-content !important;
  }
  .security-product .box ul {
    padding-left: 2.5rem !important;
  }
}

/*============================ sticky social icons ================== */
.sticky-social {
  position: fixed;
  top: 245px;
  left: -38px;
  padding: 0px;
  margin: 0px;
  z-index: 99;
}
.social {
  list-style: none;
}
.social li {
  padding: 10px 10px;
  font-size: 25px;
  transition: all 0.7s ease-in-out;
}
.social li:hover {
  margin-right: -30px;
  box-shadow: 2px 5px 10px grey;
}
.social li:hover .fa {
  margin-left: 20px;
}
.social li:hover .fab {
  margin-left: 20px;
}
.fa {
  padding-left: 10px;
  color: #fff;
  transition: all 0.4s ease-in-out;
}
#linked {
  padding-left: 10px;
  color: #fff;
  transition: all 0.8s ease-in-out;
}
#youtube {
  padding-left: 10px;
  color: #fff;
  transition: all 0.8s ease-in-out;
}
.fb {
  background-color: #3c5a98;
}
.twitter {
  background-color: #1ea1f2;
}
.insta {
  background-color: #e4405f;
}
.youtube {
  background-color: #cd201f;
}
.linked-in {
  background-color: #0077b5;
}

@media screen and (max-width: 1024px) {
  .sticky-social {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .hero h1 {
    font-size: 50px !important;
    line-height: 60px !important;
  }
  .hero p {
    font-size: 16px !important;
    font-weight: 400 !important;
  }
}

.cursorChanged {
  cursor: default !important;
}

@media screen and (max-width: 400px) {
  .recaptcha {
    transform: translate(-25px, 0) scale(0.6);
  }
}
@media screen and (max-width: 270px) {
  .recaptcha {
    transform: translate(-45px, 0) scale(0.55);
  }
}

/* owl carousel */

.owl-stage {
  padding: 2em 0;
}

.carousel-cards {
  min-height: 20rem;
  perspective: 1500px;
}

.card {
  border: none;
  min-height: 20rem;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.4s ease-out;
  border-bottom-left-radius: 40px;
  border-top-right-radius: 40px;
  background-color: transparent;
}

.carousel-cards:hover .card {
  transform: rotateY(0.5turn);
}

.back-content,
.front-img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-bottom-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom: 3px solid #3b7ca6;
  box-shadow: 0px 2px 10px rgb(0 0 0 / 20%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.front-img {
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.img-sec {
  flex: 80%;
  width: 100%;
  display: grid;
  place-items: center;
  border-top-right-radius: 40px;
}
.img-sec img {
  width: 74% !important;
  aspect-ratio: 12/10;
  object-fit: contain;
}
.heading-sec {
  flex: 20%;
}

.back-content {
  background-color: #fff;
  transform: rotateY(180deg);
  padding: 1.5em;
}
.back-content P {
  text-align: center !important;
}

.owl-stage .owl-item {
  transition: transform 1.3s ease;
}

.owl-stage .owl-item.center {
  transform: scale(1.06);
  z-index: 99;
}

@media screen and (max-width: 700px) {
  .owl-stage .owl-item.center {
    transform: scale(1.06);
  }
}

/*============================= end ================= */
