@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

/*
.brand {
  font-family: inherit;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: inherit;
  color: #e91e63;
  border: none;
  outline: none;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
}
*/

.pageheader{
  background : #ffffff;
}
.header {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 1rem 0;
  margin: 0 auto;
  z-index: 999;
  border: none;
  outline: none;
  background: #FCF9FF;
 box-shadow: 0px 7px 10px rgba(41, 23, 57, 0.06);
}

.header .container {max-width: 1270px;}

.header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
     /* -ms-flex: 0 0 17%;
          flex: 0 0 17%;*/
}

.header-item-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
 /* -webkit-box-flex: 0;
      -ms-flex: 0 0 66%;
          flex: 0 0 66%;*/
}

.header-item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 17%;
          flex: 0 0 17%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header-item-right .menu-icon {
  font-size: 1.35rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-left: 1rem;
  border: none;
  outline: none;
  color: #121212;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .menu > ul > li {
  display: inline-block;
  line-height: 3.125rem;
  margin-left: 15px;
  position: inherit;
  margin-bottom: 0px;
}
.header .menu > ul > li:before {display: none;}



.header .menu > ul > li > a {
  position: relative;
  font-family: proxima-nova,sans-serif;
  line-height: 24px;
  border: none;
  outline: none;
  font-weight: 800 !important;
font-size: 16px;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  color: #4F2B72;
}

.header .menu > ul > li .menu-subs {
  position: absolute;
  width: 100%;
  height: auto;
  /*margin-top: 1.75rem;*/
  margin-top: 15px;
  /*padding: 1rem 2rem;*/
  /*padding: 10px 0px;*/
  padding: 25px 0px 10px 0;
  border: none;
  outline: none;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  /*border-top: 3px solid #e91e63;*/
  background: #FCF9FF;
  box-shadow: 0px 15px 20px rgba(41, 23, 57, 0.05);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;

  min-height: 330px;
}



.header .menu > ul > li .menu-subs.menu-mega {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}



.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a:hover,
.header .menu > ul > li .menu-subs > ul > li > a:hover {
  color: #1ac577;
}

.header-item-right a:hover,
.header .menu > ul > li:hover > a {
  color: #1ac577;
}

@media only screen and (min-width: 991px) {
  .header .menu > ul > li.menu-item-has-children:hover .menu-subs {
    /margin-top: 0.5rem;*/
    margin-top: 16px;
    opacity: 1;
    visibility: visible;
  }
}

.menu-mobile-header,
.menu-mobile-trigger {
  display: none;
}

