 :root {
   --primary-color: #031d36;
   --secondary-color: #eff1ed;
   --text-color: #888888;
   --white-color: #ffffff;
   --black-color: #000000;
   --accent-color: #092f53;
   --white-divider: #ffffff70;
   --divider-color: #dadada;
   --overlay-color: rgba(22, 51, 0, 0.65);
   --error-color: rgb(230, 87, 87);
   --accent-font: 'Franie', sans-serif;
   --default-font: 'Franie', sans-serif;
 }

 /************************************/
 /**** 	   02. General css		 ****/
 /************************************/

 body {
   font-size: 16px;
   font-weight: 400;
   font-family: var(--default-font);
   color: var(--text-color);
   line-height: 1.6em;
 }

 body {}

 .contact-form-box {
   -webkit-user-select: all;
   /* Safari */
   -moz-user-select: all;
   /* Firefox */
   -ms-user-select: all;
   /* IE10+/Edge */
   user-select: all;
   /* Standard */
   -webkit-touch-callout: all;
   /* Disable context menu on iOS */
 }

 p {
   line-height: 1.6em;
   margin-bottom: 1em;
   line-height: 27px;
   font-size: 14px;
   color: #858585;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
   font-family: var(--accent-font);
   margin-top: 0;
   font-weight: 600;
   color: var(--primary-color);
 }

 figure {
   display: block;
   margin: 0;
   width: 100%;
 }

 img {
   max-width: 100%;
 }

 a {
   text-decoration: none;
 }

 a:hover {
   text-decoration: none;
   outline: 0;
 }

 a:focus {
   text-decoration: none;
   outline: 0;
 }

 /* .container{
	max-width: 1300px;
} */

 .container,
 .container-fluid,
 .container-lg,
 .container-md,
 .container-sm,
 .container-xl,
 .container-xxl {
   padding-right: 15px;
   padding-left: 15px;
 }

 .no-gap.row {
   margin-left: 0;
   margin-right: 0;
 }

 .no-gap.row>* {
   padding-left: 0;
   padding-right: 0;
 }

 .row.row-equal-height>[class*="col-"] {
   display: flex;
   flex-direction: column;
 }

 .image-anime {
   position: relative;
   overflow: hidden;
 }

 .image-anime:after {
   content: "";
   position: absolute;
   width: 200%;
   height: 0%;
   left: 50%;
   top: 50%;
   background-color: rgba(255, 255, 255, 0.3);
   transform: translate(-50%, -50%) rotate(-45deg);
   z-index: 1;
 }

 .image-anime:hover:after {
   height: 250%;
   transition: all 600ms linear;
   background-color: transparent;
 }

 .reveal {
   position: relative;
   display: -webkit-inline-box;
   display: -ms-inline-flexbox;
   display: inline-flex;
   visibility: hidden;
   overflow: hidden;
 }

 .reveal img {
   height: 100%;
   width: 100%;
   -o-object-fit: cover;
   object-fit: cover;
   -webkit-transform-origin: left;
   transform-origin: left;
 }

 .row {
   margin-right: -15px;
   margin-left: -15px;
 }

 .row>* {
   padding-right: 15px;
   padding-left: 15px;
 }

 .btn-default {
   display: inline-block;
   background: var(--accent-color);
   color: var(--white-color);
   font-size: 16px;
   font-weight: 500;
   border: 0px;
   padding: 12px 30px;
   border-radius: 5px;
   position: relative;
   overflow: hidden;
   z-index: 0;
   transition: 0.2s transform ease-in-out;
 }

 .btn-default:after {
   background-color: var(--primary-color);
   border-radius: 10px;
   content: "";
   display: block;
   height: 100%;
   width: 100%;
   position: absolute;
   left: 0;
   top: 0;
   transform: translate(-100%, 0) rotate(10deg);
   transform-origin: top left;
   transition: 0.2s transform ease-out;
   will-change: transform;
   z-index: -1;
 }

 .btn-default:hover::after {
   transform: translate(0, 0);
 }

 .btn-default:hover {
   color: var(--white-color);
 }

 .btn-default.btn-border {
   background: none;
   color: var(--accent-color);
 }

 #magic-cursor {
   position: absolute;
   width: 10px !important;
   height: 10px !important;
   pointer-events: none;
   z-index: 1000000;
 }

 #ball {
   position: fixed;
   display: block;
   left: 0;
   top: 0;
   transform: translate(-50%, -50%);
   width: 10px !important;
   height: 10px !important;
   background: var(--accent-color);
   border-radius: 50%;
   pointer-events: none;
   opacity: 1 !important;
 }

 .preloader {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   z-index: 1000;
   background-color: var(--white-color);
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .loading-container,
 .loading {
   height: 100px;
   position: relative;
   width: 100px;
   border-radius: 100%;
 }

 .loading-container {
   margin: 40px auto;
 }

 .loading {
   border: 3px dotted transparent;
   border-color: #ffcc00 #092f53 #ffcc00 #092f53;
   animation: rotate-loading 5s linear 0s infinite normal;
   transform-origin: 50% 50%;
 }

 .loading-container:hover .loading,
 .loading-container .loading {
   transition: all 0.5s ease-in-out;
 }

 #loading-icon {
   position: absolute;
   top: 50%;
   left: 50%;
   max-width: 100px;
   transform: translate(-50%, -50%);
 }

 #loading-icon img {
   transform: rotate(45deg);
 }

 @keyframes rotate-loading {
   0% {
     transform: rotate(0deg);
   }

   100% {
     transform: rotate(360deg);
   }
 }

 .fix-icon {
   position: fixed;
   bottom: 20px;
   background-color: #25d366;
   color: white;
   border-radius: 50px;
   text-align: center;
   z-index: 1000;
   animation: blink 1s infinite;
   width: 50px;
   height: 50px;
   line-height: 60px;
 }

 .fix-icon i {
   font-size: 28px;
 }

 .fix-icon.whatsapp {
   left: 30px;
   bottom: 30px;
 }

 .fix-icon.phone {
   left: 30px;
   bottom: 20px;
   background-color: #007bff;
   display: none;
 }

 @keyframes blink {

   0%,
   50%,
   100% {
     opacity: 1;
   }

   25%,
   75% {
     opacity: 0.5;
   }
 }

 .section-title {
   text-align: center;
   margin-bottom: 40px;
 }

 .section-title h3 {
   display: inline-block;
   text-align: center;
   font-size: 14px;
   text-transform: uppercase;
   font-weight: 600;
   letter-spacing: 2px;
   color: var(--accent-color);
   position: relative;
   padding-left: 20px;
   margin-bottom: 10px;
   z-index: 2;
 }

 .section-title h3:before {
   content: "";
   display: block;
   width: 12px;
   height: 16px;
   position: absolute;
   left: 0;
   top: 0;
   background: url(../images/icon-sub-heading.svg) no-repeat left center;
   z-index: -1;
 }

 @keyframes shapemove {
   50% {
     transform: translateX(10px);
   }
 }

 .section-title h1,
 .section-title h2 {
   font-size: 46px;
   color: var(--primary-color);
   letter-spacing: -0.5px;
   font-weight: 700;
   line-height: 1.1em;
   margin-bottom: 0;
 }

 .section-title h1 span,
 .section-title h2 span {
   color: var(--accent-color);
 }

 .section-description p:last-child {
   margin-bottom: 0;
 }

 /************************************/
 /**** 	   03. Header css		 ****/
 /************************************/

 .topbar {
   position: relative;
   z-index: 100;
   padding: 5px 0;
   background: #f6f6fba6;
   border-bottom: 1px solid #fff;
 }

 .topbar-contact-info {
   padding-left: 30px;
 }

 .topbar-contact-info ul {
   padding: 0;
   margin: 0;
   list-style: none;
 }

 .topbar-contact-info ul li {
   display: inline-block;
   margin-right: 20px;
   color: var(--white-color);
   font-size: 14px;
 }

 .topbar-contact-info ul li:last-child {
   margin-right: 0;
 }

 .topbar-contact-info ul li a {
   color: var(--black-color);
 }

 .topbar-contact-info ul li i {
   color: var(--accent-color);
   margin-right: 6px;
 }

 .header-social-links {
   text-align: right;
   padding-right: 30px;
 }

 .header-social-links ul {
   padding: 0;
   margin: 0;
   list-style: none;
 }

 .header-social-links ul li {
   display: inline-block;
   margin-left: 4px;
 }

 .header-social-links ul li a {
   width: 26px;
   height: 26px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 3px;
   font-size: 14px;
   background: var(--accent-color);
   color: var(--white-color);
   transition: all 0.2s ease-in-out;
 }

 .header-social-links ul li:hover a {
   color: var(--white-color);
 }


 .header-social-links ul li:hover a {
   transition: ease-in 0.3s;
 }

 .header-social-links ul li:hover:nth-of-type(1) a {
   background: #3b5998;
 }

 .header-social-links ul li:hover:nth-of-type(2) a {
   background: #000000;
 }

 .header-social-links ul li:hover:nth-of-type(3) a {
   background: #c32aa3;
 }

 .header-social-links ul li:hover:nth-of-type(4) a {
   background: #0a66c2;
 }

 .header-social-links ul li:hover:nth-of-type(5) a {
   background: #ff0000;
 }


 header.main-header {
   position: relative;
   margin: 0 auto;
   background: #f6f6fba6;
   border-radius: 0px;
   z-index: 100;
 }

 header.main-header .header-sticky {
   padding: 7px 15px;
   position: relative;
   top: 0;
   z-index: 100;
   max-width: 1140px;
   margin: 0 auto;
 }

 header.main-header .header-sticky.hide {
   transform: translateY(-100%);
   transition: transform 0.3s ease-in-out;
   padding: 5px 0;
   border-radius: 0;
   border-bottom: 1px solid #16330010;
 }

 header.main-header .header-sticky.active {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   border-radius: 0;
   border-bottom: 1px solid #16330010;
   transform: translateY(0);
   background: var(--white-color);
   max-width: 100%;
 }

 .navbar {
   padding: 0;
 }

 .navbar-brand {
   padding: 0;
 }

 .navbar-brand img {
   max-width: 220px;
 }

 .main-menu {
   font-family: var(--default-font);
   justify-content: flex-end;
 }

 .main-menu ul {
   align-items: center;
 }

 .main-menu ul li {
   margin: 0 15px;
   position: relative;
 }

 .main-menu ul li.submenu>a:after {
   content: "\f107";
   font-family: "FontAwesome";
   font-weight: 900;
   font-size: 14px;
   margin-left: 8px;
 }

 .main-menu ul ul li.submenu>a {
   position: relative;
 }

 .main-menu ul ul li.submenu>a:after {
   width: 18px;
   height: 18px;
   position: absolute;
   right: 15px;
   top: 6px;
   transform: rotate(-90deg);
 }

 .main-menu ul li a {
   font-size: 16px;
   font-weight: 400;
   padding: 12px 10px !important;
   color: var(--primary-color);
 }

 .main-menu ul li.highlighted-menu a {
   display: block;
   background: var(--accent-color);
   color: var(--white-color);
   font-size: 16px;
   font-weight: 500;
   border: 0px;
   padding: 10px 30px !important;
   border-radius: 5px;
   position: relative;
   overflow: hidden;
   z-index: 0;
   transition: 0.2s transform ease-in-out;
 }

 .main-menu ul li.highlighted-menu a:after {
   background-color: var(--primary-color);
   border-radius: 10px;
   content: "";
   display: block;
   height: 100%;
   width: 100%;
   position: absolute;
   left: 0;
   top: 0;
   transform: translate(-100%, 0) rotate(10deg);
   transform-origin: top left;
   transition: 0.2s transform ease-out;
   will-change: transform;
   z-index: -1;
 }

 .main-menu ul li.highlighted-menu a:hover::after {
   transform: translate(0, 0);
 }

 .main-menu ul li.highlighted-menu a:hover {
   color: var(--white-color);
 }

 .main-menu ul li a:hover,
 .main-menu ul li a:focus {
   color: var(--accent-color);
   font-weight: 500;
 }

 .main-menu ul li a.active {
   font-weight: 500;
 }

 .main-menu ul ul {
   visibility: hidden;
   padding: 8px 0;
   margin: 0;
   list-style: none;
   width: 200px;
   border-radius: 20px;
   position: absolute;
   left: 0;
   top: 100%;
   background-color: var(--accent-color);
   opacity: 0;
   transform: scaleY(0.8);
   transform-origin: top;
   transition: all 0.3s ease-in-out;
 }

 .main-menu ul ul ul {
   left: 100%;
   top: 0;
 }

 .main-menu ul ul li {
   margin: 0;
   padding: 0;
 }

 .main-menu ul ul li a,
 .main-menu ul ul li a:focus {
   color: var(--primary-color);
   padding: 6px 20px !important;
 }

 .main-menu ul li:hover>ul {
   visibility: visible;
   opacity: 1;
   transform: scaleY(1);
 }

 .main-menu ul ul li a:hover {
   color: var(--white-color);
 }

 .responsive-menu,
 .navbar-toggle {
   display: none;
 }

 .responsive-menu {
   top: 100%;
   position: absolute;
   left: 0;
   right: 0;
 }

 .slicknav_btn {
   background: transparent;
   padding: 6px 0 0;
   width: 38px;
   height: 38px;
   margin: 0;
   border-radius: 10px;
 }

 .slicknav_icon .slicknav_icon-bar {
   display: block;
   width: 100%;
   height: 3px;
   width: 22px;
   background-color: var(--primary-color);
   margin: 4px auto !important;
 }

 .slicknav_menu {
   padding: 0;
   background: var(--accent-color);
   border-radius: 0px;
   max-height: 80vh;
   overflow: auto;
 }

 .slicknav_nav li,
 .slicknav_nav ul {
   display: inline-block;
 }

 .slicknav_nav {
   padding-top: 5px;
   padding-bottom: 5px;
   text-align: center;
 }

 .slicknav_nav .slicknav_row,
 .slicknav_nav li a {
   font-size: 16px;
   font-weight: 400;
   padding: 10px 15px;
   font-family: var(--default-font);
   color: var(--primary-color);
   line-height: normal;
 }

 .slicknav_nav a:hover,
 .slicknav_nav .slicknav_row:hover {
   background-color: transparent;
   color: var(--primary-color);
 }

 .slicknav_arrow {
   font-size: 0 !important;
 }

 .slicknav_arrow:after {
   content: "\f105";
   font-family: "FontAwesome";
   font-weight: 900;
   font-size: 12px;
   margin-left: 8px;
   float: right;
   transition: all 0.3s ease-in-out;
 }

 .slicknav_nav li.slicknav_open>a .slicknav_arrow:after {
   transform: rotate(-90deg);
 }











 .logos-slider-container {
   overflow: hidden;
   width: 100%;
   position: relative;
   background: transparent;
   padding: 10px 0;
 }

 /* Slider list */
 .logos-slider-list {
   display: flex;
   flex-wrap: nowrap;
   gap: 20px;
   width: max-content;
 }

 /* Each logo item */
 .logo-item {
   width: 150px;
   /* Adjust based on logo size */
   height: auto;
   background: #000;
   padding: 10px;
 }

 .logo-item img {
   width: 100%;
   height: auto;
 }

 ul.sezlistz {
   display: flex;
   justify-content: center;
   gap: 60px;
   padding: 20px 0px 10px;
 }

 ul.sezlistz li {
   color: #00386D;
   font-weight: 600;
   font-size: 15px;
   position: relative;
   list-style-type: none;
 }

 ul.sezlistz li:after {
   position: absolute;
   content: "";
   background: #FF273C;
   width: 8px;
   height: 8px;
   border-radius: 50px;
   left: -17px;
   top: 8px;
 }



 ul.timez {
   display: flex;
   justify-content: center;
   gap: 50px;
   padding: 20px 0px 10px;
 }

 ul.timez {
   display: flex;
   justify-content: center;
   gap: 50px;
   padding: 20px 0px 10px;
 }

 ul.timez li {
   color: #00386D;
   font-weight: 400;
   font-size: 15px;
   padding: 10px 25px;
   border-radius: 10px;
   min-width: 200px;
   position: relative;
   text-align: left;
   list-style-type: none;
   background: linear-gradient(96.23deg, #00386D -12.55%, rgba(182, 210, 237, 0.716326) 9.44%, rgba(255, 255, 255, 0) 122.26%);

 }

 ul.timesez li {
   min-width: 325px;
 }

 /* Gradient border using ::before */
 ul.timez li::before {
   content: "";
   position: absolute;
   inset: 0;
   padding: 2px;
   /* Controls the border thickness */
   border-radius: 10px;
   background: linear-gradient(45deg, #00386D, #9781fa, #ccc);
   -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
   -webkit-mask-composite: xor;
   mask-composite: exclude;
   z-index: 1;
 }

 ul.timez li:after {
   position: absolute;
   content: "";
   background: #FF273C;
   width: 8px;
   height: 8px;
   border-radius: 50px;
   left: 10px;
   top: 18px;
 }



 .timeline-container {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 15px;
   margin-top: 20px;
 }


 .bultimez h6 {
   margin-top: 10px;
   margin-bottom: 10px;
   font-size: 18px;
   font-weight: 600;
   line-height: 18px;
   color: #00386D;
 }

 .timesez {
   margin: 0px;
   padding: 0px !important;
 }

 .h-h1 span.hlt {
   color: #E30016;
 }


 .h-h2 span.sitecol {
   color: #E30016;
 }

 .secavherz {
   min-width: 700px;
   background-color: #fff;
   position: relative;
   padding: 10px 75px;
 }

 .secavherz:before {
   position: absolute;
   content: "";
   background: url(../../assets/images/lefray.png);
   top: 0px;
   left: 0px;
   width: 68px;
   z-index: 9999;
   background-size: contain;
   height: 68px;
 }

 .secavherz:after {
   position: absolute;
   content: "";
   background: url(../../assets/images/ritray.png);
   bottom: 0px;
   right: 0px;
   width: 68px;
   z-index: 9999;
   background-size: contain;
   height: 68px;
 }

 .secavherz .h-ai-text {
   color: #00386D;
   font-size: 18px;
   font-weight: 600;
 }

 .nav-menu-button .fa.fa-bars {
   color: #00386D;
   transition-delay: .2s;
 }


 .sertopz {
   position: relative;
   display: flex;
   justify-content: flex-start;
   align-items: end;
   gap: 20px;
 }

 .starz {
   position: relative;
 }

 .starz ul {
   padding: 0px;
   margin: 0px;
   display: flex;
   justify-content: space-between;
   gap: 15px;
   align-items: end;
 }

 .starz li {
   list-style-type: none;
 }

 .starz li i {
   color: rgba(249, 219, 50, 1);
 }

 .servtit {
   position: relative;
   color: var(--primary-color);
   line-height: 50px;
 }

 .servsmalltit {
   color: #FF273C;
   font-size: 16px;
 }

 .servbtn {
   border-color: #BBDEFF;
   background: #F3F9FF;
   color: #00386D;
 }

 .servbtn:hover {
   background: #00386D;
   color: #fff;
   border-color: #F3F9FF;
 }

 .abtinbox {
   max-width: 75%;
   display: flex;
   justify-content: end;
   margin-left: auto;
 }

 .abtinbox .h-slider-1-tab-wrap {
   justify-content: end;
 }

 .serdetailz .pr-sol-content-wrap-main {
   grid-column-gap: 12px;
   grid-row-gap: 12px;
   flex-flow: column;
   display: flex;
   max-width: 100%;
 }

 .serdetailz .pr-solutions-text-wrap {
   grid-column-gap: 12px;
   grid-row-gap: 5px;
   flex-flow: column;
   flex: 1;
   justify-content: flex-start;
   align-items: flex-start;
   max-width: 100%;
   display: flex;
 }


 .serdetailz .pr-solutions-wrap {
   align-items: center;
   padding: 15px;
   border: 1px solid #f2f2f2;
   min-height: 180px;
   margin-bottom: 12px;
 }

 .serdetailz .privacy-rich-text h3 {
   margin-top: 0px;
   margin-bottom: 10px;
   color: #FF273C;
   font-family: 'Aleo', sans-serif;
 }

 .serdetailz .pr-solutions-desc {
   color: #666;
   font-size: 13px;
   line-height: 27px;
 }

 .howworkz {
   position: relative;
 }

 .howworkz ul {
   padding: 0px;
   grid-row-gap: 0px;
   margin: 0px;
   position: relative;
   display: flex;
   justify-content: space-between;
   flex-flow: wrap;
 }

 .howworkz ul li {
   position: relative;
   margin-bottom: 15px;
   width: 49.3%;
   border: 1px solid #eee;
   padding: 12px 10px 12px 35px;
   list-style: none;
 }

 .howworkz ul li:after {
   position: absolute;
   content: "";
   width: 10px;
   height: 10px;
   background: #FF273C;
   top: 35px;
   left: 12px;
   border-radius: 50px;
 }

 .howworkz ul li h4 {
   font-size: 20px;
   font-weight: 600;
   color: #FF273C;
   font-family: 'Aleo', sans-serif;
 }

 .howworkz ul li p {
   color: #828385;
   font-size: 14px;
   margin-bottom: 0px !important;
 }

 .indliatz {
   clear: both;
 }

 .indserve {
   background: #D8EAFD;
   padding: 20px 20px;
   margin: -20px -20px 0px;
 }

 .indserve h2 {
   color: #00386D;
   font-size: 22px;
   margin: 0px;
 }

 .indserve p {
   color: #FF273C;
   margin: 0px;
 }

 .indliatz {
   margin: 0px -5px 0px;
 }

 .indliatz .row .col-md-6 {
   padding-left: 0px;
   padding-right: 0px;
 }

 .indliatz .row .col-md-12 {
   padding-left: 0px;
   padding-right: 0px;
 }



 .why-develop-card {
   text-align: left;
   border: 1px solid #f2f2f2;
   border-radius: 1px;
   padding: 20px 20px 20px;
   transition: 0.3s ease-in;
 }

 .bor-bot-0 {
   border-bottom: 0px;
 }


 .why-develop-heading {
   color: #00386D;
   font-weight: 600;
   font-size: 18px;
   margin-bottom: 10px;
   font-family: var(--accent-font);
 }

 .why-develop-description {
   color: #828385;
   font-size: 12px;
   margin: 0px;
 }

 .chozserve {
   padding: 24px;
   background: #00386D;
   margin: 0px -20px;
   text-align: center;
   position: relative;
 }


 .chozserve:before {
   position: absolute;
   content: "";
   background: url(../../assets/images/lefray.png);
   top: 0px;
   left: 0px;
   width: 10%;
   z-index: 1;
   background-size: cover;
   height: 100%;
 }

 .chozserve:after {
   position: absolute;
   content: "";
   background: url(../../assets/images/ritray.png);
   bottom: 0px;
   right: 0px;
   width: 10%;
   z-index: 1;
   background-size: cover;
   height: 100%;
 }

 .whychoz h3 {
   color: #fff;
   font-size: 20px;
 }

 .serdetailz .privacy-rich-text p {
   margin-bottom: 12px;
   font-size: 13px;
   line-height: 24px;
 }

 .serdetailz .privacy-rich-text h2 {
   margin-bottom: 12px;
   font-size: 22px;
   text-transform: uppercase;
   font-weight: 900;
   font-family: var(--accent-font);
   color: #00386D;
 }


 .getstart {
   position: relative;
   padding: 50px 0px;
   text-align: center;
 }


 .getstartinfo h2 {
   font-family: var(--accent-font);
   color: #00386D;
   font-size: 48px;
   margin-top: 0;
   font-weight: 700;
   text-transform: uppercase;
 }


 .getstartinfo h4 {
   font-family: var(--accent-font);
   color: #e30016;
   font-size: 15px;
   margin-top: 0;
   font-weight: 600;
 }

 .getstartinfo h6 {
   color: #00386D;
   font-size: 14px;
   margin-bottom: 15px;
   font-weight: 600;
 }



 .getstartinfo a {
   display: table;
   margin: 0 auto;
 }


 .bor0 {
   border: 0px;
 }


 .abtsezbox .pr-sol-content-wrap-main {
   max-width: 100%;
 }

 .abtsezbox .pr-solutions-text-wrap {
   grid-column-gap: 12px;
   grid-row-gap: 5px;
   flex-flow: column;
   flex: 1;
   justify-content: flex-start;
   align-items: flex-start;
   max-width: 100%;
   display: flex;
 }

 .abtsezbox .pr-solutions-h {
   margin-bottom: 0px;
   color: #FF273C;
   font-family: 'Aleo', sans-serif;
 }

 .abtsezbox .pr-solutions-desc {
   color: #666;
   font-size: 14px;
 }


 .abtsezbox {
   padding: 0px 0px;
 }

 .drivernz {
   margin: 0 auto -30px;
   text-align: left;
   line-height: 32px;
   display: table;
   padding: 30px 0px 0px;
 }

 .drivernz ul li {
   color: #555;
   font-size: 14px;
 }

 .drivernz ul li::marker {
   color: #FF273C;
 }

 .sitecol {
   color: #E30016;
 }

 .nav-link.active .nav-link-text-1 {
   color: #e30016
 }

 .nav-link.ar-button-link.active {
   background-color: var(--brand-green);
   color: var(--brand-white);
 }

 .pr-sol-content-wrap-main .row .col-md-6,
 .pr-sol-content-wrap-main .row .col-md-12 {
   padding-left: 5px;
   padding-right: 5px;
 }

 .martopbot30 {
   margin: 1px 0px;
 }


 .coninlist p a {
   color: #E30016;
 }

 .coninlist p:hover a {
   color: #E30016;
 }

 /* Anstalin style start 24-09-2025 */


 .welfut {
  position: relative;
 }

 .welfut h2{
  font-size: 27px;
  margin-bottom: 12px;
  line-height: 40px;
  color:#00386d;
 }

 .welfut h4 {
  margin-bottom: 10px;
  color: #FF273C;
  font-family: 'Aleo', sans-serif;
  font-size: 20px;
  line-height: 30px;
}

 .welfut p{
  font-size: 15px !important;
  line-height: 30px !important;
  color: var(--text-color);

 }

 .feature-item {
  padding: 3px 10px;
  margin-bottom: 5px;
  border-radius: 0 8px 8px 0; 
  display: flex
;
  align-items: center;
}

.feature-item h5 span {
  color: #E30016;
}

.learning-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.learning-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.feature-item h5 {
  color: #BBDEFF;
  font-weight: 500;
  font-size: 15px;
  line-height: 27px;
  display: flex;
}

.feature-item h5 span {
  color: #fff;
  display: inline-flex;
  padding-right: 12px;
  height: auto;
  justify-content: flex-start;
  align-items: center;
  font-weight: 600;
}

.learning-card i{
  color:#00386D;
}

.classbudz {
  font-size: 16px;
  color: #ffffffe0;
  text-align: center;
  line-height: 32px;
}

.learning-card h5 {
  font-weight: 700;
}

.benefit-item {
  background: linear-gradient(96.23deg, #00386d00 -12.55%, rgb(182 210 237 / 5%) 9.44%, rgb(255 255 255 / 0%) 122.26%);
  padding: 12px;
  margin-bottom: 15px;
}


.benefit-item h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
}

.benefit-item h6 i {
  color: #E30016;
}

.benefit-item p {
  color: #e7f3ff;
  margin-bottom: 3px;
}

.stats-card {
  text-align: center;
  padding: 30px 20px;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #E30016;
}


section.ar-section.so-hero-section.classroom-page .so-hero-main-wrap {
  background-image: url(../../assets/images/classroombuddybg.svg);
  background-size: 1150px;
  background-repeat: no-repeat;
  padding-bottom: 25px;
}


section.ar-section.so-hero-section.govtsolutions-page .so-hero-main-wrap {
  background-image: url(../../assets/images/govtsolutionsbg.svg);
  background-size: 1150px;
  background-repeat: no-repeat;
  padding-bottom: 10px;
}

section.ar-section.so-hero-section.transformclassroom-page .so-hero-main-wrap {
  background-image: url(../../assets/images/transbuddybg.svg);
  background-size: 1150px;
  background-repeat: no-repeat;
  padding-top: 140px;
  padding-bottom: 50px;
}


section.ar-section.so-hero-section.govtservices-page .so-hero-main-wrap {
  background-image: url(../../assets/images/classroombuddybg.svg);
  background-size: 1150px;
  background-repeat: no-repeat;
  padding-top: 140px;
  padding-bottom: 90px;
  margin-bottom: 20px;
}

 
 

.tranzclass {
  color: #00386D;
  font-size: 46px;
  font-weight: 700;
  line-height: 75px;
  text-transform: uppercase;
}
 

.keyfeat {
  text-align: center;
  font-size: 32px;
  line-height: 72px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.ailab{ 
  font-size: 32px;
  font-weight: 600;
  line-height: 65px;
  text-align: center;
  color: var(--black);
}

.benfschool{ 
  font-size: 32px;
  font-weight: 600;
  line-height: 65px;
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
}

.whyzz{ 
  font-size: 32px;
  font-weight: 600;
  line-height: 65px;
  text-align: center;
  color: var(--black);
  margin-bottom: 24px;
}

.whyzz span{
  color: #E30016;
}

.whatlern{ 
  font-size: 32px;
  font-weight: 600;
  line-height: 65px;
  text-align: center;
  color: var(--black);
}

.infatool{
  position: relative;
  font-size: 32px;
  font-weight: 600;
  line-height: 65px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--black);
}

.infatoollist{
  padding:0px;
}


.infatoollist li{
  position: relative;
  margin-bottom: 15px;
  list-style-type: none;
}

.infatoollist li i{
  color: #E30016;
}

.whylistz{
  padding:0px;
}

.whylistz li{
  position: relative;
  margin-bottom: 15px;
  list-style-type: none;
}

.whylistz li i{
  color: #E30016;
}

.classblok .pr-solutions-text-wrap{
  width:100%;
  display: block!important;
}

.classblok {
  width:100%;
  display: block!important;
}

.classblok .pr-solutions-text-wrap h3{
  margin-top: 10px;
}


.mullevelz {
  position: relative;
  padding-left: 20px;
}


.mullevelz::before{
  position: absolute;
  content:"";
  left:0px;
  top:0px;
  height:100%;
  width:1px;
  background-color: #E30016;
}

.mullevelz .pr-solutions-text-wrap{
  position: relative;
}

.mullevelz .pr-solutions-text-wrap:after {
  position: absolute;
  content: "";
  left: -24px;
  top: 0px;
  width: 10px;
  height: 10px;
  background-color: #b70d19;
  border-radius: 50px;
}

.intlistz{
  position: relative;
  padding: 0px;
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  display: block!important;
  margin:0px;
}

.intlistz li {
  position: relative;
  margin-top: 5px;
  padding-left: 20px;
  font-size: 14px;
  list-style-type: none;
  color: #3333338f;
}

.intlistz li:after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background: #3333338f;
  top: 5px;
  left: 2px;
  border-radius: 50px;
}

.whypatner{
  position: relative;
}

.whypatner .pr-solutions-wrap{
  border:0px;
  display: block; 
}


.whypatner .pr-solutions-wrap h3{
  margin-top: 30px;
  margin-bottom: 3px;
  color: #FF273C;
  font-family: 'Aleo', sans-serif;
}

.whypatner .chozserve{
  text-align: center;
}

.howwemake{ 
  background: #B70D19;
  margin: 0px -20px;
  text-align: left;
  position: relative;
} 

.watchworks {
  margin: 12px 0px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: auto;
  cursor: pointer;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 520px;
}

.transformcont{
  position: relative;
}

.transformcont .form-control {
  border: none;
  border-bottom: 1px solid #B70D19;
  border-radius: 0;
  box-shadow: none;
  padding-left: 0;
  font-size: 12px;
  color: #333;
  margin-bottom: 19.5px;
}

.transformcont .form-control:focus {
  border-color: #b70d19;
  box-shadow: none;
}

.btn-request {
  background: #D91F26;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  padding: 10px 40px;
  font-weight: 600;
}
.btn-request:hover {
  background: #b70d19;
}

.transccontaz .contact-box{
  border-bottom: 1px solid #eee;
}

.transccontaz .contact-box p {
  margin: 0;
  font-size: 12px;
  color: #888;
}

.transccontaz .icon-box {
  margin-right: 15px;
  position: relative;
  top: 8px;
}

.transformcont .why-develop-heading{
  color:#E30016;
}


.transccontaz .why-develop-heading{
  color:#E30016;
}



.qr-text {
  font-weight: 700;
  text-align: center;
  padding: 29px;
  background-image: url(../../assets/images/ray.png);
  background-position: center;
  background-repeat: repeat;
  background-size: contain;
  width: 100%;
  margin: auto;
}

.qr-text h4{
  color:#00386D
}



.serdetailz .whychus h2 {
  margin-bottom: 0px;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--accent-font);
  color: #00386D;
}

