/*--font-family: "Mulish", sans-serif;--*/
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
/*-- font-family: "Source Sans 3", sans-serif;--*/
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
/*--font-family: "Roboto", sans-serif;--*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*----*/
:root {
    --simple-blue-color: #0C7BAB;
    --simple-orange-color: #e05200;
    --simple-light-orange-color: #ffae00;
    --simple-gray-color: #2C3B42;
    --simple-thmgray-color:#475569;
    --simple-yallow-color: #FFCA00;
    --simple-lgray-color: #536A75;
    --simple-mgray-color: #e3e8ec;
    --simple-dark-blue-color: #003A52;
    --simple-blue-grad-color: linear-gradient(90deg, rgb(12 123 171) 0%, rgb(0 91 131) 100%);
    --simple-orange-grad-color: linear-gradient(90deg, rgb(255 104 16) 0%, #e05200 100%);
    --bs-container-sm: 600px;
    --bs-container-md: 800px;
    --bs-container-lg: 1000px;
    --bs-container-xl: 1200px;
    --bs-container-xxl: 1400px;
  }
/*====== STYLES GENERALES ==========*/
body {
    padding: 0;
    margin: 0;
    color:#000000;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5rem;
    font-family: "Source Sans 3", sans-serif;
	font-style: normal;
}
h1,h2,h3,h4,h5,h6 {
  color: var(--simple-black-color);
}
a {
  color: var(--simple-blue-color);
  transition: all .3s ease;
  text-decoration: none;
}
a:hover {
  color: var(--simple-orange-color);
  text-decoration: none;
}
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
hr.tmHrB {
    margin: 1rem 0;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
    color: var(--simple-blue-color);
}
hr.tmHrO {
    margin: 1rem 0;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
    color: var(--simple-orange-color);
}
hr.tmHrG {
    margin: 1rem 0;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .15;
    color: var(--simple-lgray-color);
}
/*---//---*/
/*==============================================
 THEME STYLES START
================================================*/
/*-- THEME BUTTONS--*/
.btn{
    padding: 0.5rem 1rem;
    border-radius: 8px;
    --bs-btn-line-height: unset;
    font-size: 1.05rem;
    transition: all .3s ease;
    font-weight: 600;
}
.btn:hover .rotate-45 {
    transform: rotate(90deg);
}
.btn-sm{
	padding: 0.35rem 0.95rem!important;
	font-size: 0.925rem;
}
.linkText{
	color: var(--simple-orange-color);
	padding-bottom: 0;
	font-size: 1.15rem;
	font-weight: 700;
	text-decoration: none;
	transition: all .3s ease;
	/*border-bottom: 1px solid;*/
	width: fit-content;
}
.linkText:hover{
	opacity:0.8;
}
.linkText:hover .rotate-45 {
    transform: rotate(90deg);
}
.linkText2 {
    color: var(--simple-orange-color);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    border-bottom: 1px solid;
    width: fit-content;
    border: 1px solid;
    padding: 0.85rem 2.25rem;
    border-radius: 50rem;
}
.linkText2:hover {
    opacity: 1;
    background: rgb(0 0 0 / 25%);
}
.linkText2:hover .rotate-45 {
    transform: rotate(90deg);
}
.btn-animated {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn-animated::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15); /* Adjust opacity and color */
    z-index: -1;
    transition: left 0.5s ease; /* Smooth animation */
}
.btn-animated:hover::before {
	left: 0; /* Move from left to right */
}
/*--Orange--*/
.btn-tmOrng {
    background: var(--simple-orange-color)!important;
    border-color: var(--simple-orange-color)!important;
    color: #fff!important;
}
.btn-tmOrng:hover{
    background: #ce4c00!important;
	border-color: #ce4c00!important;
    color: #fff!important;
}
.btn-tmOrng:focus{
    background: #ce4c00!important;
	border-color: #ce4c00!important;
    color: #fff!important;
    box-shadow: 0 0 0 0.2rem rgb(255 73 73 / 0.25);
}
.btn-grdnt-tmOrng {
    background: var(--simple-orange-grad-color)!important;
    border-color: var(--simple-orange-grad-color)!important;
    color: #fff!important;
	border:unset;	
}
.btn-grdnt-tmOrng:hover{
    background: #ce4c00!important;
	border-color: #ce4c00!important;
    color: #fff!important;
}
.btn-grdnt-tmOrng:focus{
    background: #ce4c00!important;
    border-color: #ce4c00!important;
    color: #fff!important;
    box-shadow: 0 0 0 0.2rem rgb(224 82 0 / 25%);
}

