/*--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-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;
}
.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 */
}
.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;
}
/*======= 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-themLgray{
	color: var(--simple-lgray-color) !important;
}
.text-themYallow{
	color:var(--simple-yallow-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-blue-color);
	position: sticky;
	inset: 0px;
	z-index: 100;
	display: block;
	height: auto;
	min-height: 3px;
}
.announcementWrapr .alert{
	color: #ffffff;
	margin-bottom:0px;
	padding: 8px;
	font-weight: 500;
	text-align: center;
	font-size: 1.15rem;
}
.announcementWrapr .hlTxt {
    background: var(--simple-orange-color);
    padding: 0 7px;
    border-radius: 7px;
    color: #fff;
    font-weight: 600;
}
.announcementWrapr .alert-dismissible a {
    color: #ffffff !important;
    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: 42px;
}
.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: #0c7bab;
    font-size: 1.75rem;
    padding-bottom: 5px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}
.mega-content .mc-box {
    display:flex;
    /* cursor: pointer; */
    text-decoration: none;
    border: 1px solid #dde3e7;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    border-bottom: 4px solid #dde3e7;
}
.mega-content .mc-box:hover {
    border: 1px solid var(--simple-blue-color);
    padding: 10px;
    border-radius: 10px;
    background: #def5ff;
    border-bottom: 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;
	margin-bottom: 11px;
	color: #000000;
	text-decoration: none;
	font-weight: 600;
}
.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%;
  position: relative;
  padding: 5.5rem 0;
  display: flex;
  align-items: center;
  background: url("../img/index_hero_banner_v1.webp") center;
  background-size: cover;
}
.heroBanner:before {
  content: "";
  /* background: color-mix(in srgb, #003A52, transparent 15%); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.heroBanner .container {
  position: relative;
}
.heroBanner h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 15px;
}
.heroBanner .subTitle {
    background: var(--simple-lgray-color);
    color: var(--bs-white);
    padding: 6px 18px;
    width: max-content;
    border-radius: 100px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}
.heroBanner .subTitle i {
   
font-size: 0.5rem;
}
.heroBanner p {
  margin: 5px 0 30px 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

/*------ 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.25rem;
    margin-bottom: 10px;
    font-weight: 600;
    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.65;
}
/*--Other Section Styles--*/
.authorized-efiling-card {
    text-align: center;
    padding: 30px 20px 30px;
    border: 3px solid #fff;
    box-shadow: 0px 20px 60px 0px rgba(21, 22, 29, 0.06);
    border-radius: 10px;
    height: 100%;
}
.aef-card-content {
    position: relative;
    z-index: 1;
}
.aef-card-content .aefc-title{
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: var(--simple-dark-blue-color);
}
.aef-card-content p{
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 5px;
    line-height: 1.35;
    color: var(--simple-dark-blue-color);
}

.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;
}
/*----*/
.icon-box-card1 {
    position: relative;
    border: 1px solid #becbd4;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 5px;
    background: #fff;
}
.icon-box-card1 .card1-img {
    padding: 20px;
    width: 100px;
    text-align: center;
}
.icon-box-card1 .sprt-bodr {
    background: #becbd4;
    width: 1px;
    height: 100px;
}
.icon-box-card1 .title {
    font-size: 1.25rem;
    margin-bottom: 0;
    margin-left: 20px;
    color: var(--bs-black);
    background: transparent;
}
.icon-box-card2 {
    background: #f6f9fc;
    padding: 40px;
    border-radius: 25px;
    color: var(--simple-dark-blue-color);
    position: relative;
}
.icon-box-card2 .bdrIcon {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: var(--simple-dark-blue-color);
    margin-bottom: 15px;
    border-radius: 15px;
    font-size: 1.25rem;
    background: #fff;
}
.icon-box-card2 img {
    width: 64px;
    margin-bottom: 15px;
}
.icon-box-card2 .title {
    font-size: 1.75rem;
    margin-bottom: 5px;
    font-weight: 600;
}
.icon-box-card2 p {
    font-size: 1.15rem;
    margin-bottom: 0px;
}
.icon-box-card3 {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 15px;
    background: var(--simple-dark-blue-color);
}
.icon-box-card3 .card3-img {
    padding: 25px 20px;
    width: 100px;
    text-align: center;
}
.icon-box-card3 .title {
    font-size: 1.55rem;
    margin-bottom: 0;
    margin-left: 0;
    color: var(--bs-white);
    background: transparent;
}
/*----*/
.sts-trust-card {
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--bs-border-color);
}
.sts-trust-card .info {
    font-weight: 800;
    font-size: 3.25rem;
    line-height: 1;
    margin-bottom: 15px;
    color: var(--simple-dark-blue-color);
}
.sts-trust-card p {
    font-size: 1.1rem;
    color: var(--bs-black);
    margin-bottom: 0;
}
/*-----*/
.ctaSection-des1 {
    background-color: var(--simple-blue-color) !important;
    background-image: url(../img/botInfo-banner01.webp);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    z-index:0;
}
/*---Footer Styles--*/
.footerSec {
    background: var(--simple-gray-color);
    padding: 60px 0 45px;
}
.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: 100px;
    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: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footerSec .info-card .card-icon i {
    font-size: 20px;
    line-height: 2;
}
.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;
}
/*---//--*/
/*--Sub Page Styles --*/
.pgTitleBanner{
    color: #ffffff;
    padding: 2.5rem 0;
    background-color: #014f70;
    position:relative;
    overflow:hidden;
    z-index: 0;
    min-height: 165px;
}
.pgTitleBanner .mainTitle span {
    color: #00c9ff;
}
.pgTitleBanner .mainTitle {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 600;
	margin-bottom:20px;
}
.pgTitleBanner .subTitle{
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 600;
}
.pgTitleBanner .infoContent {
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.75rem;
    padding-right: 90px;
}
.pgTitleBanner .infoList {
    font-size: 1.25rem;
    line-height: 1.75rem;
    list-style: disc;
    margin-left: 20px;
}
.pgTitleBanner .infoList li{
    margin-bottom: 10px;
}
.pgTitleBanner .infoList li::marker{
    color: #ffffff;
}
.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%);
}
/*-----*/