.dotlinez .why-develop-description{
padding-left: 15px;
position: relative;
}


.dotlinez .why-develop-description:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #3333338f;
  top: 5px;
  left: 2px;
  border-radius: 50px;
}


.patner-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  height: 100%;
  transition: all 0.3s 
ease;
  border: 0px solid #eee;
  box-shadow: 0 10px 30px rgb(255 107 53 / 5%);
}

.patner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.patner-card h5 {
  font-weight: 600;
  color: #888;
}

.patner-card i {
  color: #888;
}

.studtecz img {
  width: 100%;  
  margin: auto;
  margin-top: 35px;
  display: block;
  object-fit: cover;
}

.teczstud img {
  width: 100%; 
  margin: auto;
  margin-top:40px;
  display: block;
  object-fit: cover;
}

.fedlms {
  color: #00386D;
  font-size: 28px;
  font-weight: 600;
  line-height: 60px;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: 0px -20px 30px;
}

.patnerwhy{
margin: 0px -5px 0px;
}

.patnerwhy .row .col-md-6 {
  padding-left: 0px;
  padding-right: 0px;
}

.video-wrapper h5 {
  color: #fff;
  margin: 10px;
  text-align: center;
  line-height: 25px;
}


.patnerwhy .why-develop-card{
  text-align: center;
      min-height: 135px;
    border: 1px solid #f2f2f2;
    border-radius: 1px;
    padding: 15px 20px 15px;
    transition: 0.3s ease-in;
}