.btn-outline-tmOrng{
    background: transparent;
    border-color: var(--simple-orange-color)!important;
    color: var(--simple-orange-color)!important;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn-outline-tmOrng:hover{
    color: #fff!important;
}
.btn-outline-tmOrng:focus{
    background: var(--simple-orange-color)!important;
    border-color: var(--simple-orange-color)!important;
    color: #fff!important;
    box-shadow: 0 0 0 0.2rem rgb(243 111 33 / 0.25);
}
.btn-outline-tmOrng::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--simple-orange-color)!important; /* Adjust opacity and color */
    z-index: -1;
    transition: left 0.5s ease; /* Smooth animation */
}
.btn-outline-tmOrng:hover::before {
	left: 0; /* Move from left to right */
}
/*--Blue--*/
.btn-tmBlue {
    background: var(--simple-blue-color)!important;
    border-color: var(--simple-blue-color)!important;
    color: #fff!important;
}
.btn-tmBlue:hover{
    background: #0370a0!important;
	border-color: #0370a0!important;
    color: #fff!important;
}
.btn-tmBlue:focus{
    background: #0370a0!important;
	border-color: #0370a0!important;
    color: #fff!important;
    box-shadow: 0 0 0 0.2rem rgb(0 149 218 / 0.25);
}
.btn-tmLblue {
    background: #15A5DF!important;
    border-color: #15A5DF!important;
    color: #fff!important;
}
.btn-tmLblue:hover{
    background: #0093CD!important;
	border-color: #0093CD!important;
    color: #fff!important;
}
.btn-tmLblue:focus{
	border-color: #0093CD!important;
	border-color: #0093CD!important;
    color: #fff!important;
    box-shadow: 0 0 0 0.2rem rgb(0 149 218 / 0.25);
}
.btn-grdnt-tmBlue {
    background: var(--simple-blue-grad-color)!important;
    border-color: var(--simple-blue-grad-color)!important;
    color: #fff!important;
	border:unset;
}
.btn-grdnt-tmBlue:hover{
    background: #0370a0!important;
	border-color: #0370a0!important;
    color: #fff!important;
}
.btn-grdnt-tmBlue:focus{
    background: #0370a0!important;
	border-color: #0370a0!important;
    color: #fff!important;
    box-shadow: 0 0 0 0.2rem rgb(0 149 218 / 0.25);
}
.btn-outline-tmBlue {
    background: transparent;
    border-color: var(--simple-blue-color)!important;
    color: var(--simple-blue-color)!important;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn-outline-tmBlue:hover{
    color: #fff!important;
}
.btn-outline-tmBlue:focus{
    background: var(--simple-blue-color)!important;
	border-color: var(--simple-blue-color)!important;
    color: #fff!important;
    box-shadow: 0 0 0 0.2rem rgb(0 149 218 / 0.25);
}
.btn-outline-tmBlue::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--simple-blue-color)!important; /* Adjust opacity and color */
    z-index: -1;
    transition: left 0.5s ease; /* Smooth animation */
}
.btn-outline-tmBlue:hover::before {
	left: 0; /* Move from left to right */
}
/*--White Btn--*/
.btn-tmWhite {
    background: #fff!important;
    border-color: #fff!important;
    color: #000!important;
}
.btn-tmWhite:hover{
    /* background: rgb(255 255 255 / 60%) !important; */
    border-color: rgb(255 255 255 / 60%) !important;
    /* color: var(--simple-blue-color)!important; */
    color:#000 !important;
}
.btn-tmWhite:focus{
    background: rgb(255 255 255 / 60%) !important;
    border-color: rgb(255 255 255 / 60%) !important;
      color: var(--simple-blue-color)!important;
    box-shadow: 0 0 0 0.2rem rgb(0 149 218 / 0.25);
}
.btn-outline-white {
    background: transparent;
    border-color: #fff!important;
    color: #fff!important;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn-outline-white:hover{
    background: #fff!important;
	border-color: #fff!important;
    color: #000!important;
}
.btn-outline-white:focus{
    background: #fff!important;
	border-color: #fff!important;
    color: #000!important;
    box-shadow: 0 0 0 0.2rem rgb(0 149 218 / 0.25);
}
.btn-outline-white::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff!important;
    z-index: -1;
    transition: left 0.5s ease; /* Smooth animation */
}
.btn-outline-white:hover::before {
	left: 0; /* Move from left to right */
}


/*--black Btn--*/
.btn-tmBlack {
    background: #000!important;
    border-color: #000!important;
    color: #fff!important;
}
.btn-tmBlack:hover{
    background: rgb(255 255 255 / 60%) !important;
    border-color: rgb(255 255 255 / 60%) !important;
    color: var(--simple-blue-color)!important;
}
.btn-tmBlack:focus{
    background: rgb(255 255 255 / 60%) !important;
    border-color: rgb(255 255 255 / 60%) !important;
      color: var(--simple-blue-color)!important;
    box-shadow: 0 0 0 0.2rem rgb(0 149 218 / 0.25);
}
.btn-outline-black {
    background: transparent;
    border-color: #000!important;
    color: #000!important;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn-outline-black:hover{
    background: #000 !important;
	border-color: #000!important;
    color: #fff!important;
}
.btn-outline-black:focus{
    background: #000!important;
	border-color: #000!important;
    color: #fff!important;
    box-shadow: 0 0 0 0.2rem rgb(0 149 218 / 0.25);
}
.btn-outline-black::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000!important;
    z-index: -1;
    transition: left 0.5s ease; /* Smooth animation */
}
.btn-outline-black:hover::before {
	left: 0; /* Move from left to right */
}



/* yellow btn */
.btn-outline-tmyallow{
    background: transparent;
    border-color: var(--simple-light-orange-color)!important;
    color: var(--simple-light-orange-color)!important;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn-outline-tmyallow:hover{
    color: #fff!important;
    
}



.btn-close {
    --bs-btn-close-color: #000;
    --bs-btn-close-bg: url(../img/close-btn-black.svg)!important;
}
.btn-close.whiteCls {
    --bs-btn-close-color: #fff;
    --bs-btn-close-bg: url(../img/close-btn-white.svg)!important;
}


.indexVideo {
    border-radius: 16px;
    background: #000000;
    padding: 10px 10px 0px;
}


#videoModal .btn-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 50%;
}
/*======= THEME GENERALES STYLES ==============*/
.text-themBlue{
	color:var(--simple-blue-color)!important;
}
.text-themOrng{
	color: var(--simple-orange-color) !important;
}
.text-themGray{
	color:var(--simple-gray-color)!important;
}
.text-themXLGray{
    color:var(--simple-thmgray-color) !important;
}
.text-themLgray{
	color: var(--simple-lgray-color) !important;
}
.text-themYallow{
	color:var(--simple-yallow-color)!important;
}
.text-themDarkBlue{
    color: var(--simple-dark-blue-color) !important;
}
.bg-themBlue{
	background: #005980 !important;
}
.bg-themOrng{
	background:var(--simple-orange-color)!important;
}
.bg-themGary{
	background:var(--simple-lgray-color)!important;
}
.bg-themLblue{
	background:#F0FAFF!important;
}
.bg-themLorng{
	background:#FFF9F5!important;
}
.bg-themLgary{
	background:#F6F9FC!important;
}
.bg-themMgary{
	background:var(--simple-mgray-color)!important;
}
/*=============== HEADER SECTION ===============*/
.theme-header {
    position: fixed;
    right: 0;
    left: 0;
    display: block;
    z-index: 999;
    width: 100%;
    color: #083857;
    background: #fff;
    box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
}
/*--Announcement Wrapper--*/
.announcementWrapr{
	background-color: var(--simple-mgray-color);
	position: sticky;
	inset: 0px;
	z-index: 100;
	display: block;
	height: auto;
	min-height: 3px;
}
.announcementWrapr .alert{
	color: var(--simple-dark-blue-color);
	margin-bottom:0px;
	padding: 8px;
	font-weight: 600;
	text-align: center;
	font-size: 1.1rem;
}
.announcementWrapr .hlTxt {
    background: var(--simple-dark-blue-color);
    padding: 0 7px;
    border-radius: 7px;
    color: #fff;
    font-weight: 600;
}
.announcementWrapr .alert-dismissible a {
    color: var(--simple-orange-color);
    text-decoration: none;
    margin-left: 5px;
    font-weight: 700;
}
.announcementWrapr.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 0.75rem;
    opacity: 1;
    background: transparent var(--bs-btn-close-bg) center/0.8em auto no-repeat;
}
.announcementWrapr .alert-dismissible .btn-close:focus {
    box-shadow: none;
}
.rotate-45 {
    transform: rotate(45deg);
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
}
.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 0.815rem;
    font-size: 0.925rem!important;
}