/*--//--*/
.registrationPageBG {
    background: linear-gradient(to right, #9BDDFA 50%, #eff8fb 50%);
    padding: 75px 0;
}
.registrationPageBG .imagItem img {
    padding-right: 1.75rem;
}
.registrationPageBG .formItem{
   padding: 0 45px;
}
/*--//--*/
.regLoginForm .form-label {
    font-weight: 600;
    margin-bottom: 2px;
}
.regLoginForm .form-label .tooltipIcon {
    margin-left: 5px;
    font-size: 0.85rem;
}
.regLoginForm .form-control,
.regLoginForm .form-select{
    padding: .575rem .95rem;
    box-shadow: 2px 2px 0px 1px rgb(0 0 0 / 7%);
}
.field-icon {
    float: right;
    margin-right: 10px;
    margin-top: -28px;
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    color: #848d91;
}
/*----*/
.imagItem .title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.imagItem p {
    font-size: 1.15rem;
    line-height: 1.75rem;
}
.imagItem .list {
    font-size: 1.25rem;
    line-height: 1.75rem;
    list-style: disc;
    margin-left: 20px;
}
.imagItem .list li{
    margin-bottom: 10px;
}
.formItem .title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.15rem;
}
.formItem .sub-title {
    line-height: 1.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #c3d3d8;
}
/*----*/
.contactBox {
    display: flex;
    font-size: 1.25rem;
}
.contactBox i {
    color: rgb(0 58 82);
    width: 72px;
    height: 72px;
    line-height: 72px;
    font-size: 30px;
    text-align: center;
    background: rgb(238 247 250);
    border-radius: 5px;
}
.contactBox h6 {
    margin-bottom: 15px;
    text-transform: uppercase;
    padding-bottom: 2px;
    border-bottom: 1px solid #c3cfd2;
}
.contactBox h2 {
    font-size: 1.5rem;
    font-weight: 600;
}
/*---//--*/
/*================================================
 //--//--> 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;
	}
	.icon-box-card2 {
		padding: 15px;
		border-radius: 20px;
	}
	.icon-box-card2 .title {
		font-size: 1.5rem;
	}
	.icon-box-card2 p {
		font-size: 1.0rem;
		margin-bottom: 0px;
	}
	.sts-trust-card {
		padding: 10px;
		border-right: none;
	}
	.sts-trust-card .info {
		font-size: 3rem;
		margin-bottom: 5px;
	}
}
/*================================================
//--//--> 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;
	}
	
}