.patnerwhy .why-develop-heading {
  color: #00386D;
  font-weight: 600;
  font-size: 16px;
  margin: 10px;
  font-family: var(--accent-font);
}

.requz{
  position: relative;
}

.reqspanz {
  color: #e30016;
  position: absolute;
  right: 0;
  top: 0px;
}

.transformcont .form-control::placeholder {
  color: #999;   /* your desired color */
  opacity: 1;       /* make sure it’s fully visible */
}


.studenteachez{
  position: relative;
  margin-bottom: 30px;
}

.studenteachez p{
  color: #666;
  font-size: 14px;
}

.studenteachez h4{
  margin-bottom: 10px;
  color: #FF273C;
  font-family: 'Aleo', sans-serif;
font-size: 20px;
}


.aidlemz {
  color: #00386D;
  font-size: 28px;
  font-weight: 600;
  line-height: 60px;
  text-align: center; 
  border-bottom: 1px solid #eee;
  margin: 0px -20px 30px;
}

.ailbimg{
      box-shadow: var(--bs-box-shadow) !important;
      width: 100%;
      max-height: 220px;
      object-fit: cover;
}

.goserlox {
  text-align: center;
  padding: 30px;
  border: 0.3px solid #eeeeeea3;
}

.goserlox img {
  max-width: 60%;
}