/*--Navebar Menu Section--*/
.theme-header .menu-hdr{
	background-color: #ffffff;
	padding: 0;
}
.menu-hdr .navbar-brand {
	padding: 0;
}
.menu-hdr .navbar-brand img {
	height: 50px;
}
.menu-hdr .nav-link{
	color: #000000;
	padding: 1.5rem 0.75rem!important;
	font-size: 1.05rem;
	border-bottom: 3px solid transparent;
	font-weight: 600;
}
.menu-hdr .nav-link.show{
	color: #000000;
}
.menu-hdr .nav-link.active,
.menu-hdr .nav-link:hover{
	color: var(--simple-blue-color) !important;
	font-weight: 600;
}
.menu-hdr .nav-item.dropdown.dropdown-mega .dropdown-menu {
    width: 100%;
    top: auto;
    left: 0;
    height: auto;
    overflow-y: scroll;
}
.menu-hdr .nav-item.dropdown:hover .dropdown-menu,
.menu-hdr .nav-item.dropdown.dropdown-mega:hover .dropdown-menu {
    display: block;
    -webkit-animation: slide-down .3s ease-out;
    -moz-animation: slide-down .3s ease-out;
}
@-webkit-keyframes slide-down {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-10%)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0)
	}
}

@-moz-keyframes slide-down {
	0% {
		opacity: 0;
		-moz-transform: translateY(-10%)
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0)
	}
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.menu-hdr .dropdown-menu.show {
  -webkit-animation: fadeIn 0.3s alternate;
  /* Safari 4.0 - 8.0 */
  animation: fadeIn 0.3s alternate;
}
.menu-hdr .dropdown-menu{
  /* border-top: 2px solid #536A75; */
  margin-top: 0px;
  min-width: 240px;
  border-radius: 0;
}
.menu-hdr .dropdown-item.active, 
.menu-hdr .dropdown-item:active {
    color: #000000 !important;
    text-decoration: none !important;
    background-color: #f8f9fa !important;
} 
.menu-hdr .dropdown-item {
    border-bottom: 1px dashed #ddd;
    padding: 0.75rem;
    font-weight: 600;
    color: #000000;
}
.menu-hdr .dropdown-item:hover {
    color:var(--simple-blue-color)!important;
}
.mega-content {
    padding: 0 1.25rem;
}
.mega-content .mc-title {
    color: var(--simple-gray-color);
    font-size: 1.75rem;
    padding-bottom: 5px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: capitalize;
}
.mega-content .mc-box {
    display:flex;
    /* cursor: pointer; */
    text-decoration: none;
    border: 1px solid #dde3e7;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    border-top: 4px solid #dde3e7;
}
.mega-content .mc-box:hover {
    border: 1px solid var(--simple-blue-color);
    padding: 10px;
    border-radius: 10px;
    background: #def5ff;
    border-top: 4px solid var(--simple-blue-color);
}
.mega-content .mc-box:hover .icon i {
    color: var(--simple-blue-color);
	background: #fff;
}
.mega-content .mc-box:hover .mc-subtitle a { 
    color: var(--simple-blue-color);
}
.mc-subtitle {
	font-weight: 500;
	margin-bottom:0;
	font-size: 1.15rem;
	color: #2C3B42;
	text-decoration: none;
}
.mc-list {
    min-height: 45px;
}
.mega-content .mc-subtitle a {
	font-size: 1.25rem;
	line-height: 1;
	margin-bottom: 10px;
	color: #000000;
	text-decoration: none;
	font-weight: 600;
	display: block;
}
.mega-content .mc-menu:hover  .mc-subtitle a{
	color: #e05200;
}
.mega-content .mc-menu.active .mc-subtitle a{
	color: #e05200;
}
.mega-content .mc-subtitle a i{
	font-size: 0.55rem;
	color: #0c7bab;
	margin-right:5px;
	vertical-align: middle;
}
.mega-content .icon i {
	display: block;
	color: #2C3B42;
	background: #edf1f3;
	padding: 12px 8px;
	border-radius: 8px;
	width: 42px;
	height: 42px;
	font-size: 18px;
	text-align: center;
	margin-right: 12px;
}
.mega-content .dt-icon i {
	position:relative;
}
.mega-content .dt-icon i span {
	color: #fff;
    font-size: 0.425rem;
    position: absolute;
    left: 17px;
    top: 20px;
    letter-spacing: 1px;
}
.mega-content .mc-list li {
	font-size: 0.95rem;
	line-height: 1.25rem;
	margin-bottom: 5px;
	color: #536A75;
}
.menu-hdr .navbar-toggler {
    position: absolute;
    right: 0.35rem;
    top: 0.35rem;
    border-color: #0095da;
    padding: 6px 10px;
    background: #fff;
    color: #0095da !important;
    font-size: 1.1rem;
}
.menu-hdr .navbar-toggler:focus {
	text-decoration: none;
	outline: 0;
	box-shadow:unset;
}
.menu-hdr .close-toggler {
    position: absolute;
    right: 0.75rem;
    top: 0.75rem;
    border: 1px solid #e05200;
    padding: 6px 10px!important;
	background: #fff;
    color: #e05200!important;
    font-size: 1.1rem;
    z-index:9999;
    line-height: 1rem;
    border-radius: 5px;
}
.menu-hdr .content-item {
  padding: 10px;
  background-color: #9BDDFA;
  border: 1px solid #9BDDFA;
  margin-bottom: 10px;
  border-radius: 10px;
}
.menu-hdr .content-item .tagLine {
    font-size: 1.35rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.25;
    color: var(--simple-dark-blue-color);
    margin-bottom: 10px;
}
.supportInfo {
    font-size: 1.0rem;
    font-weight: 600;
    line-height: 1.35rem;
    margin-right: 10px;
    color:#000;
    padding: 0.75rem 0 !important;
    text-align: left;
}
.supportInfo span{
	display:block;
}
.supportInfo a{
	color:#000;
}
.supportInfo a:hover{
	color:var(--simple-orange-color)!important;
}
/*--Page Main Content --*/
.mainContent {
    padding-top: 75px;
}
/*--Hero Banner Wrapper--*/
.heroBanner {
	width: 100%;
	
	
	/* background-image: url(../img/indexBaner-bg.svg);
	 background-position: top right;
    background-color: #003A52;
	background-size: cover;
	background-repeat: no-repeat; */
	


    color: #ffffff;
    padding: 5.5rem 0;
    background-image: url(../img/indexBaner-bg.svg);
    background-position: top right;
    background-color: #003A52;
    background-size: cover;
    background-repeat: no-repeat;

}
.heroBanner .container {
  position: relative;
}
.heroBanner h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 30px;
}
.heroBanner .subTitle {
    background: var(--simple-blue-color);
    color: var(--bs-white);
    padding: 7px 12px 7px 6px;
    width: max-content;
    border-radius: 4px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}
