:root {
  --theme-primary: #000000;
  --theme-primary-light: rgb(136, 136, 136);
  --theme-secondary: #2b75e2;
  --theme-secondary-light: rgb(145, 213, 245);

  --theme-blue:#2559A6;
  --theme-light-blue:#EEF0F9;

  --theme-black:#1A1818;    
  --theme-gray:#3E5468;
  --theme-light-gray:#8E8E8E;

  --theme-green:#2E934D;
  --theme-red:#D53732;
  --theme-yellow:#FB8B0A;
}
/*  Animation CSS Starts*/
:root {
  --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 1.25s;
}
@-webkit-keyframes slideInUp{
  0%{opacity:0;transform:translateY(25%);}
  100%{opacity:1;transform:none;}
}
@keyframes slideInUp{
  0%{opacity:0;transform:translateY(15%);}
  100%{opacity:1;transform:none;}
}
@-webkit-keyframes slideInDown{
  0%{opacity:0;transform:translateY(-25%);}
  100%{opacity:1;transform:none;}
}
@keyframes slideInDown{
  0%{opacity:0;transform:translateY(-25%);}
  100%{opacity:1;transform:none;}
}
@-webkit-keyframes slideInleft{
  0%{opacity:0;transform:translateX(25%);}
  100%{opacity:1;transform:none;}
}
@keyframes slideInleft{
  0%{opacity:0;transform:translateX(25%);}
  100%{opacity:1;transform:none;}
}
@-webkit-keyframes slideInRight{
  0%{opacity:0;transform:translateX(-25%);}
  100%{opacity:1;transform:none;}
}
@keyframes slideInRight{
  0%{opacity:0;transform:translateX(-25%);}
  100%{opacity:1;transform:none;}
}
@-webkit-keyframes fadeIn{
  0%{opacity:0;}
  100%{opacity:1;}
}
@keyframes fadeIn{
  0%{opacity:0;}
  100%{opacity:1;}
}
@-webkit-keyframes zoomIn{
  0%{opacity:0;transform:scale(0.75);}
  100%{opacity:1;transform:none;}
}
@keyframes zoomIn{
  0%{opacity:0;transform:scale(0.75);}
  100%{opacity:1;transform:none;}
}
@-webkit-keyframes zoomReverseIn{
  0%{opacity:0;transform:scale(1.25);}
  100%{opacity:1;transform:none;}
}
@keyframes zoomReverseIn{
  0%{opacity:0;transform:scale(1.25);}
  100%{opacity:1;transform:none;}
}
@-webkit-keyframes flipInY{
  0%{opacity:0;transform:perspective(90vw) rotateY(67.5deg);}
  100%{opacity:1;transform:none;}
}
@keyframes flipInY{
  0%{opacity:0;transform:perspective(90vw) rotateY(67.5deg);}
  100%{opacity:1;transform:none;}
}
[data-animation]{opacity:0;-webkit-animation-timing-function:var(--animation-timing-function);animation-timing-function:var(--animation-timing-function);-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:var(--animation-duration);animation-duration:var(--animation-duration);will-change:transform,opacity;}
.animations-disabled,
.animations-disabled [data-animation]{-webkit-animation:none!important;animation:none!important;opacity:1!important;}
.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp;}
.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown;}
.slideInLeft{-webkit-animation-name:slideInleft;animation-name:slideInleft;}
.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight;}
.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn;}
.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn;}
.zoomReverseIn{-webkit-animation-name:zoomReverseIn;animation-name:zoomReverseIn;}
.flipInY{-webkit-animation-name:flipInY;animation-name:flipInY;}
.flipOutY{-webkit-animation-name:flipInY;animation-name:flipInY;animation-direction:reverse;}
/* Animation CSS Ends */

.heading::selection {
background: transparent ;
}
.theme-text-blue{color: var(--theme-blue);}
.theme-bg-blue{background-color: var(--theme-blue);}
.theme-text-light-blue{color: var(--theme-light-blue);}
.theme-bg-light-blue{background-color: var(--theme-light-blue);}

.thumbnail-container,.thumbnail_container{padding-bottom:100%;overflow:hidden;position:relative;width:100%}
.thumbnail{margin:0;display:block;padding:0;border:none;height:100%;width:100%;position:absolute;background:0 0}
.thumbnail img{display:block;height:auto;max-height:100%;max-width:100%;width:auto;top:0;left:0;bottom:0;right:0;margin:auto;position:absolute;-webkit-transition:all 0.5s ease-out;-o-transition:all 0.5s ease-out;transition:all 0.5s ease-out}

*{margin:0;padding:0;scroll-behavior:smooth;}
/* width */
::-webkit-scrollbar{width:5px;height:5px;}

