:root {
    --primary-fonts: "Open Sans", sans-serif;
    --secondary-fonts: "Open Sans", sans-serif;
    --primary-fonts-v07: "Marck Script", cursive;

    --primary-color: #3374FF;
    --secondary-color: #000;

    --btn-primary-color: linear-gradient(180deg, #5188FF 11.67%, #3374FF 112.5%);
    --btn-secondary-color: #1C5EEA;

    --white-color: #ffffff;
    --black-color: #000000;
}
body{
     font-family: var(--primary-fonts);
     font-size: 16px;
     font-weight: 400;
}

@supports (-moz-appearance: none) {
    *{
        scrollbar-width: thin;
    }
}
::-webkit-scrollbar {
    width: 6px; /* Adjust width for vertical scrollbar */
    height: 6px; /* Adjust height for horizontal scrollbar, if needed */
}
::-webkit-scrollbar-track {
    background: transparent; /* Track background */
}
::-webkit-scrollbar-thumb {
    background-color: #C3D4EA; /* Scrollbar color */
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #C3D4EA; /* On hover */
}
::-webkit-scrollbar-button {
    display: none;
    height: 0;
    width: 0;
}

.primary-title-large {
    font-size: 60px;
    font-weight: 700;
    line-height: 70px;
    color: #000;
    margin-bottom: 0;
    font-family: var(--secondary-fonts);
}
.primary-title {
    font-size: 30px;
    font-weight: 400;
    line-height: 100%;
    color: #000;
    margin-bottom: 10px;
}
.secondary-title {
    font-size: 20px;
    font-weight: 700;
    line-height: initial;
    color: #01001F;
    margin-bottom: 13px;
}
.heading-title{
    margin-bottom: 20px;
}
.heading-para{
     font-size: 15px;
    font-weight: 400;
    line-height: initial;
    color: #01001F;
    margin-bottom: 20px;
}
.heading-para:last-child{
    margin-bottom: 0;
}
.heading-para a{
    color: var(--primary-color);
    text-decoration: underline;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted var(--primary-color);
}

.tooltip .tooltiptext {
  visibility: hidden;
      width: 70px;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 3px 2px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -34px;
    font-weight: 300;
    font-size: 13px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--primary-color) transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.input-group-prepend {
    margin-left: -1px;
    position: absolute;
    left: 8px;
    height: 100%;
    z-index: 9;
}
[dir="rtl"] .input-group-prepend {
    margin-right: -1px;
    margin-left: 0px;
    right: 8px;
    left: unset;
}
.input-group > .input-group-prepend > .input-group-text{
    background-color: inherit;
    border: none;
    border-radius: 0px;
}
.input-group > .input-group-prepend > .input-group-text img {
    width: 16px;
    height: 16px;
    object-fit: scale-down;
}
.input-group .form-control {
    padding-left: 42px;
    background-color: #fff;
}
[dir="rtl"] .input-group .form-control {
   padding-right: 42px;
   padding-left: 20px; 
}
.accordion {
  width: 100%;
}
.accordion-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    color: #01001F;
    font-size: 20px;
    font-weight: 700;
}
.accordion-icon {
    transition: transform 0.3s;
    background-color: #1C5EEA;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 5px;
    font-weight: 400;
    font-size: 20px;
    padding-bottom: 2px;
}
.accordion-content {
 display: none;

}
.accordion-item.active .accordion-content {
 display: block;
 padding-bottom: 10px;
}
.accordion-item {
    padding: 20px 0 17px;
    border-bottom: 1px solid #C3D4EA;
}
.accordion-item:first-child {
    padding-top: 0px;
}

.businessCard-bg {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.businessCard-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/**footer section**/
.businessCard_footer{
    background-color: #303030;
    padding: 35px;
    text-align: center;
}
.businessCard_copyright{
    margin-bottom: 20px;
}
.businessCard_copyright p{
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
}
.businessCard_ftrLogo img{
  width: 118px;
  height: auto;
}
.businessCard_V04 .businessCard_footer {
    background-color: #AC8766;
}


/**---------------start media--------------------**/
@media only screen and (max-width: 1200px){
.businessCard_copyright {
    margin-bottom: 10px;
}
.businessCard_copyright p {
    font-size: 14px;
}
.businessCard_ftrLogo img {
    width: 88px;
}
}

@media only screen and (max-width: 700px){
.businessCard_section .businessCard_footer {
    padding: 26px;
}

}