.heroBanner .subTitle i {
   
font-size: 0.95rem;
}
.heroBanner p {
  margin: 0px 0 30px 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

.clientLogoSec .title {
    font-size: 1.75rem;
    line-height: 2.15rem;
    font-weight: 600;
    text-align: center;
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
}

.feature-card{
    background: #fff;
    margin-bottom: 20px;
    align-items: flex-start;
    border-radius: 15px;
    padding: 30px 30px;
    box-shadow: rgba(0, 0, 0, 0.075) 0px 2px 4px 0px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
   
}
.feature-icon{
    width: 70px;
    height: 70px;
    padding: 20px;
    border-radius: 12px;
    background-color: #fff;
    margin-bottom: 30px;
}


.bg-soft-1{
background-color: #E6F5FC !important;
}
.bg-soft-2{
background-color: #FFEFE9 !important;
}
.bg-soft-3{
background-color: #F5F3FF !important;
}
.bg-soft-4{
     background: #e8f3ee !important;
}
.bg-soft-5{
     background: #fff5d5 !important;
}
.bg-soft-6{
     background: #fbeaec !important;
}

.bg-soft--1{
    color:#005D82;
}
.bg-soft--2{
    color:#F15A24;
}
.bg-soft--3{
    color:#5545AE;
}
.feature-card h5{
 font-size: 1.625rem;
 margin-bottom: 16px;
 font-weight: 600;
}
.feature-card p{
    font-size: 18px;
    margin-bottom: 0;
}


/* client partner Start */

.slick-slide {
  margin: 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;


}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

/*  marquee start */

.clientLogoSec .logo-marquee {
    position: relative;
    height: 60px;
}

.logo-marquee .lm-container {
    /* mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 15%, rgb(0, 0, 0) 85%, rgba(255, 255, 255, 0) 100%); */
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: 0;
    overflow-x: hidden !important;
    display: flex !important;
    flex-direction: row !important;
    position: relative;
    width: 100%;
}
.logo-marquee .lm-container .marquee
 {
    flex: 0 0 auto;
    min-width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    /* animation: scroll 45s linear 0s infinite; */
    animation: scroll 400s linear infinite;
    animation-play-state: running;
    animation-delay: 0s;
    animation-direction: normal;
    padding: 20px 0 0;
}

.marquee .cllogos {
    display: flex;
    gap: 50px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    /* -webkit-filter: invert(1); */
    /* filter: invert(1); */
}

.marquee .cllogos img {
    height: auto;
    position: relative;
    width: 135px;
    overflow-y: hidden;
    /* opacity: 0.55; */
}
/* client partner END */


.section-banner{
    background-image: url(../img/indexSec-img-01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
    text-align: center;
}


/* start */
.theme2 {
    background: #002f43;
    padding: 25px;
    border-radius: 25px;
    color: #fff;
    height: 100%;
}
.theme2 .ficIcon i {
    background: var(--simple-blue-color) !important;
    color: #fff !important;
    margin-right: 0 !important;
    margin-bottom: 20px !important;
}
.featureInfoCard .ficIcon i {
    width: 50px;
    height: 50px;
    background: #d4f0fc;
    margin-right: 20px;
    border-radius: 150px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--simple-blue-color);
    font-weight: 600;
}
.featureInfoCard .ficCont .title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.theme2 .ficCont p {
    color: rgb(255 255 255 / 85%) !important;
    font-weight: 400;
}

.featureInfoCard .ficCont p {
    font-size: 1.1rem;
    line-height: 1.45rem;
    color: var(--simple-lgray-color);
}
/* end */


/* start one platform category START */
.categoryCard {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 0px 10px 2px #e9ecf0;
    height: 100%;
    /* transition: transform .2s ease-in-out, border-color .2s ease-in-out, background-color .2s ease-in-out, box-shadow .2s ease-in-out; */
}

.categoryCard img, .categoryCardMore img {
    width: 55px;
    margin-bottom: 1.0rem;
    min-height: 65px;
}

.categoryCard .categTitle, .categoryCardMore .categTitle {
    font-size: 1.25rem;
    margin-bottom: 1.0rem;
    min-height: 1.75rem;
    display: flex;
    align-items: center;
    width: 100%;
    font-weight: 600;
}
/* END */


/* Testmonial START */
.testimonialCard .headTxt {
    color: var(--simple-yallow-color) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.15rem;
    margin-bottom: 45px;
    position: relative;
    padding-bottom: 5px;
}
.testimonialCard {
    background: #014f70;
    border-radius: 8px;
    overflow: hidden;
    padding: 30px 80px 0px 0px;
    position: relative;
}
.testimonialCard i {
    font-size: 5rem;
    color: #0c7bac;
    line-height: 4.5rem;
    position: absolute;
    top: 35px;
    right: 50px;
}
.testimonialCard .subTxt {
    color: #fff;
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 15px;
}
.testimonialCard p {
    color: #fff;
    font-size: 1.15rem;
}
.owl-theme.owlCarousel-Two .owl-dots .owl-dot.active span, .owl-theme.owlCarousel-Two .owl-dots .owl-dot:hover span {
    background-color: var(--simple-orange-color);
}
.owl-theme.owlCarousel-Two .owl-nav.disabled+.owl-dots {
    z-index: 9999;
    position: relative;
    text-align: left;
}
/* Testmonial END */

/* pricing START */



.newPriceCardV2 {
    background: #fff;
    border: 2px solid #cad2d6;
    border-radius: 25px;
    padding: 20px;
    position: relative;
    height: 100%;
}

.newPriceCardV2 .pcIcon {
    background: #f1f5f7;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.25rem;
}

.pcPopular .pcIcon {
    background: #e3f9f2 !important;
}

.newPriceCardV2 .pcTitle {
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 1.45rem;
    margin-bottom: 1.25rem;
}
.newPriceCardV2 .pcAamount {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 2.5rem;
}
.newPriceCardV2 .pcInfo {
    font-size: 0.925rem;
    line-height: 1.15rem;
    font-weight: 400;
    color: var(--simple-lgray-color);
}
.pcFeatures-list {
    min-height: 160px;
}

.newPriceCardV2 .pcFeatures-list li {
    position: relative;
    font-size: 16px;
    line-height: 1.25rem;
    margin-bottom: 0.75rem;
 
    color: #000;
}

.pcTag {
    position: absolute;
    right: 0px;
    top: 0px;
    background: #13b782;
    color: #ffffff;
    padding: 6px 25px;
    border-radius: 0 20px;
    font-size: 0.925rem;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}
.newPriceCardV2 .pcAamount sup {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--simple-lgray-color);
}