.goserlox h3 { 
 margin:5px 0px;
 color: #FF273C;
    font-family: 'Aleo', sans-serif;
    font-size: 20px;

}

.goserlox h5{
  color:#00386D;
  margin: 0 0px 3px;
  font-size: 14px;
}

.goserlox p{ 
  max-width: 65%;
  font-size: 14px;
  margin: 0 auto;
}

.sergolox{
  text-align: left;
  padding: 30px;
  border: 0.3px solid #eeeeeea3;
}

.sergolox img {
  max-width: 100%;
  margin: -20px 0px;
}


.sergoloxtext{
  padding-top: 60px;
}

.sergolox h3 { 
  margin:5px 0px;
  color: #FF273C;
     font-family: 'Aleo', sans-serif;
     font-size: 20px;
 
 }
 
 .sergolox h5{
   color:#00386D;
   margin: 0 0px 3px;
   font-size: 14px;
 }
 
 .sergolox p{ 
   max-width: 90%;
   font-size: 14px;
   margin: 0 ;
 }

 .vaitox{
  position: relative;
 }

 .vaitox h6 {
  color: #00386D;
  font-size: 15px;
  line-height: 30px;
  margin: 10px 0px 0px;
  font-weight: 400;
}


.callkazak{
  max-height:380px;
  width: 100%;
  object-fit: cover;
}