@media only screen and (max-width: 991px) {
  .header-item-center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .header-item-left, .header-item-right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header .menu-mobile-trigger {
    position: relative;
    display: block;
    cursor: pointer;
    width: 1.75rem;
    height: 1rem;
    border: none;
    outline: none;
    margin-left: 1.25rem;
    background: none;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  .header .menu-mobile-trigger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 0.25rem;
    background: #121212;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  .header .menu-mobile-trigger span:nth-child(1) {
    top: 0;
  }
  .header .menu-mobile-trigger span:nth-child(2), .header .menu-mobile-trigger span:nth-child(3) {
    top: 0.5rem;
  }
  .header .menu-mobile-trigger span:nth-child(4) {
    top: 1rem;
  }
  .header-item-right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 20rem;
    height: 100%;
    z-index: 1099;
    overflow: hidden;
    background: #ffffff;
    -webkit-transform: translate(-100%);
        -ms-transform: translate(-100%);
            transform: translate(-100%);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .header .menu.active {
    -webkit-transform: translate(0%);
        -ms-transform: translate(0%);
            transform: translate(0%);
  }
  .header .menu > ul > li {
    display: block;
    line-height: 1;
    margin: 0;
  }
  .header .menu > ul > li > a {
    display: block;
    line-height: 3.125rem;
    height: 3.125rem;
    padding: 0 3.125rem 0 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .header .menu .menu-mobile-header {
    position: relative;
    position: -webkit-sticky;
    position: sticky;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    top: 0;
    height: 3.125rem;
    z-index: 501;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
  }
  .header .menu .menu-mobile-header .menu-mobile-arrow {
    display: none;
    font-size: 18px;
    background-color: transparent;
    width: 3.125rem;
    height: 3.125rem;
    cursor: pointer;
    border: none;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    color: #121212;
    text-align: center;
    background: none;
  }
  .header .menu .menu-mobile-header .menu-mobile-arrow:hover {background: none;}
  .header .menu .menu-mobile-header.active .menu-mobile-arrow {
    display: block;
  }
  .header .menu .menu-mobile-header .menu-mobile-title {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    color: #121212;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
  }
  .header .menu .menu-mobile-header .menu-mobile-close {
    font-size: 18px;
    background-color: transparent;
    cursor: pointer;
    width: 3.125rem;
    height: 3.125rem;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    color: #121212;
    text-align: center;
     background: none;
     padding: 0px;
  }
  .header .menu .menu-section {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .header .menu > ul > li .menu-subs {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header .menu > ul > li .menu-subs.menu-mega {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header .menu > ul > li .menu-subs.active {
    display: block;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 0rem;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item img.responsive {
    margin-top: 0;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
    margin-bottom: 1.25rem;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center:last-child .title {
    margin-bottom: 0rem;
  }
  .header .menu > ul > li .menu-subs > ul > li > a {
    display: block;
  }
  .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul {
    margin-bottom: 1rem;
  }
  .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
    display: block;
  }
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.55);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

.main {
  display: block;
  width: 100%;
  min-height: 100vh;
}


.menucontainer {display: flex; max-width: 1270px; margin: auto; flex-wrap: wrap; width: 100%; padding-left: 15px; padding-right: 15px;}
.menucontainer .list-item {-webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%;}


.box-row {display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-right: -15px; margin-left: -15px;}
.body-col-2, .box-col-sub-2, .box-col-3, .box-col-9, .box-col-sub-3, .box-col-6, .box-col-4, .box-col-5, .box-col-sub-6  {position: relative; width: 100%; min-height: 1px; padding-right: 15px; padding-left: 15px;}
.box-col-2,
.box-col-sub-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
.box-col-3, .box-col-sub-3 {-webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%;}
.box-col-9 {-webkit-box-flex: 0; -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75%;}
.box-col-6, .box-col-sub-6 {-webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%;}
.box-col-5 {-ms-flex: 0 0 41.666667%; flex: 0 0 41.666667%; max-width: 41.666667%;}
.box-col-4 {-ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%;}

.desktopnonetalk {display: none;}
.commonmenulist ul {margin: 0px; padding: 0px;}
.commonmenulist li {list-style-type: none; display: block; padding-left: 0px;}
.commonmenulist li a {display: inline-block; font-size: 16px; color: #502B71; align-items: flex-start; } 
.commonmenulist li a img {margin-right: 10px; max-width: 16px;}
.commonmenulist li a:hover {text-decoration: none; color: #1AC577;} 
.commonmenulist li:before {display: none;}

.menublock {}
.menublock h4 {font-size: 16px; color: #502B71; margin-bottom: 25px;}

.cusmenuwrap {
    height: 100%;
}

.commonmenulist .cusmenuwrap ul.submenuWrapper {position: relative; padding-top: 0px; padding-bottom: 10px; height: 100%;}

ul.submenuWrapper li.left-submenufull {width: 20%; position: initial; line-height: normal; margin-bottom: 0px;}
ul.submenuWrapper li.left-submenufull a.subarrow {padding: 10px;}
ul.submenuWrapper li.left-submenufull a.subarrow i {position: relative; display: block;}

.sidesub-menu {position: absolute; left: 20%; top: 0; min-height: 100%; width: 80%; }
ul.submenuWrapper li.left-submenufull .sidesub-menu {display: none;}
ul.submenuWrapper li.left-submenufull:hover .sidesub-menu {display: block;}

ul.submenuWrapper li.left-submenufull.menuactivefull .sidesub-menu {display: block;}
.commonmenulist ul.submenuWrapper li.left-submenufull.menuactivefull a.leftfulllink {/*color: #1AC577;*/ font-weight: 600;}
.commonmenulist ul.submenuWrapper li.left-submenufull.menuactivefull a.leftfulllink i:after {position: relative; display: inline-block; right: 0px; top: 1px; content: "\f0da"; font-family: FontAwesome; padding-left: 10px; /*color: #4F2B72;*/}


ul.submenuWrapper li.left-submenufull .sidesub-menu.firstmenusub {display: block;}

.commonmenulist ul.submenuWrapper li.left-submenufull a.leftfulllink {color: #A0A4A8; font-weight: 600; display: block; padding: 10px 10px 10px 0px;}
.commonmenulist ul.submenuWrapper li.left-submenufull a.leftfulllink:hover {color: #1AC577; font-weight: 600;}
.commonmenulist ul.submenuWrapper li.left-submenufull a.leftfulllink.active {font-weight: 700;}

ul.submenuWrapper li.left-submenufull .sidesub-menu h6 , .ParsonalLoanes-divsdf {position:relative;font-size: 16px; color: #502B71; margin-bottom: 25px; font-weight: 700; font-family:proxima-nova,sans-serif;}
ul.submenuWrapper li.left-submenufull .sidesub-menu li {margin-bottom: 30px;}

.commonmenulist ul.submenuWrapper li.left-submenufull a.leftfulllink i { font-style: normal; }
.commonmenulist ul.submenuWrapper li.left-submenufull a.leftfulllink i:after {display: none; font-size: 14px;}
.commonmenulist ul.submenuWrapper li.left-submenufull a.leftfulllink:hover i:after {position: relative; display: inline-block; right: 0px; top: 1px; content: "\f0da"; font-family: FontAwesome; padding-left: 10px; /*color: #4F2B72;*/}

.header-item-right a:hover, .header .menu > ul > li > a .fa-caret-down {margin-left: 5px;}
.header-item-right a:hover, .header .menu > ul > li:hover > a .fa-caret-down::before {content: "\f0d8";}
.header .menu > ul > li.mobileblockmenu {display: none;}
ul.submenuWrapper li.left-submenufull .sidesub-menu li a span.menunewtag {font-size: 14px; color: #fff; background-color: #1AC577; border-radius: 3px; padding: 2px 4px; display: inline-block; margin-left: 7px;}

.home .header {position: relative; box-shadow: none;}
.home .header.sticky {position: relative;}

.deskheaderright {display: flex; align-items: center; justify-content:space-between;}
.mobnonelink {display: flex; justify-content: flex-end; align-items: center; white-space: nowrap; margin-left: 15px; flex: 1;} 
.hedchatlink a {border: 1px solid #4f2b72; border-radius: 4px; font-size: 16px; line-height: inherit; font-weight: 700; color: #4b276f;
padding: 11px 10px; display: inline-block; font-family: proxima-nova,sans-serif; transition: all 0.3s ease-in-out;} 
.hedchatlink a:hover {background: #f3e6ff; color: #4f2b72; text-decoration: none; }
.hedchatlink a img {width: 20px; margin-right: 5px;}

.logbtn a {font-size: 16px; color: #4f2b72; font-weight: 400; padding-left: 10px; padding-right: 15px;}
.logbtn a:hover {color: #1AC577;}

.hedhomelonebtn a {display: flex; align-items: center; background-color: #1AC577; color: #fff; line-height: normal; /*padding: 8px 15px;*/ padding: 8px 15px; border-radius: 4px;}
.hedhomelonebtn a:hover {background-color: #4F2B72; color: #fff;}
.homeloneicon {margin-right: 10px; width: 25px;}
.homeloneicon img {width: 25px;}
.homelonelink {font-size: 16px; font-weight: 700; white-space: nowrap;}
.homelonelink span {display: block; color: #fff; font-size: 12px; font-weight: 400;}
.hedchatlink {margin-right: 10px; margin-left: 15px;}

.header-item-center .menu {/*margin-right: 60px;*/ margin-right: 0px; margin-left: 47px;}
.cls-headwidth .header-item-center .menu {/*margin-right: 148px;*/ margin-right: 0px; margin-left: 47px;}

.header.desktopheader {display: block !important;}
.header.mobileheader {display: none !important;}

.header.pageheader {background-color: #fff; position: absolute !important;}
.header.pageheader.sticky {position: fixed !important;}
.header {transition: .3s all ease-in-out 0;}
/*.header:hover {background: #fff;}*/

/*.header:hover:before {position: absolute; left: 0; bottom: 0; height: 10px; width: 100%; box-shadow: 0px 7px 10px rgba(41,23,57,.06); content: ""; z-index: 999;}*/




.header .menu > ul > li.menu-item-has-children:hover .menu-subs:before {position: absolute; left: 0; top: -10px; height: 10px; width: 100%; box-shadow: 0px 7px 8px rgba(41,23,57,.06); content: ""; z-index: 999;}

body {padding-top: 0px !important;}
body.cls-pageinner {padding-top: 81px !important;}


/*14-10-2021*/
.deskheaderright .sidesub-menu .box-row h4{position: relative; padding-bottom: 12px;}
.deskheaderright .sidesub-menu .box-row h4:before{content: "";width: 58px;height: 3px;position: absolute;bottom: 0;background-color: #1ac577;left: 0px}
/*.desktopheader .box-col-3, .box-col-9, .box-col-sub-3, .box-col-6, .box-col-4, .box-col-5, .box-col-sub-6{padding-left: 0px;}
.desktopheader .box-row{margin-left: -22px;}*/
.commonmenulist ul.submenuWrapper li.left-submenufull a.leftfulllink{font-family: 'proxima-nova';font-size: 16px;font-weight: normal;color: #636465;}
.commonmenulist ul.submenuWrapper li.left-submenufull.menuactivefull a.leftfulllink{color: #1ac577;font-weight: 600;}
.homelonelink{font-family:proxima-nova;}
.commonmenulist ul.submenuWrapper li.left-submenufull.menuactivefull a.leftfulllink{font-weight: 700;}
.cls-headwidth .header .container{max-width: 1143px;}
.cls-headwidth .menucontainer{max-width: 1270px;}
.cls-headwidth .pageheader .menucontainer{max-width: 1143px;}
/*.cls-headwidth .sidesub-menu{left: 26%;}*/

/*header.header.cls-headbgwhite.desktopheader:hover:before{display: none;}*/
.header.cls-headbgwhite.sticky{background-color:#FCF9FF;}
.cls-headbgwhite.header .menu > ul > li .menu-subs{background-color: #fff;}
/*.cls-headbgwhite.header .menu > ul > li .menu-subs{box-shadow: 20px 15px 20px 20px rgb(41 23 57 / 5%);}*/
/*header.header.cls-headbgwhite.desktopheader:hover .header .menu>ul>li{}*/


.cls-headbgwhite ul.submenuWrapper li.left-submenufull {width: 18%;}
.cls-headbgwhite .sidesub-menu {left: 18%; width: 82%; }


@media only screen and (max-width: 991px)
{
  
  ul.submenuWrapper li.left-submenufull {width: auto;}
  .sidesub-menu {position: relative; left: inherit; top:inherit; width: auto;}
  .box-col-3, .box-col-sub-3 {-webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%;}
  .box-col-9 {-webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%;}
  .box-col-6, .box-col-sub-6 {-webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%;}
  .box-col-5 {-webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%;}
  .box-col-4 {-webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%;}

  .cls-headbgwhite ul.submenuWrapper li.left-submenufull {width: auto;}
  .cls-headbgwhite .sidesub-menu {left: inherit; width: auto; }



  .header .menu > ul > li {padding-left: 0px;}
  .header .menu > ul > li .menu-subs.menu-mega {position: absolute; padding: 4rem 0px 0px 0px;}
  .header .menu > ul > li .menu-subs {min-height: inherit;}
  ul.submenuWrapper li.left-submenufull .sidesub-menu {display: block;}
  ul.submenuWrapper li.left-submenufull .sidesub-menu li {border-bottom: 1px solid #e5e5e5; margin-bottom: 15px; padding-bottom: 15px;}

  .commonmenulist ul.submenuWrapper li.left-submenufull a.leftfulllink i:after {display: inline-block; font-size: 14px; color: #4F2B72;}
  ul.submenuWrapper li.left-submenufull .sidesub-menu h4 {margin-bottom: 15px; margin-top: 10px;}
  .header .menu > ul > li.mobileblockmenu {display: block;}
   .header .menu > ul > li.mobileblockmenu span {font-size: 14px; color: #fff; background-color: #1AC577; border-radius: 3px; padding: 2px 4px; display: inline-block; margin-left: 7px; line-height: normal;}

  .header .menu > ul > li > a {padding-right: 25px;}
  .header .menu .menu-section {padding-bottom: 50px;}
  .header .menu-mobile-trigger span {width: 50%;}

  .mobnonelink {width: auto; position: absolute; right: 0; top: 26px; padding-left: 0px;}
  .hedchatlink {display: none;}
  .hedhomelonebtn {display: none;}
  .commonmenulist ul.submenuWrapper li.left-submenufull a.leftfulllink.mobilenonelink {display: none;}

  .header-item-right {position: absolute; left: 0; top: 30px;}
  
  .header .container {max-width: inherit;}
  .header-item-left {display: inherit; display: inherit; display: inherit; -webkit-box-flex: inherit;}
  .deskheaderright {display: block; text-align: center;}
  .header .menu .menu-section {text-align: left;}

  .header-item-right a:hover, .header .menu > ul > li > a .fa-caret-down {position: absolute; font-size: 1.25rem; line-height: 3.125rem; top: 0;
right: 0; width: 3.125rem; height: 3.125rem; text-align: center; -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg);}

.header .menu > ul > li > a .fa-caret-down::before {content: "\f105";}
.header-item-right a:hover, .header .menu > ul > li:hover > a .fa-caret-down::before { content: "\f105";}
.commonmenulist ul.submenuWrapper li.left-submenufull a.leftfulllink:hover i::after {display: none;}
.header-item-center .menu {margin-right: 0px;}
.cls-headwidth .header-item-center .menu {margin-right: 0px;}


/*------ipad-------*/

.navbar-nav > li > a:hover {color: #1ac577 !important; background-color: #fcf9ff !important;}    
.navbar-nav > li:hover .clickD {color: #1ac577 !important;}
body .loancard_menu_left {padding-left: 0px !important; padding-right: 0px !important;}
.navbar-nav > li .sub-menu ul li a {padding: 12px 10px !important;}
body .navbar-nav > li .sub-menu ul li a:hover {color: #1ac577;} 

.header .menu > ul > li.menu-item-has-children:hover .menu-subs:before {display: none;}

}

@media only screen and (min-width: 992px) and (max-width: 1199px)
{ 

  body.cls-pageinner {padding-top: 70px !important;}

  .header-item-center .menu {margin-right: 0px; margin-left: 0px;}
  .header .menu > ul > li {padding-left: 11px;}
  .header .menu > ul > li > a {font-size: 14px;}
  .hedchatlink a {font-size: 14px; padding: 11px 10px;}
  .hedchatlink {margin-left: 7px; margin-right: 7px;}
  .hedhomelonebtn a {padding: 8px 10px;}
  .homelonelink {font-size: 14px; }
  .logbtn a {padding-left: 10px; padding-right: 10px;}

  .cls-headwidth .header .container { max-width: 960px;}

}

@media only screen and (max-width: 991px)
{
  
  body {padding-top:0px !important;}
  body.cls-pageinner {padding-top: 57px !important;}

  .login-btn {border: 0; padding: 0; display: inline-block; font-weight: normal;} 
  .login-btn a:hover {color: #1ac577; background:transparent;}
  .header {padding: 0px 0;}

  .header:hover:before {display: none;}

  .header.desktopheader {display: none !important;}
  .header.mobileheader {display: block !important;}

  .header {background-color:#fff;}
 .cls-homepgbannermob {display: none !important;}
 body .navbar-nav > li .sub-menu .sub-menu-heading {padding-left: 10px !important; padding-right: 10px !important;}
 body ul.navbar-nav li .clickD.toggled + .sub-menu {box-shadow: 0 1px 10px 0 rgba(0,0,0,.15) !important; border-top: 1px solid #ececec !important; background-color: #fcf9ff !important;}
 .navbar-nav > li .sub-menu .sub-menu-under ul li a::before {display: none;}
 .navbar-nav > li .sub-menu ul li span.clickD {width: 12px !important;}
 body .navbar-nav > li .sub-menu ul li a.cls-submenua {/*background-color: #f1f1f1 !important;*/ padding: 17px 12px !important;} 
 body .navbar-nav > li .sub-menu ul li a:hover.cls-submenua {background-color: #fff !important;}
.navbar-nav > li a.cls-marketplace span {font-size: 14px; color: #fff; background-color: #1AC577; border-radius: 3px; padding: 2px 4px; display: inline-block;
margin-left: 7px; line-height: normal; width: auto;}

.creditcard_menu_right ul {column-count: 1; column-gap: 12px;}
body .navbar-nav > li .sub-menu .sub-menu-heading {padding-left: 9px; padding-right: 9px;}
.cls-headwidth .header .container{max-width: inherit;}


}

@media only screen and (max-width: 767px)
{
 
 /*.header {background-color:#fff;}
 .cls-homepgbannermob {display: none !important;}
 body .navbar-nav > li .sub-menu .sub-menu-heading {padding-left: 10px !important; padding-right: 10px !important;}
 body ul.navbar-nav li .clickD.toggled + .sub-menu {box-shadow: 0 1px 10px 0 rgba(0,0,0,.15) !important; border-top: 1px solid #ececec !important; background-color: #fcf9ff !important;}
 .navbar-nav > li .sub-menu .sub-menu-under ul li a::before {display: none;}
 .navbar-nav > li .sub-menu ul li span.clickD {width: 12px !important;}
 body .navbar-nav > li .sub-menu ul li a.cls-submenua {background-color: #f1f1f1 !important; padding: 17px 12px !important;} 
 body .navbar-nav > li .sub-menu ul li a:hover.cls-submenua {background-color: #fff !important;}
.navbar-nav > li a.cls-marketplace span {font-size: 14px; color: #fff; background-color: #1AC577; border-radius: 3px; padding: 2px 4px; display: inline-block;
margin-left: 7px; line-height: normal;}
*/

  
}


.deskheaderright .sidesub-menu .box-row h6::before {
  content: "";
  width: 58px;
  height: 3px;
  position: absolute;
  bottom: -10px;
  z-index: 99;
  background-color: #1ac577;
  left: 0;
}


.ParsonalLoanes-divsdf::before{
  content: "";
  width: 58px;
  height: 3px;
  position: absolute;
  bottom: -10px;
  z-index: 99;
  background-color: #1ac577;
  left: 0;
}