.btn-tmGren-light {
    color: #13b782;
    background-color: #e3f9f2;
    border-color: #e3f9f2;
    font-weight: 500;
}
.btn-tmGren-light:hover {
    color: #e3f9f2;
    background-color: #13b782;
    border-color: #13b782;
}

.pcBtnsec {
    display: grid !important;
    width: 85%;
    left: 0;
    right: 0;
    bottom: 20px;
    margin: 0 auto;
}


.pcPopular {
    border: 2px solid #13b782 !important;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1) !important;
}



/* pricing END */




/* testimonial START */
  

/* END */


.announcementInfo {
    background-color: var(--simple-blue-color);
    position: sticky;
    inset: 0px;
    z-index: 100;
    display: block;
    height: auto;
    min-height: 3px;
}
.announcementInfo .alert {
    color: #ffffff;
    margin-bottom: 0px;
    padding: 8px;
    font-weight: 500;
    text-align: center;
    font-size: 1.15rem;
}
.announcementInfo.hlTxt {
    background: var(--simple-orange-color);
    padding: 0 7px;
    border-radius: 7px;
    color: #fff;
    font-weight: 600;
}
.announcementInfo .alert-dismissible a {
    color: #ffffff !important;
    text-decoration: none;
    margin-left: 5px;
    font-weight: 700;
}

.announcementInfo .hlTxt {
    background: var(--simple-orange-color);
    padding: 4px 8px;
    border-radius: 7px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.btn-close.whiteCls {
    --bs-btn-close-color: #fff;
    --bs-btn-close-bg: url(../img/close-btn-white.svg) !important;
}
/* contact Form START */
.contact-info {
    min-height: 100%;
    background:  url(../img/indexSec-img-04.svg) center / cover no-repeat;
    color: #fff;
    padding: 30px;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

 .contact-card {
    border: 1px solid #d4dde2;
   
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.05);
}

.contact-info h3{
    color: var(--simple-blue-color);
    font-size: 42px;
        line-height: 1.25;
}

.contact-para div{
    color:#75b4cf !important;
}
.contact-info p{
   
    font-size: 20px;
        line-height: 1.625;
}

.contact-box-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    margin-right: 0.4rem;

}

.contact-form-pane {
    padding: 32px;
    /* background: #fff; */
}
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
.form-control {
    /* min-height: 50px; */
    border-radius: 8px;
    border-color: #d0d5dd;
    box-shadow: none !important;
    display: block;
    width: 100%;
    padding: .575rem .95rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;

}

.form-select{
    min-height: 50px;
    border-radius: 8px;
    border-color: #d0d5dd;
    box-shadow: none !important;
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;

}
/* conrtact Form END */
/* footer START */

.back-to-top.show {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: var(--simple-orange-color);
    color: #fff;
    box-shadow: 0 16px 25px rgb(182 82 5 / 30%);
    display: none;
    z-index: 1030;
}

/*  old footer */

