/*HEADER CSS*/

.nav-link {
  position: relative;
}

.nav-link:hover {
  text-decoration: none; 
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2647c8; 
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}


.header-padding {
    padding: 170px 0 120px !important;
}

/*INDEX MAIN CSS*/

.start_span{
    color:#ff9a00 !important;
    font-size:20px !important;
}

.hero_main_para{
    margin-bottom:20px !important;
}

.home_hero_img{
    width:90% !important;
}

.pricing-item-two.active{
    border-radius:3px !important;
    border-color: #2647c8;
}

.header-main-content-two h4{
    margin-bottom:10px !important;
}

.main-nav{
    padding:0px !important;
}

.hero_main_h1{
    margin-bottom:10px !important;
}
/*FOOTER CSS*/

.footer-details p{
    color:white !important;
}

.switch-box{
    display:none !important;
}

.scroll-top{
    width:50px !important;
    height:50px !important;
    bottom:20px !important;
    background: #04156f !important;
}


/*ABOUT US*/

.about_btn{
    color:#2647c8 !important;
}

.about_btn:hover {
    background-color: #3d55be;
    color: #fff !important;
}

/*CONTACT US*/

.con_btn{
    color:#2647c8 !important;
}

.con_btn:hover {
    background-color: #3d55be;
    color: #fff !important;
}

/*TERMS AND CONDITION, PRIVACY POLICY*/

.term_btn,.privacy_btn{
    color:#2647c8 !important;
}

.term_btn:hover {
    color: #fff !important;
    background-color: #3d55be;
}

.privacy_btn:hover {
    color: #fff !important;
    background-color: #3d55be;
}

.terms-item {
    position: relative;
    margin-bottom: 20px;
    padding: 15px 15px 15px 20px;
    /*background-color: #f9f9f9;*/
    border-radius: 6px;
    overflow: hidden;
}

.terms-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(160deg, #2647c8 0%, #142d99 50%, #02126A 100%);
    border-radius: 6px 0 0 6px;
}


.terms-item h5{
    color: #02126A; 
    margin-bottom:10px;
}