.tranzak{
  max-height:350px;
  width: 100%;
  object-fit: cover;
}

.govtzak{ 
  width: 100%;
  object-fit: cover;
}

.entizak{
  max-height:260px;
  width: 100%;
  object-fit: cover;
  margin-top: 20px;
}

.practzak{
  max-height:190px;
  width: 100%;
  object-fit: cover;
  margin-top: 0px;
}


.viscom{
  font-size: 32px;
  font-weight: 600;
  line-height: 65px;
  text-align: center;
  color: #fff;
  margin: 20px 0px 0px;
}


.viscom p {
  color: #e7f3ff;
  margin-bottom: 3px;
}

 





 /* Anstalin style end 24-09-2025 */











 /******************************************/
 /****   	 37. Responsive css   	   ****/
 /******************************************/

 @media only screen and (max-width: 1300px) {}

 @media only screen and (max-width: 1200px) {

  .why-develop-card{
    border: 1px solid #f2f2f2;
  }


 }

 @media only screen and (max-width: 1024px) {

   .ar-navbar .ar-container {
     border-left: 0px solid #cedcde;
     border-right: 0px solid #cedcde;
   }


   .ind-feature-img {
     display: none;
   }

 }

 @media only screen and (max-width: 991px) {

   ul.sezlistz li {
     font-size: 13px;
   }


   .h-ai-tab-wrapper {
     padding: 20px 15px 20px 15px;
     min-width: 100%;
   }

   .h-h2.for-cta {
     font-size: 30px;
     line-height: 60px;
   }


   .footer-cr {
     font-size: 10px;
     color: #00386D;
   }

   .h-h1 br {
     display: none;
   }

   .h-h1 {
     font-size: 42px;
     line-height: 60px;
   }

   .getstartinfo h2 {
     font-size: 36px;
   }

   .why-develop-heading {
     font-size: 14px;
   }

   .so-h1-desc br {
     display: none;
   }

   .h-h1 br {
     display: none;
   }


   .sergoloxtext {
    padding-top: 3px;
}

.tranzclass { 
  font-size: 40px; 
  line-height: 60px; 
}



 }

 @media only screen and (max-width: 767px) {

   .ind-feature-img {
     display: block;
   }

   .nav-menu-button {
     display: block;
   }

   .welfut h2 {
    font-size: 20px; 
    margin:10px 0px;
    line-height: 35px; 
}


   /* Hide menu by default */
   .nav-menu {
     display: none;
     position: fixed;
     top: 70px;
     right: -100%;
     /* Move menu off-screen */
     width: 100%;
     /* Adjust as needed */
     height: 100%;
     background: #00386D;
     color: #fff;
     transition: right 0.9s ease-in-out;
     padding: 0px;
     z-index: 1000;
     border-radius: 0px;
   }

   .nav-menu.active .nav-link-text-1 {
     color: #fff;
     transition-duration: .8s;
     transition-delay: .5s, 0;
   }

   /* Show menu when active */
   .nav-menu.active {
     right: 0;
     /* Bring menu into view */
     display: block !important;
     transition-delay: 0, .8s;
   }

   /* Style the overlay */
   .w-nav-overlay {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6);
     z-index: 999;
     transition-duration: .6s;
     transition-delay: .6s, 0;
   }

   /* Show overlay when active */
   .w-nav-overlay.active {
     display: block;
   }

   .nav-menu {
     padding: 15px 0px 0px;
   }


   .h-h1 {
     font-size: 32px;
     line-height: 60px;
   }

   ul.sezlistz {
     display: block;
   }

   ul.sezlistz li {
     margin-bottom: 10px;
     font-size: 15px;
   }

   ul.timez {
     display: block;
   }

   ul.timez li {
     margin-bottom: 10px;
     font-size: 15px;
   }

   .bultimez {
     width: 100%;
   }

   ul.timesez li {
     min-width: 100%;
   }

   .footer-bottom-wrap-copy {
     width: 100%;
     text-align: center;
   }


   .secavherz .h-ai-text {
     font-size: 14px;
   }

   .footer-social-wrap {
     display: table;
     margin: auto;
     width: 100px;
   }

   .footer-privacy-wrap-main {
     display: table;
     width: 100%;
     margin: auto;
   }

   .serdetailz .privacy-rich-text p {
     margin-bottom: 12px;
     font-size: 14px;
     line-height: 25px;
   }

   .why-develop-card {
     min-height: auto;
     padding: 20px 20px 20px;
   }

   .getstartinfo a {
     display: table;
     margin: 0 auto;
     font-size: 14px;
   }

   .nav-menu-wrap {
     grid-column-gap: 8px;
     grid-row-gap: 8px;
     flex-flow: column;
     padding: 40px;
     display: flex;
     overflow: auto;
   }

   .viscom {
    font-size: 19px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    color: #fff;
    margin: 15px 0px 0px;
}



   .howworkz ul li {
     width: 100%;
   }


   .tranzclass { 
    font-size: 38px; 
    line-height: 60px; 
}