.footer-sec{
    background:#2c3b42;
    color: white;
    padding: 3rem 0 2rem;
}
.footer-brand {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.footer-text {
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 18px;
}
.footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    margin-right: 0.4rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
    opacity: 0.7;
}

/* end */

/* footer START */
.footerSec{
    background-color: #2c3b42; color:#fff
}
.footerSec .logo {
    height: 50px;
    margin-bottom: 20px;
}

.footerSec .info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: 
 color-mix(in srgb, #000000, transparent 85%);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
}

.footerSec .info-card .card-icon {
    width: 46px;
    height: 46px;
    background: #ffffff;
    color: var(--simple-dark-blue-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footerSec .info-card .card-content {
    flex: 1;
}
.footerSec .info-card .card-content h4 {
    font-size: .85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
    opacity: 0.75;
}
.footerSec .info-card .card-content p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.35;
    font-weight: 600;
}
.footerSec .info-card .card-icon i {
    font-size: 20px;
    line-height: 2;
}
/* END */
/* footer END */

/*------ Section Styles ------*/
.sectionMarg{
	margin:60px 0;
}
.sectionPadg{
	padding:60px 0;
}
.sectionTitle {
    margin-bottom: 1.75rem;
}
.sectionTitle .infoCont {
    font-size: 1.35rem;
    font-weight: 400;
}
.sectionTitle .mainHeading {
    font-size: 2.15rem;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 2.5rem;
}
.sectionTitle .subHeading {
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 1.35rem;
    letter-spacing: 1px;
    font-weight: 700;
}
.sectionTitle .subHeading2 {
    margin-bottom: 5px;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.35;
}
.sectionContent p {
    font-size: 1.25rem;
    line-height: 1.25;
}
.ms-6 {
    margin-left: 2.15rem !important;
}
/*--Point List Section Styles--*/
.pointListSec ul {
    padding-inline-start: 33px;
}
.pointListSec ul li {
    position: relative;
    font-size: 1.15rem;
    line-height: 1.75rem;
    margin-bottom: 1.0rem;
}
.pointListSec ul li::after {
    content: '';
    display: inline-block;
    height: 22px;
    width: 22px;
    background-image: url(../img/tick-bult-00.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: -33px;
    position: absolute;
    left: 0;
    top: 4px;
}
.pointListSec.tick1 ul li::after  {
    background-image: url(../img/tick-bult-01.svg)!important;
}
.pointListSec.tick2 ul li::after  {
    background-image: url(../img/tick-bult-02.svg)!important;
}
.pointListSec.tick3 ul li::after  {
    background-image: url(../img/tick-bult-03.svg)!important;
}
.pointListSec.tick4 ul li::after  {
    background-image: url(../img/tick-bult-04.svg)!important;
}
/*---Filing Steps Styles--*/

.steps-link {
    border-left: 1px solid #c0cfd6;
    padding: 20px 30px;
    border-radius: 0;
    line-height: 1.3;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    text-align: center;
    height: 100%;
    align-items: center;
    border-top: 3px solid #f0faff;
}
.steps-link.active{
    background-color: #ffffff;
    color: var(--simple-blue-color);
    font-weight: 600;
    border-top: 3px solid var(--simple-blue-color);
}
.steps-link span {
    width: 90%;
    display: block;
    margin: 0 auto;
    font-weight: 600;
    font-size: 1.15rem;
}
.owlCarousel-slider .item{
    text-align: center;
    margin-top: 60px;
}
.slider-cont .title{
	font-size: 2.05rem;
	margin-top: 0;
	margin-bottom: .25rem;
	font-weight: 600;
	line-height: 1.2;
	color: #000;
}
.slider-cont .subtitle{
	margin-top: 0;
	margin-bottom: 1.75rem;
	font-size: 1.15rem;
	font-weight: 500;
}
.slider-imag {
    display: block;
    margin: 0 auto -12px;
    width: 70%;
    height: auto;
    border: 7px solid #000000;
    border-bottom: unset;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
    background: #014f70;
}
.slider-imag img{
    border-radius: 15px 15px 0 0;
}
.owl-theme.owlCarousel-slider .owl-nav.disabled+.owl-dots {
    margin-top: -29px;
    z-index: 9999;
    position: relative;
}
.owl-theme.owlCarousel-slider .owl-dots .owl-dot span{
    margin: 6px 4px;
    width: 16px;
    height: 10px;
}
.owl-theme.owlCarousel-slider .owl-dots .owl-dot.active span, 
.owl-theme.owlCarousel-slider .owl-dots .owl-dot:hover span{
    background-color: var(--simple-orange-color);
}


/*---//--*/
.taxInfo-wrap1{
	background: #fff;
	border: 1px solid #DFE1ED;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	border-radius: 15px;
	padding: 20px 30px;
	gap: 20px;
	box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease-out 0s;
	height: 100%;
}
.taxInfo-wrap1:hover {
    transform: translateY(-5px);
}
.taxInfo-wrap1 .tiw-icon{
    position: relative;
    width: 64px;
    z-index: 1;
}
.taxInfo-wrap1 .tiw-icon img{
    width: 56px;
    height: 56px;
}
.taxInfo-wrap1 .tiw-icon::before {
    content: "";
    position: absolute;
    left: -15px;
    top: -15px;
    width: 54px;
    height: 54px;
    background: #ebf1f8;
    border-radius: 100px;
    z-index: -1;
}
.taxInfo-wrap1 .tiw-content .tiw-title {
    margin-bottom: 5px;
    font-size: 1.35rem;
    font-weight: 700;
}
.taxInfo-wrap1 .tiw-content P {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.25;
}
/*---//--*/

.infoIconCard {
    padding: 25px;
    background: #f0faff;
    border-radius: 15px;
    border: 1px solid #d5e9f3;
    height: 100%;
}
.infoIconCard .head{
    display: flex;
    align-items: center;
	margin-bottom:15px;
}
.infoIconCard .head .cardImage {
    width: 78px;
    height: 78px;
    background: #ffffff;
    padding: 15px;
    margin-right: 20px;
    border-radius: 12px;
}
.infoIconCard .head .cardTitle {
    font-size: 1.35rem;
    line-height: 1.55rem;
    font-weight: 600;
}
.infoIconCard .body p{
    font-size: 1.15rem;
    line-height: 1.65rem;
    margin-bottom: 0;
}
/*---//--*/


#faqAccordion .accordion-item{
    margin-bottom: 1rem;
    background-color: #f4fcff;
    border-radius: 15px;
    border: none;
    border: 1px solid #d4dde2;
    transition: border-color 0.5s ease-in-out;
    margin-bottom: 24px;
}
#faqAccordion .accordion-item:has(.accordion-collapse.show) {
    border: 1px solid #d4dde2;
    position: relative;
}
#faqAccordion .accordion-body{
	font-size: 1.15rem;
}
#faqAccordion .accordion-button {
    background-color: #ffffff;
    border-radius: 15px;
    border: none;
    font-size: 1.25rem;
    font-weight: 600;
    position: relative;
}
#faqAccordion .accordion-button:not(.collapsed) {
    background-color: #f4fcff;
    color: #000;
    box-shadow: none;
    border: none;
}
#faqAccordion .accordion-item:not(:first-of-type) {
    border-top: 1px solid #d4dde2;
}
#faqAccordion .accordion-item:not(:last-of-type) {
    border-bottom: 1px solid #d4dde2;
}
#faqAccordion .accordion-item:last-of-type, #faqAccordion .accordion-item:first-of-type,
#faqAccordion .accordion-item:first-of-type>#faqAccordion .accordion-header #faqAccordion .accordion-button,
#faqAccordion .accordion-item:last-of-type>#faqAccordion .accordion-header #faqAccordion .accordion-button.collapsed{
    border-radius: 15px;
}
#faqAccordion .accordion-button::after {
    content: "\f067";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
    background: none;
    color: var(--simple-blue-color);
    border: 1px solid;
    border-radius: 30px;
    padding: 8px 10px;
    width: auto;
    height: auto;
    font-size: 1rem;
}
#faqAccordion .accordion-button:not(.collapsed)::after {
    content: "\f068"; /* Unicode for Font Awesome minus icon */
    background: none;
    color: #a2b0b8;
}
#faqAccordion ul{   
	list-style: disc;   
	padding-left: 20px;
}
#faqAccordion ul li{   
	line-height: 1.25rem;   
	margin-bottom: 14px;
}
/*------*/