/* Track */
::-webkit-scrollbar-track{background-color:#f1f1f1;}

/* Handle */
::-webkit-scrollbar-thumb{background-color:#2b3a4a;}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover{background-color:#2b3a4a;}

/* Common CSS Starts */
body{font-family: "Poppins", sans-serif;}
a{
  text-decoration: none;
  transition: 0.3s ease-in-out all;
  -webkit-transition: 0.3s ease-in-out all;
  -mos-transition: 0.3s ease-in-out all;
  -ms-transition: 0.3s ease-in-out all;
}
p{color: var(--theme-gray);font-weight:400;}
h1,h2,h3,h4,h5,h6{color: var(--theme-black);} 
.section-padding{padding: 50px 0;}
@media(min-width:1024px){
  .section-padding{padding: 4.42vw 0;}
}
.heading{
  font-size: 14px;
  color: var(--theme-blue);
  font-weight: 600;
  padding: 10px 30px;
  background-color: var(--theme-light-blue);
  border-radius: 20px;
  display: inline-block;
}  
.title{
  color: var(--theme-black);
  font-weight: 600;
}
.p_sec{font-size: 18px;}
.p_list{font-size: 16px;}
.blue-box-shadow{box-shadow: 0px 0px 20px #3A6FB680;}
.green-box-shadow{box-shadow: 0px 0px 20px #57A87080;;}
.red-box-shadow{box-shadow: 0px 0px 20px #DD5F5B80;}
.yellow-box-shadow{box-shadow: 0px 0px 20px #FBA23B80;}

@media(min-width:1024px){
  .title{
    font-size:2.4vw;
    max-width: 85%;
    margin: 0 auto 20px;
  }
}
@media(max-width:1366px){
  .heading{
    font-size: 13px;
    color: var(--theme-blue);
    font-weight: 600;
    padding: 8px 20px;
  }
  .p_sec{font-size: 16px;}
  .p_list{font-size: 14px;}
}
@media(max-width:1024px){
  .p_sec{font-size: 15px;}
  .p_list{font-size: 13px;}
}
/* Common CSS Ends */

/*Button CSS Start */
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--theme-black);
  --bs-btn-border-color: var(--theme-black);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--theme-black);
  --bs-btn-hover-border-color: var(--theme-black);
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--theme-black);
  --bs-btn-active-border-color: var(--theme-black);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--theme-black);
  --bs-btn-disabled-border-color: var(--theme-black);
}
.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 130,138,145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
}
.btn{
  padding: 6px 20px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;    
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border: 1px solid var(--theme-black);
  transition: 0.5s ease-in-out all;
  -webkit-transition: 0.5s ease-in-out all;
  -mos-transition: 0.5s ease-in-out all;
  -ms-transition: 0.5s ease-in-out all;    
}
.btn-primary{    
  color: var(--theme-black);    
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary:after{
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  left: 0;
  transition: 0.3s ease-in-out all;
  -webkit-transition: 0.3s ease-in-out all;
  -mos-transition: 0.3s ease-in-out all;
  -ms-transition: 0.3s ease-in-out all;
  bottom: 0;
  background-color: var(--theme-black);
  z-index: -1;
}
.btn-primary:hover:after{
  height: 100%;
}
.btn-primary:hover{    
  color: #ffffff;
  background-color: transparent;
}
.btn-secondary{
  color: #ffffff;
  background-color: var(--theme-black);
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-secondary:after{
  position: absolute;
  content: "";
  width: calc(100% + 10px);
  height: 0;
  left: 0;
  transition: 0.3s ease-in-out all;
  -webkit-transition: 0.3s ease-in-out all;
  -mos-transition: 0.3s ease-in-out all;
  -ms-transition: 0.3s ease-in-out all;
  bottom: 0;
  background-color: #ffffff;
  z-index: -1;
}
.btn-secondary:hover:after{
  height: 100%;
}
.btn-secondary:hover{
  background-color: transparent;
  color: var(--theme-black);
}
@media(max-width:1366px){
  .btn{
    font-size: 14px;
  }
}
.btnText{
  font-size: 14px;
  color: var(--theme-black);
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease-in-out all;
  -webkit-transition: 0.3s ease-in-out all;
  -mos-transition: 0.3s ease-in-out all;
  -ms-transition: 0.3s ease-in-out all;
}
.btnText:hover{
  color: var(--theme-blue);
}
/*Button CSS End */

/*Form CSS Start */
.form-group{
margin-bottom: 20px;
}
.form-control{
border:0;
border-radius: 6px;
padding: 8px 10px;
font-size: 14px;
}
.form-control:focus{
box-shadow: none;
}
.form-label{
font-size: 14px;
color: var(--theme-gray);
margin-bottom: 5px;
}
textarea { resize: none; }
@media(max-width:767px){
.form-label{
  font-size: 13px;
  font-weight: 500;
}
}
/*Form CSS End */

/* owlCarousel CSS Start */
.owl-carousel .owl-dots{
  text-align: center;
  margin-top: 35px;
}
.owl-carousel .owl-dots .owl-dot span{
  height: 8px;
  width: 8px;
  border-radius: 100px;
  background-color: var(--theme-black);
  opacity: 0.25;
  display: inline-block;
  transition: 0.5s ease-in-out all;
  -webkit-transition: 0.5s ease-in-out all;
  -mos-transition: 0.5s ease-in-out all;
  -ms-transition: 0.5s ease-in-out all;
}
.owl-carousel .owl-dots .owl-dot.active span{
  opacity: 1;
  width: 30px;
}
.owl-carousel .owl-dots .owl-dot + .owl-dot{
  margin-left: 8px;
}
/* owlCarousel CSS End */

/*Loader Start*/
.main-loader {
display: flex;
  width: 100%;
  height: 100%;
  position: fixed;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  background-color: rgb(255 255 255 / 90%);
  flex-direction: column;
  top: 0;
}
.main-loader.loader__up {
visibility: hidden;
opacity: 0;
transition: var(--transition_05s);
-webkit-transition: var(--transition_05s);
-moz-transition: var(--transition_05s);
-ms-transition: var(--transition_05s);
}
.main-loader .loader-gif img{
max-width: 100px;
}
/*Loader Ends*/

/*Header Start*/
.menu-hovered{
position: relative;
}
.menu-hovered:before{
position: absolute;
content: "";
width: 100%;
height: 100%;
left: 0;
top: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: 1;
}
.main-header{
position: fixed;
top: 0;
width: 100%;
background-color: #ffffff;
transition: 0.5s ease-in-out all;
-webkit-transition: 0.5s ease-in-out all;
-mos-transition: 0.5s ease-in-out all;
-ms-transition: 0.5s ease-in-out all;
z-index: 9;
}
header .navbar{
padding: 0;
}
header .navbar .collapse{
justify-content: center;
}
header .navbar .collapse .dropdown{
position: static;
}
header .navbar .nav-link a{
color: var(--theme-black);
}
header .navbar.navbar-expand-lg .nav-link{
font-size: 18px;
font-weight: 500;
color: var(--theme-black);
padding: 35px 25px;
}
header .header-logo,
header .header-btns{
padding: 25px 0;
display: inline-block;
}
header .navbar .nav-link img{
width: 12px;
height: 8px;
}
.dropdown-toggle::after{
content: none;
}
header .navbar.navbar-expand-lg .nav-item:hover .nav-link, 
header .navbar.navbar-expand-lg .nav-item:hover .nav-link a{
color: var(--theme-blue);
}
header .navbar .nav-item .dropdown-menu .subMenuTitle{
font-size: 14px;
font-weight: 500;
color: var(--theme-black);
margin-bottom: 5px;
}
header .navbar .nav-item .dropdown-menu .menu-icon svg{
fill: var(--theme-black);
opacity: 0.75;
margin-top: -5px;
width: 18px;
height: 18px;
}
header .navbar.navbar-expand-lg .nav-item:hover .nav-link .menu-icon svg{
fill: var(--theme-blue);
}
header .navbar .nav-item .dropdown-menu .subMenuTitle + p{
font-size: 12px;
color: #5a5a5a;
margin:0;
}
.navbar-nav .dropdown-menu{
clear: both;
}
.dropdown-menu a.btn-text {
font-size: 13px;
text-transform: uppercase;
font-weight: 500;
color: var(--theme-blue);
}
.dropdown-menu a.btn-text svg{
margin-left: 5px;
transition: 0.3s ease-in-out all;
-webkit-transition: 0.3s ease-in-out all;
-mos-transition: 0.3s ease-in-out all;
-ms-transition: 0.3s ease-in-out all;
fill: var(--theme-blue);
}
.dropdown-menu a.btn-text:hover{
color: var(--theme-gray);
}
.dropdown-menu .dropdown-menu-inner a.btn-text:hover svg{
transform: rotate(45deg);
fill: var(--theme-gray) !important;
}
@media (min-width: 992px) {
.navbar-expand-lg .navbar-nav .dropdown-menu {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
}
.dropdown-menu a {
text-decoration: none;
color: #000000;
}
.dropdown-menu a .d-flex {
transition: all 0.5s;
}
.menu-overlay {
  z-index: -1;
  background-color: #08080899;
  width: 100%;
  height: 100vh;
  display: none;
  position: absolute;
  inset: 0%;
}
.dropdown .dropdown-menu{
background-color: transparent;
}
.dropdown-menu-inner{
background-color: #ffffff;
border-radius: 10px;
margin-top: 10px;
}
.dropdown-menu[data-bs-popper]{
top: auto;
}
@media only screen and (min-width: 992px) {
.dropdown-menu {
  width: 1000px;
  margin: 0 auto;
}
.dropdown:hover .dropdown-menu{
  display: block;
}
/* header .navbar .collapse .nav-item.dropdown:after{
  position: absolute;
  content: "";
  height: 5px;
  width: 0;
  transition: 0.3s ease-in-out all;
  -webkit-transition: 0.3s ease-in-out all;
  -mos-transition: 0.3s ease-in-out all;
  -ms-transition: 0.3s ease-in-out all;
  background-color: var(--theme-blue);
  bottom: 0;
}
header .navbar .collapse .nav-item.dropdown:hover:after{
  width: 8%;
} */
header .navbar .collapse .nav-item.dropdown .nav-link{
  position: relative;
}
header .navbar .collapse .nav-item.dropdown .nav-link .sub_menu_active_line{
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 5px;
  width: 0;
  background-color: var(--theme-blue);
  transition: 0.3s ease-in-out all;
  -webkit-transition: 0.3s ease-in-out all;
  -mos-transition: 0.3s ease-in-out all;
  -ms-transition: 0.3s ease-in-out all;
  background-color: var(--theme-blue);
}
header .navbar .collapse .nav-item.dropdown:hover .nav-link .sub_menu_active_line{
  width: 100%;
}
.dropdown-menu.show {
  display: flex;
}
}
header .header-btns {
display: flex;
justify-content: end;
}
header .header-btns img {
  display: none;
}
.nav-link:focus-visible{
box-shadow: none;
}
@media(max-width:1200px){
.dropdown-menu{
  width: calc(100% - 80px);
}
header .header-logo img{
  max-width: 100%;
}
header .navbar.navbar-expand-lg .nav-link{
  padding: 30px 10px;
  font-size: 16px;
}
header .header-logo, header .header-btns{
  padding: 25px 0 20px;
}
header .header-logo{
  max-width: 160px;
}
}
@media (max-width: 991px) {
header .header-btns a.btn{
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 9px;
}
header .header-btns img{
  display: block;
  max-width: 100%;
  transition: 0.3s ease-in-out all;
  -webkit-transition: 0.3s ease-in-out all;
  -mos-transition: 0.3s ease-in-out all;
  -ms-transition: 0.3s ease-in-out all;
}
header .header-btns .btn{
  background-color: #ffffff;
  border-color: var(--theme-black);
}
header .header-btns .btn.demoBtn{
  border: 0;
  padding: 0;
  overflow: visible;
  width: 50px;
}
header .header-btns .btn.demoBtn:active{
  background-color: transparent !important;
}
header .header-btns .btn.demoBtn:hover img{
  filter: invert(0);
}
header .header-btns .btn.demoBtn:after{
  content:none;
}
header .header-btns .btn:hover:after{
  background-color: var(--theme-black);
}
header .header-btns .btn:hover img{
  filter: invert(85%);
}
header .header-btns span{
    display: none;
}
header .header-logo, header .header-btns{
  padding: 20px 0;
}
header .navbar.navbar-expand-lg .nav-link{
  padding: 15px 0;
}
header .navbar-nav .nav-item + .nav-item{
  border-top: 1px solid var(--theme-gray);
}
header .navbar-nav .nav-item .dropdown-toggle{
  padding: 15px;
}
header .navbar .nav-link img{
  margin:0;
}
header .navbar .nav-item .dropdown-menu .subMenuTitle + p{
  display: none;
}
.dropdown-menu a.btn-text{
  color: var(--theme-light-gray);
  font-size: 12px;
}
header .navbar .collapse:after {
  background-color: rgba(0,0,0,0.5);
  position: absolute;
  content: "";
  width: calc(100% + 100px);
  height: 100vh;
  z-index: -1;
  left: -50px;
  transition: 0.3s ease-in-out all;
  -webkit-transition: 0.3s ease-in-out all;
  -mos-transition: 0.3s ease-in-out all;
  -ms-transition: 0.3s ease-in-out all;
  opacity: 0;
}
header .navbar .collapse.show:after {
  opacity: 1;
}
header .navbar .navbar-nav{
  padding-bottom: 5px;
}  
.dropdown-menu{
  width: 100%;
}
.dropdown-menu-inner{
  max-height: 175px;
  overflow: auto;
}
.dropdown-menu-inner .sub_menu_items{
  padding: 10px 0 !important;
}
}
@media (max-width: 767px){
header .navbar .container-lg{
  padding-left: 20px !important;
  padding-right: 20px !important;
}
 a.header-logo {
  display: flex;
  height: 80px;
}

}
@media (max-width: 575px){
header .navbar .container-lg{
  padding-left: 15px !important;
  padding-right: 15px !important;
} 
}
.dropdown-menu .dropdown-menu-inner a:hover .subMenuTitle{
color: var(--theme-blue);
}
.dropdown-menu .dropdown-menu-inner a:hover svg{
fill: var(--theme-blue) !important;
}
.navbar-toggler{border:0;border:0;height:40px;width:40px;border-radius:50%;background-color:#000000;padding:0;display:flex;align-items:center;justify-content:center;flex-direction:column;}
.navbar-toggler:focus{box-shadow:none}
.navbar-toggler .icon-bar{display:block;width:23px;height:3px;border-radius:1px;background-color:#ffffff;position:relative;transition:all 0.3s ease-in-out;}
.navbar-toggler .icon-bar+.icon-bar{margin-top:4px;}
.navbar-toggler .icon-bar:nth-of-type(2){top:1px;}
.navbar-toggler .icon-bar:nth-of-type(3){top:2px;}
.navbar-toggler.active .icon-bar:nth-of-type(1){top:7px;transform:rotate(45deg);}
.navbar-toggler.active .icon-bar:nth-of-type(2){background-color:transparent;}
.navbar-toggler.active .icon-bar:nth-of-type(3){top:-7px;transform:rotate(-45deg);}
/*Header End*/

/*Banner Start*/
.banner{
  margin-top: 100px;
  text-align: center;
  background-image: url("../../images/cayman-home-page/banner-bg.webp");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding-bottom: 45px;
  padding-top: 30px;
}
.banner .banner-content p{
  margin: 0 auto 35px;
  font-size: 18px;
}

.banner .banner-content .banner-title{
  font-weight: 600;
  line-height: 125%;
}
.banner .banner-content .btn span {
  height: 20px;
  width: 20px;
  border-radius: 100%;
  background-color: #ffffff;
  margin-left: 10px;
  display: flex;
  float: right;
  line-height: 20px;
  align-items: center;
  margin-top: 2px;
  justify-content: center;
  transition: 0.3s ease-in-out all;
  -webkit-transition: 0.3s ease-in-out all;
  -mos-transition: 0.3s ease-in-out all;
  -ms-transition: 0.3s ease-in-out all;
}
.banner .banner-content .btn span img{
  padding-left: 2px;
  transition: 0.3s ease-in-out all;
  -webkit-transition: 0.3s ease-in-out all;
  -mos-transition: 0.3s ease-in-out all;
  -ms-transition: 0.3s ease-in-out all;
}
.banner .banner-content .btn:hover span{
  background-color: var(--theme-black);
}
.banner .banner-content .btn:hover span img{
  filter: invert(100%);
}
.banner-images{
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.banner-images .banner-main-image .bannerOverlay{
  position: relative;
  border-radius: 25px;
}
.banner-images .banner-main-image .bannerOverlay:before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.125);    
  border-radius: 25px;
  transition: 0.5s ease-in-out all;
  -webkit-transition: 0.5s ease-in-out all;
  -mos-transition: 0.5s ease-in-out all;
  -ms-transition: 0.5s ease-in-out all;
}
.banner-images .banner-main-image .bannerOverlay:hover:before{
  background-color: rgba(0, 0, 0, 0.25);    
}  
.banner-images .banner-main-image .playBtn .playIcon {
  display: inline-block;
  background-color: rgba(255,255,255,0.65);
  border-radius: 50%;

}

.banner-images .banner-main-image .playBtn{
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translate(0 , -50%);
  -webkit-transform: translate(0 , -50%);
  -moz-transform: translate(0 , -50%);
  -ms-transform: translate(0 , -50%);   

}
.banner-images .banner-main-image .playBtn img{
  max-width: 65px;
  transition: 0.5s ease-in-out all;
  border-radius: 50%;
  -webkit-transition: 0.5s ease-in-out all;
  -mos-transition: 0.5s ease-in-out all;
  -ms-transition: 0.5s ease-in-out all;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
	animation: pulse-white 2s infinite; 
}
@keyframes pulse-white {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
	}
	
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
	}
	
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}
.banner-images .banner-main-image .bannerOverlay .playBtn:hover img{
  transform: scale(1.10);
  transform-origin: center;
}

.banner-images .banner-main-image{
  filter: drop-shadow(0 0 23px rgba(26,24,24,0.2));
}
.banner-left-images, .banner-right-images {
  width: 335px;
  position: relative;
}
.banner-images .banner-left-images img,
.banner-images .banner-right-images img{
  display: block;
}
.banner-images .banner-left-images .banner-left-bottom-images{
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
  padding-right: 30px;
  margin-top: -20px;
}  
.banner-images .banner-left-images .banner-top-images{
  display: flex;
  justify-content: end;
}
.banner-counts{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.banner-counts .banner-counts-list .list-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 15px;
  border-radius: 50%;
  background-color: #ffffff;
  margin: 0 auto 20px;
}
.banner-counts .banner-counts-list .list-count{
  font-weight: 600;
  color: var(--theme-black);
  line-height: 100%;
  display: flex;
  justify-content: center;
}
.banner-counts .banner-counts-list .list-count .counter{
  min-width: 75px;
  font-size: 56px;
}
.banner-counts .banner-counts-list .list-count span{
  font-size: 24px;
  margin-left: 5px;
}
.banner-counts .banner-counts-list .list-label{
  color: var(--theme-gray);
  line-height: 135%;
  font-size: 18px;
}
@media(max-width:1366px){
  .banner{margin-top: 85px;}
  .banner .banner-content p{font-size: 14px;}
  .banner-counts .banner-counts-list .list-label{font-size:16px;}
  .banner-counts .banner-counts-list .list-count .counter {
    min-width: 65px;
    font-size: 46px;
}
}
@media(min-width:1025px){
  .banner .banner-content p{max-width: 52.08vw;}
}
@media(min-width:478px){
  .banner-images{margin-top: 3.125vw;}
  .banner-left-images, .banner-right-images {margin-top: -9.11vw;}
  .banner-images .banner-left-images .banner-left-bottom-images{padding-right: 1.5625vw;} 
  .banner-images .banner-right-images .banner-right-bottom-images{padding-left: 1.5625vw;}
  .banner-images .banner-left-images .banner-left-bottom-images img + img{margin-top: 5.46875vw} 
  .banner-images .banner-right-images .banner-right-bottom-images img + img{margin-top: 7.8125vw;}
  .banner .banner-content p{margin: 0 auto 1.82vw}
  .banner .banner-content .banner-title{font-size:3vw; max-width: 60%; margin: 0 auto 15px;}    
  .banner-images .banner-main-image img{max-width: 50.46vw;}
  .banner-images .banner-left-images .l-img-1,
  .banner-images .banner-right-images .r-img-2{width: 10.41vw;}
  .banner-images .banner-left-images .l-img-2{width: 5.20vw;}
  .banner-images .banner-left-images .l-img-3,
  .banner-images .banner-right-images .r-img-1{width: 3.43vw;}
  .banner-images .banner-right-images .r-img-3{width: 6.09vw}
  .banner-images .banner-left-images .banner-top-images img {margin-right: 7.08vw;}
  .banner-images .banner-right-images .banner-top-images img {margin-left:11.97vw}
  .banner-counts{margin-top: 3vw;}
  .banner-counts .banner-counts-list .list-count{font-size: 3.75vw;}    
  .banner-counts .banner-counts-list{margin: 0 3.25vw;}
}
@media(max-width:1024px){
  .banner .banner-content p{max-width: 60%}
  .banner-counts .banner-counts-list .list-icon{width: 45px;height: 45px;}    
  .banner-counts .banner-counts-list .list-count span{font-size: 18px;margin-left: 5px;}
  .banner-counts .banner-counts-list .list-label{font-size: 14px;margin-top: 5px; line-height: 125%;}
}

@media(max-width:475px){
  .banner-left-images, .banner-right-images{
    display: none;
  }
  .banner-counts .banner-counts-list .list-icon {
      width: 55px;
      height: 55px;
  }
  .banner-counts{
    flex-wrap: wrap;
    margin-top: 50px;
  }
  .banner-counts .banner-counts-list .list-count{
    font-size: 36px;
  }
  .banner-counts .banner-counts-list{
    width: 50%;
    margin-bottom: 25px;
  }
  .banner{
    padding-bottom: 25px;
  }
}
/*Banner End*/

/*Image-List Section Start*/
@media(min-width:478px){
.image-list-section .content-list,
.image-list-section .sec-img{
  margin-top:5vw;
}
.image-list-section .content-list .list-title{
  font-size: 1.25vw;
}
.image-list-section .content-list .list-item + .list-item{
  margin-top:45px;
}
}
.image-list-section .content-list .list-item .list-img{
display: flex;
align-items: center;
justify-content: center;
min-width: 60px;
height: 60px;
padding: 15px;
border-radius: 50%;
background-color: #ffffff;
margin-right:25px;
}
.image-list-section .content-list .list-title{
color: var(--theme-black);
font-weight: 600;
margin-bottom: 10px;
}
.image-list-section .content-list .list-item + .list-item{
margin-top:20px;
}
.image-list-section .btn{
margin-left: 85px;
margin-top: 40px;
}
.image-list-section .sec-img img{
max-width: 100%;
}
@media(max-width:1024px){
.image-list-section .content-list .list-item .list-img{
  min-width: 50px;
  height: 50px;
  margin-right: 15px;
}
.image-list-section .content-list .list-title{
  font-size: 16px;
  margin-bottom: 2px;
}
.image-list-section .btn {
  margin-left: 65px;
  margin-top: 20px;
}
}
@media(max-width:991px){
.image-list-section .sec-img{
  max-width: 70%;
  margin: 25px auto 0;
}
.image-list-section .content-list{
  display: flex;
  flex-wrap: wrap;
}
.image-list-section .content-list .list-item{
  width: 50%;
  padding-right: 25px;
  /* margin-bottom: 20px; */
}
.image-list-section .content-list .list-item + .list-item{
  margin: 0;
}
.image-list-section .list-btn{
  display: flex;
  justify-content: center;
  margin:20px 0 0;
}
.image-list-section .list-btn .btn{
  margin: 0;
}
}
@media(max-width:767px){
.image-list-section .sec-img{
  max-width: 100%;
}
.image-list-section .content-list .list-item{
  width: 100%;
  padding-right: 0;
  margin-top: 20px;
}
}
/*Image-List Section End*/

/*Solution Section Start*/
.solutionSec{
  background-image: url(../../images/cayman-home-page/solution-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media(min-width:768px){
  .solutionSec .content-list {
    padding-right: 50px;
  }
}
@media(max-width:991px){
  .solutionSec .content-list .list-item:last-child{
    width: 100%;
  }
} 
/*Solution Section End*/

/*Slider Section Start*/
@media(min-width:1535px){
  .SliderSec .container{
    max-width: 1400px;
  }
}
.SliderSec .owl-carousel{
  margin-top: 50px;
}
.SliderSec .owl-carousel .item{
  padding: 20px 1.30vw;
  border-radius: 2.08vw;
  position: relative;
  width: 100%;
  height: 26.04vw;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: end;
}
.SliderSec .owl-carousel .gov-public{
  background-position: center;
}
.SliderSec .owl-carousel .hospitality{
  background-position: center right -80px;
}
.SliderSec .owl-carousel .it-industry{
  background-position: center left -35px;
}
.SliderSec .owl-carousel .banking-finance{
  background-position: center;
}
.SliderSec .owl-carousel .manufacturing{
  background-position: center right;
}
.SliderSec .owl-carousel .healthcare{
  background-position: center left -35px;
}
.SliderSec .owl-carousel .item:after{
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;    
}
.SliderSec .owl-carousel .item.item1:after{
  background: transparent linear-gradient(180deg, #FFFFFF00 0%, #AC3D62 100%) 0% 0% no-repeat padding-box;
}
.SliderSec .owl-carousel .item.item2:after{
  background: transparent linear-gradient(180deg, #FFFFFF00 0%, #56A168 100%) 0% 0% no-repeat padding-box;
}
.SliderSec .owl-carousel .item.item3:after{
  background: transparent linear-gradient(180deg, #FFFFFF00 0%, #E47D69 100%) 0% 0% no-repeat padding-box;
}
.SliderSec .owl-carousel .item.item4:after{
  background: transparent linear-gradient(180deg, #FFFFFF00 0%, #FFB463 100%) 0% 0% no-repeat padding-box;
}
.SliderSec .owl-carousel .item.item5:after{
  background: transparent linear-gradient(180deg, #FFFFFF00 0%, #df4f43 100%) 0% 0% no-repeat padding-box;
}
.SliderSec .owl-carousel .item.item6:after{
  background: transparent linear-gradient(180deg, #FFFFFF00 0%, #466bb3 100%) 0% 0% no-repeat padding-box;
}
.SliderSec .owl-carousel .item.item7:after {
  background: transparent linear-gradient(180deg, #00000000 35%, #96D3CF 85%) 0% 0% no-repeat padding-box;
}
.SliderSec .owl-carousel .item .slideContent {
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
    z-index: 1;
    text-decoration: none;
    color: #ffffff;
}
.SliderSec .owl-carousel .item .slideContent .slideTitle {
  color: var(--theme-black);
  font-size: 14px;
  font-weight: 600;
  background-color: #ffffff;
  padding: 6px 15px;
  border-radius: 8px;
  display: inline-block;
  margin: 0 auto 10px;
  line-height: 125%;
}
.SliderSec .owl-carousel .item .slideContent p{
  color: #ffffff;
  font-size: 15px;
  margin: 0 5px;
}

@media(max-width:1024px){
  .SliderSec .owl-carousel .item{
    background-position:center;
    height: 350px;
    border-radius: 25px;
  }
  .SliderSec .owl-carousel .item .slideContent p{
    height: 65px;
    display: flex;
    align-items: center;
  }
}
/*Slider Section End*/

/*Onbaording Section Start*/
.onBoarding{
  background-color: #F7F7F8; 
}
.onBoarding .owl-carousel{
  margin-top: 50px;
}
.onBoarding .onBoardingSlider .item{
  padding: 20px;
  border-radius: 2.08vw;
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.onBoarding .onBoardingSlider .step1{
    background-color: #E2E6F4;
}
.onBoarding .onBoardingSlider .step2{
    background-color: #EEF5E3;
}
.onBoarding .onBoardingSlider .step3{
    background-color: #FAE3DA;
}
.onBoarding .onBoardingSlider .step4{
    background-color: #D8EEEC;
}
.onBoarding .onBoardingSlider .stepsCount{
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--theme-black);
}
.onBoarding .onBoardingSlider .stepImg{
  max-width: 175px;
  margin: 20px auto;
}
.onBoarding .onBoardingSlider .stepTitle{
  font-size: 20px;
  font-weight: 600;
  line-height: 125%;
  height: 55px;
  margin: 30px 0 10px;
}
.onBoarding .onBoardingSlider ul {
    padding-left: 20px;
    gap: 6px;
    display: flex;
    flex-direction: column;
}
.onBoarding .onBoardingSlider ul li{
  font-size: 14px;
  color: var(--theme-gray);
}
@media(max-width:1366px){
.onBoarding .onBoardingSlider .stepImg{
  max-width: 150px;
}
.onBoarding .onBoardingSlider .item{
  height: 450px;
}
.onBoarding .onBoardingSlider .stepTitle{
  font-size: 18px;
  height: 45px;
}
.onBoarding .onBoardingSlider ul{
  gap: 4px;
}
.onBoarding .onBoardingSlider ul li{
  font-size: 13px;
}
}
@media(max-width:1024px){
.onBoarding .onBoardingSlider .item{
  border-radius: 25px;
}
}
@media(max-width:767px){
.onBoarding .onBoardingSlider .stepTitle{
  font-size: 16px;
}
.onBoarding .onBoardingSlider .item{
  height: 475px;
}
}
@media(max-width:475px){
.onBoarding .onBoardingSlider .stepTitle{
  font-size: 18px;
  display: flex;
  align-items: center;
}
.onBoarding .onBoardingSlider .item{
  height: auto;
}
.onBoarding .onBoardingSlider .stepImg{
  max-width: 250px;
  width: 100%;
}
}
/*Onbaording Section End*/

/*Client Section Start*/
.clientSection .clientSlider{
  margin-top: 60px;
}
.clientSection .item{
  background-color: #F6F6F6;
  border-radius: 15px;
  width: 235px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clientSection .clientSlider .item img{
  max-width: 165px;
  filter: grayscale(100%);
  transition: 0.3s ease-in-out all;
  -webkit-transition: 0.3s ease-in-out all;
  -mos-transition: 0.3s ease-in-out all;
  -ms-transition: 0.3s ease-in-out all;
}
.clientSection .clientSlider .item:hover img{
  filter: grayscale(0);
}
@media(max-width:1024px){
  .clientSection .item{
    height: 115px;
  }
  .clientSection .item img{
    max-width: 140px;
  }
}
@media(max-width:767px){
  .clientSection .clientSlider{
    margin-top: 20px;
  }
  .clientSection .item{
    max-width: 100%;
    height: 100px;
    padding: 15px 20px;
  }
}
/*Client Section End*/

/*Testimonials Section Start*/
.testimonial{
background-image:url("../../images/cayman-home-page/testimonial-bg.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
@media (min-width: 1025px) {
.testimonial p{
  max-width: 52.08vw;
  margin: 0 auto;
}
}
.testimonialSlider{
margin-top: 55px;
}
.testimonialSlider .item{
padding: 35px;
height: 465px;
background-color: #ffffff;
text-align: center;
border-radius: 2.60vw;
}
.testimonialSlider .item .test_title{
font-size: 20px;
font-weight: 600;
margin-bottom: 15px;
}
.testimonialSlider .item .quoteImg{
max-width: 24px;
float: left;
}
.testimonialSlider .item p{
font-size: 16px;
color: var(--theme-gray);
margin-bottom: 20px;
position: relative;
height: 235px;
}
.testimonialSlider .item .testi_profile img{
border-radius: 50%;
max-width: 50px;
margin: 0 auto;
}
.testimonialSlider .item .testi_profile .profile_name{
font-size: 18px;
color: var(--theme-black);
font-weight: 600;
}
.testimonialSlider .item .testi_profile .profile_desg{
font-size: 14px;
color: var(--theme-gray);
}
@media(max-width:1366px){
.testimonialSlider .item{
  padding: 25px;
}
.testimonialSlider .item .test_title{
  font-size: 18px;
}
.testimonialSlider .item p{
  font-size: 15px;
}
.testimonialSlider .item .testi_profile .profile_desg{
  font-size: 13px;
}
}
@media (max-width: 1024px) {
.testimonialSlider .item {
    padding: 20px;
    height: 450px;
}
.testimonialSlider .item p{
  font-size: 14px;
}
}
@media (max-width: 991px) {
.testimonialSlider{
  margin-top: 25px;
}
.testimonialSlider .item {
  padding: 20px;
  height: auto;
}
.testimonialSlider .item p{
  height: 190px;
}
}
@media (max-width: 767px) {
.testimonialSlider .item {
  padding: 15px;
}
.testimonialSlider .item p{
  height: 115px;
}
}
@media (max-width: 475px) {
.testimonialSlider .item {
  padding: 15px;
}
.testimonialSlider .item p{
  height: 150px;
}
}
@media (max-width: 320px) {
.testimonialSlider .item p{
  height: 185px;
}
}
/*Testimonials Section End*/

/*Blog Section Start*/
.blogSlider{
margin-top: 50px;
}
.blogSlider .item .blogImg{
margin-bottom: 10px;
}
.blogSlider .item .blogImg img{
border-radius: 20px 20px 0 0;
object-fit: cover;
object-position: center;
aspect-ratio: 6 / 4;
}
.blogSlider .item .blog-content{
height: 150px;
}
.blogSlider .item .blog-content .blogTag{
color: var(--theme-blue);
font-size: 14px;
text-decoration: none;
}
.blogSlider .item .blog-content .blogViews{
font-size: 14px;
padding: 5px 15px;
border-radius: 15px;
background-color: #ECECEC;
}
.blogSlider .item .blog-content .blogTitle{
font-size: 24px;
line-height: 100%;
margin-top: 10px;
font-weight:600;
color: var(--theme-black);
transition: 0.3s ease-in-out all;
-webkit-transition: 0.3s ease-in-out all;
-mos-transition: 0.3s ease-in-out all;
-ms-transition: 0.3s ease-in-out all;
}
.blogSlider .item .blog-content .blogTitle:hover{
color: var(--theme-blue);
}
.blogDate{
font-size: 14px;
color: var(--theme-gray);
margin-top: 5px;
display: flex;
}
.btnText{
margin-top: 5px;  
}
@media(max-width:1440px){
.blogSlider .item .blog-content .blogTitle{
  font-size: 22px;
}
}
@media(max-width:1366px){
.blogSlider .item .blog-content .blogTitle{
  font-size: 20px;
}
}
@media(max-width:1024px){
.blogSlider .item .blog-content .blogTitle{
  font-size: 20px;
}
}
/*Blog Section End*/

/*Connect With HR HUB Start*/
.connectSec{
  background-color: #FFEEDB;
  margin-top: 80px;
  position: relative;
  padding: 50px 0 80px;
}
.connectSec .connnectImg{
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.connectSec .connectContent{
  position: relative;
  z-index: 1;
}
.connectSec .connectContent .p_sec{
  color: var(--theme-black);
}
.connectSec .connnectForm{
  background-color: #FFF5EA;
  border-radius: 50px;
  padding: 50px 60px;
  max-width: 575px;
  margin-top: -100px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.connectSec .connnectForm .connnectFormTitle{
  margin-bottom: 35px;
  font-size: 24px;
  font-weight: 600;
}
.connectSec .connnectForm .btn{
  min-width: 220px;
}
.connectSec .connectContent .p_sec{
  max-width: 480px;
  margin: 0 auto;
}
@media(max-width:1366px){
  .connectSec .connnectForm{
    padding: 50px 40px;
  }
  .connectSec .connnectImg{
    max-width: 35%;
  }
}
@media(max-width:1024px){
  .connectSec{
    margin-top: 0;
  }
  .connectSec .connnectImg{
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translate(0, 0);
  }
  .connectSec .connnectImg{
    max-width: 300px;
  }
  .connectSec .connectContent .p_sec,
  .connectSec .connnectForm{
    max-width: 80%;
  }
  .connectSec .connnectForm{
    margin:50px auto 0;
    padding: 30px 40px;
  }
  .connectSec .connnectForm .connnectFormTitle,
  .connectSec .connnectForm .google-captach{
    text-align: center;
    margin: 0 auto;
  }
  .form-btn{
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    width: 100%;
  }
}
@media(max-width:991px){
  .connectSec{
    padding: 50px 0;
  }
  .connectSec .connnectForm{
      margin:35px auto 0;
  }
}
@media(max-width:767px){    
  .connectSec .connectContent .p_sec,
  .connectSec .connnectForm{
    max-width: 100%;
  }
  .connectSec .connnectForm{
    padding: 20px;
    border-radius: 20px;
  }    
}
/*Connect With HR HUB End*/

/*Footer Starts*/
footer.section-padding{
  background-color: var(--theme-black);
  color: #ffffff;
  padding-bottom: 0;
}
footer .get-a-demo{
  text-align: center;
}
footer .get-a-demo .demoTitle{    
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 20px;
}
footer .get-a-demo .p_sec{
  max-width: 775px;
  color: #ffffff;
  margin: 0 auto;
}
footer .get-a-demo .btn{
  border-color: #ffffff;
  margin: 50px auto;
}
footer .footerLinkTitle{
  font-size: 18px;
  margin-bottom: 10px;
}
footer .f-link{
  font-size: 14px;
  color:var(--theme-light-gray);
  transition: 0.3s ease-in-out all;
  -webkit-transition: 0.3s ease-in-out all;
  -mos-transition: 0.3s ease-in-out all;
  -ms-transition: 0.3s ease-in-out all;
}
footer a.f-link:hover{
  color: #ffffff;
}
footer .footerList{
  margin-bottom: 0;
}
footer .footerList li{
  line-height: 30px;
  list-style: none;
}
footer .contactDetails .contactSec{
  display: flex;
}
footer .contactDetails .contactSec + .contactSec{
  margin-top:15px;
}
footer .contactDetails .contactImg{
  max-width: 27px;
  margin-right: 15px;
  border-radius: 50%;
  display: inline-block;
}
footer .contactDetails .contactImg img{
  max-width: 100%;
  min-width: 25px;
}
footer .contactDetails a{
  font-size:16px;
  color: #ffffff;
  font-weight: 500;
}
footer .contactDetails a:hover{
  color: var(--theme-light-gray);
}
footer .appDownloadBtn .DownloadBtn{
  display: flex;
}
footer .appDownloadBtn a + a{
  margin-top: 10px;
}
footer .footerBottom{
  margin-top: 40px;
}
footer .footerBottom .social-list,
footer .footerBottom .footerBottomLinks{
  display: flex;
}
footer .footerBottom .social-list{
  margin: 0;
}
footer .footerBottom .social-list li{
  list-style: none;
  width:20px;
}
footer .footerBottom .social-list li img{
  max-width: 100%;
  filter: invert(100%);
  transition: 0.3s ease-in-out all;
  -webkit-transition: 0.3s ease-in-out all;
  -mos-transition: 0.3s ease-in-out all;
  -ms-transition: 0.3s ease-in-out all;
}
footer .footerBottom .social-list li svg{
  transition: 0.3s ease-in-out all;
  -webkit-transition: 0.3s ease-in-out all;
  -mos-transition: 0.3s ease-in-out all;
  -ms-transition: 0.3s ease-in-out all;
}
footer .footerBottom .social-list li:hover img,
footer .footerBottom .social-list li:hover svg{
  filter: invert(50%);
}
footer .footerBottom .footerBottomLinks{
  justify-content: end; 
}
footer .footerBottom .social-list li + li,
footer .footerBottom .footerBottomLinks li + li{
  margin-left: 20px;
}
footer .footerBottom .footerBottomLinks li{
  list-style: none;
}
footer .copyright{
  display: inline-block;
  width: 100%;
  font-size: 14px;
  margin-top: 20px;
  padding: 20px 0;
  border-top:1px solid #707070;
  text-align: center;
}
footer .footerAppAddrs {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #707070;
}
footer .footerAppAddrs .contactDetails{
  display: flex;
}
footer .footerAppAddrs .contactDetails .contactSec:hover .f-link{
  color: #ffffff;
}
footer .footerAppAddrs .contactDetails .contactSec + .contactSec{
  margin-top: 0;
  margin-left: 30px;
}
footer .footerAppAddrs .contactDetails .contactSec p{
  color: #ffffff;
  margin: 5px 0 0;
  font-size: 12px;
  padding-right: 15%;
}
@media(min-width:478px){
  footer .get-a-demo .demoTitle{
    font-size: 3.75vw;
  }
}
@media(max-width:1024px){
  footer .footerLinkTitle {
      font-size: 16px;
      margin-bottom: 10px;
  }
  footer .get-a-demo .btn{
    margin: 20px auto 50px;
  }
  footer .f-link{
    font-size: 13px;
  }
  footer .contactDetails a {
    font-size: 14px;
  }
  footer .footerList li {
    line-height: 27px;
  }
  footer .footerBottom .social-list li{
    width: 17px;
  }
  footer .footerBottom .social-list li + li,
  footer .footerBottom .footerBottomLinks li + li{
    margin-left: 10px;
  }

  footer .footerBottom .footerBottomLinks .footer .f-link{
    font-size: 12px;
  }
  footer .appDownloadBtn .qrImg{
    max-width: 100px;
  }
}
@media(max-width:991px){
  footer .footerList{
    margin-bottom:30px;
  }
  footer .appDownloadBtn{
    margin-top: 0;
  }
  footer .appDownloadBtn a + a{
    margin-left: 0;
    margin-top: 20px;
  }
  footer .footerBottom .social-list{
    margin: 20px 0;
  }
  footer .footerAppAddrs .contactDetails .contactSec p{
    padding: 0;
  }
  footer .footerBottom .social-list li + li,
  footer .footerBottom .footerBottomLinks li + li{
    margin-left: 20px;
  }
  footer .footerBottom .social-list,footer .footerBottom .footerBottomLinks{
    justify-content: center;
  }
  footer .appDownloadBtn .DownloadBtn img{
    max-width: 80%;
  }
  footer .appDownloadBtn .qrImg{
    width: 90px;
  }
}
@media(max-width:767px){
  footer .appDownloadBtn{
    margin-bottom: 35px;
  }
  footer .contactDetails .contactImg {
    max-width: 25px;
    margin-right: 10px;
  }
  footer .contactDetails{
    max-width: 160px;
    margin: 0 auto 30px;
  }
  footer .contactDetails a{
    font-size: 12px;
  }
  footer .footerBottom .social-list li + li,
  footer .footerBottom .footerBottomLinks li + li{
    margin-left: 15px;
  }
  footer .footerAppAddrs .footerLinkTitle{
    text-align: center;
  }
  footer .appDownloadBtn .DownloadBtn{
    align-items: center;
    justify-content: center;
  }
}
@media(max-width:575px){
  footer .footerLinkTitle,
  footer .footerList{
    text-align: center;
  }
  footer .contactEmail{
    text-align: center;
    margin-bottom: 0;
  }
  footer .footerAppAddrs .contactDetails{
    max-width: 100%;
    margin: 0;
  }
  footer .footerAppAddrs .contactDetails .contactSec + .contactSec{
    margin-left: 5px;
  }
  footer .footerBottomLinks .f-link{
    font-size: 12px;
  }
}
/*Footer Ends*/

/*Software Badge Section Start*/
.clientSection .softwareBadgeSlider{
margin-top: 30px;
}
.clientSection .softwareBadgeSlider .item{
width: auto;
padding: 10px;
}
.clientSection .softwareBadgeSlider .item img{
width: 110px !important;
}
.clientSection .softwareBadgeSlider .owl-stage{
margin: 0 auto;
}
@media(max-width:1024px){
.clientSection .softwareBadgeSlider .item img{
  width: 90px !important;
}
.clientSection .softwareBadgeSlider .item {
  height: 115px !important;
}
}
/*Software Badge Section End*/

/* design issues dhwani css start 13-09-24 prnv  */
@media (max-width: 991px){
.banner-main-image,
.banner-left-images .banner-top-images img, .banner-left-images .banner-left-bottom-images img,
.banner-right-images .banner-top-images img, .banner-right-images .banner-right-bottom-images img{
  transform: translateX(0px) translateY(0px) !important;
}
.banner-images .banner-left-images .banner-top-images{
  justify-content: center;
}
}
@media (max-width: 575px){
.g-recaptcha {
  transform: scale(0.83);
  transform-origin: left;
}

}
.form-control.is-invalid, .was-validated .form-control:invalid,
.form-control.is-valid, .was-validated .form-control:valid{
background-image: none;
}

.recaptcha-invalid-feedback {
display: block;
text-align: left;
width: 100%;
margin-top: .25rem;
font-size: .875em;
color: var(--bs-form-invalid-color);
}
/* design issues dhwani css end 13-09-24 prnv  */

/* mantis bugs css start 13-09-24  */
.onBoarding .onBoardingSlider ul li::marker{
color: #000000;
}
.SliderSec .owl-carousel .item .slideContent p{
height: 70px;
}
@media(max-width:1440px){
.SliderSec .owl-carousel .item .slideContent .slideTitle{
  font-size: 14px;
}
.SliderSec .owl-carousel .item .slideContent p{
  font-size: 14px;
  margin: 0;
}
}
@media(max-width:1024px){
.SliderSec .owl-carousel .item .slideContent .slideTitle{
  font-size: 12px;
}
.SliderSec .owl-carousel .item .slideContent p{
  font-size: 13px;
  margin: 0;
}
}
@media (max-width: 991px){
.banner-counts .banner-counts-list .list-count .counter{
  min-width: 40px;
  font-size: 30px;
}
.banner .banner-content p{
  max-width: 70%
}
}
@media (max-width: 576px){
.banner .banner-content p{
  max-width: 100%
}
}
/* mantis bugs css end 13-09-24  */
/* #navbarSupportedContent {
max-height: 80vh;
overflow: auto;
} */


/* New Changes in Mobile Start */

@media(max-width:767px){
  .heading{
    background-color: #ffffff;
    position: relative;
    z-index: 1;
    display: inline;
    padding: 8px 12px;
  }
  .heading:after {
    position: absolute;
    content: "";
    height: 3px;
    width: calc(100% + 70px);
    background-color: var(--theme-blue);
    left: -35px;
    margin: 0 auto;
    right: 0;
    z-index: -1;
    top: 15px;
  }
  .connectSec .heading{
    background-color: #FFEEDB !important;
  }
  .solutionSec .heading{
    background-color: #f1f2f8 !important;
  }
  .onBoarding .heading{
    background-color: #F7F7F8 !important;    
  }
  .testimonial .heading{
    background-color: #eef5e3 !important;    
  }
  .banner-images .banner-main-image .playBtn img{
    max-width: 50px;
  }
  .banner-images .banner-main-image .bannerOverlay:before{
    border-radius: 10px;
  }
  .banner-images .banner-main-image img{
    max-width: 100%;
  }
  .banner-images .banner-left-images img, .banner-images .banner-right-images img{
    max-width: 100px;
  }
  .banner-images .banner-left-images .banner-left-bottom-images img{
    max-width: 60%;
  }
}
/* New Changes in Mobile End */
.footerList .f-link.active, .footerBottomLinks .f-link.active {
    color: #ffffff;
}

/* Cookie Popup S*/
.cookie_popup {
  position: fixed;
  bottom: 15px;
  left: 15px;
  background-color: rgb(30 31 31 / 80%);
  padding: 20px;
  border-radius: 10px;
  z-index: 99999;
  width: 475px;
  filter: drop-shadow(2px 4px 6px black);
}

.cookie_popup .cookie_content p {
  color: #fff;
  line-height: 150%;
}

.cookie_popup .cookie_btns a {
  padding: 10px 20px;
}

@media(max-width:479px) {
  .cookie_popup {
    left: 0;
    padding: 15px;
    width: 95%;
    margin: 0 auto;
    right: 0;
  }
  .cookie_popup p{
    font-size: 14px;
  }
}

/* Cookie Popup E*/
.banner-images .banner-main-image .bannerOverlay.noOverLay:before{
  content: none;
}
.cursor-default{
  cursor: default !important;
}
a.cursor-default:hover{color: inherit !important;}