.studenteachez h4 {
  margin: 10px 0px; 
}


.privacy-rich-text h2 { 
  font-size: 15px;
}

.viscom {
  font-size: 24px; 
  line-height: 40px; 
}


.privacy-rich-text h2 {
  font-size: 16px;
  line-height: 35px;
}

 }

 @media only screen and (max-width: 575.98px) {

  .viscom {
    font-size: 22px; 
    line-height: 40px; 
}

  .callkazak {
    max-height: 100%; 
}

.tranzak {
  max-height: 100%;  
  margin: 0px 0px 10px;
}

.practzak{
  max-height: 100%;  
  margin: 10px 0px 0px;
}

.goserlox p {
  max-width: 100%; 
}

.goserlox {
  text-align: center;
  padding: 30px 10px;
  border: 0.3px solid #eeeeeea3;
}

.sergolox {
  text-align: center;
  padding: 30px 10px;
  border: 0.3px solid #eeeeeea3;
}

.sergoloxtext {
  padding-top: 20px;
  text-align: center;
}

  .studtecz img { 
    margin: auto auto 15px; 
}


.video-wrapper h5 { 
  margin: 10px 0px; 
}

  .welfut h2 {
    font-size: 20px; 
    line-height: 35px; 
}

   .serdetailz .pr-solutions-wrap {
     border-left: 0px;
     border-radius: 0px;
     margin: 0px;
     padding: 15px;
   }

   .why-develop-card {
     border-left: 0px;
     border-right: 0px;
   }


   .h-h1 {
     font-size: 27px;
     line-height: 42px;
   }

   .h-h2.for-cta {
     font-size: 24px;
     line-height: 40px;
   }


   .secavherz {
     padding: 10px 15px;
   }

   .h-slider-1-h3 {
     font-size: 20px;
     line-height: 32px;
   }

   .h-ai-tab-wrapper {
     min-width: 100%;
   }

   ul.timez {
     gap: 20px;
   }


   .servtit {
     line-height: 36px;
     font-size: 22px;
   }

   ul.sezlistz {
     display: block;
   }

   ul.sezlistz li {
     margin-bottom: 10px;
     font-size: 15px;
   }

   ul.timez {
     display: block;
   }

   ul.timez li {
     margin-bottom: 10px;
     font-size: 15px;
   }

   .bultimez {
     width: 100%;
   }

   ul.timesez li {
     min-width: 100%;
   }


   .getstartinfo h2 {
     font-size: 22px;
   }

   .getstartinfo h4 {
     font-size: 14px;
   }

   .getstartinfo h6 {
     color: #00386D;
     line-height: 24px;
   }

   .getstartinfo a {
     font-size: 10px;
   }

   .secavherz .h-ai-text {
     font-size: 14px;
   }

   .footer-social-wrap {
     display: table;
     margin: auto;
     width: 100px;
   }

   .ind-feature-cont-wrap {
     grid-column-gap: 30px;
     grid-row-gap: 15px;
     padding: 15px;
   }


   .ind-feature-img {
     width: 100%;
     max-width: 100%;
     padding: 15px;
   }

   .starz ul {
     gap: 12px;
   }


   .serdetailz .privacy-rich-text p {
     margin-bottom: 12px;
     font-size: 13px;
     line-height: 24px;
   }

   .serdetailz .privacy-rich-text h2 {
     margin-bottom: 12px;
     font-size: 20px;
     line-height: 32px;
   }


   .indliatz .row .col-md-12 {
     padding-left: 15px;
     padding-right: 15px;
   }


   .indliatz .row .col-md-6 {
     padding-left: 15px;
     padding-right: 15px;
   }

   .indserve {
     background: #D8EAFD;
     margin: -20px -10px 0px;
   }

   .indserve h2 {
     color: #00386D;
     font-size: 18px;
     margin-bottom: 10px;
   }

   .why-develop-card {
     padding: 20px 15px 20px;
   }

   .whychoz h3 {
     font-size: 15px;
     line-height: 27px;
   }

   .getstartinfo a {
     font-size: 10px;
     width: 100%;
     white-space: normal;
   }




   .tranzclass { 
    font-size: 28px; 
    line-height: 45px; 
}




.privacy-rich-text h2 {
  font-size: 14px;
  line-height: 30px;
}




 }

 @media only screen and (max-width: 399.98px) {


  .tranzclass { 
    font-size: 20px; 
    line-height: 42px; 
}
.video-wrapper iframe {
  border: 0;
  height: 100% !important;
  min-height: 200px;
}


   .footer-cr {
     font-size: 12px;
     text-align: center;
   }


   .secavherz {
     padding: 10px 10px;
   }


   .h-h2 {
     font-size: 20px;
     line-height: 42px;
   }

   p {
     line-height: 24px;
     font-size: 13px;
   }


   .chozserve {
     margin: 0px -10px;
   }

   .whychoz h3 {
     font-size: 15px;
   }

   .howworkz ul:before {
     display: none;
   }

 }

 @media only screen and (max-width: 319.98px) {}

 /* ---------- About: team cards ---------- */
 .team-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 24px;
   margin: 40px 0 50px;
   text-align: left;
 }

 .team-card {
   background: #fff;
   border: 1px solid #e3e6ea;
   border-radius: 10px;
   padding: 26px;
   transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.35s ease, border-color 0.35s ease;
 }

 /* hidden start state only once the reveal script is running */
 .team-grid.js-reveal .team-card {
   opacity: 0;
   transform: translateY(40px);
 }

 .team-grid.js-reveal .team-card.is-visible {
   opacity: 1;
   transform: translateY(0);
 }

 .team-card:hover,
 .team-grid.js-reveal .team-card.is-visible:hover {
   transform: translateY(-8px);
   transition-delay: 0s !important;
   border-color: #E30016;
   box-shadow: 0 18px 40px rgba(0, 56, 109, 0.12);
 }

 .team-card-img {
   overflow: hidden;
   aspect-ratio: 13 / 10;
   margin-bottom: 24px;
   background: #eee;
 }

 .team-card-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   filter: grayscale(100%);
   transition: transform 0.6s ease;
 }

 .team-card:hover .team-card-img img {
   transform: scale(1.06);
 }

 .team-card-name {
   font-family: var(--default-font);
   color: #1a1a1a;
   font-size: 19px;
   line-height: 1.25;
   font-weight: 700;
   margin: 0 0 8px;
 }

 .team-card-role {
   color: #E30016;
   font-size: 14px;
   line-height: 1.4;
   font-weight: 600;
   margin-bottom: 22px;
 }

 .team-card-desc {
   color: #555;
   font-size: 12px;
   line-height: 1.6;
   margin: 0;
 }

 @media only screen and (max-width: 991px) {
   .team-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }

 @media only screen and (max-width: 575px) {
   .team-grid {
     grid-template-columns: 1fr;
     gap: 20px;
   }

   .team-card {
     padding: 24px;
   }
 }

 @media (prefers-reduced-motion: reduce) {
   .team-card,
   .team-grid.js-reveal .team-card,
   .team-card-img img {
     transition: none;
     opacity: 1;
     transform: none;
   }
 }