.ctaSection-des1 {
    background-color: #014f70 !important;
    /* background-image: url(../img/indexSec-bg.svg); */
    background-image: url(../img/botInfo-banner01.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 25px;
    padding: 2.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    z-index:0;
}
/*------*/



/* saravanan css 10/04/2026 START */
.heroCaption{
    background-color: #00699e;
    color: #fff;
    display: inline-block;
    padding: 4px 12px;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 1.15px;
    margin-bottom: 12px;

}

.pgTitleBanner .breadcrumb {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0px;
}


.pgTitleBanner .breadcrumb .breadcrumb-item a {
    color: #00aaf4;
}
.pgTitleBanner .breadcrumb .breadcrumb-item.active {
    color: rgb(255 255 255 / 50%);
}
.pgTitleBanner .breadcrumb-item+.breadcrumb-item::before {
    color: rgb(255 255 255 / 50%);
}

.pgTitleBanner{
    color: #ffffff;
    padding: 2.5rem 0;
    background-color: #003A52;
    position: relative;
    overflow: hidden;
    z-index: 0;
    min-height: 165px;
    }

    .pgTitleBanner:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -5px;
    background: url(../img/bg-abstrDes1.svg) no-repeat left bottom;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.4;
    min-height: 350px;
}

.guaranteedCard {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 150px;
}

.guaranteedCard .infoText {
    font-size: 1.85rem;
    margin-bottom: 0;
    font-weight: 600;
    line-height: 2.35rem;
    color: #ffffff;
}

.guaranteedCard .infoText span {
    font-size: 1.5rem;
    margin-top: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: #9bddfa;
    display: block;
    position: relative;
}

.guaranteedCard .infoText span::after {
    position: absolute;
    content: "";
    top: -10px;
    left: 0;
    margin: 0px auto;
    height: 3px;
    width: 115px;
    background: var(--simple-orange-color);
}

.guaranteedCard img {
    width: 215px;
    filter: drop-shadow(-5px 5px 4px #002a3c);
}


/* contact page START */
.registrationPageBG {
    background: linear-gradient(to right, #9BDDFA 50%, #eff8fb 50%);
    padding: 75px 0;
}
.imagItem p {
    font-size: 1.15rem;
    line-height: 1.75rem;
}

.imagItem .title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;

    
}

.contactBox {
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    /* align-items: center; */
}

.contact-content h4 {
    font-size: 20px;
}

.contact-content span{
    font-size: 18px;
    color: #003a52;
}
.contactBox i {
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    text-align: center;
    border-radius: 5px;
    background: var(--simple-orange-color);
}
.registrationPageBG .formItem {
    padding: 0 45px;
}
.regLoginForm .form-control, .regLoginForm .form-select {
    padding: .575rem .95rem;
}

/* Cotact Page END */




/* END  */
/*---//--*/
/*================================================
 //--//--> DEVICES -- Media Queries
==================================================*/
@media (min-width: 992px) {
	.navbar-expand-lg .navbar-toggler, .close-toggler {
		display: none;
	}
	.menu-hdr .dropdown-menu.minWd350{
	  min-width: 350px!important;
	}
	.menu-hdr .dropdown-menu.minWd400{
	  min-width: 400px!important;
	}
}
/*================================================
//--//--> SMALL DEVICES (landscape phones, 576px and up)
==================================================*/
@media (min-width: 320px) and (max-width: 767.98px) {
	.announcementWrapr{
		position: unset;
	}
	.announcementWrapr .alert {
		padding: 5px 15px;
		line-height: 1.25rem;
		text-align: center;
		font-size: 1rem;
	}
	.announcementWrapr .alert-dismissible .btn-close {
		position: absolute;
		top: -2px;
		right: -10px;
		z-index: 2;
		padding: 0.25rem;
		opacity: 1;
	}
	.announcementWrapr .hlTxt {
		font-size: 0.95rem;
	}
	.alert-dismissible .btn-close {
		position: absolute;
		top: -5px;
		right: -15px;
		z-index: 2;
		padding: 0.5rem;
		font-size: 0.925rem !important;
	}
	.theme-header{
		position: unset;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1) !important;
	}
	.menu-hdr {
		padding: 5px 0px;
	}
	.menu-hdr .nav-link {
		color: #000000;
		padding: 0.75rem 0 !important;
		font-size: 1.10rem;
	}
	.menu-hdr .navbar-brand {
	    padding: 8px 0;
	}
	.theme-header .menu-hdr {
	    background-color: #ffffff;
	    padding: 0;
	    min-height: 50px;
	}
	.menu-hdr .navbar-brand img {
		height: 35px;
	}
	.menu-hdr .dropdown-mega .dropdown-menu::before,
	.menu-hdr .dropdown-menu::before{
		display:none;
	}
	.menu-hdr .nav-item.dropdown:hover .dropdown-menu,
	.menu-hdr .nav-item.dropdown.dropdown-mega:hover .dropdown-menu {
		display: none;
		-webkit-animation: unset;
		overflow: auto;
        height: 100vh;
	}
	.menu-hdr .dropdown-menu.show {
		display: block!important;
	}
	.menu-hdr .nav-item.dropdown.dropdown-mega .dropdown-menu {
		width: 98%;
		top: auto;
		left: 1%;
		position: relative;
	}
	.menu-hdr .nav-link.active, .menu-hdr .nav-link:hover {
		color: #000000;
		border-bottom: unset;
	}
	.mega-content {
		padding: 0 0.15rem;
	}
	.mega-content p{
		margin-bottom: 0px;
	}
	.mega-content .mc-title {
		margin-bottom: 15px;
	}
	.mega-content .mc-subtitle a {
		font-size: 1.0rem;
	}	
	.mainContent {
		padding-top: 0px;
	}
	.heroBanner {
		min-height: auto;
		padding: 2rem 0;
	}
	.heroBanner h1 {
		font-size: 1.75rem;
	}
	.heroBanner p {
		font-size: 1.05rem;
	}
	.sectionMarg{
		margin:30px 0;
	}
	.sectionPadg {
		padding: 30px 0;
	}
	.sectionTitle .mainHeading {
		font-size: 1.75rem;
		margin-bottom: 10px;
		font-weight: 600;
		line-height: 2rem;
	}
	.sectionTitle .subHeading {
		font-size: 1.15rem;
	}
	.sectionTitle .subHeading2 {
		margin-bottom: 5px;
		font-size: 1.05rem;
		font-weight: 500;
		line-height: 1.35;
	}
}



@media (min-width: 260px) and (max-width:425px) {	

     .back-to-top{
        right: 38px;
     }
}


/*================================================
//--//--> MEDIUM DEVICES (tablets, 768px and up)
==================================================*/
@media (min-width: 768px) and (max-width: 1023.98px) {	
	.alert-dismissible .btn-close {
		top: -8px;
		right: -18px;
	}
	.theme-header{
		position: unset;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1) !important;
	}
	.menu-hdr {
		padding: 5px 0px;
	}
	.menu-hdr .nav-link {
		color: #000000;
		padding: 0.75rem 0 !important;
		font-size: 1.10rem;
	}
	.menu-hdr .navbar-brand {
	    padding: 8px 0;
	}
	.menu-hdr .navbar-brand img {
		height: 35px;
	}
	.menu-hdr .dropdown-mega .dropdown-menu::before,
	.menu-hdr .dropdown-menu::before{
		display:none;
	}
	.menu-hdr .nav-item.dropdown:hover .dropdown-menu,
	.menu-hdr .nav-item.dropdown.dropdown-mega:hover .dropdown-menu {
		display: none;
		-webkit-animation: unset;
		overflow: auto;
        height: 100vh;
	}
	.menu-hdr .dropdown-menu.show {
		display: block!important;
	}
	.menu-hdr .nav-item.dropdown.dropdown-mega .dropdown-menu {
		width: 98%;
		top: auto;
		left: 1%;
		position: relative;
	}
	.menu-hdr .nav-link.active, .menu-hdr .nav-link:hover {
		color: #000000;
		border-bottom: unset;
	}
	.mega-content {
		padding: 0 0.15rem;
	}
	.mega-content p{
		margin-bottom: 0px;
	}
	.mega-content .mc-title {
		margin-bottom: 15px;
	}
	.mega-content .mc-subtitle a {
		font-size: 1.0rem;
	}	
	.mainContent {
		padding-top: 0px;
	}
	.heroBanner {
		padding: 2.5rem 0;
	}
}

/*================================================
//--//--> MEDIUM DEVICES (tablets, 768px and up)
==================================================*/
@media (min-width: 1024px) and (max-width: 1280px) {
	.theme-header {
        position: unset;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1) !important;
    }
	.menu-hdr .navbar-brand {
	    padding: 8px 0;
	}
	.menu-hdr .navbar-brand img {
        height: 30px;
    }
	.menu-hdr .nav-link {
		color: #000000;
		padding: 1.05rem 0.25rem !important;
		font-size: 0.9rem;
		border-bottom: 3px solid transparent;
	}
	.mainContent {
		padding-top: 0px;
	}
	.btn {
		padding: 0.5rem 0.5rem;
		border-radius: 8px;
		--bs-btn-line-height: unset;
		font-size: 1.0rem;
		transition: all .3s ease;
		font-weight: 600;
	}
	.heroBanner h1 {
		margin: 0;
		font-size: 2rem;
		font-weight: 700;
		line-height: 1.15;
		color: #fff;
		margin-bottom: 15px;
	}
	
}
