/*milligram*/
*,
:after,
:before {
    box-sizing: inherit;
}
html {
    box-sizing: border-box;
    font-size: 62.5%;
}
body {
    color: #606c76;
    font-size: 1.6em;
    font-weight: 300;
    letter-spacing: .01em;
    line-height: 1.6;
}
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    background-color: #9b4dca;
    border: 0.1rem solid #9b4dca;
    border-radius: 0.4rem;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    height: 3.8rem;
    letter-spacing: 0.1rem;
    line-height: 3.8rem;
    padding: 0 3rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}
.button:focus,
.button:hover,
button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover {
    background-color: #606c76;
    border-color: #606c76;
    color: #fff;
    outline: 0;
}
.button[disabled],
button[disabled],
input[type="button"][disabled],
input[type="reset"][disabled],
input[type="submit"][disabled] {
    cursor: default;
    opacity: 0.5;
}
.button[disabled]:focus,
.button[disabled]:hover,
button[disabled]:focus,
button[disabled]:hover,
input[type="button"][disabled]:focus,
input[type="button"][disabled]:hover,
input[type="reset"][disabled]:focus,
input[type="reset"][disabled]:hover,
input[type="submit"][disabled]:focus,
input[type="submit"][disabled]:hover {
    background-color: #9b4dca;
    border-color: #9b4dca;
}
code {
    background: #f4f5f6;
    border-radius: 0.4rem;
    font-size: 86%;
    margin: 0 0.2rem;
    padding: 0.2rem 0.5rem;
    white-space: nowrap;
}
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 0.1rem solid #d1d1d1;
    border-radius: 0.4rem;
    box-shadow: none;
    box-sizing: inherit;
    height: 3.8rem;
    padding: 0.6rem 1rem;
    width: 100%;
}
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus,
select:focus {
    border-color: #9b4dca;
    outline: 0;
}
.button,
button,
dd,
li {
    margin-bottom: 1rem;
}
input,
select {
    margin-bottom: 1.5rem;
}
dl,
form,
p,
table,
ul {
    margin-bottom: 2.5rem;
}
dl dl, dl ul, ul dl, ul ul {
    font-size: 90%;
    margin: 1.5rem 0 1.5rem 3rem;
}
a:focus,
a:hover {
    color: #606c76;
}

b {
    font-weight: 700;
}
p {
    margin-top: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
    letter-spacing: -0.1rem;
    margin-bottom: 2rem;
    margin-top: 0;
}
h1 {
   
    line-height: 1.2;
}
h2 {
  
    line-height: 1.25;
}
h3 {

    line-height: 1.3;
}
h4 {
    
    letter-spacing: -0.08rem;
    line-height: 1.35;
}
h5 {
    
    letter-spacing: -0.05rem;
    line-height: 1.5;
}
h6 {
    
    letter-spacing: 0;
    line-height: 1.4;
}
.container {
  margin: 0 auto;
  max-width: 112rem;
  padding: 0 2rem;
  position: relative;
  width: 100%;
}
.row {
  display: flex;
  flex-direction: column;
  padding: 0;
  width: 100%;
}
.row.row-no-padding {
  padding: 0;
}
.row.row-no-padding > .column {
  padding: 0;
}
.row.row-wrap {
  flex-wrap: wrap;
}
.row.row-top {
  align-items: flex-start;
}
.row.row-bottom {
  align-items: flex-end;
}
.row.row-center {
  align-items: center;
}
.row.row-stretch {
  align-items: stretch;
}
.row.row-baseline {
  align-items: baseline;
}
.row .column {
  display: block;
  flex: 1 1 auto;
  margin-left: 0;
  max-width: 100%;
  width: 100%;
}
.row .column.column-offset-10 {
  margin-left: 10%;
}
.row .column.column-offset-20 {
  margin-left: 20%;
}
.row .column.column-offset-25 {
  margin-left: 25%;
}
.row .column.column-offset-33,
.row .column.column-offset-34 {
  margin-left: 33.3333%;
}
.row .column.column-offset-50 {
  margin-left: 50%;
}
.row .column.column-offset-66,
.row .column.column-offset-67 {
  margin-left: 66.6666%;
}
.row .column.column-offset-75 {
  margin-left: 75%;
}
.row .column.column-offset-80 {
  margin-left: 80%;
}
.row .column.column-offset-90 {
  margin-left: 90%;
}
.row .column.column-10 {
  flex: 0 0 10%;
  max-width: 10%;
}
.row .column.column-20 {
  flex: 0 0 20%;
  max-width: 20%;
}
.row .column.column-25 {
  flex: 0 0 25%;
  max-width: 25%;
}
.row .column.column-33,
.row .column.column-34 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}
.row .column.column-40 {
  flex: 0 0 40%;
  max-width: 40%;
}
.row .column.column-50 {
  flex: 0 0 50%;
  max-width: 50%;
}
.row .column.column-60 {
  flex: 0 0 60%;
  max-width: 60%;
}
.row .column.column-66,
.row .column.column-67 {
  flex: 0 0 66.6666%;
  max-width: 66.6666%;
}
.row .column.column-75 {
  flex: 0 0 75%;
  max-width: 75%;
}
.row .column.column-80 {
  flex: 0 0 80%;
  max-width: 80%;
}
.row .column.column-90 {
  flex: 0 0 90%;
  max-width: 90%;
}
.row .column .column-top {
  align-self: flex-start;
}
.row .column .column-bottom {
  align-self: flex-end;
}
.row .column .column-center {
  -ms-grid-row-align: center;
  align-self: center;
}
img {
  max-width: 100%;
}
@media (min-width: 40rem) {
  .row {
    flex-direction: row;
    margin-left: -1rem;
    width: calc(100% + 2rem);
  }
  .row .column {
    margin-bottom: inherit;
    padding: 0 1rem;
  }
}
a {
  color: #0073bb;
  text-decoration: none;
}
a:focus,
a:hover {
  color: #606c76;
}
th {
    border-bottom: 0.1rem solid #e1e1e1;
    padding: 1.2rem 1.5rem;
    text-align: left;
}

/*milligram*/


@font-face{font-display:swap;font-family:Lato-Light;src:url(../fonts/Lato-Light_gdi.eot);src:url(../fonts/Lato-Light_gdi.eot?#iefix) format('embedded-opentype'),url(../fonts/Lato-Light_gdi.woff) format('woff'),url(../fonts/Lato-Light_gdi.ttf) format('truetype'),url(../fonts/Lato-Light_gdi.svg#Lato-Light) format('svg');font-weight:300;font-style:normal;font-stretch:normal;unicode-range:U+000D-25CA}@font-face{font-display:swap;font-family:Lato-Regular;src:url(../fonts/Lato-Regular_gdi.eot);src:url(../fonts/Lato-Regular_gdi.eot?#iefix) format('embedded-opentype'),url(../fonts/Lato-Regular_gdi.woff) format('woff'),url(../fonts/Lato-Regular_gdi.ttf) format('truetype'),url(../fonts/Lato-Regular_gdi.svg#Lato-Regular) format('svg');font-weight:400;font-style:normal;font-stretch:normal;unicode-range:U+000D-25CA}@font-face{font-display:swap;font-family:Lato-Bold;src:url(../fonts/Lato-Bold_gdi.eot);src:url(../fonts/Lato-Bold_gdi.eot?#iefix) format('embedded-opentype'),url(../fonts/Lato-Bold_gdi.woff) format('woff'),url(../fonts/Lato-Bold_gdi.ttf) format('truetype'),url(../fonts/Lato-Bold_gdi.svg#Lato-Bold) format('svg');font-weight:700;font-style:normal;font-stretch:normal;unicode-range:U+000D-25CA}@font-face{font-display:swap;font-family:Lato-Italic;src:url(../fonts/Lato-Italic.eot);src:url(../fonts/Lato-Italic.eot?#iefix) format('embedded-opentype'),url(../fonts/Lato-Italic.woff) format('woff'),url(../fonts/Lato-Italic.ttf) format('truetype'),url(../fonts/Lato-Italic.svg#Lato-Bold) format('svg');font-weight:700;font-style:normal;font-stretch:normal;unicode-range:U+000D-25CA}@font-face{font-display:swap;font-family:rupee_foradianregular;src:url(../fonts/rupee_foradian-webfont.woff2) format('woff2'),url(../fonts/rupee_foradian-webfont.woff) format('woff');font-weight:400;font-style:normal}.rupee{font-family:rupee_foradianregular;line-height:1em;font-size:1em}body{font-size:100%;font-family:Lato-Regular;-webkit-font-smoothing:antialiased;background:#fffefe}body,h1,h2,h3,h4,h5,h6,input,li,ol,p,ul{margin:0;padding:0;list-style:none}a{text-decoration:none;outline:0;cursor:pointer}input[type=submit]{-webkit-appearance:none}a.selected{color:#333}a:hover.selected{text-decoration:none}img{border:none}html{width:100%;overflow-x:hidden;-webkit-text-size-adjust:100%}input,p{font-size:1.1em;color:#5e6061}h1{font-size:1.8em;line-height:1.2em}h2{font-size:1.5em}h3,h3 a{font-size:1.2em}h4,h4 a{font-size:1.2em}h5,h5 a{font-size:1.2em}h6,h6 a{font-size:1.2em}h3 a,h4 a,h5 a,h6 a{font-size:1em;text-decoration:underline}table,table tr td,table tr th{border:none}.clearfix:after{content:".";clear:both;visibility:hidden;line-height:0;height:0}* html .clearfix{height:1%}*{-webkit-tap-highlight-color:transparent;border:none;-webkit-border-radius:0}.clear{font-size:1%;height:0;line-height:0;width:0;float:none;clear:both}input{outline:0}article,aside,canvas,details,figcaption,figure,footer,header,hgroup,mark,menu,nav,section,summary{display:block;width:100%}strong{font-family:Lato-Bold;font-weight:400}#jpreOverlay{background-color:#fff}#jpreSlide{font-size:22px;font-weight:700;color:#ccc;text-align:center;width:100%;height:100%}#jpreLoader{width:100%;height:5px;position:absolute;top:0}#jpreBar{background:#da251c;animation:progress .5s linear infinite;-moz-animation:progress .5s linear infinite;-webkit-animation:progress .5s linear infinite;-ms-animation:progress .5s linear infinite;-o-animation:progress .5s linear infinite}#jprePercentage{color:#000;text-align:center;top:-100%;display:none}@-webkit-keyframes progress{from{background-position:0 0}to{background-position:-60px -60px}}@-moz-keyframes progress{from{background-position:0 0}to{background-position:-60px -60px}}@-ms-keyframes progress{from{background-position:0 0}to{background-position:-60px -60px}}@-o-keyframes progress{from{background-position:0 0}to{background-position:-60px -60px}}@keyframes progress{from{background-position:0 0}to{background-position:-60px -60px}}
/*reset*/
.bodWrapper, .buttonClick, .rhsBoxDetailWrap, .third_navWrap, a.link, ul.fixedUL li, ul.footerUL_02 > li > a, ul.navUL > li > a, ul.plansUL li input[type=text], ul.shareUL li a { transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; -ms-transition: all ease .3s } .ui-widget-header { background: #da251c !important } h1 { font-size: 4.2em; color: #5e6061; font-weight: 400; padding: 0; margin: 0 auto 20px auto; text-align: center; position: relative; padding-bottom: 15px; font-family: Lato-Light; letter-spacing: 1px; } .leftData h1, h2 { font-size: 3.4em; color: #5e6061; font-weight: 400; padding: 0; margin: 0 0 20px 0;} .leftData h1 { text-align: left } p { line-height: 1.4em } header { width: 100%; float: left; height: 120px; background: #da251c; padding: 0 30px; box-sizing: border-box; position: fixed; z-index: 5; left: 0; top: 0; transition: all ease .6s; -webkit-transition: all ease .6s; -moz-transition: all ease .6s; -o-transition: all ease .6s } header.scrollActive { top: -200px } html.bodyScrollHide { overflow: hidden; height: 100% } .nicescroll-rails { z-index: 999 !important } .vCenterWrap { display: table-cell; vertical-align: middle } .logoW { height: 120px; display: table; padding: 0; width: 20%; box-sizing: border-box; float: left } .rhsNav { width: 20%; padding: 0; float: right; height: 120px; display: table } ul.navRhs { width: auto; float: right } ul.navRhs > li { width: auto; float: left; margin: 0 30px } ul.navRhs li:nth-child(2n) { margin-right: 0 } ul.navRhs > li > a { color: #fff; box-sizing: border-box; font-size: 1.8em; height: 35px; display: table-cell; vertical-align: middle; position: relative; font-family: Lato-Bold } ul.navRhs > li > a.telBtn { padding-left: 40px } ul.navRhs > li > a.telBtn:after { width: 30px; height: 35px; content: ''; position: absolute; left: 0; top: 2px; background: url(../images/sprite.png) no-repeat -50px 0; display: block } ul.navRhs > li > a.searchBtn { text-indent: -99px; overflow: hidden; width: 35px; overflow: hidden; transition: all ease .5s; -webkit-transition: all ease .5s; -moz-transition: all ease .5s; -o-transition: all ease .5s } ul.navRhs > li > a.searchBtn span { opacity: 0 } ul.navRhs > li > a.searchBtn:after { width: 30px; height: 35px; content: ''; position: absolute; left: 0; top: 2px; background: url(../images/sprite.png) no-repeat 0 0; display: block } ul.navRhs > li > a.searchBtn.selected { opacity: 0 } ul.navRhs > li.mobileMenu { display: none } ul.navRhs > li.mobileMenu a { width: 40px; height: 40px; border-top: 4px solid #fff; position: relative; text-indent: -99px; overflow: hidden } ul.navRhs > li.mobileMenu a:after { position: absolute; width: 100%; height: 4px; background: #fff; content: ''; display: block; left: 0; top: 8px } ul.navRhs > li.mobileMenu a:before { position: absolute; width: 100%; height: 4px; background: #fff; content: ''; display: block; left: 0; top: 20px } .navWrap { width: 60%; float: left } nav { width: 100%; float: left } ul.navUL { width: auto; margin: 0 auto; display: table } ul.navUL > li { width: auto; float: left; height: 120px; display: table }
 ul.navUL > li > a { display: table-cell; vertical-align: middle; padding: 0 30px; box-sizing: border-box; color:
 #fff; font-size: 2em; font-family: Lato-Bold; 
 border-right: 1px solid #dd362e }
 ul.navUL > li:first-child > a { border-left: 1px solid #dd362e } ul.navUL li.activeMenu > a, ul.navUL > li > a.selected, ul.navUL > li > a:hover, ul.second_navUL > li > a:hover { background: #fff; color: #da251c } ul.navUL > li > a.selected { box-shadow: 0 0 18px -5px #760702; -webkit-box-shadow: 0 0 18px -5px #760702; -moz-box-shadow: 0 0 18px -5px #760702; -o-box-shadow: 0 0 18px -5px #760702 } .second_navWrap { width: 100%; float: left; background: #fff; padding: 0; position: absolute; top: 120px; left: 0; border-bottom: 1px solid #cecfcf } ul.second_navUL { width: auto; margin: 0 auto; display: table } ul.second_navUL > li { width: auto; float: left; margin: 0 15px } ul.second_navUL > li .linkAcrd { width: 100%; float: left } ul.second_navUL > li.thirdLevel .linkAcrd a, ul.second_navUL > li > a { color: #08315f; font-size: 1.4em; float: left; font-family: Lato-Bold; padding: 20px 0 } ul.second_navUL > li.thirdLevel .linkAcrd a, ul.second_navUL > li.thirdLevel > a { padding-right: 20px; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; position: relative } ul.second_navUL > li.thirdLevel .linkAcrd a:after, ul.second_navUL > li.thirdLevel > a:after { width: 11px; height: 10px; content: ''; position: absolute; right: 0; top: 50%; background: url(../images/spriteImg.webp) no-repeat -208px -29px; margin-top: -3px } ul.second_navUL > li.thirdLevel.activeMenu > a:after, ul.second_navUL > li.thirdLevel:hover .linkAcrd a:after, ul.second_navUL > li.thirdLevel:hover > a:after, ul.second_navUL > li.thirdLevel > a.selected:after { color: #da251c; background-position: -208px 0 } ul.second_navUL > li.thirdLevel:hover .linkAcrd a { color: #da251c } ul.second_navUL > li.thirdLevel .linkAcrd a:hover, ul.second_navUL > li.thirdLevel.activeMenu > a, ul.second_navUL > li.thirdLevel > a:hover { background-position: right 28px } ul.second_navUL > li.thirdLevel.activeMenu .linkAcrd a { color: #da251c; background-position: -208px 0 } ul.second_navUL > li.thirdLevel .linkAcrd a:hover, ul.second_navUL > li.thirdLevel .linkAcrd a:hover:after, ul.second_navUL > li.thirdLevel.activeMenu .linkAcrd a:after { color: #da251c; background-position: -208px 0 } .third_navWrap { width: 100%; float: left; position: absolute; left: 0; top: 50px; box-shadow: 0 12px 22px -14px #ccc; z-index: -1; visibility: hidden; opacity: 0; background: #fff } ul.second_navUL > li:hover > .third_navWrap { top: 0; opacity: 1; visibility: visible } ul.third_navUL { width: auto; margin: 80px auto 15px; display: table } ul.third_navUL > li { width: auto; padding: 0 5px 0 5px; box-sizing: border-box; max-width: 320px; position: relative; float: left; margin: 15px 0 } ul.third_navUL > li > a { float: left; height: 100%; display: table } ul.third_navUL > li > a span { display: table-cell; vertical-align: middle } ul.third_navUL > li > a > img { width: 50px; float: left; position: relative; left: -10px } ul.third_navUL > li > ul { padding-left: 50px; box-sizing: border-box; margin: 0 0 10px 0 } ul.third_navUL > li:after { width: 1px; height: 100%; background: #cecfcf; position: absolute; left: 0; bottom: 0; content: ''; display: block } ul.third_navUL > li:first-child:after { display: none } ul.third_navUL3 > li { width: 315px; max-width: none; min-height: 150px } ul.third_navUL3 > li:nth-child(4n+1) { clear: both } ul.third_navUL3 > li.borderNoneLI { clear: both } ul.third_navUL3 > li.borderNoneLI:after { display: none } ul.third_navUL3 > li:nth-child(4n+1):after { display: none } ul.third_navUL03 > li { width: 315px; max-width: none } ul.third_navUL03 > li:nth-child(4n+1) { clear: both } ul.third_navUL03 > li.borderNoneLI { clear: both } ul.third_navUL03 > li.borderNoneLI:after { display: none } ul.third_navUL03 > li:nth-child(4n+1):after { display: none } ul.third_navUL4 > li { width: 298px !important; max-width: none;display: flex;gap: 4px;} ul.third_navUL4 > li:nth-child(4n+1) { clear: both } ul.third_navUL4 > li.borderNoneLI { clear: both } ul.third_navUL4 > li.borderNoneLI:after { display: none } ul.third_navUL4 > li:nth-child(4n+1):after { display: none } ul.third_navUL > li .imgSrc { width: 100%; float: left; text-align: center; padding: 0 50px 0 0; box-sizing: border-box } ul.third_navUL > li h3, ul.third_navUL > li > a { color: #5e6061; font-size: 1.4em; font-family: Lato-Bold; font-weight: 400; margin: 0; float: left; width: auto } ul.third_navUL > li > a.selected, ul.third_navUL > li > a:hover, ul.third_navUL_subnav > li > a.selected { color: #da251c } ul.third_navUL > li a.viewAll { color: #da251c; font-size: 1.4em; font-family: Lato-Bold; font-weight: 400; margin: 0 0 0 50px; float: left; width: auto; line-height: 1.6em } ul.third_navUL_subnav, ul.third_navUL_subnav > li { width: 100%; float: left } ul.third_navUL_subnav > li { margin: 5px 0 } ul.third_navUL_subnav > li > a { font-size: 1.4em; color: #5e6061; padding-left: 10px; float: left; position: relative } ul.third_navUL_subnav > li > a:after { content: ''; width: 5px; height: 8px; background: url(../images/spriteImg.webp) no-repeat -393px 0; left: 0; top: 7px; display: block; position: absolute } ul.third_navUL_subnav > li > a.selected:after, ul.third_navUL_subnav > li > a:hover:after { background-position: -393px -28px } .topNavMenu { display: none } ul.third_navUL_subnav > li > a:hover { color: #da251c } .rhsFixed_Wrapper { position: fixed; right: 0; bottom: 0; z-index: 4; } .rhsFixed_nav { position: fixed; right: 0; bottom: 0; height: 100%; width: 85px; background: #08315f; display: table } ul.fixedUL { display: table-cell; vertical-align: bottom; width: 100% } ul.fixedUL li { width: 100%; float: left; text-align: center; height: 150px; background: url(../images/fixedLi.jpg) repeat-x 0 bottom; display: table } ul.fixedUL li.selected { background: #da251c } ul.fixedUL li a { width: 100%; display: table-cell; vertical-align: bottom; padding: 25px 5px 25px 5px; box-sizing: border-box; font-size: 1.4em; color: #fff; position: relative } ul.fixedUL li a:before { width: 50px; height: 40px; position: relative; top: 0; left: 50%; background: url(../images/spriteImg.webp) no-repeat 0 0; content: ''; display: block; clear: both; margin: 0 0 5px -18px } ul.fixedUL li a.login:before { background-position: -469px -337px } ul.fixedUL li .buyOnline:before { background-position: 0 0 } ul.fixedUL li a.getCall:before { background-position: -465px -242px } ul.fixedUL li a.joinusIcon:before { background-position: -392px -370px } .buttonClick, a.link { width: auto; float: left; padding: 0 20px; text-transform: uppercase; color: #da251c; font-size: 1.4em; border: 1px solid #da251c; border-radius: 50px; margin: 0 10px 0 0; letter-spacing: 1px; min-width: 150px; text-align: center; box-sizing: border-box; line-height: 50px; height: 50px; text-align: center } a.link:hover { color: #fff; background: #da251c } .buttonClick { color: #fff; background: #da251c; border: none } .buttonClick:hover { background: #fc453c } a.closePopup { float: left; margin: 0 0 25px 0; width: 36px; height: 36px; overflow: hidden; position: relative; top: 0; left: 0; background: 0 0; font-size: 1.4em; color: #da251c; line-height: 30px; padding-left: 45px; line-height: 36px } .closePopup span:after { border: 1px solid #da251c; box-sizing: border-box; border-radius: 100px; margin: 0; padding: 0; transition: all ease .5s; -webkit-transition: all ease .5s; -moz-transition: all ease .5s; -o-transition: all ease .5s; content: ''; display: block; position: absolute; left: 0; top: 0; height: 36px; width: 36px; box-sizing: border-box } .closePopup:after, .closePopup:before { width: 20px; height: 1px; background: #da251c; content: ''; display: block; position: absolute; left: 8px; top: 17px; transform: rotate(45deg); -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -o-transform: rotate(45deg); transition: all ease .5s; -webkit-transition: all ease .5s; -moz-transition: all ease .5s; -o-transition: all ease .5s } a.closePopup:before { transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg) } a.closePopup:hover:after { transform: rotate(225deg); -webkit-transform: rotate(225deg); -moz-transform: rotate(225deg); -o-transform: rotate(225deg) } a.closePopup:hover:before { transform: rotate(135deg); -webkit-transform: rotate(135deg); -moz-transform: rotate(135deg); -o-transform: rotate(135deg) } .rhsBoxDetailWrap { background: #fff; position: fixed; right: -650px; width: 650px; z-index: -1 } .rhsBoxDetailWrap.activate { right: 0 } .rhsBoxDetails { position: absolute; left: 0; bottom: 0; width: 100%; height: 100% } .rhsboxWrap { padding: 10px 85px 40px 35px; box-sizing: border-box; border: 1px solid #fff; width: 100%; float: left; height: 100%; position: relative; display: none } .midContBox { width: 100%; float: left } .midContBox h3 { width: 100%; float: left; color: #5e6061; font-size: 3em; font-weight: 400 } .midContBox p { width: 100%; float: left; color: #5e6061; font-size: 2em; font-weight: 400; margin: 15px 0 } ul.plansUL { width: 100%; float: left; border-top: 1px solid #efefef } ul.plansUL li { float: left; width: 50%; padding: 0 25px 40px 0; box-sizing: border-box; margin: 15px 0; position: relative } ul.plansUL li .linkWrap { position: absolute; left: 20px; bottom: 0 } ul.plansUL li h3 { font-size: 2em } ul.plansUL li p { font-size: 1.6em; margin-bottom: 25px } ul.plansUL li .img { width: 25%; float: left } ul.plansUL li .img img { max-width: 120px; float: left; width: 100% } ul.plansUL li .contDesc { width: 75%; float: left; padding-left: 20px; box-sizing: border-box; position: relative; padding-bottom: 40px } .rhsboxWrap ul.plansUL li { width: 100%; padding: 0; box-sizing: border-box } .rhsboxWrap .midBoxWrap { width: 100%; float: left; padding-right: 35px; box-sizing: border-box } .rhsboxWrap .midContBox p { opacity: .7 } .rhsboxWrap ul.plansUL li p { opacity: 1 } .rhsboxWrap a.onlineBuy { background: #da251c; color: #fff } .rhsboxWrap a.onlineBuy:hover { background: #fc453c } ul.getCallUL { padding-top: 15px; margin-bottom: 15px } ul.getCallUL li { padding: 0; margin: 12px 0; min-height: 50px; height: auto !important } .uploadBtn, input[type=file], input[type=text] { width: 100%; float: left; height: 50px; line-height: 50px; padding: 0 25px; box-sizing: border-box; border: 1px solid #c9caca; border-radius: 50px; color: #5e6061; font-size: 1.6em; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; background: 0 0; font-family: Lato-Regular } textarea { width: 100%; float: left; height: 130px; line-height: 1.4em; padding: 15px 25px; box-sizing: border-box; border: 1px solid #c9caca; border-radius: 30px; color: #5e6061; font-size: 1.6em; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; resize: none; font-family: Lato-Regular; overflow-x: hidden; background: 0 0; outline: 0 } .checkbx { width: 100%; float: left; padding: 0; color: #5e6061 } .checkbx label { position: relative; padding-left: 30px; width: auto; float: left; box-sizing: border-box; cursor: pointer; line-height: 1.4em; font-size: 1.6em } .checkbx label span { position: absolute; left: 0; top: 4px; width: 22px; height: 22px; background: url(../images/checkbox.png) no-repeat 0 0 } .checkbx input[type=checkbox] { opacity: 0; position: absolute } .checkbx input[type=checkbox]:checked + span { background-position: 0 -45px } input[type=text]:hover { border-color: #000 } .searchBox input[type=text]:hover { border-color: #c9caca } .selectbg select { -moz-opacity: 0; -khtml-opacity: 0; opacity: 0; cursor: pointer; width: 100%; height: 50px; line-height: 60px; position: absolute; top: 0; z-index: 5; font-size: 16px; padding: 0 15px; left: 0; color: #5e6061; box-sizing: border-box } .selectbg { float: left; height: 50px; position: relative; width: 100%; top: 0; left: 0 } .selectedvalue { width: 100%; float: left; padding: 0 70px 0 20px; box-sizing: border-box; color: #5e6061; font-size: 1.6em; border: 1px solid #c9caca; line-height: 50px; height: 50px; border-radius: 5px; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; text-align: left; border-radius: 50px; overflow: hidden } .selectedvalue:after { width: 1px; height: 100%; position: absolute; top: 0; right: 60px; background: #c9caca; content: ''; display: block } .selectedvalue:before { border-style: solid; border-width: 2px; border-color: transparent transparent #c9caca #c9caca; top: 17px; content: ''; right: 26px; margin: 0 0 0 -2px; position: absolute; transition: all .2s ease-in-out 0s; -webkit-transition: all .2s ease-in-out 0s; -moz-transition: all .2s ease-in-out 0s; -o-transition: all .2s ease-in-out 0s; width: 8px; height: 8px; z-index: 2; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg) } .selectbg:hover .selectedvalue { border-color: #000 } .selectbg:hover .selectedvalue:after { background: #000 } .selectbg:hover .selectedvalue:before { border-color: transparent transparent #000 #000 } .selectbg select option { width: 100%; float: left; padding: 8px 15px; box-sizing: border-box } footer { background: #f4f4f4; width: 100%; float: left; position: relative; top: 177px; padding: 40px 85px 20px 0; box-sizing: border-box } .sitemapWrap { padding-bottom: 40px } .rowEle { width: 100%; float: left } .midWrapper { width: 1150px; margin: 0 auto } ul.footerUL { width: 100%; float: left; margin: 0 0 40px 0 } ul.footerUL > li { width: 33.33%; float: left; padding: 0 25px; box-sizing: border-box } ul.footerUL > li:last-child { padding: 0 0 0 25px } ul.footerUL_00 > li { width: 100%; float: left; border-top: 1px solid #cecfcf; padding: 15px 0 } ul.footerUL_00 > li:first-child { border: none } ul.footerUL > li > a, ul.footerUL_00 > li > a { color: #08315f; font-size: 1.8em; font-family: Lato-Bold; letter-spacing: 1px } ul.footerUL > li > a { margin: 0 0 10px 0; float: left } ul.footerUL_01 { width: 100%; float: left; padding: 0; box-sizing: border-box; margin: 10px 0 0 } ul.footerUL_01 > li { margin: 0 0 10px 0; width: 100%; float: left } ul.footerUL_01 > li > a { color: #5e6061; font-size: 1.4em; font-family: Lato-Bold; float: left; margin: 0 } ul.footerUL_02 { margin: 5px 0 0 0; width: 100%; float: left; padding: 0; box-sizing: border-box } ul.footerUL_02 > li { margin: 5px 0; width: 100%; float: left } ul.footerUL_02 > li > a { color: #5e6061; font-size: 1.4em; padding-left: 15px; box-sizing: border-box; float: left; position: relative } ul.footerUL_02 > li > a:after { content: ''; width: 5px; height: 8px; background: url(../images/spriteImg.webp) no-repeat -393px 0; left: 0; top: 5px; display: block; position: absolute; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } ul.footerUL_02 > li > a:hover { color: #23282b } ul.footerUL_02 > li > a:hover:after { left: 3px } ul.footerUL_00 > li.shareOnLI { line-height: 21px } ul.footerUL_00 > li.shareOnLI span { float: left; color: #87898a; font-size: 1.4em; letter-spacing: 1px; margin: 0 20px 0 0 } ul.shareUL { width: auto; margin: 0 auto; display: table } .mediaInner ul.shareUL { display: block } ul.shareUL li { float: left; margin-right: 15px; width: 30px; font-size: 1.4em; color: #5e6061 } ul.shareUL li:first-child { width: auto; line-height: 30px } ul.shareUL li a { width: 100%; float: left; height: 30px; text-indent: -99px; overflow: hidden; background: url(../images/spriteImg.webp) no-repeat -167px -245px; background-size: 500px auto; width: 30px } ul.shareUL li a.linkedin { background-position: 0 -245px } ul.shareUL li a.linkedin:hover { background-position: 0 -293px } ul.shareUL li a.twt { background-position: -58px -243px } ul.shareUL li a:hover { background-position: -167px -293px } ul.shareUL li a.twt:hover { background-position: -58px -293px } ul.shareUL li a.mail { background-position: -223px -241px } ul.shareUL li a.mail:hover { background-position: -223px -293px } ul.shareUL li a.youtube { background-position: -112px -242px } ul.shareUL li a.youtube:hover { background-position: -112px -290px } .footerBox { width: 100%; float: left; border: 1px solid #bdbebf; margin: 25px 0 } ul.footerLinksUL { width: auto; float: left } ul.footerLinksUL li { width: auto; float: left; width: auto; margin: 15px 0; text-align: center; float: left; font-size: 1.4em; color: #5e6061 } ul.footerLinksUL li a { color: #5e6061; width: 100%; box-sizing: border-box; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; font-size: 1em; border-left: 1px solid #bdbebf; padding: 0 10px } ul.footerLinksUL li a.selected, ul.footerLinksUL li a:hover { color: #3f4242 } ul.footerLinksUL li.footerHead { border: none; padding: 0 10px; font-family: Lato-Bold } ul.footerLinksUL li a.secondLI { border: none } ul.footerLinksUL02 { float: right } ul.footerLinksUL02 li { margin: 0; border-left: 1px solid #bdbebf } ul.footerLinksUL02 li a { border: none; padding: 15px 10px; float: left } .btmDesc { width: 100%; float: left; border-bottom: 1px solid #d9d9da; box-sizing: border-box; padding: 0 0 25px 0; margin: 0 0 25px 0 } .btmDesc h4, footer p { color: #87898a; font-size: 1.3em; margin: 20px 0 0 0; width: 100%; float: left; line-height: 1.5em } .btmDesc h4 { font-family: Lato-Bold; margin: 10px 0 0 0 } .btmDesc a { color: #87898a; text-decoration: none; word-break: break-word } footer p { margin: 10px 0 0 0;color: #595959; } ul.btmlinks { width: 100%; float: left } ul.btmlinks li { width: auto; float: left; margin: 0 0 10px 0; padding: 0 10px 0 5px; box-sizing: border-box; position: relative } ul.btmlinks li a { color: #87898a; font-size: 1.4em; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; padding: 0 5px } ul.btmlinks li a:hover, ul.btmlinks li.selected a { color: #23282b } ul.btmlinks li:after { width: 5px; height: 5px; background: #87898a; border-radius: 5px; position: absolute; left: 0; top: 6px; content: ''; display: block } ul.btmlinks li.selected:after, ul.btmlinks li:hover:after { background: #23282b } .overlay { width: 100%; height: 100%; position: fixed; background: rgba(0, 0, 0, .6); left: 0; top: 0; z-index: 0; display: none } .search_overlay { z-index: 2 } .bodyScrollHide .overlay { z-index: 2 } html.fixedHT { height: 100%; overflow: hidden } section { width: 100%; float: left; position: relative; top: 177px; z-index: 0 } article { width: 100%; float: left; padding-right: 80px; box-sizing: border-box } .banner { height: 500px; position: relative; overflow: hidden; float: left; padding: 0 } .banner .video, .banner .video img { width: 100%; float: left } .banner .video { position: absolute; height: 100% } .banner .video img { position: absolute; bottom: 0 } ul.bannerUL { width: 100%; float: left; height: 100%; position: relative; position: relative } ul.bannerUL li { width: 100%; float: left; height: 100%; box-sizing: border-box; position: absolute; padding: 0; box-sizing: border-box } ul.bannerUL li .slideBox { width: 100%; float: left; background: rgba(147, 149, 152, .7); height: 100%; position: relative; z-index: 1 } ul.bannerUL li .midWrapper { height: 100% } ul.bannerUL li .bannerCont { height: 100%; float: left; display: table; width: 45%; position: relative; z-index: 5 } ul.bannerUL li h2 { color: #fff; font-size: 4em; width: 100%; float: left; font-weight: 400; line-height: 1em } ul.bannerUL li p { color: #fff; font-size: 1.8em; width: 100%; float: left; margin: 10px 0 50px 0 } ul.bannerUL li p strong { font-size: 1em; color: #da251c } ul.bannerUL li a { background: #da251c; color: #fff } ul.bannerUL li a:hover { border-color: #fff; background: #fff; color: #da251c } .banner .vidDiv { width: 100%; height: 100%; float: left; position: absolute; left: 0; top: 0; background-size: cover; background-position: right center } .banner .vidDiv img.posterImg { position: relative; left: 50%; top: 50%; width: 100%; z-index: 0; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%); display: none; visibility: hidden } .mobileBannerImg { display: none } .banner video { width: 100%; height: auto; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%); margin-top: 50px; z-index: 1 } ul.sliderNav { position: absolute; bottom: 20px; z-index: 2; left: 47%; transform: translateX(-50%); -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); -o-transform: translateX(-50%) } ul.sliderNav li { width: auto; float: left; margin: 0 5px } ul.sliderNav li a { text-indent: -99px; width: 12px; height: 12px; float: left; overflow: hidden; border-radius: 12px; border: 1px solid #fff; position: relative; box-sizing: border-box } ul.sliderNav li a:after { width: 0; height: 0; border-radius: 0; background: #fff; content: ''; display: block; position: absolute; left: 50%; top: 50%; margin: 0; opacity: 0; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } ul.sliderNav li a.activate:after, ul.sliderNav li a:hover:after { width: 12px; height: 12px; border-radius: 12px; margin: -6px 0 0 -6px; opacity: 1 } .home article { padding: 60px 85px 60px 0; float: left; box-sizing: border-box } .home article.insuranceGuide { padding-bottom: 100px } .home .banner { padding: 0 85px 0 0 } .midWrap, .testimonialWrap, ul.testimonialUL { width: 100%; float: left } .testimonialWrap { position: relative; padding: 0 40px; box-sizing: border-box; overflow: hidden } ul.testimonialUL li { width: 50%; float: left; padding: 15px; box-sizing: border-box; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; margin: 0 } ul.testimonialUL li:nth-child(2n+1) { clear: left } ul.testimonialUL li p { font-size: 2em; color: #5e6061; width: 70%; float: left } ul.testimonialUL li .img { width: 170px; height: 170px; border-radius: 160px; float: left; overflow: hidden; position: relative; margin-right: 30px } ul.testimonialUL li .img img { width: 100%; float: left } ul.testimonialUL li .img:after { width: 0; height: 0; background: rgba(218, 37, 28, .15); position: absolute; left: 50%; top: 100%; content: ''; display: block; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; border-radius: 100% } ul.testimonialUL li .testimonialMidBox { width: 100%; float: left; padding: 30px; box-sizing: border-box; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; cursor: pointer; position: relative } ul.testimonialUL li .testimonialMidBox:hover { background: #ededed } ul.testimonialUL li .testimonialMidBox:hover .img:after { width: 100%; height: 100%; left: 0; top: 0 } ul.testimonialUL li .details { width: auto; float: none; margin-left: 30px; height: 170px; position: relative } ul.testimonialUL li .details p { width: auto; float: none; width: auto; padding-bottom: 10px; font-size: 1.6em; color: #5e6061 } ul.testimonialUL li .details h3 { color: #5e6061; font-size: 1.4em; font-weight: 400; font-family: Lato-Italic; width: auto; float: left } ul.testimonialUL li .details .vidIcon { float: right; width: auto; position: relative; top: 7px } ul.testimonialUL01 li { padding: 0 40px; margin: 0 0 30px 0 } ul.testimonialUL01 li:nth-child(4n-1) { clear: left } ul.testimonialUL01 li .img { width: 30%; float: left; margin: 0; border-radius: 0; height: auto } ul.testimonialUL01 li .img img { width: 100%; margin-bottom: 15px } ul.testimonialUL01 li .details { width: 70%; float: left; margin: 0; padding-left: 25px; box-sizing: border-box; height: auto } ul.testimonialUL01 li .details p { padding-bottom: 20px } ul.testimonialUL01 li .details h3 { width: 100%; margin: 0; line-height: 1.5em } .plusIcon { width: 0; height: 0; border-radius: 40px; position: absolute; bottom: 30px; left: 113px; background: #da251c; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } .plusIcon a, .plusIcon span { width: 12px; height: 12px; position: absolute; left: 50%; top: 50%; margin: -6px 0 0 -6px; text-indent: -99px; overflow: hidden; opacity: 0; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } .plusIcon a:after, .plusIcon span:after { content: ''; width: 100%; height: 2px; background: #fff; position: absolute; left: 0; top: 50%; margin-top: -1px } .plusIcon a:before, .plusIcon span:before { content: ''; width: 2px; height: 100%; background: #fff; position: absolute; left: 50%; top: 0; margin-left: -1px } ul.bodUL li a:hover .plusIcon, ul.testimonialUL li .testimonialMidBox:hover .plusIcon { width: 40px; height: 40px; left: 93px; bottom: 15px } ul.bodUL li a:hover .plusIcon span, ul.testimonialUL li .testimonialMidBox:hover .plusIcon a { opacity: 1 } .testiDescriptionWrap { width: 100%; float: left; position: absolute; left: 100%; top: 0; background: #fff; padding: 15px; box-sizing: border-box; height: 100%; transition: all ease .5s; -webkit-transition: all ease .5s; -moz-transition: all ease .5s; -o-transition: all ease .5s } .testiDescriptionWrap.activate { left: 0 } .descriptionWrap { width: 100%; float: left; padding: 0 45px 45px 45px; box-sizing: border-box; display: none } .descriptionWrap .img { width: 170px; height: 170px; border-radius: 160px; float: left; overflow: hidden; position: relative; margin-right: 30px } .descriptionWrap .img img { width: 100%; float: left } .descriptionWrap .img:after { width: 0; height: 0; background: rgba(218, 37, 28, .15); position: absolute; left: 50%; top: 100%; content: ''; display: block; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; border-radius: 100% } .descriptionWrap .imgSrc { width: 200px; float: left } .descriptionWrap .desc { width: 830px; float: left; padding: 70px 30px 0 30px; box-sizing: border-box; position: relative } .descriptionWrap .desc h3 { color: #5e6061; font-size: 1.5em; font-weight: 400; font-family: Lato-Italic; width: 100%; float: left } .descriptionWrap .desc h3 span { width: 100%; float: left } .descriptionWrap .desc p { color: #5e6061; font-size: 1.6em; font-weight: 400; width: 100%; float: left; margin: 20px 0 0 0; line-height: 1.5em } .descriptionWrap .desc a.closePopup { float: right; left: auto; right: 10px; position: absolute } .altColor { background: #e9e8e9 } .midCont { width: auto; margin: 0 auto; display: table } .midCont img { float: left; width: 200px } .cont { float: left; width: 650px; padding-left: 50px; box-sizing: border-box; margin-bottom: 80px } .midCont p { float: left; clear: both; font-size: 2em; color: #5e6061; margin: 0 auto } .howdoUL_wrap, ul.howdoUL { width: auto; margin: 0 auto; display: table; position: relative } ul.howdoUL li { width: 200px; height: 200px; float: left; display: table } ul.howdoUL li a { display: table-cell; vertical-align: middle; height: 100%; text-align: center; border-radius: 100%; color: #5e6061; font-size: 1.6em; font-family: Lato-Bold; padding: 0 30px; box-sizing: border-box; position: relative; padding-bottom: 60px; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; overflow: hidden } ul.howdoUL li a:before { background: url(../images/how-do-i-01.png) no-repeat center 0; width: 90px; height: 80px; content: ''; display: block; text-align: center; margin: 0 auto; position: relative; z-index: 1000 } ul.howdoUL li a:after { width: 0; height: 0; content: ''; background: #da251c; position: absolute; left: 50%; top: 50%; z-index: -1; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; border-radius: 100%; opacity: 0 } ul.howdoUL li a.KMBankATMDropBox:before { background: url(../images/how-do-i-02.png) no-repeat center 0 } ul.howdoUL li a.branchOffices:before { background: url(../images/how-do-i-03.png) no-repeat center 0 } ul.howdoUL li a.ECS_NACH:before { background: url(../images/how-do-i-04.png) no-repeat center 0 } ul.howdoUL li a span { width: 100%; float: left; padding-bottom: 0; position: relative; min-height: 40px } ul.howdoUL li a span:after { width: 30px; height: 30px; border: 1px solid red; content: ''; position: absolute; bottom: -50px; left: 50%; margin-left: -15px; border-radius: 30px } ul.howdoUL li a span:before { content: ''; position: absolute; bottom: -38px; left: 50%; border: 1px solid #da251c; border-color: transparent #da251c #da251c transparent; padding: 3px; margin: 0 0 0 -6px; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg); z-index: 1 } ul.howdoUL li a:hover { color: #fff } ul.howdoUL li a:hover:after { width: 100%; height: 200px; left: 0; top: 0; opacity: 1; z-index: 1 } ul.howdoUL li a:hover:before { z-index: 2 } ul.howdoUL li a:hover span { z-index: 2 } ul.howdoUL li a.payOnline:hover:before { background: url(../images/how-do-i-01_hover.png) no-repeat center 0 } ul.howdoUL li a.KMBankATMDropBox:hover:before { background: url(../images/how-do-i-02_hover.png) no-repeat center 0 } ul.howdoUL li a.branchOffices:hover:before { background: url(../images/how-do-i-03_hover.png) no-repeat center 0 } ul.howdoUL li a.ECS_NACH:hover:before { background: url(../images/how-do-i-04_hover.png) no-repeat center 0 } ul.howdoUL li a:hover span:after { border-color: #fff; background: #fff } ul.howdoUL li a:hover span:before { border-color: transparent #000 #000 transparent } .howdoUL_wrap .viewAll { position: absolute; right: -150px; top: 50%; width: 100px; height: 100px; display: table; margin-top: -50px } .howdoUL_wrap .viewAll:after { width: 50px; left: 0; height: 180px; background: url(../images/curlyBraces.png) no-repeat 0 0; content: ''; position: absolute; left: -70px; top: -35px } .howdoUL_wrap .viewAll a { color: #fff; display: table-cell; vertical-align: middle; border-radius: 100px; background: #da251c; overflow: hidden; font-size: 1.4em; text-align: center; padding: 0 25px; box-sizing: border-box; line-height: 1.5em; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } .howdoUL_wrap .viewAll a:hover { background: #fff; color: #da251c; border: 1px solid #da251c } .insuranceGuide h2 { text-align: center; margin-bottom: 30px } .lftCont { width: 25%; float: left; padding: 0 20px 0 0; box-sizing: border-box } .rgtCont { width: 75%; float: left; padding-left: 40px; box-sizing: border-box } .lftCont p { color: #5e6061; font-size: 2em } .insuranceGuide .sliderControlWrap { background: #fff } .carouselWrap { width: 100%; float: left; position: relative } ul.carouselUL, ul.carouselUL li { width: 100%; float: left } ul.carouselUL li { position: relative } .carouselWrap .imgSrc { width: 70%; float: left; position: relative; display: table; height: 410px } .carouselWrap .imgSrc img { width: 100%; float: left; position: absolute; left: 5px; top: 0; opacity: 0; transition: all ease 1s; -webkit-transition: all ease 1s; -moz-transition: all ease 1s; -o-transition: all ease 1s; -ms-transition: all ease 1s } .carouselWrap .contWrap { width: 315px; background: #fff; height: 400px; box-shadow: 0 0 0 0 #000; position: absolute; right: 0; bottom: -40px; box-shadow: 4px 2px 35px -2px #999; overflow: hidden } .carouselWrap .contWrap .cont { display: table; width: 100%; float: left; margin: 0; padding: 15px 30px; box-sizing: border-box; height: 100%; padding-bottom: 70px; position: absolute; left: 0; top: 0; opacity: 0; z-index: 0; background: #fff } .carouselWrap .contWrap .cont h3 { font-size: 2.8em; color: #5e6061; font-weight: 400; position: relative; top: 50px; transition: all ease .8s; -webkit-transition: all ease .8s; -moz-transition: all ease .8s; -o-transition: all ease .8s; opacity: 0; width: 100%; float: left; margin: 0 0 15px 0 } .carouselWrap .contWrap .cont p { font-size: 1.6em; color: #5e6061; margin: 5px 0 15px 0; position: relative; top: 50px; transition: all ease 1.2s; -webkit-transition: all ease 1.2s; -moz-transition: all ease 1.2s; -o-transition: all ease 1.2s; opacity: 0; float: left } .carouselWrap .contWrap .cont a.links { position: relative; top: 50px; transition: all ease 1.5s; -webkit-transition: all ease 1.5s; -moz-transition: all ease 1.5s; -o-transition: all ease 1.5s; opacity: 0 } .carouselWrap .contWrap .cont img { text-align: center; margin: 0 auto; display: table; margin-bottom: 15px; position: relative; top: 50px; transition: all ease .5s; -webkit-transition: all ease .5s; -moz-transition: all ease .5s; -o-transition: all ease .5s; opacity: 0 } .carouselWrap .imgSrc img.activeSlide { opacity: 1; left: 0 } .carouselWrap .contWrap .cont.activeSlide { opacity: 1; left: 0; z-index: 1 } .carouselWrap .contWrap .cont.activeSlide a.links, .carouselWrap .contWrap .cont.activeSlide h3, .carouselWrap .contWrap .cont.activeSlide img, .carouselWrap .contWrap .cont.activeSlide p { top: 0; opacity: 1 } a.links { width: auto; float: left; padding: 0; color: #da251c; font-size: 1.4em; letter-spacing: 1px; text-align: center; box-sizing: border-box; position: relative; padding-right: 40px; opacity: 1 } a.links:after { width: 0; height: 0; content: ''; display: block; position: absolute; right: 0; top: 50%; border: 1px solid red; border-color: transparent #da251c #da251c transparent; padding: 4px; margin-top: -3px; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg) } a.links:before { width: 30px; height: 1px; background: red; content: ''; position: absolute; right: 0; top: 50%; margin-top: 1px; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } a.links:hover:before { width: 40px; right: -10px } a.links:hover:after { right: -10px } .sliderControlWrap { width: 315px; float: left; position: absolute; right: 0; bottom: -20px; padding: 0 30px; box-sizing: border-box; z-index: 1 } ul.sliderCount { width: auto; float: right } ul.sliderCount li { width: auto; float: left; padding: 0 5px; line-height: 35px; font-size: 1.6em; color: #5e6061; position: relative } ul.sliderCount li:after { width: 1px; height: 15px; content: ''; position: absolute; background: #5e6061; display: block; left: 0; top: 50%; margin-top: -7px; transform: rotate(15deg); -webkit-transform: rotate(15deg); -moz-transform: rotate(15deg); -o-transform: rotate(15deg) } ul.sliderCount li:first-child:after { display: none } ul.sliderCount li:first-child { padding-left: 0 } .sliderControl { width: auto; float: left } .sliderControl a, a.nextArrow, ul.controlBtn li a { width: 35px; height: 35px; border-radius: 35px; border: 1px solid #da251c; float: left; margin: 0 10px 0 0; box-sizing: border-box; overflow: hidden; text-indent: -99px; position: relative; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } .sliderControl a:after, a.nextArrow:after, ul.controlBtn li a:after { width: 0; height: 0; content: ''; display: block; position: absolute; left: 10px; top: 50%; border: 1px solid #da251c; border-color: #da251c transparent transparent #da251c; padding: 4px; margin-top: -5px; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg) } .sliderControl a.next:after, a.nextArrow:after, ul.controlBtn li a.nextLink:after { border-color: transparent #da251c #da251c transparent; left: auto; right: 10px } .sliderControl a:before, a.nextArrow:before, ul.controlBtn li a:before { width: 15px; height: 1px; background: #da251c; content: ''; position: absolute; left: 10px; top: 50%; margin-top: -1px; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } .sliderControl a.next:before, a.nextArrow:before, ul.controlBtn li a.nextLink:before { left: auto; right: 10px } .sliderControl a:hover, a.nextArrow:hover, ul.controlBtn li a:hover { background: #da251c } .sliderControl a:hover:before, a.nextArrow:hover:before, ul.controlBtn li a:hover:before { background: #fff } .sliderControl a:hover:after, ul.controlBtn li a:hover:after { border-color: #fff transparent transparent #fff } .sliderControl a.next:hover:after, a.nextArrow:hover:after, ul.controlBtn li a.nextLink:hover:after { border-color: transparent #fff #fff transparent } .sliderControl a.disabled, ul.controlBtn li a.disabled { border-color: #5e6061; cursor: default; opacity: .3 } .sliderControl a.disabled:hover, ul.controlBtn li a.disabled:hover { background: 0 0 } .sliderControl a.disabled:before, ul.controlBtn li a.disabled:before { background: #5e6061 } .sliderControl a.disabled:after, ul.controlBtn li a.disabled:after { border-color: #5e6061 transparent transparent #5e6061 } .sliderControl a.next.disabled:after, .sliderControl a.next.disabled:hover:after, ul.controlBtn li a.nextLink.disabled:after, ul.controlBtn li a.nextLink.disabled:hover:after { border-color: transparent #5e6061 #5e6061 transparent } .whyKotak { padding-bottom: 30px } .whyKotak .carouselWrap { width: 60% } .whyKotak .rgtCont { float: left; position: relative; width: 100% } .whyKotak .lftCont { width: 30%; padding-right: 40px; box-sizing: border-box; position: relative } .whyKotak .whyKotakImg { position: relative; float: left } .whyKotak .carouselWrap .contWrap { position: relative; background: 0 0; box-shadow: none; height: 300px; bottom: 0; width: 400px } .whyKotak .carouselWrap .contWrap .cont { background: 0 0; padding: 0 } .whyKotak .carouselWrap .contWrap .cont p { font-size: 2em } .whyKotak .carouselWrap .contWrap .cont h3 { font-size: 2em; color: #5e6061; font-family: Lato-Bold } .whyKotak .sliderControlWrap { position: relative; bottom: 0; padding: 0 } .whyKotak .sliderControl { float: left; padding-right: 10px } .whyKotak ul.sliderCount { display: inline-table; float: none } .whyKotak .sliderControl a { margin: 0 10px 0 0 } .whyKotak .lftCont p { font-size: 1.6em; width: 100%; float: left } .whyKotak .lftCont h3 { color: #9ea0a0; font-size: 1.4em; margin: 15px 0 25px 0; width: 100%; float: left; font-weight: 400; letter-spacing: 1px } .whyKotak .lftCont .imgSrc { width: 85px; height: 85px; border-radius: 100px; float: left; overflow: hidden; margin: 0 0 15px 0 } .whyKotak .lftCont .imgSrc img { width: 100%; float: left } .whyKotak .lftCont:after { width: 1px; height: 85%; display: block; content: ''; position: absolute; left: -40px; top: 0; background: #9ea0a0 } .searchBox { width: 645px; height: 65px; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%); background: #fff; border-radius: 50px; overflow: hidden; display: none; z-index: 5 } .searchBox input[type=search], .searchBox input[type=text] { width: 100%; line-height: 65px; height: 65px; padding: 0 85px 0 30px; box-sizing: border-box; font-size: 2.2em; color: #5e6061 } .searchBox a { width: auto; height: 65px; background: url(../images/searchIcon.png) no-repeat 20px center; float: right; position: absolute; right: 0; text-indent: -99px; overflow: hidden; padding: 0 40px 0 40px; box-sizing: border-box; top: 0 } .closeSearch { width: auto; position: fixed; width: 40px; height: 40px; right: 30px; top: 40px; z-index: 0; opacity: 0; transition: all ease .5s; -webkit-transition: all ease .5s; -moz-transition: all ease .5s; -o-transition: all ease .5s; overflow: hidden; float: left; text-indent: -99px } .closeSearch:after, .closeSearch:before { width: 100%; height: 2px; content: ''; display: block; position: absolute; left: 0; top: 50%; background: #fff; transform: rotate(45deg); -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -o-transform: rotate(45deg); -ms-transform: rotate(45deg) } .closeSearch:before { transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg); -ms-transform: rotate(-45deg) } .closeSearch.activate { z-index: 5; opacity: 1 } html.mobileAct { overflow: hidden } html section { transition: all ease .3s; opacity: 1 } html.mobileAct section { opacity: 0 } .breadcrumb { border-top: 1px solid #dfdfdf } .breadcrumb ul { padding: 15px 0 } .breadcrumb ul, .breadcrumb ul li { width: 100%; float: left } .breadcrumb ul li { width: auto; position: relative; padding: 0 20px 0 0 } .breadcrumb ul li:after { width: 15px; height: 1px; content: ''; display: block; position: absolute; right: 7px; top: 50% } .breadcrumb ul li:before { width: 0; height: 0; content: ''; display: block; position: absolute; right: 7px; top: 55%; border: 1px solid #da251c; border-color: transparent #da251c #da251c transparent; padding: 3px; margin-top: -4px; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg) } .breadcrumb ul li a { color: #da251c; font-size: 1.2em } .breadcrumb ul li.activeLink a { color: #5e6061; cursor: default } .breadcrumb ul li.activeLink:after, .breadcrumb ul li.activeLink:before { display: none } .headDesc, ul.innerUL { width: 100%; float: left; padding: 50px 0 50px 0 } .headDesc { padding: 30px 0; position: relative } .headDesc p { font-size: 2em; width: 100%; margin: 0 auto 20px auto; float: left } .boxWrap { width: 100%; float: left; box-shadow: 0 1px 30px -2px #c1c1c1; -webkit-box-shadow: 0 1px 30px -2px #c1c1c1; -moz-box-shadow: 0 1px 30px -2px #c1c1c1; -o-box-shadow: 0 1px 30px -2px #c1c1c1; padding: 40px 30px 50px 30px; margin: 0 0 50px 0; box-sizing: border-box } .boxWrapRider { box-shadow: none } .boxWrap h2 { text-align: center; padding: 0 } .boxWrap ul { padding: 0; margin: 15px 0 0 0 } .boxWrap.visionWrap ul, .boxWrap.visionWrap01 ul, .boxWrapRiderul { margin: 0 } .boxWrapRider a.pdfIcon { min-height: 45px; margin: 15px 0 0 0; line-height: 40px } .boxWrapRider a.pdfIcon:after { top: 0 } ul.innerUL li { width: 33.33%; float: left; padding: 0 15px; box-sizing: border-box } ul.owlCarousel li { width: 100% } ul.innerUL li .img { width: 110px; height: 110px; border-radius: 100%; text-align: center; overflow: hidden; position: relative; margin-bottom: 15px } ul.innerUL li .img img { width: 100% } .headDesc a.kliBack, .mediaInner a.kliBack { bottom: auto; top: 45px } .mediaInner a.kliBack { top: 0 } .headDesc a.kliBack:before, .mediaInner a.kliBack:before { border-color: transparent transparent #da251c #da251c; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } .headDesc a.kliBack span:after, .mediaInner a.kliBack span:after { background: #da251c; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } .headDesc a.kliBack:after, .mediaInner a.kliBack:after { background: 0 0; border: 1px solid #da251c; box-sizing: border-box; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } .headDesc a.kliBack:hover:before, .mediaInner a.kliBack:hover:before { border-color: transparent transparent #fff #fff } .headDesc a.kliBack:hover span:after, .mediaInner a.kliBack:hover span:after { background: #fff } .headDesc a.kliBack:hover:after, .mediaInner a.kliBack:hover:after { background: #da251c } ul.innerUL li h4 { color: #5e6061; font-size: 2.2em; font-weight: 400; padding: 0 0 5px 0 } ul.innerUL li p { font-size: 1.6em } .eligibility, .eligibilityUL { width: 100%; float: left; padding: 30px 0 30px 0 } .eligibility .topCnt { width: 330px } .eligibility p { font-size: 2em } .eligibility .topDesc { padding-top: 0; margin-bottom: 0 } ul.eligibilityUL { padding: 20px 0 50px 0; position: relative } ul.eligibilityUL.eligibilityUL01 { padding: 20px 0 50px 0 } ul.eligibilityUL > li { width: 100%; float: left; position: relative } ul.eligibilityUL > li .desc { width: 50%; float: right; padding: 0 0 100px 90px; box-sizing: border-box; position: relative } ul.eligibilityUL > li .imgElg, ul.eligibilityUL > li .imgIcon { width: 120px; height: 120px; position: absolute; left: 50%; margin-left: -60px; top: -25px; z-index: 1 } ul.eligibilityUL > li .imgElg img { width: 100%; float: left } ul.eligibilityUL > li p { font-size: 1.6em } ul.eligibilityUL > li.sLi .desc { float: left; padding: 0 90px 100px 0 } ul.eligibilityUL > li .desc:after { content: ''; height: 100%; width: 1px; left: -1px; background: #cecfcf; padding: 0; display: block; position: absolute; top: 0 } ul.eligibilityUL > li.sLi .desc:after { left: auto; right: 0 } ul.eligibilityUL > li:last-child .desc { padding-bottom: 0 } ul.eligibilityUL > li:last-child .desc:after { display: none } ul.eligibilityUL > li.lastEle_LI .desc:after { display: none } ul.eligibilityUL > li.lastEle_LI .desc { padding-bottom: 0 } ul.eligibilityUL > li h3 { font-size: 2.1em; color: #5e6061; font-weight: 400; margin-bottom: 10px } ul.eligibilityUL > li h6 { font-size: 1.3em; color: #5e6061; font-weight: 400 } ul.eligibilityUL > li ul li { color: #5e6061; line-height: 1.6em; padding: 10px 0; width: 100%; float: left; border-top: 1px solid #cecfcf; font-size: 1.6em } ul.eligibilityUL > li ul li p { font-size: 1em } ul.eligibilityUL > li ul li p.smallTxt { font-size: .85em } ul.eligibilityUL > li ul li b, ul.eligibilityUL > li ul li strong { font-weight: 400; font-family: Lato-Bold } .bLifeAdvisorWrapper, .buyPlan, .calcPremium, .followUsWrapNew, .insuranceGuide01, .planWrap, .searchWrapper { background: #fff; background: -moz-radial-gradient(center, ellipse cover, #fff 0, #e9e8e9 100%); background: -webkit-radial-gradient(center, ellipse cover, #fff 0, #e9e8e9 100%); background: radial-gradient(ellipse at center, #fff 0, #e9e8e9 100%) } .calcPremiumNew { background: #fff } .calcPremium img { margin: 0 auto; display: block } a.redBtn { padding: 0 30px; background: #da251c; font-size: 1.4em; text-transform: uppercase; border-radius: 30px; margin: 20px auto 20px auto; display: table; color: #fff; letter-spacing: 1px; transition: all ease .5s; -webkit-transition: all ease .5s; -moz-transition: all ease .5s; -o-transition: all ease .5s; line-height: 50px; height: 50px } a.redBtn:hover { background: #fc453c } .calcPremium a.redBtn01 { background: 0 0; border: 1px solid #da251c; color: #da251c } .calcPremium a.redBtn01:hover { background: #da251c; color: #fff; border-color: #da251c } .download { padding: 45px 85px 50px 0 } .download p { width: 50%; float: left; padding-right: 50px; box-sizing: border-box; font-size: 2em } .download ul.downloadUL { width: 50%; float: left; padding-left: 50px; box-sizing: border-box; position: relative } ul.downloadUL:after { width: 1px; height: 65px; background: #bfc1c1; content: ''; display: block; position: absolute; left: 0; top: 0 } ul.downloadUL:before { width: 0; height: 0; border: 1px solid #bfc1c1; content: ''; display: block; position: absolute; left: -4px; top: 20px; padding: 4px; border-width: 1px 1px 0 0; background: #fff; transform: rotate(45deg); -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -o-transform: rotate(45deg); z-index: 1 } ul.downloadUL li { width: 50%; float: left; padding: 10px 0 0 0 } a.formIcon, a.newsIcon, a.pdfIcon, ul.downloadUL li a { color: #da251c; font-size: 1.4em; padding-left: 48px; box-sizing: border-box; position: relative } a.formIcon:after, a.newsIcon:after, a.pdfIcon:after, ul.downloadUL li a:after { content: ''; display: block; width: 45px; height: 45px; background: url(../images/spriteImg.webp) no-repeat -576px -64px; position: absolute; left: 0; top: -8px } .altColor ul.downloadUL:before { background: #e9e8e9 } a.pdfIcon, ul.downloadUL li a { float: left } a.pdfIcon:after, ul.downloadUL li a.pdfIcon:after { background-position: -576px -64px } a.newsIcon { padding-left: 40px } a.newsIcon:after { background-position: -652px -1px } a.formIcon:after { background-position: -651px -64px } ul.downloadUL li a.formIcon:after { background-position: -651px -64px } ul.downloadUL li a span { border-bottom: 1px solid #da251c } a.newsIcon:hover, a.pdfIcon:hover, ul.downloadUL li a:hover { color: #fc453c } ul.downloadUL li a:hover span { border-color: #fc453c } .buyPlan { padding: 0 85px 50px 0 } .buyPlan .buyForm { width: 50%; float: left; padding-right: 50px; box-sizing: border-box; border-right: 1px solid #bfc0c0 } .buyPlan .tollFree { width: 50%; float: left; padding-left: 50px; box-sizing: border-box } .buyPlan .tollFree .needBox { width: 100%; float: left; padding: 40px 0; border-top: 1px solid #bdbebe } .buyPlan .tollFree .needBox:first-child { border: none; padding-top: 0 } .buyPlan .tollFree .needBox:last-child { padding-bottom: 0 } .buyPlan .tollFree a { color: #da251c; text-decoration: none; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } .buyPlan .tollFree a:hover { color: #fc453c } .buyPlan h3 { position: relative; width: 100%; float: left; font-weight: 400; color: #5e6061; font-size: 1.8em; padding-left: 50px; margin-bottom: 20px; box-sizing: border-box } .buyPlan h3:after { width: 35px; height: 35px; content: ''; display: block; position: absolute; left: 0; top: -4px; background: url(../images/spriteImg.webp) no-repeat -430px -5px } .buyPlan h3.callon:after { background-position: -505px -2px; top: 0 } .buyPlan h3.mailus:after { background-position: -168px -279px; left: 8px; top: 4px } .buyPlan h3 span { width: 100%; float: left; font-size: .6em } .buyFormWrap, .buyFormWrap .row { width: 100%; float: left; margin: 20px 0 } .buyFormWrap .row { padding: 5px 0 15px 0; position: relative; margin: 0 } .buyFormWrap .row .selectbg, .buyFormWrap .row input[type=text] { width: 70%; background: 0 0 } .buyFormWrap .row .captcha { width: auto; padding: 25px 25px; float: left; border: 1px solid #d3d3d3; height: auto; width: 200px; position: relative } .buyFormWrap .row .captcha img { position: absolute; right: 10px; top: 10px } .buyFormWrap .linkWrap { margin: 15px 0 0 0; float: left } .buyPlan p { width: 100%; font-size: 1.6em; padding-left: 50px; box-sizing: border-box } .similarPlan { padding: 0 85px 60px 0 } .similarPlan h2 { text-align: center } ul.planUL { width: 100%; float: left } ul.planUL li { width: 50%; float: left; padding-right: 75px; box-sizing: border-box; margin: 0 0 50px 0 } ul.planUL li .img { width: auto; max-width: 30%; float: left; padding: 0 30px 0 0; box-sizing: border-box } ul.planUL li .detail { width: auto; max-width: 70%; float: left; height: 100%; padding-bottom: 25px; position: relative; box-sizing: border-box } ul.planUL li .detail a.links { position: absolute; bottom: 0; left: 0 } ul.planUL li img { float: left; padding-right: 0; width: 100% } ul.planUL li h3 { color: #5e6061; font-size: 2em; font-weight: 400; margin: 0 0 15px 0 } ul.planUL li p { color: #5e6061; font-size: 1.6em; margin: 10px 0 } ul.planUL li:nth-child(2n-1) { clear: both } .disclaimer { padding: 25px 85px 25px 0; box-sizing: border-box; border-top: 1px solid #e9e8e9; border-bottom: 1px solid #e9e8e9 } .disclaimer h3 { font-size: 1.6em; color: #5e6061; font-weight: 400; font-family: Lato-Bold; position: relative; cursor: pointer; padding-left: 35px; width: auto; float: left } .disclaimer h3 span:after { border: 1px solid #da251c; box-sizing: border-box; border-radius: 100px; margin: 0; padding: 0; transition: all ease .5s; -webkit-transition: all ease .5s; -moz-transition: all ease .5s; -o-transition: all ease .5s; content: ''; display: block; position: absolute; left: 0; top: -2px; height: 25px; width: 25px; box-sizing: border-box } .disclaimer h3:after, .disclaimer h3:before { width: 13px; height: 1px; background: #da251c; content: ''; display: block; position: absolute; left: 6px; top: 10px; transition: all ease .5s; -webkit-transition: all ease .5s; -moz-transition: all ease .5s; -o-transition: all ease .5s } .disclaimer h3:before { transform: rotate(-90deg); -webkit-transform: rotate(-90deg); -moz-transform: rotate(-90deg); -o-transform: rotate(-90deg) } .disclaimer h3.active:before { transform: rotate(0); -webkit-transform: rotate(0); -moz-transform: rotate(0); -o-transform: rotate(0) } .disclaimerDetl h3 { padding: 10px 0 5px 0; width: 100%; cursor: default } .disclaimerDetl h3:after, .disclaimerDetl h3:before { display: none } .disclaimerDetl { width: 100%; float: left; margin: 20px 0 0 0; position: relative; top: 0; display: none } .disclaimerDetl p { font-size: 1.6em; margin: 0 0 15px 0 } ul.bullet { width: 100%; float: left } ul.bullet li { font-size: 16px; margin: 5px 0; color: #000000; width: 100%; float: left; padding-left: 15px; box-sizing: border-box; position: relative } ul.bullet li:after { width: 5px; height: 5px; background: #5e6061; border-radius: 5px; position: absolute; left: 0; top: 7px; content: ''; display: block } ul.insuranceUL { width: 100%; float: left } ul.insuranceUL li { width: 50%; padding: 0 0 0 30px; box-sizing: border-box; float: left; margin: 0 0 50px 0 } ul.insuranceUL li:nth-child(2n+1) { padding-left: 0; padding-right: 30px } ul.insuranceUL li .img { position: relative; width: 100%; float: left } ul.insuranceUL li .img img { width: 100%; float: left } ul.insuranceUL li .img:after { width: 90px; height: 90px; background: #fff; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%); content: ''; border-radius: 100% } ul.insuranceUL li .img:before { width: 50px; height: 55px; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%); content: ''; background: url(../images/spriteImg.webp) no-repeat 0 -157px; z-index: 1 } ul.insuranceUL li .img01:before { background-position: 0 -156px; width: 40px; height: 48px } ul.insuranceUL li .img02:before { background-position: -80px -156px; width: 50px; height: 42px } ul.insuranceUL li .img03:before { background-position: 0 -241px; width: 42px; height: 41px } ul.insuranceUL li .img04:before { background-position: -80px -241px; width: 32px; height: 52px } ul.insuranceUL li h3 { color: #5e6061; font-size: 2em; font-weight: 400; margin: 25px 0 15px 0; width: 100%; float: left } ul.insuranceUL li p { font-size: 1.6em; margin-bottom: 25px } .planWrap { padding: 0 85px 50px 0 } .innerbanner { position: relative; overflow: hidden } .innerbanner:after { width: 100%; height: 100%; background: rgba(0, 0, 0, 0); display: block; left: 0; top: 0; display: block; content: ''; z-index: 5; position: absolute } .innerbanner img { width: 100%; float: left; position: relative; z-index: 0 } .innerbanner video { width: 100%; float: left; position: absolute; z-index: 1; left: 0; top: 0 } ul.innerUL.protPlanUL { width: 100%; margin: 0 auto; padding: 0 } ul.innerUL.protPlanUL li { width: 25%; text-align: center } ul.innerUL.protPlanUL li .img { margin: 0 auto 15px auto } .topDesc { width: 60%; margin: 0 auto; text-align: center; padding: 40px 0 40px 0; display: table } .topDesc h2 { margin-bottom: 0 } .topDesc p { font-size: 2em; margin: 15px 0; float: left; text-align: center; width: 100% } .topDesc p a { color: #da251c } .topHeading { width: 60%; margin: 0 auto; text-align: center; padding: 0 0 20px 0; display: table } .topHeading h2 { margin-bottom: 0 } .topHeading p { font-size: 2em; margin: 15px 0; float: left; text-align: center; width: 100% } .topHeading p a { color: #da251c } .visionWrap01 .topHeading { padding: 0 } .mediaKitW .topDesc { padding: 40px 0 15px 0 } .owl-buttons { margin: 0 auto; width: auto; display: table } .owl-theme .owl-controls .owl-buttons div { width: 35px; height: 35px; border-radius: 35px; border: 1px solid #da251c; float: left; margin: 0 10px 0 0; box-sizing: border-box; overflow: hidden; text-indent: -99px; position: relative; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; opacity: 1; background: 0 0 } .owl-theme .owl-controls .owl-buttons div:after { width: 0; height: 0; content: ''; display: block; position: absolute; left: 10px; top: 50%; border: 1px solid #da251c; border-color: #da251c transparent transparent #da251c; padding: 4px; margin-top: -5px; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg) } .owl-theme .owl-controls .owl-buttons div.owl-next:after { border-color: transparent #da251c #da251c transparent; left: auto; right: 10px } .owl-theme .owl-controls .owl-buttons div:before { width: 15px; height: 1px; background: #da251c; content: ''; position: absolute; left: 10px; top: 50%; margin-top: -1px; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } .owl-theme .owl-controls .owl-buttons div.owl-next:before { left: auto; right: 10px } .owl-theme .owl-controls .owl-buttons div:hover { background: #da251c } .owl-theme .owl-controls .owl-buttons div:hover:before { background: #fff } .owl-theme .owl-controls .owl-buttons div:hover:after { border-color: #fff transparent transparent #fff } .owl-theme .owl-controls .owl-buttons div.owl-next:hover:after { border-color: transparent #fff #fff transparent } .owl-theme .owl-controls .owl-buttons div.disabled { border-color: #5e6061; cursor: default; opacity: .3 } .owl-theme .owl-controls .owl-buttons div.disabled:hover { background: 0 0 } .owl-theme .owl-controls .owl-buttons div.disabled:before { background: #5e6061 } .owl-theme .owl-controls .owl-buttons div.disabled:after { border-color: #5e6061 transparent transparent #5e6061 } .owl-theme .owl-controls .owl-buttons div.owl-next.disabled:after, .owl-theme .owl-controls .owl-buttons div.owl-next.disabled:hover:after { border-color: transparent #5e6061 #5e6061 transparent } .headDesc01 { padding: 50px 0 0 0 } .headDesc01 p { width: 55%; float: left; text-align: left } .headDesc img, .headDesc01 img { margin: 0 auto; width: auto; text-align: center; display: table; max-width: 45%; position: relative; z-index: -1 } ul.landingUL { margin-bottom: 80px } ul.landingUL, ul.landingUL li { width: 100%; float: left } ul.landingUL li { height: 100%; display: block } ul.landingUL li .img { width: 50%; float: left; height: 100%; overflow: hidden } ul.landingUL li .img img { width: auto; float: left; min-width: 100%; position: relative } ul.landingUL li .boxInfo { width: 50%; float: left; background: #fff; box-shadow: 0 1px 30px -2px #c1c1c1; -webkit-box-shadow: 0 1px 30px -2px #c1c1c1; -moz-box-shadow: 0 1px 30px -2px #c1c1c1; -o-box-shadow: 0 1px 30px -2px #c1c1c1; display: table; height: 100%; padding: 30px 50px; box-sizing: border-box } ul.landingUL li .boxInfo h3 { width: 100%; float: left; margin: 10px 0; color: #5e6061; font-size: 2em; font-weight: 400 } ul.landingUL li .boxInfo p { width: 100%; float: left; margin: 0 0 25px 0; color: #5e6061; font-size: 1.6em; font-weight: 400 } ul.landingUL li .boxInfo img { margin: 0 auto; margin-bottom: 20px; float: left } ul.landingUL li .mid { vertical-align: middle; display: table-cell } .ridersW { border-top: 1px solid #d1d2d2 } .ridersW .boxWrapRider { margin: 0; padding-top: 0 } .howWorksWrap { padding: 0 0 50px 0; width: 100%; float: left } .howWorksWrap h2 { text-align: center } ul.howWorksUL, ul.howWorksUL > li { width: 100%; float: left } ul.howWorksUL > li { text-align: center; padding: 0 0 25px 0; position: relative } ul.howWorksUL > li:before, ul.howWorksUL li::before { width: 11px; height: 45px; position: relative; background: url(../images/downCurv01.png) no-repeat center 0; content: ''; display: block; margin: 0 auto 25px auto } ul.howWorksUL > li:nth-child(2n):before { background-image: url(../images/downCurv02.png) } ul.howWorksUL > li:first-child:before { display: none } ul.howWorksUL > li p { width: 50%; margin: 25px auto 0 auto; font-size: 1.8em; color: #5e6061 } ul.howWorksUL > li p.small { margin-top: 10px; font-size: 1.4em } ul.howWorksUL > li p strong { font-weight: 400; font-family: Lato-Bold } ul.planMatureUL { width: 575px; margin: 15px auto 0 auto; display: table } ul.planMatureUL li { width: 50%; float: left; text-align: left; font-size: 1.6em; color: #5e6061; margin: 20px 0; position: relative; padding: 0 15px 0 60px; box-sizing: border-box } ul.planMatureUL li:after { width: 50px; height: 45px; background: url(../images/spriteImg.webp) no-repeat -170px -200px; content: ''; position: absolute; left: 0; top: -10px; display: block } ul.planUL.similerPlanCarousel li { width: 100%; padding: 0 15px; margin: 0 } ul.planUL.similerPlanCarousel li img { margin: 0 0 20px 0; display: table; float: none; width: auto } ul.planUL.similerPlanCarousel li a.links { float: left } ul.planUL.similerPlanCarousel li h3 { width: 100%; float: left; margin: 0 } ul.planUL.similerPlanCarousel li p { width: 100%; float: left } .followUsWrap .midWrapper { padding: 50px 0; display: table } .followUsWrap h2 { text-align: center } ul.followUL { width: 100%; float: left; text-align: center } ul.followUL li { display: inline-block; width: 140px } ul.followUL li a { padding: 15px; float: left; text-align: center; width: 100%; box-sizing: border-box; overflow: hidden; text-indent: -299px; position: relative } ul.followUL li a:after { width: 40px; height: 40px; content: ''; display: block; position: absolute; left: 50%; top: 0; background: url(../images/spriteImg.webp) no-repeat 0 -339px; margin-left: -20px; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } ul.followUL li a.linkedIn:after { background-position: 0 -337px } ul.followUL li a.linkedIn:hover:after { background-position: 0 -406px } ul.followUL li a.twitter:after { background-position: -78px -337px } ul.followUL li a.twitter:hover:after { background-position: -78px -406px } ul.followUL li a.youtube:after { background-position: -157px -337px } ul.followUL li a.youtube:hover:after { background-position: -157px -406px } ul.followUL li a.facebook:after { background-position: -226px -337px } ul.followUL li a.facebook:hover:after { background-position: -226px -406px } .greatPlaceWrap .midWrap { padding: 50px 0 } .greatPlaceWrap ul.landingUL { margin-bottom: 30px } ul.workUL, ul.workUL li { width: 100%; float: left; position: relative } ul.workUL li { overflow: hidden } ul.workUL li img { width: 100%; float: left } ul.workUL li .desc { width: 100%; float: left; padding: 20px; box-sizing: border-box; position: absolute; top: 100%; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; height: 100%; background: -moz-linear-gradient(top, rgba(125, 126, 125, 0) 0, rgba(64, 64, 64, 0) 55%, rgba(14, 14, 14, .71) 100%); background: -webkit-linear-gradient(top, rgba(125, 126, 125, 0) 0, rgba(64, 64, 64, 0) 55%, rgba(14, 14, 14, .71) 100%); background: linear-gradient(to bottom, rgba(125, 126, 125, 0) 0, rgba(64, 64, 64, 0) 55%, rgba(14, 14, 14, .71) 100%) } ul.workUL li .desc .desc01 { display: table; height: 100% } ul.workUL li .desc p { font-size: 1.4em; color: #fff; display: table-cell; vertical-align: bottom; float: none } ul.workUL li:hover .desc { top: 0 } ul.workUL li:hover .desc p { opacity: 1 } .greatPlaceWrap .owl-theme .owl-controls { margin-top: 30px } .greatPlaceWrap .descW { width: 100%; float: left; padding: 0 0 40px 0 } .greatPlaceWrap .descL { width: 63%; float: left; padding: 0 100px 0 0; box-sizing: border-box } .greatPlaceWrap .descL p { font-size: 2em; color: #5e6061 } .greatPlaceWrap .descR { width: 37%; float: left; padding: 0 0 0 30px; box-sizing: border-box; border-left: 1px solid #bfbfc0 } .greatPlaceWrap .descR img { float: left; margin-right: 15px } .greatPlaceWrap .descR .contR { float: left } .greatPlaceWrap .descR .contR h3 { font-size: 2em; color: #5e6061; font-weight: 400; margin: 15px 0 5px 0 } .greatPlaceWrap .descR .contR h4 { font-size: 1.6em; color: #5e6061; font-weight: 400 } .midWrap01 { position: relative; width: 100%; float: left; padding: 0; margin-bottom: 50px } .midWrap01 h2 { text-align: center } .midWrap01 .selectbg { width: 280px; position: absolute; left: auto; right: 0; top: 0 } img.img50 { float: left; padding: 0 85px 0 0; box-sizing: border-box; position: relative; top: 45px; max-height: 400px; max-width: 100%; margin: 0 0 50px 0 } .div50 { width: 50%; float: right; margin-top: 30px } ul.reportUL { width: 100%; float: left } ul.reportUL > li { width: 50%; float: left; padding: 15px; box-sizing: border-box } ul.reportUL > li .reportBox { width: 100%; float: left; background: #fff; position: relative; padding: 20px 20px 60px 20px; box-sizing: border-box; box-shadow: 0 1px 30px -2px #c1c1c1; -webkit-box-shadow: 0 1px 30px -2px #c1c1c1; -moz-box-shadow: 0 1px 30px -2px #c1c1c1; -o-box-shadow: 0 1px 30px -2px #c1c1c1; height: 100% } ul.reportUL > li a { position: absolute; bottom: 25px; left: 20px } .div70 h3, .div70 p, .lookW h3, ul.reportUL li h3, ul.reportUL li h4, ul.reportUL li p { width: 100%; float: left; color: #5e6061; font-size: 2em; font-weight: 400; margin: 0 0 10px 0; word-wrap: break-word } .div70 p, ul.reportUL li p { font-size: 1.6em; margin: 0 0 10px 0 } ul.reportUL li h4 { font-size: 1.3em; font-family: Lato-Bold; margin: 0 0 5px 0 } .div30 { width: 30%; float: left; padding: 0 50px 0 0; box-sizing: border-box } .div30 p { font-size: 1.6em; color: #5e6061; margin: 0 0 25px 0 } .div70 { width: 70%; float: left; padding: 0 0 0 25px; box-sizing: border-box } .div70 h3, .div70 p { float: none } .div70 p { margin: 15px 0 40px 0 } .div70 .lftCnt { width: 40%; float: left; padding: 0 30px 0 0; box-sizing: border-box } .div70 .rgtCnt { width: 60%; float: left } .div70 .lftCnt img { width: 100%; float: left } ul.reportUL01 { padding-bottom: 40px } ul.reportUL01 > li { width: 33.33%; margin: 0 } ul.reportUL01 li .reportBox { padding: 30px 20px 45px 75px; position: relative } ul.reportUL01 li .reportBox:after { content: ''; display: block; width: 45px; height: 45px; background: url(../images/spriteImg.webp) no-repeat -576px -64px; position: absolute; left: 20px; top: 30px } ul.reportUL01 li a { color: #da251c; font-size: 1.4em; padding-left: 0; box-sizing: border-box; position: absolute; bottom: 20px; left: 75px } ul.careerLAUL > li { width: 33.33%; margin: 0 } ul.careerLAUL > li .reportBox { padding: 20px } .eventsWrap { padding-top: 50px } .eventsWrap .midWrap01 { margin-bottom: 0 } .eventsWrap .topDesc { padding-top: 0 } .eventsWrap ul.reportUL li .reportBox { padding: 30px 40px 60px 75px } .eventsWrap ul.reportUL li .reportBox:after { content: ''; display: block; width: 45px; height: 45px; background: url(../images/spriteImg.webp) no-repeat -576px -64px; position: absolute; left: 20px; top: 30px } .eventsWrap ul.reportUL li a { color: #da251c; font-size: 1.4em; padding-left: 0; box-sizing: border-box; position: absolute; bottom: 25px; left: 75px } .eventsWrap ul.reportUL li h3 { margin: 0 0 15px 0; padding: 0 120px 0 0; box-sizing: border-box } .eventsWrap ul.reportUL.noDateFormat li h3 { padding: 0 } .dateNotice { position: absolute; right: 20px; font-size: 1.6em; color: #5e6061; top: 32px } ul.ourCampaignUL { margin: 0 0 40px 0 } ul.ourCampaignUL li { width: 33.33%; padding: 0; position: relative; overflow: hidden } ul.ourCampaignUL li img { width: 100%; float: left } ul.ourCampaignUL li a.videoIcon { width: 80px; height: 80px; background: rgba(255, 255, 255, .4); position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); overflow: hidden; text-indent: -99px; border-radius: 100%; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; z-index: 1; opacity: 1 } ul.ourCampaignUL li a.videoIcon:after { width: 0; height: 0; content: ''; position: absolute; left: 50%; top: 50%; transform: rotate(45deg); border: 10px solid red; border-color: red red transparent transparent; margin: -10px 0 0 -15px; opacity: 0; transition: all ease .4s; -webkit-transition: all ease .4s; -moz-transition: all ease .4s; -o-transition: all ease .4s; opacity: 1 } ul.ourCampaignUL li.activate a.videoIcon, ul.ourCampaignUL li:hover a.videoIcon { background: rgba(255, 255, 255, .6); top: 50% } ul.ourCampaignUL li.activate a.videoIcon:after, ul.ourCampaignUL li:hover a.videoIcon:after { opacity: 1 } ul.ourCampaignUL li .details { width: 100%; float: left; padding: 20px; box-sizing: border-box; position: absolute; top: 100%; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; height: 100%; cursor: pointer; background: rgba(0, 0, 0, .3) } ul.ourCampaignUL li .detailsImg { cursor: default } ul.ourCampaignUL li .details .details01 { display: table; height: 100% } ul.ourCampaignUL li .details p { font-size: 1.4em; color: #fff; display: table-cell; vertical-align: bottom; float: none } ul.ourCampaignUL li:hover .details { top: 0 } ul.ourCampaignUL li.activate .details { top: 0 } .mediaKitW a.link { float: none; margin: 0 auto; display: table; clear: both } .kliNewsWrap { width: 100%; float: left; position: relative; padding: 0 0 30px 0; overflow: hidden } .kliNewsWrap .div50 h3 { width: 100%; float: left; color: #08315f; font-size: 1.8em; font-weight: 400; margin: 0 0 10px 0; padding-left: 15px } .kliNewsWrap .div50 ul.reportUL > li h3 { padding-left: 0; min-height: 50px; } .checkOut { width: 100%; float: left; margin: 30px 0 25px 0; border-top: 1px solid #deddde; padding: 25px 0 0 0 } .checkOut p { font-size: 1.8em; color: #5e6061 } .checkOut p a { color: #da251c; position: relative; padding-right: 45px } a.backBtn, a.kliBack { color: #da251c; font-size: 1.8em; float: left; position: relative; padding-left: 45px; box-sizing: border-box; min-height: 35px; clear: both } a.kliBack { position: absolute; left: 0; bottom: 20px } .checkOut a:after, a.backBtn:after, a.kliBack:after { width: 35px; height: 35px; background: #da251c; content: ''; display: block; position: absolute; left: 0; top: -5px; border-radius: 35px; z-index: 0 } .checkOut a:before, a.backBtn:before, a.kliBack:before { width: 0; height: 0; position: absolute; left: 10px; top: 8px; border: 1px solid #fff; z-index: 1; padding: 4px; content: ''; border-color: transparent transparent #fff #fff; transform: rotate(45deg); z-index: 100 } .checkOut a span:after, a.backBtn span:after, a.kliBack span:after { width: 15px; height: 1px; background: #fff; content: ''; display: block; position: absolute; left: 10px; top: 12px; z-index: 1 } .checkOut a:after { left: auto; right: 0 } .checkOut a:before { left: auto; right: 10px; border-color: #fff #fff transparent transparent } .checkOut a span:after { left: auto; right: 10px } .filterKLI, .kliNewsDetails, .kliNewsDetails ul.reportUL { width: 100%; float: left } .kliNewsDetails { position: absolute; left: 100%; top: 0; z-index: 1; background: #fff; padding: 0; opacity: 1; transition: all ease .8s; -webkit-transition: all ease .8s; -moz-transition: all ease .8s; -o-transition: all ease .8s; display: inline-table; height: 100% } .midKLI { display: table-cell; vertical-align: middle } .kliNewsDetails.activate { left: 0; opacity: 1 } .kliNewsDetails ul.reportUL { margin: 10px 0 } .kliNewsDetails ul.reportUL li { width: 25% } .filterKLI .selectbg { position: relative; width: 160px; margin: 0 5px } .selectDate { width: auto; float: left; margin: 0 15px } .selectDate span { float: left; line-height: 50px; font-size: 1.8em; color: #5e6061 } .dateSelect, .keyWordWrap { width: auto; margin: 0 auto; display: table } .keyWordWrap { margin: 15px auto 0 auto; position: relative; padding-bottom: 25px } .keyWordWrap .errorMsg { text-align: center; left: 0 } .keyWordWrap input[type=text] { width: 260px; margin: 0 5px } .keyWordWrap .selectbg { width: 260px } .keyWordWrap a.link { margin-left: 5px } ul.paginationUL { padding: 10px 0 } ul.paginationUL .selectbg { position: relative; width: 75px; line-height: 35px; height: 35px } ul.paginationUL .selectbg select, ul.paginationUL .selectedvalue { line-height: 35px; height: 35px } ul.paginationUL .selectedvalue { padding: 0 15px 0 15px; color: #da251c; font-size: 1.8em } ul.paginationUL .selectedvalue:after { display: none } ul.paginationUL .selectedvalue:before { top: 10px; right: 10px } ul.paginationUL { width: auto; margin: 15px auto 0 auto; display: table } ul.paginationUL li { width: auto; float: left; margin: 0 5px } ul.paginationUL li a { padding: 0 5px; line-height: 35px; height: 35px; float: left; color: #da251c; font-size: 1.8em } ul.paginationUL .selectedvalue.selected, ul.paginationUL li a.selected { color: #5e6061 } .kli_Left { width: 100%; float: left; padding: 0 0 } .kliNewsWrap img.img50 { top: 65px } .videoPlay { position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%); box-sizing: border-box; display: none; z-index: 3 } .videoPlay iframe { width: 700px; height: 395px; float: left } .videoPlay .closeSearch { position: absolute; right: -45px; top: -5px; opacity: 1 } .mediaInner { width: 100%; float: left; padding: 60px 0 50px 0; position: relative; margin: 30px 0 0 0 } .mediaInner a.backBtn { position: absolute; right: auto; left: 0; margin: 0; bottom: auto; top: 0 } .leftData { width: 65%; float: left } .rightData { width: 35%; float: left; padding: 0 0 0 50px; box-sizing: border-box } .rightData h4 { font-size: 1.6em; color: #5e6061; font-family: Lato-Bold; font-weight: 400; margin: 0 0 15px 0; width: 100%; float: left } .rightData ul.reportUL > li { width: 100%; padding: 10px 0 } ul.dateInfo { width: 100%; float: left; border-top: 1px solid #bfbfc0; border-bottom: 1px solid #bfbfc0; padding: 12px 0; margin: 0 0 30px 0 } ul.dateInfo li { width: auto; float: left; border-left: 1px solid #bfbfc0; padding: 0 10px; font-size: 1.3em; color: #5e6061; letter-spacing: 1px } ul.dateInfo li:first-child { padding-left: 0; border: none } ul.dateInfo li a { position: relative; left: 0; bottom: auto; left: 0 } ul.dateInfo li.lastEle_LI { float: right; border: none; position: relative; padding-left: 40px; padding-right: 0 } ul.dateInfo li.lastEle_LI img { width: 30px; margin: 0; position: absolute; left: 0; top: -6px } .leftData img { max-width: 100%; margin-bottom: 15px; float: left } .leftData .rte-img-chosen { display: block; margin: 0 } .feedbackWrap p, .mediaInner p { font-size: 1.6em; color: #5e6061; margin: 10px 0; line-height: 1.6em; width: 100%; float: left } .shareW { width: 100%; float: left; margin: 20px 0 0 0; border-top: 1px solid #bfbfc0; padding: 20px 0 0 0 } .shareW ul.shareUL li:first-child { font-size: 1.6em; color: #5e6061; margin: 0 25px 0 0; width: auto } p.mandatoryTxt { font-family: Lato-Italic } ul.controlBtn { width: auto; float: right } ul.controlBtn li { float: left } .feedbackWrap .midWrap01 { padding: 0 0 } ul.feedbackUL { width: 75%; float: left } ul.feedbackUL li { width: 100%; float: left; padding: 5px 0 15px 0; position: relative } ul.feedbackUL li .smallTxt { position: relative; font-size: 1.2em; color: #5e6061; width: 100%; text-align: right; float: left; margin: 0 0 5px 0 } ul.feedbackUL li .selectbg { position: relative; width: 100% } .mapView { width: 100%; float: left; position: relative } .mapView #map_canvas { width: 100%; float: left; height: 460px } .mapForm { width: 350px; float: left; background: #fff; height: 100%; position: absolute; right: 10%; top: 0; padding: 30px 20px; box-sizing: border-box; overflow: hidden; z-index: 1; box-shadow: 0 0 18px -5px #333; -webkit-box-shadow: 0 0 18px -5px #333; -moz-box-shadow: 0 0 18px -5px #333; -o-box-shadow: 0 0 18px -5px #333 } .mapForm p { font-size: 1.5em; color: #5e6061; line-height: 1.6em; margin-bottom: 10px; width: 100%; float: left; margin: 10px 0 } .orDiv { width: 100%; float: left; padding: 25px 0 } .orDiv span { color: #5e6061; font-size: 1.6em; width: 100%; text-align: center; float: left; text-transform: uppercase; position: relative; z-index: 0 } .orDiv span:after { width: 100%; height: 1px; background: #5e6061; content: ''; display: block; position: absolute; left: 0; top: 50%; z-index: -2 } .orDiv span:before { width: 50px; height: 50px; background: #fff; content: ''; display: block; position: absolute; left: 50%; top: 50%; margin: -25px 0 0 -25px; z-index: -1 } .mapForm a.nextArrow { float: right; width: 40px; height: 40px; margin: 0 } .mapForm a.nextArrow:after, .mapForm a.nextArrow:before { right: 13px } .mapForm input[type=text] { width: 80%; height: 40px; line-height: 40px } .mapForm .selectbg { width: 100%; float: left; margin: 10px 0; height: 40px } .mapForm .selectbg select, .mapForm .selectedvalue { line-height: 40px; height: 40px } .mapForm .selectedvalue:before { top: 11px } .mapInfoDetails { box-sizing: border-box; height: 100%; left: 100%; padding: 30px 20px; position: absolute; top: 0; width: 100%; background: #fff; z-index: 5; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } .mapInfoDetails.activate { left: 0 } .mapInfoDetails ul.mapD, .mapInfoDetails ul.mapD li { width: 100%; float: left } .mapInfoDetails ul.mapD li { border-bottom: 1px solid #d7d7d7; padding: 10px 0 } .mapInfoDetails ul.mapD li:first-child { border-top: 1px solid #d7d7d7 } .mapInfoDetails ul.mapD li a { color: #5e6061; font-size: 1.6em; padding-left: 30px; box-sizing: border-box; position: relative; float: left } .mapInfoDetails ul.mapD li a:after { width: 20px; height: 25px; content: ''; display: block; position: absolute; left: 0; top: 0; display: block; background: url(../images/spriteImg.webp) no-repeat -354px -155px } .mapInfoDetails ul.mapD li a.openNow:after { background-position: -420px -155px } .mapInfoDetails ul.mapD li a.openNow { width: 100% } .mapInfoDetails ul.mapD li a.openNow:before { width: 0; height: 0; content: ''; display: block; position: absolute; right: 0; top: 0; display: block; border: 1px solid #5e6061; border-color: transparent #5e6061 #5e6061 transparent; padding: 4px; transform: rotate(45deg) } .mapInfoDetails ul.mapD li a.openNow.opened:before { border-color: #5e6061 transparent transparent #5e6061; top: 7px } .mapInfoDetails .timeDetails { width: 100%; float: left; padding: 0 0 0 30px; box-sizing: border-box; display: none } .mapInfoDetails .timeDetails p { margin: 5px 0 0 0 } .mapInfoDetails img.pointer { clear: both; display: table; margin: 0 auto; padding-top: 10px } .insuranceGuide01 { padding-bottom: 50px } .insuranceGuide01 .rgtCont { width: 100%; padding: 0 0 80px 0 } .insuranceGuide01 .carouselWrap .imgSrc { width: 78% } .insuranceGuide01 .carouselWrap .imgSrc img { position: relative } .insuranceGuide01 .sliderControlWrap { display: none } .insuranceGuide01 .carouselWrap .contWrap .imgPath { width: 100%; float: left; line-height: 50px; height: 50px; font-size: 1.4em; color: #5e6061; margin: 0 0 15px 0 } .insuranceGuide01 .carouselWrap .contWrap .imgPath img { width: auto; height: 100%; display: block; float: left; margin-right: 10px } ul.reportUL_img > li .reportBox { padding: 25px } ul.reportUL_img > li .reportBox .img { width: auto; float: left; padding-right: 25px; box-sizing: border-box; max-width: 50% } ul.reportUL_img > li .reportBox .img img { width: 100%; float: left } ul.reportUL_img > li .reportBox .detail { width: auto; float: left; position: relative; height: 100%; padding-bottom: 25px; box-sizing: border-box; max-width: 50% } ul.reportUL_img > li a { left: 0; bottom: 0 } ul.reportUL_img > li p { font-size: 1.6em } ul.reportUL_img > li h4 { font-family: Lato-Regular; font-weight: 400; letter-spacing: 1px } .insuranceGuide01 ul.dateInfo { border: none; margin: 0 0 15px 0; padding: 0 } a.like, a.likeArticle, a.views { width: auto; float: left; padding-left: 20px; box-sizing: border-box; position: relative; line-height: 15px; color: #5e6061; cursor: default } a.like:after, a.likeArticle:after, a.views:after { width: 15px; height: 15px; content: ''; position: absolute; left: 0; top: 0; background: url(../images/spriteImg.webp) no-repeat -264px -203px; transition: all ease .2s; -webkit-transition: all ease .2s; -moz-transition: all ease .2s; transition: all ease .2s } a.likeArticle { font-size: 1.6em; letter-spacing: 0; line-height: 20px; margin: 0 100px 0 0; padding-left: 30px; cursor: pointer } a.likeArticle:after { background-position: -309px -203px; width: 25px; height: 25px } a.likeArticle.liked:after, a.likeArticle:hover:after { background-position: -309px -261px } a.views { padding-left: 25px } a.views:after { background-position: -375px -284px; width: 20px; height: 12px; top: 2px } .searchWrapper .midWrapper { padding: 40px 0; box-sizing: border-box } .searchBox01 { position: relative; margin: 0 auto 0 auto; float: none; display: block; left: 0; top: 0; transform: translate(0, 0); width: 65%; transition: 0s } .searchBox01 input[type=text] { font-size: 2em } ul.reportUL_img2 > li p { font-size: 1.6em } ul.reportUL_img2 > li .reportBox .img { max-width: 25% } ul.reportUL_img2 > li .reportBox .detail { max-width: 75% } .lookW { width: 100%; float: left } .lookW h3 { text-align: center } ul.lookUL { width: auto; margin: 0 auto; display: table; padding: 15px 0 50px 0 } ul.lookUL li { width: auto; float: left; margin: 5px } ul.lookUL li a { border: 1px solid #da251c; line-height: 45px; height: 45px; text-align: center; color: #da251c; font-size: 1.4em; border-radius: 25px; padding: 0 30px; float: left; text-transform: uppercase; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } ul.lookUL li a:hover { background: #da251c; color: #fff } .rightData ul.reportUL_img > li .reportBox .detail, .rightData ul.reportUL_img > li .reportBox .img { max-width: 100%; height: auto } .rightData ul.reportUL_img > li .reportBox .detail { margin: 20px 0 0 0 } .rightData ul.reportUL_img > li .reportBox ul.dateInfo { margin: 0 0 10px 0 } .rightData ul.dateInfo, ul.reportUL ul.dateInfo { border: none; padding: 0; margin: 0 0 15px 0 } .tags { width: 100%; float: left; font-size: 1.6em; color: #5e6061; line-height: 1.5em; margin: 0 0 15px 0 } .tags a { font-size: 1em; text-transform: none; color: #5e6061; border: 1px solid #bfbfc0; line-height: 40px; padding: 0 15px; box-sizing: border-box; margin: 0 0 10px 4px; border-radius: 25px; display: inline-block } .likeWrap .midWrapper { padding-top: 50px; padding-bottom: 50px; display: table } .likeWrap ul.reportUL { margin: 0 0 30px 0 } .likeWrap a.link { margin: 0 auto; float: none; display: table } ul.mostVisited { margin: 0 0 15px 0; padding: 0; float: right } ul.mostVisited > li { float: left; padding: 0 10px; border-left: 1px solid #08315f } ul.mostVisited > li:first-child { border: none } ul.mostVisited > li a { color: #08315f; font-size: 1.6em; position: relative; box-sizing: border-box; padding: 0 0 0 22px; margin: 0 } ul.mostVisited > li a:after { width: 15px; height: 15px; content: ''; display: block; background: url(../images/spriteImg.webp) no-repeat -379px -204px; position: absolute; left: 0; top: 3px; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } ul.mostVisited > li a.mRecent:after { background-position: -379px -204px } ul.mostVisited > li a.mRecent:hover:after { background-position: -379px -242px } ul.mostVisited > li a.mRecent.selected:after { background-position: -379px -242px } ul.mostVisited > li a.mLiked:after { background-position: -421px -204px } ul.mostVisited > li a.mLiked:hover:after { background-position: -421px -242px } ul.mostVisited > li a.mLiked.selected:after { background-position: -421px -242px } ul.mostVisited > li a.mViewed:after { background-position: -421px -286px; top: 6px } ul.mostVisited > li a.mViewed:hover:after { background-position: -421px -326px } ul.mostVisited > li a.mViewed.selected:after { background-position: -421px -326px } ul.mostVisited > li a.selected.mViewed:after { background-position: -421px -326px } ul.mostVisited > li a.selected, ul.mostVisited > li a:hover { color: #da251c } .headDesc02 { padding: 30px 0 10px 0 } .headDesc02 p { width: 100%; text-align: center; padding: 0; margin: 0 } ul.reportUL_noLink li .reportBox { padding: 25px } ul.executiveAdvisorUL, ul.glossaryUL { width: auto; margin: 0 auto 20px auto; display: table; text-align: center } ul.executiveAdvisorUL li, ul.glossaryUL li { display: inline-table; padding: 0 1px; box-sizing: border-box } ul.executiveAdvisorUL li a, ul.glossaryUL li a { float: left; width: 35px; height: 35px; line-height: 33px; text-align: center; color: #08315f; font-size: 1.4em; border: 1px solid #08315f; box-sizing: border-box; border-radius: 100%; background: #fff; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } ul.executiveAdvisorUL li a.selected, ul.glossaryUL li a.selected, ul.glossaryUL li a:hover { color: #fff; border-color: #da251c; background: #da251c } .writeusWrap { padding-top: 50px } .executiveAdvisorWrap p.hd, .glossaryWrap p.hd, .writeusWrap p.hd { padding: 0 0 20px 0; text-align: center; font-size: 2em } .writeusWrap p.hd { text-align: left } ul.writeusUL { width: 100%; float: left } ul.writeusUL > li { float: left; width: 50%; position: relative } ul.writeusUL > li ul { width: 100%; float: left } ul.writeusUL > li ul > li { width: 50%; float: left; padding: 0 5px 20px 0; box-sizing: border-box; position: relative; margin: 0 } ul.writeusUL > li.secondLi li { width: 30% } ul.writeusUL > li.secondLi li:first-child { width: 70% } ul.writeusUL > li.secondLi li a { float: right } .bodWrapper, .bodWrapper .testiDescriptionWrap { background: #eae9ea } .ourPeople, .ourPeople .testiDescriptionWrap { background: #fff } .ourPeople .midWrapper { padding-bottom: 50px; display: table } .visionWrap { padding: 50px 30px 40px } ul.visionUL li { margin: 20px 0 } ul.visionUL li:nth-child(3n+1) { clear: both } .visionWrap01 ul.innerUL li { text-align: left; margin: 20px 0 0 0 } .visionWrap01 ul.innerUL li:nth-child(3n+1) { clear: left } .bodWrap { width: 100%; float: left; overflow: hidden; position: relative } ul.bodUL { width: auto; text-align: center; display: table; margin: 0 auto; float: none } ul.bodUL li { display: inline-table; margin: 20px 35px; padding: 0; clear: none } ul.bodUL li a { color: #5e6061; position: relative; width: 100%; float: left } ul.bodUL li .img { width: auto; border-radius: 100%; box-sizing: border-box; overflow: hidden; position: relative; position: relative; max-width: 100%; padding: 0; margin: 0 auto 25px auto; float: none } ul.bodUL li .img:after { width: 0; height: 0; background: rgba(218, 37, 28, .15); position: absolute; left: 50%; top: 100%; content: ''; display: block; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; border-radius: 100% } ul.bodUL li a:active .img:after, ul.bodUL li a:hover .img:after { width: 100%; height: 100%; left: 0; top: 0 } ul.bodUL li .img img { width: 100%; float: left; margin: 0 } ul.bodUL#advisor-div li .img img { max-width: 170px; max-height: 170px } ul.bodUL li h3, ul.bodUL li p { font-weight: 400 } ul.bodUL li h3 { margin: 0; font-size: 1.8em } ul.bodUL li p { font-family: Lato-Italic; font-size: 1.6em; margin: 5px 0 0 0; line-height: 1.3em } ul.bodUL li .plusIcon { left: 50%; margin-left: 0; bottom: auto; top: 168px } ul.bodUL li a:hover .plusIcon { left: 50%; margin-left: -20px; bottom: auto; top: 148px } .bodWrapper ul.bodUL li { width: 170px; float: none; vertical-align: top } .bodWrapper .lifeAdv ul.bodUL li { margin: 0; width: 200px; height: 200px } .lifeAdv ul.bodUL li { display: table-cell } .lifeAdv ul.howdoUL li a { padding: 0 } .lifeAdv ul.howdoUL li a span:after, .lifeAdv ul.howdoUL li a span:before { display: none } .lifeAdv ul.howdoUL li a .arow { width: 22px; height: 22px; border: 1px solid red; position: absolute; bottom: 25px; left: 50%; margin-left: -10px; border-radius: 100%; z-index: 2 } .lifeAdv ul.howdoUL li a:hover .arow { border-color: #fff; background: #fff } .lifeAdv ul.howdoUL li a .arow:after, .lifeAdv ul.howdoUL li a .arow:before { width: 11px; height: 1px; background: #da251c; content: ''; display: block; position: absolute; left: 6px; top: 50%; transition: all ease .5s; -webkit-transition: all ease .5s; -moz-transition: all ease .5s; -o-transition: all ease .5s } .lifeAdv ul.howdoUL li a .arow:before { transform: rotate(-90deg); -webkit-transform: rotate(-90deg); -moz-transform: rotate(-90deg); -o-transform: rotate(-90deg) } .lifeAdv ul.howdoUL li a:hover .arow:after, .lifeAdv ul.howdoUL li a:hover .arow:before { background: #58595a } .lifeAdv .testiDescriptionWrap { z-index: 1001 } .lifeAdv li a.beBoss:before { background: url(../images/whyLA-become-01.png) no-repeat center 0 } .lifeAdv li a.zeroInvest:before { background: url(../images/whyLA-become-02.png) no-repeat center 0 } .lifeAdv li a.careerPath:before { background: url(../images/whyLA-become-03.png) no-repeat center 0 } .lifeAdv li a.rewardsRecog:before { background: url(../images/whyLA-become-04.png) no-repeat center 0 } .lifeAdv li a.trainingSupp:before { background: url(../images/whyLA-become-05.png) no-repeat center 0 } .lifeAdv li a.beBoss:hover:before { background: url(../images/whyLA-become-01-hover.png) no-repeat center 0 } .lifeAdv li a.zeroInvest:hover:before { background: url(../images/whyLA-become-02-hover.png) no-repeat center 0 } .lifeAdv li a.careerPath:hover:before { background: url(../images/whyLA-become-03-hover.png) no-repeat center 0 } .lifeAdv li a.rewardsRecog:hover:before { background: url(../images/whyLA-become-04-hover.png) no-repeat center 0 } .lifeAdv li a.trainingSupp:hover:before { background: url(../images/whyLA-become-05-hover.png) no-repeat center 0 } .fundPWrap .midWrapper { padding: 20px 0 50px 0; display: table } .fundPWrap .headDesc h2 { text-align: center } ul.reportUL.fund100 li { width: 100% } ul.reportUL.fund100 > li .reportBox .img { max-width: 30% } ul.reportUL.fund100 > li .reportBox .detail { max-width: 70%; padding-top: 15px; box-sizing: border-box } ul.reportUL.fund100 li h3 span { width: 100%; float: left } ul.reportUL.fund100 li a.pdfIcon { margin: 50px 0 0 0; position: relative; float: left } ul.reportUL.fund100 li a.pdfIcon { padding-left: 45px } ul.fundUL { width: 100%; float: left; margin: 50px 0 0 0 } ul.fundUL li { width: 33.33%; float: left; padding: 15px; box-sizing: border-box; height: auto !important } ul.fundUL li .reportBox { width: 100%; float: left; background: #fff; position: relative; padding: 0; box-sizing: border-box; box-shadow: 2px 2px 20px 0 #999; height: 100%; display: table } ul.fundUL li .reportBox img { float: left; max-width: 35%; height: 100%; width: 100% } ul.fundUL li .reportBox .detail { width: auto; padding: 0 20px; box-sizing: border-box; display: table; height: 100%; max-width: 65%; float: left } ul.fundUL li .reportBox a { position: relative; left: 0; bottom: 0; margin: 10px 0 0 0; float: left; min-height: 30px } .annualFund { width: auto; margin: 0 auto; display: table; padding: 0 15px; box-sizing: border-box } .annualFund p { padding: 0; text-align: center; font-size: 2em; color: #5e6061; float: left; width: auto; line-height: 50px; margin: 0 20px 0 0 } .annualFund .selectbg { width: 260px; float: left } .navWrapper { background: #e9e8e9 } .navWrapper .midWrapper { padding: 50px 0; display: table } .downloadAppWrap .midWrapper { padding: 0 0 50px 0 } .navWrapper .filterKLI p { text-align: center; font-size: 2em; color: #5e6061; margin-bottom: 15px } .navWrapper .filterKLI .keyWordWrap p { text-align: left; width: auto; float: left; display: table; margin: 0 10px 0 0 } .navWrapper .keyWordWrap .selectbg { width: 300px } .navDetailWrapper { width: 100%; float: left; background: #fff; padding: 50px 40px; box-sizing: border-box; margin: 25px 0 50px 0; position: relative } .viewWrap { width: 100%; float: left; padding: 20px 0; display: none } .viewWrap img { width: 100%; float: left } .tableClass { width: 100%; float: left; margin: 21px 0 30px 0 } .tableIndication { margin: 15px 0 0 0 } .tableClass td, .tableClass th { font-size: 16px; padding: 15px 20px 15px 40px; color: #5e6061; text-align: left; box-sizing: border-box } .tableClass th { background: #e3e3e3; font-weight: 400; font-family: Lato-Bold } .tableClass td { border-bottom: 1px solid #dfdfdf } .tableClass td.hdTD { border: none; background: #f2f2f2 } .tableClass td strong { font-weight: 400; font-family: Lato-Bold } .tableClass td a { font-size: 1em; margin: 10px 0 15px 0; float: left } .tableClass td img { float: left; margin: 0 0 0 50px } .tableClass td .hashIcon { color: #da251c } .claimtable01 .tableClass tr > td table, .claimtable01 .tableClass tr > th table { width: 45%; float: right } .claimtable01 .tableClass tr > td table { margin-top: 5px } .claimtable01 .tableClass tr > td table tr td, .claimtable01 .tableClass tr > th table tr th { width: 33.33% } .tableClass td table td { font-size: 1em; padding: 0; border: none } .tableClass th table th { font-size: 1em; border: none; padding: 0 5px } .claimDetailWrap .claimDetails .tableClass p { font-size: 1em; width: 55%; line-height: normal; padding-right: 20px; box-sizing: border-box } .claimDetailWrap .claimDetails .tableClass th p { line-height: 40px } .claimDetailWrap .claimDetails .tableClass td p { line-height: normal } .indicationTable { display: none; margin: 0; padding-bottom: 0 } .indicationTable td { border: none; padding: 10px 0 } .navWrapDetails h2 { width: 50%; margin: 0 auto; text-align: center; color: #5e6061; font-size: 3em; font-weight: 400; font-family: Lato-Light } ul.viewUL { width: auto; float: right; position: absolute; right: 40px; top: 80px } ul.viewUL li { float: left; width: auto; border-left: 1px solid #5e6061; padding: 0 10px } ul.viewUL li:first-child { border: none; padding-left: 0 } ul.viewUL li a { color: #08315f; font-size: 1.4em; position: relative; padding-left: 20px; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } ul.viewUL li a.selected, ul.viewUL li a:hover { color: #da251c } ul.viewUL li a:after { background: url(../images/spriteImg.webp) no-repeat -469px -156px; content: ''; display: block; position: absolute; left: 0; top: 4px; width: 13px; height: 13px; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } ul.viewUL li a.gView:after { background-position: -469px -156px } ul.viewUL li a.gView.selected:after, ul.viewUL li a.gView:hover:after { background-position: -469px -193px } ul.viewUL li a.tView:after { background-position: -525px -156px; top: 3px } ul.viewUL li a.tView.selected:after, ul.viewUL li a.tView:hover:after { background-position: -525px -191px } ul.fundTabUL { width: auto; margin: 0 auto; left: -40px; position: relative; display: table; padding: 0 } ul.fundTabUL li { float: left; text-align: center; display: block; padding: 0; margin: 0 } ul.fundTabUL li a { line-height: 50px; color: #fff; text-transform: uppercase; font-size: 1.3em; position: relative; padding: 0 15px; background: #5e6061; border-radius: 15px 15px 0 0; float: left; border: none; border-left: 1px solid #838485; letter-spacing: 1px } ul.fundTabUL li a.selected { color: #5e6061; display: block; background: #e9e8e9; border-color: #e9e8e9 } .navWrapDetails { width: 100%; float: left; display: none } .blogWrapper .midWrapper { padding: 70px 0; display: table } .blogWrapper .topDesc { padding: 20px 0 40px } input.dateFormat { width: 240px; float: left; margin: 0 0 0 15px; background: url(../images/calenderIcon.png) no-repeat 92% } .errorMsg { position: absolute; bottom: 0; left: 25px; color: #da251c; font-size: 1.1em; display: none } .errorMsg1 { position: absolute; bottom: 0; left: 25px; color: #da251c; font-size: 1.1em; display: none } .successMeg { width: 100%; float: left; color: #08315f; text-align: center; font-size: 1.4em; padding: 15px 0 0 0; display: none } .noRecord, .noRecordDiv { font-size: 1.8em; position: relative; width: 100%; text-align: center; padding: 25px 0; box-sizing: border-box; left: 0; color: #da251c; display: none; float: left } .noRecordDiv { display: block } ul.getCallUL li .errorMsg { bottom: -15px } ul.getCallUL li.checkbx .errorMsg { bottom: -10px } .faqsWrap .midWrapper { padding: 70px 0; display: table } .faqsWrap a.link { margin: 0 auto; display: table; float: none } ul.accordUL { width: 100%; float: left; margin: 0 0 40px 0 } ul.accordUL li { width: 100%; float: left; background: #fff; position: relative; padding: 0 15px; box-sizing: border-box; box-shadow: 2px 2px 20px 0 #999; height: 100%; display: table; margin: 10px 0 } ul.accordUL li:first-child { margin-top: 0 } ul.accordUL li h3 { color: #5e6061; font-size: 1.6em; font-family: Lato-Bold; width: 100%; float: left; font-weight: 400; padding: 25px 20px 25px 35px; box-sizing: border-box; position: relative; cursor: pointer } ul.accordUL li h3 span:after { border: 1px solid #da251c; box-sizing: border-box; border-radius: 100px; margin: -12px 0 0 0; padding: 0; transition: all ease .5s; -webkit-transition: all ease .5s; -moz-transition: all ease .5s; -o-transition: all ease .5s; content: ''; display: block; position: absolute; left: 0; top: 50%; height: 25px; width: 25px; box-sizing: border-box } ul.accordUL li h3:after, ul.accordUL li h3:before { width: 13px; height: 1px; background: #da251c; content: ''; display: block; position: absolute; left: 6px; top: 50%; transition: all ease .5s; -webkit-transition: all ease .5s; -moz-transition: all ease .5s; -o-transition: all ease .5s } ul.accordUL li h3:before { transform: rotate(-90deg); -webkit-transform: rotate(-90deg); -moz-transform: rotate(-90deg); -o-transform: rotate(-90deg) } ul.accordUL li h3.active:before { transform: rotate(0); -webkit-transform: rotate(0); -moz-transform: rotate(0); -o-transform: rotate(0) } ul.accordUL li p { color: #5e6061; font-size: 1.6em; width: 100%; float: left; font-weight: 400; line-height: 1.4em; margin-bottom: 15px } ul.accordUL li .accordDesc { width: 100%; float: left; box-sizing: border-box; padding: 0 20px 40px 35px; display: none } ul.accordUL li p:last-child { margin: 0 } ul.accordUL > li > .accordDesc h4 { color: #5e6061; font-size: 1.6em; font-family: Lato-Bold; width: 100%; float: left; font-weight: 400; padding: 10px 0 5px 0; box-sizing: border-box; position: relative } .accordDesc ul.bullet li { box-shadow: none; margin: 5px 0 } .accordDesc p a { color: #08315f } ul.landingUL01 { margin-bottom: 80px } ul.landingUL01 li { width: 33.33%; padding: 0 } ul.landingUL01 li img { display: block; float: left; margin-bottom: 15px } ul.landingUL01 li .reportBox { padding: 25px 25px 80px } .faqsWrap01 .midWrapper { padding: 0 0 80px 0 } .faqsWrap01 h2 { text-align: center; margin: 20px 0 30px 0; width: 100%; float: left } ul.accordUL > li > .accordDesc .box { width: 100%; float: left; margin: 25px 0 0 0; border-bottom: 1px solid #c7c7c8; padding-bottom: 25px } ul.accordUL > li > .accordDesc .lastBox { padding-bottom: 0; border: none } .divider { width: 100%; float: left; margin: 35px 0 0 0; border-top: 1px solid #c7c7c8 } ul.accordUL > li > .accordDesc .box .img { max-width: 30%; float: left } ul.accordUL > li > .accordDesc .box .img img { max-width: 100%; float: left } ul.accordUL > li > .accordDesc .box .desc { max-width: 70%; float: left; padding: 0 0 0 25px; box-sizing: border-box } ul.accordUL > li > .accordDesc .box .desc h4 { font-family: Lato-Regular, Arial, Helvetica, sans-serif; font-size: 2em } .buyPlan01 .topDesc { padding-bottom: 20px } .buyPlan01 .tollFree { float: none; margin: 30px auto 25px auto; padding-left: 0; width: 100% } .buyPlan01 .tollFree .needBox { padding: 0 0 15px 0; width: 50%; float: left; box-sizing: border-box; padding: 0 25px; border: none } .buyPlan01 .tollFree .needBox:first-child { border-right: 1px solid #bfc1c1; padding-left: 0 } .buyPlan01 .tollFree .needBox:last-child, .buyPlan01 .tollFree .needBoxLast { border: none; padding-right: 0 } .buyPlan01 h3 { margin-bottom: 0; font-size: 2.2em; margin-bottom: 15px } .buyPlan h3.callon a, .buyPlan h3.callon a:hover { color: #5e6061; cursor: default } .faqsWrap01 .topDesc { display: table } .faqsWrap01 .topDesc h2 { margin: 0 } .claimWrapper { width: 100%; float: left; margin: 0 0 50px 0 } .claimWrapper p { width: 100%; float: left; font-size: 2em; line-height: 1.4em } .claimWrapper .vidWrap { width: 100%; float: left; margin: 40px 0 0 0 } .claimWrapper01 .vidWrap { margin: 0 } .claimWrapper .vidWrap h3 { width: 25%; float: left; font-size: 4.5em; color: #5e6061; font-weight: 400; font-family: Lato-Light } .claimWrapper .vidBox { width: 100%; float: right; position: relative } .claimWrapper .vidBox img { width: 100%; float: left } .claimWrapper .vidBox .overlayVid { width: 100%; float: left; background: rgba(8, 49, 95, .9); height: 100%; position: absolute; left: 0; top: 0 } .claimWrapper .vidBox a.vPlay { width: 108px; height: 75px; background: #d0252a; position: absolute; z-index: 8; transform: translate(-50%, -50%); left: 50%; top: 50%; border-radius: 15px; overflow: hidden; text-indent: -99px } .claimWrapper .vidBox a.vPlay:after { width: 0; height: 0; content: ''; display: block; position: absolute; transform: rotate(-45deg); left: 50%; top: 50%; border: 10px solid #fff; border-color: transparent #fff #fff transparent; margin: -8px 0 0 -15px } .claimWrapper .vidBox iframe { width: 100%; height: 450px; position: relative; left: 0; top: 0 } .claimWrapper .topDesc { display: table; padding: 30px 0 10px } .claimWrapper ul.reportUL { margin: 30px 0 40px 0 } .claimWrapper ul.reportUL li { width: 33.33% } .claimWrapper ul.reportUL li .reportBox { padding: 30px 30px 75px 30px } .claimWrapper ul.reportUL li a { bottom: 35px } .claimWrapper a.link { margin: 0 auto; float: none; display: table } .claimWrapper ul.reportUL li a.pdfIcon { line-height: 40px; min-height: 45px; bottom: 20px } .claimWrapper ul.reportUL li a.pdfIcon:after { top: 0 } .tabWrap { width: 100%; float: left; position: relative } .locateWrap ul.bullet li { width: 33.33%; padding-right: 25px } .locateWrap ul.bullet { margin: 0 0 50px 0 } .locateWrap ul.bullet02 li { width: 50%; padding-right: 25px } .locateWrap ul.bullet02 li:nth-child(2n+1) { clear: left } .locateWrap .topDesc { padding-bottom: 10px } .locateMap { padding-bottom: 80px } .claimDetailWrap .claimDetails { width: 100%; float: left; padding: 0 0 80px 0 } .claimDetailWrap .claimDetails p { font-size: 1.6em; width: 100%; float: left; margin: 0 0 10px 0 } .claimDetailWrap h2 { text-align: center } .claimDetailWrap .claimDetails ul.bullet { margin-bottom: 20px } .claimDetailWrap .claimBox { width: 100%; padding: 40px 25px; box-sizing: border-box; box-shadow: 0 1px 30px -2px #c1c1c1; -webkit-box-shadow: 0 1px 30px -2px #c1c1c1; -moz-box-shadow: 0 1px 30px -2px #c1c1c1; -o-box-shadow: 0 1px 30px -2px #c1c1c1; float: left } .claimDetailWrap .claimBoxLast { margin: 50px 0 70px 0 } ul.bulletHash li:after { background: 0 0; content: '#'; color: #da251c; top: 0; left: 0 } ul.claimBoxUL { width: 100%; float: left } ul.claimBoxUL li { width: 50%; float: left; padding: 0 25px 0 0; box-sizing: border-box } .claimDetailWrap .claimBox .box { width: 50%; float: left; padding: 0 0 0 40px; box-sizing: border-box } .claimDetailWrap .claimBox .box h3 { color: #5e6061; font-size: 2em; font-weight: 400; margin: 0 0 15px 0; letter-spacing: 1px } .claimDetailWrap .claimBox .box a { font-size: 1.6em; float: left; margin: 15px 0 10px 0; min-height: 40px } .claimDetailWrap .claimBox .boxBorder { border-left: 1px solid #afb1b1 } .claimDetailWrap .claimBox a.formIcon:after, .claimDetailWrap .claimBox a.newsIcon:after, .claimDetailWrap .claimBox a.pdfIcon:after { top: 0 } .claimDetailWrap .claimBox a.pdfIcon01:after { top: -8px } .rBox { width: 50%; float: left; margin-bottom: 50px; padding: 0 40px; box-sizing: border-box; border-right: 1px solid #afb1b1 } .rBox01 { border: none } .rBox:last-child { border: none; padding-bottom: 0 } .rBox h3 { font-size: 2em; color: #5e6061; font-weight: 400; margin-bottom: 10px } .rBox .img { width: 25%; float: left } .rBox .img img { max-width: 100% } .rBox .rDetail { width: 75%; float: left; padding-left: 25px; box-sizing: border-box } .graphWrap { margin: 0 auto; width: 100%; height: auto; display: block; position: relative; float: left } .graphWrap #graphicalView { margin: 0 auto } .claimWrapper ul.grievanceUL01 { width: 520px; margin: 0 auto; float: none; padding: 50px 0 0 0; display: table } .claimWrapper ul.grievanceUL01 li { padding: 0; width: 100% } .claimWrapper ul.grievanceUL02 { margin: 40px 0 0 0 } .claimWrapper ul.grievanceUL02 li { width: 50% } ul.fundTabUL li a span { text-transform: none } .serviceTableBox { width: 100%; float: left; background: #fff; padding: 30px 40px; box-sizing: border-box; margin: 50px 0 0 0 } .claimWrapper p.smallSize { font-size: 1.6em; margin: 50px 0 0 0 } .filterGrievance { margin: 40px 0 0 0; width: 100%; float: left; border-top: 1px solid #c3c3c4; padding-top: 40px } .filterGrievance .selectbg { top: 40px } .filterGrievance p { text-align: right; line-height: 50px; padding-right: 300px; box-sizing: border-box } .marginNone { margin-bottom: 0 !important } .claimWrapper p a { color: #da251c } .ridersBox { width: 70%; margin: 0 auto 80px auto; display: table } .ridersBox .img { width: 10%; float: left } .ridersBox .img img { max-width: 100px; float: left } .ridersBox .cont { width: 90%; float: left; margin: 0 } .ridersBox .cont h3 { font-size: 2em; float: left; color: #5e6061; width: 100%; font-weight: 400 } .ridersBox .cont p { font-size: 1.6em; float: left; color: #5e6061; width: 100%; font-weight: 400; margin: 10px 0 25px 0 } .ridersWrap { padding-bottom: 80px } .ridersWrap a.link { margin: 0 auto; display: table; float: none } .ridersWrap ul.reportUL { padding-bottom: 0 } ul.riderUL li ul.bullet li { width: 100%; padding: 0 0 0 15px } ul.riderUL li .img { width: 25%; float: left } ul.riderUL li .img img { width: 100%; max-width: 120px } ul.riderUL li .detail { width: 75%; float: left; padding-bottom: 70px; position: relative; height: 100%; box-sizing: border-box; padding-left: 20px } ul.riderUL li .reportBox { padding-bottom: 0 } ul.riderUL li a.pdfIcon { left: 15px; bottom: 35px } .tableWrapper { width: 100%; float: left; overflow: auto; margin: 20px 0 } .tableView { width: 100%; float: left; overflow: hidden } .tableView .tableClass { margin: 0 0 10px 0 } ul.eligibilityUL > li .tableClass td, ul.eligibilityUL > li .tableClass th { padding: 15px 10px } ul.eligibilityUL > li .tableClass th table th { padding: 5px 5px 0 0 } ul.eligibilityUL > li .tableClass .tableClass { margin: 0 } .needCalculatorWrap h2 { text-align: center } .needCalculatorWrap .contInfo { width: 100%; float: left; height: 100%; display: table; padding-top: 20px } .needCalculatorWrap .leftCont { width: 50%; float: left; box-sizing: border-box; padding: 0 0 0 40px } .needCalculatorWrap p { font-size: 2em; color: #5e6061; width: 100%; float: left } .needCalculatorWrap .leftCont p { width: 60% } .needCalculatorWrap .leftCont .imgDiv { margin: 50px 0 0 25px; width: 100%; float: left; position: relative } .needCalculatorWrap .leftCont .imgDiv img { width: 100%; float: left } .needCalculatorWrap .leftCont .imgDiv video { width: 100%; position: absolute; left: 0; top: 0 } .needCalculatorWrap .leftCont .imgDiv:after { width: 100%; height: 100%; position: absolute; content: ''; left: 0; top: 0; display: block; z-index: 1 } .needCalculatorWrap .rightCont { width: 50%; float: left; box-sizing: border-box; height: 100%; display: inline-table } .needCalculatorWrap .step01, .needCalculatorWrap .step03 { width: 100%; float: left; background: #fff; padding: 60px 40px; box-sizing: border-box; position: relative; left: -30px; box-shadow: 0 0 18px -5px #333; -webkit-box-shadow: 0 0 18px -5px #333; -moz-box-shadow: 0 0 18px -5px #333; -o-box-shadow: 0 0 18px -5px #333; display: block } .needCalculatorWrap .step01 span { color: #da251c; font-size: 7.8em; text-transform: uppercase; line-height: .9em; font-family: Lato-Bold; width: auto; clear: both; display: table } .needCalculatorWrap .step01 span.forTxt { clear: none; float: left } .needCalculatorWrap .step01 .selectbg { width: 310px; float: right; margin: 15px 0 0 0 } .needCalculatorWrap .rightCont a.link { float: left; margin: 50px 0 0 0; clear: both; padding: 0 10px; min-width: 120px; background: #da251c; color: #fff; border: none } .needCalculatorWrap .rightCont a.link:hover { background: #fc453c } .needCalculatorWrap .rightCont .step02 a.link { margin: 0 } .needCalculatorWrap .step02 { width: 70%; float: left; background: #fff; padding: 50px 40px; box-sizing: border-box; position: relative; left: 65px; box-shadow: 0 0 18px -5px #333; -webkit-box-shadow: 0 0 18px -5px #333; -moz-box-shadow: 0 0 18px -5px #333; -o-box-shadow: 0 0 18px -5px #333; display: block } .needCalculatorWrap .steps { opacity: 0; margin: 0 0 0 40px; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } .needCalculatorWrap .steps.selected { opacity: 1; margin: 0 } ul.step2Form, ul.step2Form li { width: 100%; float: left; margin: 20px 0 0 0; position: relative } ul.step2Form li { padding: 0 0 15px 0; margin: 0 0 5px 0 } ul.step2Form li .errorMsg { display: block } ul.step2Form li.mandatoryTxt { padding: 0 } ul.step2Form li.mandatoryTxt p { font-size: 1.4em; margin: 0; padding: 0 } .needCalculatorWrap .step03 ul.planUL li { width: 100%; padding: 0; margin: 40px 0 0 0 } .needCalculatorWrap .step03 ul.planUL li:first-child { margin: 0 } .needCalculatorWrap .step03 ul.planUL li a.links { position: relative; float: left; bottom: 0 } ul.needUL { width: auto; float: right; position: relative } ul.needUL li { width: auto; float: left; margin: 0 10px } ul.needUL li a { color: #bfbfc0; font-size: 1.6em; padding: 3px; box-sizing: border-box; float: left; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; position: relative } ul.needUL li a.selected, ul.needUL li a:hover { color: #5e6061 } .needCalculatorWrap .topCnt { float: right; position: relative; top: -30px } .needCalculatorWrap .topCnt a.links { color: #da251c; padding-left: 40px; top: 5px; padding-right: 0; margin: 0 10px 0 0; display: none } .needCalculatorWrap .topCnt a.links:hover { color: #fc453c } .needCalculatorWrap .topCnt a.links:after { left: 0; border-color: #da251c transparent transparent #da251c } .needCalculatorWrap .topCnt a.links:before { left: 0 } .needCalculatorWrap .topCnt a.links:hover:before { width: 40px; left: -10px } .needCalculatorWrap .topCnt a.links:hover:after { left: -10px } .needCalculatorWrap .step02, .needCalculatorWrap .step03 { display: none } .thankyouWrap { display: none; padding-top: 45px } #thanksMsgContactUs { display: block } .deactive_li { display: none !important } .active_li { display: block } .error { color: #da251c; padding-left: 25px } .noBrances, .pinErr { color: #da251c; padding-left: 25px; display: none } .pinErr { width: 100%; float: left; box-sizing: border-box } #contactSubmit { cursor: pointer } #contactSubmitMsg { color: #da251c !important } .info_content { width: 350px } .emptyError, .formError { display: none; color: #da251c !important; font-size: 1.2em !important; margin-left: 20px; padding-top: 5px } .ageRequired, .cityRequired, .nameRequired, .numberRequired { display: none; position: absolute; bottom: 0; left: 25px; color: #da251c; font-size: 1.1em } .disClr { background: #fc453c } .graphWrap { margin: 0 auto; width: 100%; height: auto; display: block; position: relative; float: left } .graphWrap #graphicalView { margin: 0 auto } .searchResultWrap { padding: 0 0 25px 0 } .searchResultWrap .gsc-control-cse .gsc-results-wrapper-overlay { box-sizing: border-box; left: 0; position: relative !important; width: 100% } .searchResultWrap .gsc-webResult .gsc-result { padding: 15px 0 !important; margin: 0 0 !important; float: left !important; width: 100% !important; border-bottom: 1px solid #ebebeb !important } .searchResultWrap .gsc-results .gsc-cursor { width: auto !important; float: left !important; margin: 25px 0 0 0 !important } .gsc-results .gsc-cursor-box .gsc-cursor-page { font-size: 14px !important; font-weight: 400 !important; padding: 8px 0 !important; border-radius: 100px !important; box-sizing: border-box; min-height: 35px !important; min-width: 35px !important; float: left !important; text-align: center !important; text-decoration: none !important } .searchResultWrap .gsc-results .gsc-cursor-box .gsc-cursor-current-page { border-color: #da251c !important; background-color: #da251c !important; color: #fff !important } ul.howWorksUL > li { position: relative; top: 50px; opacity: 1; overflow: hidden; transition: all ease .8s; -webkit-transition: all ease .8s; -moz-transition: all ease .8s; -o-transition: all ease .8s } ul.howWorksUL > li.activeArticle, ul.howWorksUL > li.animate { top: 0 } ul.howWorksUL li img { top: 150px; position: relative; transition: all ease .8s; -webkit-transition: all ease .8s; -moz-transition: all ease .8s; -o-transition: all ease .8s; opacity: 1; transition-delay: .4s; -webkit-transition-delay: .4s; -moz-transition-delay: .4s; -o-transition-delay: .4s } ul.howWorksUL li p { top: 400px; position: static; transition: all ease 1.2s; -webkit-transition: all ease 1.2s; -moz-transition: all ease 1.2s; -o-transition: all ease 1.2s; opacity: 1; transition-delay: .6s; -webkit-transition-delay: .6s; -moz-transition-delay: .6s; -o-transition-delay: .6s } ul.howWorksUL li.activeArticle img, ul.howWorksUL li.animate img, ul.howWorksUL li img { opacity: 1; top: 0 } ul.howWorksUL li.activeArticle p, ul.howWorksUL li.animate p { opacity: 1; top: 0 } ul.howWorksUL > li:before { width: 0; height: 0; opacity: 1; transition: all ease .5s; -webkit-transition: all ease .5s; -moz-transition: all ease .5s; -o-transition: all ease .5s } ul.howWorksUL > li.activeArticle:before, ul.howWorksUL > li.animate:before { width: 11px; height: 45px; opacity: 1 } ul.howWorksUL > li ul { position: relative; top: 500px; opacity: 1; overflow: hidden; transition: all ease 1.2s; -webkit-transition: all ease 1.2s; -moz-transition: all ease 1.2s; -o-transition: all ease 1.2s; transition-delay: .7s; -webkit-transition-delay: .7s; -moz-transition-delay: .7s; -o-transition-delay: .7s } ul.howWorksUL > li.activeArticle ul, ul.howWorksUL > li.animate ul { top: 0; opacity: 1 } .whiteBg { background: #fff } .midDescWrap { padding-top: 80px } .fpWrapper { text-align: center; margin: 0; padding: 20px 0 } .fpWrapper p.redTxt { margin: 25px 0 0 0; width: 100%; float: left } .fpWrapper p.redTxt span { color: #da251c } ul.bmwModelUL { width: auto; margin: 30px auto 0 auto; display: inline-block } ul.bmwModelUL li { width: 110px; height: 110px; border: 1px solid #5e6061; float: left; margin: 0 42px; box-sizing: border-box; border-radius: 60px; display: table; position: relative } ul.bmwModelUL li p { font-size: 1.4em; display: table-cell; vertical-align: middle; float: none } ul.bmwModelUL li:after { width: 82px; height: 1px; background: #5e6061; content: ''; display: block; left: -100%; top: 50%; position: absolute; margin-left: 25px } ul.bmwModelUL li:before { width: 0; height: 0; content: ''; display: block; left: -100%; top: 50%; position: absolute; margin: -3px 0 0 98px; border: 1px solid #5e6061; border-color: transparent #5e6061 #5e6061 transparent; padding: 3px; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg) } ul.bmwModelUL li:first-child:after, ul.bmwModelUL li:first-child:before { display: none } ul.fpMIdUL { margin: 50px 0 0 0; float: left } ul.fpMIdUL li { width: 33.33%; clear: none !important; padding: 0 30px 0 0; margin: 0 } ul.fpMIdUL li h3 { font-size: 3em; color: #5e6061; font-family: Lato-Light; font-weight: 400; margin: 0 0 30px 0; float: left; width: 100% } ul.fpMIdUL li h3 span { color: #da251c } ul.fpMIdUL li .midBoxCont { width: 100%; float: left; background: #fff; padding: 30px; box-sizing: border-box; text-align: left; height: 84%; box-shadow: 5px 5px 12px 2px #a5a5a5; -webkit-box-shadow: 5px 5px 12px 2px #a5a5a5; -moz-box-shadow: 5px 5px 12px 2px #a5a5a5; -o-box-shadow: 5px 5px 12px 2px #a5a5a5 } ul.fpMIdUL01 { margin: 0 } ul.fpMIdUL01 li .midBoxCont { height: 100% } ul.fpMIdUL li .midBoxCont .rowCnt { width: 100%; float: left; border-top: 1px solid #cecfcf; padding: 20px 0 0 0 } ul.fpMIdUL li .midBoxCont .rowCnt:first-child { padding: 0; border: none } ul.fpMIdUL li .midBoxCont h4 { width: 100%; float: left; font-size: 2.2em; font-weight: 400; margin: 0 0 5px 0; color: #5e6061 } ul.fpMIdUL li .midBoxCont p { width: 100%; float: left; font-size: 1.6em; font-weight: 400; margin: 0 0 10px 0 } .riskManagementWrapper { padding-top: 50px; padding-bottom: 0 } .riskManagementWrapper .boxWrap ul { padding-top: 20px } .rhsboxWrap01 { display: block !important } .containerWrapper .headDesc { padding-bottom: 0 } .containerWrapper .contDetails { width: 100%; float: left; padding: 0 0 50px 0 } .containerWrapper .contDetails p { font-size: 1.6em; margin: 10px 0 } .containerWrapper .contDetails p:first-child { margin: 0 } .containerWrapper .contDetails ul.bullet { margin: 5px 0 20px 0 } .containerWrapper .contDetails ul.bullet li { line-height: 1.5em } .containerWrapper .contDetails ul.bullet li ul.bullet { margin-bottom: 0 } .containerWrapper .contDetails ul.bullet li ul.bullet li { font-size: 1em } .containerWrapper .contDetails ul.bullet li a { color: #5e6061; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } .containerWrapper .contDetails ul.bullet li:after { top: 10px } .containerWrapper .contDetails ul.bullet li a:hover { color: #23282b } .containerWrapper .contDetails p a { color: #08315f; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } .containerWrapper .contDetails p a:hover { color: #da251c } .containerWrapper .contDetails h2 { margin: 25px 0 0 0 } .containerWrapper .contDetails p.smallTxt { font-size: 1.3em; margin-bottom: 40px } .containerWrapper .contDetails .boxWrap { margin-top: 30px } .innerLoader { position: relative; left: 50%; top: 50%; margin: 25px 0 0 -25px; display: none } .needCalculatorWrap .innerLoader { position: absolute; margin: -25px 0 0 -25px } #lookingScroll { height: 350px; width: 95%; float: left; overflow: hidden } .needCalculatorWrap .step03 { padding: 40px 0 40px 35px } ul.planUL li h3:active, ul.planUL li h3:hover, ul.reportUL li h3:active, ul.reportUL li h3:hover { cursor: pointer; color: #da251c } .kliNewWrap ul.reportUL li h3:active, .kliNewWrap ul.reportUL li h3:hover { cursor: default; color: #08315f } ul.careerLAUL li h3:active, ul.careerLAUL li h3:hover { cursor: default; color: #5e6061 } ul.onlineplanUL li .detail .linkBox { position: absolute; bottom: 0; left: 0 } ul.onlineplanUL li .detail .linkBox a.links { position: relative; bottom: auto; left: 0; top: 0; float: left } ul.onlineplanUL li .detail a.onlineBuy { position: relative; color: #da251c; border-left: 1px solid #bdbebe; font-size: 1.4em; float: left; margin: 0 0 0 20px; padding: 0 0 0 15px } ul.onlineplanUL li .detail a.onlineBuy:active, ul.onlineplanUL li .detail a.onlineBuy:hover { color: #fc453c } .feedbackWrapper { margin: 0 0 50px 0 } .feedbackWrapper ul.feedbackWrapUL, .feedbackWrapper ul.optionBox { width: 100%; float: left } .feedbackWrapper ul.feedbackWrapUL > li { width: 100%; float: left; box-shadow: 0 1px 30px -2px #c1c1c1; -webkit-box-shadow: 0 1px 30px -2px #c1c1c1; -moz-box-shadow: 0 1px 30px -2px #c1c1c1; -o-box-shadow: 0 1px 30px -2px #c1c1c1; padding: 20px 25px 30px 25px; margin: 0 0 40px 0; box-sizing: border-box } .feedbackWrapper ul.feedbackWrapUL > li h3 { width: 100%; float: left; margin: 0 0 15px 0; font-size: 2em; font-weight: 400; padding: 0; color: #5e6061 } .feedbackWrapper ul.optionBox > li { width: auto; float: left; margin: 0 25px 0 0; min-width: 150px } .feedbackWrapper ul.optionBox > li label { font-size: 1.6em; float: left; color: #5e6061 } .feedbackWrapper ul.optionBox > li input { float: left; margin: 5px 5px 0 0 } .feedbackWrapper textarea { border-radius: 0; padding: 15px } .feedbackWrapper ul.optionBoxUL > li { min-width: 0; width: 45px; height: 45px; margin: 0; text-align: center; display: table; box-sizing: border-box } .feedbackWrapper ul.optionBoxUL > li a { display: table-cell; vertical-align: middle; font-size: 1.6em; color: #5e6061 } a.selcted-0 { background: #e5f6e2 } a.selcted-1 { background: #dbf2d6 } a.selcted-2 { background: #c7ebc0 } a.selcted-3 { background: #aae09f } a.selcted-4 { background: #8ed67f } a.selcted-5 { background: #77ce66 } a.selcted-6 { background: #63c74f } a.selcted-7 { background: #4fc039 } a.selcted-8 { background: #3eba25 } a.selcted-9 { background: #2cb311 } a.selcted-10 { background: #1eae02 } .feedbackWrapper .buyFormWrap { margin: 0; width: 80% } .feedbackWrapper .buyFormWrap .row { width: 50%; padding: 10px 15px 15px 0; box-sizing: border-box } .feedbackWrapper .buyFormWrap .row .selectbg, .feedbackWrapper .buyFormWrap .row input[type=text] { width: 100% } .feedbackWrapper .buyFormWrap .row.checkbx { width: 100% } .feedbackWrapper .linkWrap { margin: 0 auto; display: table } .claimBox .claimtable06 .tableClass td img { margin: 0 0 0 20px } .claimBox .claimtable06 .tableClass td span { width: 50%; float: left; text-align: center } .claimBox .claimtable06 .tableClass tr > th table tr th { text-align: center } .claimBox .claimtable06 .tableClass tr > th table tr th span { width: 50%; float: left; font-size: .8em; margin: 5px 0 0 0; text-align: left } .claimBox .claimtable06 .tableClass tr > td table tr td label { display: none } .controls { width: auto; float: right; padding-right: 45px } .controls a { width: 35px; height: 35px; border-radius: 35px; border: 1px solid #da251c; float: left; margin: 0 10px 0 0; box-sizing: border-box; overflow: hidden; text-indent: -99px; position: relative; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } .controls a:after { width: 0; height: 0; content: ''; display: block; position: absolute; left: 10px; top: 50%; border: 1px solid #da251c; border-color: #da251c transparent transparent #da251c; padding: 4px; margin-top: -5px; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg) } .controls a.nextData:after { border-color: transparent #da251c #da251c transparent; left: auto; right: 10px } .controls a:before { width: 15px; height: 1px; background: #da251c; content: ''; position: absolute; left: 10px; top: 50%; margin-top: -1px; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } .controls a.nextData:before { left: auto; right: 10px } .controls a:hover { background: #da251c } .controls a:hover:before { background: #fff } .controls a:hover:after { border-color: #fff transparent transparent #fff } .controls a.nextData:hover:after { border-color: transparent #fff #fff transparent } .controls a.disabled { opacity: .5; cursor: default } .controls a.disabled:hover { background: #fff } .controls a.disabled:hover:before { background: #da251c } .controls a.disabled:hover:after { border-color: #da251c transparent transparent #da251c } .controls a.disabled.nextData:hover:after { border-color: transparent #da251c #da251c transparent } .home article.calcPremium { padding: 0 85px 0 0 } .bLifeAdvisorWrapper .midCont img { width: auto } .bLifeAdvisorWrapper .midCont .cont { float: none; display: table-cell; vertical-align: middle; height: 100% } .bLifeAdvisorWrapper .midCont .cont a { margin: 30px 0 0 0 } .successStoriesWrapper a.link { margin: 0 auto; float: none; display: table } .successStoriesWrapper ul.testimonialUL { margin-bottom: 20px } .rhsboxWrap input.dateFormat { width: 100%; margin: 0; background-position: 95% center; padding-right: 70px; height: 50px; line-height: 50px } article.successStoriesWrapper { padding: 60px 80px 60px 0 } .executiveWrapper .bodWrap { margin-bottom: 20px } .executiveWrapper .bodWrap ul.planUL li h3:hover { color: #5e6061; cursor: default } .executiveWrapper a.link { margin: 0 auto; display: table; float: none } .executiveCount { text-align: center; font-size: 20px; color: #5e6061; margin-bottom: 40px } .growthStory .chartBox img { width: 100% } .csrWrp { background: #eae9ea } .csrWrp .midWrapper { padding-bottom: 50px; display: table } .csrWrp ul.landingUL li .mid { display: inline-block } .videobanner { background: #f1f1f1 } .videobanner .midWrapper { padding: 40px 0 0 0; display: table } .videoBox, .videoBox .videoTv, .videoBox .videoTv iframe { float: left; width: 100% } .videoBox .videoTv { height: 600px; display: none } .videoBox .videoList { float: left; width: 100% } .videoBox .videoList li { float: left; width: 25%; box-sizing: border-box; -webkit-box-sizing: border-box; padding: 20px 10px 0 10px; position: relative; transition: .5s color ease; cursor: pointer } .videoBox .videoList li .videoInfo { float: left; width: 100%; padding: 10px 0 50px 0; position: relative } .videoBox .videoList li .videoInfo:after { content: ''; background: rgba(0, 0, 0, 0); width: 0; height: 6px; position: absolute; bottom: 0; left: 0; transition: .5s all ease } .videoBox .videoList li.active .videoInfo:after, .videoBox .videoList li:hover .videoInfo:after { background: #d1080c; width: 100% } .videoBox .videoList li .videoInfo h3 { font-size: 1.8em; font-weight: 400 } .videoBox .videoList li .videoInfo p { font-size: 1.5em } .videoBox .videoList li .videoThum { position: relative } .videoBox .videoList li .videoThum:after { content: ''; position: absolute; left: 0; top: 0; right: 0; bottom: 0; margin: auto; height: 50px; width: 50px; background: url(../images/videoplay.png) no-repeat 0 0 } .videoBox .videoThum img { width: 100% } .claimWrapper ul.regionalUL li { width: 20% } .atdWrp.searchWrapper h3 { display: none } .atdWrp .lftSide { display: table-cell; width: 55%; height: 50px; padding: 0 0 0 15% } .atdWrp .lftSide .searchBox { width: 100%; height: 50px } .atdWrp .lftSide .searchBox.searchBox01 input[type=text] { line-height: 50px; height: 50px } .atdWrp .lftSide .searchBox.searchBox01 a { height: 50px; background-size: 25px; padding: 0 25px 0 40px } .atdWrp .midSide { display: table-cell; width: 15%; vertical-align: middle } .atdWrp .midSide p { text-align: center; font-size: 1.5em } .atdWrp .rgtSide { display: table-cell; width: 30% } .atdsearchRslt .navDetailWrapper { margin: 0 } .cpWrp .midWrapper { width: 95% } .cpWrp .cpTable { padding: 10px 0 30px; float: left } .mobileView { display: none } .cpWrp .cpTable.tableScrol { width: 100%; max-width: 100%; overflow-x: auto } .cpWrp .cpTable.tableScrol .tableClass { padding: 0 } .cpWrp .cpTable .tableClass { padding: 50px; background: #fff } .cpWrp .cpTable .tableClass td, .cpWrp .cpTable .tableClass th { padding: 10px 10px 30px 10px; border-right: 1px solid #b8b8b8; font-size: 1.2em; vertical-align: top } .cpWrp .cpTable .tableClass th { padding: 10px } .cpWrp .cpTable .tableClass td:first-child, .cpWrp .cpTable .tableClass th:first-child { border-left: 1px solid #b8b8b8 } .cpWrp .cpTable .tableClass td a.listmore { position: relative; border: 1px solid #da251c; border-radius: 100px; height: 23px; width: 23px; float: none; display: table; transition: all ease .5s; -webkit-transition: all ease .5s; -moz-transition: all ease .5s; -o-transition: all ease .5s } .cpWrp .cpTable .tableClass td a.listmore:after, .cpWrp .cpTable .tableClass td a.listmore:before { width: 11px; height: 1px; background: #da251c; content: ''; display: block; position: absolute; left: 6px; top: 50%; transition: all ease .5s; -webkit-transition: all ease .5s; -moz-transition: all ease .5s; -o-transition: all ease .5s } .cpWrp .cpTable .tableClass td a.listmore:before { transform: rotate(-90deg); -webkit-transform: rotate(-90deg); -moz-transform: rotate(-90deg); -o-transform: rotate(-90deg) } .cpWrp .cpTable .tableClass td a.listmore:hover:before { transform: rotate(0); -webkit-transform: rotate(0); -moz-transform: rotate(0); -o-transform: rotate(0) } .corporatePartnersBox { position: absolute; background: #fff; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 50%; padding: 2%; z-index: 9; display: none } .corporatePartnersBox .list { width: 100%; float: left; position: relative; margin: 50px 0; overflow-y: scroll; height: 400px } .corporatePartnersBox .closePopup { float: right; margin: 0 } .corporatePartnersBox .list h3 { color: #5e6061; font-size: 2em; font-weight: 400; margin: 0 0 30px 0 } .corporatePartnersBox ul { float: left; width: 33.33%; box-sizing: border-box; padding: 0 25px 0 0 } .corporatePartnersBox ul li { width: 100%; float: left; padding: 3px 0; font-size: 1.3em } .submitForm { text-align: center; padding: 30px 0 } .thankyouBox { padding: 30px 0; width: 100%; float: left; display: none } .thankyouBox h4 { font-size: 3.2em; width: 100%; float: left; font-weight: 400; margin: 0 0 15px 0; color: #5e6061; text-align: center } .thankyouBox p { font-size: 1.6em; width: 100%; float: left; font-weight: 400; padding: 0 !important; text-align: center } .thankyouBox .linkWrap { margin: 0 auto; display: table; padding: 25px 0 0 0 } .kli404 { padding-top: 40px } .kli404 .headDesc .imgPath { margin: 0 0 20px 0 } .kli404 .headDesc p { width: 65%; margin: 0 auto 10px auto; display: table; text-align: center; float: none } .publicWrapper .midWrap01 .selectbg { top: 40px } .kliNewWrap .midWrap01 { padding-top: 40px } .blogWrapper .searchBox { display: block } .hideWrap { display: none !important } #ui-datepicker-div { z-index: 2 !important } ul.testimonialUL.testimonialUL02 li .imgDiv { width: 30%; float: left; margin: 0; border-radius: 0; height: auto; position: relative } ul.testimonialUL.testimonialUL02 li .img { border-radius: 100%; width: 100%; height: auto; margin: 0 } ul.testimonialUL.testimonialUL02 li .img img { margin: 0 } ul.testimonialUL.testimonialUL02 li .plusIcon { left: 50%; top: auto; bottom: 0 } ul.testimonialUL.testimonialUL02 li .testimonialMidBox:hover .plusIcon { left: 50%; bottom: -20px; margin-left: -20px } ul.testimonialUL.testimonialUL02 li .details { width: 60%; float: left; height: auto; margin: 0 0 0 20px } .needCalculatorWrap .step03 ul.planUL li.noRecordDiv { color: #5e6061; font-size: 1.8em } .needCalculatorWrap .step03 ul.planUL li.noRecordDiv a { color: #da251c } .tabWrap02 { position: relative; z-index: 1; top: 7px } .navWrapper02 { margin: 0 0 50px 0 } ul.fundTabUL02 li a { border-radius: 10px } .navWrapper02 .midWrapper { padding: 0 } .navWrapper02 .navWrapDetails { padding: 40px 0 } .navWrapper02 .innerLoader { padding: 40px 0 } .navWrapper02 .navWrapDetails { padding: 40px 0 } .updateAadhaarWrapper { width: 100%; float: left; margin: 0 0 40px 0 } .aadhaarWrap { width: 100%; float: left } .aadhaarWrap .contBox { width: 50%; float: left; padding: 0 30px 0 0; box-sizing: border-box } .aadhaarWrap .contFormBox { padding: 0 0 0 80px } ul.bulletNumber { list-style: decimal; padding: 0 0 0 15px; box-sizing: border-box } ul.bulletNumber li { list-style: decimal } ul.bulletNumber li:after { display: none } .aadhaarBox { width: 100%; float: left; box-shadow: 0 1px 30px -2px #c1c1c1; -webkit-box-shadow: 0 1px 30px -2px #c1c1c1; -moz-box-shadow: 0 1px 30px -2px #c1c1c1; -o-box-shadow: 0 1px 30px -2px #c1c1c1; padding: 25px 30px; box-sizing: border-box } .aadhaarBox .topCnt { float: right; position: relative } .aadhaarBox .topCnt a.links { color: #da251c; padding-left: 40px; top: 5px; padding-right: 0; margin: 0 10px 0 0 } .aadhaarBox .topCnt a.links:hover { color: #fc453c } .aadhaarBox .topCnt a.links:after { left: 0; border-color: #da251c transparent transparent #da251c } .aadhaarBox .topCnt a.links:before { left: 0 } .aadhaarBox .topCnt a.links:hover:before { width: 40px; left: -10px } .aadhaarBox .topCnt a.links:hover:after { left: -10px } .aadhaarBox ul.needUL li a { cursor: default } .aadhaarBox ul.needUL li a:hover { color: #bfbfc0 } .aadhaarBox ul.needUL li a.selected { color: #5e6061 } .aadhaarForm, .aadhaarForm .formFields, ul.formUL, ul.formUL li { width: 100%; float: left } .aadhaarForm { margin: 25px 0 0 0 } ul.formUL li { margin: 12px 0 } .aadhaarForm .formFields { min-height: 225px } .aadhaarForm .enterPolicy { display: block } ul.formUL li { position: relative } ul.formUL li a.link { min-width: 140px } ul.formUL li a.linkHL { background: #da251c; color: #fff; border: none } ul.formUL li a.linkHL:hover { background: #fc453c } ul.formUL li h3 { color: #5e6061; font-size: 2.4em; font-family: Lato-Light; font-weight: 400 } ul.formUL li input.dateFormat { margin: 0; width: 100%; background-position: 95% center; } ul.formUL li span.errorMsg { bottom: -15px } .aadhaarForm .wrongAadhaar, .aadhaarForm .wrongOTP, .aadhaarForm .wrongdata01 { margin: 40px 0 0 0 } .aadhaarForm .enterOTP { margin: 25px 0 0 0 } .aadhaarForm .enterOTP ul.formUL li a.resendOTP { color: #da251c; font-size: 1.6em; border-bottom: 1px solid #da251c; margin: 0 0 25px 0; float: left } .searchAdvisorsWrapper .resultNotfound, .searchAdvisorsWrapper .searchAdvisorsResult { width: 100%; float: left; box-shadow: 0 10px 30px -5px #c1c1c1; -webkit-box-shadow: 0 10px 30px -5px #c1c1c1; -moz-box-shadow: 0 10px 30px -5px #c1c1c1; padding: 40px 30px 50px 30px; box-sizing: border-box; margin: 40px 0 } .searchAdvisorsWrapper .resultNotfound { padding: 40px 25px; box-sizing: border-box; text-align: center } .searchAdvisorsResult h2, .searchAdvisorsWrapper .resultNotfound h2 { font-size: 2em; padding: 0 0 0 220px; box-sizing: border-box } .searchAdvisorsWrapper .resultNotfound h2 { padding: 0; margin: 0 } .searchAdvisorsResult .advisorsWrap { width: 100%; float: left; position: relative; min-height: 200px; padding: 0 0 0 220px; box-sizing: border-box } .searchAdvisorsResult .advisorsWrap img.advisorsImg { width: 180px; float: left; position: absolute; left: 0; top: 0 } ul.advisorsList, ul.advisorsList li { width: 100%; float: left } ul.advisorsList li { padding: 10px 0; border-bottom: 1px solid #e2e3e3; font-size: 1.6em; color: #5e6061; font-weight: 400; font-family: Lato-Light } ul.advisorsList li:first-child { border-top: 1px solid #e2e3e3 } ul.advisorsList li span { margin: 0 0 0 10px; display: inline-block } .marTop { margin: 20px 0 0 0; float: left } .contactusUL_ input.dateFormat { width: 100%; margin: 0; width: 100% } .uploadBtn { overflow: hidden; position: relative; cursor: pointer; padding: 0 } .uploadBtn input[type=file] { opacity: 0; position: relative; z-index: 2; cursor: pointer } .uploadBtn a { background: #da251c; width: auto; height: 100%; padding: 0 25px; box-sizing: border-box; position: absolute; right: 0; top: 0; color: #fff; z-index: 1 } .uploadBtn .filePath { width: 100%; float: left; position: absolute; left: 0; top: 0; height: 100%; z-index: 0; padding: 0 25px; box-sizing: border-box } ul.feedbackUL li .mandatory_ { position: absolute; right: 0; top: 0; font-size: 1.8em; color: #5e6061 } ul.feedbackUL li .smallTxt { padding: 0 15px 0 0; box-sizing: border-box } .buyPlan .tollFree a.redTxt { color: #da251c; display: inline-block } .callClaim { width: 100%; float: left; margin: 25px 0 35px 0 } .callClaim a { width: auto; margin: 0 auto; display: table; color: #da251c; font-size: 1.8em; float: none; position: relative; padding-left: 45px; box-sizing: border-box; line-height: 1.2em } .callClaim a { color: #da251c; position: relative } .callClaim a:after { width: 35px; height: 35px; content: ''; display: block; position: absolute; left: 0; top: 5px; background: url(../images/spriteImg.webp) no-repeat -538px -242px } .callClaim a span { color: #5e6061 } .callClaim a b { font-weight: 400 } .claimWrapper .callClaim { margin-top: 0 } .tableWrapper .topHeading { padding: 0 } .mediaInner .leftData h2 { width: 100%; float: left; font-size: 2.4em; margin: 10px 0 0 0; padding: 0 } .mediaInner .leftData p a.link, .mediaInner .leftData p a.redBtn { font-size: .8em; float: left; margin: 0 15px 0 0 } .buyPlan p a { font-size: 1em; float: left; margin: 15px 10px 15px 0 } .centerDiv { margin: 0 auto; display: table } .buyPlan .topDesc p { padding-left: 0 } .centerDiv a { float: left; margin: 0 10px 15px 0 } p.optionView { margin-bottom: 0 } p.optionView a { color: #da251c } .plans { display: flex; width: 100%; margin-bottom: 20px } .incurance { width: 33.33%; padding: 0 5px } .articles { width: 33.33%; padding: 0 5px } .links { width: 33.33%; padding: 0 5px } .plan-list { padding-bottom: 20px } .plan-list h6 { font-size: 1.4em; color: #000; font-family: Lato-Bold; padding-bottom: 5px; text-transform: uppercase } .plan-list li a { position: relative; padding-left: 15px; color: #000; font-size: 1.3em; padding-bottom: 5px } .plan-list li a:before { left: -4px; top: 0; content: ''; background-image: url(../images/custom/links-arrow.png); height: 15px; width: 15px; position: absolute } ul.bannerUL li { display: none } .slideBox.overlay-none { background: 0 0 !important } .view-pdf:after { display: none !important } .view-pdf { color: #da251c; font-size: 1.4em; padding-left: 15px !important } .img-pdf-height { height: unset !important } @media only screen and (max-width:640px) { ul.fundUL li .reportBox .view-pdf { padding-left: 52px !important } ul.fundUL li .reportBox .viewpdfcls { padding-left: 0 !important } } .display__flex { display: flex; flex-wrap: wrap } .whatsapp-chat:after { background: url(../images/banner/111.png) no-repeat !important; background-size: cover !important; height: 30px !important; width: 30px !important } ul.shareUL li a.instagram { width: 100%; float: left; height: 30px; text-indent: -99px; overflow: hidden; background: url(../images/insta4.png) no-repeat -167px -245px; background-size: 500px auto; width: 30px } ul.shareUL li a.instagram { background-position: -326px -242px; margin-left: 3px } ul.shareUL li a.instagram:hover { background-position: -325px -288px } .customer_service_btn { width: auto; background-color: #da251c; float: left; padding: 0 20px; text-transform: uppercase; color: #da251c; font-size: 1.4em; border: 1px solid #da251c; border-radius: 50px; margin: 0 10px 0 0; letter-spacing: 1px; min-width: 150px; text-align: center; box-sizing: border-box; line-height: 50px; height: 50px; text-align: center } .customer_service { color: #fff !important; text-decoration: none; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s } .customer_service_btn:hover { color: #000 !important; background: #da251c; border: none } .customer_service_contact:after { background: url(../images/banner/customer_service.png) no-repeat !important; background-size: cover !important; height: 30px !important; width: 30px !important } .fundTabUL012 { left: -17px !important } .para-p p { font-size: 1.8em } .paraa-p { padding-top: 15px } .h2bold { font-weight: 700 } .nw-st { margin-top: 265px } .nw-st a.redBtn { padding: 0 21px 0 21px !important; width: 130px !important; position: absolute; right: 30px; bottom: 50px } .position-relative { position: relative } .nw-health a.redBtn { padding: 0 21px 0 21px !important; width: 130px !important; position: absolute; right: 30px; bottom: 50px; right: 50%; top: 115px } @media only screen and (min-width:525px) and (max-width:768px) { .nw-health a.redBtn { margin: 42px auto 20px auto } } @media only screen and (max-width:767px) { .buy-online-change a.link { width: 70% !important }.buy-life-slick p.p-txt{white-space: normal !important;} .buy-txt-desk { font-size: 2.4em !important } .nw-st a.redBtn { right: inherit; left: 20px; line-height: 43px; white-space: nowrap; width: 200px !important; text-align: center } a.link-ins { width: 220px !important } .nw-health a.redBtn { top: 36px; right: 10px; left: 20px } } .section-top { top: 5px !important } .heading-know { text-align: center; color: #707070; font-family: Lato; font-size: 45px; font-weight: 700; margin-top: 10% } .details-sec { display: flex; margin: 0 70px } .know-life { box-shadow: 0 1px 16px rgba(11, 0, 0, .16); margin: 0 90px } .agent_details { max-width: 570px; padding-right: 25px } .agent_details h5 { font-family: Lato; font-size: 42px; font-weight: 700; color: #5e6061; padding: 40px 0 20px 0; margin: 0 } .agent_details h6 { color: #707070; font-family: Lato; font-size: 25px; font-weight: 400; padding: 8px 0; margin: 0 } .starrating { padding-bottom: 20px } .agent_details p { color: #5e6061; font-family: Lato; font-size: 20px; font-weight: 400; padding: 60px 0 100px 0; margin: 0 } .contact__agent p { color: #707070; font-family: Lato; font-size: 28px; font-weight: 700; margin: 30px 0 } .num-text { font-weight: 400 !important } .msg_submit, .msg_submit:focus, .msg_submit:hover { border-radius: 45px; background-color: #db402b; padding: 5px 56px; border: none; margin: 20px 0; height: auto; color: #fff; font-family: Lato; font-size: 30px; font-weight: 400; text-transform: uppercase; line-height: 65px } .agent__icons { padding-left: 0 } .agent__icons li { list-style-type: none } .agent__icons a { text-decoration-line: none } .agent_details { border-right: 1px solid #d3d3d3 } .contact__agent { padding: 0 30px } .profile__pic { padding-top: 30px } .agent__icons span { color: #0074b7; font-family: Lato; font-size: 18px; padding-left: 8px } .agent__icons .fa { max-width: 26px; border-radius: 8px; padding: 8px; font-size: 16px; text-align: center; text-decoration: none; margin: 5px 2px } .agent__icons .fa::before { font-size: 16px } .agent__icons .fa:hover { opacity: .7 } .agent__icons .fa-facebook { background: #0074b7; color: #fff } .agent__icons .fa-twitter-square { background: #0074b7; color: #fff } .agent__icons .fa-print { background: #0074b7; color: #fff } .has-error .help-block { color: red !important; font-size: 14px } .msg_to_agent .text_fields { margin-bottom: 40px } .msg_to_agent .form-control { width: 100%; height: 71px; border-radius: 100px; border: 1px solid #c1c1c1; padding: 0 20px 0 40px; font-size: 13px } .msg_to_agent .form-group { width: 100% } .msg_to_agent .form-control:focus { outline: 0 } .msg_to_agent .errorMsg { bottom: 14px } ul.white-back li a { background-color: #fff; color: #da251c; margin: -9px 9px 0 0 } @media only screen and (max-width:767px) { .agent_details { text-align: center } .agent_details { max-width: 100% } .agent_details .starrating { width: 100% !important } } ul.navRhs > li > a.whatsBtn { padding-left: 40px } ul.navRhs > li > a.whatsBtn:after { width: 30px; height: 35px; content: ''; position: absolute; left: 0; top: 2px; background: url(../images/whatsapp_icon.PNG); display: block; background-size: contain; background-repeat: no-repeat } ul.navRhs > li > a.whatsBtn-sm { padding-left: 40px } ul.navRhs > li > a.whatsBtn-sm:after { width: 30px; height: 35px; content: ''; position: absolute; left: 0; top: 2px; background: url(../images/whatsapp_icon.PNG); display: block; background-size: contain; background-repeat: no-repeat } .mobile-md { margin: 0 !important } .searchicon { margin: 0 !important; padding: 0 0 0 15px !important } @media only screen and (min-width:640px) { .mobile-md { display: block } .mobile-sm { display: none !important } } @media only screen and (max-width:640px) { .mobile-md { display: none !important } .mobile-sm { display: block } } .customer_service_faq:after { background: url(../images/banner/faq4.png) no-repeat !important; background-size: cover !important; height: 30px !important; width: 30px !important } @media only screen and (max-width:767px) { .btn-mobile-view { margin: 20px 9px 0 0 !important } } .retirement-cta { position: absolute; z-index: 1000; bottom: 30px; left: 50px; border-radius: 0 !important; width: 250px; line-height: 20px !important; height: 55px !important; text-align: center; padding-top: 8px !important; text-transform: none !important } .mgmtTeam li img { height: 170px !important; object-fit: cover } .btnNewClass { display: inline-block !important } .img_heigth { height: 170px; width: 170px } .fit4sure { padding-right: 85px; padding-top: 60px; padding-bottom: 44px } .col_md_6 { -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; padding: 0 15px } .card { background: #fff; max-width: 400px; box-shadow: 2px 5px 19px 4px rgb(0 0 0 / 13%); border-radius: 7px; padding: 20px 25px; margin: 0 auto } .city, .details_form label { color: #003974; font-size: 15px; margin-bottom: 5px; font-weight: 400 } .details_form .form-control { border-radius: 0; float: unset; font-size: 14px; padding: 0 15px 0 15px; height: 40px; border-color: #dedede; border: 1px solid #ccc !important; color: #5e6061 !important } .details_form .form-group { margin-bottom: 20px; position: relative } .details_form label sup { color: #ed3237 } .details_form h6 { color: #000; font-size: 22px; font-weight: 600; margin-bottom: 20px } .red_submit, .red_submit:focus, .red_submit:hover { background: #ed3237; font-weight: 600; border: 0; display: inline-block; color: #fff; padding: 4px 20px; height: auto; font-size: 15px } .mb_0 { margin-bottom: 0 } .align_self_center { align-self: center } .d__none { display: none } .select2-container .select2-selection--single { height: 40px } .select2-container--default .select2-selection--single .select2-selection__placeholder { font-size: 14px; color: #5e6061; font-weight: 500 } .select2-container .select2-selection--single .select2-selection__rendered { padding-top: 7px; padding-left: 15px; font-size: 14px } .select2-container--default .select2-selection--single .select2-selection__arrow { top: 7px; right: 8px } .city.has-error { padding-bottom: 22px } #city_select-error { position: absolute; bottom: 0 } #check_box-error { position: absolute; bottom: -13px } .checkbox-custom { opacity: 0; position: absolute } .checkbox-custom, .checkbox-custom-label { display: inline-block; vertical-align: middle; margin: 5px; cursor: pointer } .checkbox-custom + .checkbox-custom-label:before { content: ''; background: #fff; border-radius: 5px; border: 2px solid #ddd; display: inline-block; vertical-align: middle; width: 23px; height: 22px; padding: 2px; margin-right: 10px; text-align: center } .checkbox-custom:checked + .checkbox-custom-label:before { content: ''; display: inline-block; width: 1px; height: 12px; border: solid red; border-width: 0 3px 3px 0; transform: rotate(45deg); -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); border-radius: 0; margin: 0 15px 5px 5px } .checkbox-custom:checked + .checkbox-custom-label:after { content: ''; display: inline-block; border-radius: 5px; position: absolute; border: 2px solid #ddd; top: 6px; left: 2px; height: 22px; width: 23px } .has-error .checkbox-custom + #check_box-error + .checkbox-custom-label:before { content: ''; background: #fff; border-radius: 5px; border: 2px solid #ddd; display: inline-block; vertical-align: middle; width: 23px; height: 22px; padding: 2px; margin-right: 10px; text-align: center } .has-error .checkbox-custom:checked + #check_box-error + .checkbox-custom-label:before { content: ''; display: inline-block; width: 1px; height: 12px; border: solid red; border-width: 0 3px 3px 0; transform: rotate(45deg); -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); border-radius: 0; margin: 0 15px 5px 5px } .has-error .checkbox-custom:checked + #check_box-error + .checkbox-custom-label:after { content: ''; display: inline-block; border-radius: 5px; position: absolute; border: 2px solid #ddd; top: 6px; left: 2px; height: 22px; width: 23px } .checkbox-custom + #check_box-error + .checkbox-custom-label:before { content: ''; background: #fff; border-radius: 5px; border: 2px solid #ddd; display: inline-block; vertical-align: middle; width: 23px; height: 22px; padding: 2px; margin-right: 10px; text-align: center } .checkbox-custom:checked + #check_box-error + .checkbox-custom-label:before { content: ''; display: inline-block; width: 1px; height: 12px; border: solid red; border-width: 0 3px 3px 0; transform: rotate(45deg); -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); border-radius: 0; margin: 0 15px 5px 5px } .checkbox-custom:checked + #check_box-error + .checkbox-custom-label:after { content: ''; display: inline-block; border-radius: 5px; position: absolute; border: 2px solid #ddd; top: 6px; left: 2px; height: 22px; width: 23px } .new_content h6 { font-size: 28px; font-weight: 600; color: #000; text-align: center; margin-bottom: 30px } .new_content p { font-size: 16px; margin-bottom: 15px } .new_content p.mb-0 { margin-bottom: 0 } .new_content span { font-size: 16px; font-weight: 600; color: #000 } .red__btn { background: #da251c; color: #fff; margin: 20px 0 30px 0; padding: 12px 40px; display: inline-block; font-size: 20px; border-radius: 30px } .red__btn:hover { background: #fc453c; color: #fff } .pl_5 { padding-left: 40px } .text_center { text-align: center } .login_steps { padding: 30px 0 0 5px } .login_steps li { font-size: 16px; margin-bottom: 10px; padding-left: 20px; color: #000; line-height: 21px; position: relative } .login_steps li:after { position: absolute; content: ''; background-color: #000; height: 5px; width: 5px; left: 4px; top: 8px; border-radius: 50% } .login_steps li a { color: #0153cb !important; font-weight: 500; text-decoration: underline } .login_steps h6 { font-size: 18px; font-weight: 600; margin-bottom: 15px; color: #000 } .does_work { margin: 50px 0 0 0 } .does_work h5 { font-size: 28px; font-weight: 600; color: #000; text-align: center; margin-bottom: 5px } .does_work p { font-size: 16px; margin-bottom: 15px } .text_center { text-align: center } .col_md_4 { padding: 0 15px; -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333% } .login_steps .iccon { height: 40px; width: 40px; margin-bottom: 15px !important; display: flex; margin: 0 auto } .how_to_jooin { font-size: 28px; font-weight: 600; color: #000; text-align: center; margin-bottom: 20px; margin-top: 80px } .join_fit p { font-size: 16px; color: #000; line-height: 28px } .embed_video { margin: 50px 0 } .embed_video iframe { height: 381px; width: 50%; margin: 0 auto; display: flex } .box { padding: 15px 25px; margin: 0 15px; border: 1px solid #000 } .qr_code { margin-top: 15px } .ser-new { bottom: 70px !important } .download_cta { display: none } .panel-body ul.acclist li { font-family: Lato, sans-serif; font-size: 16px; line-height: 22px; font-weight: 300; text-align: left; color: #000; list-style: disc !important } @media only screen and (max-width:767px) { .new_content h6 { margin-top: 20px } .fit4sure { padding-right: 0; padding-top: 10px } .col_md_4, .col_md_6 { -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; padding: 0 } .pl_5 { padding-left: 0 } .embed_video iframe { height: auto; width: 100% } .box { margin: 0 0 15px 0; padding: 0 15px } } @media only screen and (max-width:425px) { .download_cta { display: block } .qr_code { display: none } } .gsp { text-align: center } @media only screen and (max-width:426px) { .fw-bold { font-weight: 700 !important } .hide-in-mobile { display: none !important } .planUL h3 { font-weight: 700 !important } .modal-content-hide { display: none !important } } .mx-100 { max-width: 100px; margin-left: auto; margin-right: auto; float: initial !important } .fit4sure { padding-right: 85px; padding-top: 60px; padding-bottom: 44px } .col_md_6 { -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; padding: 0 15px } .card { background: #fff; max-width: 400px; box-shadow: 2px 5px 19px 4px rgb(0 0 0 / 13%); border-radius: 7px; padding: 20px 25px; margin: 0 auto } .city, .details_form label { color: #003974; font-size: 15px; margin-bottom: 5px; font-weight: 400 } .details_form .form-control { border-radius: 0; float: unset; font-size: 14px; padding: 0 15px 0 15px; height: 40px; border-color: #dedede; border: 1px solid #ccc !important; color: #5e6061 !important } .details_form .form-group { margin-bottom: 20px; position: relative } .details_form label sup { color: #ed3237 } .details_form h6 { color: #000; font-size: 22px; font-weight: 600; margin-bottom: 20px } .red_submit, .red_submit:focus, .red_submit:hover { background: #ed3237; font-weight: 600; border: 0; display: inline-block; color: #fff; padding: 4px 20px; height: auto; font-size: 15px } .mb_0 { margin-bottom: 0 } .align_self_center { align-self: center } ul.mostVisited { margin: 10px 0 15px 0 !important } .d__none { display: none } .select2-container .select2-selection--single { height: 40px } .select2-container--default .select2-selection--single .select2-selection__placeholder { font-size: 14px; color: #5e6061; font-weight: 500 } .select2-container .select2-selection--single .select2-selection__rendered { padding-top: 7px; padding-left: 15px; font-size: 14px } .select2-container--default .select2-selection--single .select2-selection__arrow { top: 7px; right: 8px } .city.has-error { padding-bottom: 22px } #city_select-error { position: absolute; bottom: 0 } #check_box-error { position: absolute; bottom: -13px } .checkbox-custom { opacity: 0; position: absolute } .checkbox-custom, .checkbox-custom-label { display: inline-block; vertical-align: middle; margin: 5px; cursor: pointer } .checkbox-custom + .checkbox-custom-label:before { content: ''; background: #fff; border-radius: 5px; border: 2px solid #ddd; display: inline-block; vertical-align: middle; width: 23px; height: 22px; padding: 2px; margin-right: 10px; text-align: center } .checkbox-custom:checked + .checkbox-custom-label:before { content: ''; display: inline-block; width: 1px; height: 12px; border: solid red; border-width: 0 3px 3px 0; transform: rotate(45deg); -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); border-radius: 0; margin: 0 15px 5px 5px } .checkbox-custom:checked + .checkbox-custom-label:after { content: ''; display: inline-block; border-radius: 5px; position: absolute; border: 2px solid #ddd; top: 6px; left: 2px; height: 22px; width: 23px } .has-error .checkbox-custom + #check_box-error + .checkbox-custom-label:before { content: ''; background: #fff; border-radius: 5px; border: 2px solid #ddd; display: inline-block; vertical-align: middle; width: 23px; height: 22px; padding: 2px; margin-right: 10px; text-align: center } .has-error .checkbox-custom:checked + #check_box-error + .checkbox-custom-label:before { content: ''; display: inline-block; width: 1px; height: 12px; border: solid red; border-width: 0 3px 3px 0; transform: rotate(45deg); -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); border-radius: 0; margin: 0 15px 5px 5px } .has-error .checkbox-custom:checked + #check_box-error + .checkbox-custom-label:after { content: ''; display: inline-block; border-radius: 5px; position: absolute; border: 2px solid #ddd; top: 6px; left: 2px; height: 22px; width: 23px } .checkbox-custom + #check_box-error + .checkbox-custom-label:before { content: ''; background: #fff; border-radius: 5px; border: 2px solid #ddd; display: inline-block; vertical-align: middle; width: 23px; height: 22px; padding: 2px; margin-right: 10px; text-align: center } .checkbox-custom:checked + #check_box-error + .checkbox-custom-label:before { content: ''; display: inline-block; width: 1px; height: 12px; border: solid red; border-width: 0 3px 3px 0; transform: rotate(45deg); -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); border-radius: 0; margin: 0 15px 5px 5px } .checkbox-custom:checked + #check_box-error + .checkbox-custom-label:after { content: ''; display: inline-block; border-radius: 5px; position: absolute; border: 2px solid #ddd; top: 6px; left: 2px; height: 22px; width: 23px } .new_content h6 { font-size: 28px; font-weight: 600; color: #000; text-align: center; margin-bottom: 20px } .new_content p { font-size: 16px; margin-bottom: 15px } .new_content p.mb-0 { margin-bottom: 0 } .new_content span { font-size: 16px; font-weight: 600; color: #000 } .red__btn { background: #da251c; color: #fff; margin: 20px 0 30px 0; padding: 12px 40px; display: inline-block; font-size: 20px; border-radius: 30px } .red__btn:hover { background: #fc453c; color: #fff } .pl_5 { padding-left: 40px } .text_center { text-align: center } .login_steps { padding: 30px 0 0 5px } .login_steps li { font-size: 16px; margin-bottom: 10px; padding-left: 20px; color: #000; line-height: 21px; position: relative } .login_steps li:after { position: absolute; content: ''; background-color: #000; height: 5px; width: 5px; left: 4px; top: 8px; border-radius: 50% } .login_steps li a { color: #0153cb !important; font-weight: 500; text-decoration: underline } .login_steps h6 { font-size: 18px; font-weight: 600; margin-bottom: 15px; color: #000 } .does_work { margin: 50px 0 0 0 } .does_work h5 { font-size: 28px; font-weight: 600; color: #000; text-align: center; margin-bottom: 5px } .does_work p { font-size: 16px; margin-bottom: 15px } .text_center { text-align: center } .col_md_4 { padding: 0 15px; -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333% } .login_steps .iccon { height: 40px; width: 40px; border-radius: 50%; margin-bottom: 15px !important; display: flex; margin: 0 auto } .how_to_jooin { font-size: 28px; font-weight: 600; color: #000; text-align: center; margin-bottom: 20px; margin-top: 80px } .join_fit p { font-size: 16px; color: #000; line-height: 28px } .protection_headDesc.headDesc p { margin-bottom: 0 } ul.new_article_cards.reportUL_img > li .reportBox { padding: 0 } ul.new_article_cards.reportUL_img > li .reportBox .detail { padding: 5px 25px 35px 25px; margin-bottom: 10px } ul.new_article_cards.reportUL_new li p { margin-bottom: 10px !important } ul.reportUL_new > li .reportBox .detail { max-width: initial !important } .reportUL_new .dateInfo { display: none !important } .new_article_cards li h3 { max-height: 78px; min-height: 78px; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; margin-bottom: 15px !important } .some-text { color: #000; max-width: 100%; padding: 8px 2px 8px 2px } .mx-200 { max-width: 200px } ul.reportUL_new > li a { left: 29% } ul.reportUL_new > li .reportBox .img { width: 100%; padding-right: 0; max-width: 100%; padding-bottom: 20px } ul.reportUL_new > li a { bottom: 8px } .some-text { position: static !important } ul.reportUL_new li p { margin: 0 0 25px 0 !important } .fs-16 { font-size: 14px !important } .mb-0 { margin-bottom: 0 !important } .pb-15 { padding-bottom: 15px !important } .d-none { display: none } ul.reportUL_new > li { width: 25% !important } ul.reportUL_new > li p { font-size: 12px !important; max-height: 85px; min-height: 85px; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; display: -webkit-box } .pt-0 { padding-top: 0 !important } .rem-pos-an { position: unset !important; bottom: unset; left: unset } .bg-gray { background: radial-gradient(ellipse at center, #fff 0, #e9e8e9 100%) } ul.second_navUL > li.thirdLevel .linkAcrd a, ul.second_navUL > li > a { padding: 10px 0 !important } ul.mostVisited > li a { color: #da251c !important } ul.mostVisited > li a.mViewed:after { background-position: -421px -326px !important } ul.reportUL_new > li { height: 434px !important } ul.second_navUL_new > li.thirdLevel .linkAcrd a { padding-right: 20px !important } ul.second_navUL > li.thirdLevel .linkAcrd a, ul.second_navUL > li > a { padding-right: 20px !important } .disclaimer_btn { display: none } .disclaimer_close { display: none } .red_btn { display: none !important } ul.reportUL_new li h3 { max-height: 46px !important; min-height: 46px !important; -webkit-line-clamp: 2 !important; font-size: 16px; color: #000; margin-bottom: 0 !important } ul.reportUL_new > li a { bottom: 4px } ul.reportUL_new > li p { max-height: 53px !important; min-height: 53px !important; -webkit-line-clamp: 3 !important } ul.new_article_cards.reportUL_new li p { margin-bottom: 4px !important } ul.sliderNav li a { background-color: #a9a9a9; border-color: #5e6061 } .convenient-serv { width: 100%; max-width: 1034px; margin: 0 auto } .maincontent { width: 100% !important } .maincontent-info { width: 100% !important; max-width: 1034px; margin-bottom: 50px } @media only screen and (max-width:767px) { .social__icons .fa { font-size: 15px !important } .fs-9 { font-size: 9px } .fs-16 { font-size: 12px !important; margin-bottom: 20px !important } .pb-mob-30 { padding-bottom: 0 !important } .likeWrap-mob .midWrapper { padding-top: 25px } ul.reportUL_new > li { height: auto !important } .new_content h6 { margin-top: 20px } .fit4sure { padding-right: 0; padding-top: 10px } .col_md_4, .col_md_6 { -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; padding: 0 } .pl_5 { padding-left: 0 } ul.reportUL_new > li { width: 100% !important } ul.reportUL_new li h3 { height: auto !important } ul.reportUL_new > li a.links { bottom: 9px !important } ul.reportUL_new > li p { font-size: 15px !important } .new_article_cards li h3 { min-height: 0 !important } ul.reportUL_new > li p { min-height: 0 !important } ul.reportUL_new > li .reportBox .detail { padding: 5px 14px 35px 14px !important } ul.reportUL_img > li .reportBox .detail { margin: 0 !important } ul.reportUL_img > li a.links { left: 50% !important; transform: translateX(-50%) } ul.reportUL > li a { font-weight: 300 !important } ul.mostVisited { margin-left: auto !important } .header-img { margin-top: 44px } .tspace { padding-bottom: 0 !important } } @media only screen and (max-width:1024px) { ul.reportUL_new > li .reportBox .detail { padding: 5px 14px 35px 14px !important } ul.reportUL_new > li p { font-size: 11px !important } ul.reportUL_new li h3 { max-height: 52px !important; min-height: 52px !important; -webkit-line-clamp: 2 !important; font-size: 16px; color: #000; margin-bottom: 5px !important } } .some-text { color: #4f4f4f } .some-text:hover { color: #08315f } .position-relative { position: relative } .new-knw-btn { position: absolute; bottom: 0 } .banner .vidDiv_new { background-size: contain; background-repeat: no-repeat } .view-count { display: flex; align-items: baseline } .fs-9 { padding-left: 5px } .fs-9 { font-size: 20px; text-decoration: underline } .accordion-div .accordion:after { width: 13px; height: 3px; background: #da251c; content: ''; display: block; position: absolute; right: 0; top: 50%; -webkit-transition: all ease .5s } .accordion-div .accordion:before { width: 13px; height: 3px; background: #da251c; content: ''; display: block; position: absolute; right: 0; top: 50%; -webkit-transform: rotate(-90deg); -webkit-transition: all ease .5s } .accordion-div .accordion { position: relative } .accordion-div .accordion.active:before { -webkit-transform: rotate(0) } .mr-auto { margin-right: auto; padding-left: 20px } .mb-0 { margin-bottom: 0 !important } .benefits h4 { font-size: 2.2em; font-weight: 600; color: #000; line-height: 44px; margin-bottom: 20px; text-align: center } .roww { display: flex; flex-wrap: wrap } .benefites-box { background-color: #fff; padding: 20px; margin-right: 50px; margin-bottom: 30px } .blue-bor { border: 1px solid transparent; border-radius: 100%; background-color: #4e8fb4; width: 60px; height: 60px; margin-left: auto; margin-right: auto } .term-cards .benefites-box h2 { max-height: 80px; min-height: 80px; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; margin-bottom: 0 } .benefites-box h2 { color: #000; font-size: 2.2em; font-weight: 700; padding-top: 20px; text-align: center; margin-bottom: 0 } .ulip-plan .benefites-box h2 { max-height: 74px; min-height: 74px; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; margin-bottom: 0 } .text-center { text-align: center !important; } .ensure h2 { color: #fff; font-style: italic; font-weight: 700; font-size: 2.2em; margin-bottom: 0; text-align: center } .ensure { background-color: #08315f; padding: 37px 0 37px 0 } .knw-btn { text-transform: uppercase; font-size: 15px; color: #da251c; background-color: #fff; padding: 0 40px; border-radius: 25px; float: left; border: 0; float: left; border: 1px solid #da251c !important } .knw-btn:hover { border: 0 !important } .knw-btn:hover { color: #da251c !important; background-color: #fff !important } .knw-btn:focus { color: #da251c !important; background-color: #fff !important } .features h4 { font-size: 22px; font-weight: 600; color: #000; line-height: 44px; margin-bottom: 20px } .features { padding: 64px 0 64px 0 } .features p { font-size: 21px; color: #000 } .type-of-upis { padding: 50px 0; background-color: #f2f2f2 } .type-of-upis h4 { text-align: center; font-size: 22px; font-weight: 600; color: #000; line-height: 44px; margin-bottom: 20px } .type-of-upis p { font-size: 17px; color: #000; text-align: center } .type-of-upis .tab button { height: auto; text-transform: capitalize !important; line-height: 29px; color: #fff; text-transform: uppercase; font-size: 20px; position: relative; padding: 7px 23px; background: #08315f; border-radius: 15px 15px 0 0; float: left; border: none; border-left: 1px solid #838485; letter-spacing: 1px } .type-of-upis .tab button.active { color: #5e6061; display: block; background: #da251c; color: #fff } .type-of-upis .tabcontent { display: none; margin-top: -16px; background-color: #fff; width: 100%; padding: 25px 20px 25px 20px } .type-of-upis .tab { overflow: hidden; max-width: 1046px; margin-left: auto; margin-right: auto; margin-top: 30px } .tabs-p { font-size: 15px !important; text-align: inherit !important } .unit h4 { font-size: 2.2em; font-weight: 600; color: #000; line-height: 44px; margin-bottom: 20px; text-align: center } .unit { padding: 50px 0 50px 0; background-color: #f2f2f2 } .unit li { font-size: 16px; line-height: initial; font-weight: 300; line-height: 20px; color: #000; padding-bottom: 10px !important } .bold { font-weight: 700 } .mb-40 { margin-bottom: 25px } .content-col { display: none; overflow: hidden; padding-top: 10px } .buying_upis button { padding: 0; background-color: transparent; border: none; color: #000; text-transform: capitalize; font-size: 2.2em; font-weight: 600; line-height: 44px; margin-bottom: 11px; margin-left: auto; margin-right: auto; display: block; padding: 0 30px } .what-ulips { padding: 24px 0 0 0 } .what-ulips .tab button { border: 1px solid #da251c; border-radius: 25px; color: #000; font-size: 16px; font-weight: 400; background-color: transparent; height: auto; margin-right: 27px; margin-bottom: 20px; padding: 13px 34px; line-height: initial; letter-spacing: .32px; text-transform: initial } .what-ulips .tab button:hover { background-color: #da251c; color: #fff } .what-ulips .tab button.active { background-color: #da251c; color: #fff } .what-ulips .tabcontent { display: none; border-top: none; padding-top: 40px } .tab-detail h4 { font-size: 2.2em; font-weight: 600; color: #000; line-height: 44px; margin-bottom: 10px; text-align: center } .tab-detail p { padding-left: 30px; text-align: center; font-size: 13px; color: #000 } .breadcrumb-ulip { padding-bottom: 25px } ul.breadcrumb-ulip { list-style: none } ul.breadcrumb-ulip li { display: inline; font-size: 18px } ul.breadcrumb-ulip li + li:before { padding: 8px; color: #000 } ul.breadcrumb-ulip li a { color: #000 } ul.breadcrumb-ulip li a:hover { color: #000 } .play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background-image: url(../assets/images/play-ulip.png); background-repeat: no-repeat } .prod-img1 { width: 100% } .text-main .text-initial { text-align: initial !important } .tab-detail { margin-bottom: 50px } .tab-detail h6 { font-size: 1.6em; color: #000; font-weight: 700; margin-bottom: 10px; text-align: center !important } .tab-detail p { margin-bottom: 10px } .tab-detail li { font-size: 13px; color: #000; margin-bottom: 0; list-style-type: disclosure-closed; list-style-position: inside } .li-disc li { list-style-type: disc; list-style-position: outside; margin-left: 20px } .u-icons { height: 40px; width: 40px; border-radius: 100% } .unit button { padding-left: 30px !important; padding: 0; background-color: transparent; border: none; color: #000; text-transform: capitalize; font-size: 1.6em; font-weight: 600; height: auto; line-height: initial } .bor { width: 100%; float: left; position: relative; box-sizing: border-box; height: 100%; margin: 0 } .tab-align h4, .tab-align h6, .tab-align p { text-align: initial !important } .tab-align h4 { text-align: center !important } .tabb p { font-size: 15px !important; text-align: inherit !important; margin-bottom: 24px } .tabb h6 { font-size: 16px; color: #000; font-weight: 700; margin-bottom: 5px } .tab-detail li:last-child { margin-bottom: 10px } .panel { max-height: 0; overflow: hidden; transition: max-height .3s ease-out } .unit button { text-align: initial; width: 100%; white-space: initial } .pp-0 { padding: 0 } .bor-bot { border-bottom: 4px solid #ccc } .term-cards .benefites-box p { max-height: 50px; min-height: 50px; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis } .ulip-plan .benefites-box p { max-height: 85px; min-height: 85px; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis } .annuity-terms ol { counter-reset: item; list-style-position: inside; font-weight: 400; list-style: auto; padding-left: 0 !important } .annuity-terms li { display: block; margin-bottom: 20px; margin-left: 0 } .annuity-terms li:before { content: counters(item, '.') ' '; counter-increment: item; padding-right: 20px } .annuity-terms p { margin-top: -21px } .mt-0 { margin-top: 0 !important } .coll-md-4 { width: 100% } .term-page .tab-detail p { font-size: 1.6em } .term-page .what-ulips .tab { overflow: hidden; max-width: 1090px } .term-page .term-cards .benefites-box p { max-height: 115px; min-height: 115px; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; font-size: 1.6em } .term-page .ensure h2 { color: #fff; font-style: initial; letter-spacing: 1px } .mt-knw-12 { margin-top: 12px } .font-bold { font-weight: 700 !important } .mx-480 { max-width: 480px } .banner-txt-spac { margin: 10px 0 20px 0; max-width: 670px } .banner-txt h1 { padding-bottom: 5px !important; line-height: initial !important } .text-upper { text-transform: uppercase } .font-italic { font-style: italic } .sec-stat { position: static } .online-frst { padding: 150px 0 50px 0 } .online-frst h4 { font-size: 22px; font-weight: 600; line-height: 44px; margin-bottom: 20px } .kotak-plans h4 { font-size: 22px; font-weight: 600; line-height: 44px; margin-bottom: 40px; text-align: center } .ins-guide h4 { font-size: 22px; font-weight: 600; line-height: 44px; margin-bottom: 25px; text-align: center } .online-frst p { font-size: 1.6em; line-height: 1.4em; color: #5e6061 } .mb-10 { margin-bottom: 10px } .online-slick-onee button { background-color: #000; border: 1px solid #000; border-radius: 100%; color: #000; cursor: pointer; display: flex; font-size: 0; height: 5px; width: 5px; line-height: 3.8rem; padding: 0; text-align: initial; margin-right: 10px } .online-slick-onee .slick-dots { display: flex; margin-left: auto; max-width: 50px; margin-right: auto } .online-slick-onee .slick-active button { background-color: #fff; border: 1px solid #000 } .online-img { width: 100%; margin-bottom: 20px } .kotak-plans { padding: 50px 0; background-color: #f2f2f2 } .online-card { padding: 15px 15px; margin-right: 25px; background-color: #fff } .online-card:hover { box-shadow: 1px 1px 5px 0 #999 } .card-anc { color: red !important; background-color: pink !important; padding: 2px 17px 2px 17px !important } .card-anc:hover { color: red } .online-card h1 { text-align: initial; font-size: 17px; position: static; padding: 0; margin: 0; color: #000; font-weight: 700; width: initial; letter-spacing: initial; margin-top: 30px; font-family: inherit } .online-card p { font-size: 10px; color: #5e6061; padding: 10px 0 0 0 } .crore { color: #000 !important; padding: 5px !important; text-align: center; font-weight: 700; max-height: 32px; min-height: 32px; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis } .mb-20 { margin-bottom: 20px } .bg-blue { padding-top: 10px } .ul-spac { padding: 15px 0 20px 0; flex-wrap: initial } .online-buy, .online-buy:focus, .online-buy:hover { font-size: 13px !important; padding: 7px 50px !important } .online-card li:hover .fa { color: #fff !important; background: #0b3361 !important } .online-card .fa-size { margin-right: 5px; padding: 3px; font-size: 10px !important } .online-anc { padding: 0; color: #da251c; font-size: 1.4em; letter-spacing: 1px; position: relative; opacity: 1; display: block; padding-top: 20px; max-width: 145px; margin-left: auto; margin-right: auto } .online-anc:hover { color: #da251c } .online-anc:before { width: 30px; height: 1px; background: red; content: ''; position: absolute; right: 0; top: 73%; margin-top: 1px; -webkit-transition: all ease .3s } .mx-400 { max-width: 400px } .online-anc:after { width: 0; height: 0; content: ''; display: block; position: absolute; right: 0; top: 73%; border: 1px solid red; border-color: transparent #da251c #da251c transparent; padding: 4px; margin-top: -3px; -webkit-transition: all ease .3s; -webkit-transform: rotate(-45deg) } .online-anc:hover:before { width: 40px; right: -10px } .online-anc:hover:after { right: -10px } .side-arrow { height: 12px; width: 12px; transform: rotate(270deg) } .d-flex { display: flex } .li-text { color: #5e6061; font-size: 10px; padding-left: 10px } .align-center { align-items: center } .online-card li { margin-bottom: 10px; list-style-position: inside; color: #5e6061; font-size: 10px } .online-buy { color: red; background-color: pink; padding: 8px 40px; text-align: center; text-transform: uppercase } .online-buy:hover { color: red } .download-btn { background-color: transparent; color: red; text-transform: capitalize; border: none; font-weight: 400; display: block !important } .ul-spac h2 { font-weight: 700; color: #08315f; font-size: 12px; letter-spacing: 1px } .download-btn:focus, .download-btn:hover { background-color: transparent !important; color: red !important } .mr-4 { margin-right: 4px } .we-have { padding: 50px 0; margin-top: 0 !important } .we-have h1 { font-weight: 700; margin: 0; padding: 0; color: red; font-size: 16px; text-align: initial; margin-bottom: 15px } .we-have h2 { font-size: 40px; color: #000; font-weight: 700; max-width: 421px } .we-have p { line-height: 33px; color: #5e6061; font-size: 18px; max-width: 393px } .align-self-center { align-self: center } .ins-guide { padding: 50px 0; background-color: #f2f2f2 } .ins-anc a:hover { background-color: #da251c; color: #fff } .ins-anc a { border: 2px solid red; border-radius: 40px; color: #000; font-size: 16px; text-transform: capitalize; background-color: transparent; font-weight: 400; height: auto; margin-right: 15px; margin-bottom: 0; padding: 10px 15px 10px 15px } .ins-anc { max-width: 542px; margin-left: auto; margin-right: auto } .mb-70 { margin-bottom: 70px } .mt-20 { margin-top: 20px !important } .slick-slider { display: table; table-layout: fixed; width: 100% } .online-slick-two button { display: none } .pt-20 { padding-top: 20px } .online-banner { width: 100%; height: auto } .pos-online-ab { position: absolute; top: 50%; left: 10%; transform: translate(0, -50%) } .accordion:after { width: 13px; height: 3px; background: #da251c; content: ''; display: block; position: absolute; right: 25px; top: 50%; -webkit-transition: all ease .5s } .accordion:before { width: 13px; height: 3px; background: #da251c; content: ''; display: block; position: absolute; right: 25px; top: 50%; -webkit-transform: rotate(-90deg); -webkit-transition: all ease .5s } .accordion { position: relative } .accordion.active:before { -webkit-transform: rotate(0) } .terms-bof { position: relative } .terms-bof:before { width: 13px; height: 1px; background: #000; content: ''; display: block; position: absolute; left: 6px; top: 57%; -webkit-transform: rotate(-90deg); -webkit-transition: all ease .5s } .terms-bof:after { width: 13px; height: 1px; background: #000; content: ''; display: block; position: absolute; left: 6px; top: 57%; -webkit-transition: all ease .5s } .terms-bof.active:before { -webkit-transform: rotate(0) } .pl-0 { padding-left: 0 !important } .benefites-box:hover { box-shadow: 1px 1px 5px 0 #999 } .t { -webkit-transform: rotate(0) } ul.breadcrumb-ulip li.active a { color: #5e6061; cursor: default } ul.breadcrumb-ulip li a { color: #da251c; font-size: 14px; font-weight: 400; letter-spacing: .28px } .mt-30 { margin-top: 30px } .invest-btn:hover { color: #da251c !important } .invest-btn:focus { color: #da251c !important } ul.breadcrumb-ulip li.active a:hover { color: #5e6061; cursor: default } ul.breadcrumb-ulip li a:hover { color: #da251c; font-size: 14px; font-weight: 400; letter-spacing: .28px } .terms-para p { padding-bottom: 0 !important } .mt-10 { margin-top: 10px !important } .mt-12 { margin-top: 12px } .online-slick-two .slick-next { background-image: url(../images/online-slick-next.png) !important; background-size: cover; left: unset; z-index: 1000; right: -25px; top: unset; bottom: 50%; background-color: transparent; border: 0; font-size: 0; height: 25px; width: 25px; position: absolute; padding: 0; margin: 0 } .online-slick-two .slick-prev { background-image: url(../images/online-slick-next.png) !important; width: 25px; height: 25px; background-size: contain; background-repeat: no-repeat; left: -73px; z-index: 1000; right: 49%; top: unset; bottom: 180px; border: 0; background-color: transparent; font-size: 0; position: absolute; transform: rotate(180deg) } .online-slick-two .slick-next.slick-disabled, .online-slick-two .slick-prev.slick-disabled { opacity: .4 } .invest-btn { text-transform: uppercase; font-size: 16px; background-color: #fff; color: #da251c; border: 1px solid; padding: 10px 16px; border-radius: 25px } .invest-btn:hover { border: 0 } .ln-three { max-height: 80px; min-height: 80px; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; margin: 0 } .download-btn { max-width: 200px; margin-left: auto; margin-right: auto; margin-top: 5px } .ul-spac { max-height: 245px; min-height: 245px; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis } .e-invest { padding: 32px 0 59px 0 } .e-invest h4 { font-size: 2.2em; font-weight: 600; color: #000; line-height: 20px; margin-bottom: 10px } .e-invest p { font-size: 1.6em; color: #000; line-height: 20px; font-weight: 300; margin-bottom: 25px } .e-invest-img { height: 285px; width: 100% } .e-invest figure { margin: 0 } .pl-60 { padding-left: 60px } .fa-size { margin-right: 10px; border: 1px solid #888; border-radius: 100%; padding: 7px 6px 7px 6px; font-size: 16px; color: #888 } .e-invest li { font-size: 18px; font-weight: 400; line-height: 26px; letter-spacing: .36px; color: #000; margin-bottom: 7px; max-height: 60px; min-height: 60px; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis } .pt-25 { padding-top: 25px } .e-invest li:hover .fa { color: #fff !important; background: #0b3361 !important } .want-to { color: #08315f; font-size: 1.6em } .want-to:hover { color: #08315f !important; font-size: 16px !important } .float-right { float: right } .secure-btn { text-transform: uppercase; padding: 15px 25px } .text-align-end { text-align: end } .broch-btn { background-color: transparent; text-transform: capitalize; border: 0; font-weight: 400 } .broch-btn:hover { background-color: transparent !important; text-transform: capitalize; border: 0; font-weight: 400 } .m-0 { margin: 0 } .mt-20 { margin-top: 20px } .mrr-5 { margin-right: 10px } .text-align-initial { text-align: initial !important } .acc:after { width: 13px; height: 1px; background: #083666; content: ''; display: block; position: absolute; left: 12px; top: 50%; -webkit-transition: all ease .5s; transform: rotate(121deg) } .acc:before { width: 13px; height: 1px; background: #063161; content: ''; display: block; position: absolute; left: 6px; top: 50%; -webkit-transform: rotate(60deg); -webkit-transition: all ease .5s } .acc.active:before { -webkit-transform: rotate(130deg); left: 3px } .acc.active:after { -webkit-transform: rotate(45deg) } .broch-btn:focus, .broch-btn:hover { color: #08315f !important; background-color: transparent !important; text-transform: capitalize !important; font-weight: 400 !important } .mt-neg-16 { margin-left: -16px } .mb-25 { margin-bottom: 25px !important } .pb-online-0 { padding-bottom: 0 !important } .likeWrap ul.online-cards-mob { margin: 0 } .bug-imgs { height: 30px; width: 30px; margin-right: 8px } .terms-bg { background-color: #f2f2f2 } .rem-bg { background-color: #fff !important } .bene-gsp .benefites-box p { max-height: 125px; min-height: 125px; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; margin-top: 10px } .benefites-box a { color: #0074b7 } .w-100 { width: 100% } .w-50 { width: 50% } .ser-new { bottom: 70px !important } .term-tags { font-size: 30px !important; font-weight: 600 !important; letter-spacing: .6px !important; color: #000 !important; margin: 0 !important; padding: 0 !important; position: static !important; text-align: initial !important; width: auto !important; font-family: Lato-Regular !important } .bene-slick h3 { font-size: 20px !important; font-family: Lato-Regular !important; font-weight: 700 !important; letter-spacing: .4px !important; color: #000 !important; padding: 0 !important; margin: 0 0 20px 0 !important; line-height: 1.25 !important } .wnt-buy { padding: 14px 47px 13px 47px !important } .banner-buy { display: inline-block; width: 100%; text-align: center } .banner-knw { display: inline-block; width: 100%; text-align: center } .moretext { display: none } .mr-20 { margin-right: 20px } .difference-bwn { padding: 48px 0 21px 0 } .term-design h1 { font-size: 30px; font-weight: 600; letter-spacing: .6px; color: #000; margin: 0; padding: 0; position: static; text-align: initial; width: auto; font-family: Lato-Regular } .term-design h2 { font-size: 20px; font-family: Lato-Regular; font-weight: 700; letter-spacing: .4px; color: #000 } .term-design p { font-size: 16px; font-weight: 400; line-height: 26px; letter-spacing: .32px; color: #000 } .fst-18 { font-size: 18px !important } .bg-f2 { background-color: #f2f2f2 } .term-design-banner { padding: 36px 0 36px 0 } .term-design-banner h1 { font-size: 36px !important; font-weight: 500 !important; letter-spacing: .72px !important; color: #204679 !important } .term-design-banner p { font-size: 21px !important; font-weight: 400 !important; letter-spacing: .42px !important; font-family: Lato-Regular; line-height: 34px !important; padding: 19px 0 35px 0; max-width: 566px } .knw-btn-terms { font-size: 15px; font-weight: 600; letter-spacing: .3px; color: #da251c; font-family: Lato-Regular; border: 1px solid #da251c; border-radius: 25px; background-color: #fff; padding: 14px 33px 13px 37px; text-transform: uppercase } .knw-btn-terms:focus, .knw-btn-terms:hover { background-color: #fff !important; color: #da251c !important } .what-ulip-tabs .fa-angle-down { font-size: 20px; margin-left: 11px } .what-spac { padding: 33px 0 54px 0 } .mb-35 { margin-bottom: 35px } .mb-20 { margin-bottom: 20px } .what { margin: 45px 0 54px 0 } .mx-603 { max-width: 603px } .what-ulips .tab button:last-child { margin-right: 0 } .m-0 { margin: 0 } .bene-para p { line-height: 24px !important; max-width: 906px } .bene-para { margin-bottom: 20px } .benefits { margin-bottom: 50px } .ensure h2 { color: #fff !important; font-style: initial; text-align: initial; line-height: 24px } .en-btn { padding: 13px 34px 14px 36px !important; height: auto; line-height: initial } .mb-29 { margin-bottom: 29px !important } .mx-444 { max-width: 438px } .mx-371 { max-width: 371px } #more { display: none } .why-buy p { margin: 22px 0 22px 0 } .why-buy button { background-color: transparent; border: 0; border-radius: 0; color: #ef3e43; cursor: pointer; display: inline-block; font-size: 14px; font-weight: 400; height: auto; letter-spacing: 0; line-height: initial; padding: 0; text-align: initial; text-decoration: none; text-transform: initial; white-space: nowrap; font-family: Lato-Regular; text-transform: capitalize } .mx-494 { max-width: 491px } .want-to-btn, .want-to-btn:hover { font-size: 17px; font-weight: 400; letter-spacing: .34px; color: #000 !important; font-family: Lato-Regular } .span-mar span { margin-right: 24px !important } .mx-40 { max-width: 50% } .e-invest p { font-size: 20px; font-weight: 600; font-family: Lato-Regular } .mt-25 { margin-top: 25px } .want-to-knw:hover { color: #000 !important } .want-to-knw { color: #000; font-family: Lato-Regular; font-size: 18px; font-weight: 400; font-style: normal; letter-spacing: .36px; line-height: 26px; border-radius: 25px; border: 1px solid #888; background-color: #fff; padding: 12px 40px 11px 43px } .in-buy { padding: 14px 0 13px 0; border-radius: 25px; border: 1px solid #da251c; background-color: #ed3338; color: #fff; font-family: Lato-Regular; font-size: 15px; font-weight: 600; letter-spacing: .3px; text-transform: capitalize } .in-buy:hover { color: #fff !important } .inf { color: #ed3338; font-family: Lato-Regular; font-size: 18px; font-weight: 400; letter-spacing: .36px; line-height: 26px; padding: 12px 33px 11px 34px; border-radius: 25px; border: 1px solid #ed3338; background-color: #fff; height: auto; text-transform: capitalize; line-height: initial } .inf:focus, .inf:hover { background-color: #fff !important; color: #ed3338 !important; border: 1px solid #ed3338 !important } .difference-bwn tr:nth-child(odd) { background-color: #f9f9f9 } .difference-bwn table { border: 1px solid #c2c2c2; border-bottom: 0; margin: 25px 0 0 0 } .difference-bwn th { background-color: #efefef; padding: 28px 35px; border-right: 1px solid #c2c2c2; color: #000; font-family: Lato-Regular; font-size: 20px; font-weight: 600; letter-spacing: .4px; line-height: 26px } .difference-bwn td, .difference-bwn th { border-bottom: 1px solid #c2c2c2 } .w-10 { width: 20% } .w-50 { width: 44% } .w-40 { width: 36% } .difference-bwn td { border-right: 1px solid #c2c2c2; padding: 20px 35px; color: #000; font-family: Lato-Regular; font-size: 16px; font-weight: 400; letter-spacing: .32px; line-height: 26px } .difference-bwn td:first-child { font-weight: 600 } .mtb-20 { margin: 20px 0 18px 0 } .type-card { border: 1px solid #b8b8b8; background-color: #fff; padding: 28px 25px 15px 35px } .type-card h3 { border-bottom: 1px solid #b8b8b8; padding-bottom: 11px; font-size: 18px !important; font-weight: 600 !important; letter-spacing: .36px !important; line-height: 26px !important; color: #000 } .type-card p { margin-top: 10px; max-height: 123px; min-height: 123px; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis } .mr-16 { margin-right: 16px } .type-card { margin-bottom: 20px } .term-types { margin: 65px 0 44px 0 } .float-right { float: right } .who-buy h3 { font-size: 18px; font-weight: 600; letter-spacing: .36px; line-height: 26px; margin-bottom: 13px; color: #000 } .who-buy p { margin-bottom: 28px } .who-buy p:last-child { margin-bottom: 0; max-width: 1053px } .mx-621 { max-width: 621px !important } .mb-20 { margin-bottom: 20px !important } .how-choose { margin: 50px 0 44px 0; padding: 50px 0 50px 0 } .mx-1021 { max-width: 1040px } .mb-32 { margin-bottom: 32px } .steps-number { padding: 17px 25px 17px 25px; background-color: #083160; color: #fff !important; border-radius: 100%; width: fit-content; margin-left: auto; margin-right: auto } .accordion-btns h3 { color: #000 !important; font-family: Lato-Regular !important; font-size: 16px !important; font-weight: 700 !important; letter-spacing: .32px !important; line-height: 26px !important; background-color: transparent !important; text-transform: initial !important; border: 0; width: 100%; text-align: initial; border-radius: 0; margin-bottom: 0; height: auto; display: initial } .terms-para p { margin-bottom: 15px !important } .terms-para a { font-size: 16px; font-weight: 400; line-height: 26px; letter-spacing: .32px; color: #00f } .whitespace-initial { white-space: initial !important } .mb-15 { margin-bottom: 15px !important; display: block } .how-buy h3 { color: #000; font-size: 20px; font-weight: 700; letter-spacing: .4px; line-height: normal; margin-bottom: 12px !important } .how-buy p { font-size: 18px !important; letter-spacing: .36px !important; line-height: 26px !important; max-width: 920px } .how-buy .roww { margin-bottom: 43px } .estimate-btn { color: #fff; font-family: Lato-Regular; font-size: 15px; font-weight: 600; letter-spacing: .3px; line-height: normal; text-transform: uppercase; border-radius: 25px; border: 1px solid #da251c; padding: 14px 54px; background-color: #da251c } .mt-37 { margin-top: 37px } .how-buy { padding-bottom: 60px } .estimate-btn:focus, .estimate-btn:hover { color: #fff !important } .mx-632 { max-width: 632px } .how-much { padding: 66px 0 61px 0 } .mt-neg-7 { margin-top: -70px } .mx-1030 { max-width: 1021px } .mb-27 { margin-bottom: 27px } .bor-top-zero { border-top: 0 !important } .accordion-btns button { color: #000 !important; font-family: Lato-Regular !important; font-size: 16px !important; font-weight: 700 !important; letter-spacing: .32px !important; line-height: 26px !important; background-color: transparent !important; text-transform: initial !important; border: 0; width: 100%; text-align: initial; border-top: 1px solid #c7c7c7; border-radius: 0; margin-bottom: 0; padding: 15px 15px 15px 0; height: auto } .accordion-btns span { margin-right: 33px } .accordion-btns p { margin-left: 46px; padding-left: 0 !important } .terms-txt { text-align: initial; border: 1px solid #c2c2c2; background-color: #f6f6f6; text-transform: capitalize; width: 100%; height: auto; display: block; position: relative; padding: 16px 34px; color: #000; font-family: Lato-Regular; font-size: 16px; font-weight: 700; font-style: normal; letter-spacing: .32px; line-height: 24px } .terms-txt:before { width: 13px; height: 3px; background: #da251c; content: ''; display: block; position: absolute; right: 25px; top: 50%; -webkit-transform: rotate(-90deg); -webkit-transition: all ease .5s } .terms-txt.active:before { -webkit-transform: rotate(0) } .terms-txt:after { width: 13px; height: 3px; background: #da251c; content: ''; display: block; position: absolute; right: 25px; top: 50%; -webkit-transition: all ease .5s } .new-terms { padding: 54px 0 } .what-policy-period { padding-top: 66px } .more-drop { position: absolute; top: 120px; right: 281px } .tab { position: relative } .terms-txt:focus, .terms-txt:hover { background-color: #f6f6f6 !important; color: #000 !important; border: 1px solid #c2c2c2 !important } .d-block { display: block !important } .bene-para a { color: #0074b7; text-decoration: underline } .bene-para a { color: #0074b7 !important; text-decoration: underline !important } .sec-anc { color: #0074b7; text-decoration: underline } .sec-anc:hover { color: #0074b7 !important; text-decoration: underline !important } .top-161 { top: 161px !important } .accordion-btns li { margin-left: 46px; padding-left: 0 !important; font-size: 16px; font-weight: 400; line-height: 26px; letter-spacing: .32px; color: #000; font-family: Lato-Regular } .hidden-links { position: absolute; right: 34px; top: 111%; background: #fff; border: 1px #ddd solid; padding: 0; text-align: left; z-index: 1001 } .tab a { text-transform: initial; display: block; padding: 13px 20px; background: #fff; font-family: Lato-Regular; font-size: 16px; color: #000; font-weight: 400; letter-spacing: .32px; text-decoration: none } .hidden-links li { cursor: pointer; display: block } .hidden-links a:hover { color: #fff; background-color: #da251c; border-radius: 0 } .bene-slick .slick-next { font-size: 0; position: absolute; border: 0; border-radius: 100%; width: 43px; height: 43px; background-size: cover !important; left: 58px; right: unset; top: unset; background-repeat: no-repeat; bottom: 4px; border: 1px solid #da251c !important; background: #fff; bottom: -69px; padding: 15px } .bene-slick .slick-next:before { content: ''; height: 26px; width: 1px; color: #da251c; background-color: #da251c; position: absolute; right: 19px; top: unset; bottom: 6px; transform: rotate(90deg) } .bene-slick .slick-next:after { content: ''; height: 11px; width: 10px; color: #da251c; position: absolute; right: 8px; top: unset; bottom: 14px; border: 1px solid #da251c; transform: rotate(130deg); border-right: 0; border-bottom: 0 } .tv-pad { position: absolute; right: 14px; top: 12px } .tv-pad-mobile { position: absolute; right: 14px; top: auto; bottom: 20%; left: 44% } .bene-slick .slick-prev { font-size: 0; position: absolute; border: 0; border-radius: 100%; width: 43px; height: 43px; background-size: cover !important; left: unset; right: initial; top: unset; background-repeat: no-repeat; bottom: 4px; border: 1px solid #da251c !important; background: #fff; bottom: -69px; padding: 15px } .bene-slick .slick-prev:before { content: ''; height: 26px; width: 1px; color: #da251c; background-color: #da251c; position: absolute; right: 19px; top: unset; bottom: 6px; transform: rotate(90deg) } .bene-slick .slick-prev:after { content: ''; height: 11px; width: 10px; color: #da251c; position: absolute; right: 22px; top: unset; bottom: 14px; border: 1px solid #da251c; transform: rotate(308deg); border-right: 0; border-bottom: 0 } .bene-slick .slick-next:hover:before { background-color: #fff } .bene-slick .slick-prev:hover:before { background-color: #fff } .bene-slick .slick-next:hover:after { border: 1px solid #fff; border-right: 0; border-bottom: 0; color: #fff } .bene-slick .slick-prev:hover:after { border: 1px solid #fff; color: #fff; border-right: 0; border-bottom: 0 } .bene-slick .slick-prev:hover { background-color: #da251c } .bene-slick .slick-next:hover { background-color: #da251c } .how-slick .slick-next { font-size: 0; position: absolute; border: 0; border-radius: 100%; width: 43px; height: 43px; background-size: cover !important; left: 58px; right: unset; top: unset; background-repeat: no-repeat; bottom: -83px; border: 1px solid #da251c !important; background: #fff; padding: 15px } .how-slick .slick-next:before { content: ''; height: 26px; width: 1px; color: #da251c; background-color: #da251c; position: absolute; right: 19px; top: unset; bottom: 7px; transform: rotate(90deg) } .how-slick .slick-next:after { content: ''; height: 11px; width: 10px; color: #da251c; position: absolute; right: 8px; top: unset; bottom: 15px; border: 1px solid #da251c; transform: rotate(133deg); border-right: 0; border-bottom: 0 } .how-slick .slick-prev { font-size: 0; position: absolute; border: 0; border-radius: 100%; width: 43px; height: 43px; background-size: cover !important; left: unset; right: initial; top: unset; background-repeat: no-repeat; bottom: 4px; border: 1px solid #da251c !important; background: #fff; bottom: -83px; padding: 15px } .how-slick .slick-prev:before { content: ''; height: 26px; width: 1px; color: #da251c; background-color: #da251c; position: absolute; right: 19px; top: unset; bottom: 7px; transform: rotate(90deg) } .how-slick .slick-prev:after { content: ''; height: 11px; width: 10px; color: #da251c; position: absolute; right: 22px; top: unset; bottom: 14px; border: 1px solid #da251c; transform: rotate(310deg); border-right: 0; border-bottom: 0 } .how-slick .slick-next:hover:before { background-color: #fff } .how-slick .slick-prev:hover:before { background-color: #fff } .how-slick .slick-next:hover:after { border: 1px solid #fff; border-right: 0; border-bottom: 0; color: #fff } .how-slick .slick-prev:hover:after { border: 1px solid #fff; color: #fff; border-right: 0; border-bottom: 0 } .how-slick .slick-prev:hover { background-color: #da251c } .how-slick .slick-next:hover { background-color: #da251c } .closebtn { float: right; font-size: 15px; font-weight: 700 } .closebtn:hover { cursor: pointer } .modal { display: none } .modalcontent { position: relative; width: 100%; text-align: center } .pagingInfo { position: absolute; transform: translateX(-50%); bottom: 0; right: 0 } .pagingInfo .total_count { color: #000; font-family: Lato-Regular; font-size: 16px; font-weight: 400; letter-spacing: .32px; line-height: 26px } .pagingInfo .finished_count { color: #000; font-family: Lato-Regular; font-size: 16px; font-weight: 400; letter-spacing: .32px; line-height: 26px } .pagingInfo_How { position: absolute; transform: translateX(-50%); bottom: 139px; right: 0 } .pagingInfo_How .total_count { color: #000; font-family: Lato-Regular; font-size: 16px; font-weight: 400; letter-spacing: .32px; line-height: 26px } .pagingInfo_How .finished_count { color: #000; font-family: Lato-Regular; font-size: 16px; font-weight: 400; letter-spacing: .32px; line-height: 26px } .fancybox-slide > * { width: 900px !important; height: 700px !important; display: inline-block; position: relative; margin: 44px 0; text-align: left; background-color: transparent !important; overflow: auto; box-sizing: border-box; transform: translate(0, 0) !important } @media (min-width:768px) { .ourCampaignUL.ourCampVideo li { height: 245px } .publicWrapper img { width: 40% } .coll-md-4 { flex: 0 0 33.333333%; max-width: 33.333333% } .coll-md-7 { flex: 0 0 58.333333%; max-width: 58.333333% } .coll-md-5 { flex: 0 0 41.666667%; max-width: 41.666667% } .coll-md-1 { flex: 0 0 8.333333%; max-width: 8.333333% } .coll-md-11 { flex: 0 0 91.666667%; max-width: 91.666667% } .coll-md-6 { flex: 0 0 50%; max-width: 50% } .hide-desktop { display: none !important } .no-gutters { margin-left: 0 !important; margin-right: 0 !important } .mb-35 { margin-bottom: 35px !important } } @media (max-width:768px) { .mt-neg-7 { margin-top: 0 !important }.rhsBoxDetailWrap{bottom: 0 !important;} .w-mob-100 { width: 100% !important } .fs-mob-new { font-size: 1.8em !important } .online-img { margin-top: 30px } .type-of-upis .tab { margin-bottom: 35px } .benefits, .buying_upis, .features .invest_upis, .type-of-upis, .what-ulips { margin-top: 25px !important } .buying_upis p { font-size: 11px; padding-bottom: 10px !important } .type-of-upis p { font-size: 13px } .tabb p { font-size: 13px !important; margin-bottom: 12px } .tabb h6 { font-size: 13px; margin-bottom: 3px } .tabs-p { font-size: 13px !important } .fss-18 { font-size: 1.4em; margin-bottom: 5px } .unit { padding: 25px 0 25px 0; margin-top: 0 } .tab-detail h6 { margin-bottom: 5px } .unit button { font-size: 1.4em } .buying_upis { padding: 25px 0 } .ensure { padding: 25px 15px; margin-top: 0 !important } .invest_upis { padding: 25px 0 } .type-of-upis { padding: 25px 0 } .invest-btn { font-size: 12px; padding: 7px 11px } .pt-20 { padding-top: 0 } .invest_upis { padding: 25px 15px 38px 15px } .benefits h4, .buying_upis h4, .e-invest h4, .tab-detail h4, .type-of-upis h4, .unit h4 { font-size: 1.8em; line-height: initial; margin-bottom: 20px; margin-top: 20px } .tab-detail { margin-bottom: 0 } .benefits { padding: 25px 0 } .mb-mob-25 { margin-bottom: 25px !important } .benefites-box h2 { font-size: 1.4em; padding-top: 10px; margin-bottom: 10px } .benefites-box { padding: 20px; margin-bottom: 25px } .knw-mob { max-width: 200px; margin-left: auto; margin-right: auto; margin-top: 20px } .knw-btn { font-size: 10px; padding: 0 20px; float: initial; height: auto } .ensure h2 { line-height: 37px } .mt-mob-25 { margin-top: 25px } .mt-mob-15 { margin-top: 15px } .text-align-end { text-align: center } .want-to { font-size: 12px; margin-bottom: 0; line-height: initial; height: auto } .want-to:hover { font-size: 12px !important } .e-invest-mar { margin-top: 10px !important; margin-bottom: 10px !important } .we-have { padding: 25px 15px } .ins-anc a { font-size: 10px; margin-right: 15px; padding: 10px 10px 10px 10px } .mb-70 { margin-bottom: 30px } .ins-guide { padding: 25px 0; margin-top: 0 } .online-frst { padding: 25px 15px } .ml-auto { margin-left: auto !important } .pb-mob-0 { padding-bottom: 0 } .kotak-plans { padding: 25px 0 50px 0; background-color: #f2f2f2; margin-top: 0 } .kotak-plans h4 { margin-bottom: 20px } .wealth-insure p { font-size: 12px } .wealth-insure h1 { font-size: 12px; padding-bottom: 0; margin: 0; padding: 0; line-height: 17px !important } .banner-txt-spac { margin: 10px 0; max-width: 180px !important } .wealth-insure a { font-size: 9px; padding: 5px 10px } .online-frst p { font-size: 13px; line-height: 1.5em } .online-frst h4 { margin-bottom: 0 } } @media (max-width:767px) { .difference-bwn { padding: 0 } .mb-mob-20 { margin-bottom: 20px !important } .e-invest { margin: 0 !important; padding: 0 0 47px 0 } .accordion-btns ul { margin-left: 30px } .span-mar span { margin-right: 13px !important } .what-policy-period { padding-top: 31px } .mb-mob-30 { margin-bottom: 30px } .estimate-btn { display: inline-block; width: 100%; padding: 14px 0 } .why-buy p { margin: 34px 0 17px 0 } #myBtn { display: none !important } #more { display: block !important } .bor-fet-mob { padding: 25px 28px; border: 1px solid #707070 } .what { margin: 22px 0 48px 0 } .w-term-55 { width: 55% } .w-term-45 { width: 45% } .w-mob-80 h2, .w-mob-80 p { text-align: initial } .dis-mob-flex { display: flex } .w-mob-20 { width: 20%; margin-top: auto; margin-bottom: auto } .w-mob-80 { width: 80% } .pos-online-ab { left: 5% } .term-page .tab-detail p { font-size: 1.4em } .term-page .term-cards .benefites-box p { max-height: initial; min-height: initial; font-size: 1.4em } .ln-three { max-height: 40px; min-height: 40px; -webkit-line-clamp: 2 } .ul-spac { max-height: 208px; min-height: 208px } .mt-knw-12 { margin-top: 0 } .mob-full-width { width: 100% } .bene-gsp .benefites-box p { max-height: initial; min-height: initial } .term-buying p { font-size: 1.4em; padding-bottom: 20px !important; padding-top: 10px } .ulip-plan .benefites-box h2 { max-height: initial; min-height: initial; margin-bottom: 10px } .term-cards .benefites-box h2 { max-height: initial; min-height: initial; margin-bottom: 10px !important } .term-insure h2 { font-size: 21px !important; letter-spacing: 1px !important; line-height: 30px !important } ul.online-cards-mob > li { height: auto !important } .play--imag { padding-top: 15px } .benefites-box { height: auto; margin-right: 0 } .hide-mobile { display: none !important } .online-slick-two .slick-prev { right: 55% } .online-card { margin-right: 3px } .ensure h2 { font-size: 16px; letter-spacing: 1px } .row-dis-block { display: block } .pl-60 { padding-left: 0 } .ml-mob-auto { margin-left: auto } .e-invest-img { height: auto } .mt-mob-25 { margin-top: 25px } .online-slick-two .slick-next { right: 185px !important; bottom: -34px } .online-slick-two .slick-prev { left: 115px !important; bottom: -45px } .roww-mob-block { display: block } .want-to-knw { display: inline-block; width: 100%; text-align: center; padding: 12px 0 11px 0 } .e-invest li { min-height: 40px } .bg-mob-white { background-color: #fff } .type-card p { margin-top: 10px; max-height: initial; min-height: initial } .w-mob-100 { width: 100% } .mx-40 { max-width: 100% } .accordion-btns li { margin-left: 0 } .in-buy { display: inline-block; width: 100%; text-align: center; margin-top: 24px } .hidden-links { position: absolute; right: 0; top: 93%; width: 100% } .mt-mob-24 { margin-top: 24px } .mb-mob-34 { margin-bottom: 34px } .mt-mob-125 { margin-top: 125px } .term-design-banner h1 { font-size: 24px !important; font-weight: 500 !important; letter-spacing: .48px !important } .term-tags { font-size: 22px !important; line-height: 28px !important; font-weight: 600 !important; letter-spacing: .44px !important } .term-design-banner p { font-size: 16px !important; font-weight: 400 !important; letter-spacing: .32px !important; font-family: Lato-Regular; line-height: 24px !important; padding: 15px 0 35px 0; max-width: 310px } .mob-nowwrap { white-space: nowrap } .term-design-banner { padding: 28px 0 27px 0 } .mtt-102 { margin-top: -17px !important; top: 0 } .knw-btn-terms { font-size: 13px; font-weight: 600; letter-spacing: .26px; color: #da251c; font-family: Lato-Regular; border: 1px solid #da251c; border-radius: 25px; background-color: #fff; padding: 12px 0 12px 0 !important; width: 100%; text-align: center; display: inline-block } .flex-wrap-initial { flex-wrap: initial } .my-auto { margin-top: auto; margin-bottom: auto } .what-ulips .tab button { margin-bottom: 18px !important; width: 100%; display: inline-block; white-space: break-spaces; padding: 13px 0 } .what-ulip-tabs .fa-angle-down { font-size: 20px; margin-left: auto; float: right; margin-right: 15px } .term-spacg { padding: 0 16px 19px } .term-mob-spac { padding: 33px 0 26px 0 !important } .w-mob-150 { width: 150px } .ensure h2 { margin-bottom: 19px !important } .term-design h1 { font-size: 22px; line-height: 28px; font-weight: 600; letter-spacing: .44px } .bene-para img { margin-bottom: 25px } .mb-mob-34 { margin-bottom: 34px !important } .benefits { padding: 0 0 50px 0 } .ml-mob-initial { margin-left: initial !important } .ensure h2 { color: #fff; font-style: initial; text-align: initial; line-height: 32px; margin-bottom: 42px } .ensure { padding: 25px 0 35px 15px } .term-design .midWrapper { padding: 0 37px 0 36px } .mr-16 { margin-right: 0 } .mt-neg-7 { margin-top: 0 } .accordion-btns button { display: flex; white-space: unset !important } .accordion:before { right: 0 } .accordion:after { right: 0 } .accordion-btns p { margin-left: 30px } .accordion-btns span { margin-right: 23px } .difference-bwn th { background-color: #efefef; padding: 17px 5px; border-right: 1px solid #c2c2c2; color: #000; font-family: Lato-Regular; font-size: 16px; font-weight: 600; letter-spacing: .25px; line-height: 26px } .difference-bwn td { border-right: 1px solid #c2c2c2; padding: 17px 5px; vertical-align: baseline } .banner-buy { margin-top: 0; margin-bottom: 15px; padding: 12px 0 12px 0; font-size: 13px } .banner-knw { font-size: 13px; padding: 12px 0 12px 0 } .w-mob-ban-100 { width: 100% } .mr-mob-0 { margin-right: 0 } } @media (max-width:1364px) { .hidden-links { right: initial !important } } @media (min-width:1025px) and (max-width:1440px) { .pr-80 { padding-right: 0 } } @media (max-width:1026px) { .benefits, .buying_upis, .features .invest_upis, .type-of-upis, .what-ulips { margin-top: 0 !important } } @media only screen and (max-width:1100px) { .ensure h2 { margin-bottom: 42px; line-height: 40px } .ensure { padding: 15px 0 30px 0 } } @media (max-width:1430px) { .type-of-upis .tab button { height: auto; text-transform: capitalize !important; font-size: 15px; padding: 6px 10px; line-height: 22px } .type-of-upis .tab { overflow: hidden; max-width: 730px } } @media (min-width:769px) and (max-width:1024px) { .online-frst { margin-top: 0 } .ensure h2 { font-size: 25px !important } .term-design h1 { font-size: 25px } .mt-auto { margin-top: auto } .mb-auto { margin-bottom: auto } } .rhsboxWrap { display: none !important; overflow-y: scroll } .rhsBoxDetailWrap.activate .rhsboxWrap { display: block !important; overflow-x: hidden; left: 10px; width: 551px; overflow-y: auto } .e-want { display: inline-block; width: 100%; text-align: center; padding: 13px 25px 15px 20px } .mx-240 { max-width: 240px } .in-buy { display: inline-block; text-align: center } ml-auto.inf-dif { display: inline-block; width: 100%; text-align: center } .pagingInfo_How { bottom: 172px } .bor div.accordion span { font-size: 16px !important; padding: 15px 0; color: #000 !important; display: inline-block; font-weight: 600 } .bor div.accordion { border-top: 1px solid #c7c7c7 !important; } .bor .tab-detail p { padding-bottom: 15px } .term-day { top: 0 !important; margin-bottom: 2rem } .play-left { left: 15px !important; font-size: 60px; color: #da251c } .fit4sure { padding-top: 25px } .e-want-term { padding: 12px 0 11px 3px !important } .mx-259 { max-width: 259px; margin-right: 16px } .cat-what-ulip .tab button { margin-right: 22px !important; padding: 13px 27px !important; max-width: 100% } .cat-knw { color: #da251c !important; border: 1px solid #da251c !important } .cat-knw:hover { color: #da251c !important; border: 1px solid #da251c !important } .mx-428 { max-width: 428px } .mx-539 { max-width: 539px } .mx-100 { max-width: 100% !important } .cat-bene-list li { color: #000; list-style-position: inside !important; list-style: disc } .cat-bene-list h4 { color: #000; font-size: 16px; letter-spacing: .32px; line-height: 24px; font-weight: 700; text-align: initial; display: inline-flex; margin-bottom: 10px } .cat-bene-list ul p { margin-bottom: 20px; padding-left: 15px } .cat-bene-list ul { padding-left: 30px } .mb-20 { margin-bottom: 20px } .cat-tax li { font-size: 16px; font-weight: 400; line-height: 26px; letter-spacing: .32px; color: #000; list-style: disc; list-style-position: inside } .cat-features { max-width: 323px } .cat-features h3 { padding: 18px 0; border-bottom: 1px solid #5a5a5a; color: #da251c; font-size: 19px; font-weight: 700; font-style: normal; letter-spacing: .38px; line-height: 26px; text-align: left } .cat-features p { padding-top: 15px; max-width: 323px; color: #000; font-size: 16px; font-weight: 400; font-style: normal; letter-spacing: .32px; line-height: 24px; text-align: left } .fw-700 { font-weight: 700 !important } .moretext-cat { display: none } .float-right { float: right } .cat-features img { width: 48px; height: 43px } .mb-40 { margin-bottom: 40px } .cat-invest-para { color: #000; font-size: 18px; font-weight: 400; letter-spacing: .36px; line-height: 24px } .cat-why-buy { padding: 15px 0 81px } .cat-e-invest { padding: 45px 0 !important } .fw-normal { font-weight: 400 !important } .fw-bold { font-weight: 700 !important } .ulip-cat-terms h3 { margin-bottom: 22px; color: #000; font-size: 17px; font-weight: 700; font-style: normal; letter-spacing: .34px; line-height: 26px } .ulip-cat-terms li { list-style: disc; list-style-position: inside; color: #000; font-size: 15px; font-weight: 400; letter-spacing: .3px; line-height: 24px; text-align: left } .ulip-cat-terms li:last-child { margin-bottom: 22px } .ulip-cat-terms p { margin-bottom: 22px } .pt-52 { padding-top: 52px } .mb-37 { margin-bottom: 37px !important } .mb-30 { margin-bottom: 30px !important } .mb-21 { margin-bottom: 21px !important } .mb-13 { margin-bottom: 13px !important } .what-documents { background-color: #f6f6f6; padding: 42px 0 } .what-documents h3 { margin-bottom: 15px; color: #000; font-size: 18px; font-weight: 700; letter-spacing: .36px; line-height: 26px; text-align: left } .what-documents li { margin-bottom: 30px } .what-documents li:last-child { margin-bottom: 0 } .mx-524 { max-width: 524px } .mx-1018 { max-width: 1018px } .what-various-factors { padding: 52px 0 30px } .what-various-factors h3 { margin-bottom: 22px; color: #000; font-size: 18px; font-weight: 700; letter-spacing: .36px; line-height: 26px; text-align: left } .what-various-factors li { margin-bottom: 20px } .pre-spac { padding: 0 53px } .diff-type-ulip { padding-top: 65px } .h-307 { height: 307px !important } .diff-type-ulip button { background-color: #fff; color: #000; font-size: 18px; font-weight: 700; font-style: normal; letter-spacing: .36px; line-height: 26px; text-align: left; border: 1px solid #b9b9b9; text-transform: capitalize; padding: 15px 15px 15px 33px; height: auto; border-left: 0; border-radius: 0 } .diff-type-ulip button:first-child { border-left: 1px solid #b9b9b9 } .diff-type-ulip .tablinks.active { color: #ed3338; background-color: #ffecec } .diff-type-ulip .tabcontent { display: none; border: 1px solid #b9b9b9; width: 100%; padding: 50px 20px 20px; margin-top: -11px } .diff-type-ulip h3 { color: #000; font-size: 20px; font-weight: 700; letter-spacing: .4px; line-height: 26px } .diff-type-ulip h4 { font-size: 16px; font-weight: 700; line-height: 26px; letter-spacing: .32px; color: #000 } .wealth-spac { padding: 21px 0 31px } .diff-type-ulip li { padding-left: 55px; position: relative; padding-bottom: 25px } .diff-type-ulip li:before { content: ''; width: 7px; height: 8px; background-color: #000; border-radius: 100%; top: 9px; left: 26px; position: absolute } .anc-blue { color: #0074b7 !important; text-decoration: underline !important; display: inline !important; padding: 0 !important } .diff-type-ulip li:last-child { padding-bottom: 0 } .m-0 { margin: 0 !important } .term-ulip-spac { margin: 0; padding-bottom: 0 } .what-documents li { position: relative; padding-left: 20px } .mx-346 { max-width: 346px } .what-documents li:before { position: absolute; content: ''; left: 0; top: 14px; background-color: #707070; width: 8px; height: 1px } .mx-mob-215 { white-space: initial; max-width: 215px } .ulip-cat-terms li { list-style: none; position: relative; padding-left: 20px } .ulip-cat-terms li::before { content: ''; width: 7px; height: 7px; background-color: #000; border-radius: 100%; top: 9px; left: 0; position: absolute } .but { border: 1px solid #da251c; border-radius: 25px; color: #000; font-size: 16px; font-weight: 400; background-color: transparent; height: auto; margin-right: 18px; margin-bottom: 20px; padding: 13px 34px; line-height: initial; letter-spacing: .32px; text-transform: initial } .but:hover { background-color: #da251c; color: #fff } .but.active { background-color: #da251c; color: #fff } .but_flex { display: flex; flex-wrap: wrap } .slide { overflow-x: auto !important } .faa { width: 32px; height: 34px } .move { margin-bottom: 20px } .mll-auto { margin-left: auto } .inf-diff { display: inline-block; width: 100%; text-align: center } .jspVerticalBar { width: 10px; display: block } ul.plansUL li .linkWrap { display: flex; left: 7px } .jspDrag { background: 0 0 !important } ::-webkit-scrollbar-thumb { background: #939598 !important; border-radius: 5px } .rhsboxWrap::-webkit-scrollbar { width: 10px; height: 5px } .slide { overflow-x: auto !important } .faa { width: 32px; height: 34px } .diff-type-ulip button { padding: 15px 19px 15px 33px } .e-invest li { min-height: 40px; font-size: 17px } .tab a { padding: 13px 20px !important } .div-close-icon-4 { right: 321px } .acc-div-mob .accordion:before { background-color: transparent !important } .acc-div-mob .accordion:after { background-color: transparent !important } .acc-div-mob h3 { color: #000 !important; font-size: 18px !important; font-weight: 700 !important; padding: 16px 30px 18px 24px !important; border: 1px solid #b9b9b9 !important } .acc-div-mob button { border-top: 0 !important } .acc-div-mob .wealth-spac { border: 0 !important; padding: 0 !important } .acc-div-mob p { margin: 0 !important } .mob-tabcontent { border: 1px solid #b9b9b9 !important; padding: 48px 20px 30px !important; margin-bottom: 10px !important; border-top: 0 !important } .acc-div-mob .accordion { padding: 0 !important } .acc-div-mob .accordion.active h3 { color: #ed3338 !important; background-color: #ffecec !important } .mobile-feat { padding: 50px 0 } .mb-0 { margin-bottom: 0 !important } .related-blogs-gsp article { padding-right: 0 !important } .related-blogs-gsp { padding: 50px 0 0 !important } .pb-0 { padding-bottom: 0 !important } .related-blogs-gsp .likeWrap ul.reportUL { margin: 0 !important } .mr-32 { font-weight: 400 !important; margin-right: 32px !important } .gsp-faa .faa { width: 36px; height: 34px } .gsp-faa .fa-size { padding: 8px 6px 9px 8px } .mx-488 { max-width: 488px !important } .flip-img { -webkit-transform: scaleX(-1); transform: scaleX(-1) } .gsp-tabs h3 { font-size: 18px; font-weight: 600 } .gsp-tabs button { padding: 15px 42px !important } .acc-div-mob .bor { margin-bottom: 8px } #start { width: 174px !important } .faqsWrap .midWrapper { display: block } .new-h3 { font-size: 22px; font-weight: 600; color: #5e6061; margin-bottom: 10px } .tab a { font-size: 14px } .who-buy-chg { padding-bottom: 100px } .term-breadcrump { font-size: 14px !important; font-weight: 400 !important; letter-spacing: .28px !important; cursor: pointer } .mtb-0 { margin-top: 0; margin-bottom: 0; margin-left: 12px } .polular-searches { padding: 20px 0;} .polular-searches h6 { color: #000; font-size: 15px; font-weight: 700; font-style: normal; text-transform: uppercase; margin-bottom: 20px } .popular-search-anc a { color: #000; font-size: 13px; font-weight: 400; padding: 8px 12px; border-radius: 16px; border: 1px solid #bebebe; margin-right: 12px; margin-bottom: 10px; display: block; line-height: initial } .popular-search-anc ul { display: flex; flex-wrap: wrap; align-items: baseline } .popular-search-anc a:hover { border: 1px solid red !important } .homebody { margin-top: 38px !important } .term-plan-mobile { max-width: 373px } .mt-anc-0 { margin: 0 !important; padding-right: 6px } .gsp-anc { font-size: 16px; font-weight: 400; color: #00f } .gsp-anc:hover { font-size: 16px; font-weight: 400; color: #00f } .buy-txt-desk { font-family: Lato-Regular; width: 100% !important; float: left !important; color: #5e6061 !important; font-size: 3em !important; font-weight: 400 !important } .now-you { opacity: .7; width: 100%; float: left; color: #5e6061; font-size: 2em; font-weight: 400; margin: 15px 0 } .p-eterm { margin-bottom: 0 !important; opacity: initial !important; line-height: 1.3 !important; letter-spacing: -.1rem !important; width: 100% !important; float: left !important; color: #5e6061 !important; font-size: 2em !important; font-weight: 400 !important } .buy-online-change a.closePopup { float: right } table { border: 1px solid #c2c2c2 !important; border-bottom: 0 !important } tr:nth-child(odd) { background-color: #f9f9f9 !important } th { border-bottom: 1px solid #c2c2c2 !important; background-color: #efefef !important; border-right: 1px solid #c2c2c2 !important } td { border-right: 1px solid #c2c2c2 !important; border-bottom: 1px solid #c2c2c2 !important; padding: 20px !important } .best-invest .breadcrumb { padding: 0; margin-bottom: 0; background-color: transparent; border-radius: 0 } .best-invest #topic1 h1, .best-invest h1 { font-family: Lato-Regular; color: #000; font-size: 30px; font-weight: bolder; margin-top: 22px; letter-spacing: 1px; max-width: 100%; margin-bottom: 35px; padding: 0 } .best-invest #topic1 ul.bullet li:after { width: 0 } .best-invest #topic1 ul.bullet { margin-right: 20px } .best-invest #topic1 a { color: #0074b7 } .best-invest .row { display: flex } .best-card { max-width: 100%; border-radius: 6px; border: 1px solid #b6b6b6 } .best-card a { padding: 16px 46px 15px 50px; border-radius: 25px; background-color: #da251c; color: #fff; font-size: 15px; font-weight: 400; text-transform: uppercase; margin: 19px 0 23px !important } .mt-30 { margin-top: 30px } .best-invest .d-flex { display: flex; align-items: center } .blogs-ul li { color: #000; font-size: 15px; font-weight: 400; margin: 0 20px 0 0 } .p-20 { padding: 30px 20px } .ml-auto { margin-left: auto } .share-ul li { margin-right: 15px } .best-invest #topic1 li, .best-invest #topic1 p { margin-bottom: 20px; max-width: 100%; color: #000; font-size: 15px; font-weight: 400; line-height: 25px; margin-right: 20px } .best-invest #topic1 a.link { color: #da251c; margin-bottom: 23px; color: #da251c; margin-bottom: 23px; max-width: 100%; display: block; height: auto; font-size: 15px } .best-invest #topic1 a.link:hover { color: #fff !important; margin-bottom: 23px } .p-tc a { color: #1e4679; font-size: 16px; font-weight: 400; text-transform: uppercase } .blogs-sec-para li, .blogs-sec-para p { margin-bottom: 20px; max-width: 637px; color: #000; font-size: 15px; font-weight: 400; line-height: 25px } .pp-bold { font-weight: bolder; font-family: Lato-Bold; font-size: 22px !important } .best-invest #topic1 li, .blogs-sec-para li { list-style: disc; list-style-position: inside; padding-left: 0; padding-right: 20px } .blogs-sec-para { margin: 33px 0 } .best-card { margin-top: 20px; margin-bottom: 25px; margin-right: 20px } .best-invest #topic1 h2, .kotak-e-term-plan h2 { color: #000 !important; font-size: 22px !important; font-weight: 700 !important; margin-bottom: 20px !important; font-family: Lato-Bold } .bg-eterm { background-color: #e9e9e9; padding: 25px 22px } .kotak-e-term-plan { border-radius: 6px; border: 1px solid #b6b6b6; margin-top: 20px } .feats-sec { padding: 18px 22px 25px } .feats-sec h3 { color: #000 !important; font-size: 20px !important; font-weight: 600 !important } .feats-sec li { color: #000; font-size: 15px; font-weight: 400; margin-bottom: 10px } .feats-sec li:last-child { margin-bottom: 0 !important } .feats-sec ul { padding: 22px 0 27px } .feats-buy a { width: 100%; display: block; text-align: center; color: #fff; font-size: 15px; font-weight: 600; text-transform: uppercase; border-radius: 25px; border: 1px solid #da251c; background-color: #da251c; padding: 13px 0 } .feats-want a { width: 50%; display: block; text-align: center; color: #da251c; text-decoration: underline; font-size: 15px; font-weight: 400; text-transform: unset; border-radius: 25px; background-color: #fff; padding: 13px 0; margin-bottom: 8px !important } .p-ref { color: #000; font-size: 16px; font-weight: 400 } .p-tc { color: #1e4679; font-size: 16px; font-weight: 400; text-transform: uppercase } .mt-20 { margin-top: 20px } .browse-our { max-width: 100%; border-radius: 6px; border: 1px solid #b6b6b6; background-color: #1e4679; padding: 13px 25px } .browse-our h3 { color: #fff; font-size: 18px; font-weight: 600; margin: -7px 8px 0 24px; letter-spacing: 1px } .browse-our { margin: 40px 0 } .also-read h3 { color: #000; font-size: 22px; font-weight: 500; margin-bottom: 16px !important } .also-read a { color: #1e4679; font-size: 22px; font-weight: 500 } .also-read li { border-bottom: 1px solid #b6b6b6; padding: 20px 0 } .also-read li:last-child { border-bottom: 0; padding-bottom: 0 } .consumer h3 { padding-bottom: 30px; color: #000; font-size: 20px; font-weight: 700 } .consumer-slick-card h3 { color: #000; font-size: 22px; font-weight: 500; padding-right: 30px; border-bottom: 0; padding-left: 20px } .consumer-slick-card { max-width: 320px; margin: 20px 40px 0 } .consumer-slick-card .slick-card-after { position: relative } .consumer-slick-card .slick-card-after:after { position: absolute; content: ''; width: 1px; height: 103px; background-color: #b6b6b6; top: -5px; right: -40px } .consumer .slick-next { position: absolute; right: 0; top: 23%; background-image: url(../images/slick-next-arr.svg); background-repeat: no-repeat; height: 45px; width: 45px; padding: 33px } .consumer button { background-color: transparent; border: 0; border-radius: 0; cursor: pointer; display: inline-block; font-size: 0 } .consumer .slick-prev { position: absolute; left: -64px; top: 23%; background-image: url(../images/slick-prev-arr.svg); background-repeat: no-repeat; height: 45px; width: 45px; padding: 33px } .feats-sec .fa-size { padding: 6px 0 0 6px } .mr-ten { margin-left: 10px } .share-ul .fa { width: 7px; height: 13px; font-size: 16px } .share-ul a { padding: 0 !important; border-radius: 0 !important; background-color: transparent !important; color: #c9c9c9 !important; font-weight: 100 !important; text-transform: uppercase !important; margin-left: 5px !important } .txt-shr { color: #707070; font-size: 15px; font-weight: 400 } .feats-sec li:hover .fa { color: #fff !important; background: #0b3361 !important } .bg-eterm .broch-btn { padding: 0 !important } .ls1 { letter-spacing: 1px !important } .f_b:hover { color: #4460a0; transition: .5s } .twit:hover { color: #5aa8df; transition: .5s } .whatsap:hover { color: #25d366; transition: .5s } .simi-txt { border-bottom: 0 !important; padding-top: 22px !important; padding-bottom: 0 !important } .feats-sec .faa { width: 28px; height: 27px } .buy-online-new-sec { background-color: #fff } .buy-life-new h2 { color: #ed3438; font-size: 36px; font-weight: 700; margin: 0; text-align: initial; padding: 0 } .now-txt { padding: 12px 0 20px !important; color: #4c4c4c !important; font-size: 24px !important; font-weight: 400 !important; letter-spacing: .67px !important; line-height: normal !important; text-align: initial !important; font-family: Lato-Regular } .p-txt { color: #404040 !important; font-size: 18px !important; font-weight: 700 !important; text-align: initial !important; margin: 0 !important; padding: 0 !important; min-height: initial !important; max-height: initial !important; max-width: 100% !important } .buy-life-slick h2 { color: #000; font-size: 20px; font-weight: 700; text-align: initial; margin: 0; padding: 0; font-family: Lato-Regular } .buy-life-slick p { max-width: 292px; color: #3d3d3d; font-size: 18px; font-weight: 400; text-align: initial; margin: 19px 0; min-height: 185px; max-height: 185px; overflow-y: hidden; -webkit-line-clamp: 6 } .buy-online-links a { display: inline-flex; color: #ed3438; font-size: 15px; font-weight: 400; line-height: normal; text-align: center; border-radius: 36px; border: 1px solid #ed3438; padding: 11px 15px; margin-right: 6px } .term-anc { background-color: #ed3438 !important; color: #fff !important; padding: 11px 12px !important } .buy-life-slick { padding: 40px 0 156px !important } .mr-14 { margin-right: 14px } .buy-slick-card { max-width: 325px; margin-right: 100px; } .buy-slick-card-br { position: relative } .buy-slick-card-br:after { z-index: -1; content: ''; position: absolute; top: 0; right: 0; background-image: url(../images/bor-imhg.svg); background-repeat: no-repeat; height: 100%; width: 100%; left: -56px } .br-0 { border-right: 0 !important } .buy-life-slick .slick-next { position: absolute; right: 20px; bottom: 85px; background-image: url(../images/slick-next-arr.svg); background-repeat: no-repeat; background-size: cover !important; height: 45px; width: 45px; padding: 15px } .buy-life-slick button { background-color: transparent; border: 0; border-radius: 0; cursor: pointer; display: inline-block; font-size: 0 } .buy-life-slick .slick-prev { position: absolute; bottom: 85px; right: 80px; left: unset; background-image: url(../images/slick-prev-arr.svg); background-repeat: no-repeat; height: 45px; width: 45px; padding: 15px } .buy-slick-card img { height: 50px; width: 43px } .buy-slick-card .d-flex { width: 100% !important } .knw-mobile { color: #ed3438; font-size: 15px; font-weight: 400; letter-spacing: .24px; line-height: normal } ul.landingUL-cta li .boxInfo { padding: 22px 50px } ul.fixedUL li a.getCall:before { background-position: initial !important; background: url(../images/SWF.PNG) no-repeat 0 0 !important; margin: 0 0 15px -28px !important } ul.fixedUL li a.login:before { background-position: initial !important; background: url(../images/OPM.PNG) no-repeat 0 0 !important; margin: 0 0 15px -28px !important } .menu-buy { color: #da251c !important; font-family: Lato-Regular !important; font-size: 9px !important; font-weight: 400 !important; border-radius: 2px; border: 1px solid #da251c; background-color: #fff; padding: 0 5px !important; margin: 0 0 5px 3px !important } .menu-buy:after { width: 0 !important } .menu-buy:hover { background-color: #da251c !important; color: #fff !important } .bg-buy-red a { background-color: #da251c !important } .feat-spac .coll-30 { padding: 0 15px } .w-tab-100 { width: 100% !important } ul.w-tab-100 li { margin-bottom: 15px } .down-rep li { height: 190px !important } .tv-pad-footer { z-index: 10 } .breadcrumb { border-top: 0 } .carouselWrap .contWrap { height: 100% } .logoW { height: 85px } header { height: 80px } ul.navUL > li > a { font-size: 15px } ul.navUL > li { height: 80px } ul.navRhs > li > a { font-size: 15px } .rhsNav { height: 80px } .second_navWrap { top: 79px } body { margin-top: -3px !important } .top-161 { top: 121px !important } .slick-card-one-mar { margin-left: 0 !important } .slick-card-one-pad { padding-left: 0 !important } .wh-40 { width: 40px !important; height: 40px !important } a.excelicon:after { background-image: url(../images/excelsmall.png) !important; background-repeat: no-repeat !important; background-position: initial !important } .mx-400 { max-width: 400px !important; margin-left: auto } ul.bodUL li .img { filter: grayscale(100%) } ul.bodUL li .img:hover { filter: grayscale(0) } .bannew-knw { position: absolute; bottom: 90px } .csr-sec { padding: 50px 0 } .csr-sec h1 { font-size: 25px; font-weight: 700; line-height: 30px; color: #ef2023; margin: 0 0 20px; text-align: initial; max-width: 100%; padding: 0; font-family: Lato-Bold; letter-spacing: initial; width: 100% } .clr-black { color: #000 !important } .csr-sec p { margin-left: 0 !important; font-size: 16px; font-weight: 400; line-height: 22px; letter-spacing: 0; text-align: left; color: #000 } .csr-anc { color: #ef2023 !important; font-size: 16px } .comp { padding: 0 0 50px } .bg-f8 { background-color: #f8f8f8 } .csr-sec th { background-color: #053c6d !important; font-family: Lato-Bold !important; font-size: 18px !important; font-weight: 700 !important; line-height: 22px !important; letter-spacing: 0 !important; text-align: center !important; color: #fff !important; padding: 8px } .w-30 { width: 30% } .csr-sec td { font-family: Lato-Regular; font-size: 18px; font-weight: 400; line-height: 22px; letter-spacing: 0; text-align: left; color: #000; padding: 8px !important; background-color: transparent; line-height: initial; text-align: center } .csr-policy { padding: 25px 0 10px; margin-bottom: 50px } .proj-appr { padding: 37px 0 } .proj-appr .accordion-btns h3 { font-family: Lato-Regular; font-size: 16px; font-weight: 400 !important; line-height: 19px; letter-spacing: 0 !important; text-align: left } .proj-appr .accordion-btns button { border: 1px solid #c1c1c1 !important; margin: 0 0 25px !important; padding: 9px 15px !important } .proj-appr .accordion-div .accordion:before { width: 15px; height: 2px; background: #000; content: ''; display: block; position: absolute; right: 16px; top: 50%; -webkit-transform: rotate(50deg) } .proj-appr .accordion-div .accordion:after { width: 15px; height: 2px; background: #000; content: ''; display: block; position: absolute; right: 8px; top: 50%; -webkit-transition: all ease .5s; -webkit-transform: rotate(-52deg) } .proj-appr .accordion-div .accordion.active:before { -webkit-transform: rotate(-50deg) } .proj-appr .accordion-div .accordion.active:after { -webkit-transform: rotate(-127deg) } .impact { padding: 50px 0 } .m-25 { margin: 25px 0 } .impact a { font-family: Lato-Regular; font-size: 16px; font-weight: 400; line-height: 19px; letter-spacing: 0; text-align: left; color: #ef2023 } .impact li { font-size: 16px; list-style-type: disc; list-style-position: inside; color: #ef2023 } .found { padding: 50px 0 } .find-atm { background-color: #ef2023; padding: 40px 0 100px } .find-atm a { font-family: Lato-Regular; font-size: 16px; font-weight: 500; line-height: 19px; letter-spacing: 0; text-align: left; color: #fff; text-transform: uppercase; text-align: center } .find-atm ul { display: flex; justify-content: space-between } .find-atm li { text-align: center } .img-mr { margin-bottom: 16px } .kotak-bank a { font-family: Lato-Regular; font-size: 16px; font-weight: 500; line-height: 19px; letter-spacing: 0; text-align: left; color: #000 } .kotak-bank ul { max-width: 1106px; display: flex; justify-content: space-between; align-items: center } .kotak-bank-sec { background: #fff; box-shadow: 0 10px 23px 5px #000; border-radius: 100px; max-width: 1106px; margin-left: auto; margin-right: auto; padding: 60px 20px; margin-top: -60px } .kotak-bank .select2-selection--single { border-radius: 0 !important; border: 0 !important; border-bottom: 1px solid #000 !important } .kotak-bank .select2-container { width: 158px !important } .kotak-bank .select2-selection__placeholder { color: #000 !important; font-size: 16px !important; font-weight: 700 !important; line-height: 19px !important; letter-spacing: 0 !important } .kotak-bank .select2-selection__arrow b { border-color: #000 transparent transparent !important; border-style: solid } .kotak-bank .select2-selection__rendered { color: #444; line-height: initial !important; color: #000 !important; font-size: 16px !important; font-weight: 700 !important; line-height: 19px !important; letter-spacing: 0 !important } .kotak-bank { margin-bottom: 100px } .csr-sec h6 { font-size: 16px; font-weight: 700; line-height: 30px; color: #ef2023; margin: 0 0 20px; text-align: initial; max-width: 100%; padding: 0; font-family: Lato-Bold; letter-spacing: initial; width: 100% } .csr-acc button { background-color: transparent; border-color: transparent; color: #fff; outline: 0; padding-left: 0; text-transform: none; width: 100% } .csr-acc .csr-sec th { color: #000 !important } .kot-anc { display: flex; font-size: 30px; color: #08315f; align-items: center } .kot-anc:hover { color: #08315f !important } .img-mrr { margin-right: 7px } .kotaklife-process h6 { color: #000; font-size: 15px; font-weight: 700 } .kotaklife-process h5 { color: #000; font-size: 18px; font-weight: 700; margin-bottom: 20px } .kotaklife-process { margin: 50px 0 } .bor-blk { border: 1px solid #000; padding: 15px } .ins-policy h3 { color: #da251c; font-size: 22px; font-weight: 700; text-align: center; margin-bottom: 20px; margin-top: 20px } .ins-policy h2 { color: #000; font-size: 27px; font-weight: 700; text-align: center; max-width: 560px; margin-left: auto; margin-right: auto } .ins-bor { border: 1px solid #000; max-width: 600px; margin-left: auto; margin-right: auto; border-radius: 40px } .doc_man h1 { color: #000; font-size: 23px; font-weight: 700; padding: 0; margin: 0; text-align: initial; font-family: Lato-Bold; letter-spacing: initial; text-decoration: underline } .w-40 { width: 40% } .chang_mang th, .doc_man th { color: #000; font-size: 15px; background-color: transparent !important; border-bottom: 1px solid #000 !important; border-right: 1px solid #000 !important; font-weight: 700 } .chang_mang th:first-child, .doc_man th:first-child { padding-left: 5px } .chang_mang td, .doc_man td { color: #000; font-size: 15px; border-right: 1px solid #000 !important; border-bottom: 1px solid #000 !important; padding: 5px !important; vertical-align: bottom } .chang_mang tr:nth-child(odd), .doc_man tr:nth-child(odd) { background-color: transparent !important } .chang_mang table, .doc_man table { border: 1px solid #000 !important; margin: 40px 0 !important; border-right: 0 !important; border-bottom: 0 !important } .w-17 { width: 13% } .ins-policy { margin-bottom: 100px } .chang_mang h1 { color: #000; font-size: 23px; font-weight: 700; padding: 0; margin: 0; text-align: initial; font-family: Lato-Bold; letter-spacing: initial; text-decoration: underline } .chang_mang td { width: 20% } .chang_mang th { text-decoration: underline !important } .chang_mang td { vertical-align: initial !important } .tableofcontents h1 { font-size: 25px; font-weight: 700; color: #000; font-family: Lato-Bold; letter-spacing: normal; font-style: italic } .tableofcontents li { font-size: 20px; font-style: italic; color: #000; font-family: Lato-Bold } .crssub li { font-family: Lato-Regular; padding-left: 50px; list-style-type: disc; list-style-position: inside } .secheading h1 { color: #000; font-size: 23px; font-weight: 700; padding: 0; margin: 0 0 25px !important; text-align: initial; font-family: Lato-Bold; letter-spacing: initial; text-decoration: underline } .seclis li { color: #000; font-size: 15px; font-family: Lato-Regular; list-style: disc; margin-bottom: 40px; margin-left: 15px } .secheading p { color: #000; font-size: 15px; font-family: Lato-Regular; margin-bottom: 20px } .scope .seclis li { margin-bottom: 20px } .seclis li:last-child { margin-bottom: 0 !important } .pt-50 { padding-top: 35px } .goverance .seclis li { margin-bottom: 20px } .seclis a { color: #1a73e8 } .seclis a:hover { color: #1a73e8 !important } .trans-sec { max-width: 500px; margin-left: auto; margin-right: auto; text-align: center } .secspan { font-style: italic; font-size: 12px } .statement .seclis li { margin-bottom: 20px } .secheading p:last-child { margin-bottom: 0 !important } .focus-lis { font-size: 20px; font-weight: 700; margin-bottom: 15px !important; font-style: italic; display: block } .csr-focus li { list-style-type: disclosure-closed } .csr-focus { padding-bottom: 50px } .tableofcontents a { color: #000 !important } .tableofcontents a:hover { color: #000 !important } .csr-policy { background: #ececed } .dd-btn-flex { display: inline-flex; justify-content: center; width: 100% } .dd-btn-flex a.redBtn { margin: initial; font-size: 1em; margin-right: 20px } .savebtns a.redBtn { margin: initial !important; font-size: 1em; margin-right: 20px !important; padding: 0 30px !important } .ksap-btn { margin-right: 20px } .dd-btn-flex .detbtn { padding: 0 20px !important; line-height: 50px !important; font-size: 10px !important; margin-right: 20px } .buy-life-slick p { max-width: 292px; color: #3d3d3d; font-size: 16px; font-weight: 400; text-align: initial; margin: 19px 0; min-height: 200px; max-height: 200px; overflow-y: hidden; -webkit-line-clamp: 8 } .blog-detail { display: block !important } .blog-detail a { max-width: 100%; margin-right: auto !important; margin-left: auto !important } .bannermain-knw { position: absolute; bottom: 90px } .containerWrapper .contDetails p { text-align: justify } .blog-detail .fs-one { font-size: 15px !important } .wd-50 { width: 50px !important; height: 50px !important } .savebtns a.redBtn { margin-left: 10px !important; margin-right: 10px !important } .buy-slick-card .mr-14 { position: relative; width: 86px } .buy-imgs { position: absolute; right: 0; top: 0; background-image: url(../images/buyeterm.svg); background-repeat: no-repeat; height: 65px; width: 65px } .buy-imgs:hover { background-image: url(../images/buyetermhover.svg) } .buy-imgs1 { position: absolute; right: 0; top: 0; background-image: url(../images/buyasur.svg); background-repeat: no-repeat; height: 65px; width: 65px } .buy-imgs1:hover { background-image: url(../images/assurhover.svg) } .buy-imgs2 { position: absolute; right: 0; top: 0; background-image: url(../images/buygur.svg); background-repeat: no-repeat; height: 65px; width: 65px } .buy-imgs2:hover { background-image: url(../images/buygurhover.svg) } .buy-imgs3 { position: absolute; right: 0; top: 0; background-image: url(../images/einvestt.svg); background-repeat: no-repeat; height: 65px; width: 65px } .buy-imgs3:hover { background-image: url(../images/einvestthover.svg) } .buy-imgs4 { position: absolute; right: 0; top: 0; background-image: url(../images/buyhealth.svg); background-repeat: no-repeat; height: 65px; width: 65px } .buy-imgs4:hover { background-image: url(../images/buyhealthhover.svg) } .buy-imgs5 { position: absolute; right: 0; top: 0; background-image: url(../images/buylife.svg); background-repeat: no-repeat; height: 65px; width: 65px } .buy-imgs5:hover { background-image: url(../images/buylifehover.svg) } .buy-slick-card { max-width: 405px !important; margin-right: 53px; } .rhsboxWrap { padding: 42px 85px 40px 35px } .buy-life-slick .slick-next { position: absolute; right: 80px; bottom: 81px; background-image: url(../images/newbuynext.svg); background-repeat: no-repeat; height: 35px; width: 35px; padding: 15px } .buy-life-slick .slick-prev { position: absolute; bottom: 70px; right: 140px; left: unset; background-image: url(../images/newbuyprev.svg); background-repeat: no-repeat; height: 45px; width: 45px; padding: 15px } .closePopup:after, .closePopup:before { width: 20px; height: 2px } .closePopup span:after { border: 2px solid #da251c } .mr-14 { margin-left: 13px } .buyhealth:after { border-right: 0 !important } .buy-life-slick .slick-prev:hover { background-image: url(../images/newbuyprevh.svg) } .buy-life-slick .slick-next:hover { background-image: url(../images/ebackhover.svg) } .buy-online-links a:hover { box-shadow: 0 3px 6px rgba(237, 50, 55, .24) !important } .term-anc:hover { background-color: #c41425 !important } .buy-online-change a.closePopup { float: right; z-index: 111 } .buy-life-new h2, .buy-life-new p.buy-head { color: #ed3237; font-family: Lato-Bold; font-size: 28px; font-weight: 700; letter-spacing: .28px; font-style: normal; letter-spacing: normal; line-height: normal; margin: 25px 0 6px !important } .now-txt { font-family: 'Lato-Bold' !important; padding: 0 !important; letter-spacing: .32px !important; line-height: normal !important; text-align: initial !important; font-family: 'Lato-Regular!important'; color: #4c4c4c !important; font-size: 21px !important; font-weight: 500 !important; margin-bottom: 0 !important } .slick-slide{border-right:1px solid #999} .slick-slide:last-child{border-right:none} .buy-slick-card-br:last-child:after{border-right:none;} .buy-slick-card-br:after { content: ''; position: absolute; top: 0; right: 0; height: 134px; width: 100%; left: 26px; z-index: -1; border-right: 1px solid #999 } .buy-slick-card { max-width: 395px !important; margin-right: 50px; } .buy-slick-card-br { position: relative } .maincontent-info .panel { max-height: 100% !important } .maincontent { position: static !important } .get-premium:before { background: url(../images/premium.svg) !important; width: 47px !important; height: 27px !important; margin-bottom: 5px !important } ul.fixedUL li a.getCall:before { background: url(../images/contact-us.svg) !important; width: 33px !important; height: 30px !important; margin-left: -20px !important; margin-bottom: 5px !important } ul.fixedUL li .buyOnline:before { background: url(../images/buy-online.png) !important; width: 35px !important; height: 28px !important; margin-bottom: 5px !important } .lcthree { max-height: 63px !important; min-height: 45px !important; -webkit-line-clamp: 3 !important } .rhsBoxDetails { background: 0 0 !important } .clr40 { color: #404040 !important } .fw-bold { font-weight: 700 !important } .gsp-design h2 { font-size: 24px !important; color: #404040 !important } .gsp-design p { max-width: 100% !important; color: #404040 !important; font-size: 16px !important; font-weight: 400 !important; letter-spacing: .32px !important; line-height: 22px !important } .gsp-design .bene-slick h3 { color: #404040 !important; font-size: 18px !important; font-weight: 700 !important; letter-spacing: .36px !important; line-height: 26px !important; margin-bottom: 10px !important } .gsp-design .fs-ach-20 { font-size: 20px !important } .benelis li { max-width: 100% !important; color: #404040 !important; font-size: 16px !important; font-weight: 400 !important; letter-spacing: .32px !important; line-height: 22px !important; margin-left: 18px; list-style: disc !important } .parttxt { color: #fff !important; font-size: 21px !important; font-weight: 600 !important; letter-spacing: .42px !important; line-height: 24px !important; text-align: left !important; text-transform: uppercase !important } .inknw { color: #fff; font-size: 15px; letter-spacing: .3px; text-transform: uppercase; max-width: 175px; height: 45px; border-radius: 25px; border: 1px solid #da251c; background-color: #ed1c24 } .inknw:hover { color: #fff !important } .bg-eb { background-color: #ebebec } .savingsfeat { border-radius: 10px; padding: 13px 24px; background-color: #fff; margin-right: 26px; margin-bottom: 24px } .savingsfeat h3 { color: #404040; font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: .27px; line-height: 26px } .savingsfeat p { color: #404040; font-size: 16px; font-weight: 400; letter-spacing: .32px; line-height: 22px; max-height: 114px; min-height: 114px; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis } .gspnewslick button { margin-right: 10px; border: 0; border-radius: 100%; color: transparent; cursor: pointer; display: flex; font-size: 0; font-weight: 700; height: 3.8rem; letter-spacing: .1rem; line-height: 3.8em; padding: 0; text-align: center; text-decoration: none; text-transform: uppercase; white-space: nowrap; width: 10px; height: 10px; background-color: #404040 } .gspnewslick .slick-active button { width: 44px; height: 10px; border-radius: 30px; background-color: #ef3e43 } .gspnewslick .slick-dots { display: flex; justify-content: center } .kotaksavcard { margin-top: 5px; border-radius: 10px; border: 1px solid #dbdbdb; padding: 28px 29px 25px; margin-bottom: 29px } .kotaksavcard li { color: #404040; font-size: 15px; font-weight: 400; font-style: normal; letter-spacing: .3px; line-height: 22px; list-style-type: disc; position: relative; padding-left: 25px; -webkit-line-clamp: 2; min-height: 45px; max-height: 45px } .kotaksavcard li:before { content: ''; border-radius: 100%; position: absolute; left: 0; bottom: 30px; width: 7px; height: 7px; background-color: #404040 } .mg-30 { margin: 30px 0 } .gspview { color: #c41425; font-size: 16px; font-weight: 400; text-align: center; letter-spacing: .32px; margin-bottom: 24px; border-bottom: 1px solid #c41425 } .gspview:hover { color: #c41425 } .gspinv { color: #fff; max-width: 266px; padding: 13px 0; border-radius: 24px; background-color: #ed3237; font-size: 14px; font-weight: 700; line-height: 19px; margin-top: 24px !important; text-transform: uppercase; display: block; margin-left: auto; margin-right: auto } .gspinv:hover { color: #fff !important } .mr-14 { margin-right: 14px !important } .ml-14 { margin-left: 14px !important } .onlineplan { padding: 8px 20px; margin-left: 40px; max-width: 290px; border-radius: 10px 10px 0 0; background-color: #ebebec; color: #404040; font-size: 15px; font-weight: 600; text-transform: uppercase } .onlinegsp { border-radius: 10px; border: 1px solid #dbdbdb; margin-top: 5px } .onlinegsp li { cursor: pointer; color: #404040; font-size: 16px; border-bottom: 1px solid #dbdbdb; min-height: unset; padding: 12px 27px 12px 40px; line-height: normal; max-height: unset } .onlinegsp li:last-child { border-bottom: 0 } .onlinegsp .fa-angle-right { margin-left: 20px } .onlinegsp .fa-angle-right:hover { background-color: transparent } .onlinegsp li:hover .fa { color: initial !important; background: initial !important } .onlinegsp .fa-angle-right:before { font-size: 21px } .accel { color: #036 !important; font-size: 28px !important; font-weight: 700 !important; letter-spacing: normal !important; text-transform: uppercase !important } .accelcard { max-width: 722px; margin-left: auto; height: 83%; margin-top: 28px; position: relative; padding: 35px 10px 35px 70px } .accelcard::before { position: absolute; content: ''; background-color: #fff; border: 1px solid #dbdbdb; height: 22px; width: 22px; left: -11px; top: 16px; transform: rotate(45deg); border-right: 0; border-top: 0 } .accelcard li { max-width: 270px } .accelcard .gspview { border: 1px solid #c41425; padding: 20px 40px; border-radius: 35px; margin-top: 25px; display: block; max-width: 383px } .accordion-btns-gsp h3 { color: #404040 !important; font-size: 16px !important; font-weight: 700 !important; letter-spacing: .24px !important } .accordion-btns-gsp button { border-radius: 0 !important; border-bottom: 1px solid #dbdbdb !important; margin-bottom: 24px !important; padding: 12px !important; border-top: 0 } .accordion-btns-gsp span { margin-right: 17px } .accordion-btns-gsp .accordion:before { width: 14px !important; height: 3px !important; background: #000 !important; right: 13px !important } .accordion-btns-gsp .accordion:after { width: 14px !important; height: 3px !important; background: #000 !important; right: 13px !important } .accordion-btns-gsp .tab-detail li { list-style-type: none } .gspnewlis li { color: #404040; font-size: 16px; font-weight: 700; letter-spacing: .24px; margin-bottom: 24px } .gspnewlis p { margin: 5px 0 0 30px !important } .gspnewlis span { margin-right: 15px } .fw-normal li { font-weight: 400 !important; margin-bottom: 5px } .gspnewterms .terms-txt { color: #404040 !important; border-radius: 10px !important; border: 1px solid #dbdbdb !important; background-color: #f6f6f6 !important } .gspnewterms .terms-txt:after, .gspnewterms .terms-txt:before { width: 14px !important; height: 3px !important; background: #000 !important } .mb-0 p { margin-bottom: 0 !important } .gspnewterms li { margin-bottom: 24px; list-style-type: decimal; color: #404040; font-size: 16px; font-weight: 400; letter-spacing: .24px; line-height: 24px } .fw-bold { font-weight: 700 !important } .sec41 { margin: 23px 0 32px } .mtb-16 { margin: 16px 0 !important } .panc { color: #404040 !important; font-size: 16px; font-weight: 400; letter-spacing: .24px; line-height: 24px } .panc:hover { color: #404040 } .br-ins { position: relative } .br-ins:after { border-right: 1px solid #707070; content: ''; position: absolute; top: 0; right: 27px; height: 100%; width: 1px } .accelcard { display: none } .tabcontent .accelcard { display: block !important } .op2:before { top: 67px } .op3:before { top: 117px } .op4:before { top: 170px } .op5:before { bottom: 120px; top: initial } .op6:before { bottom: 68px; top: initial } .op7:before { bottom: 16px; top: initial } .gsp-design .op5:before { bottom: 270px; top: initial } .gsp-design .op6:before { bottom: 218px; top: initial } .gsp-design .op7:before { bottom: 163px; top: initial } .gsp-design .op8:before { bottom: 110px; top: initial } .gsp-design .op9:before { bottom: 46px; top: initial } .gsp-design .op10:before { bottom: -14px; top: initial } .accelblock { display: block; color: red !important } .accelclr { color: #c41425 !important; font-weight: 700 !important } .accelclr .fa-angle-right { color: #ed3237 !important } .onlinegsp li.accelclr:hover .fa { color: #ed3237 !important; background: initial !important } .gspnewslickmobile button.slick-next { background-image: url(../images/gspnext.svg) !important; background-size: auto; left: unset; z-index: 1000; right: 0; top: unset; bottom: -19px; background-color: transparent; border: 0; font-size: 0; height: 34px; width: 34px; position: absolute; padding: 0; margin: 0 } .gspnewslickmobile button.slick-prev { background-image: url(../images/gspprev.svg) !important; background-size: cover; left: unset; z-index: 1000; right: 45px; top: unset; bottom: -19px; background-color: transparent; border: 0; font-size: 0; height: 34px; width: 34px; position: absolute; padding: 0; margin: 0 } .pagingInfo-gsp, .pagingInfo-gspnew { position: absolute; bottom: 22px; right: 50% } .pagingInfo-gsp .finished_count, .pagingInfo-gspnew .finished_count { color: #404040; font-size: 16px; font-weight: 400; letter-spacing: .32px; line-height: 26px } .pagingInfo-gsp .total_count, .pagingInfo-gspnew .total_count { color: #404040; font-size: 16px; font-weight: 400; letter-spacing: .32px; line-height: 26px } .btnanc { color: #404040; font-size: 12px; font-weight: 400; border-radius: 16px; border: 1px solid #d2d2d2; background-color: #fff; padding: 7px 9px; display: block; text-align: center; margin-right: 5px } .btnanc:hover { background-color: #ed1c24 !important; color: #fff !important; border: 0 !important } .btnanc:focus { background-color: #ed1c24 !important; color: #fff !important; border: 0 !important } .btn-slick button.slick-next { background-image: url(../images/btnslicknext.svg) !important; background-size: auto; left: unset; z-index: 1000; right: -35px; top: unset; bottom: 4px; background-color: transparent; border: 0; font-size: 0; height: 25px; width: 25px; position: absolute; padding: 0; margin: 0 } .btn-slick button.slick-prev { background-image: url(../images/btnslickprev.svg) !important; background-size: auto; left: unset; z-index: 1000; left: -35px; top: unset; bottom: 4px; background-color: transparent; border: 0; font-size: 0; height: 25px; width: 25px; position: absolute; padding: 0; margin: 0 } .btnsticky { box-shadow: 0 3px 15px #000 !important; max-width: 1130px; left: 5%; bottom: 0 !important; transform: translate(5%, 0); position: fixed; z-index: 1111111; padding-top: 2px } .btnstickybg { width: 100% !important; background-color: #fff !important } .fixedBlue .btnsticky-mob { top: 66px !important } .btnsticky-mob { position: fixed; top: 66px; z-index: 11111111 !important; width: 100%; margin-left: auto; margin-right: auto; background-color: #fff !important } .gsp-design section { z-index: unset !important } .btnslickactive { background-color: #ed1c24 !important; color: #fff !important; border: 0 !important; position: absolute !important; left: 0 !important } .accordion-btns-gsp .active h3, .accordion-btns-gsp .active span { color: #ed3237 !important } .accordion-btns-gsp .accordion.active:after { background: #ed3237 !important } .w-161 { width: 161px } .sec { color: #ed3237 !important; font-size: 17px; font-weight: 400; box-shadow: 0 6px 6px -6px #ccc; width: 100%; border-radius: 0 } .sec:hover { color: #ed3237 !important } .hide-desktop .accordion-div .accordion:before { width: 11px; height: 1px; background-color: #da251c !important; content: ''; display: block; position: absolute; right: 27px; top: 50%; -webkit-transform: rotate(40deg) } .hide-desktop .accordion-div .accordion:after { width: 11px; height: 1px; background-color: #da251c !important; content: ''; display: block; position: absolute; right: 19px; top: 50%; -webkit-transform: rotate(-50deg) } .hide-desktop .accordion-div .accordion.active:before { -webkit-transform: rotate(150deg) } .hide-desktop .accordion-div .accordion.active:after { -webkit-transform: rotate(-150deg) } .hide-desktop .btnanc.sec:hover { color: #da251c !important; background-color: #fff !important } .onlineplan:hover { background-color: #ed1c24 !important; color: #fff !important; border: 0 !important } .assur430 { height: 435px } .h-156 { height: 156px } .featassur a:last-child { border-radius: 0 !important; color: #ed3237 !important; font-size: 12px !important; font-weight: 400 !important; text-align: center !important; letter-spacing: .32px !important; margin-bottom: 24px !important; border: 0 !important; border-bottom: 1px solid #ed3237 !important; padding-bottom: 0; width: max-content; margin-left: auto; margin-right: auto } .mb-100 { margin-bottom: 50px } .dd-none { display: none } .feats-sec .fa-size { padding: 6px 10px 0 6px } .onlinetxt h1 { margin-left: 16px !important; color: #036 !important; font-size: 32px !important; font-weight: 800 !important; letter-spacing: .64px !important; line-height: 36px !important; max-width: 346px !important; border-left: 1px solid #036; padding: 0 0 0 16px } .onlinetxt { align-items: center; display: flex } .img-wid { width: 170px; height: 95px } .col-reverse-mob { align-items: center !important } .uliplis li { list-style: disc; list-style-position: inside; max-width: 100% !important; color: #404040 !important; font-size: 16px !important; font-weight: 400 !important; letter-spacing: .32px !important; line-height: 22px !important; margin-bottom: 0 !important } .uliplis p { margin: 5px 0 0 23px !important } .fw-bold li { font-weight: 700 !important } .whyinvest { padding: 28px 0 55px } .typescard { margin: 20px 0 30px; border-radius: 10px; border: 1px solid #dbdbdb; background-color: #fff; text-align: center; padding: 16px 8px } .typescard h3 { color: #404040; margin: 10px 0; font-size: 16px; font-weight: 700; letter-spacing: .24px } .typescard p { max-height: 180px; min-height: 180px; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; display: -webkit-box } .varfac .typescard { padding: 40px 10px 20px 24px; text-align: initial; margin-right: 32px } .varfac .typescard img { height: 44px; width: 44px } .factorsslick button.slick-next { background-image: url(../images/btnslicknext.svg) !important; background-size: auto; left: unset; z-index: 1000; right: 30px; top: unset; bottom: 1px; background-color: transparent; border: 0; font-size: 0; height: 25px; width: 25px; position: absolute; padding: 0; margin: 0 } .factorsslick button.slick-prev { background-image: url(../images/btnslickprev.svg) !important; background-size: auto; left: unset; z-index: 1000; right: 67px; top: unset; bottom: 1px; background-color: transparent; border: 0; font-size: 0; height: 25px; width: 25px; position: absolute; padding: 0; margin: 0 } .pagingInfo-facslick .finished_count { color: #404040; font-size: 16px; font-weight: 400; letter-spacing: .32px; line-height: 26px } .pagingInfo-facslick .total_count { color: #404040; font-size: 16px; font-weight: 400; letter-spacing: .32px; line-height: 26px } .pagingInfo-facslick { position: absolute; bottom: 0; right: 110px } .position-relative { position: relative } .ulipterms h3 { color: #404040; font-size: 16px; letter-spacing: .24px; margin-bottom: 15px } .ulipterms p { margin-bottom: 15px !important } .docreq h3 { color: #404040; font-size: 16px; font-weight: 700; letter-spacing: .32px; margin: 15px 0 } .docreq { padding: 70px 0 } .pagingInfo-gspnewulip { position: absolute; bottom: 22px; right: 50% } .pagingInfo-gspnewulip .finished_count { color: #404040; font-size: 16px; font-weight: 400; letter-spacing: .32px; line-height: 26px } .pagingInfo-gspnewulip .total_count { color: #404040; font-size: 16px; font-weight: 400; letter-spacing: .32px; line-height: 26px } .neweterm h2 { color: #036 !important; font-size: 28px !important; font-weight: 700 !important; font-style: normal; letter-spacing: normal; line-height: 30px; text-align: left; text-transform: uppercase } .terms-conditions { font-size: 24px !important; font-weight: 600 !important; margin: 24px 0 !important; color: #404040 !important; font-family: Lato-Regular !important } .gspnewterms li { margin-left: 18px !important } .gsp-design p { line-height: 20px !important } p.line-32 { line-height: 24px !important } ul.side-by-sde { display: flex !important } ol { margin: .5rem 0 !important } .side { display: flex !important } .list-1 { border: 0 solid grey !important; padding: 1px !important } .spec-wid { width: 256px !important } .typescard h3 { font-weight: 600 !important } .mar-top-sec { margin-top: -6px } .feats-sec li { margin-bottom: 10px } .feature-want-more a { border: 1px solid #000; width: 91%; color: #000; text-decoration: none } .feature-group.feature-group { padding-left: 25px !important; padding-right: 20px !important; } .feature-group.feats-sec .fa-size { font-size: 10px; padding: 5px 6px 0 4px } .feature-group.feats-sec .faa { width: 20px; height: 20px } .feature-group.feats-sec .featassur a { text-decoration: none } p.para-height-less { min-height: 210px !important; max-height: 210px !important } .list-1 { margin: 1px 0 !important } .mar-side-left { margin-left: 70px; margin-top: -20px } .feats-buy a { width: 91% !important } .feats-sec { padding: 30px 2px 2px 48px !important } .bullet.reg-plan { width: 100% !important; float: left !important } .action_btn { text-decoration: underline !important; color: #da251c !important } .online-term-plan-bg, .online-term-plan-bg h1, .online-term-plan-bg h2, .online-term-plan-bg h3, .online-term-plan-bg h4, .online-term-plan-bg h5, .online-term-plan-bg h6, .online-term-plan-bg p { color: #404040 !important } .term-design h1.new-term-banner-h1 { padding-top: 4rem !important; font-weight: 700 !important; color: #1e4679 !important } .term-design .term-design-banner p { font-size: 18px !important; width: 75%; line-height: 25px !important } .cal-prem .in-buy { padding: 12px 24px 11px 20px; width: auto; font-size: 14px; letter-spacing: .5px; font-weight: 400; text-transform: uppercase } .cal-prem, .term-design .want-to-knw { font-size: 14px !important } .cal-prem .want-to-knw { border: 1px solid #ed1c24; color: #ed1c24 } .term-insur { padding-right: 20px } .terminsur.bene-slick h3 { font-size: 18px !important; margin-bottom: 10px !important } .ensure.term-insure { background-color: #1e4679 } .mx-650 { max-width: 650px } .fnt-16 { font-size: 16px !important } .fnt-24 { font-size: 24px !important } .wht-should p { padding-bottom: 15px } .online-term-plan-bg .clr-fff { color: #fff !important; letter-spacing: .36px } .custom-review { background: 0 0; color: #fff; position: relative; padding: 0 40px; min-height: 420px; padding-right: 0 } .slick-current .custom-review { padding: 0; border-right: 1px solid #fff } .custom-review h3 { font-size: 20px; padding-bottom: 2rem; letter-spacing: .3px } .custom-review h3, .custom-review p { color: #fff !important; letter-spacing: .5px } .custom-review p { padding-left: 40px; padding-top: 20px } .slick-current .custom-review p { padding-left: 40px; padding-right: 30px } .custom-review p:before { content: '';  position: absolute; width: 25px; height: 20px; margin-left: -35px } .slick-active .custom-review p:after { content: '';  position: absolute; width: 25px; height: 20px; margin-left: 10px; margin-top: 10px } .fnt-17 { font-size: 17px !important } .fnt-18 { font-size: 18px !important; letter-spacing: .27px } .c-name { padding-left: 15px } .custom-rating { justify-content: center; align-items: center; position: absolute; bottom: 0; right: 20px } .c-name h3 { padding-bottom: 0 } .reviewslick button.slick-prev {  background-size: auto; left: unset; z-index: 1000; right: 67px; top: unset; bottom: 2px; background-color: transparent; border: 0; font-size: 0; height: 25px; width: 25px; position: absolute; padding: 0; margin: 0 } .reviewslick button.slick-next {  background-size: auto; left: unset; z-index: 1000; right: 30px; top: unset; bottom: 2px; background-color: transparent; border: 0; font-size: 0; height: 25px; width: 25px; position: absolute; padding: 0; margin: 0 } .best-term-plan img { margin: auto; position: relative; z-index: 10 } .slide-line { position: relative; margin-bottom: 30px } .best-term-plan .typescard { border: none } .varfac .best-term-plan .typescard { margin-right: 0 } .slide-line:after { border-top: 1px solid #cecece; content: ''; width: 100%; height: 2px; top: 20px; position: absolute; left: 150px } .slide-line:before { content: ''; width: 80px; height: 80px; border: 1px solid #cecece; position: absolute; top: -17px; left: 29%; background: #fff; z-index: 1; border-radius: 50% } .coll-66 { flex: 0 0 66%; max-width: 66% } .new-term-head p { margin-top: 10px } .new-term-head h4 { font-weight: 600 } .kotak-e-term-plan.kota-termplan { margin-top: 4px; border: 1px solid #dbdbdb !important } .kotak-e-term-plan .sep-btn { bottom: 12% } .fnt-600 { font-weight: 600 } .text-left { text-align: left !important } .kotak-e-term-plan.kota-termplan-two { margin: 5px 20px 0 !important; border: 1px solid #dbdbdb !important; height: 100% } .kota-termplan-two .feats-buy a { display: inline-block; margin: 20px 0 0; padding: 10px 20px; width: auto !important } .type-term-plan .type-card { border: 1px solid #b8b8b8; border-radius: 10px } .factor-ulip .slide-line { text-align: center } .fact-bg { position: relative } .fact-bg:before {  content: ''; height: 90px; position: absolute; width: 100%; background-size: 200%; background-repeat: no-repeat; top: 60px; z-index: 9; left: 210px; top: 70px } .fact-bg:nth-child(2n):before { background-position: -390px; top: 55px } .fact-bg:nth-child(3n):before { background: 0 0 } .fact-bg .slide-line:after, .fact-bg .slide-line:before { content: none } .fact-bg .typescard .slide-line img { width: auto !important; height: auto !important } .factor-ulip .typescard h3 { text-align: center } .insurance-prem .savingsfeat { background: 0 0; padding: 0 } .red-num { color: #ef3e43; font-size: 36px; font-weight: 700; padding-right: 10px; position: relative; top: 5px } .insurance-prem .savingsfeat p { padding-bottom: 30px; max-height: inherit !important; min-height: inherit !important } .insurance-prem { padding-bottom: 0 !important } .mt-50 { margin-top: 50px } .term-rider .bene-slick h3 { font-size: 18px !important; color: #404040 !important; font-weight: 600 !important; margin-bottom: 10px !important } .term-rider .bene-para { margin-bottom: 30px } .term-rider .bene-para p { max-width: inherit !important; min-width: 100% } .rider-img { padding-right: 20px } .document-ulips p { padding-left: 20px; padding-bottom: 10px; position: relative } .document-ulips p:before { content: '-'; width: 40px; position: absolute; left: -2px; font-size: 20px } .plan-works { padding-left: 20px } .plan-works li { font-size: 16px; padding-right: 60px; padding-bottom: 20px; list-style: disc } .document-term-family { padding-left: 30px } .align-item-center { align-items: center } .keyfeat { padding-top: 0 } .keyfeat table { margin-top: 0; border-radius: 20px; overflow: hidden } .keyfeat table tr th { font-size: 16px } .keyfeat table tr td { font-size: 16px; font-weight: 400 !important } .term-blog ul.reportUL_new > li { width: 33% !important } .term-blog ul.reportUL_new > li h3 { min-height: inherit; max-height: inherit; padding-top: 10px } .term-blog ul.reportUL_new > li .some-text { color: #083160; font-size: 15px; padding-left: 0 } .term-blog ul.reportUL_new > li .detail { padding-bottom: 10px !important } .term-blog ul.reportUL_new > li .links { border: 1px solid #ef3e43; padding: 3px 10px; text-align: center; border-radius: 25px; height: 31px; margin-top: 8px } .term-blog ul.reportUL_new > li a { position: static } .term-blog ul.reportUL_new > li a:after, .term-blog ul.reportUL_new > li a:before { content: none } .justify-content-end { justify-content: space-between !important } .reviewslick { min-height: 470px } .d-md-block { display: block !important } .d-md-none { display: none !important } .pagingInfo-review { position: absolute; bottom: 0; right: 110px; width: 150px; color: #bbb } .term-insure .total_count:before { content: ''; position: absolute; right: 0; width: 80px; height: 1px; background: #bbb; top: 13px } .pagingInfo-review .finished_count { color: #bbb; font-size: 16px; font-weight: 400; letter-spacing: .32px; line-height: 26px } .pagingInfo-review .total_count { color: #bbb; font-size: 16px; font-weight: 400; letter-spacing: .32px; line-height: 26px } .online-term-plan-bg .pagingInfo-facslick { bottom: -36px; right: 33px } .termbenif { background: #f5f5f5 } .online-slick-two .slick-next { right: 185px !important; bottom: -34px } .online-slick-two .slick-prev { left: 115px !important; bottom: -45px } .kota-termplan .kotaksavcard li:before, .kota-termplan-two .kotaksavcard li:before { content: ''; border-radius: 100%; position: absolute; left: 0; bottom: 11px; width: 7px; height: 7px; background-color: #404040; z-index: 99999 } .kota-termplan-two .kotaksavcard li, .multtask li { min-height: inherit !important; max-height: inherit !important; line-height: 30px !important } .multtask .feats-want a { text-decoration: none; margin-top: 10px; padding-bottom: 10px } .multtask .mar-side-left img { margin-top: -10%; margin-bottom: 20px } .kota-termplan-two .kotaksavcard li { width: 100% !important } .img-size { width: auto; max-width: inherit } .term-insur-family .typescard p { min-height: inherit !important; max-height: inherit !important; overflow: inherit !important } .term-keyfeat .difference-bwn td, .term-keyfeat .difference-bwn th { padding: 10px 35px !important } .load-more { text-align: center } .load-more a { display: inline-block; border-radius: 25px; border: 1px solid #da251c; background-color: #da251c; color: #fff; font-size: 16px; font-weight: 400; letter-spacing: .32px; padding: 10px 33px; text-transform: uppercase } .term-blog ul.new_article_cards.reportUL_img > li .reportBox { padding: 0; border: 1px solid #dbdbdb; box-shadow: none; padding: 10px; border-radius: 10px } .term-blog ul.new_article_cards.reportUL_img > li .reportBox .detail { padding: 5px 0 0; margin-bottom: 0 } .term-blog .reportBox img { border-radius: 10px } .online-term-plan-bg .best-term-plan .typescard p { text-overflow: initial; display: block; overflow: inherit; min-height: inherit; max-height: inherit } .termbenif .savingsfeat { height: 100%; margin-bottom: 0 } .termbenif .coll-30, .termbenif .coll-66 { margin-bottom: 30px } .online-term-plan-bg .e-invest p, .stepnumber-term.how-buy p { font-size: 16px !important } .stepnumber-term .steps-number { padding: 10px 19px 10px 17px } .stepnumber-term.how-buy h3 { font-size: 18px !important } .stepnumber-term.how-buy .roww { margin-bottom: 26px } .online-term-plan-bg .lum_sum { height: 100% } .kota-termplan-two .neweterm h2, .mobile-invest .neweterm h2 {
	 /*font-family:Roboto;*/font-family:'Lato';
	 } .kota-termplan-two .neweterm h2 { margin-bottom: 10px !important } .covid-cont { margin-bottom: 30px } .covid-cont p { font-size: 16px; margin-bottom: 10px } .termbenif .savingsfeat p { min-height: inherit !important; max-height: inherit !important } .cal-prem .want-to-knw { padding-top: 9px; padding-bottom: 6px } .term-bene-slick button.slick-prev { background-image: url(../images/btnslickprev.svg) !important; background-size: auto; left: unset; z-index: 1000; right: 67px; top: unset; bottom: 2px; background-color: transparent; border: 0; font-size: 0; height: 25px; width: 25px; position: absolute; padding: 0; margin: 0 } .term-bene-slick button.slick-next { background-image: url(../images/btnslicknext.svg) !important; background-size: auto; left: unset; z-index: 1000; right: 30px; top: unset; bottom: 2px; background-color: transparent; border: 0; font-size: 0; height: 25px; width: 25px; position: absolute; padding: 0; margin: 0 } .online-term-plan-bg .feats-buy { margin-bottom: 15px } .neweterm h3 { margin-bottom: 15px } #ci_calculator, #incomeTaxCalculator, #investment_calculator, #retirement_calculator { top: 100px } .invest-cal { font-size: 18px; text-align: center; padding-top: 3rem } .disclamier-pera p { font-size: 16px } .ulip-sections h1, .ulip-sections h2, .ulip-sections h3, .ulip-sections h4, .ulip-sections h5, .ulip-sections h6, .ulip-sections p, .ulip-sections ul li { color: #161616 !important } .onlinetxt .ulip-banner-heading h1 { font-size: 37px !important } .ulip-sections .term-design .term-design-banner p { font-size: 22px !important; line-height: 34px !important } .gsp-design .mx-555 { max-width: 554px !important; width: 100% !important } .ulip-sections .term-design .term-design-banner p.top-ban-text { font-size: 15px !important; width: 100%; padding-bottom: 10px; color: #161616 !important } .slidnum { position: relative; height: 50px; min-height: auto !important; text-align: center; margin-left: -10px; z-index: 99; color: #161616 !important } .ulip-number .slide-line:before { width: 60px; height: 60px } .ulip-number .typescard p { min-height: inherit !important; max-height: inherit !important; color: #161616 !important } .bg-f3 { background: #f3f3f3 !important } .ulip-number .typescard { background: 0 0 } .ulip-factor .pagingInfo-facslick { bottom: -30px; right: 32px } .ulip-factor { padding-bottom: 3rem !important } .ulip-benefits { padding-top: 30px !important } .ulip-sections .ulip-benefits h2, .ulip-sections .ulip-benefits h3, .ulip-sections .ulip-benefits li, .ulip-sections .ulip-benefits p { color: #161616 !important } .ulip-benefits .uben { padding-left: 30px } .ulip-benefits .uben li { padding-bottom: 20px } .ulip-benefits .bene-para a { color: #024dff !important; text-decoration: none !important } .ulip-benefits .bene-para li { padding-top: 10px } .ulip-benefits .bene-para ul { margin-left: 20px } .ulip-insure .inknw { text-transform: capitalize !important } .ulip-feature .u-f-h2 { padding-top: 2rem !important; padding-bottom: 2rem !important } .ulip-feature .savingsfeat p { min-height: inherit !important; max-height: inherit !important; line-height: 22px !important } .ulip-feature .savingsfeat { height: 100% } .ulip-feature .coll-30 { margin-bottom: 24px } .ulip-sections .type-card p { min-height: inherit !important; max-height: inherit !important } .ulip-plan-feat .term-tags { padding: 0 0 3rem !important } .ulip-pol-plan .type-card { margin-bottom: 20px } .ulip-pol-plan .type-card h3 { font-size: 16px !important; border-bottom: 0 } .ulip-pol-plan .type-card p { margin-top: 0 !important; line-height: 22px !important } .ulip-pol-plan .type-card { padding: 28px 25px 25px 24px } .ulip-pol-plan { margin-bottom: 30px } .ulip-plan-feat { margin-bottom: 0 !important } .ulip-kotak-life li { min-height: inherit !important; max-height: inherit !important; line-height: 30px !important } .kotaksavcard .ulip-kotak-life li:before { bottom: 12px } .ulip-ol { margin-top: 0 !important } .kot-btn { background: 0 0 !important; color: #da251c !important; font-weight: 500 !important; margin-top: 0 !important; padding-left: 8px !important; padding-right: 8px !important } .ktm-btm { margin-top: 20px } .ktm-btm a { margin-top: 0 !important } .feats-buy.ktm-btm a { width: 100% !important } .feats-sec.kotat-online { padding-left: 38px !important } .ulip-fund h2 { padding-bottom: 3rem !important; font-size: 24px !important } .ulip-fund .bene-slick h3 { font-size: 18px !important; margin-bottom: 10px !important } .ulip-fund .bene-slick p { max-width: 90% !important } .ulip-various-fact h3 { min-height: inherit !important; max-height: inherit !important } .ulip-docq.docreq li:before { content: ''; width: 10px; height: 1px; background: #000; position: absolute; top: 11px; left: 0 } .ulip-docq.docreq li { position: relative; padding-left: 20px } .ulip-docq.docreq h3 { margin-bottom: 0 } .bg-none { background: 0 0 !important } .ulip-steps.stepnumber-term .steps-number { margin: 0 } .ulip-steps.how-buy p { line-height: 22px !important } .ulip-step-buy { padding-top: 2rem; padding-bottom: 3rem } .ulip-step-buy a { padding: 13px 57px 14px 56px !important } .ulip-changes { display: inline-block; margin-bottom: 30px } .factorsslicks { display: flex; flex-wrap: wrap } .ulip-changes .typescard { padding-top: 24px; height: 100% } .ulip-sections .ulip-cutom-review h2, .ulip-sections .ulip-cutom-review h3, .ulip-sections .ulip-cutom-review p { color: #fff !important } .ulip-sections .reviewslick button.slick-next { right: 20px } .ulip-nav p { padding-bottom: 20px; line-height: 22px } .ulip-blogs .term-bene-slick .detail h3 { font-size: 16px; color: #404040 !important; letter-spacing: .3px !important; font-weight: 700 } .term-design .ulip-cat-mt .want-to-knw { text-transform: capitalize } .term-design .ulip-cat-mt .in-buy { font-weight: 400 !important } .ulip-sections .stepnumber-term .steps-number { padding: 10px 17px } .ulip-sections .onlinetxt h1 { max-width: 386px !important } .fnt-400 { font-weight: 400 } .cat-e-invest .fnt-400 { font-weight: 400 !important } .ulip-sections .neweterm h3 { color: #036 !important; font-size: 28px !important; font-weight: 700 !important; font-style: normal; letter-spacing: normal; line-height: 30px; text-align: left; text-transform: lowercase } .clr-blu { color: #024dff !important } .ulip-factor .slick-list { position: relative } .ulip-factor .slick-list:before { content: ''; background: url(../images/ulip-plan/red-arrow.svg); background-repeat: no-repeat; position: absolute; right: -5px; z-index: 99; top: 74px; width: 20px; height: 20px } .ulip-benefits .bene-slick h3 { margin-bottom: 10px !important } .ulip-benefits .bene-para { margin-bottom: 30px } .ulip-sections .accelclr { color: #da251c !important } .ulip-sections .kotak-e-term-plan .tooltip { top: -20px; right: -20px } .ulip-sections .bestsavgsp .tooltip { top: -28px; right: -8px } .ulip-sections .ulipterms h3 { display: inline-block } .ulip-sections .ulipterms p { margin-bottom: 20px !important } .ulip-sections .mtb-16 { margin-top: 10px !important } .ulip-sections .accordion-btns-gsp .accordion:after, .ulip-sections .accordion-btns-gsp .accordion:before { background: #da251c !important } .ulip-sections .top-ban-text { text-transform: uppercase !important; font-weight: 700 !important; max-width: 100% !important } .in-buy, .inknw, .ktm-btm a, .l-more { text-transform: capitalize !important } .ulip-sections .what-ulips .btnsticky { box-shadow: 0 3px 15px #000 !important; max-width: 100% !important; left: 0 !important; bottom: 0 !important; transform: translate(0, 0) !important; position: fixed; z-index: 1111111 !important; padding-top: 0 !important; background: #fff !important; width: 100%; text-align: center } .ulip-sections .what-ulips .slick-list { display: inline-block; table-layout: fixed !important; max-width: 1130px !important; left: 0 !important; bottom: 0 !important; transform: translate(5%, 0) !important } .ulip-sections .what-ulips .slick-slider { display: inline-block; table-layout: fixed; width: 1140px; top: 10px } .ulip-sections .what-ulips .btn-slick button.slick-prev { left: 0 !important; bottom: 30px } .ulip-sections .what-ulips .btn-slick button.slick-next { bottom: 30px; right: -10% } .ulip-sections .custom-icon { bottom: 52px } .fnt-30 { font-size: 30px !important; line-height: 3rem !important } .kasp-bans { background-position: 0 -30px !important } .fst-18.steps-number.color-white { color: #fff !important } .how-buy { background-color: #f5f5f5; padding-top: 30px; padding-bottom: 0 } .term_related .para_divide { padding-bottom: 20px } .li_font { font-size: 16px; font-weight: 400; letter-spacing: .32px; line-height: 26px; color: #404040 } ul.li_font { list-style-type: disc !important } .li_font li { list-style: disc !important; margin-left: 15px } .mb-31 { margin-bottom: 31px !important } .term_related { margin: 50px 0 !important } .para_buy { color: #404040; font-size: 18px; font-weight: 400; font-style: normal; letter-spacing: .36px; line-height: 25px } .lum_sum h3 { color: #404040; font-size: 20px; font-weight: 600; font-style: normal; letter-spacing: .4px; padding-bottom: 15px } .lum_sum p { color: #404040; font-size: 16px; font-weight: 400; font-style: normal; letter-spacing: .32px; line-height: 22px } .lum_sum { padding: 20px 44px; border-radius: 10px; border: 1px solid #dbdbdb; background-color: #fff; min-height: 370px } .lum_sum:first-child { margin-right: 15px } .right_time_to_buy { background-color: #f5f5f5; padding: 32px 0 } .lum_sum1 { padding-top: 26px } .lum_sum1 h2 { padding-bottom: 16px !important } .lum_sum1 p { padding-right: 60px } .d--flex { display: flex } .splash-close img { height: 20px; opacity: .2; cursor: pointer; transition: .6s } .splash-close img:hover { opacity: unset; transition: .6s } .splash-close { width: 30px; margin: 0 0 0 auto } .splash p { margin: 0 } .splash-content { width: 65%; font-size: 18px; margin: 0 auto; background-color: #fff; padding: 16px 18px; border-radius: 11px; margin-top: 201px } .overlay-black { position: absolute; top: 0; bottom: 0; left: 0; right: 0; background-color: rgba(0, 0, 0, .2); z-index: -1 } #splash { position: fixed; top: 0; z-index: 10; left: 0; bottom: 0; width: 100%; height: 100vh; background-color: rgba(0, 0, 0, .5) } #splash a { color: red } .multimenu > ul > li > a { font-size: 13px; color: #08315f; text-decoration: underline; position: relative } .multimenu > ul > li > a:after { content: ''; width: 30px; height: 20px; right: -30px; top: 21px; background: url(../images/spriteImg.webp) no-repeat -249px 0; position: absolute } .multimenu > ul > li > a.viewAll:after, .multimenu > ul > li > ul > li a:after { content: none } .get-btn { padding: 3px 30px 3px 29px; border-radius: 15px; background-color: #00387e !important; color: #fff !important; font-size: 22px; font-weight: 100; position: absolute; bottom: 40px; z-index: 111; right: 315px } .position-relative { position: relative !important } .banner .vidDiv { background-position: initial } .banner .new_vid { background-position: right center } .btm-pos { bottom: 64px } .bg_newvid { background-position: initial !important; background-size: cover !important } body { margin-top: -3px !important } .needCalculatorWrap .step01 .selectbg { width: 310px; float: initial; margin: 15px 0 0 15px } .mtt-0 { margin-top: 37px !important } .modal-sm { width: 400px; position: fixed; bottom: 10px; right: 90px; padding: 0 15px; background-color: #fff; box-shadow: 0 0 18px -5px #333; border-radius: 10px; display: none } .modal-sm .pic { height: 50px; width: 50px; border-radius: 50% } .center-text { text-align: center; padding-top: 25px } .modal-sm .name { font-size: 20px; font-weight: 600; margin: 0 } .green-dot { background-color: green; height: 7px; width: 7px; display: inline-block; border-radius: 50% } .modal-sm .center-text p { margin: 0; font-weight: 400; display: contents } .btn-chat { margin: 22px 0 } .btn-chat a { background: #da251c; text-decoration: none; color: #fff; font-size: 16px; padding: 7px 0; border-radius: 5px; width: 100%; display: block } .d--block { display: block } .close-btn { float: right; font-size: 23px; cursor: pointer } .letschat-btn { cursor: pointer } .prof-img { width: 140px !important; height: 180px !important; object-fit: cover } @media only screen and (max-width:600px) { .modal-sm { right: 10px; width: 89% } } @media (min-width:768px) { .hide-desktop { display: none !important } .invest-desk { position: absolute; bottom: 40px } .second-ban { width: 90% !important; left: 10% !important } .banner-seven { background-position: -25px !important } .coll-70 { flex: 0 0 70%; max-width: 70% } .coll-30 { flex: 0 0 30%; max-width: 30% } .coll-50 { flex: 0 0 50%; max-width: 50% } .coll-40 { flex: 0 0 40%; max-width: 40% } .coll-60 { flex: 0 0 60%; max-width: 60% } .coll-md-33 { flex: 0 0 33.33%; max-width: 33.33% } .cat-what-ulip .tab button { margin-right: 22px !important; padding: 13px 27px !important } .tabs-scroll { width: 100%; overflow-x: hidden; overflow-y: hidden; white-space: nowrap } .w-footer-20 { flex: 0 0 20%; max-width: 20% } .w-footer-30 { flex: 0 0 30%; max-width: 30% } } .blog-head .best-card { border: none } .blog-head { background: #f9f9f9; top: 0 } .blog-head .best-card h1 { width: 100%; margin-bottom: 1rem; margin-top: 2rem; letter-spacing: -.5px } .blog-head .best-card p { font-size: 15px; width: 80%; margin: auto; color: #171717 } .blog-head .best-card a { display: inline-block; padding: 11px 46px 11px 50px } .views-blogs { text-align: center } .b-view { display: inline-block; margin-top: 2rem } .b-view ul li { color: #a7a7a7 } .blog-body-content h2 { margin-top: 2rem; letter-spacing: 0 } .blog-body-content h3 { font-size: 16px; font-weight: 600; color: #000; margin-bottom: 2rem; text-transform: uppercase; letter-spacing: 0 } .blog-body-content .also-read h3 { text-transform: inherit } .blog-body-content #topic1 ul, .blog-key { background-color: #fff7f6; border-left: 1px solid red; padding: 20px; margin-bottom: 20px } .blog-body-content ul { padding-left: 20px } .blog-key-list li { list-style: disc !important; margin-bottom: 16px !important } .blog-key-list li::marker { color: #6d6d6d } .blog-key { margin-bottom: 2rem } .blog-body-content #topic1 blockquote, .blogs-ideas { background-color: #eff8ff; border-left: 1px solid #19507b; padding: 20px } .blog-body-content #topic1 { padding-right: 30px; padding-top: 4rem; display: block } .blog-body-content img { width: 100%; margin-bottom: 2rem } .blog-aside .kotak-e-term-plan h2 { font-size: 20px !important; margin: 0 !important } .blog-aside .kotak-e-term-plan .tooltip { float: right } .blog-aside .kotak-e-term-plan img { margin-bottom: 0 } .blog-aside .kotak-e-term-plan .bg-eterm { padding-top: 15px; padding-bottom: 15px } .blog-aside .feats-sec { padding-left: 25px !important } .blog-aside .feats-sec h3 { font-size: 18px !important; margin-bottom: 0 !important; text-transform: capitalize } .blog-aside .feats-sec li { margin-bottom: 10px } .blog-aside .blog-term-btn a { color: #000; text-decoration: none; border: 1px solid #000; width: 90%; border-radius: 30px; padding: 9px 0 } .blog-aside .feats-buy a { width: 90% !important } .blog-social-meida { position: absolute; top: 20px; left: 0 } .blog-social-meida .social__icons { display: block !important; background: #fff; border-top-right-radius: 20px; border-bottom-right-radius: 20px; box-shadow: 0 5px 7px rgba(0, 0, 0, .09) } .blog-social-meida { padding-left: 0 !important; padding-right: 0 !important } .blog-social-meida .social__icons a { margin: 0 !important; padding: 10px 25px 10px 18px !important } .blog-social-meida li a { padding-left: 20px !important; padding-right: 20px !important; border-bottom: 1px solid #e1e0e0 } .blog-social-meida li { margin-right: 0 !important } .art-slider { background: #f9f9f9; border: none } .nblock-articles.consumer h3 { border-bottom: none !important; font-size: 20px; padding-left: 0; padding-right: 0 } .blog-aside { margin-top: 3rem } .blog-body-content .browse-our h3 { text-transform: inherit !important; margin-left: 10px; font-weight: 500 } .blog-body-content .browse-our { padding-left: 14px } .kotak-eterm-plan-popup { display: none } .blog-head .b-view ul li { color: #a7a7a7; position: relative; font-size: 14px !important } .blog-head .mr-ten { width: 5px; height: 5px; background: #c6c3c3; position: absolute; top: 1rem; border-radius: 30px } .blog-bradcrumb { background: #f9f9f9 } .blog-bradcrumb ul li.activeLink a { color: #8d8d8d } .blog-bradcrumb .breadcrumb ul li:before { right: 10px } .blog-bradcrumb .breadcrumb ul li:after { content: none } .blog-bradcrumb .breadcrumb ul li { padding-right: 20px } .b-letter { font-size: 22px } .blog-body-content .feats-sec .fa-size { padding: 5px 4px; font-size: 10px; width: 20px; height: 20px } .blog-body-content .feats-sec ul { padding-left: 0px; padding-bottom: 20px } .blog-body-content .feats-want a { font-size: 16px; margin-bottom: 20px !important } .blog-body-content .p-ref { padding-bottom: 10px } .blog-body-content .p-tc { padding-bottom: 10px; padding-right: 20px } .browse-img { width: 48px; height: 48px } .bul-img { width: auto !important; margin-bottom: -8px !important; margin-right: 10px } .invest-cal { font-size: 18px; text-align: center; padding-top: 3rem } .blog-body-content { background: #fff } .blog-body-content { top: 0 } .blog-body-content .browse-our { display: none } .blog-body-content .also-read { margin-top: 2rem } .blog-body-content .bg-eterm { padding-top: 0; padding-bottom: 0 } .blog-body-content .bg-eterm .broch-btn { position: relative; top: 10px } .blog-body-content .kotak-e-term-plan .feature-group h3 { margin-bottom: 0 } .plan-cards ul.landingUL li { height: 100% !important; background: #fff; box-shadow: 0 1px 30px -2px #c1c1c1 } .plan-cards ul.landingUL li .boxInfo { box-shadow: none !important } .plan-cards .nw-st { width: auto !important; margin-top: 215px } @media (max-width:767px) { .hide-mobile { display: none !important } .buy-online-change a.link { width: 70% !important } .mx-240 { max-width: 100% } .term-bene { padding-bottom: 50px !important } .bene { padding-bottom: 0 } .mx-259 { max-width: 100%; margin-right: 0 } .ulip-btn-mob { padding: 13px 0 } .mx-mob-174 { max-width: 174px !important } .cat-knw { margin-bottom: 20px } .mt-mob-23 { margin-top: 23px } .cat-features h3 { border-bottom: 0 } .why-buy button { display: none } .moretext-cat { display: contents } .cat-why-buy { padding: 15px 0 20px 0 } .bg-mob-f6 { background-color: #f6f6f6 } .cat-e-invest { padding: 29px 0 41px 0 !important } .mt-mob-0 { margin-top: 0 } .diff-type-ulip { padding-top: 32px } .diff-type-ulip button { text-align: initial; width: 100%; border-left: 1px solid #b9b9b9; padding: 15px 24px 15px 24px; white-space: initial } .diff-type-ulip .tabcontent { margin-top: 0 } .diff-type-ulip li:before { left: 0 } .diff-type-ulip li { padding-left: 20px } .pre-spac { padding: 0 } .on-mob-50 { width: 50% } .rem-mob-myauto { margin-top: initial; margin-bottom: initial } .ulip-cat-mt { margin-top: -17px !important } .fw-600 { font-weight: 600 } .display-unset { display: unset !important } .bannerr h1 { font-size: 18px !important; font-weight: 500 !important; letter-spacing: .48px !important } .why-buy p { display: block !important } .related-blogs-gsp .likeWrap ul.reportUL { margin: 0 0 30px 0 !important } } @media only screen and (min-width:768px) and (max-width:1024px) { .ulip-cat-mt { margin-top: 83px !important } } @media (min-width:561px) and (max-width:767px) { .ml-mob-initial { margin-left: auto !important } } @media only screen and (max-width:767px) { .w-footer-20 { flex: 0 0 50%; max-width: 50% } .w-footer-30 { flex: 0 0 50%; max-width: 50% } .popular-search-anc li { text-align: center; width: 50% !important } .term-plan-mobile { width: 100%; margin-top: 30px } } @media only screen and (min-width:768px) and (max-width:1024px) { .mtb-0 { margin-top: 0; margin-bottom: 0; margin-left: 12px } .plan-list li a { padding-bottom: 10px; display: block } .plan-list h6 { padding-bottom: 10px; display: block } } @media (max-width:767px) { .mob-coll-md-3 { flex: 0 0 100% !important; max-width: 100% !important } .d-block-mob { display: block } .knw_vault h1 { margin-bottom: 10px !important } .pl-22 { padding-left: 0 !important } .pr-22 { padding-right: 0 !important } .buy-online-change ul.plansUL li .contDesc { width: 70% !important } .buy-txt-desk { font-size: 2.4em !important } ul.plansUL li .linkWrap { display: block !important; position: static !important } } @media (min-width:767px) { .nw-st-new a.redBtn { bottom: -10px } } @media (min-width:1024px) { .nw-st-new a.redBtn { bottom: 0; width: 211px !important; right: 43px; line-height: 50px; text-align: center; white-space: nowrap } a.link-ins { width: 211px !important } } @media (max-width:767px) { .buy-slick-card { max-width: 100% !important; border-bottom: 1px dashed #636363 !important; border-right: 0 !important; padding: 20px 0 40px 0 !important; margin-right: 0 !important } .buy-life-slick h2 { color: #000; font-size: 20px } .buy-slick-card .d-flex { display: block !important } .buy-online-links a { display: block; color: #ed3438; width: 100%; text-align: center !important } .buy-life-slick p { max-width: 100%; min-height: initial; max-height: initial } .buy-slick-card img { margin-bottom: 6px } .moreless-button-buy { font-size: 15px !important } .moretext-buy { display: none } .best-card { margin-right: 0 } .best-invest #topic1 p { margin-right: 0 } .best-invest #topic1 li { padding-right: 0 } .nw-st-new a.redBtn { min-width: 220px } .blog-head .best-card h1 { font-size: 36px } .nblock-articles .slick-list { width: 85% } .nblock-articles .slick-slider { width: 84%; left: 60px } } @media (min-width:768px) and (max-width:1439px) { .buy-slick-card { margin-right: 60px !important } } @media (min-width:768px) { .best-invest .col-md-7 { flex: 0 0 70.333333%; max-width: 70.333333% } .best-invest .col-md-5 { flex: 0 0 29.666667%; max-width: 29.666667% } } @media (min-width:768px) and (max-width:1366px) { .pr-blog { padding-right: 20px !important } } @media (max-width:767px) { #topic1 table { display: block; overflow-x: auto; white-space: nowrap } .best-invest h1 { color: #000; font-size: 20px; margin-top: 22px } .p-mob-15 { padding: 0 15px } .best-card a { padding: 13px 2px 13px 2px; border-radius: 25px; width: 100%; display: inline-block; background-color: #da251c; color: #fff; font-size: 13px; font-weight: 400 } .blogs-ul li { color: #000; font-size: 11px; font-weight: 400; margin: 0 25px 0 0 } .p-20 { padding: 12px 10px 12px 10px } .mr-ten { margin-left: 20px } .kotak-e-term-plan h2 { color: #000 !important; font-size: 21px !important } .bg-eterm { background-color: #e9e9e9; padding: 23px 25px 23px 25px } .feats-sec h3 { color: #000 !important; font-size: 18px !important } .also-read a { font-size: 15px } .also-read { padding-bottom: 40px } .best-invest .breadcrumb { border-top: 0; display: block } .best-invest { margin-top: 0 !important } .share-icons-mobile { display: none !important; position: absolute; bottom: 29px; right: -8px; background-color: #f8e7e7; border-radius: 6px; padding: 15px 5px 9px 8px } .f_b { color: #4460a0; transition: .5s } .twit { color: #5aa8df; transition: .5s } .linkedin { color: #0077b5; transition: .5s } .whatsap { color: #25d366; transition: .5s } .share-block { display: block !important } .feat-spac .coll-30 { padding: 0 0 !important } .share-ul li { margin-bottom: 6px } .blog-head, .blog-head .best-card h1 { margin-top: 0 } .blog-body-content #topic1 { padding-top: 0; padding-right: 0 } .blog-body-content #topic1 li { margin-right: 0 !important } } @media (max-width:340px) { .tv-pad-footer { right: 33% !important } } @media (max-width:1300px) { .banner .vidDiv { background-size: contain; background-repeat: no-repeat } } @media (max-width:1439px) { .banner .vidDiv { background-size: contain !important; background-repeat: no-repeat } } @media (max-width:767px) { .csr-sec h1 { font-size: 20px; margin: 0 0 10px 0 } .csr-sec p { margin-left: 0 !important; font-size: 13px; white-space: break-spaces } .csr-sec { padding: 0 } .csr-sec th { font-size: 10px !important; padding: 4px } .csr-sec td { font-size: 10px; padding: 4px !important } .comp { padding: 25px 0 18px 0; margin-top: 0 } .proj-appr { padding: 0 } .find-atm { padding: 30px 0 40px 0 } .find-atm a { font-size: 9px; line-height: 3px } .kotak-bank .select2-container { width: 100px !important } .kotak-bank .select2-selection__placeholder { color: #000 !important; font-size: 10px !important; font-weight: 700 !important } .kotak-bank-sec li { width: 26% } .kotak-bank a { font-size: 10px } .kotak-bank ul { flex-wrap: wrap } .kotak-bank-sec { padding: 39px 26px } .logo-img img { height: 40px; width: 40px } .img-mr { margin-bottom: 0 } .impact { padding: 50px 0 0 0 } .kotak-bank { margin-bottom: 50px } .proj-appr .accordion-div .accordion:after { width: 10px; height: 2px; right: 10px } .proj-appr .accordion-div .accordion:before { width: 10px; height: 2px } .w-10 { width: 10% } .csr-policy { padding: 25px 0 40px 0; margin-top: 0 } .csr-anc { color: #ef2023 !important; font-size: 12px; word-break: break-word } } @media (max-width:767px) { .br-0 { border-right: 1px solid #000 !important } .bor-blk { width: 100%; margin-bottom: 20px } .ins-policy { margin-bottom: 0 !important; margin-top: 0 !important } .ins-policy h3 { font-size: 15px !important; letter-spacing: initial; margin-bottom: 10px !important; margin-top: 20px !important } .ins-policy h2 { font-size: 17px !important } .ins-policy { padding-left: 15px; padding-right: 15px } .doc_man h1 { font-size: 17px } .chang_mang table, .doc_man table { margin: 30px 0 30px 0 !important } .chang_mang td, .doc_man td { font-size: 12px } .chang_mang th, .doc_man th { font-size: 12px } .pt-50 { padding-top: 0 } .chang_mang h1 { font-size: 17px } .tableofcontents h1 { font-size: 17px } .tableofcontents li { font-size: 15px } .crssub li { padding-left: 20px } .secheading h1 { margin-bottom: 15px !important; font-size: 17px } .seclis li { font-size: 13px; margin-bottom: 20px } .secheading p { font-size: 13px; margin-bottom: 20px } .focus-lis { font-size: 13px; font-weight: 700; margin-bottom: 10px !important } } @media (max-width:767px) { .dd-btn-flex { display: block } .dd-btn-flex a.redBtn { font-size: 10px; margin-bottom: 20px; text-align: center; margin-left: auto !important; margin-right: auto !important } .ksap-btn { margin-right: 0 !important } .buy-life-slick p { max-width: 100%; min-height: initial !important; max-height: initial !important } .savebtns a.redBtn { margin-bottom: 20px !important } } @media only screen and (max-width:1400px) { .btnsticky { max-width: 1000px !important } .btnsticky .slick-track { align-items: center } .btnsticky .slick-slide a { word-break: break-all; white-space: nowrap } } @media (max-width:767px) { .buy-imgs, .buy-imgs1, .buy-imgs2, .buy-imgs3, .buy-imgs4, .buy-imgs5 { position: static } .buy-slick-card { max-width: 100% !important; margin-right: 0; border-bottom: 0 !important; padding-bottom: 20px !important } .buy-online-links a { font-size: 15px } .closePopup:after, .closePopup:before { width: 10px; height: 1px } .closePopup span:after { border: 1px solid #da251c; height: 25px; width: 25px; left: 1px; top: 5px } .now-txt { padding: 12px 0 20px 0; color: #4c4c4c; font-size: 16px; border-bottom: 0 } .buy-life-new h2 { font-weight: 700; font-size: 25px; color: #ed3438 !important; margin-top: 25px !important } .buy-life-slick { padding: 5px 0 15px 0 !important } .lcthree { max-height: 100% !important; min-height: 100% !important; -webkit-line-clamp: 3 } } @media (max-width:1430px) { .buy-slick-card { max-width: 348px !important; margin-right: 50px; } .lcthree { font-size: 14px !important; min-height: 40px !important; max-height: 58px !important } .p-txt { font-size: 16px !important } .buy-imgs, .buy-imgs1, .buy-imgs2, .buy-imgs3, .buy-imgs4, .buy-imgs5 { height: 60px; width: 60px; background-size: cover } } @media (min-width:768px) { .gspfeatnew .coll-30 { flex: 0 0 33%; max-width: 33% } .bestsavgsp .coll-md-3 { flex: 0 0 35%; max-width: 35% } .bestsavgsp .coll-md-9 { flex: 0 0 65%; max-width: 65% } .insurcol .coll-md-4 { flex: 0 0 33.33%; max-width: 33.33% } ul.fixedUL li { height: 110px !important } ul.fixedUL li a { border-bottom: 1px solid #fff } } @media screen and (max-width:767px) { .col-reverse-mob { display: flex !important; flex-wrap: wrap-reverse !important } .w-mob-100 { width: 100% !important } .fs-mob-20 { font-size: 20px !important } .gsp-knw { font-size: 14px !important; font-weight: 700 !important } .mr-mob-0 { margin-right: 0 !important } .gsp-design h2 { font-size: 22px !important } .mt-mob-28 { margin-top: 28px !important } .gsp-buy p { margin: 15px 0 15px 0 } .gspwhat { margin: 15px 0 10px 0 } .mb-mob-15 { margin-bottom: 15px !important } .gsp-design .midWrapper { padding: 0 24px 0 24px } .gspbene .bene-para h3 { text-align: center !important } .gspbene .bene-para img { text-align: center !important; margin-bottom: 10px !important } .gspbene .bene-para .coll-md-1 { text-align: center; width: 100% } .txt-mob-center { text-align: center !important; width: 100% } .parttxt { text-align: center !important; margin-bottom: 30px !important } .gspfeatnew { padding: 39px 0 39px 0 } .mb-mob-22 { margin-bottom: 22px !important } .savingsfeat h3 { text-align: center } .savingsfeat img { max-width: 61px; margin-left: auto; margin-right: auto } .savingsfeat { margin-right: 0; margin-bottom: 31px } .accordion-btns-gsp button { border-radius: 0 !important; border: 0 !important; border-bottom: 1px solid #dbdbdb !important } .accordion-btns-gsp h3 { max-width: 282px } .br-ins:after { height: 0 } .br-ins { margin-bottom: 10px } .gspaccbor h5 { color: #404040; font-size: 16px; font-weight: 400; border-bottom: 1px solid #dbdbdb; padding: 22px; width: 100% } .gspaccbor .acc-div-mob .accordion:after, .gspaccbor .acc-div-mob .accordion:before { background-color: #000 !important; width: 10px; height: 1px } .gspaccbor .acc-div-mob .accordion:before { -webkit-transform: rotate(-130deg); right: 5px; right: 28px } .gspaccbor .acc-div-mob .accordion:after { -webkit-transform: rotate(-54deg); right: 22px } .gspaccbor .accordion.active:before { -webkit-transform: rotate(125deg); background-color: #ed3237 !important } .gspaccbor .accordion.active:after { -webkit-transform: rotate(50deg); background-color: #ed3237 !important } .gspaccbor .accordion.active h5 { color: #ed3237 !important; font-weight: 700 !important } .accelcardacc:before { height: 0; width: 0 } .accelcardacc { padding: 19px 10px 35px 25px; max-width: 722px; margin-left: auto; height: 100%; margin-top: 0; border-top: 0; margin-bottom: 0; border-radius: 0 } .accel { font-size: 20px !important } .accelcard li { max-width: 100% } .gspaccbor .accordion-btns ul { margin-left: 0 !important } .accelcard .gspview { border: 1px solid #; padding: 13px 5px; border-radius: 35px; margin-top: 0; display: block; max-width: 100% } .gspaccbor h5 { margin-top: -10px; border-left: 1px solid #dbdbdb; border-right: 1px solid #dbdbdb } .bor-top-rad { border-top: 1px solid #dbdbdb !important; border-radius: 10px 10px 0 0 !important } .bor-bot-rad { border-radius: 0 0 10px 10px !important } .bestsavgsp { display: none !important } .gspmobile-feat { padding: 0 0 } .active .bor-bot-rad { border-radius: 0 !important } .accordion-btns-gsp .active h3, .accordion-btns-gsp .active span { color: #ed3237 !important } .accordion-btns-gsp .accordion.active:after, .accordion-btns-gsp .accordion.active:before { background-color: #ed3237 !important } .accel.hide-desktop { display: none } .hide-desktop .btnanc { color: #404040; font-size: 17px !important; font-weight: 400; background-color: #fff; padding: 7px 9px 7px 9px; text-align: initial; border: 0 !important } .hide-desktop .btnanc:hover { color: #404040 !important; background-color: #fff !important } .gsp-design section { z-index: initial !important } .gsp-design a { z-index: 111111 !important } .gspmobile-feat .ml-auto { width: 40%; text-align: right } .gspmobile-feat .mg-30 { margin: 0 0 20px 0 } .assur430 { height: auto } .h-156 { height: auto } } @media screen and (max-width:767px) { .varfac .factorsslick button.slick-next { background-image: url(../images/btnslicknext.svg) !important; background-size: contain; left: unset; z-index: 1000; right: 6px; top: unset; bottom: -1px; background-color: transparent; border: 0; font-size: 0; height: 34px; width: 34px; background-repeat: no-repeat } .varfac .factorsslick button.slick-prev { background-image: url(../images/btnslickprev.svg) !important; background-size: contain; left: unset; z-index: 1000; right: 49px; top: unset; bottom: -3px; background-color: transparent; border: 0; font-size: 0; height: 34px; width: 34px; background-repeat: no-repeat; position: absolute; padding: 0; margin: 0 } .onlinetxt h1 { font-size: 23px !important; font-weight: 800 !important; letter-spacing: .64px !important; line-height: 25px !important } .ulipimg { max-width: 270px; margin-left: auto; margin-right: auto } .ulipmobbanner { max-width: 292px; margin-left: auto; margin-right: auto; display: block; margin-bottom: 40px } .typescard p { max-height: initial; min-height: initial } .life-need { height: auto } .tv-pad-footer { display: none !important } .fixedUL { display: flex !important } ul.fixedUL li { height: 50px !important; border-right: 1px solid #fff; border-bottom: none !important } ul.fixedUL li:last-child { border-right: none } } @media only screen and (max-width:740px) { ul.navRhs > li.mobileMenu a { width: 25px; height: 20px } ul.navRhs > li > a.searchBtn:after { width: 23px; height: 23px; background-size: cover !important } .searchicon { padding: 0 0 0 5px !important } ul.navRhs > li > a.whatsBtn-sm { padding-left: 30px } ul.navRhs > li > a.whatsBtn-sm:after { width: 23px; height: 22px; top: 6px } .oct-btn { padding: 0 } .feats-sec { padding: 27px 26px 23px 32px } .feats-sec { padding: 30px 20px 3px 40px !important } .mar-side-left { margin-left: -10px; margin-top: -20px } .side { flex-direction: column !important } .feats-want a { width: 70%; padding: 1px 0 } .feats-buy a { width: 100%; padding: 10px 0 } .list-1 { flex-direction: column-reverse } .mob-heiht { margin-top: 10px; margin-bottom: 20px } .feats-sec li { margin-bottom: -8px } ol { margin: -.5rem 0 .5rem 0 !important } .sep-btn { bottom: 10%; position: relative; left: 26% } .gsp-design .fs-ach-20 { font-size: 16px !important } .sec41 { margin: 23px 0 32px 1px } .flex-choose-left { text-align: left !important } } @media (device-width:768px) { .feats-sec { padding: 30px 29px 26px 24px !important } .feats-want a { width: 52% } .spec-wid { width: 196px !important } .feats-buy a { width: 70%; padding: 10px 0 } } @media (min-width:1440px) { .reviewslick { min-height: 420px } .custom-review { min-height: 360px } .slide-line:before { left: 88px } .ulip-sections .slide-line:before { left: 92px } .ulip-sections .what-ulips .slick-list, .ulip-sections .what-ulips .slick-slider { max-width: 1140px !important } } @media (min-width:1366px) { .ulip-sections .slide-line:before { left: 36% } .ulip-sections .what-ulips .slick-list, .ulip-sections .what-ulips .slick-slider { max-width: 990px !important; left: -3%; bottom: -10px } } @media (max-width:1366px) { .kota-termplan-two .neweterm h2, .mobile-invest .neweterm h2 { font-size: 22px !important } .ulip-sections .slide-line:after { left: 130px } .ulip-sections .slide-line:before { left: 34% } #ensure-day .mll-mob-initial { margin: auto } } @media (min-width:768px) { .pr-1 { padding-right: 1rem } .best-term-plan { margin-bottom: 40px } .kota-termplan-two .feats-sec { padding-left: 35px !important } .stepnumber-term .mt-mob-24 { padding-left: 20px } .term-bg-insurance .bene-para { margin-bottom: 40px } .coll-33 { flex: 0 0 33%; max-width: 33% } .mb-50 { margin-bottom: 50px } .fnt-incr p { font-size: 18px; padding-bottom: 18px } .multtask .side { position: relative; top: -20px } .fnt-incr p { font-size: 18px; padding-bottom: 18px } .fnt-20, .ulip-sections .ulip-benefits .fnt-20 { font-size: 20px !important } .ulip-pol-plan .type-card { margin-right: 15px; border-radius: 10px; height: 100% } .ulip-pol-plan:nth-child(2n) .type-card { margin-right: 0; margin-left: 15px } .ulip-pol-plan .type-card { margin-bottom: 30px } .ulip-pol-plan .type-card { padding: 28px 25px 0 24px } .ktm-btm a:first-child { margin-right: 15px } .ulip-sections .mar-side-left { margin-left: 30px !important; margin-top: -70px !important } .ulip-fund .bene-para { margin-bottom: 30px !important } .ulip-steps.stepnumber-term .mt-mob-24 { padding-left: 0; margin-left: -2rem } .ulip-changes .typescard { height: 100%; padding: 20px 10px 0 24px !important; margin-bottom: 0 !important } .ulip-changes { width: 24% } .ulip-blogs .reportBox img { height: 174px; width: 100%; object-fit: cover } .ulip-blogs ul.reportUL_new > li p { max-height: inherit; min-height: inherit } .ulip-blogs .term-bene-slick .detail p { font-size: 15px !important } .ulip-sections .cat-e-invest .kot-btn { text-transform: capitalize !important; width: 88% !important } .ulip-sections .ktm-btm { width: 80% } .ulip-sections .ulipterms p { margin-bottom: 30px !important } .mright-1 { margin-right: 5rem } .ulip-sections .what-ulips .btnsticky { height: 50px } .ulip-sections .what-ulips .btn-slick button.slick-next, .ulip-sections .what-ulips .btn-slick button.slick-prev { bottom: 10px } } @media (max-width:991px) { .ulip-factor .pagingInfo-facslick { bottom: 0; right: 50px } } @media (max-width:768px) { .term-design .midWrapper { padding: 0 16px 0 16px } .online-term-plan-bg .w-term-45, .online-term-plan-bg .w-term-55 { width: 100% !important } .online-term-plan-bg .term-design .term-design-banner p { width: 100% } .cal-prem { margin-bottom: 20px } .cal-prem .banner-knw { padding: 9px 0 7px 0 } .online-term-plan-bg .term-mob-spac { margin-bottom: 0 !important; padding-bottom: 10px !important } .online-term-plan-bg .term-tags { margin-bottom: 10px !important } .online-term-plan-bg .wht-should { margin-top: 30px !important } .online-term-plan-bg .benefits { padding-bottom: 0 !important } .custom-review { padding: 0 } .custom-review p { padding-left: 40px } .slick-current .custom-review { border: none } .custom-review, .reviewslick { min-height: inherit !important } .custom-rating { position: static; margin-bottom: 40px } .online-term-plan-bg #various_factors .midWrapper { margin-top: 10px } .online-term-plan-bg #various_factors .term-tags { margin-top: 0 !important } .factorsslick .slide-line:before { left: 42% } .factorsslick .slide-line:after { border: none } .termbenif .savingsfeat h3 { text-align: left } .termbenif .term-tags { margin-top: 0 !important; margin-bottom: 30px !important } .termbenif .savingsfeat p { max-height: inherit !important; min-height: inherit !important } .coll-66 { flex: 0 0 100%; max-width: 100% } .termplans-feture .bor-fet-mob { border: none; padding: 0 } .termplans-feture { padding-top: 30px; padding-bottom: 0 } .online-term-plan-bg .midWrapper { padding-left: 16px !important; padding-right: 16px !important } .d-none { display: none !important } .d-block { display: block !important } .mobile-pera { padding-top: 20px } .mobile-why.why-buy p { margin: 10px 0 30px 0 } .e-invest.mobile-invest { padding-top: 0 !important } .kota-termplan .feats-sec, .onlinekotak-term .feats-sec { padding-left: 20px !important } .kota-termplan .feats-buy a { width: 100% !important; margin-bottom: 20px; margin-top: 20px } .kotak-e-term-plan.kota-termplan-two { margin: 0 0 30px } .onlinekotak-term .feats-buy a { width: 100% !important } .term_related.term-bg-insurance { margin-top: 30px !important } .term-bg-insurance .bene-para .coll-md-1 { margin: auto } .term-bg-insurance h3 { text-align: center !important } .fact-bg:before { content: none } .term-insur-family .typescard { margin-bottom: 0; padding-top: 0 !important } .insurance-prem .savingsfeat h3 { text-align: left } .insurance-prem .savingsfeat p { padding-bottom: 0 } .term-plain-rider .term-tags { padding-top: 30px !important } .term-plain-rider .term-bene-slicks .coll-md-11 { width: 80% } .mobile-whyinvest .mt-mob-23 { margin-top: 0 } .mobile-whyinvest, .term-keyfeat { padding-top: 0 } .document-term-family { padding-left: 0 } .term-secur-family { padding-bottom: 0 !important } .term-keyfeat .gsp-buy p { margin-bottom: 0; margin-top: 5px } .mb-50 { margin-bottom: 30px } .term-blog .reportBox img { margin-bottom: 15px } .online-term-plan-bg .term-bene-slick a.links { border: 1px solid #ef3e43 !important; padding: 3px 10px !important; text-align: center !important; border-radius: 25px !important; height: 31px !important; margin-top: 8px !important } .online-term-plan-bg .term-bene-slick a.links:after, .online-term-plan-bg .term-bene-slick a.links:before { content: none } .kota-termplan .broch-btn { width: 100px; height: 44px } .kotak-e-term-plan.kota-termplan-two img { width: 40px } .kotak-e-term-plan.kota-termplan-two .sep-btn { top: 3px; left: 12px } .kota-termplan-two .feats-buy a { margin-bottom: 20px } .inf-dif { margin-top: 20px !important; margin-bottom: 20px; display: inline-block } .online-term-plan-bg .e-invest { padding-bottom: 0 } .online-term-plan-bg .type-term-plan { margin-bottom: 28px } .online-term-plan-bg .lum_sum { margin-bottom: 20px; height: auto; margin-right: 0 !important; min-height: auto } .online-term-plan-bg .lum_sum1 { padding-bottom: 20px } .online-term-plan-bg .whyinvest { padding-bottom: 25px } .document-term-family h2 { margin-top: 0 !important } .online-term-plan-bg .how-much { padding-top: 45px } .term-blog li { min-height: auto !important; height: auto !important } .ulip-sections .term-design .term-design-banner p { font-size: 20px !important; line-height: 25px !important } .onlinetxt .ulip-banner-heading h1 { font-size: 24px !important; margin-bottom: 2rem } .ulip-sections .term-design .term-design-banner p { width: 100% } .ulip-cat-mt .banner-buy { padding: 14px 0 14px 0 } .ulip-sections .what-ulips { padding-top: 0 } .cat-what-ulip .mt-mob-23 { margin-top: 0 } .ulip-sections .factorsslick .slide-line:before { left: 44% } .ulip-factor { padding-bottom: 4rem !important } .ulip-benefits .uben { padding-left: 0 } .ulip-benefits .bene-para ul { margin-left: 14px } .ulip-sections .savingsfeat { text-align: center } .ulip-sections .savingsfeat p { text-align: left } .ulip-fund .bene-slick p { max-width: 100% !important } .ulip-docq { padding-bottom: 3rem !important; padding-top: 3rem !important } .ulip-various-fact .typescard { padding-top: 15px !important; padding-left: 0 !important; padding-right: 0 !important; height: auto !important; margin-bottom: 0; margin-top: 0 } .ulip-blogs .some-text { font-size: 14px } .ulip-blogs a.links { padding-top: 9px } .ulip-factor .slide-line:before { left: 36% } .ulip-blogs .slick-slide img { width: 100%; margin-bottom: 15px } .ulip-blogs .term-bene-slick button.slick-next, .ulip-blogs .term-bene-slick button.slick-prev { bottom: -48px } .ulip-blogs .load-more { margin-top: 8rem !important } .ulip-blogs #ptext4 { line-height: 20px !important } .ulip-blogs .reportBox { padding: 10px; border: 1px solid #dbdbdb; border-radius: 10px } .whyinvest .banner-buy { font-size: 16px; font-weight: 400 } footer .mobilechat { bottom: 58px !important; z-index: 999 } } @media (max-width:640px) { .d-flex.ktm-btm { display: inherit !important } .ulip-sections .kot-btn { margin-bottom: 1.5rem } } @media (max-width:480px) {article.breadcrumb{display:block} #scrollTopBtn{
	left: 15px !important;} .online-term-plan-bg .term-design .midWrapper { padding: 0 16px 0 16px } .online-term-plan-bg .term-spacg { padding: 0 } .term-insur { margin: auto !important } .terminsur.bene-slick h3 { text-align: center } .online-term-plan-bg .benefits { margin-bottom: 20px } .factorsslick .slide-line:before { left: 38% } .factorsslick .typescard { padding-left: 0 !important; padding-right: 0 !important } .table-different.difference-bwn td, .table-different.difference-bwn th { font-size: 12px; padding: 17px 10px !important } .mobile-d-flex { display: inherit !important } .mobile-d-flex .modalbtn { margin: 10px auto 0; width: auto } .mobile-d-flex .ml-auto { text-align: center } .type-term-plan .type-card { padding-left: 20px } .keyfeat table tr td, .keyfeat table tr th { font-size: 14px } .cal-prem .in-buy { width: 100% } .termbenif .savingsfeat { text-align: center } .termbenif .savingsfeat p { text-align: left } .terminsur .bene-para img { margin-bottom: 10px; margin-top: 20px } .online-term-plan-bg .reportBox .justify-content-end { margin-bottom: 30px } .online-term-plan-bg .reportBox .some-text { font-size: 16px } .ulip-sections .factorsslick .slide-line:before { left: 49%; display: inline-block; top: -28%; transform: translate(-53%, -3%) } .ulip-sections .varfac .factorsslick button.slick-prev { bottom: -1px } body .ulip-sections .ulip-insure h2.parttxt { font-size: 16px !important } .ulip-various-fact .typescard p { padding-left: 15px; padding-right: 15px; text-align: left } .ulip-sections .ensure { padding: 25px 0 30px 0 } .ulip-cutom-review { padding-bottom: 80px !important } .ulip-cutom-review button.slick-next, .ulip-cutom-review button.slick-prev { bottom: -48px } .ulip-cutom-review .pagingInfo-review { bottom: -50px; right: 140px } .ulip-blogs .slick-initialized .slick-slide { height: auto !important } .ulip-blogs .l-more { margin-top: 0 } .ulip-blogs button.slick-next, .ulip-blogs button.slick-prev { bottom: -20px } .ulip-various-fact { padding-bottom: 7rem } .ulip-various-fact .factorsslick button.slick-next, .ulip-various-fact .factorsslick button.slick-prev { bottom: -51px !important } .ulip-various-fact .factorsslick { margin-top: 2rem } .ulip-sections .ulip-benefits { margin-bottom: 30px !important; padding-top: 0 !important } .ulip-sections .gspfeatnew { padding: 20px 0 20px 0 } .ulip-sections .whyinvest { padding-bottom: 30px } .term-types { margin-top: 30px } .ulip-sections .ulip-pol-plan { margin-bottom: 10px } .ulip-sections .ulip-nav { margin-top: 30px } .ulip-sections .term-blog .reportBox img { width: 100% } .ulip-sections ul.reportUL li { padding-left: 0 } .ulip-sections .term-design .term-design-banner p { font-size: 18px !important } .ulip-factor .slick-list:before { content: none !important } .ulip-factor .pagingInfo-facslick { bottom: -32px !important; right: 50px } .equ-space { display: block; padding-left: 23px } .ulip-insure .txt-mob-center { margin-right: 0 !important; margin-bottom: 15px !important } .ulip-merge .plan-works li { padding-right: 0 } .ulip-sections .neweterm h3 { font-size: 22px !important } .ulip-sections .mar-side-left .mob-heiht { margin-top: 30px; margin-bottom: 20px; width: 100% !important } .ulip-sections .feats-sec.kotat-online { padding-left: 14px !important; padding-right: 16px !important } .ulip-sections .mar-side-left { margin-left: 0 !important } .ulip-sections .accelcardacc ul li { list-style-type: none } .ulip-sections .accelcardacc { padding-left: 0 !important; padding-right: 0 !important; padding-top: 5px } .ulip-sections .accelcardacc ul li { padding-left: 20px !important; min-height: auto; max-height: initial; padding-bottom: 10px; vertical-align: top } .ulip-sections .gspaccbor .accordion-btns ul { margin-left: 15px !important; padding-top: 10px } .ulip-sections .kotaksavcard li:before { top: 9px } .ulip-sections .accelcard .gspview { margin-left: 15px; margin-right: 15px; margin-bottom: 0 } .ulip-various-fact .pagingInfo-facslick { bottom: -87px; right: 47px } .ulip-cutom-review .slick-current .custom-review p { padding-right: 0 !important } .ulip-sections .accordion-btns-gsp .accordion:after, .ulip-sections .accordion-btns-gsp .accordion:before { right: -7px !important } .ulip-sections .accordion-btns-gsp h3 { max-width: 250px } .ulip-blogs .term-bene-slick button.slick-next, .ulip-blogs .term-bene-slick button.slick-prev { bottom: -38px } .ulip-blogs .load-more { margin-top: 0 !important } .ulip-sections .sep-btn img { width: 48px !important; height: 48px !important } .ulip-sections .sep-btn { left: 23%; width: 110px; height: 48px } .ulip-sections .gspmobile-feat .ml-auto { width: 46% } .ulip-sections .ktm-btm .kot-btn { text-transform: capitalize !important } .load-more a { float: left } .ban-bld { display: block } .ulip-sections .mobile-feat .tab-detail li:last-child { margin-bottom: 0; padding-bottom: 0 } .ulip-insure .en-btn { font-size: 16px } #ci_calculator, #incomeTaxCalculator, #investment_calculator, #retirement_calculator { top: -5rem } .nblock-articles.consumer .slick-next { top: 13rem; background-size: 50px } .nblock-articles.consumer .slick-prev { right: 9rem !important; z-index: 9999; top: 13rem !important; left: auto !important; background-size: 50px } .nblock-articles .consumer-slick-card { margin: 20px 0 0 0 !important } .consumer-slick { min-height: 216px } .nblock-articles .consumer-slick-card .slick-card-after:after { content: none } .nblock-articles .consumer-slick-card h3 { padding-left: 0 !important } .blog-body-content .also-read a { font-size: 22px } .nblock-articles .art-slider { float: left } .kotak-eterm-plan-popup { text-align: center; position: relative } .kotak-eterm-plan-popup .popup-term-btn { border-radius: 12px; width: 80%; padding: 10px 0; background-color: #e3e3e3; color: #000; font-size: 17px; display: inline-block; font-weight: 600 } .modal-popups-btns { display: none; position: relative; background: #fff; width: 100%; z-index: 999999999999; left: 0; top: 0; height: auto !important } .modal-popups-btns:before { content: ''; background: url(../images/Polygon-arrow.png); width: 27px; height: 18px; position: absolute; top: -15px } .blog-social-meida { display: none !important } .kotak-eterm-plan-popup { display: block } .kotak-eterm-plan-popup .bg-eterm { background: #e9e9e9 !important } .kotak-eterm-plan-popup .blog-aside .feats-sec h3 { text-align: left !important } .kotak-eterm-plan-popup .feats-sec .fa-size { padding: 5px 4px 0 4px } .mobile-hide { display: none } .blog-head .mr-ten { margin-left: 10px } .blog-bradcrumb .breadcrumb ul { display: flex; white-space: nowrap } .blog-bradcrumb .breadcrumb ul .activeLink { text-overflow: ellipsis; overflow: hidden; width: 200px; white-space: nowrap } .blog-head .best-card h1 { font-size: 24px } .blog-head .best-card p { width: 100% } .kotak-eterm-plan-popup .blog-aside .blog-term-btn a { padding: 8px 0 10px } .best-invest { top: 0 !important } .blog-body-content .feats-sec { margin-bottom: 2px } .plan-cards .nw-st { margin-top: 0 !important } body .boxInfo .mid h3 { margin: 30px 10px !important } } @media screen and (max-width:768px) { .splash { display: block } .splash-content { width: 85%; font-size: 15px; margin: 0 auto; background-color: #fff; padding: 16px 18px; border-radius: 11px; margin-top: 30px } } @media screen and (min-width:768px) { .splash { display: block } .taxsave .vidDiv { width: 95% } } @media only screen and (max-width:375px) { .modal-sm { width: 84% } } @media only screen and (max-width:767px) { .searchAdvisorsWrapper .resultNotfound, .searchAdvisorsWrapper .searchAdvisorsResult { margin: 10px 0 40px 0 } } @media only screen and (max-width:640px) { ul.advisorsList { margin-top: 30px !important } .advisorsImg.verified-txt { bottom: 42% !important } } @media only screen and (max-width:425px) { .advisorsImg.verified-txt { bottom: 51% !important; left: 48px !important; top: unset !important } } @media only screen and (max-width:414px) { .advisorsImg.verified-txt { bottom: 51% !important; left: 48px !important; top: unset !important } } @media only screen and (max-width:375px) { .advisorsImg.verified-txt { bottom: 51% !important; left: 48px !important; top: unset !important } } .p-tom { background-image: linear-gradient(-71deg, #ffeee6 0, #fffcfc 100%); padding: 15px 10px 10px 4rem; margin: 10px 30px 10px 10px; border-radius: 10px; display: flex; padding-left: 4rem; margin-top: 3rem; display: flex; align-items: center; justify-content: center } .first-tom { background-image: linear-gradient(-70deg, #e6f3ff 0, #fbfbfb 100%) } .p-tom h3 { font-size: 16px; font-weight: 500; color: #000; padding-bottom: 1.3rem; position: relative; display: inline-block; z-index: 1 } .p-tom h3:before { position: absolute; content: ''; width: 140%; background: url(../images/h3-bg.png); height: 30px; left: -4rem; background-size: 100%; z-index: -1; background-repeat: no-repeat; top: -2px } .p-tom .part-gal p { font-size: 16px; font-weight: 500; width: 80%; line-height: 20px !important; color: #000 !important } .tom-btn { background: #ed3338; color: #fff; padding: 0 30px 6px; text-transform: uppercase !important; display: inline-block; border-radius: 20px; font-weight: 400; font-size: 16px; margin-top: 1.5rem; margin-bottom: 2rem } .part-gal .tom-btn:hover { color: #08315f !important; background: #fff; border: 1px solid #ed3338 !important } .part_gal { width: 300px; margin-right: 20px; text-align: center } .tom-btn:hover { color: #fff !important } .const-mar { text-align: center; padding-top: 2rem } .const-mar .in-buy { display: inline-block; max-width: inherit; padding: 10px 20px; text-transform: uppercase !important; width: auto; font-weight: 500 } .saving-cat-card .savingsfeat { border: 1px solid #cecece; height: 100% } .saving-cat-card .savingsfeat p { max-height: inherit; min-height: inherit } .saving-cat-card h2 { margin-bottom: 3rem !important } .saving-steps .steps-number { padding: 10px 17px 12px 17px } .saving-steps .mt-mob-24 p { padding-top: 30px } .saving-steps.how-buy .roww { margin-bottom: 20px } .save-step-btn { text-align: center; margin: 40px 0 40px } .save-step-btn a { width: auto !important; max-width: 100%; padding: 10px 20px; text-transform: uppercase !important } .saving-buys .type-card h3 { font-size: 17px !important; border-bottom: none !important; padding-bottom: 0 } .saving-buys .type-card p { max-height: inherit !important; min-height: inherit !important; line-height: 22px !important; color: #161616 } .saving-buys .type-card { min-height: 160px; border-radius: 10px; border: 1px solid #dbdbdb !important; margin-bottom: 26px; margin-right: 26px !important; padding-left: 26px !important; padding-top: 26px !important } .red-bg { background-color: #08315f; color: #fff; padding-bottom: 5rem } .red-bg .savered-bg h2 { color: #fff !important; letter-spacing: .48px; font-weight: 500 } .red-bg .savered-bg p { color: #fff !important; padding: 20px 0 40px; line-height: 22px !important } .sav-red-btn { background: #fff; color: #08315f; font-size: 15px; text-transform: uppercase; padding: 15px 40px; border-radius: 30px; font-weight: 700 } .sav-red-btn:hover { color: #ed1c24 } .best-prem h3 { font-size: 17px !important; font-weight: 700; color: #161616 } .saving-online .best-prem p { line-height: 22px !important; color: #161616 !important } .best-prem { margin-right: 4rem } .save-online-list { margin-top: 1rem; padding-left: 16px } .save-online-list li { font-size: 16px; list-style: disc; color: #000 } .saving-online .mt-3 { margin-top: 3rem } .saving-online .save-step-btn { margin-top: 0 } .pad-top-bottom { background: #f5f5f5; padding: 2rem 0 0; margin-bottom: 4rem } .what-save a.banner-buy { max-width: inherit; width: auto; font-weight: 500; padding: 14px 20px; text-transform: uppercase !important; margin-top: 2rem; margin-bottom: 2rem } .saving-banners-title { position: relative; top: 3rem } .saving-banners-title h1.banner-head { font-size: 20px !important; font-weight: 400 !important; font-style: normal; letter-spacing: 4.8px !important; text-transform: uppercase !important; border-bottom: 1px solid #b6a9a9; padding-bottom: 2rem; width: 230px } .term-design .saving-banners .mx-mob-174 { color: #036 !important; font-size: 24px !important; letter-spacing: .36px !important; padding-top: 6rem; padding-bottom: 20px; font-weight: 500 } .saving-banners .blet { font-size: 36px !important; font-weight: 500 !important; padding: 1rem 0 } .saving-banners .want-to-knw { padding: 9px 40px 8px 43px; color: #036 !important; border: 1px solid #036 !important; text-transform: uppercase !important } .saving-banners .in-buy { padding: 10px 0 10px 0; font-size: 14px; text-transform: uppercase !important } .saving-banners .mx-mob-174 { width: 80% !important } .gspnewslick.saving-banners .slick-active button { width: 10px; position: relative } .gspnewslick.saving-banners .slick-active #slick-slide-control00:before, .gspnewslick.saving-banners .slick-active #slick-slide-control01:before { content: ''; width: 18px; height: 18px; position: absolute; border-radius: 70px; left: -4px; top: -4px; border: 1px solid #ef3e43 } .benefits.consider-saving { margin-top: 3rem !important } .save-faq .gspnewlis h4 { font-size: 16px !important; text-align: left !important } .save-faq .tab-detail a { color: #404040 !important } .gspfeatnew .savingsfeat p { min-height: inherit !important; max-height: inherit !important; padding-bottom: 10px } .gspfeatnew .savingsfeat { height: 100% } .gspfeatnew .coll-30 { margin-bottom: 20px } .save-trem .parttxt { text-transform: initial !important; font-weight: 400 !important } .bestsavgsp .accordioncard h3 { font-size: 16px; letter-spacing: .36px } .gspnewterms .save-disc p { margin-bottom: 10px !important } .gspnewslick.saving-banners button { background-color: #a1a1a1 } .saving-cat-card { padding-bottom: 0 !important } .pad-top-bottom.what-ulips .btnsticky { box-shadow: 0 3px 15px rgb(0 0 0 / 25%) !important; max-width: 100% !important; left: 0 !important; bottom: 0 !important; transform: translate(0, 0) !important; position: fixed; padding-top: 0 !important; background: #fff !important; width: 100%; text-align: center; height: 60px; z-index: 1 !important } .gspnewslick .slick-active button { width: 44px; height: 10px; border-radius: 30px; background-color: #ef3e43 } .gspnewslick.saving-banners .slick-active #slick-slide-control40:before, .gspnewslick.saving-banners .slick-active #slick-slide-control41:before { content: ''; width: 18px; height: 18px; position: absolute; border-radius: 70px; left: -4px; top: -4px; border: 1px solid #ef3e43 } .gsp-blogs { padding-top: 2rem } .pad-top-bottom.what-ulips .slick-list, .pad-top-bottom.what-ulips .slick-slider { max-width: 990px !important; left: 0; bottom: -8px; margin: auto } .pad-top-bottom .btn-slick button.slick-prev { bottom: -2px } .pad-top-bottom .btn-slick button.slick-next { bottom: -2px } .pad-top-bottom .btnanc { white-space: nowrap; text-transform: capitalize; padding-left: 20px; padding-right: 20px } .pad-top-bottom .slick-initialized .slick-slide { width: auto !important } .time-saving { text-align: center } .time-saving a { display: inline-block } .cat-e-invest .accelcard .gspview { max-width: inherit !important; display: inline-block } .save-faq .panel p { padding-bottom: 20px } .pad-top-bottom .what-save a.banner-buy { padding: 10px 30px !important } #save-stes .banner-buy { font-weight: 400 !important } .text-center { text-align: center } .ulip-blogs #load-more-articles { margin: 2rem 0 4rem; display: inline-block !important; float: none } .ulip-blogs ul.reportUL_new li { height: 376px !important } .gsp-blogs ul.reportUL_new li p { max-height: 59px !important } .gsp-blogs #load-more-articles { padding: 0 42px !important } .gsp-blogs #load-more-articles { margin-bottom: 2rem; margin-top: 4rem } .gsp-blogs ul.reportUL_new li { width: 25% !important } .gsp-blogs ul.reportUL_new h3 { margin-bottom: 10px !important } .gsp-blogs ul.reportUL_new li { height: 360px !important } .gsp-blogs ul.reportUL_new h3, .ulip-blogs ul.reportUL_new h3 { max-height: 66px !important } .gsp-design .term-design-banner { padding-top: 0 !important } @media screen and (min-width:768px) { .bannerr.top-161 { top: 161px !important } .ulip-blogs #articles-div.new_article_cards li { width: 25% !important } .gsp-blogs { padding-top: 4rem } .gsp-blogs #load-more-articles { margin-bottom: 0 } .gsp-blogs ul.reportUL_new li { height: 360px !important } .gsp-blogs UL.reportUL { margin-top: 7rem !important } } @media (max-width:768px) { .banner-head { width: 100%; margin-top: 2rem } .term-design .saving-banners .mx-mob-174 { width: 100% !important; line-height: 30px !important } .saving-banners .blet { display: block; line-height: 40px !important } .saving-cat-card .savingsfeat { height: auto } .consider-saving { margin-bottom: 0 !important } .saving-cat-card { padding-bottom: 0 !important } .saving-off { margin-bottom: 3rem ; } .cat-e-invest .kotaksavcard.ml-14.assur430, .cat-e-invest .kotaksavcard.mr-14 { margin-left: 0 !important; margin-right: 0 !important } .saving-cat-card .savingsfeat h3 { text-align: left !important; margin-top: 1rem } } @media (max-width:480px) { .saving-banners .blet { font-size: 26px !important; line-height: 30px !important; padding: 1rem 0 } .term-design .saving-banners .mx-mob-174 { font-size: 18px !important; padding-bottom: 20px !important; max-width: 100% !important } .pad-top-bottom .banner-buy { font-size: 11px } .p-tom { margin-left: 0; margin-right: 0; position: relative; padding-left: 2rem; padding-right: 2rem } .p-tom .part-gal p, .width-m-100 { width: 100% } .part_gal { width: 100%; margin: auto } .p-tom h3:before { left: -2rem; width: 130%; top: -1px } .save-step-btn { margin-top: 100px } .sav-red-btn, .save-step-btn .banner-buy { font-size: 11px; padding: 15px 35px } .saving-buys .type-card { margin-right: 0 !important } .red-bg .savered-bg h2 { margin-bottom: 0 !important; line-height: 27px !important } .how-buy .roww { margin-bottom: 23px } .best-prem { margin-right: 0 } .saving-banners h1.banner-head { width: auto; margin-top: 2rem; display: inline-block; font-size: 18px !important } .part_gal img { position: absolute; right: 0; width: 140px; top: 60px } .p-tom h3 { width: 190px } .const-mar .in-buy { font-size: 11px } .gspfeatnew .coll-30 { margin-bottom: 0 } #kotak_savings_plan.cat-e-invest { padding-top: 0 !important } .stepsav-plan .slick-slide { background: #fff; padding: 16px; border-radius: 10px } .stepsav-plan .slick-slide .coll-md-1.text-center { margin: auto } .save-faq .accordion-btns-gsp h3 { max-width: 250px } .stepsav-plan .how-slick button.slick-next { background-image: url(../images/gspnext.svg) !important; background-size: auto; left: unset; z-index: 1000; right: 0; top: unset; bottom: -5rem; background-color: transparent; border: 0; font-size: 0; height: 34px; width: 34px; position: absolute; padding: 0; margin: 0 } .stepsav-plan .how-slick button.slick-prev { background-image: url(../images/gspprev.svg) !important; background-size: cover; left: unset; z-index: 1000; right: 45px; top: unset; bottom: -5rem; background-color: transparent; border: 0; font-size: 0; height: 34px; width: 34px; position: absolute; padding: 0; margin: 0 } .stepsav-plan .how-slick button.slick-next:after, .stepsav-plan .how-slick button.slick-next:before, .stepsav-plan .how-slick button.slick-prev:after, .stepsav-plan .how-slick button.slick-prev:before { content: none } .gspfeatnew .savingsfeat { height: 417px !important } .first-tom { margin-top: 10px } .ulip-blogs ul.reportUL_new li { width: 100% !important } .gsp-blogs a.links, .ulip-blogs a.links { transform: none !important } .what-save { text-align: center; display: inline-block; width: 100% } .gsp-blogs ul.reportUL_new li { width: 100% !important; height: auto !important } } .kotaktv_d_none { display: none !important } #publicDisData { display: flex; flex-wrap: wrap } @media only screen and (max-width:1365px) { .ulip-sections .mar-side-left { margin-top: -20px !important } } .download .downloadUL li a.formIcon { min-height: 50px } .padding-right-20 { padding-right: 20px } .top-0 { top: 0 !important } .ourCampaignUL.ourCampVideo { display: flex; flex-wrap: wrap } .bene-icon { background: url(../images/ulip-plan/kotak-ulip-spirite.png); width: 62px; height: 62px; border: 1px solid #b4b4b4; border-radius: 50% } .b1 { background-position: 0 0 } .b2 { background-position: 0 -76px } .b3 { background-position: 0 -152px } .b4 { background-position: 0 -228px } .b5 { background-position: 0 -304px } .save-icon { background: url(../images/ulip-plan/kotak-ulip-spirite.png); width: 62px; height: 62px; border: 1px solid #b4b4b4; border-radius: 50% } .s1 { background-position: -113px 0 } .s2 { background-position: -113px -76px } .s3 { background-position: -113px -152px } .s4 { background-position: -113px -228px } .s5 { background-position: -120px -321px } .ulip-icon { background: url(../images/ulip-plan/kotak-ulip-spirite.png); width: 62px; height: 62px } .ul { background-position: 0 0 } .u1 { background-position: -225px 0 } .u2 { background-position: -230px -60px } .u3 { background-position: -230px -120px } .u4 { background-position: -225px -180px } .ufunds-icon { background: url(../images/ulip-plan/kotak-ulip-spirite.png); width: 62px; height: 62px; border: 1px solid #b4b4b4; border-radius: 50% } .uf1 { background-position: -324px 0 } .uf2 { background-position: -324px -76px } .uf3 { background-position: -325px -153px } .uf4 { background-position: -324px -229px } .uf5 { background-position: -325px -305px } .menu-icon { position: relative; padding-left: 60px; height: 50px !important } .menu-icon:before { position: absolute; top: 0; background-image: url(../images/menu-sprites.webp); content: ''; height: 40px; width: 60px; left: 0 } .kl2:before { content: ''; background-position: 0 -60px } .kl3:before { content: ''; background-position: 0 -106px } .kl4:before { content: ''; background-position: 0 -165px } .kl5:before { content: ''; background-position: 0 -220px } .kl6:before { content: ''; background-position: 0 -280px; height: 46px } .ont2:before { content: ''; background-position: -60px -57px; height: 50px } .ont3:before { content: ''; background-position: -60px -110px; height: 50px } .ont4:before { content: ''; background-position: -60px -166px; height: 50px } .ont5:before { content: ''; background-position: -60px -220px; height: 50px } .ont1:before { content: ''; background-position: -60px 0; height: 50px } .c1:before { content: ''; background-position: -110px 0; height: 50px } .c2:before { content: ''; background-position: -110px -60px; height: 50px } .c3:before { content: ''; background-position: -110px -110px; height: 50px } .c4:before { content: ''; background-position: -110px -164px; height: 50px } .ig1:before { content: ''; background-position: -170px 0; height: 50px } .ig2:before { content: ''; background-position: -168px -54px; height: 50px } .ig3:before { content: ''; background-position: -166px -110px; height: 50px } .ig4:before { content: ''; background-position: -164px -166px; height: 50px } .ig5:before { content: ''; background-position: -164px -220px; height: 50px } .ig6:before { content: ''; background-position: -170px -276px; height: 50px } .ig7:before { content: ''; background-position: -170px -335px; height: 50px } .ig8:before { content: ''; background-position: -164px -441px; height: 50px } .ig9:before { content: ''; background-position: -164px -494px; height: 50px } .ip1:before { content: ''; background-position: -220px 0; height: 50px } .ip2:before { content: ''; background-position: -220px -55px; height: 50px } .ip3:before { content: ''; background-position: -220px -110px; height: 50px } .ip4:before { content: ''; background-position: -220px -166px; height: 50px } .ip5:before { content: ''; background-position: -220px -220px; height: 50px } .ip6:before { content: ''; background-position: -220px -275px; height: 50px } .gp1:before { content: ''; background-position: -280px -7px; height: 50px } .gp2:before { content: ''; background-position: -280px -54px; height: 50px } .gp3:before { content: ''; background-position: -280px -110px; height: 50px } .gp4:before { content: ''; background-position: -280px -163px; height: 50px } .hd1:before { content: ''; background-position: -330px 0; height: 50px } .hd2:before { content: ''; background-position: -330px -55px; height: 50px } .hd3:before { content: ''; background-position: -330px -110px; height: 50px } .hd4:before { content: ''; background-position: -330px -165px; height: 50px } .hd5:before { content: ''; background-position: -330px -220px; height: 50px } .hd6:before { content: ''; background-position: -330px -275px; height: 50px } .hd7:before { content: ''; background-position: -330px -330px; height: 50px } .hd8:before { content: ''; background-position: -330px -390px; height: 50px } .hd9:before { content: ''; background-position: -330px -440px; height: 50px } .hd10:before { content: ''; background-position: -330px -495px; height: 50px } .hd11:before { content: ''; background-position: -330px -550px; height: 50px } .hd12:before { content: ''; background-position: -330px -605px; height: 50px } .hd13:before { content: ''; background-position: -330px -657px; height: 50px } .ff1:before { content: ''; background-position: -110px -220px; height: 50px } .ff2:before { content: ''; background-position: -110px -274px; height: 50px } .ff3:before { content: ''; background-position: -110px -329px; height: 50px } .ff4:before { content: ''; background-position: -110px -385px; height: 50px } .factor-icon.bene-icon { width: 62px; height: 62px; border: none; background-repeat: no-repeat } .fs1 { background-position: -435px -5px } .fs2 { background-position: -435px -73px } .fs3 { background-position: -435px -142px } .fs4 { background-position: -434px -208px } .fs5 { background-position: -433px -268px } .fs6 { background-position: -435px -326px } .fs7 { background-position: -430px -388px } .contact-timings { padding-top: 20px } ul.wk-life.landingUL li .img img { height: 340px; object-fit: cover } .saving-bene-icon { background: url(../images/saving-plans/saving-plan-sprites.png); width: 62px; height: 62px; background-size: 560px } .bsp-1 { background-position: 0 -218px } .bsp-2 { background-position: 0 -868px } .bsp-3 { background-position: 0 -320px } .bsp-4 { background-position: 0 -759px } .bsp-5 { background-position: 0 0 } .bsp-6 { background-position: 0 -970px } .bsp-7 { background-position: 0 -542px } .bsp-8 { background-position: 0 -430px } .bsp-9 { background-position: 0 -647px } .bsp-10 { background-position: 0 -108px } .bsp-11 { background-position: 0 -1081px } .klsp-1 { background-position: -105px -970px } .klsp-2 { background-position: -105px -110px } .klsp-3 { background-position: -105px -433px } .klsp-4 { background-position: -105px -762px } .klsp-5 { background-position: -105px -1141px } .klsp-6 { background-position: -105px -1463px } .klsp-7 { background-position: -105px -1070px } .klsp-8 { background-position: -105px -1142px } .klsp-9 { background-position: -105px -873px } .klsp-10 { background-position: -105px -16844px } .klsp-11 { background-position: -105px -1464px } .klsp-12 { background-position: -105px -1795px } .csp-1 { background-position: -215px -430px } .csp-2 { background-position: -215px -220px } .csp-3 { background-position: -215px -320px } .csp-4 { background-position: -215 -110px } .csp-5 { background-position: -215px 0 } .nsp-1 { background-position: -352px -114px } .nsp-2 { background-position: -352px -9px } .nsp-3 { background-position: -348px -227px } .sbsp-1 { background-position: -401px -264px; background-size: 470px } .sbsp-2 { background-position: -401px -178px; background-size: 470px } .sbsp-3 { background-position: -406px -94px; background-size: 470px } .sbsp-4 { background-position: -401px -3px; background-size: 470px } .new-footer { margin-top: 3rem } .new-footer .polular-searches { border-top: 0; padding-top: 0 } .footer-title, .popular-title { color: #003366 !important; font-size: 16px !important; font-weight: 700; text-transform: uppercase } .popular_list { background-color: #f6f6f6; width: 100%; display: inline-block } .popular_list .popular-search-anc a { font-size: 14px; letter-spacing: .28px } .footer-menu { padding-top: 4rem; width: 100%; display: inline-block } .footer-menu ul.plan-list li a { font-size: 16px; font-weight: 400; padding-left: 0 } .footer-menu ul.plan-list li a:hover { color: red } .footer-menu ul.plan-list.fnt-14 li a { font-size: 14px !important; letter-spacing: .28px } .footer-menu .footer-title, .popular-title { padding-bottom: 2rem } .footer-menu ul.plan-list li a:before { content: none } .footer-menu .footer-sub-menu li a { color: #595959; font-size: 14px !important; letter-spacing: .28px } .footer-sub-menu { margin: 0 !important } .footer-sub-menu { margin-bottom: 3rem !important } .desk-margin { margin-top: 4.4rem } .footer-menu-list ul.plan-list li a { color: #595959; font-size: 14px !important; letter-spacing: .28px } .new-footer .plans { margin-bottom: 0 } .so-cont { padding-right: 10px; font-size: 15px; margin-top: 5px; color: #000 } .social-data { margin-left: 3rem } .social-data li { margin-right: 10px } .social-data li a { width: 34px; height: 34px; border-radius: 30px; display: block; position: relative; } .social-data li a i { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 20px; color: #fff } .w-auto { width: auto } .social-content { padding-top: 1rem; padding-bottom: 0rem; width: 100%; display: inline-block }  .dsocial { justify-content: space-between } .footer-policy-box .footerHead { font-size: 16px } .footer-policy-box .footerLinksUL li { font-size: 15px; color: #000 } .new-disclaimer { display: inline-block; width: 100% } .new-beware { padding: 20px; border: 1px solid #aeaeae; border-radius: 10px } .new-beware p, .new-trades p { font-size: 15px } .new-trades p b { color: #000 } .new-desclaimer { padding: 2rem 0 1rem; width: 100%; display: inline-block } .new-desclaimer ul.btmlinks li:after { background: #000; top: 8px; width: 4px; height: 4px } .new-desclaimer ul.btmlinks li { margin-bottom: 5px } .new-desclaimer .btmlinks li a { color: #000; font-size: 14px } .new-copyright {width: 100%; display: inline-block; padding: 0rem 0 1rem } .copyright { color: #000; font-size: 14px; font-weight: 600; letter-spacing: .5px } .new-trades { border-bottom: 0; padding-bottom: 0 } .mobile-show { display: none } .footer-policy-box { margin-top: 1rem; border-radius: 6px } .f-mail { color: #0056B3 !important } .footer-policy-box li a { color: #000 !important } .social-space { padding-top: 1rem } .new-trades p:first-child { margin-top: 0 } .new-footer { padding-bottom: 0 } .n-mar { margin-top: 0rem } @media (min-width:768px) { .blog-head .best-card h1 { font-size: 36px } .nblock-articles .slick-list { width: 85% } .nblock-articles .slick-slider { width: 84%; left: 60px } .w-press { width: 100px; height: 80px } } @media (max-width:768px) { .blog-head .best-card h1, .blog-head { margin-top: 0 } .blog-body-content #topic1 { padding-top: 0rem; padding-right: 0 } .blog-body-content #topic1 li { margin-right: 0 !important } .saving-bene-icon, .bene-icon, .save-icon { display: inline-block } } @media (max-width:480px) { .nblock-articles.consumer .slick-next { top: 13rem; background-size: 50px } .nblock-articles.consumer .slick-prev { right: 9rem !important; z-index: 9999; top: 13rem !important; left: auto !important; background-size: 50px } .nblock-articles .consumer-slick-card { margin: 20px 0 0 0px !important } .consumer-slick { min-height: 216px } .nblock-articles .consumer-slick-card .slick-card-after:after { content: none } .nblock-articles .consumer-slick-card h3 { padding-left: 0 !important } .blog-body-content .also-read a { font-size: 22px } .nblock-articles .art-slider { float: left } .kotak-eterm-plan-popup { text-align: center; position: relative } .kotak-eterm-plan-popup .popup-term-btn { border-radius: 12px; width: 80%; padding: 10px 0; background-color: #e3e3e3; color: #000; font-size: 17px; display: inline-block; font-weight: 600 } .modal-popups-btns { display: none; position: relative; background: #FFF; width: 100%; z-index: 999999999999; left: 0; top: 0; height: auto !important } .modal-popups-btns:before { content: ''; background: url(../images/Polygon-arrow.png); width: 27px; height: 18px; position: absolute; top: -15px } .blog-social-meida { display: none !important } .kotak-eterm-plan-popup { display: block } .kotak-eterm-plan-popup .bg-eterm { background: #e9e9e9 !important } .kotak-eterm-plan-popup .blog-aside .feats-sec h3 { text-align: left !important } .kotak-eterm-plan-popup .feats-sec .fa-size { padding: 5px 4px 0 4px } .mobile-hide { display: none } .blog-head .mr-ten { margin-left: 10px } .blog-bradcrumb .breadcrumb ul { display: flex; white-space: nowrap } .blog-bradcrumb .breadcrumb ul .activeLink { text-overflow: ellipsis; overflow: hidden; width: 200px; white-space: nowrap } .blog-head .best-card h1 { font-size: 24px } .blog-head .best-card p { width: 100% } .kotak-eterm-plan-popup .blog-aside .blog-term-btn a { padding: 8px 0 10px } .new-footer { background: #fff } .popular_list .popular-search-anc a { padding: 8px 1px 8px 1px; border-radius: 30px } .desktop-show { display: none } .mobile-show { display: block } .desk-margin.mobile-show { margin-top: 0 } .mobile-margin-0 { margin: 0 !important } .social-content { padding-top: 0; margin-top: -1rem } .w-auto.so-cont { width: 100% } .social-data { margin-left: 0; width: 100%; padding-top: 1rem; padding-left: 0 } .glogo img { margin-top: 4rem } .new-disclaimer { margin-top: -1rem } .new-footer ul.footerLinksUL { border: 1px solid #d1d1d1; border-radius: 6px; padding: 10px } .new-footer ul.footerLinksUL li a { color: #000; border-right: 1px solid #000; padding-right: 6px; margin-right: 5px; font-weight: 600 } .new-footer ul.footerLinksUL li:last-child a { border-right: 0 !important } .new-footer ul.footerLinksUL:first-child { border-bottom: 0; border-bottom-left-radius: 0; border-bottom-right-radius: 0 } .new-footer ul.footerLinksUL:last-child { border-top-left-radius: 0; border-top-right-radius: 0 } .new-footer .footerHead { width: 100%; text-align: left !important; font-weight: 600 } .new-beware { border: 1px solid #aeaeae !important } .new-footer { padding-top: 0 } .new-footer .footer-title, .popular-title { padding-top: 2rem } .new-footer .popular_list .footer-title, .popular-title { padding-top: 2rem } .footerBox, .btmDesc { margin-bottom: 20px } .new-footer p { margin-top: 10px; letter-spacing: 0 } ul.btmlinks li { margin-bottom: 5px; display: inline-block; padding: 0 10px 0 8px } .new-desclaimer ul.btmlinks li:after { background: #000; top: 13px; width: 4px; height: 4px } ul.btmlinks li:after { width: 5px; height: 5px; background: #87898a; border-radius: 5px; position: absolute; left: 0; top: 6px; content: ''; display: block } .mobile-hide { display: none } .social-data { position: relative } .btmlinks { padding-left: 0 } .no-padding-top .footer-title, .popular-title { padding-top: 0 } .fa-youtube-play:before { left: -11px; top: -9px; position: absolute } .fa-instagram:before { position: absolute; left: -9px; top: -9px } .new-beware .footer-title, .popular-title { padding-top: 0 } .social-list { margin: 1rem 0 2rem } .footerBox .footerHead { font-size: 16px !important } .social-data .instagram { margin-left: 0 } .n-mar { margin-top: 0 } .new-copyright { margin-bottom: 5rem } .gsp-design p { line-height: 24px !important } } .glossery_banner { background: url(../images/glossary/glossary-bg.png) } .glossery_banner { top: 0; overflow: hidden } .glos-head h1 { font-size: 24px; text-transform: capitalize; color: #fff; font-weight: 600; letter-spacing: 1px; margin-top: 2rem; margin-bottom: 3rem; padding-bottom: 0 } .gls-tabs { display: inline-block } .gls-tabs li a { padding: 7px 30px 8px !important } .glos-banner-tabs { text-align: center } .tabs-list { background: #fff; border-radius: 30px; padding: 4px } .tabs-list li a { padding: 13px 30px; display: block } .tabs-list li a { font-size: 16px; color: #000 } .tabs-list li a.active { background: #ed3237; border-radius: 30px; color: #fff } .tabs-list li.active a { color: #fff } .glos-view { text-align: center } .glos-view h2, .glos-view p { font-size: 24px; color: #fff; font-weight: 500; letter-spacing: 1px } .glos-view ul.view-gls li { font-size: 14px } .glos-view ul li { color: #d3d3d3; font-size: 16px; display: inline-block; border-bottom: 1px solid #d3d3d3; padding: 1rem 1rem 3px; margin-left: -1rem } .glos-view ul li a { color: #d3d3d3 } .glos-view ul li a:hover { color: #ed3237 } .glos-view ul li:first-child { padding-left: 0 } .glos-view ul li:last-child { position: relative; padding-left: 3rem } .glos-view ul li:last-child:before { content: ''; position: absolute; width: 5px; height: 5px; background: #d3d3d3; left: 10px; top: 2rem; z-index: 9; border-radius: 20px } .video-btn a { background: url(../images/glossary/play-video.svg); width: 56px; height: 56px; display: inline-block } .gcard { display: flex; width: 90%; background: #8487894f; backdrop-filter: saturate(110%) blur(30px); padding: 20px; border-radius: 20px; border: 2px solid #969393; align-items: center } .glos-cont h2 { margin-bottom: 0; color: #fff; font-size: 19px; text-align: left; letter-spacing: .5px } .glos-cont { padding-left: 15px; width: 75% } .glos-card-img { position: relative; width: 110px; height: 80px } .glos-card-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 5px } .glos-card-img .termins { position: relative; display: block; width: 110px; height: 80px } .glos-card-img .termins:before { content: ''; background: #5d5d5d45; width: 100%; height: 100%; top: 0; left: 0; position: absolute } .video-ply { position: absolute; top: 50%; left: 50%; -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%) } .video-ply img { width: auto !important; height: auto !important } .video-btn { margin-top: 3rem; margin-bottom: 5rem } .glos-cont .view-gls { text-align: left; padding-left: 15px } .video-thumb { position: absolute; top: 0; left: 0; z-index: -1; display: none; width: 100% } .video-thumb img { width: 100% } .video-thumb.active { display: block } .video-thumb:before { content: ''; width: 100%; height: 100%; position: absolute; background: #00000096 } .tabcontent { display: none } .tabcontent.active { display: block } .glossery_videos_thumbnail .vid:first-child { display: block } .glos-head h3 { text-align: center; font-size: 24px; color: #161616; letter-spacing: .5px; font-weight: 600 } .glos-search, .searchWrapper, .glossaryWrap { background: #efefef !important } .glossary-slider { top: 0 } .kot-gls h3, .kot-gls p.h3 { padding-top: 0; padding-bottom: 0; color: #08315f; font-size: 24px; font-weight: 900; padding-right: 50px; 
	/*font-family:Roboto;*/font-family:'Lato';
	 text-transform: uppercase; letter-spacing: .2px } .kot-gls p { font-size: 15px; color: #161616; padding: 20px 0 20px 0 } .kotak-life { display: flex; width: 100%; background-color: #f5f5f5; padding: 40px 20px 20px; min-height: 310px; position: relative } .kot-gal { position: absolute; right: 0; bottom: 0 } .kot-gls { width: 50% } .glossslider .slick-slide { margin: 13px } .kot-gls .inknw { padding: 8px 20px; white-space: nowrap; position: absolute; bottom: 20px; height: 40px; max-width: inherit !important } .kot-gls h3 img { width: 100px } .gls_filter { padding-top: 0 !important } .glossslider .slick-slide .savimg { bottom: 7rem } .glossslider button.slick-prev { background-image: url(../images/btnslickprev.svg) !important; background-size: auto; left: unset; z-index: 1000; right: 67px; top: unset; bottom: -3rem; background-color: transparent; border: 0; font-size: 0; height: 25px; width: 25px; position: absolute; padding: 0; margin: 0 } .glossslider button.slick-next { background-image: url(../images/btnslicknext.svg) !important; background-size: auto; left: unset; z-index: 1000; right: 30px; top: unset; bottom: -3rem; background-color: transparent; border: 0; font-size: 0; height: 25px; width: 25px; position: absolute; padding: 0; margin: 0 } .glossary-slider .term-tags { padding-top: 3rem !important; text-align: center !important } .glossary-score { top: 0; background-color: #f5f5f5; padding: 4rem 0 0 } .settle-content { position: absolute; bottom: 5rem; width: 74%; left: 4rem } .settle-score { position: relative; margin-top: 2rem } .list-set { background: #fff; border-radius: 14px; border: 2px solid #fff; position: relative; text-align: center } .list-set:before { content: ''; width: 85%; height: 20px; background: #f6d8d8c4; position: absolute; left: 8%; bottom: -1rem; border-radius: 10px } .list-set li { font-size: 28px; color: #1e4679; font-weight: 600; padding: 3rem 1rem; border-top-left-radius: 20px; border-top-right-radius: 20px; line-height: 30px; position: relative; backdrop-filter: blur(20px) } .list-set li span { color: #ed3237; font-weight: 600 } .n-score { color: #ed3237; font-size: 36px } .clia-gls { font-size: 19px !important } .set-koto { position: relative; top: 4px; top: 15px; left: 20px; z-index: 9 } .n-score sup { font-size: 12px; top: -20px } .branch-title { font-family: 'Lato-Bold'; margin-bottom: 0; font-size: 24px; color: #161616; font-weight: 600; letter-spacing: 1px } .brances-list { background: #fff; width: 45%; padding: 2rem; display: inline-block; position: relative; margin: 2.5rem 2.5rem 0 0; border-radius: 10px; font-weight: 600 } .brances-list:hover { box-shadow: 0 3px 14px 5px #d6d6d6 } .brances-list h4, .brances-list .b-h4 { font-size: 14px; text-align: center; color: #161616; margin-bottom: 1rem; border-bottom: 1px solid #b5b5b5; text-transform: uppercase; padding-bottom: 10px; letter-spacing: .1px; font-weight: 600 } .brances-list h3, .brances-list .b-h3 { font-size: 36px; color: #161616;
	/*font-family:Roboto;*/font-family:'Lato';
	 font-weight: 700; padding: 0rem 0 0rem; text-align: center } .brances-list .b-h3 sup { font-size: 13px; position: relative; top: -4px } .brances-list p { 
	 /*font-family:Roboto;*/font-family:'Lato';
	 font-size: 12px; text-align: center; color: #161616; text-align: center; font-weight: 600 } .brances-list:before { content: ''; position: absolute; width: 90%; height: 3px; left: 5%; right: 5%; bottom: 0; background: #ed3237 } .glossary-reg { color: #707070; font-size: 16px; padding: 3rem 3rem 2rem; text-align: right } .glossary-blogs { top: 0 } .g-blogs h2, .g-blogs .gb-h2 { font-size: 24px; color: #161616; font-weight: 700; position: relative; font-family: Lato-Regular !important; letter-spacing: 1px } .g-blogs h2:after, .g-blogs .gb-h2:after { content: ''; position: absolute; background: url(../images/glossary/double-line.jpg); width: 60%; height: 3px; background-size: contain; background-position: 0 0; left: 16rem; top: 1.8rem } .g-blogs h2:before, .g-blogs .gb-h2:before { content: ''; position: absolute; width: 10px; height: 10px; background: #000; border-radius: 20px; left: 14.4rem; top: 1.3rem } .gblog-img { display: inline-block; width: 250px; height: 215px } .gblog-img img { width: 100%; height: 100%; object-fit: cover } .gblog-cont { display: inline-block; vertical-align: top; width: 50%; margin-left: 4rem } .gblog-cont .gblog-date { color: #727272; font-size: 15px; padding-top: 10px } .gblog-date span { position: relative; padding-left: 2.7rem } .gblog-date span:before { content: ''; position: absolute; width: 5px; height: 5px; border-radius: 30px; background: #727272; left: 1rem; top: 7px } .gblog-cont h3 { font-size: 20px; color: #161616; letter-spacing: .5px; font-weight: 600; padding: 2rem 0 1rem } .gblog-cont h3:hover { text-decoration: underline } .gblog-cont p { color: #161616; font-size: 15px } .gls-blogs-list li { padding: 3rem 0; border-bottom: 1px solid #c1c1c1; width: 92% } .gls-blogs-list li:last-child { border-bottom: 0 } .gblog-cont .read-btn { padding: 8px 20px; display: inline-block; font-size: 14px; margin-top: 2rem; border: 1px solid #ed3237; color: #ed3237; border-radius: 30px } .gblog-cont .read-btn:hover { color: #fff; background: #ed3237 } .glossary-blogs { padding-top: 3rem } .g-blogs-popuplar h2, .g-blogs-popuplar .gb-h2:after { color: #161616; font-size: 24px; font-weight: 600; position: relative; font-family: Lato-Regular !important; letter-spacing: 1px } .g-blogs-popuplar h2:after, .g-blogs-popuplar .gb-h2:after { content: ''; position: absolute; background: url(../images/glossary/double-line.jpg); width: 60%; height: 3px; background-size: contain; background-position: 0 0; left: 18rem; top: 1.8rem } .g-blogs-popuplar h2:before, .g-blogs-popuplar h2:before { content: ''; position: absolute; width: 10px; height: 10px; background: #000; border-radius: 20px; left: 16.5rem; top: 1.3rem } .blog-pops h3 { color: #161616;
	 
	 /*font-family:Roboto;*/font-family:'Lato';
	 font-size: 16px; letter-spacing: .4px; margin-bottom: 1rem; font-weight: 600 } .blog-pops h3:hover { text-decoration: underline } .blog-pops span { color: #8b8b8b; 
	/*font-family:Roboto;*/font-family:'Lato';
	 font-size: 14px } .g-blogs-popuplar { width: 80% } .blog-pops li { padding-bottom: 4rem; padding-top: 4rem; border-bottom: 1px solid #c1c1c1 } .blog-pops li:last-child { border-bottom: 0 } .glossary-top-stories { top: 0 } .topglossary-illustration img { width: auto; height: 300px } .glossary-top-stories { background-color: #f5f5f5; padding: 3rem 0 0 } .top-stores-title { text-align: center; font-size: 24px; font-weight: 600 !important; color: #161616; font-family: Lato-Regular !important; letter-spacing: 1px } .topsliders-content .gblog-cont { width: 60% } .topglossary-illustration { margin-top: -3rem } .glostopslider .slick-dots { display: flex; justify-content: center; margin-top: 4rem } .glostopslider .slick-active button { width: 10px; position: relative } .glostopslider .slick-active button { width: 10px; height: 10px; border-radius: 30px; background-color: #ef3e43 } .glostopslider .slick-active button:before { content: ''; width: 18px; height: 18px; border: 1px solid #ef3e43; padding: 0 0; position: absolute; top: -4px; left: -4px; border-radius: 20px } .glostopslider .slick-active #slick-slide-control11:before { content: ''; width: 18px; height: 18px; position: absolute; border-radius: 70px; left: -4px; top: -4px; border: 1px solid #ef3e43 } .glostopslider button { background-color: #a1a1a1 } .glostopslider button { margin-right: 10px; border: 0; border-radius: 100%; color: transparent; cursor: pointer; display: flex; font-size: 0; font-weight: 700; height: 3.8rem; letter-spacing: .1rem; line-height: 3.8em; padding: 0; text-align: center; text-decoration: none; text-transform: uppercase; white-space: nowrap; width: 10px; height: 10px; background-color: #404040 } .glossary-newsletter { top: 0; padding: 3rem 0 } .newsletter-sec { margin-top: 8rem; margin-left: 7rem } .newsletter-sec h2 { font-size: 27px; color: #161616; font-weight: 600 } .newsletter-sec form { float: left; width: 100% } .newsletter-sec ul.newsletter-sec > li .secondLi li:nth-child(2) { width: 30% } .newsletter-sec ul.writeusUL > li { width: 80% } .newsletter-sec ul.writeusUL > li ul { margin-left: 0 } .glossary-search .searchBox01 { width: 100% !important; position: relative; height: 50px; line-height: 50px } .glossary-search #search-keyword { height: 50px; line-height: 50px } .glossary-search .searchBox01:before { content: ''; position: absolute; height: 20px; width: 20px; background: url(../images/glossary/search.svg); left: 20px; top: 15px; z-index: 999 } .glossary-search #search-keyword { padding-left: 50px !important } .glossary-search #search-keyword-btn { text-indent: 0 !important; background: #ed3237; width: 200px; border-radius: 30px; color: #fff; font-size: 16px; padding: 0; text-align: center; height: 50px } .gloss_filter ul.glossaryUL li a { border: none; margin-right: 6px; font-weight: 600 } .gloss_filter ul.reportUL_noLink li .reportBox { border-radius: 20px; min-height: 230px } .glsslider .slick-track { display: flex } .glsslider .slick-slide, .glsslider3 .slick-slide { width: 384px !important; display: flex; height: auto !important } .glsslider button.slick-next, .glsslider3 button.slick-next, .glsslider4 button.slick-next, .glsslider5 button.slick-next { background-image: url(../images/btnslicknext.svg) !important; background-size: auto; left: unset; z-index: 1000; right: 30px; top: unset; bottom: -40px; background-color: transparent; border: 0; font-size: 0; height: 25px; width: 25px; position: absolute; padding: 0; margin: 0 } .glsslider3 .slick-track { width: 6000px !important } .glsslider button.slick-prev, .glsslider3 button.slick-prev, .glsslider4 button.slick-prev, .glsslider5 button.slick-prev { background-image: url(../images/btnslickprev.svg) !important; background-size: auto; left: unset; z-index: 1000; right: 67px; top: unset; bottom: -40px; background-color: transparent; border: 0; font-size: 0; height: 25px; width: 25px; position: absolute; padding: 0; margin: 0 } .glsslider button.slick-prev { background: none !important; font: normal normal normal 14px/1 FontAwesome; width: 35px; height: 35px; padding-right: 50px; overflow: hidden } .glsslider button.slick-prev:before { content: "\f053"; padding-right: 50px; padding-left: 8px } .glsslider button.slick-prev:after { content: ''; width: 30px; height: 30px; position: absolute; left: 0; border: 1px solid #fff; top: 0; border-radius: 50% } .glsslider button.slick-next { background: none !important; font: normal normal normal 14px/1 FontAwesome; width: 35px; height: 35px; padding-right: 20px; overflow: hidden } .glsslider button.slick-next:before { content: "\f054"; padding-right: 100px; padding-left: 10px } .glsslider button.slick-next:after { content: ''; width: 30px; height: 30px; position: absolute; left: 0; border: 1px solid #fff; top: 0; border-radius: 50% } .fancybox-button { border: 1px solid #ed3237; border-radius: 50%; background: none; right: 3rem; position: absolute; top: 2rem } .fancybox-button:hover { background: none; border: 1px solid #ed3237 } .fancybox-button svg path { stroke-width: 1px; color: red; border: 1px solid #ed3237; background: none } .glossary_share { position: absolute; width: 180px; border-radius: 10px; left: -60px; background: #fff; top: 40px; box-shadow: 0 2px 5px 2px #00000036 } .share-list { position: relative } .glossary_share ul li { border-bottom: none !important } .glossary_share ul li:last-child:before { content: none !important } .glossary_share .share-ul a { color: #000 !important } .glossary_share ul li:last-child { padding-left: 1rem } .budet-2023 { width: 420px; padding: 4rem 0; margin: 9rem 0 0 11rem } .budet-2023 h2 { width: 340px !important; margin-top: 7rem; margin-left: 12rem; font-size: 34px !important; color: grey !important } .budget-banner { width: 100% !important } .budet-content { padding-left: 10rem; margin-top: 3rem } .budet-content p { margin: 0 !important } .budet-2023 h2 { margin: 0 !important } .budet-2023 .clr-red { font-size: 45px !important; color: #da251c !important; font-weight: 600; margin-top: 1rem !important } .budet-2023 .buds2023 { color: #da251c !important; margin-top: 1rem !important } .box-fnt { font-size: 16px !important; width: 60% !important; color: #000 !important } .bud-sub-title { font-size: 34px; color: #da251c !important; margin-bottom: 2rem !important } .budet-content p { font-size: 14px !important; margin-top: 10px !important } .budet-content .tax-bent { font-size: 18px !important } .budet-content .budg-date { font-size: 14px !important } .ulip-calculator .section_heading { text-align: center; padding: 1rem 0 2rem } .bannerUL .activated .buget-tax img { display: block; visibility: initial } .buget-tax-cont { background: none !important } .buget-tax-cont p { position: absolute; bottom: -50px; color: #000 !important; left: 5% } .savimg-ulip { bottom: 3rem } .glsslider .slick-list { min-height: 150px } .glossary_share .social__icons.share-ul { margin: 0; padding: 2px 30px; text-align: center } .g-pad { padding: 20px 0 20px 19px } .glos-head { padding-bottom: 0 } .gls_filter .reportBox { box-shadow: none !important } .gls_filter .reportBox h3 { color: #161616; font-weight: 600; letter-spacing: .5px } .gls_filter .reportBox p { color: #161616 } .gloss_filter .reportBox h3 { font-size: 16px } .mobile-kot-life { display: none } .glossary-newsletter .buttonClick { color: #fff; font-weight: 400; text-transform: capitalize; font-size: 15px } .glossary-newsletter .buttonClick:hover { color: #fff } .gloss_filter #load-more-glossary { text-transform: capitalize; line-height: 43px; height: 43px; font-size: 15px } .search-move { float: right; margin-right: -60px; margin-top: -48px } #s-move { width: 50px; height: 50px; background: #ed3237; display: block; border-radius: 50%; scroll-behavior: smooth } #s-move i { color: #fff; font-size: 16px; padding: 16px 0 } .gls_filter #load-more-glossary { float: right !important; margin-right: 30px } .glossary-page .new-terms { padding-top: 40px; padding-bottom: 0 } #publicDisAnnualReturn .col-md-4 { width: 33%; float: left; margin-top: 30px } @media (max-width:1366px) { .gls-container { width: 1150px !important } } @media (min-width:991px) { .glossery_banner { height: 660px; margin-top: -8rem } } @media (min-width:768px) { .glossary-page .coll-md-8 { flex: 0 0 66.666666%; max-width: 66.666666% } .moblie-gls-tab { display: none } .gloss_filter ul.reportUL > li { min-height: 270px; width: 33% } .glossary-top-stories .gblog-img { display: none } .topsliders-content .gblog-cont { width: 80%; margin-left: 0 } .glostopslider .slick-dots { left: 20%; position: relative } .f-sec { padding-top: 0 !important } .sub-bot-2 { margin-bottom: 2rem !important } } @media (max-width:991px) { .gls-container { width: 100% !important } } @media (max-width:480px) { .video-thumb { height: 100% } .video-thumb img { height: 100%; object-fit: cover } .gls-tabs { display: none } .gls-drop-tsb { background: #fff; width: 80%; height: 50px; border-radius: 30px; text-align: center; font-size: 18px } .gls-drop-tsb:before { content: '' } .gls-drop-tsb option:hover { background-color: #ed3237 !important } .gls-drop-tsb option:checked, .gls-drop-tsb option:focus { background-color: #ed3237 } .glossery_banner { padding-bottom: 4rem } .gloss_filter .reportBox p { font-size: 16px } .gloss_filter ul.reportUL li h3 { font-size: 16px; font-weight: 600 } .gloss_filter ul.glossaryUL li { display: inline-block; height: 48px } .gloss_filter ul.glossaryUL li a { margin-bottom: 20px; font-size: 16px; margin-right: 8px } .gloss_filter .hd { font-size: 20px !important } .glossary-search .searchBox01 { width: 90% !important } .glossary-search #search-keyword-btn { width: 80px !important } .glossslider .kotak-life { margin-bottom: 20px } .savimg { bottom: 70px } .kot-gls .inknw { max-width: inherit !important } .glossary-score { margin-top: 0; padding-top: 0 } .settle-content { position: absolute; bottom: -9rem; width: 100%; left: 0 } .list-set li { font-size: 20px; line-height: 23px; padding: 2rem 1rem } .kotak-branches { margin-top: 14rem } .brances-list, .gblog-img { width: 100% } .glossary-reg { text-align: center } .g-blogs h2:after, .g-blogs-popuplar h2:after { width: 58%; top: 1.6rem; background-repeat: no-repeat; background-size: 100% } .gls-blogs-list li, .gblog-cont { width: 100% } .gblog-cont { margin-left: 0 } .gblog-img img, .g-blogs-popuplar, .topsliders-content .gblog-cont { width: 100% } .blog-pops li { padding-bottom: 2rem; padding-top: 2rem } .top-stores-title { margin-bottom: 3rem; margin-top: 2rem; text-align: left } .topglossary-illustration { display: none } .glossary-top-stories { padding-bottom: 3rem } .list-set li span { padding-top: 1rem; display: inline-block } .n-score { font-size: 29px } .newsletter-sec { margin-left: 0; margin-top: 2rem } .newsletter-sec ul.writeusUL > li { width: 100% } .newsletter-sec ul.writeusUL > li .buttonClick { width: 100% } .m-roww { display: block !important } .newsletter-sec form { margin-bottom: 0 } .glossary-newsletter { padding-bottom: 0 } .glssavingslider .slick-track, .glsslider3 .slick-track, .glsslider4 .slick-track, .glsslider5 .slick-track { width: 1038px !important } .glssavingslider .slick-slide, .glsslider3 .slick-slide, .glsslider4 .slick-slide, .glsslider5 .slick-slide { width: 346px !important } .glossary-page { margin-top: 0 !important } .buget-tax-cont p { padding-left: 20px; color: #000 } .fancybox-slide > * { width: 100% !important; height: 400px !important } .glsslider .slick-slide { width: 340px !important } .desktop-brans { display: none } .mobile-kot-life { display: block; margin-bottom: 2rem; padding-top: 1rem } .glossery_banner { margin-top: 0 } .gcard { width: 96% } .glos-card-img .termins, .glos-card-img { width: 80px } .glsslider button.slick-prev, .glsslider button.slick-next { display: none !important } .glossary-search #search-keyword { padding-left: 35px !important } .glossary-search .searchBox01:before { left: 12px } .glossary-search #search-keyword { font-size: 1.3em } .gspnewterms { padding: 30px 0 0; margin-top: 0 } .gspnewterms .terms-conditions { margin: 0 0 24px !important } .glos-head h1 { margin-bottom: 1rem } select.classic { background-image: url(../images/glossary/links-arrow-down.png); background-position: 227px 14px; background-repeat: no-repeat; background-size: 29px 25px } .search-move { float: right; margin-right: 0; margin-top: 2px } .gloss_filter ul.glossaryUL li span { width: 30px; height: 30px; line-height: 28px; font-weight: 700 } .glossary-top-stories .coll-md-8 { width: 100% } #publicDisAnnualReturn .col-md-4 { width: 90% } } .rhsFixed_Wrapper.life_join_us .activate .rhsboxWrap { display: none !important } .rhsFixed_Wrapper.life_join_us .activate .rhsboxWrap.buy-online-change { display: block !important } /*Ulip page*/ .ulip_page #investment_calculator { margin-bottom: 4rem; } .ulip_page .ulip-various-fact { margin-bottom: 4rem; } /*App Download*/ .glogo { text-align: right; margin-bottom: 10px; } .add-download { position: relative; display: flex; padding-right: 50px; margin-top: 1rem; } .add-download p { color: #000; font-size: 15px; padding-right: 10px; padding-bottom: 5px; } .social-space { width: 425px; } .glogo .g20 img { padding-top: 10px; } .glogo-group { display: flex; border-radius: 10px; } .add-download:before { position: absolute; content: ''; width: 1px; height: 40px; background: #bdbebf; left: 0; top: 0; } .add-download:after { position: absolute; content: ''; width: 1px; height: 40px; /*background: #bdbebf;*/ right: 0; top: 0; } .g20 { padding-left: 4rem; padding-right: 1rem; } .add-download img { width: 180px; border-radius: 10px !important; } .add-download a { margin-right: 10px; height: 40px; align-items: center; display: flex; } .online-term-plan-bg .btnstickybg, .term-design .btnstickybg { display: none; } .planWrap .reportUL_img2 p { min-height: 100px; } @media (max-width:1366px) { .social-space { width: 525px; } } @media (max-width:1280px) { .social-space { width: 435px; } .add-download a { margin-right: 10px; } .add-download { padding-right: 16px; } .g20 { padding-left: 16px; } .add-download p { font-size: 15px !important; } .social-data li { margin-right: 8px !important; } .add-download a:last-child { margin-right: 0; } } @media (max-width:480px) { .dsocial { display: block !important; } .glogo-group { width: 100%; } .add-download p { text-align: left; padding-right: 0; } .glogo .add-download img { margin-top: 0; } .add-download a { float: left; width: 43%; margin-right: 10px; } .add-download { display: block; } .add-download:before { content: none; } .add-download:after { content: none; } .glogo .g20 img { width: 280px; } .buy-imgs5, .buy-imgs6, .buy-imgs7 { position: static !important; } .blog-bradcrumb .breadcrumb { padding-top: 48px; } #topic1 .faq { margin-top: 4rem !important; float: left; } #topic1 .accordion-div p { display: none; } #topic1 .accordion-div .bor p { display: block; } .kotak-life {} .u-bread { margin-top: 5rem; } .ulip_page .term-design-banner { padding-top: 0 !important; } .ulip_page .whyinvest svg { width: 100%; height: 100%; } .ulip_page .varfac { margin-top: 0; } .ulip_page .ulip-various-fact {} .ulip_page .gspfeatnew .savingsfeat { height: auto !important; } } .buy-imgs5 { position: absolute; right: 0; top: 0; background-image: url(../images/Kotak-Lifetime.svg); background-repeat: no-repeat; height: 65px; width: 65px } .buy-imgs5:hover { background-image: url(../images/Kotak-Lifetime-hover.svg) } .buy-imgs6 { position: absolute; right: 0; top: 0; background-image: url(../images/Protect-India.svg); background-repeat: no-repeat; height: 65px; width: 65px } .buy-imgs6:hover { background-image: url(../images/Protect-India-hover.svg) } .buy-imgs7 { position: absolute; right: 0; top: 0; background-image: url(../images/Kotak-Guaranteed-Fortune-Builder.svg); background-repeat: no-repeat; height: 65px; width: 65px } .buy-imgs7:hover { background-image: url(../images/Kotak-Guaranteed-Fortune-Builder-hover.svg) } .faq { margin-top: 5rem !important; } .bor .accordion h3 { margin-left: 20px; } .suggestion { display: inline-block; width: 100%; margin-top: 3rem; } .suggestion span { margin-right: 10px; } .buy-online-links { padding-left: 4rem; } #topic1 .suggestion { margin-top: 3rem; } #topic1 .accordion-div p { margin-bottom: 0 !important; } #topic1 .accordion-div .tab-detail p { padding-left: 20px !important; } #topic1 .accordion h3 { display: inline-block !important; width: 90% !important; margin: 0 10px !important; } .consumer { margin-top: 3rem; } #topic1 .suggestion p a { width:unset; display: inline-block; vertical-align: top; } @media only screen and (max-width:1280px) { .buy-slick-card { max-width: 335px !important; } .votedcheck { right: 10%; top: 24%; } .buy-slick-card .mr-14 { width: 70px; margin-left: 0; } .buy-life-slick .slick-slide:first-child .buy-slick-card .mr-14 { width: 80px; } .p-txt { font-size: 16px !important; } .buy-online-links { padding-left: 1rem; } } /*Rating star*/ .rating-section { margin-top: 4rem; margin-bottom: 4rem; } .feedback-container { display: grid; grid-template-columns: 46% 5% 49%; align-items: center; min-width: 850px; border: 1px solid #E2E2E2; border-radius: 19px; box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.12); padding: 13px; position: relative; } .success-box { margin: 30px 0 15px; padding: 10px 0; text-align: left; } .success-box img { margin-right: 10px; display: inline-block; vertical-align: top; } .success-box > div { vertical-align: top; display: inline-block; color: #888; } /* Stars CSS */ .rating { display: flex; justify-content: left; overflow: hidden; position: relative; flex-direction: row-reverse; } .rating > input { display: none; } .rating > label { cursor: pointer; width: 40px; height: 40px; /* background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e"); */ background-image: url('../images/rating/greyStars.svg'); background-repeat: no-repeat; background-position: center; background-size: 76%; transition: .3s; } .rating > input:checked ~ label, .rating > input:checked ~ label ~ label { /* background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e"); */ background-image: url('../images/rating/yellowStars.svg'); } .rating > input:not(:checked) ~ label:hover, .rating > input:not(:checked) ~ label:hover ~ label { /* background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e"); */ background-image: url('../images/rating/yellowStars.svg'); } input:not([type="range"]):not([type="color"]) { writing-mode: horizontal-tb !important; } input[type="radio"i] { background-color: initial; cursor: default; appearance: auto; box-sizing: border-box; margin: 3px 3px 0px 5px; padding: initial; border: initial; } .votedCount { color: #003366; font-weight: bold; } .verticalBorder { width: 15px; border-right: 1px solid #c2c7d1; border-bottom: none; height: 100px; margin: 15px 0 15px 0; } .rating-section .infoText { font-size: 24px !important; font-weight: 600 !important; color: #000; margin: 10px 0 12px; } .submitBtn { height: 40px; width: auto; background-color: #08315F; font-size: 16px; color: #FFF; border-radius: 2rem; border: none; cursor: pointer; letter-spacing: 0.3px; font-weight: 400; text-transform: capitalize; } .share-side { margin: 10px auto; text-align: right; display: flex; justify-content: space-around; align-items: center; width: 90%; } .rating-section .votedCount-text { font-size: 18px; color: #7A7A7A; letter-spacing: 0.3px; } .stars-bg { position: relative; } .rating-section .actual-ratings, .actual-ratings { position: absolute; top: 34%; left: 24%; font-size: 48px !important; font-weight: 800 !important; color: #08315F !important; } .stars-btn { display: flex; justify-content: flex-start; align-items: center; } .submitDiv, .feedbackMsgDiv { margin-left: 15px; margin-top: -2rem; } .reviewBox { padding: 5px 8px; border: 1px solid #B2B2B2; border-radius: 16px; position: relative; width: 7rem; text-align: left; } .reviewText-img span { font-size: 16px; font-weight: normal; color: #000; } .reviewText-img img { position: absolute; top: -5px; right: -8px; width: 40px; height: 40px; } .votedcheck { position: absolute; top: 22%; right: 10%; } .overall-ratingtxt { font-size: 24px !important; letter-spacing: 0.3px; color: #000 !important; } @media only screen and (max-width:480px) { .feedback-container { display: grid; grid-template-columns: 100%; align-items: center; gap: 12px; min-width: 100%; border: 1px solid #E2E2E2; border-radius: 19px; padding: 8px; position: relative; } .verticalBorder { display: none; } .share-side { display: flex; flex-direction: column; align-items: center; } .stars-btn { display: flex; flex-direction: column; align-items: center; } .rating-stars p { text-align: center !important; } .submitDiv, .feedbackMsgDiv { margin: 0px 0 25px; } .submitBtn { width: 100%; height: 45px; text-align: center; } .votedcheck { position: absolute; top: 10px !important; right: 10px !important; } .afterClick { margin-bottom: 15px; } .buy-imgs6, .buy-imgs7 { position: static !important; } .rating-section .votedCount-text { margin-bottom: 2rem; } .rating-section .container { padding: 0; } } /*Insurance Guide*/ #insuranceGuide-section { top: 120px; } .headDesc { padding: 10px 0 !important; } .container-fluid { width: 100%; padding-right: 5rem; padding-left: 5rem; margin-right: auto; margin-left: auto; } .insuranceGuide-title { color: #000; margin-bottom: 10px !important; font-weight: 700; } .head-section { /* display: flex; justify-content: space-between; align-items: center; */ display: grid; grid-template-columns: 25% 73.5%; align-items: flex-start; gap: 20px; } .search-box { border: 1px solid #CFCFCF; border-radius: 8px; padding: 15px; max-width: 350px; min-height: 425px; background-color: #ffffff; } .selectCategory-text { font-size: 16px; font-weight: normal; text-align: left; color: #404040; padding: 15px 10px; /* Please remove this if we implement search bar */ } .search-bar { position: relative; display: inline-block; } .search-box .selectCategory-input { background-color: #f1f1f1; border-radius: 24px; height: 42px; margin: 5px 0; border: none; } .search-img { position: absolute; top: 18px; right: 18px; cursor: pointer; } .guide-list ul { padding: 0 12px; } .guide-list ul li { font-size: 16px; font-weight: 500; color: #000; letter-spacing: 0.3px; padding: 12px 0; /* Make this 10px if we implement search bar */ border-bottom: 1px solid #D2D2D2; } .guide-list ul li:last-child { border-bottom: none; padding-bottom: 5px; } .main-blog { padding: 10px; border: 1px solid #CFCFCF; border-radius: 8px; } .main-blog img { width: 100%; height: 230px; } .main-blog-title { color: #000; font-size: 22px; font-weight: 500; letter-spacing: 0.3px; margin: 10px 0; font-family: 'Lato-Bold'; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .right-Blog_card img { height: 116px; width: 100%; object-fit: cover; border-radius: 6px; } .main-blog-desc { color: #000; font-size: 16px; font-weight: 400; margin: 8px 0; overflow: hidden; text-overflow: ellipsis; height: 40px; } .main-blog-date { color: #727272; font-size: 15px; margin: 20px 0; } .main-blog-date span { position: relative; padding-left: 2.7rem; } .main-blog-date span:before { content: ''; position: absolute; width: 5px; height: 5px; border-radius: 30px; background: #727272; left: 1rem; top: 7px; } .right-Blog_title { font-size: 16px; font-weight: 600; font-family: 'Lato-Bold'; letter-spacing: 0.3px; color: #000; margin-bottom: 10px; text-overflow: ellipsis; height: 40px; overflow: hidden; } .blogs-read_more { display: flex; justify-content: right; color: #ED3237; font-size: 16px; text-decoration: underline; letter-spacing: 0.3px; } .glossary-score { margin-top: 30px; } .fr { float: right; } .guide-active { color: #ED3237 !important; } .tablinks { cursor: pointer; } .blogs-section { display: grid; grid-template-columns: 65% 33%; align-items: flex-start; gap: 15px; } .section-right { display: flex; flex-direction: column; align-items: flex-start; } #trending-blogs, #policyFaq, #topPicks { margin: 35px 0 20px; top: 0; } .trending-blogstitle, .topPicks-title { font-size: 24px; font-weight: 500; color: #000; text-align: center; font-family: 'Lato-Bold'; letter-spacing: 0.3px; position: relative; } .trending-blogstitle:before, .topPicks-title:before { content: ''; width: 100%; height: 1px; position: absolute; background: #c1c1c1; left: 0%; top: 16px; } .trending-blogstitle span, .topPicks-title span { background: #fff; display: inline-block; position: relative; padding: 0 20px } .trending-blog { display: grid; grid-template-columns: 65% 35%; align-items: center; gap: 10px; } .tblogContent { display: flex; align-items: flex-start; } .tblog-img img { width: 260px; height: 215px; } .tblog-content { vertical-align: top; width: 75%; margin-left: 4rem; } .tblog-date { color: #727272; font-size: 14px; padding-top: 10px; } .tblog-date span { position: relative; padding-left: 2.7rem; } .tblog-date span:before { content: ''; position: absolute; width: 5px; height: 5px; border-radius: 30px; background: #727272; left: 1rem; top: 7px; } .tblog-title { font-size: 20px; color: #161616; letter-spacing: .5px; font-weight: 600; padding: 1rem 0 1rem; } .tblog-desc { color: #161616; font-size: 15px; letter-spacing: 0.3px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; margin-top: 10px; line-height: 25px; } .tblog-readMore { float: right; color: #ED3237; font-size: 16px; text-decoration: underline; margin-top: 1rem; letter-spacing: 0.3px; } .trending-blogsLeft ul li { margin-top: 20px; } .trending-blogsRight { padding-left: 3rem; border-left: 1px solid #c1c1c1; } .tblogs-right li { padding-bottom: 4rem; padding-top: 4rem; border-bottom: 1px solid #c1c1c1; } .tblog-rightTitle { color: #161616; font-size: 16px; letter-spacing: .4px; margin-bottom: 1rem; font-weight: 600; } .FaqGlossary-section { display: flex; justify-content: space-between; align-items: center; } .glossary-card, .faqPolicy { background-color: #F2F3F3; border-radius: 5px; min-width: 565px; min-height: 420px; text-align: center; display: flex; justify-content: center; align-items: center; flex-direction: column; } .glossary-img, .faqPolicy-img { background-color: #FFFFFF; display: flex; align-items: center; justify-content: center; border-radius: 50%; width: 120px; height: 120px; } .glossary-img img, .faqPolicy-img img { width: 50px; height: 50px; } .faqPlicy-title, .glossary-title { font-size: 22px; font-weight: 500; color: #000; margin: 20px 0; } .faqPlicy-desc, .glossary-desc { font-size: 20px; font-weight: normal; color: #000; } .faqPolicy-knowMore, .glossary-knowMore { padding: 8px 30px; display: inline-block; font-size: 14px; margin-top: 2rem; color: #FFFFFF; background-color: #ed3237; border-radius: 30px; } .faqPolicy-knowMore:hover, .glossary-knowMore:hover { color: #fff; } .topPicks-section { display: grid; grid-template-columns: 30% 40% 30%; align-items: center; gap: 15px; margin: 15px 0; } .topPicks-leftCard, .topPicks-centerCard, .topPicks-rightCard { border: 1px solid #E2E2E2; border-radius: 6px; margin: 10px 10px 10px 0; } .topPicks-leftCard img, .topPicks-rightCard img { width: 100%; height: 125px; object-fit: cover; } .topPicks-centerCard img { width: 100%; height: 250px; object-fit: cover; } .topPicks-subtitle { color: #000; font-size: 16px; font-weight: 500; letter-spacing: 0.3px; padding: 15px 20px; font-weight: 600; } .topPicks-centerDesc { padding: 32px; } .topPicks-centertitle { font-size: 24px; font-weight: 500; color: #000; font-family: 'Lato-Bold'; } .topPicks-dateReadmore { display: flex; justify-content: space-between; align-items: center; } .right-Blog { padding: 14px 0; border-bottom: 1px solid #8B8B8B; width: 100%; } .right-Blog:last-child { border-bottom: none; } .main-blog-dates { color: #8B8B8B; font-size: 14px; padding-top: 7px; } .main-blog-dates span { position: relative; padding-left: 2.7rem; } .main-blog-dates span:before { content: ''; position: absolute; width: 5px; height: 5px; border-radius: 30px; background: #8B8B8B; left: 1rem; top: 7px; } .right-blog_sidetitle { font-size: 15px; font-weight: 500; letter-spacing: 0.3px; font-family: Lato; color: #000; margin-bottom: 5px; font-family: 'Lato-Bold'; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-top: 6px; } .right-blog_sidedesc { height: 32px; overflow: hidden; text-overflow: ellipsis; font-size: 12px; font-weight: 500; letter-spacing: 0.3px; color: #000; } .rightSide-readMore { display: grid; grid-template-columns: 75% 25%; gap: 5px; align-items: end; } .rightblogs-read_more { color: #ED3237; font-size: 12px; text-decoration: underline; letter-spacing: 0.3px; } .right-Blog_card { border: 1px solid #CFCFCF; border-radius: 6px; padding: 10px; } .hideDesktop { display: none; } .tabcontent { transition: all 0.6s linear; } .trending-blog { display: grid; grid-template-columns: 65% 34%; align-items: center; gap: 10px; } .topPicks-section { display: grid; grid-template-columns: 29% 40% 29%; align-items: center; gap: 10px; margin: 15px 0; } .insurance-guide { top: 110px; } .insurance-guide .tablinks { position: relative; } .insurance-guide .tablinks .fr:before { width: 0; height: 0; content: ''; display: block; position: absolute; right: 7px; top: 55%; border: 1px solid #000; border-color: transparent #000 #000 transparent; padding: 3px; margin-top: -4px; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg); } .insurance-guide .tablinks.guide-active .fr:before { width: 0; height: 0; content: ''; display: block; position: absolute; right: 7px; top: 55%; border: 1px solid #da251c; border-color: transparent #da251c #da251c transparent; padding: 3px; margin-top: -4px; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg); } @media only screen and (max-width:1280px) { .insurance-guide .brances-list { width: 44%; vertical-align: top; min-height: 170px; } .right-Blog_title { margin-bottom: 10px; } .main-blog-date { margin: 16px 0; } .main-blog-desc { height: 50px; } .rightSide-readMore { grid-template-columns: 69% 29%; } } @media only screen and (max-width:480px) { .trending-blog { display: grid; grid-template-columns: 100%; } .tblogContent { display: flex; flex-direction: column; align-items: center; } .tblog-img { width: 100%; } .tblog-img img { width: 100%; height: 200px; object-fit: cover; } .tblog-content { width: 100%; margin-left: 0; } .trending-blogsLeft ul li { margin: 30px 0; } .trending-blogsRight { border-left: none; padding-left: 0; padding: 0 15px; } .FaqGlossary-section { display: flex; flex-direction: column; align-items: center; } .faqPolicy { background-color: #F8F9FB; } .glossary-card, .faqPolicy { min-width: 420px; min-height: 400px; } .topPicks-section { display: grid; grid-template-columns: 100%; align-items: center; } .topPicks-leftCard img, .topPicks-rightCard img { width: 100%; height: 150px; object-fit: cover; } .topPicks-centerDesc { padding: 15px; } .topPicks-centertitle { font-size: 22px; } #topPicks { margin: 35px 0 20px; } #insuranceGuide-section { top: 10px; } .tblogs-right li { padding: 2rem 0; } .head-section, .blogs-section { display: grid; grid-template-columns: 100%; } .right-Blog_card img { width: 100%; height: auto; } .trending-blogstitle, .topPicks-title { margin-bottom: 10px; } .search-bar { width: 100%; } .mobileList-hide { display: none; } .search-box { min-height: 100%; } .hideDesktop { display: block; border-bottom: none !important; } .main-blog img { height: 100%; object-fit: cover; } .insurance-guide .brances-list { width: 100% !important; } .insurance-guide { top: 0; } .fr:before, .guide-list .fr:before { width: 0; height: 0; content: ''; display: block; position: absolute; right: 7px; top: 55%; border: 1px solid #000; border-color: transparent #000 #000 transparent; padding: 3px; margin-top: -4px; transition: all ease .3s; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; -o-transition: all ease .3s; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg); } .guide-list .fr:before { margin-top: 12px !important; transform: rotate(45deg); -webkit-transform: rotate(45deg); } .guide-list .fr { position: relative; } .tooglearrow .fr:before { transform: rotate(220deg); -webkit-transform: rotate(220deg); border-color: transparent #ed3237 #ed3237 transparent; } #trending-blogs, #policyFaq, #topPicks { padding-right: 0px !important; } } /*End Insurance guide*/ /*Blog new code */ .alsoRead-bg { background-color: #F6F6F6; padding: 15px 20px; border-radius: 8px; } .alsoRead-list li a { font-size: 16px; color: #1E4679; text-decoration: underline; } .alsoRead-list { padding-left: 0 !important; } .alsoRead-h3 { font-size: 22px !important; font-weight: 600; } .consumer-text { padding-bottom: 30px; color: #000; font-size: 20px; font-weight: 700; } .product-tokens { display: flex; justify-content:unset; align-items: center; margin: 28px 0;gap:55px } .tokens { padding: 20px 20px 20px 30px; background-color: #FFFFFF; border-radius: 8px; min-height: 330px; min-width: 370px; border: 1px solid #AB2020; width: 350px; } .tokens:hover { background-color: #FFF3F3; } .tokens:hover .showUnfill { display: block; margin-bottom: 5px; } .tokens:hover .showFill { display: none; } .showUnfill { display: none; } .tokenImg { min-height: 100px; } .tokenImg img { width: 95px; height: 95px; } .tokens h4 { font-size: 22px; font-weight: 600; color: #AB2020; letter-spacing: 0.3px; margin: 8px 50px 8px 0; } .tokens p { font-size: 18px; letter-spacing: 0px; color: #000000; margin: 12px 0; } /* .tokensInvest { background-color: #003366; color: #FFF; font-size: 16px; text-transform: uppercase; border-radius: 23px; width: 163px; height: 43px; margin: 5px 0; display: block; text-align: center; line-height: 44px; transition: all 0.3s; position: relative; overflow: hidden; z-index: 1; } .tokensInvest:after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background-color: #003366; border-radius: 23px; z-index: -2; } .tokensInvest:before { content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 100%; background-color: #497cb6; transition: all 0.3s; border-radius: 10rem; z-index: -1; } */ .tokensInvest { display: inline-block; width: 163px; height: 43px; background: linear-gradient(to left, #AB2020 50%, #ED1C24 50%); background-size: 200% 100%; cursor: pointer; transition: all ease 0.3s; border-radius: 23px; text-transform: uppercase; background-color: #003366; color: #FFF; line-height: 40px; text-align: center; font-size: 14px; } .tokensInvest { background-position: right top; } .tokensInvest:hover { background-position: left top; color: #FFF; } .tokensInvest:hover:before { width: 100%; } .saving-token .simi-txt { padding-top: 20px !important; padding-bottom: 12px !important; } .desktop-hide { display: none; } .mar-left { margin-left: 50px !important; } .mar-left1 { margin-left: 30px !important; } .alsorea-h3 { padding-top: 3rem; } @media (min-width: 1280px) { .saving-token { left: -10px; } } @media (max-width: 1280px) { .tokens { width: 300px; min-width: inherit } .tokens h4 { font-size: 20px; } } /* Mobile Device */ @media (max-width: 767px) { .tokens-section { z-index: 1 !important; } /* .hide-mobile { display: block !important; }*/ .product-tokens { flex-direction: column; gap: 15px; } } @media (max-width: 480px) { .blog-body-content .also-read a { font-size: 18px; } .mdvideo-sec { top: 0px !important; } .mdiframe { width: 100% !important; } .tokens { width: 100%; } .saving-token .simi-txt { padding-top: 2px !important; padding-bottom: 12px !important; } .desktop-hide { display: block; } .blog-body-content .also-read ul { padding-left: 0; } .blog-body-content .also-read h3 { font-size: 22px; margin-top: 1.5rem; margin-bottom: 0 !important; } } .mdvideo-sec .prod-img1 { object-fit: cover; vertical-align: top; object-position: top; width: 100%; height: 450px } .mdvideo-sec { top: 140px } /*End Blog new code */ .buy-life-new .now-txt { padding-bottom: 2rem !important; } /*Header and footer sprite images*/ .header-logo { background-image: url(../images/header-sprite.webp) !important; width: 252px; height: 54px; display: block; } ul.navRhs > li > a.whatsBtn:after { background-image: url(../images/header-sprite.webp) !important; background-size: 380px; background-position: 0px -81px; } ul.navRhs > li > a.whatsBtn-sm:after { background-image: url(../images/header-sprite.webp) !important; background-size: 250px; background-position: 0px -70px; } ul.navRhs > li > a.searchBtn:after { background-image: url(../images/header-sprite.webp) !important; background-size: 380px; background-position: 0px -210px; } .tv-pad { background-image: url(../images/header-sprite.webp) !important; background-size: 340px; background-position: 0px 171px; width: 56px; height: 40px; } ul.fixedUL li .buyOnline:before { background-image: url(../images/header-sprite.webp) !important; background-size: 380px !important; background-position: 0px 28px !important; } ul.fixedUL li a.getCall:before { background-image: url(../images/header-sprite.webp) !important; background-size: 450px !important; background-position: 0px 286px !important; } .apple-store { width: 225px; background-image: url(../images/header-sprite.webp) !important; background-size: 523px !important; background-position: -378px -517px; } .google-store { width: 205px; background-image: url(../images/header-sprite.webp) !important; background-size: 460px !important; background-position: -343px -259px; } .g20 { width: 140px; background-image: url(../images/header-sprite.webp) !important; background-size: 650px !important; background-position: -448px -453px; display: none; } ul.fixedUL li a.get-premium:before { background-image: url(../images/header-sprite.webp) !important; background-size: 380px !important; background-position: 0px 102px !important; } /*Blog page product card and slider head tag to p tags*/ .kotak-eterm-plan-popup .product_head { margin-top: 0; } .product_head { color: #000 !important; font-size: 22px !important; font-weight: 700 !important; margin-top: 17px; margin-bottom: 20px !important; font-family: Lato-Bold; } .feature_head { color: #000 !important; font-size: 20px !important; font-weight: 600 !important; margin-bottom: 0 !important; } .consumer-slick-card p { color: #000; font-size: 22px; font-weight: 500; padding-right: 30px; border-bottom: 0; padding-left: 20px; } /*End blog*/ .new-twitter { padding: 6px 6px; fill: #fff; }  /*Footer g20*/ @media (max-width:1366px) { .g20 { background-position: -468px -453px; } .add-download { padding-right: 20px; } .social-data li a { width: 30px; height: 30px; } .social-data li { margin-right: 6px; } .social-data li a i { font-size: 16px; } .add-download p { font-size: 14px; } .apple-store { width: 205px; background-size: 483px !important; background-position: -357px -477px; } .google-store { background-size: 420px !important; background-position: -309px -237px; } } @media (max-width: 1280px) { .apple-store { background-size: 453px !important; background-position: -333px -445px; width: 185px; } .google-store { width: 175px; background-size: 400px !important; background-position: -300px -223px; } .g20 { background-size: 590px !important; background-position: -428px -403px; width: 110px; } } @media (max-width: 480px) { .apple-store { background-size: 453px !important; background-position: -339px -444px; width: 100px !important; } .google-store { background-size: 390px !important; background-position: -290px -216px; width: 100px !important; } .g20 { width: 140px; background-size: 610px !important; background-position: -458px -427px; height: 50px; margin-top: 3rem; } ul.navRhs > li > a.whatsBtn-sm:after { background-position: 0px -53px; } .header-logo { width: 120px !important; background-size: 210px !important; } header ul.navRhs > li > a.searchBtn:after { background-size: 300px !important; background-position: 0px -167px; margin-top: .5rem; top: 0; } .header-logo { height: 28px; width: 130px; display: block; } } /*Home page slider*/ .budet-2023 h2 { color: #000 !important; } .budet-2023 { width: 80%; margin: 14rem 0 0 9rem; } .budget-banner { width: 100% !important; } .budet-content { padding-left: 25rem !important; } .budet-content h2 { color: #fff !important; } ul.bannerUL li .bannerCont { width: 45% !important; } .btn-mobile-view:hover { border: 1px solid #da251c !important; } .tax-btn { border: 1px solid #da251c !important; background: none !important; color: #da251c !important } .tax-btn:hover { background: #da251c !important; color: #fff !important } .tax-h2 { color: #08315F !important; font-size: 26px !important; line-height: 35px !important; font-weight: 600 !important; margin-top: 8rem !important; } .space-bot { font-size: 12px !important; } .life_join_us .rhsBoxDetails { background: none !important; } .text-red { color: #da251c !important; font-size: 50px !important; } .blue-bg { background: #08315F; display: inline-block; padding: 20px; width: 70%; border-top-right-radius: 30px; border-bottom-right-radius: 30px; margin: 2rem 0; } .blue-bg h3 { font-size: 30px; color: #fff; } .blue-bg p { color: #fff; font-size: 20px; } ul.bannerUL li .kotack-protect { width: 100% !important } .redbtn { background: #da251c; } .redbtn:hover { border: 1px solid #da251c !important; color: #da251c; } .fwid { width: 100%; display: inline-block; } .ban-pera { margin-bottom: 10px !important; } .top-text { vertical-align: top; margin-top: 2rem; position: relative; top: 0rem; } .kotpers { margin-bottom: 0 !important; color: #000 !important; } /*280323*/ .secure-list {} .text-blue { color: #08315F !important; } .secure-pera { font-size: 24px !important; margin: 0 !important; } .secure-list { display: inline-block; margin-bottom: 2rem; margin-top: 1rem } .secure-list .lpay { color: #da251c !important; font-size: 20px !important; margin: 0rem; position: relative; padding-left: 15px; } .secure-list .lpay:before { content: ''; position: absolute; width: 6px; height: 6px; background: #da251c; top: 14px; left: 0; border-radius: 50%; } .bkot { font-weight: 600; display: block; width: 100%; margin-bottom: 2rem; font-size: 35px; } .lpay.bkot { font-size: 35px !important; font-weight: 400 !important; } .secure-first p { padding-left: 0 !important; } .secure-first p:before { content: none !important; } /*KGFB*/ ul.bannerUL li .bannerCont.kgfb-banner { width: 440px !important; margin-top: 2rem; margin-left: 4rem; } .kgfb-banner .kgfb-text { font-size: 26px; font-weight: 900; color: #08315F !important; line-height: 47px; } .banner-ref-no { color: #000 !important; font-size: 12px !important; } .junebanner .kgfc-h2 { font-size: 45px; font-weight: 600; line-height: 50px; margin-bottom: 0; font-family: 'Lato-Bold'; } .fortune-pera { font-size: 30px !important; margin-bottom: 0 !important; } .fortune-pera .pera-red { color: #da251c !important; margin-top: 0; margin-top: 0; font-family: 'Lato-Bold' } .invest-box { display: flex; } .pay-get { width: 180px; background: #08315F; border-radius: 20px; box-shadow: 0px -2px 5px 0px #aaa; overflow: hidden; margin: 0px 30px 10px 0 } .head-box { background: #fff; width: 100%; height: 38px; } .head-box h3 { color: #da251c; font-size: 28px; font-weight: 600; text-align: center; box-shadow: -1px 3px 3px 0 #929292; font-family: 'Lato-Bold'; letter-spacing: 1px; } .payvalue h3 { color: #fff; font-size: 26px; letter-spacing: 1px; font-weight: 600; text-align: center; padding: 10px 0 0; font-family: 'Lato-Bold'; } .payvalue p { margin: 0 !important; color: #fff !important; font-size: 16px !important; text-align: center !important; padding: 5px 20px 10px 20px; line-height: 17px; } .blue-btn a, .red-btn a { color: #fff !important; font-size: 24px; padding: 6px 20px; margin-top: 1rem !important; display: inline-block; margin-left: 0rem !important; border-radius: 5px; font-family: 'Lato-Bold'; font-weight: 900; letter-spacing: .2px; width: 180px; text-align: center; } .blue-btn a { background: #08315F !important; } .red-btn a { background: #da251c !important; } .junebanner .fnt-45 { font-size: 45px !important; } .lifecover-h2 { font-weight: 400; margin-bottom: 0; } .get-lifecover { border-top: 2px solid #da251c; } .get-lifecover .life-gr { display: inline-block; width: 48%; padding: 20px 20px 0px 0; } .life-points p { color: #08315F !important; margin: 0 !important; font-weight: 600; } .get-lifecover .life-gr:last-child { padding-top: 10px; padding-bottom: 10px; } #myHomeBanner { display: block !important; } .home .blur { display: none; } .red-btn { margin-top: 20px; } .f-cover { width: 140px; margin-right: 20px; text-align: center; } .f-cover:first-child { width: 110px; } .f-cover h3 { font-weight: 700; line-height: 1.4em; font-size: 16px; color: #08315F; margin-top: 10px; letter-spacing: 0.3px; padding: 0 5px; } .life-points { display: flex; } .life-points img { width: 40px; height: auto; margin-right: 2rem; } .lifecover-h2 { font-weight: 600 !important; } .lifecover-h2 span, .fortune-pera span { font-family: 'Lato-Bold'; } .home .banner { margin-top: -5rem; } .life-points p { position: relative; } .life-points p sup { margin-top: 5px; } .banner em { font-size: 14px; margin-right: 5px; font-style: normal; } .life-points p { font-size: 16px; padding-right: 10px; } .f-cover img { width: 60px; } .f-cover h3 sup, .life-points p sup { margin-top: -2px; display: inline-block; position: absolute; } .space1 {} .happy-content { position: absolute; top: 43%; width: 45%; } .happy-content h3 { font-size: 50px; color: #3bbfc4; font-family: 'Lato-Bold'; line-height: 50px; } .happy-content p { color: #000; font-size: 30px; font-family: 'Lato-Bold'; margin-bottom: 0 !important; } .happy-app-download { display: flex; width: 100%; padding-top: 20px; } .happy-app-download a {} .happy-app-download a img { width: 140px; height: 50px; object-fit: cover; } .kgbf-bans .secure-list { margin-top: 0; } .third-ban .secure-list { margin-bottom: 0px; } .kgbf-newbanner .f-cover { width: 160px; } ul.bannerUL li .kgbf-newbanner .kotack-protect { width: 61% !important; } .no-line { border: none !important; } .digi-helath .life-points p { padding-left: 10px; } .digi-helath .life-points p sup { left: 0; } ul#homeBanner li .exiting-product { width: 52% !important; } ul#homeBanner .fortune-pera { margin-top: 10px !important; } ul#homeBanner .get-lifecover .life-gr { padding-top: 10px; } @media screen and (max-width: 1367px) { ul.bannerUL li .kotack-protect { width: 80% !important; } .red-btn { margin-top: 0; } .junebanner .kgfc-h2 { font-size: 36px; line-height: 36px; } .fortune-pera { font-size: 26px !important; } ul.bannerUL li p { margin-top: 0 !important; } .kgbf-bans .secure-list { margin-bottom: 1rem !important; } .kgbf-bans .kgfc-h2, .kgbf-bans .lifecover-h2 { font-size: 34px !important; width: 70%; } .kgbf-bans .fortune-pera { font-size: 26px !important; } .kgbf-bans .head-box h3 { font-size: 22px; } .head-box { height: 28px; } .blue-btn a, .red-btn a { font-size: 18px; } .payvalue h3 { font-size: 23px; } .f-cover img { width: 50px; text-align: center; } .f-cover h3 { font-size: 16px; } .home .banner { margin-top: -3rem; } .get-lifecover { width: 85%; } .get-lifecover .life-gr { padding-bottom: 0px; } .f-cover { margin-bottom: 1rem; } .happy-content { top: 34%; } .happy-content h3 { line-height: 40px; padding-bottom: 10px; font-size: 34px; width: 70%; padding-bottom: 10px; padding-top: 20px; } .happy-app-download { padding-top: 30px; } .kgbf-bans .secure-list { margin-top: 6px; margin-bottom: 1.7rem !important; } .kgbf-bans.third-ban .secure-list { margin-top: 0px; margin-bottom: 0rem !important; } ul#homeBanner li .exiting-product { width: 65% !important; } } .mobile-view, .mobile-view.activated { display: none; } .desktop-view, .desktop-view.activated { display: block; } .bg-eterm .tooltip { display: flex; align-items: center; width: 60px; } .kgfb_pera { margin-bottom: 0 !important; margin-top: 0px !important; font-size: 16px; color: #000; } .feats-sec .text-center { text-align: center; } .product_head.saving-tax { font-size: 20px !important; padding-right: 30px; line-height: 26px; } .saving_assured { margin-top: 10px; } .feats-buy, .feats-want { text-align: center; } .feats-buy a, .feats-want a { display: inline-block !important; } .get_st { display: block; } /*Mobile slider for exiting*/ @media screen and (max-width: 480px) { .kgfb-mobile-slider { width: 100%; padding-left: 15px; padding-right: 15px; padding-bottom: 0 !important; background: none !important; } .content-absolute { margin-top: 0px; padding: 0 20px; } .content-absolute h3 { text-align: center; font-size: 22px; font-weight: 600; line-height: 25px; margin-bottom: 0.5rem; padding: 0px; font-family: 'Lato-Bold'; } .text-blue { color: #08315F !important; } .content-absolute p { font-size: 18px !important; font-weight: 600; padding: 0px; line-height: 22px; text-align: center; font-family: 'Lato-Bold'; } .content-absolute p .pera-red { color: #da251c !important; font-weight: bold; } .mobile-ban { text-align: center; } .mobile-ban img { margin: auto; height: 185px !important; object-fit: cover; width: auto; text-align: center; display: inline-block; } .home-header { position: relative; } .red-btn a { background: #da251c !important; border: none; text-align: center; border-radius: 10px; color: #fff !important; margin: 10px auto !important; height: 40px; font-size: 22px; max-width: 180px !important; text-transform: capitalize; letter-spacing: 1px; padding: 1px 20px; margin-right: 10px !important; } .red-btn { margin-top: 1rem; position: relative; top: 30px; z-index: 99; text-align: center; } .f-cover { width: 100px; margin-top: 1rem; text-align: center; } /* .f-cover:first-child{width: 50px;}*/ .f-cover h3 { font-weight: 700; font-size: 12px; color: #08315F; line-height: 16px; margin-top: 10px; letter-spacing: 0.3px; } .f-cover img { width: 40px; height: auto; text-align: center; display: inline-block; } .red-text { color: #da251c !important; } .sec-slider .red-btn { padding-bottom: 10px; margin-bottom: 2.5rem; margin-top: 0; } .blue-text { color: #08315F; } .life-points { display: flex; } .life-points img { width: 30px; ; height: 30px; object-fit: cover; margin-right: 15px; } .get-lifecover { padding: 0 15px; } .life-gr { padding-bottom: 6px; } .life-gr:last-child { padding-bottom: 0; } .life-points p { color: #08315F; font-weight: 600; font-size: 14px; margin-top: 1px; padding-left: 5px !important; } .mobile-ban img { margin: auto; height: 185px !important; object-fit: cover; width: auto; text-align: center; } .lifecover-btn { top: 20px; margin-bottom: 30px; } .online-but .btn-online { background: #da251c !important; color: #fff; } .buy-imgs5 { position: absolute; right: 0; top: 0; background-image: url(../images/Kotak-Lifetime.svg); background-repeat: no-repeat; height: 65px; width: 65px } .buy-imgs5:hover { background-image: url(../images/Kotak-Lifetime-hover.svg) } .buy-imgs6 { position: absolute; right: 0; top: 0; background-image: url(../images/Protect-India.svg); background-repeat: no-repeat; height: 65px; width: 65px } .buy-imgs6:hover { background-image: url(../images/Protect-India-hover.svg) } .buy-imgs7 { position: absolute; right: 0; top: 0; background-image: url(../images/Kotak-Guaranteed-Fortune-Builder.svg); background-repeat: no-repeat; height: 65px; width: 65px } .buy-imgs7:hover { background-image: url(../images/Kotak-Guaranteed-Fortune-Builder-hover.svg) } .faq { margin-top: 5rem !important; } .buy-imgs, .buy-imgs1, .buy-imgs2, .buy-imgs3, .buy-imgs4, .buy-imgs5, .buy-imgs6, .buy-imgs7 { position: relative !important; } .kgfb-newmobile-banner .f-cover { width: 120px; } .get-lifecover .life-gr { width: 100%; } .get-lifecover { border: none !important; margin: auto !important; } .life-points p sup { left: -5px; } .mobile-view, .mobile-view.activated { display: block !important; } .desktop-view, .desktop-view.activated { display: none !important; } .get-lifecover .life-gr { padding-top: 5px !important; } .lifecover-btn { top: -10px } .kgfb_pera { text-align: left; } .bg-eterm .tooltip { display: block; } .saving-second-product li span { width: 90%; } .feature_head { text-align: left; } .kotak-e-term-plan span { width: 90%; } .blog-term-btn a { padding: 10px 0 !important; } #best-ulip-plan .mar-side-left svg { width: 100%; } .bor .accordion h3 { margin-left: 0; } .acc-div-mob .bor { margin-bottom: 0; } } /*End Home page slider*/ .mx-350 { max-width: 350px; margin-left: auto; } .retire-feature { padding-left: 30px !important; } .retirement-card { padding-bottom: 10px !important; } .retirement-card .product_head { margin-top: 0 !important; margin-bottom: 0 !important; } @media screen and (max-width: 480px) { .retirement-card .feats-sec li { margin-bottom: 10px; } .retirement-card .feats-want a { width: 91% !important; padding: 9px 0; } footer .mobilechat { right: 0 !important; bottom: 43px !important; } .feature_head { text-align: left; } } /*Experiment: Blog Content Representation */ /*Blog 1*/ .authorBox { margin-top: 20px; margin-right: 20px; display: flex; justify-content: space-around; align-items: center; padding-bottom: 20px; } .authorDetails { display: flex; flex-direction: row; justify-content: space-between; gap: 40px; align-items: center; } .article-date { display: flex; align-items: center; } .authorName, .authorReview { margin: 2px 0 !important; padding: 0; font-size: 16px; font-weight: 400; display: flex; align-items: center; color: #000; } .authorImg, .authorReviewImg { width: 75px; height: 75px; background-color: #ccc; display: block; margin-right: 20px; border-radius: 50%; overflow: hidden; border: 4px solid #e5e5e5; } .authorImg img, .authorReviewImg img { border-radius: 50%; height: 66px; object-fit: cover; } .articleDate, .articleRead { margin: 2px 0 !important; font-size: 16px; font-weight: 500; color: #404040; } .blogsStage { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 25px; } .stages { border: 1px solid #AB2020; border-top: 5px solid #AB2020; border-radius: 8px; min-width: 250px; min-height: 240px; padding: 30px 20px; position: relative; } .stage-no { margin: 0 0 10px 0 !important; } .stage-no span { background-color: #AB2020; color: #FFF !important; padding: 8px 12px; border-radius: 15px; } .blogSection { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; margin: 15px 0; } .section1 { max-width: 390px; min-height: 320px; padding: 30px 20px 5px; border: 1px solid #cccccc; border-radius: 8px; /* position: relative; */ } .section1:hover { background-color: #FFF3F3; border: 1px solid #AB2020; border-radius: 8px; } .blogsTooltip { position: relative; cursor: pointer; } .blogsTooltip .tooltiptext { visibility: hidden; width: 650px; background-color: #FFF; border: 1px solid #CCC; color: #000; text-align: left; border-radius: 6px; padding: 5px 0; position: absolute; z-index: 1; top: 100%; left: 0; margin-left: -60px; font-size: 14px; padding: 12px; box-shadow: 0 1px 15px -2px #c1c1c1; } .blogsTooltip .tooltiptext::after { /* content: ""; position: absolute; bottom: 100%; left: 50%; margin-left: -5px; border-width: 5px; border-style: solid; border-color: transparent transparent black transparent; */ content: ""; border: 1px solid #cccc; border-bottom: none; border-right: none; height: 16px; width: 16px; position: absolute; top: 0; right: calc(70% - 8px); transform: translatey(-9px) rotate(45deg); background-color: #fff; } .blogsTooltip:hover .tooltiptext { visibility: visible; } .nameTag { color: #0b396b; font-weight: 700; } .vSeperation { border-left: 2px solid #c1c1c1; height: 50px; } .nameTitle div { display: flex; align-items: center; } .nameTitle img { width: 20px !important; height: 20px; margin-bottom: 2px !important; margin-right: 8px; } .ctaAnimation { text-transform: capitalize !important; font-size: 15px !important; font-weight: 500 !important; position: relative !important; overflow: hidden; } .ctaAnimation::before { position: absolute; content: ''; display: inline-block; top: -180px; left: 0; width: 15px; height: 100%; background-color: #fff; animation: shiny-btn1 3s ease-in-out infinite; } @media screen and (max-width: 1366px) { .authorDetails { gap: 10px; } } @media (max-width: 1367px) { .midwrappercss { width: 1150px; } } @media screen and (max-width: 480px) { .blogSection, .blogsStage { float: left; width: 100%; } .blogsStage { overflow-x: scroll; word-break: break-word; } .blogsStage::-webkit-scrollbar { display: none; } .authorBox { margin-top: 0px; display: flex; flex-direction: column; margin-right: 0; align-items: self-start; } .authorDetails { display: flex; flex-direction: column; justify-content: space-between; gap: 15px; align-items: center; } .nameTitle { display: flex; justify-content: space-between; align-items: center; } .vSeperation { display: none; } .article-date { margin-top: 15px; } .blogsTooltip .tooltiptext { visibility: hidden; width: 340px; background-color: #FFF; border: 1px solid #CCC; color: #000; text-align: left; border-radius: 6px; padding: 5px 0; position: absolute; z-index: 1; top: 85%; left: 13%; font-size: 14px; padding: 12px; box-shadow: 0 1px 15px -2px #c1c1c1; } } /* Default CSS */ @keyframes shiny-btn1 { 0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; } 80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; } 81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; } 100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; } } @-webkit-keyframes shiny-btn1 { 0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; } 80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; } 81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; } 100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; } } .blogsStage { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 25px; } .stages { border: 1px solid #AB2020; border-top: 5px solid #AB2020; border-radius: 8px; min-width: 250px; min-height: 240px; padding: 30px 20px; position: relative; } .stage-no { margin: 0 0 10px 0 !important; } .stage-no span { background-color: #AB2020; color: #FFF !important; padding: 8px 12px; border-radius: 15px; } .blogSection { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; margin: 15px 0; } .section1 { max-width: 48%; min-height: 320px; padding: 30px 20px 5px; border: 1px solid #cccccc; border-radius: 8px; /* position: relative; */ } .section1:hover { background-color: #FFF3F3; border: 1px solid #AB2020; border-radius: 8px; } @media screen and (max-width: 480px) { .ulip-various-fact .typescard { width: 100%; padding-left: 15px !important; padding-right: 15px !important; } .ulip-various-fact .typescard p { padding-left: 0; padding-right: 0; } .ufunds-icon { display: inline-block; } .blogSection, .blogsStage { float: left; width: 100%; } .blogsStage { overflow-x: scroll; word-break: break-word; } .blogsStage::-webkit-scrollbar { display: none; } .authorBox { margin-top: 0px; display: flex; flex-direction: column; margin-right: 0; align-items: self-start; } .authorDetails { display: flex; flex-direction: column; justify-content: space-between; gap: 15px; } } .BlogsContainer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; } .blogsContent { padding: 8px 20px; max-width: 380px; min-height: 490px; border: 1px solid #CCC; border-radius: 8px; } .best-invest #topic1 .blogsContent h3 { margin-left: 0 !important; } .blogsContent:hover { background-color: #FFF3F3; border: 1px solid #AB2020; border-radius: 8px; } .best-invest #topic1 .blogsContent h3 { margin-left: 0 !important; font-size: 18px !important; margin-bottom: 8px !important; } .blogsContent h3 b { padding-bottom: 5px !important; border-bottom: 2px solid #0b396b; } .halfBorder { margin-right: auto; margin-bottom: 15px; width: 50px; border-radius: 0.25rem; height: 3px; background: #0b396b; } /*IRDAI Banner*/ .irda-group .f-cover { width: 110px; border-right: 2px solid #08315F; margin-right: 0; padding-right: 0; } .irda-group .f-cover:last-child { border-right: 0; } .irdai-icon { background: url(../images/IRDAI-icons-sprites.webp); width: 80px; background-size: 200px; height: 80px; display: inline-block; margin-left: 10px; } .id1 { background-position: -295px 0px } .id2 { background-position: 0px -200px } .id3 { background-position: 0px -80px } .id4 {} .id5 { background-position: -310px -195px } .id6 { background-position: -100px -70px; } .serv-toch { color: #000 !important; } /*End IRDAI Banner*/ @media screen and (max-width: 480px) { .authorBox { margin-top: 0px; display: flex; flex-direction: column; margin-right: 0; align-items: self-start; } .best-invest .authorName, .best-invest .authorReview { margin-bottom: 20px !important; } .blog-body-content { margin-top: 0; } .mar-left1 { width: 85% !important; } .mar-left { width: 90% !important; } .authorDetails { display: block; flex-direction: column; justify-content: space-between; gap: 15px; } .blogsContent { min-height: 100%; } .mobile-svg svg { display: none; } /*IRDAI Banner*/ .irda-group .f-cover { width: 110px; border-right: 2px solid #08315F; margin-right: 0; padding-right: 0; } .irda-group .f-cover:last-child { border-right: 0; } .irdai-icon { background: url(../images/IRDAI-icons-sprites.webp); width: 50px; background-size: 120px; height: 50px; display: inline-block; margin-left: 10px; } .id1 { background-position: -295px 0px } .id2 { background-position: 0px -300px } .id3 { background-position: 0px -45px } .id4 {} .id5 { background-position: -310px -115px } .id6 { background-position: -60px -40px } /*End IRDAI Banner*/ } .insuranceSections { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin: 10px 0; } .blogBox { /* min-height: 380px; */ /* max-width: 250px; */ border: 1px solid #ccc; border-left: 3px solid #da251c; border-radius: 10px; padding: 15px !important; } .best-invest #topic1 .blogBox h3 { margin-left: 0 !important; } .blogBox:hover { border: 1px solid #da251c; border-left: 3px solid #da251c; } .blogBox h3 { margin-left: 0 !important; margin: 5px 0 10px !important; } .blogBox h3 span { border-bottom: 2px solid #0b396b; padding-bottom: 4px; } .blogBox p { margin-right: 0 !important; } .listSection { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; } .listSections { border: 1px solid #ccc !important; border-top: 5px solid #0b396b !important; border-radius: 12px; padding: 20px; width: 48%; min-height: 120px; margin: 10px 0; } .listSections .t1 { background: none; color: #000; padding-left: 0; display: inline-block; width: 70%; text-align: left; vertical-align: text-bottom; } .blog-body-content #topic1 .listSections h3 { margin-left: 0 !important; margin-top: 1rem !important; } .listSections p { display: flex; text-align: left; justify-content: space-between; align-items: center; } .listSections span { border-radius: 50%; background-color: #0b396b; color: #FFF; width: 40px; height: 40px; padding: 7px 14px; text-align: center; margin-right: 15px; } .btnLink a { text-transform: capitalize !important; font-size: 15px !important; font-weight: 500 !important; position: relative !important; overflow: hidden; } .btnLink a::before { position: absolute; content: ''; display: inline-block; top: -180px; left: 0; width: 15px; height: 100%; background-color: #fff; animation: shiny-btn1 4s ease-in-out infinite; } .bg-gray a.redBtn, .blog-head a { text-transform: capitalize !important; font-size: 15px !important; font-weight: 500 !important; position: relative !important; overflow: hidden !important; } .bg-gray a.redBtn::before, .blog-head a::before { position: absolute !important; content: '' !important; display: inline-block !important; top: -180px !important; left: 0 !important; width: 15px !important; height: 100% !important; background-color: #fff !important; animation: shiny-btn1 4s ease-in-out infinite !important; } /*End Experiment: Blog Content Representation */ /*Menu buy Online*/ .menu-buy { position: relative; border-radius: 12px; overflow: hidden; } .menu-buy::before { position: absolute; content: ''; display: inline-block; top: -180px; left: 0; width: 10px; height: 100%; background-color: #da251c; animation: shiny-btn1 4s ease-in-out infinite; } /*End Menu buy Online*/ .gsp-design #partnering-secure-tomorrow { display: none !important; } a.linkedin { text-align: right; float: right; } .term-blog .reportBox img { width: 100%; height: 150px; object-fit: cover; overflow: hidden; } .mobile-feat .tab-detail .tabcontent { display: block !important; } .blog-head .best-card .ulip-btn a { padding-top: 2px !important; } .book-summary:before { background-position:-230px -173px; width: 40px; height: 40px; margin-left: 5px; } /*Pay My Premium*/ .tab_tab { overflow: hidden; display: flex; justify-content: center; } .tab_tab img { width: 50px; height: 50px; } .tab_tab .tablinks_tablinks { background-color: inherit; text-align: center; border: none; outline: none; cursor: pointer; padding: 20px 75px 0px; transition: 0.3s; height: unset; } .tab_tab .tablinks_tablinks:hover {} .tab_tab .tablinks_tablinks.active p { border-bottom: 3px solid #ED3237; margin: 0; color: #003366; } .tablinks_tablinks p { font-family: 'Lato-Bold'; padding: 0px 10px 5px; } /* Style the tab content */ .tabcontent_tabcontent { display: none; margin-top: 20px; padding: 28px 58px; border-top: none; border: 1px solid #DCDCDC; border-radius: 12px; } .tabcontent_tabcontent p { float: none; width: 100%; font-size: 16px; font-weight: 500; color: black; max-width: 863px; margin-bottom: 10px; } .pay-breadcumb { top: 110px; background: #F1F1F1; } .pay-prem-bg { background: #efefef; } .no_need { font-size: 16px; font-weight: 500; color: black; list-style-type: disc; } .white-bg { background: #fff; } .pad-bot-10 { padding-bottom: 4rem; } .register { color: #003CFF; font-size: 16px; font-weight: 400; } .register:hover { color: #003CFF; font-size: 16px; font-weight: 400; } .midWrapper { width: 1150px; margin: 0 auto; } .payment .premium { font-size: 24px; line-height: 100%; color: #000000; text-align: center; } .card { background: #FFF; border: 1px solid #DCDCDC; padding: 38px 39px; height: 100%; float: none; } .payment .card .online_pay { width: 256px; font-size: 17px; color: #000000; text-align: center; font-weight: 400; float: none; } .payment .card .online_pay1 { font-size: 17px; color: #000000; text-align: center; font-weight: 400; float: none; width: 230px; } .payment .pay { text-align: center; } .two-premium { width: 100%; display: flex; justify-content: center; gap: 31px; margin-bottom: 49px; } /* .two-premium .column{width: 50% !important;} */ .payment .btn-red { display: inline-block; padding: 14px 26px; width: 100%; max-width: 143px; background: #ED3237 0% 0% no-repeat padding-box; border-radius: 23px; text-align: center; font-size: 14px; color: #FFF; font-weight: 300; margin-top: 18px; } .payment .btn-red1 { display: inline-block; padding: 14px 26px; width: 100%; max-width: 212px; background: #003366 0% 0% no-repeat padding-box; border-radius: 23px; text-align: center; font-size: 14px; color: #FFF; font-weight: 300; margin-top: 18px; } .payment .kotak1 { font-size: 18px; color: #000000; font-weight: 300; } .payment .choose { margin: 15px 0px 20px 0px; font-size: 18px; color: #000000; font-weight: 300; } .payment .card .know { display: inline-block; color: #ED3237; text-decoration: underline; text-align: center; font-size: 14px; font-weight: 300; margin-bottom: 20px; } .more { text-align: center; margin-top: 25px; } .tabcontent_tabcontent p a { color: #497cb6; } .pay-card { box-shadow: none; } @media (max-width:480px) { .two-premium { display: block; } .two-premium .column { margin-bottom: 2rem; } .tab_tab .tablinks_tablinks { padding: 20px 5px 0px; } .tabcontent_tabcontent { padding: 28px 16px; } .ecs-reg { display: block !important; } .ecslist { padding-right: 0 !important; } .register { word-break: break-all; } .tabcontent_tabcontent p a { word-break: break-all; } .tabcontent_tabcontent .tableClass td { padding: 10px !important; } .pay-breadcumb { top: 0; margin-top: 0; } .pay-breadcumb .breadcrumb { display: block; } } /*End Pay my premium*/ /*Saving plan page revamp css*/ /* Actual Css starts below */ #authorSection { margin: 20px 0; z-index: 1; } .fullBg { background-color: #F5F5F5; } .greyBg { background-color: #F5F5F5; padding: 3% 0; } .topSection-grid { display: grid; grid-template-columns: 35% 60%; align-items: flex-start; gap: 20px; } .savingsTitle { font-size: 30px; font-weight: 500; color: #003366; letter-spacing: 0.3px; border-bottom: 1px solid #CCCCCC; margin: 10px 0 10px 0; text-align: left; font-family: 'Lato-Bold'; } .savingsDesc { font-size: 16px; font-weight: 400; text-align: left; letter-spacing: 0.3px; color: #000; margin: 10px 0; } .productCard-flex { display: flex; justify-content: space-between; align-items: center; } .productCard1, .productCard2 { padding: 30px 25px 20px; border: 1px solid #CEB0AC; border-radius: 8px; max-width: 320px; min-height: 425px; position: relative; } .productCard1::before, .productCard2::before { content: ""; position: absolute; top: -3px; width: 75%; height: 3px; background-color: #AB2020; text-align: center; left: 12%; } .productCard2::before { background-color: #003366; } .productCard1 .productCard1-title { color: #AB2020 !important; font-size: 24px; font-weight: 800; border-bottom: 1px solid #AB2020; padding-bottom: 10px; margin-top: 10px; font-family: 'Lato-Bold'; } .productCard1-desc, .productCard2-desc { font-size: 16px; font-weight: 400; color: #000; } .productCard1-amt, .productCard2-amt { font-weight: bold; } .productCard1-subdesc, .productCard2-subdesc { margin: 15px 0; font-size: 16px; font-weight: 400; color: #000; line-height: 30px; } .productCard1-value, .productCard2-value { font-size: 30px; font-weight: 700; } .productCard1-value sup, .productCard2-value sup { font-size: 10px; } .productcta1 { text-align: center; margin: 25px 0 10px; } .product-cta1 { background-color: #AB2020; color: #fff; font-size: 15px; font-weight: 600; width: 100%; border-radius: 25px; display: inline-block; padding: 12px 0; position: relative; overflow: hidden; } .productCard2 .productCard2-title { color: #003366 !important; font-size: 24px; font-weight: 800; border-bottom: 1px solid #003366; padding-bottom: 10px; margin-top: 10px; font-family: 'Lato-Bold'; } .productcta2 { text-align: center; margin: 25px 0 10px; } .product-cta2 { background-color: #003366; color: #fff; font-size: 15px; font-weight: 600; width: 100%; border-radius: 25px; display: inline-block; padding: 12px 0; position: relative; overflow: hidden; } .product-cta2:hover, .product-cta1:hover, .saveTax-cta:hover { color: #fff; } .product-cta2::before, .product-cta1::before, .savingsCta::before, .savingsPlan-cta1 a::before, .savingsPlan-cta2 a::before, .savingsPlan-cta3 a::before, .whyChoose-flxB a::before, .whyChoose-cta a::before, .saveTax-cta::before, .buySavings-cta a::before, .factors-cta a::before { position: absolute; content: ''; display: inline-block; top: -180px; left: 0; width: 15px; height: 100%; background-color: #fff; animation: shiny-btn1 4s ease-in-out infinite; } .authorBox { display: flex; justify-content: space-around; align-items: center; padding: 20px 0; } .saving-author .authorDetails { display: flex; flex-direction: row; justify-content: space-between; gap: 50px; } .authorName, .authorReview { margin: 2px 0 !important; padding: 0; font-size: 16px; font-weight: 400; display: flex; align-items: center; color: #000; } .authorImg, .authorReviewImg { width: 75px; height: 75px; background-color: #ccc; display: block; margin-right: 20px; border-radius: 50%; } .authorImg img, .authorReviewImg img { border-radius: 50%; } .articleDate, .articleRead { margin: 2px 0 !important; font-size: 16px; font-weight: 500; color: #404040; } .blogsStage { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 25px; } .blogsTooltipSavings { position: relative; cursor: pointer; } .blogsTooltipSavings .tooltiptext { visibility: hidden; width: 450px; background-color: #FFF; border: 1px solid #CCC; color: #000; text-align: left; border-radius: 6px; position: absolute; z-index: 2; top: 100%; left: 00%; margin-left: -60px; font-size: 14px; padding: 12px; box-shadow: 0 1px 15px -2px #c1c1c1; } .blogsTooltipSavings .tooltiptext::after { content: ""; border: 1px solid #cccc; border-bottom: none; border-right: none; height: 16px; width: 16px; position: absolute; top: 0; right: calc(50% - 8px); transform: translatey(-9px) rotate(45deg); background-color: #FFF; } .blogsTooltipSavings:hover .tooltiptext { visibility: visible; z-index: 999; } .nameTag { color: #0b396b; font-weight: 700; } .vSeperation { border-left: 2px solid #c1c1c1; height: 75px; } .nameTitle div { display: flex; align-items: center; } .nameTitle img { width: 20px !important; height: 20px; margin-bottom: 2px !important; margin-right: 8px; } #tableofContent { margin: 25px 0; z-index: 0 !important; } .contenttable { border: 1px solid #DBDBDB; border-bottom: none; border-radius: 8px; padding: 20px 20px 35px; display: grid; grid-template-columns: 48% 48%; gap: 4%; position: relative; } .show-more-height div { height: 230px; overflow: hidden; } .contenttable div { display: flex; flex-direction: column; } .tocText { padding: 8px 20px 5px; margin-left: 40px; max-width: 290px; border-radius: 10px 10px 0 0; border: 1px solid #AEAEAE; border-bottom: none; color: #262626; font-size: 15px; font-weight: 600; text-transform: uppercase; } .tocContent { color: #003366; background-color: #F5F5F5; border-radius: 20px; font-size: 16px; font-weight: 500; margin: 5px 0; padding: 10px; width: 530px; } .tocContent img { padding-right: 5px; } .tocContent:hover { color: #003366; transform: translateX(10px); transition: transform 0.5s ease; } .contenttable .tocReadMore { position: absolute; cursor: pointer; bottom: 0; left: 44%; background-color: #ED3237; padding: 8px 20px; border-radius: 18px; width: 15rem; color: #FFF; z-index: 1; text-align: center; font-size: 14px; font-weight: 600; -webkit-transition: -webkit-transform 0.6s ease-in-out; transition: transform 0.6s ease-in-out; } .show-more-height::after { position: absolute; width: 100%; height: 100px; bottom: 0; left: 0; content: ""; background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(50%, white)); background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 50%); } .mb50 { margin-bottom: 50px; } #whatIsSavingsPlan { margin: 25px 0; } .whatIsSavingsPlan-grid { display: grid; grid-template-columns: 50% 50%; align-items: center; } .savingsContent-title, .keyFeatureSavings-title, .savingsPlan-title, .whoBuy-title, .whySavings-title, .chooseInvest-title, .whenBuy-title, .whyChoose-title, .considerInvest-title, .savingsImportance-title, .longInvest-title, .buySavings-title, .reasonToBuy-title, .factors-title { font-size: 24px; font-weight: 600; letter-spacing: 0.3px; color: #000; font-family: 'Lato-Bold' } .savingsContent-desc, .keyFeatureSavings-desc, .savingsPlan-desc, .whoBuy-desc, .whySavings-desc, .chooseInvest-desc, .whenBuy-desc, .whyChoose-desc, .considerInvest-desc, .longInvest-desc, .buySavings-desc, .reasonToBuy-desc, .factors-desc { color: #000; font-size: 16px; font-weight: 400; letter-spacing: 0.3px; font-family: 'Lato-Regular'; } .inLine-links { color: #006FFF; text-decoration: underline; } .savingsCta { background-color: #ED1C24; color: #FFF; padding: 8px 30px !important; border-radius: 25px; display: inline-block; text-align: center; width: auto; font-weight: 500; margin-top: 2rem; margin-bottom: 2rem; font-size: 18px; position: relative; overflow: hidden; letter-spacing: 0.3px; } .savingsCta:hover { color: #FFF; } #kotakBanner, #keyFeatureSavings, #whoBuy, #whySavings, #chooseInvest, #savingsImportance, #longInvest, #testimonial, #buySavings { margin: 30px 0; } #savingsPlan { margin: 25px 0 0; } .kotakBanner { display: flex; justify-content: space-between; align-items: center; padding: 25px 10px; } .keyFeatureSavings-list, .longInvest-list { /* height: 750px; */ display: flex; flex-wrap: wrap; justify-content: space-between; } .keyFeatureSavings-flx, .benefitsSavings-flx, .whenBuy-flx, .longInvest-flx { display: flex; justify-content: flex-start; align-items: start; width: 550px; margin: 15px 0 10px; } .benefitsSavings-flx { width: 100%; } .keyFeatureSavings-subtitle, .benefitsSavings-subtitle, .whenBuy-subtitle, .considerInvest-subtitle, .longInvest-subtitle, .reasonToBuy-subTitle, .factors-subTitle { font-size: 17px; font-weight: 800; color: #000; letter-spacing: 0.3px; } .keyFeatureSavings-subdesc, .benefitsSavings-subdesc, .whenBuy-subdesc, .considerInvest-subdesc, .longInvest-subdesc, .reasonToBuy-subDesc, .factors-subDesc { font-size: 15px; font-weight: 400; color: #000; letter-spacing: 0.3px; padding-top: 5px; } .pl10 { padding-left: 10px; } .pt10 { padding-top: 10px; } .pt5r { padding-top: 5rem; } .arrowBg { background-color: #003366; border-radius: 50%; padding: 3px; } .keyFeatureSavings-flx { width: 48%; } .arrowIcon { position: relative; width: 24px; height: 24px; cursor: pointer; transition: 0.5s; overflow: hidden; transform: rotate(135deg) } .arrowIcon:after { position: absolute; display: block; content: ""; color: white; width: 20px; height: 17px; top: -4px; border-bottom: solid 2px; transform: translatex(4px); } .arrowIcon:before { position: absolute; display: block; content: ""; color: white; width: 12px; height: 12px; border-top: solid 2px; border-left: solid 2px; top: 50%; left: 3px; transform-origin: 0% 0%; transform: rotatez(-45deg); } .arrowIcon:hover:before { animation: aniArrow01 1s cubic-bezier(0, 0.6, 1, 0.4) 0.5s; } .arrowIcon:hover:after { animation: aniArrow02 1s cubic-bezier(0, 0.6, 1, 0.4) 0.5s; } .savingsPlan-sec { padding: 25px; } .savingsPlan-cards { display: flex; justify-content: space-between; align-items:stretch;gap:20px; } .savingsPlan-card { background-color: #fff; padding: 25px; max-width: 519px; border-radius: 10px; min-height: 491px;width:100%;display:flex;flex-direction:column;justify-content:space-between } .savingsPlan-card:hover, .whoBuy-card:hover, .whySavings-card:hover, .considerInvest-card:hover, .reasonToBuy-card:hover { box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.07); } .savingsPlan-cardTitle { font-size: 22px; font-weight: 800; color: #003366; letter-spacing: 0.3px; font-family: 'Lato-Bold'; } .savingsPlan-cardTitle span { color: #ED1C24; } .titleIcon-flex { display: flex; justify-content: space-between; align-items: center; } .brochureDownloadImg img { width: 100%; height: auto; } .savingsPlan-lists { padding: 15px 0 15px 20px; margin-left: 0; min-height: 271px; } .savingsPlan-lists li { color: #161616; font-size: 15px; font-weight: 400; font-style: normal; letter-spacing: .3px; list-style-type: disc; padding: 5px 0; } .kgbgUrl { text-align: center; } .kgbgUrl a { color: #003366; text-decoration: underline; font-size: 16px; font-weight: 500; } .savingsPlan-cta1, .savingsPlan-cta2, .savingsPlan-cta3 { text-align: center; } .savingsPlan-cta2 a, .whyChoose-cta a, .buySavings-cta a, .factors-cta a { background-color: #ED1C24; color: #FFF; padding: 8px 30px !important; border-radius: 25px; display: inline-block; text-align: center; width: auto; font-weight: 500; margin-top: 2rem; font-size: 18px; position: relative; overflow: hidden; letter-spacing: 0.3px; } .savingsPlan-cta1 a { background-color: #003366; color: #FFF; padding: 8px 30px !important; border-radius: 25px; display: inline-block; text-align: center; width: auto; font-weight: 500; margin-top: 2rem; font-size: 18px; position: relative; overflow: hidden; letter-spacing: 0.3px; } .savingsPlan-cta3 a { background-color: #82772D; color: #FFF; padding: 8px 30px !important; border-radius: 25px; display: inline-block; text-align: center; width: auto; font-weight: 500; margin-top: 2rem; font-size: 18px; position: relative; overflow: hidden; letter-spacing: 0.3px; } .savingsPlan-cta1 a:hover, .savingsPlan-cta2 a:hover, .savingsPlan-cta3 a:hover { color: #FFF; } .pb10 { padding-bottom: 10rem; } .pb5 { padding-bottom: 5rem; } .mb0 { margin-bottom: 0 !important; } .mt25 { margin-top: 25px; } .blueBg { background-color: #003366; padding: 25px; max-height: 200px; } .blueBgS { background-color: #003366; padding: 20px; max-height: 200px; } .blueBg-title { font-size: 30px; font-weight: 500; color: #FFF; letter-spacing: 0.3px; } .textLeft { text-align: left; } .blueBg-grid { display: grid; grid-template-columns: 60% 30%; align-items: flex-start; gap: 50px; } .blueBg-gridR { display: grid; grid-template-columns: 30% 60%; align-items: flex-start; gap: 50px; } .blueBg-img { position: relative; } .blueBg-img img { position: absolute; top: -125px; left: 0; width: 280px; height: auto; } .blueBg-imgS { position: relative; } .blueBg-imgS img { position: absolute; top: -64px; left: 0; width: 280px; height: auto; } .blueBg-imgR { position: relative; } .blueBg-imgR img { position: absolute; top: -114px; left: 0; width: 280px; height: auto; } .blueBgN { background-color: #003366; padding: 20px; max-height: 200px; } .blueBg-imgN { position: relative; } .blueBg-imgN img { position: absolute; top: -65px; left: 0; width: 280px; height: auto; } #benefitsSavings { margin: 4% 0 2%; } .benefitsSavings-title { font-size: 24px; font-weight: 500; color: #000 !important; letter-spacing: 0.3px; font-family: 'Lato-Bold'; } .benefitSavings-desc { font-size: 16px; font-weight: 400; color: #000; } .benefitsOfSavings img { width: 100%; height: auto; margin-top: 2rem; } .benefitsSavings-list { display: grid; grid-template-columns: 50% 45%; align-items: flex-start; gap: 25px; } .benefitsSavings-subdesc ul { padding-left: 25px; } .benefitsSavings-subdesc ul li { color: #161616; font-size: 15px; font-weight: 400; font-style: normal; letter-spacing: .3px; list-style-type: disc; padding: 2px 0; } .whoBuy-cards, .reasonToBuy-cards { display: flex; /* justify-content: space-between; */ align-items: center; gap: 30px; flex-wrap: wrap; margin: 25px 0; } .whoBuy-card, .whySavings-card { background-color: #fff; padding: 25px; max-width: 350px; min-height: 425px; border-radius: 10px; } .whoBuy-subTitle, .whySavings-subTitle { font-size: 18px; font-weight: 600; color: #161616; letter-spacing: 0.3px; margin: 8px 0 4px; } .whoBuy-subDesc, .whySavings-subDesc { font-size: 16px; font-weight: 400; color: #161616; letter-spacing: 0.3px; padding: 5px 0; } .whySavings-cards { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin: 3% 0; } .whySavings-card { border: 1px solid #D8D8D8; min-height: 523px; max-width: 375px; } #fullWBannerR { margin-bottom: 25px; } .chooseInvest-grid { display: grid; grid-template-columns: 7% 92%; align-items: normal; gap: 10px; position: relative; padding: 15px 0; } .chooseInvest-numeric { border: 3px solid #003366; border-radius: 50%; width: 80px; height: 80px; display: flex; justify-content: center; align-items: center; font-size: 20px; font-weight: 500; position: relative; font-family: 'Lato-Bold'; } .chooseInvest-numeric::after { content: ""; position: absolute; width: 10px; height: 35px; right: -3px; top: 26%; background-color: #FFF; } .chooseInvest-numeric::before { content: ''; width: 64px; height: 64px; border: 1px solid #d6d6d6; position: absolute; border-radius: 50%; z-index: 1; box-shadow: 0px 0px 2px 1px #eae9e9; } .chooseInvest-subTitle { font-size: 18px; font-weight: 600; color: #000; letter-spacing: 0.3px; margin: 10px 0 5px; } .chooseInvest-subdesc { font-size: 16px; font-weight: 400; color: #000; letter-spacing: 0.3px; padding-top: 8px; } .textSep { position: absolute; width: 25%; height: 0px; border: 1px solid #003366; left: 75px; } /* .textSep:hover { -webkit-animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; } */ #whenBuy { margin: 25px 0 35px; } .whenBuy-grid { display: grid; grid-template-columns: 45% 55%; align-items: center; } .whenBuy-img { /*padding: 55px;*/ width: 80%; margin-left: 10%; } .whenBuy-img img { width: 100%; height: auto; } #whyChoose { margin: 25px 0; } .whyChoose-flx { display: flex; justify-content: start; align-items: flex-start; gap: 15px; margin: 30px 0 20px; } .whyChoose-flx img { width: 80px; height: 80px; } .whyChoose-subTitle { font-size: 18px; font-weight: 600; color: #000; letter-spacing: 0.3px; } .whyChoose-subdesc { font-size: 16px; font-weight: 400; color: #000; letter-spacing: 0.3px; padding-top: 8px; } .whyChoose-flxB, .considerInvest-flxB { background-color: #FFF3F3; border: 1px solid #CEB0AC; border-radius: 8px; padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; width: 100%; margin-left: auto; } .whyChoose-flxB p, .considerInvest-flxB h3 { font-size: 24px; font-weight: 600; letter-spacing: 0.3px; color: #000; } .whyChoose-flxB a, .considerInvest-flxB a { background-color: #ED1C24; color: #fff; font-size: 15px; font-weight: 600; width: auto; border-radius: 25px; display: inline-block; padding: 12px 20px; position: relative; overflow: hidden; } .whyChoose-cta { margin-left: 8%; } .considerInvest-cards { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin: 15px 0; } .considerInvest-card { border: 1px solid #D8D8D8; border-radius: 8px; background-color: #FFF; padding: 20px; max-width: 370px; min-height: 470px; } .considerInvest-card img { margin: 10px 0; } .considerInvest-subtitle { padding: 8px 0; } .considerInvest-flxB { background-color: #EFF8FF; border: 1px solid #A2B3C1; width: 100%; margin: 5% 0 2%; } .considerInvest-flxB h3 { color: #003366; } .considerInvest-flxB a { padding: 12px 40px; } /* Timeline */ .timeline { width: 100%; max-width: 1150px; background: #fff; position: relative; margin-top: 3%; } .timeline:before { content: ""; position: absolute; top: 0px; left: calc(26% + 14px); bottom: 0px; width: 2px; background: #ddd; } .timeline:after { content: ""; display: table; clear: both; } .timeline-entry { clear: both; text-align: left; position: relative; } .timeline-entry .timeline-title { margin-bottom: 0.5em; float: left; width: 25%; text-align: right; position: relative; } .timeline-entry .timeline-title::before { content: ""; position: absolute; width: 15px; height: 15px; background-color: #fff; border-radius: 100%; top: 0; right: -35px; z-index: 99; border: 2px solid #B5B5B5; } .timeline-entry .timeline-title p { color: #161616; font-size: 16px !important; font-weight: 500; text-align: left; letter-spacing: 0.3px; } .timeline-entry .timeline-title p { margin: 0; font-size: 100%; } .timeline-entry .timeline-body { margin-bottom: 2em; float: right; width: 70%; } .timeline-entry .timeline-body p { line-height: 1.4em; } .timeline-entry .timeline-body p:first-child { margin-top: 0; font-weight: 400; } .timeline-entry .timeline-body p:first-child { margin-top: 0; font-weight: 400; } .timeline-body h3 { color: #161616; font-size: 18px; font-weight: 600; letter-spacing: 0.3px; } .timeline-body p { color: #161616; font-size: 16px; font-weight: 500; letter-spacing: 0.3px; } .saveTax-cta { background-color: #ED1C24; color: #fff; font-size: 15px; font-weight: 600; width: auto; border-radius: 25px; display: inline-block; padding: 12px 20px; position: relative; overflow: hidden; margin: 25px 0 0 30%; } .longInvest-list { margin-top: 10px; } .blueBg-grid4 { display: grid; grid-template-columns: 20% 70%; align-items: flex-start; gap: 50px; } .blueBg-imgR .icon4 { position: absolute; top: -98px; left: 0; width: 200px; height: auto; } .buySavings-img { text-align: center; } .buySavings-img img { margin: 5% 0 0; } .buySavings-cta { text-align: center; } .testimonial-bg { background-image: url(../images/saving-plans/testimonial.svg); background-position: center; text-align: center; margin: 10px auto; padding: 100px; width: 904px; height: 488px; } .testimonial-title { font-size: 24px; font-weight: 500; color: #000; letter-spacing: 0.2px; font-family: 'Lato-Bold'; } .buySavings-cta { margin-bottom: 25px; } #reasonToBuy { margin: 40px 0 25px; } .reasonToBuy-card { border: 1px solid #D8D8D8; border-radius: 8px; padding: 30px 25px; max-width: 340px; min-height: 340px; } .blueBg-gridL { display: grid; grid-template-columns: 60% 40%; align-items: flex-start; gap: 10px; margin: 0 5%; } .blueBg-imgL { position: relative; } .blueBg-imgL img { position: absolute; top: -109px; left: 0; width: 340px; height: auto; } #factors { margin: 35px 0; } .factors-flx { display: flex; justify-content: start; align-items: start; margin: 20px 0 5px; } .factors-cardContent { padding-left: 15px; } .factors-cta { text-align: center; } .deskNone { display: none; } .bottomNav { background-color: #EFF8FF; color: #FFF; position: fixed; bottom: 0; left: 50%; width: 76%; margin: 0 auto; display: grid; grid-template-columns: 70% 30%; align-items: center; padding: 5px 30px; border-radius: 10px 10px 0px 0px; border: 1px solid #003366; text-align: center; transform: translate(-50%, 0); } #save-close { position: absolute; right: -10px; top: -10px; width: 30px; height: 30px; background: #ed1c24; border-radius: 30px; padding: 8px 2px; border-radius: 30px; } .bottomNav p { font-size: 18px; font-weight: 500; color: #003366; letter-spacing: 0.3px; } #bottomSticky { z-index: 2; } .save-offline .op1:before { top: 30px; } .save-offline .op2:before { top: 9rem; } .save-offline .op3:before { top: 14rem; } .save-offline .op4:before { top: 19rem; } .save-offline .op5:before { top: 24rem; } .save-offline .op6:before { top: 28.6rem; } .save-offline .op7:before { bottom: 18.3rem; top: auto; } .save-offline .op8:before { bottom: 13.3rem; top: auto; } .save-offline .op9:before { bottom: 7.3rem; top: auto; } .save-offline .op10:before { bottom: 1.2rem; top: auto; } .save-offline .accelcard { height: 95%; } /* All media queries down */ @media only screen and (max-width:1366px) { .productCard1, .productCard2 { margin-left: 15px; padding: 30px 15px 20px; } .product-cta1, .product-cta2 { font-size: 14px; } .productCard1-value, .productCard2-value { font-size: 24px; } .savingcard-slider .slick-slide img { width: 95%; } .whySavings-card { min-height: 445px; } .blueBg-title { font-size: 26px; } .chooseInvest-grid { gap: 20px; } .reasonToBuy-card { max-width: 300px; min-height: 430px; } .whoBuy-card, .whySavings-card { max-width: 300px; min-height: 485px; } .savingsPlan-card { min-height: 511px; } } @media only screen and (max-width:480px) { .keyFeatureSavings-flx { width: 100%; } .topSection-grid .savingsTitle { font-size: 22px !important; } .topSection-grid { display: grid; grid-template-columns: 100%; align-items: flex-start; gap: 20px; } .productCard-flex { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; margin: 0 15px; } .productCard1, .productCard2 { margin: 10px 0; } .contenttable { grid-template-columns: 100%; gap: 0; padding: 20px 8px 35px; } .show-more-height div { height: 116px; overflow: hidden; } .blogsTooltipSavings .tooltiptext { visibility: hidden; width: 300px; background-color: #FFF; border: 1px solid #CCC; color: #000; text-align: left; border-radius: 6px; position: absolute; z-index: 2; top: 100%; left: 30%; margin-left: -60px; font-size: 14px; padding: 12px; box-shadow: 0 1px 15px -2px #c1c1c1; } .whatIsSavingsPlan-grid { grid-template-columns: 100%; } .savingsPlan-cards { flex-wrap: wrap; } .mobNone { display: none; } .mobblock { display: block; } .blueBg-img .blueBg-imgR, .blueBg-imgS, .blueBg-img, .blueBg-imgR, .blueBg-imgN, .blueBg-imgL { display: none; } .fullBg, .blueBg, .greyBg { background-color: transparent; } #savingsPlan, #whoBuy { background-color: #F5F5F5; } .savingsPlan-card { margin: 10px auto; max-width: 400px; } .blueBg-grid, .blueBg-gridR, .blueBg-grid4, .blueBg-gridL { grid-template-columns: 100%; gap: 0; } #fullWBanner, #fullWBannerR { background-color: #003366; padding: 10px; } .benefitsSavings-list, .chooseInvest-grid, .whenBuy-grid { grid-template-columns: 100%; gap: 0; } .benefitsSavings-flx, .whenBuy-flx { width: 100%; } .whySavings-cards { flex-wrap: wrap; } .chooseInvest-numeric { display: none; } .textSep { left: 0; } .pbm5 { padding-bottom: 5rem !important; } .whenBuy-img { padding: 10px; } .whyChoose-flx img { width: 60px; height: 60px; } .whyChoose-flxB, .considerInvest-flxB { flex-wrap: wrap; width: 100%; gap: 20px; } .considerInvest-cards { flex-wrap: wrap; } .considerInvest-card { margin: 20px 0 0; min-height: 100%; } .timeline-entry .timeline-title { margin-bottom: 0.5em; float: right; width: 90%; text-align: right; position: relative; } .timeline-entry .timeline-body { margin-bottom: 2em; float: right; width: 90%; } .timeline:before { content: ""; position: absolute; top: 0px; left: 10px; bottom: 0px; width: 2px; background: #ddd; } .timeline-entry .timeline-title::before { content: ""; position: absolute; width: 15px; height: 15px; background-color: #fff; border-radius: 100%; top: 5px; left: -32px; z-index: 99; border: 2px solid #B5B5B5; } .timeline-entry .timeline-title h3 { margin-bottom: 8px; } .testimonial-bg { background-image: none; background-position: center; text-align: center; margin: 10px auto; padding: 40px 16px; width: 100%; height: auto; border: 3px solid #035; border-radius: 20px; } .testimonial-bg:before { content: ''; background-image: url(../images/saving-plans/quotes.png); width: 120px; height: 60px; position: absolute; background-size: 100px; top: -3rem; left: 34%; } .testimonial-bg:after { content: ''; transform: rotate(180deg); background-image: url(../images/saving-plans/quotes.png); width: 120px; height: 60px; position: absolute; background-size: 100px; bottom: -3rem; left: 34%; } .tocContent { width: 100%; display: flex; } .contenttable .tocReadMore { left: 30%; } #bottomSticky { display: none !important; } .stepsToBuy ul li { margin: 20px 0; } .stepsToBuy ul li p { font-size: 18px; font-weight: 400; color: #000; } .stepsToBuy ul li .stepsToBuySpan { background-color: #003355; width: 45px; height: 45px; display: block; border-radius: 50%; color: #FFF; text-align: center; display: flex; justify-content: center; align-items: center; font-size: 18px; margin: 0 10px 10px 0; } .savingsImg { display: none; } .savetest .custom-review p { padding-left: 0; padding-right: 0; } .pagingInfo-review-tes { bottom: 30px !important; } #reasonToBuy .pb10 { padding-bottom: 1rem; } .blueBg-title { font-size: 24px; } .accordion-div .accordion { display: flex; align-items: center; } .bor div.accordion span { width: 10px; } .saving-off { margin-top: 3rem !important; } .reasonToBuy-card, .savingsPlan-card, .savingsPlan-lists, .whoBuy-card, .whySavings-card { min-height: 100%; } .savingsPlan-sec { padding-left: 0; padding-right: 0; } #longInvest .pbm5 { padding-bottom: 0; } .savingcard-slider .slick-slide img { width: 100%; height:auto} .whoBuy-card, .whySavings-card { max-width: 100%; } } @media only screen and (max-width: 360px) { .show-more-height div { height: 112px; } } @keyframes shiny-btn1 { /* Animations same animations as insurance plans dont copy if same css is being used*/ 0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; } 80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; } 81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; } 100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; } } @-webkit-keyframes shiny-btn1 { 0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; } 80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; } 81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; } 100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; } } /* Animations same animations as insurance plans dont copy if same css is being used ends*/ @keyframes aniArrow01 { 0% { transform: rotatez(-45deg) translateY(30px) translateX(30px); } 100% { transform: rotatez(-45deg) translateY(-35px) translateX(-35px); } } @keyframes aniArrow02 { 0% { transform: translateX(45px); } 100% { transform: translateX(-44px); } } .saving-acc ul { margin-left: 0; } .saving-acc ul li::marker { list-style-type: none; content: none; } .saving-acc .accelcard .gspview { max-width: 100%; display: inline-block; } .saving-testimonial .custom-review p, .saving-testimonial .custom-review h3 { color: #000 !important; } .saving-testimonial .custom-review .stes-head { font-size: 20px; } .saving-testimonial .custom-review { font-size: 14px; } .stes-head { margin-top: 2rem; font-size: 24px; font-weight: 600; } .testimonial-bg { position: relative; } .pagingInfo-review-tes { position: absolute; bottom: 13rem; bottom: 8rem; left: 48%; font-size: 14px; } .save-offline .onlinegsp li { font-family: 'Lato-Bold'; } .whatIsSavingsPlan-img .glos-card-img { width: 80%; height: 100%; margin-left: 2rem; } .whatIsSavingsPlan-img .glos-card-img .termins { width: 100%; height: 100%; } .save-breadcrumb.savings-breads { top: 110px; } .save-breadcrumb .breadcrumb-ulip { margin-bottom: 0; } .savings-videos { width: 90%; border: 1px solid #000; margin-left: 2rem; padding: 2px; border-radius: 10px; overflow: hidden; } .savings-videos .ytp-chrome-top-buttons { display: none !important; } .save-offline .onlinegsp, .saving-acc .kotaksavcard { background: #fff; } .saving-document .fst-18 { color: #000; } .saving-document p { font-size: 15px !important; } .bullet-dot-top { width: 5px; height: 5px; background: #003366; position: absolute; top: 20px; left: 7rem; z-index: 9; border-radius: 50%; } .bullet-dot-bottom { width: 5px; height: 5px; background: #003366; position: absolute; top: 50px; left: 7rem; z-index: 9; border-radius: 50%; } .save-offline .kotaksavcard li { max-height: 100% !important; margin-bottom: 10px; } .savings-breads .breadcrumb-ulip { margin-left: 0; } .save-offline.bestsavgsp .accordioncard p { font-size: 16px; color: #000; } #saving-plans-faqs .bor { height: auto; } .save-offline.bestsavgsp .accelclr .accordioncard p { color: #c41425 !important; } .savingsPlan-desc { padding-bottom: 20px; } .save-faq .panel .gspnewlis p { font-weight: 400; } .savesub-faq { font-weight: 600 !important; padding-top: 1rem !important; } .accordion-btns-gsp .bor p { font-size: 16px; } /*New changes Saving plan*/ .saving-banner { top: 127px; } .considerInvest-flxB p { font-weight: 700; color: #003366 } .longInvest-list .longInvest-flx { width: 48%; } .saving-testimonial .slick-prev { background-image: url(../images/btnslickprev.svg) !important; background-size: auto; left: -60px; z-index: 1000; right: 67px; top: 20%; bottom: 1px; background-color: transparent; border: 0; font-size: 0; height: 25px; width: 25px; position: absolute; padding: 0; margin: 0; } .saving-testimonial .slick-next { background-image: url(../images/btnslicknext.svg) !important; background-size: auto; left: unset; z-index: 1000; right: -50px; top: 20%; bottom: 1px; background-color: transparent; border: 0; font-size: 0; height: 25px; width: 25px; position: absolute; padding: 0; margin: 0; } .productCard1 .productCard1-title, .productCard2 .productCard2-title { letter-spacing: 0.3px } .contenttable .tocReadMore, .whyChoose-flxB a, .considerInvest-flxB a, .saveTax-cta { letter-spacing: 0.3px; font-weight: 500; font-size: 18px; } .blt { display: block; } .product-cta1, .product-cta2 { letter-spacing: 0.3px; font-weight: 400; } /*End New changes Saving plan*/ @media (max-width:1366px) {.whySavings-card {  min-height: 672px;} .blueBg-imgL img { top: -116px; } .blueBg-img img { top: -129px; } .blueBg-imgR img { top: -118px; } .blueBg-imgS img { top: -71px; } .blueBg-imgN img { top: -72px; } .blueBg-imgR .icon4 { top: -95px; } .topSection-grid { gap: 10px } } @media (max-width:1280px) { .blueBg-imgL img { top: -117px; } .blueBg-img img { top: -129px; } .blueBg-imgR img { top: -117px; } .blueBg-imgS img { top: -71px; } .blueBg-imgN img { top: -72px; } .blueBg-imgR .icon4 { top: -96px; } .topSection-grid { gap: 10px } /*new*/ } @media (max-width:480px) { .save-breadcrumb.savings-breads { top: 0; } .saving-author .nameTitle { display: block; } .saving-author .authorImg, .saving-author .authorReviewImg { width: 40px; height: 40px; margin-right: 10px; } .saving-author .authorDetails { gap: 30px; } .saving-author .blogsTooltipSavings .tooltiptext { width: 96%; left: 17%; } .saving-author .blogsTooltipSavings { position: static; } .saving-author .nameTitle div { font-size: 13px; } .kotakBanner { display: block; padding: 0; } /* .savingcard-slider .slick-slide {width: 350px !important; margin-right: 10px;}*/ .savings-videos { width: 100%; margin-left: 0; } .savings-videos iframe { height: 250px; } #kotakBanner { margin-top: 10px; margin-bottom: 10px; } .saving-off .bor:first-child .tab-detail {} .saving-off .accelcard .gspview { text-decoration: none !important; } .saving-off .accelcardacc ul li { list-style-type: none; padding-left: 20px !important; padding-bottom: 4px; } .saving-off .tab-detail li:last-child { margin-bottom: 0; } .saving-off .kotaksavcard li:before { top: 7px; } .saving-off .kotaksavcard li { min-height: initial; max-height: initial; } .saving-off .accelcardacc { padding-bottom: 10px; } .saving-off .bor { height: auto; } .saving-off .gspaccbor p { font-size: 16px; color: #000; border-left: 1px solid #dbdbdb; border-right: 1px solid #dbdbdb; font-weight: 400; border-bottom: 1px solid #dbdbdb; padding: 15px !important; width: 100%; } .saving-off .gspaccbor .active p {} .saving-testimonial .custom-review .stes-head { font-size: 16px; } #saving-plans-faqs .bor:first-child .tab-detail {} /*New changes Saving plan*/ .saving-banner { top: 0px; } .productCard-flex { margin: 0 } .arrowIcon:after { top: -5px; width: 16px; } .arrowIcon { width: 22px; height: 22px; } .arrowIcon:before { left: 2px; width: 10px; height: 10px; } .blueBg, .blueBgS, .blueBgN { display: inline-block; max-height: 100%; padding: 15px 0; } .longInvest-list .longInvest-flx { width: 100%; } .pbm5 { padding-bottom: 0 !important; } .reasonToBuy-card { max-width: 100%; } .textSep { display: none; } .saving-testimonial .custom-review p:before { content: none; } .testimonial-bg { padding: 40px 30px; } .saving-testimonial .slick-next { right: -26px; top: 30%; } .saving-testimonial .slick-prev { top: 30%; left: -25px; } .savetest .custom-review p { font-size: 14px; } .stes-head { padding-bottom: 20px; margin-top: 0; } .accordion-btns-gsp .accordion { align-items: baseline; } .accordion-btns-gsp .bor div.accordion { padding-bottom: 10px; } .productCard1, .productCard2 { margin-left: auto; margin-right: auto; } .saving-off .accelcardacc { height: auto; } .blt { display: inline-block; } .product-cta1, .product-cta2, .contenttable .tocReadMore, .whyChoose-flxB a, .considerInvest-flxB a, .saveTax-cta, .savingsCta { font-size: 15px; } } /*Saving plan page sprites images*/ .brochers { background: url(../images/saving-plans/sprites-savings-plan.webp) no-repeat; width: 45px; height: 45px; display: inline-block; background-position: 0px -340px; } .sp-saving { background: url(../images/saving-plans/sprites-savings-plan.webp) no-repeat; width: 50px; height: 50px; } .sps1 { background-position: -345px -241px; } .sps2 { background-position: -255px -241px } .sps3 { background-position: -162px -241px; } .sps4 { background-position: -58px -204px; background-size: 410px; } .sps5 { background-position: 0px -241px } .sp-need { background: url(../images/saving-plans/sprites-savings-plan.webp) no-repeat; width: 60px; height: 70px; } .spn1 { background-position: -435px -118px } .spn2 { background-position: -333px -121px; } .spn3 { background-position: -241px -121px; } .sp-india { background: url(../images/saving-plans/sprites-savings-plan.webp) no-repeat; width: 90px; height: 90px; background-size: 470px; } .spind1 { background-position: -116px -111px } .spind2 { background-position: 0px -112px } .spind3 { background-position: -366px 5px } .spind4 { background-position: -248px 0px } .whyChoose-flx div:nth-child(2) { width: 100%; } .sp-cons { background: url(../images/saving-plans/sprites-savings-plan.webp) no-repeat; width: 65px; height: 65px; } .spco1 { background-position: -185px -25px } .spco2 { background-position: -93px -22px } .spco3 { background-position: 0px -22px } .save-offline .kotaksavcard .gspview { font-size: 18px; } @media only screen and (max-width:480px) {.listspace{min-height:unset !important;}.off-save{margin-top:11rem !important;} .sp-india { background-size: 400px; } .spind1 { background-position: -100px -97px; } .spind2 { background-position: 0px -95px; } .spind3 { background-position: -312px 5px; } .spind4 { background-position: -212px 0px; } } /*End Saving plan page revamp css*/ /*Pagination for Blog*/ #pagination { margin: 2rem 0; padding: 0; text-align: center; display: flex; justify-content: center; } #pagination li {} #pagination li a { display: inline-block; text-decoration: none; padding: 5px 10px; color: #000 } /* Active and Hoverable Pagination */ #pagination li a { border-radius: 5px; -webkit-transition: background-color 0.3s; transition: background-color 0.3s; font-size: 14px; } #pagination li a.active { background-color: #da251c; color: #fff; border-radius: 50%; width: 30px; height: 30px; padding-left: 0; padding-right: 0; text-align: center; } #pagination li a:hover:not(.active) {} #pagination li a:hover { color: #da251c } #pagination li a.active:hover { color: #fff } .w-70 { width: 70%; } .align-item-center { align-items: center; } .align-item-center .parttxt { line-height: 30px !important; } #pagination .kliBack { position: relative; } .page-left, .page-right { position: relative; } .page-left a { top: 4px !important; left: -20px !important; } .page-left .kliBack:before { left: 15px; } .page-right a { top: 4px !important; right: -20px !important; } .page-right .kliBack:before { left: 10px; transform: rotate(229deg); } .profile-social { text-align: right; } .profile-social .linkedin { display: inline-block; text-align: right; background-color: #2e78b6; color: #fff; width: 30px; height: 30px; border-radius: 30px; } .profile-social .linkedin i { font-size: 20px; padding: 0; text-align: center; position: relative; left: -6px; top: 4px; } .authorDetails .tooltiptext p { margin-bottom: 10px; } .pagintaion-disbled { display: none !important; } /*End Pagination for Blog*/ /*Interling blog Calculator*/ #topic1 .blog-stip-card { background-color: #EFF8FF; border: 1px solid #A2B3C1; border-radius: 8px; margin-bottom: 10px; } #topic1 .blog-stip-card p { padding-left: 20px; margin-bottom: 0 !important; align-items: center; display: flex; } #topic1 .blog-stip-card .bl-stick { display: flex; background-color: none; border: 0; border-radius: 0; margin: 0 !important; align-items: center; justify-content: space-around; padding: 10px 0; border-bottom: 1px solid #b9b9b9; } /*#topic1 .bl-group .blog-stip-card .bl-stick a:after { content: ""; display: block; box-sizing: border-box; position: absolute; width: 6px; height: 6px; border-top: 2px solid; border-right: 2px solid; transform: rotate(45deg); right: 5px; bottom: 22px; animation: 3s slide-right;}*/ #topic1 .bl-group .blog-stip-card .bl-stick a:after { content: ''; background: url(../images/line-arrow.svg); width: 20px; height: 20px; position: absolute; background-size: 17px; background-repeat: no-repeat; animation: 3s slide-right; animation-iteration-count: infinite; top: 20px; left: 90%; } /*#topic1 .bl-group .blog-stip-card .bl-stick a:before{content:''; position: absolute; width: 10px; height: 1px; background: #000; right: 5px; bottom: 2.44rem; animation: 3s slide-right; }*/ #topic1 .bl-group .blog-stip-card .bl-stick a { padding: 12px 30px 12px 0; } #topic1 .blog-stip-card .bl-stick .fnt-18 { width: 65%; margin-bottom: 0; padding-left: 10px; } #topic1 .blog-stip-card .bl-stick a { color: #fff !important; background-color: #ED1C24; font-size: 15px; font-weight: 600; width: auto; border-radius: 25px; display: inline-block; padding: 12px 20px; position: relative; overflow: hidden; } #topic1 .bl-group .blog-stip-card .bl-stick p, #topic1 .bl-group .blog-stip-card p { font-size: 15px !important; font-weight: 700 !important; } #topic1 .bl-group .blog-stip-card .bl-stick .fnt-18 { padding-left: 10px !important; } #topic1 .bl-group .blog-stip-card .bl-stick a { background: none; color: #000 !important; } #topic1 .bl-group .blog-stip-card .bl-stick { padding: 0; position: relative; width: 100%; } #topic1 .blog-stip-card .bl-stick:last-child { border-bottom: 0; } @keyframes slide-right { from { margin-left: -10%; } to { margin-left: -7%; } } @media only screen and (max-width:480px) { #topic1 .blog-stip-card .bl-stick { display: inline-block; padding-left: 10px; } #topic1 .blog-stip-card .bl-stick p { width: 100% !important; padding-bottom: 10px; padding-left: 0 !important; } #topic1 .blog-stip-card { display: inline-block; } #topic1 .bl-group .blog-stip-card .bl-stick .fnt-18 { padding-left: 20px !important; } .bl-stick a { padding: 12px 30px 12px 20px; } } /*End Interling blog Calculator*/ .health-sticky .feature_head { display: none; } .health-sticky .feature-group.feature-group { padding-top: 0 !important } .health-sticky .feats-sec li { font-size: 14px; margin-bottom: 6px !important; } .best-invest .health-sticky {z-index:1; position: static; top: 130px; background: #fff; } #topic1 h3 { margin-left: 30px; } .best-invest .p-ref, .best-invest .p-tc { font-size: 14px; } .health-sticky .feats-buy { margin-bottom: 15px; } .best-invest .health-sticky .product_head { margin-top: 10px !important; margin-bottom: 10px !important; } .best-invest .health-sticky .broch-btn img { width: 80%; margin-bottom: 0; } .best-invest .health-sticky .bg-eterm .broch-btn { top: 7px } .best-invest .health-sticky .feats-sec ul { padding-bottom: 10px; } .healthAlsoRead { display: none; } .iframe-responsive { position: relative; width: 100%; padding-bottom: 56.25%; /* Adjust this value based on the aspect ratio of your video */ } .iframe-responsive iframe { position: absolute; width: 100%; height: 100%; top: 0; left: 0; } .ui-datepicker td { padding: 0 !important; } .kliNewWrap img { width: 40%; } @media only screen and (max-width:480px) {.whySavings-card{min-height:361px;} .kliNewWrap img { width: 100%; } } .ls1 { display: inline-block; } .newreturn_pdf { position: relative; width: 45px !important; height: 70px } .newreturn_pdf img { display: none; } .nopdf { padding-left: 0 !important; } .nopdf:after { content: none !important; } .newreturn_pdf:after { content: ''; width: 45px; height: 100px; background: url(../images/spriteImg.webp) no-repeat -576px -64px; position: absolute; left: 0; top: 0; } .newcard-cg .reportBox h3 { min-height: 60px; } .mobilechat.w-130 { width: 130px; } /*ULIP Plan Category*/ .ulip-offline .accelcard ul li::marker, .ulip-online-plan ol li::marker { list-style-type: none; content: none; } .ulip-offline .accelcard .gspview { padding-top: 10px !important; padding-bottom: 10px !important; } .ulip-offline { margin-top: 6rem; } .ulip-offline .tooltiptext, .ulip-online-plan .tooltiptext { display: none; } /* All Sections */ #topSection, #whatareulips, #importanceOfUlip, #keyFeatureofUlip, #ulipCalculator, #howDoesUlipWork, #calculatingUlip, #benefitsOfUlip, #typesOfUlip, #whyChooseKotakUlip, #typeOfUlipFunds, #manageUlipFunds, #typesOfUlipCharge, #whatIsUlipNav, #howToFindBestUlipPlan, #whyInvestinUlip, #whichUlipfundsAreBest, #variousFactorsConsiderBuyingUlip, #stepsToBuyUlip, #documentsRequiredForUlip, #ulipVsMutualFunds, #ulipWealthCreation, #claimTaxBenefits, #mythsOfUlip { margin: 30px 0; } #authorSection { margin: 20px 0; z-index: 0; } .fullBg { background-color: #F5F5F5; } .greyBg { background-color: #f5f5f5; padding: 20px; } /* All Grid below */ .topSectionGrid { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: flex-start; gap: 10px; } .whatareulips-grid { display: grid; grid-template-columns: 50% 50%; gap: 20px; align-items: center; } .calculatingUlip-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 15px; } .ulipVsMf-grid { display: grid; grid-template-columns: 1fr 2fr 1fr 1fr; gap: 15px; } .whyChooseKotakUlip-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: baseline; gap: 30px; margin-top: 15px; } .manageUlipFunds-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 20px; margin: 15px 0; } .documentsRequiredForUlip-grid { display: grid; grid-template-columns: 35% 60%; gap: 10px; align-items: center; } .termsText { font-size: 10px !important; font-weight: 300 !important; letter-spacing: 0.3px; } /* All Title */ #topSection .topSection-title { font-size: 30px !important; font-weight: 600; letter-spacing: 0.3px; padding: 5px 0; } .whatareulips-title, .bestUlips-title, .keyFeatureofUlip-title, .importanceOfUlip-title, .ulipCalculator-title, .howDoesUlipWork-title, .benefitsOfUlip-title, .typesOfUlip-title, .whyChooseKotakUlip-title, .typeOfUlipFunds-title, .manageUlipFunds-title, .typesOfUlipCharge-title, .whatIsUlipNav-title, .bestUlipPlan-title, .whyInvestinUlip-title, .whichUlipfundsAreBest-title, .factorsConsiderUlip-title, .stepsToBuyUlip-title, .documentsRequiredForUlip-title, .ulipVsMf-title, .ulipWealthCreation-title, .claimTaxBenefits-title, .mythsOfUlip-title { font-size: 24px !important; font-weight: 600 !important; letter-spacing: 0.3px !important; color: #161616 !important; margin: 0 0 8px 0 !important; } /* All Desc */ .topSection-desc { font-size: 16px; font-weight: 500; letter-spacing: 0.3px; } .whatareulips-desc, .bestUlips-desc, .keyFeatureofUlip-desc, .importanceOfUlip-desc, .ulipCalculator-desc, .howDoesUlipWork-desc, .benefitsOfUlip-desc, .typesOfUlip-desc, .whyChooseKotakUlip-desc, .typeOfUlipFunds-desc, .manageUlipFunds-desc, .typesOfUlipCharge-desc, .whatIsUlipNav-desc, .bestUlipPlan-desc, .whyInvestinUlip-desc, .whichUlipfundsAreBest-desc, .factorsConsiderUlip-desc, .stepsToBuyUlip-desc, .documentsRequiredForUlip-desc, .ulipVsMf-desc, .ulipWealthCreation-desc, .claimTaxBenefits-desc, .mythsOfUlip-desc { font-size: 16px !important; font-weight: 400 !important; letter-spacing: 0.3px !important; color: #161616 !important; } /* All Cta */ .ulipCard-cta { background-color: #ED1C24; color: #FFF; font-size: 21px; font-weight: 700; border-radius: 25px; padding: 5px 15px; /* width: 75%; */ text-align: center; text-decoration: none; display: flex; justify-content: center; align-items: center; position: relative; overflow: hidden; letter-spacing: 0.3px; gap: 10px; } .ulipCard-cta img { transform: rotate(45deg); } .ulip-cta a { background-color: #da251c; color: #FFF; padding: 8px 30px !important; border-radius: 25px; display: inline-block; text-align: center; width: 50%; font-weight: 500; margin: 2rem 0; font-size: 18px; position: relative; overflow: hidden; letter-spacing: 0.3px; } .keyFeatureofUlip-cta a, .calculatingUlip-cta a, .typesOfUlip-cta a, .typeOfUlipFunds-cta a, .manageUlipFunds-cta a, .whatIsUlipNav-cta a, .bestUlipPlan-cta a, .whyInvestinUlip-cta a, .factorsConsiderUlip-cta a, .ulipWealthCreation-cta a, .claimTaxBenefits-cta a, .stepsToBuyUlip-cta a { background-color: #da251c; color: #FFF; padding: 8px 30px !important; border-radius: 25px; display: inline-block; text-align: center; width: auto; font-weight: 500; margin: 2rem 0; font-size: 18px; position: relative; overflow: hidden; letter-spacing: 0.3px; } .keyFeatureofUlip-cta a:hover .calculatingUlip-cta a:hover { color: #fff !important; } .ulipCard-cta::before, .ulip-cta a::before, .keyFeatureofUlip-cta a::before, .calculatingUlip-cta a::before, .importanceOfUlip-flexB a::before, .owDoesUlipWork-flexB a::before, .howDoesUlipWork-flexB a::before, .benefitsOfUlip-flexR a::before, .typesOfUlip-cta a::before, .whyChooseKotakUlip-flexR a::before, .typeOfUlipFunds-cta a::before, .manageUlipFunds-cta a::before, .typesOfUlipCharge-flexB a::before, .whatIsUlipNav-cta a::before, .bestUlipPlan-cta a::before, .whyInvestinUlip-cta a::before, .whichUlipfundsAreBest-flexR a::before, .factorsConsiderUlip-cta a::before, .ulipWealthCreation-cta a::before, .claimTaxBenefits-cta a::before, .stepsToBuyUlip-cta a::before { position: absolute; content: ''; display: inline-block; top: -180px; left: 0; width: 15px; height: 100%; background-color: #fff; animation: shiny-btn1 4s ease-in-out infinite; } /* All SubTitle */ .keyFeatureofUlip-subTitle, .importanceOfUlip-subTitle, .benefitsOfUlip-subTitle, .typesOfUlip-subTitle, .whyChooseKotakUlip-subTitle, .typeOfUlipFunds-subTitle, .typesOfUlipCharge-subTitle, .bestUlipPlan-subTitle, .whichUlipfundsAreBest-subTitle, .factorsConsiderUlip-subTitle, .ulipWealthCreation-subTitle, .claimTaxBenefits-subTitle { font-size: 17px !important; font-weight: 600 !important; color: #404040; letter-spacing: 0.3px; padding: 2px 0 8px; } /* All SubDesc */ .keyFeatureofUlip-subDesc, .importanceOfUlip-subDesc, .benefitsOfUlip-subDesc, .typesOfUlip-subDesc, .whyChooseKotakUlip-subDesc, .typeOfUlipFunds-subDesc, .typesOfUlipCharge-subDesc, .bestUlipPlan-subDesc, .whichUlipfundsAreBest-subDesc, .factorsConsiderUlip-subDesc, .ulipWealthCreation-subDesc, .claimTaxBenefits-subDesc { font-size: 16px !important; font-weight: 500 !important; color: #161616; letter-spacing: 0.3px; } .topSection-img { text-align: center; } .ulipCard { background-color: #FFF3F3; padding: 20px; border-radius: 30px; text-align: center; min-height: 450px; } .ulipCard img { width: 75%; height: auto; } .ulipCard .ulipCard-title { font-size: 32px; font-weight: 800; color: #003366 !important; text-align: center; } .ulipCard-investTitle { font-size: 20px; font-weight: 500; letter-spacing: 0.3px; color: #161616; } .ulipCard-cta:hover { color: #FFF; } .ulipCard-cta span { margin-left: 10px; } .ulipCard-cta img { width: 35px; height: 35px; } .centerButton { display: flex; justify-content: center; margin-top: 8px; } /* Author section same as previous no need to copy if same code already present */ .authorBox { display: flex; justify-content: space-around; align-items: center; padding: 20px 0; } .authorDetails { display: flex; flex-direction: row; justify-content: space-between; gap: 50px; } .authorName, .authorReview { margin: 2px 0 !important; padding: 0; font-size: 16px; font-weight: 400; display: flex; align-items: center; color: #000; } .authorImg, .authorReviewImg { width: 75px; height: 75px; background-color: #ccc; display: block; margin-right: 20px; border-radius: 50%; } .authorImg img, .authorReviewImg img { border-radius: 50%; } .articleDate, .articleRead { margin: 2px 0 !important; font-size: 16px; font-weight: 500; color: #404040; } .blogsStage { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 25px; } .uliptool-points .blogsTooltipSavings { position: relative; cursor: pointer; } .uliptool-points .blogsTooltipSavings .tooltiptext { visibility: hidden; width: 450px; background-color: #FFF; border: 1px solid #CCC; color: #000; text-align: left; border-radius: 6px; position: absolute; z-index: 2; top: 100%; left: 00%; margin-left: -60px; font-size: 14px; padding: 12px; box-shadow: 0 1px 15px -2px #c1c1c1; } .uliptool-points .blogsTooltipSavings .tooltiptext::after { content: ""; border: 1px solid #cccc; border-bottom: none; border-right: none; height: 16px; width: 16px; position: absolute; top: 0; right: calc(50% - 8px); transform: translatey(-9px) rotate(45deg); background-color: #FFF; } .uliptool-points .blogsTooltipSavings:hover .tooltiptext { visibility: visible; z-index: 999; } .nameTag { color: #0b396b; font-weight: 700; } .vSeperation { border-left: 2px solid #c1c1c1; height: 75px; } .nameTitle div { display: flex; align-items: center; } .nameTitle img { width: 20px !important; height: 20px; margin-bottom: 2px !important; margin-right: 8px; } #tableofContent { margin: 25px 0; z-index: -1 !important; } .contenttable { border: 1px solid #DBDBDB; border-bottom: none; border-radius: 8px; padding: 20px 20px 35px; display: grid; grid-template-columns: 48% 48%; gap: 4%; position: relative; } .show-more-height div { height: 230px; overflow: hidden; transition: height 5.4s linear; } .contenttable div { display: flex; flex-direction: column; } .tocText { padding: 8px 20px 5px; margin-left: 40px; max-width: 290px; border-radius: 10px 10px 0 0; border: 1px solid #AEAEAE; border-bottom: none; color: #262626; font-size: 15px; font-weight: 600; text-transform: capitalize; } .tocContent { color: #003366; background-color: #F5F5F5; border-radius: 20px; font-size: 16px; font-weight: 500; margin: 5px 0; padding: 10px; width: 530px; } .tocContent img { padding-right: 5px; } .tocContent:hover { color: #003366; transform: translateX(10px); transition: transform 0.5s ease; } .offlineplan { margin-top: -3.5rem; display: inline-block; } .contenttable .tocReadMore { position: absolute; cursor: pointer; bottom: 0; left: 44%; background-color: #ED3237; padding: 8px 20px; border-radius: 30px; width: 15rem; color: #FFF; z-index: 1; text-align: center; font-size: 14px; font-weight: 600; } #ulipCalculator .sublabel { color: #757095; display: inline-block; } #ulipCalculator input { font-weight: 600; } .ulip-terms ul li { font-size: 16px; padding-bottom: 12px; } .show-more-height::after { position: absolute; width: 100%; height: 100px; bottom: 0; left: 0; content: ""; background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(50%, white)); background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 50%); } .viewPlans { font-size: 16px; font-weight: 400; color: #da251c; text-decoration: underline; } .keyFeatureofUlip-cards { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 25px; margin: 15px 0; } .keyFeatureofUlip-card, .keyFeatureofUlip-cardStatic { background-color: #FFF; border-radius: 10px; padding: 20px; min-height: 705px; max-width: 31.6%; } .keyFeatureofUlip-card:nth-child(4), .keyFeatureofUlip-card:nth-child(5) { min-height: 318px; } .keyFeatureofUlip-cardStatic { width: 360px !important; } .keyFeatureofUlip-cardStatic { border: 1px solid #CEB0AC; background-color: #FFF3F3; padding: 50px 25px 25px 25px; min-height: 300px; display: grid; place-content: center; } .keyFeatureofUlip-cardStatic .keyFeatureofUlip-subTitlestatic { color: #AB2020 !important; font-size: 24px; font-weight: 500; letter-spacing: 0.3px; } .importanceOfUlip-flex { display: flex; justify-content: start; align-items: flex-start; gap: 15px; margin-top: 25px; } .importanceOfUlip-flexB, .howDoesUlipWork-flexB, .typesOfUlipCharge-flexB { background-color: #EFF8FF; border: 1px solid #A2B3C1; border-radius: 8px; padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; width: 100%; margin: 30px 0 0; } .benefitsOfUlip-flexR, .whyChooseKotakUlip-flexR, .whichUlipfundsAreBest-flexR { background-color: #FFF3F3; border: 1px solid #E8D4D2; border-radius: 8px; padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; width: 100%; margin: 30px 0 0; } #importanceOfUlip .importanceOfUlip-flexB h3, #howDoesUlipWork .howDoesUlipWork-flexB h3, #typesOfUlipCharge .typesOfUlipCharge-flexB h3 { font-size: 24px; font-weight: 600; letter-spacing: 0.3px; color: #003366 !important; } #benefitsOfUlip .benefitsOfUlip-flexR h3, #whyChooseKotakUlip .whyChooseKotakUlip-flexR h3, #whichUlipfundsAreBest .whichUlipfundsAreBest-flexR h3 { font-size: 24px; font-weight: 600; letter-spacing: 0.3px; color: #AB2020 !important; } .importanceOfUlip-flexB a, .howDoesUlipWork-flexB a, .typesOfUlipCharge-flexB a { background-color: #ED1C24; color: #fff; font-size: 15px; font-weight: 500; width: auto; border-radius: 25px; display: inline-block; padding: 12px 20px; position: relative; overflow: hidden; } .benefitsOfUlip-flexR a, .whyChooseKotakUlip-flexR a, .benefitsOfUlip-flexR a, .whichUlipfundsAreBest-flexR a { background-color: #da251c; color: #fff; font-size: 15px; font-weight: 500; width: auto; border-radius: 25px; display: inline-block; padding: 12px 20px; position: relative; overflow: hidden; margin-left: 8rem; } .inline-links { text-decoration: underline; color: #004A8F; font-size: 16px; font-weight: 500; letter-spacing: 0.3px; } .readMoreTxt { text-align: center; font-size: 16px; font-weight: 400; letter-spacing: 0.3px; margin-top: 15px; } .calculatingUlip-grid ul, .ulipVsMf-grid ul { margin: 20px 0; } .calculatingUlip-grid ul li { font-size: 16px; font-weight: 600; color: #161616; letter-spacing: 0.3px; padding: 12px 10px; border-bottom: 1px dashed #ccc; text-align: center; border-radius: 30px; } .calculatingUlip-Monthly li, .ulipVsMf-aspect li { text-align: left !important; } .calculatingUlip-investmentList { background-color: #FFF !important; border: 1px solid #003366 !important; border-radius: 4px; color: #003366 !important; padding: 8px !important; } .calculatingUlip-estimatedList { background-color: #FFF !important; border: 1px solid #AB2020 !important; border-radius: 4px; color: #AB2020 !important; padding: 8px !important; } .calculatingUlip-returnsList { background-color: #FFF !important; border: 1px solid #82772D !important; border-radius: 4px; color: #82772D !important; padding: 8px !important; } .calculatingUlip-monthlyList { padding: 8px !important; } .calculatingUlip-investment { background: transparent linear-gradient(180deg, #EFF9FF 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box; } .calculatingUlip-estimated { background: transparent linear-gradient(180deg, #FFF3F3 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box; } .calculatingUlip-returns { background: transparent linear-gradient(180deg, #F8F6E8 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box; } .keyFeatureofUlip-cta, .calculatingUlip-cta, .typeOfUlipFunds-cta, .bestUlipPlan-cta, .typesOfUlip-cta, .typeOfUlipFunds-cta, .manageUlipFunds-cta, .factorsConsiderUlip-cta, .claimTaxBenefits-cta, .stepsToBuyUlip-cta { text-align: center; } .howDoesUlipWork-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin: 20px 0 10px; } .howDoesUlipWork-bg1 { background-image: url(../images/ulip-plan/how-does-ulip-works1.svg); background-position: left; background-repeat: no-repeat; text-align: center; width: 48%; height: 280px; position: relative; left: -70px } .howDoesUlipWork-bg2 { background-image: url(../images/ulip-plan/how-does-ulip-works2.svg); background-position: right; background-repeat: no-repeat; text-align: center; width: 48%; height: 280px; position: relative; } .howDoesUlipWork-bg3 { background-image: url(../images/ulip-plan/how-does-ulip-works3.svg); background-position: left; background-repeat: no-repeat; text-align: center; width: 48%; height: 280px; position: relative; left: -70px } .howDoesUlipWork-bg4 { background-image: url(../images/ulip-plan/how-does-ulip-works4.svg); background-position: right; background-repeat: no-repeat; text-align: center; width: 48%; height: 280px; position: relative; } .howDoesUlipWork-bg5 { background-image: url(../images/ulip-plan/how-does-ulip-works5.svg); background-position: left; background-repeat: no-repeat; text-align: center; width: 48%; height: 280px; position: relative; left: -70px } .howDoesUlipWork-bg6 { background-image: url(../images/ulip-plan/how-does-ulip-works6.svg); background-position: right; background-repeat: no-repeat; text-align: center; width: 48%; height: 280px; position: relative; } .howDoesUlipWork-content-left p { font-size: 16px !important; font-weight: 500 !important; letter-spacing: 0.3px; text-align: left; position: absolute; left: 47%; top: 15%; color: #404040 !important; } .howDoesUlipWork-content-right p { font-size: 16px !important; font-weight: 500 !important; letter-spacing: 0.3px; text-align: right; position: absolute; right: 47%; top: 15%; color: #404040 !important; } .howDoesUlipWork-content-right6 p { font-size: 16px !important; font-weight: 500 !important; letter-spacing: 0.3px; text-align: right; position: absolute; right: 47%; top: 25%; color: #404040 !important; } .howDoesUlipWork-content-right4 p { font-size: 16px !important; font-weight: 500 !important; letter-spacing: 0.3px; text-align: right; position: absolute; right: 47%; top: 22%; color: #404040 !important; } .benefitsOfUlip-img { margin: 20px 0 10px; text-align: center; } .benefitsOfUlip-img img { width: 100%; height: auto; } .benefitsOfUlip-flex { display: flex; justify-content: start; align-items: start; gap: 20px; margin: 20px 0 10px; } .benefitsOfUlip-list { font-size: 16px; font-weight: 500; letter-spacing: 0.3px; padding: 10px; padding-left: 35px; } .benefitsOfUlip-list li { list-style: disc; } .typesOfUlip-flex, .typeOfUlipFunds-flex, .whichUlipfundsAreBest-flex, .claimTaxBenefits-flex { display: flex; justify-content: start; align-items: start; gap: 15px; margin: 20px 0 10px; } .typesOfUlip-cta, .typeOfUlipFunds-cta, .manageUlipFunds-cta { text-align: center; } .whyChooseKotakUlip-cards { text-align: left; margin: 10px 0 0; } .manageUlipFunds-list { padding-left: 25px; } .manageUlipFunds-list li { list-style: disc; font-size: 16px; font-weight: 500; letter-spacing: 0.3px; color: #161616; padding: 5px 0; } .manageUlipFunds-img { text-align: center; } .manageUlipFunds-img img { width: 75%; height: auto; } .typesOfUlipCharge-flex { display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; gap: 25px; margin: 12px 0; } .typesOfUlipCharge-card { border: 1px solid #DBDBDB; border-radius: 10px; max-width: 265px; min-height: 220px; text-align: left; padding: 15px; } .typesOfUlipCharge-subDesc { line-height: 22px !important; } .whatIsUlipNav-cta { text-align: center; } .testimonial-bg { background-image: url(../images/ulip-plan/testimonial.svg) !important; background-position: center; text-align: center; margin: 10px auto; padding: 100px; width: 904px; height: 488px; } .testimonial-title { font-size: 24px; font-weight: 500; color: #000; } .bestUlipPlan-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin: 15px 0; } .bestUlipPlan-card { border: 1px solid #DBDBDB; border-radius: 10px; padding: 20px; min-height: 230px; max-width: 560px; } .whyInvestinUlip-grid { display: grid; grid-template-columns: 40% 55%; align-items: center; gap: 10px; } .factorsConsiderUlip-card { border: 1px solid #DBDBDB; border-radius: 10px; padding: 20px; max-width: 90%; min-height: 360px; } .ulip-fact-slider .factorsslick button.slick-next { bottom: -90px; } .ulip-fact-slider .factorsslick button.slick-prev { bottom: -90px; } .stepsToBuyUlip-img { text-align: center; } .stepsToBuyUlip-img img { margin: 5% 0 0; } .documentsRequiredForUlip-img { text-align: center; } .documentsRequiredForUlip-img img { width: 50%; height: auto; } .ulipVsMf-ulip li { text-align: left; } .ulipVsMf-ulipList { background-color: #FFF !important; border: 1px solid #003366 !important; border-radius: 4px; color: #003366 !important; padding-left: 15px !important; } .ulipVsMf-mfList, .ulipVsMf-fixedList { background-color: #FFF !important; border: 1px solid #BBBBBB !important; border-radius: 4px; color: #000000 !important; padding-left: 15px !important; } .ulipVsMf-grid ul li { font-size: 16px; font-weight: 600; color: #161616; letter-spacing: 0.3px; padding: 12px 10px; border-bottom: 1px dashed #ccc; text-align: left; } .ulipVsMf-ulip { background: transparent linear-gradient(180deg, #EFF9FF 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box; } .ulipWealthCreation-subtitle { font-size: 22px; font-weight: 500; letter-spacing: 0.3px; color: #161616; margin: 15px 0; } .ulipWealthCreation-flex { display: flex; flex-wrap: wrap; justify-content: flex-start; align-items: center; margin: 15px 0; gap: 20px; } .ulipWealthCreation-card { background-color: #F8F8F8; border-radius: 23px; max-width: 360px; min-height: 315px; padding: 20px; } .ulipWealthCreation-cta { font-size: 15px; } .ulipWealthCreation-staticCard { text-align: center; background-color: #F8F8F8; border-radius: 23px; min-height: 315px; min-width: 360px; } .mythsOfUlip-subTitle { font-size: 17px; font-weight: 700; color: #404040; letter-spacing: 0.3px; } .mythsOfUlip-subDesc { font-size: 16px; font-weight: 400; color: #404040; letter-spacing: 0.3px; } /*.keyFeatureofUlip-card:hover, .typesOfUlipCharge-card:hover, .bestUlipPlan-card:hover, .ulipWealthCreation-card:hover { box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.07); }*/ /*.benefitsOfUlip-flexR:hover, .whyChooseKotakUlip-flexR:hover, .whichUlipfundsAreBest-flexR:hover, .ulipWealthCreation-staticCard:hover { box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.07); }*/ .deskNone { display: none; } .mt10 { margin-top: 10px; } .mt20 { margin-top: 20px !important; } .p0 { padding: 0px !important; } .newbread-ulip { margin-top: 170px; } .ulip-offline .onlinegsp li { padding: 18px 27px 19px 40px; } .ulip-offline .accelblock { height: 356px; } .ulip-cat-cal .goal-wrap { margin-bottom: 0.4rem; } .ulip-cat-cal .goal-wrap .input-wrap { height: 3rem; } .ulip-cat-cal .range-wrap { margin-bottom: 0.3rem !important; } .ulip-cat-cal .goal-wrap .goal-title { font-size: 1.4rem; } .ulip-cat-cal .term-design p { font-size: 14px; } .ulip-cat-cal .card .btn_primary { font-weight: 500; } .hide { display: none !important; } .claimTaxBenefits-flex img { padding-top: 4px } .typesOfUlip-flex img { padding-top: 5px; } .contenttable .tocReadMore, .importanceOfUlip-flexB a, .howDoesUlipWork-flexB a, .typesOfUlipCharge-flexB a { font-size: 18px; letter-spacing: 0.3px; } .benefitsOfUlip-flexR a, .whyChooseKotakUlip-flexR a, .benefitsOfUlip-flexR a, .whichUlipfundsAreBest-flexR a { font-size: 18px; letter-spacing: 0.3px; } .ulip-offline .op3:before { top: 138px; } .ulip-offline .op4:before { top: 197px; } .ulip-offline .op5:before { bottom: 134px; } .greyBg { padding-top: 30px; padding-bottom: 30px; } .importanceOfUlip-flexB.new_change p, .howDoesUlipWork-flexB p, .benefitsOfUlip-flexR p, .whyChooseKotakUlip-flexR p, .typesOfUlipCharge-flexB p, .whichUlipfundsAreBest-flexR p { font-size: 24px; font-weight: 600; letter-spacing: 0.3px; color: #003366 !important; } .benefitsOfUlip-flexR p, .whyChooseKotakUlip-flexR p, .whichUlipfundsAreBest-flexR p { color: #AB2020 !important; } .card_middle.new .card_title { margin-bottom: 20px; } #calculatingUlip h3 { font-size: 20px; font-family: Lato-Regular; font-weight: 700; letter-spacing: .4px; color: #161616; margin-bottom: 20px; } .ulipterms .new { color: #161616 !important; font-size: 16px; letter-spacing: .24px; margin-bottom: 15px !important; } .keyFeatureofUlip-card:hover, .typesOfUlipCharge-card:hover, .bestUlipPlan-card:hover, .ulipWealthCreation-card:hover { box-shadow: 0px 3px 6px 0 rgba(0, 0, 0, 0.07); } .blogsTooltipSavings .linkedin { color: #0077b5 } @media only screen and (max-width:1366px) {.keyFeatureofUlip-card{min-height:840px;} .bestUlipPlan-card { min-height: 260px; max-width: 48%; } .ulipWealthCreation-card { max-width: 48%; } .howDoesUlipWork-content-left p { left: 54%; width: 56%; } .howDoesUlipWork-content-right p, .howDoesUlipWork-content-right4 p, .howDoesUlipWork-content-right6 p { right: 53%; width: 54%; } .ulip-fact-slider .factorsConsiderUlip-card { min-height: 440px; } .ulip-fact-slider .factorsslick button.slick-next { bottom: -40px; } .ulip-fact-slider .factorsslick button.slick-prev { bottom: -42px } .ulip-fact-slider .pagingInfo-facslick { bottom: 44px; } .benefitsOfUlip-flexR a, .whyChooseKotakUlip-flexR a, .benefitsOfUlip-flexR a, .whichUlipfundsAreBest-flexR a { margin-left: 1rem; } } @media only screen and (max-width:480px) { .mobblock { display: block; } .whyInvestinUlip-grid, .whatareulips-grid, .topSectionGrid, .whyChooseKotakUlip-grid, .manageUlipFunds-grid { grid-template-columns: 100%; } .ulip-cta a { width: 100%; } .keyFeatureofUlip-card { padding: 10px; border: 1px solid #BBBBBB; min-height: 100%; } .keyFeatureofUlip-cardStatic { width: 100%; } .importanceOfUlip-flexB, .howDoesUlipWork-flexB, .typesOfUlipCharge-flexB, .benefitsOfUlip-flexR, .whyChooseKotakUlip-flexR, .whichUlipfundsAreBest-flexR { flex-direction: column; gap: 20px; align-items: flex-start; } .typesOfUlipCharge-card { max-width: 100%; min-height: auto; } .topSection-img { display: none; } .blogsTooltipSavings .tooltiptext { visibility: hidden; width: 300px; background-color: #FFF; border: 1px solid #CCC; color: #000; text-align: left; border-radius: 6px; position: absolute; z-index: 2; top: 100%; left: 30%; margin-left: -60px; font-size: 14px; padding: 12px; box-shadow: 0 1px 15px -2px #c1c1c1; } .testimonial-bg { background-image: none; background-position: center; text-align: center; margin: 10px auto; padding: 20px; width: 100%; height: auto; } .stepsToBuyUlip ul li { margin: 20px 0; } .stepsToBuyUlip ul li p { font-size: 18px; font-weight: 400; color: #000; } .stepsToBuyUlip ul li .stepsToBuyUlipSpan { background-color: #003355; width: 45px; height: 45px; display: block; border-radius: 50%; color: #FFF !important; text-align: center; display: flex; justify-content: center; align-items: center; font-size: 18px; margin: 0 10px 10px 0; } .ulipVsMf-grid, .calculatingUlip-grid { overflow-y: scroll; white-space: nowrap; } .keyFeatureofUlip-cta a, .calculatingUlip-cta a, .typesOfUlip-cta a, .typeOfUlipFunds-cta a, .manageUlipFunds-cta a, .whatIsUlipNav-cta a, .bestUlipPlan-cta a, .whyInvestinUlip-cta a, .factorsConsiderUlip-cta a, .ulipWealthCreation-cta a, .claimTaxBenefits-cta a { border-radius: 40px; } .howDoesUlipWork-bg1, .howDoesUlipWork-bg2, .howDoesUlipWork-bg3, .howDoesUlipWork-bg4, .howDoesUlipWork-bg5, .howDoesUlipWork-bg6 { background-image: none; height: auto; } .howDoesUlipWork-content-left p, .howDoesUlipWork-content-right p, .howDoesUlipWork-content-right4 p, .howDoesUlipWork-content-right6 p { position: static; text-align: left; } /*Vinoth code*/ .newbread-ulip { margin-top: 50px; padding-bottom: 0; } .uliptool-points .authorDetails { gap: 10px; } .uliptool-points .nameTitle { display: block; } .uliptool-points .authorImg, .uliptool-points .authorReviewImg { width: 45px; height: 45px; } .uliptool-points .blogsTooltipSavings .tooltiptext { width: 300px; margin-left: 0; } .blogsTooltipSavings.tol2 .tooltiptext { left: -140px; } .contenttable div, .contenttable { display: block; } .show-more-height div { height: 100px; } .contenttable .tocReadMore { left: 30%; } .keyFeatureofUlip-card, .keyFeatureofUlip-cardStatic { max-width: 100%; } .howDoesUlipWork-bg1, .howDoesUlipWork-bg2, .howDoesUlipWork-bg3, .howDoesUlipWork-bg4, .howDoesUlipWork-bg5, .howDoesUlipWork-bg6 { width: 100%; left: 0; } .howDoesUlipWork-content-left p, .howDoesUlipWork-content-right p, .howDoesUlipWork-content-right4 p, .howDoesUlipWork-content-right6 p { width: 100%; } .bestUlipPlan-card { width: 100%; max-width: 100%; } .ulip-fact-slider .factorsConsiderUlip-card { min-height: 100%; } .ulipWealthCreation-card { max-width: 100%; } .ulip-fact-slider .factorsslick button.slick-next, .ulip-fact-slider .factorsslick button.slick-prev { bottom: -10px } .ulip-fact-slider .pagingInfo-facslick { bottom: 78px; } .offlineplan { margin-top: -4rem; display: block; width: 150px !important; } } @media only screen and (max-width: 480px) { .greyBg { background-color: transparent !important; } #topSection .topSection-title { padding-bottom: 15px; padding-top: 15px; line-height: 1.2; } .ulip-fact-slider .factorsslick button.slick-next, .ulip-fact-slider .factorsslick button.slick-prev { bottom: -35px; } .ulipWealthCreation-flex { justify-content: center; } .hid.space .midWrapper { padding: 0 30px; } .hid.ulip-cat-cal .row.mrow-0.mt20 { width: unset; } .show-more-height div { height: 175px; } .tocContent { width: 100%; } .factorsslick .slick-track { left: 20px; margin-bottom: 30px; } .testimonial-bg { background-image: none !important; } .pagingInfo-review-tes { bottom: 15px !important; } .mobile-ulip-accord .brochers { margin-right: 10px; margin-top: 10px; } .mobile-ulip-accord { margin-top: 0; margin-bottom: 0; } .uliptool-points .authorImg img, .uliptool-points .authorReviewImg img { height: 57px; } #ulipCalculator .m-p-0 { padding-left: 0; padding-right: 0; } #ulipCalculator .radio_tabs label { font-size: 13px; } .blog-body-content .authorDetails { display: inline-block; } } /* Animations */ @keyframes shiny-btn1 { /* Animations same animations as insurance plans dont copy if same css is being used*/ 0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; } 80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; } 81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; } 100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; } } @-webkit-keyframes shiny-btn1 { 0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; } 80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; } 81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; } 100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; } } .hid { opacity: 0; transition: all 1s ease; } .show { opacity: 1; } .form-control { font-family: 'Lato-Regular' !important; } @media(prefers-reduced-motion) { .hid { transition: none; } } /*End ULIP Plan Category*/ .buy-imgs8 { position: absolute; right: 0; top: 0; background-image: url(../images/kotak-assured-pension.svg); background-repeat: no-repeat; height: 65px; width: 65px } .buy-imgs8:hover { background-image: url(../images/kotak-assured-pension-blue.svg) } /*Saving plan page sprites images*/ .brochers { background: url(../images/saving-plans/sprites-savings-plan.webp) no-repeat; width: 45px; height: 45px; display: inline-block; background-position: 0px -340px; } .sp-saving { background: url(../images/saving-plans/sprites-savings-plan.webp) no-repeat; width: 50px; height: 50px; } .sps1 { background-position: -345px -241px; } .sps2 { background-position: -255px -241px } .sps3 { background-position: -162px -241px; } .sps4 { background-position: -58px -204px; background-size: 410px; } .sps5 { background-position: 0px -241px } .sp-need { background: url(../images/saving-plans/sprites-savings-plan.webp) no-repeat; width: 60px; height: 70px; } .spn1 { background-position: -435px -118px } .spn2 { background-position: -333px -121px; } .spn3 { background-position: -241px -121px; } .sp-india { background: url(../images/saving-plans/sprites-savings-plan.webp) no-repeat; width: 90px; height: 90px; background-size: 470px; } .spind1 { background-position: -114px -111px } .spind2 { background-position: 0px -112px } .spind3 { background-position: -366px 5px } .spind4 { background-position: -248px 0px } .whyChoose-flx div:nth-child(2) { width: 100%; } .sp-cons { background: url(../images/saving-plans/sprites-savings-plan.webp) no-repeat; width: 65px; height: 65px; } .spco1 { background-position: -185px -25px } .spco2 { background-position: -93px -22px } .spco3 { background-position: 0px -22px } .sa-author1 { background: url(../images/saving-plans/sprites-savings-plan.webp); background-position: -183px -655px; background-size: 410px; } .sa-author2 { background: url(../images/saving-plans/sprites-savings-plan.webp); background-position: -75px -655px; background-size: 410px; } .tocContent:before { content: ''; background: url('../images/saving-plans/sprites-savings-plan.webp'); width: 40px; height: 20px; position: relative; display: inline-block; background-position: -438px -254px; background-repeat: no-repeat; } .tocContent img { display: none; } .c5:before {left:18px; background-position: -159px -74px; height: 40px; width: 38px; content: ''; background-size: 749px; } .c6:before { background-position: -162px -169px; height: 50px; content: ''; background-size: 808px; } .ulip-head #morecont { display: none } .bmi-consumer { margin: 0 0 2rem; } @media only screen and (max-width:480px) { .sp-india { background-size: 400px; } .spind1 { background-position: -100px -97px; } .spind2 { background-position: 0px -95px; } .spind3 { background-position: -312px 5px; } .spind4 { background-position: -212px 0px; } .sa-author1 { background: url(../images/saving-plans/sprites-savings-plan.webp); background-position: -135px -451px; background-size: 280px; } .sa-author2 { background: url(../images/saving-plans/sprites-savings-plan.webp); background-position: -55px -697px; background-size: 280px; } /*0812*/ .saving-off .brochers { background-position: 10px -260px; background-size: 370px; } .buy-imgs8 { position: static !important; } .detbtn.ksap-btn { margin-left: auto !important; margin-right: auto !important; } .ulip-head #myBtn { display: block !important; } } /*EndSaving plan*/ /*Ulip sprites images*/ .keyfeat-icon { background-image: url(../images/ulip-plan/ulip-sprites.webp); width: 62px; height: 62px; } .kf1 { background-position: -245px -279px; } .kf2 { background-position: -344px -358px } .kf3 { background-position: -356px -466px } .kf4 { background-position: -0px -752px } .kf5 { background-position: -86px -711px } .ul-arrow { background-image: url(../images/ulip-plan/ulip-sprites.webp); min-width: 40px; height: 46px; background-position: -182px -310px; } .benflx-icon { background-image: url(../images/ulip-plan/ulip-sprites.webp); width: 132px; height: 62px; } .ubi1 { background-position: -255px -943px; } .ubi2 { background-position: -415px -9px; } .ubi3 { background-position: -417px -121px; } .ubi4 { background-position: -327px -16px; } .ubi5 { background-position: 3px -297px; } .ubi6 { background-position: -91px -254px; } .ubi7 { background-position: -180px -397px; } .ubi8 { background-position: -275px -1044px; } .ubi9 { background-position: -231px 0px } .benefitsOfUlip-flex div:nth-child(2) { flex-basis: 90%; } .benefitsOfUlip-flex .benflx-icon { flex-basis: 70px; } .fund-tick { background-image: url(../images/ulip-plan/ulip-sprites.webp); background-repeat: no-repeat; height: 35px; min-width: 25px; background-position: -183px -134px; } .ulip-policy-icon { background-image: url(../images/ulip-plan/ulip-sprites.webp); width: 65px; height: 65px; background-repeat: no-repeat; } .upi1 { background-position: -536px -80px; } .upi2 { background-position: 0 -380px; } .upi3 { background-position: -97px -60px; } .upi4 { background-position: -93px -425px; } .upi5 { background-position: -250px 9px; } .ulip-incl-icon { background-image: url(../images/ulip-plan/ulip-sprites.webp); min-width: 60px; height: 65px; background-repeat: no-repeat; } .uii1 { background-position: -440px -360px } .uii2 { background-position: -440px -452px } .uii3 { background-position: -520px -18px } .uii4 { background-position: 0 -479px } .uii5 { background-position: -160px -3px } .bu-card-icon { background-image: url(../images/ulip-plan/ulip-sprites.webp); width: 50px; height: 50px; background-repeat: no-repeat; } .buci1 { background-position: -189px -489px } .buci2 { background-position: -257px -85px } .buci3 { background-position: 0 -5px } .buci4 { background-position: -87px 0 } .wfa-icon { background-image: url(../images/ulip-plan/ulip-sprites.webp); min-width: 30px; height: 30px; background-repeat: no-repeat; background-position: -171px -80px; } .uwc-icon { background-image: url(../images/ulip-plan/ulip-sprites.webp); width: 70px; height: 73px; background-repeat: no-repeat; } .uwc1 { background-position: -250px -170px } .uwc2 { background-position: -340px -116px } .uwc3 { background-position: -340px -226px } .uwc4 { background-position: 0px -90px } .uwc5 { background-position: -80px -70px; height: 50px; } .buy-imgs8 { position: absolute; right: 0; top: 0; background-image: url(../images/kotak-assured-pension.svg); background-repeat: no-repeat; height: 65px; width: 65px } .buy-imgs8:hover { background-image: url(../images/kotak-assured-pension-blue.svg) } /*End Ulip sprite images*/ /*Home page sprites images*/ ul.howdoUL li a:before { background-image: url(../images/home-sprites.webp) !important; } ul.howdoUL li a:hover:before {} ul.howdoUL li a.payOnline:before { background-position: -260px 10px !important; } ul.howdoUL li a.payOnline:hover:before { background-position: -260px -120px !important; } ul.howdoUL li a.KMBankATMDropBox:before { background-position: -0px 3px !important; } ul.howdoUL li a.KMBankATMDropBox:hover:before { background-position: -0px -120px !important; } ul.howdoUL li a.branchOffices:before { background-position: -407px 3px !important; } ul.howdoUL li a.branchOffices:hover:before { background-position: -407px -120px !important; } ul.howdoUL li a.ECS_NACH:before { background-position: -120px 3px !important; } ul.howdoUL li a.ECS_NACH:hover:before { background-position: -120px -120px !important; } .howdoUL_wrap .viewAll:after { background-image: url(../images/home-sprites.webp) !important; background-position: -580px -13px !important; } .home-blog { background: url(../images/menu-sprites.webp); height: 50px; top: -10px; position: relative; width: 60px; margin: auto; } .hb1 { background-position: -220px 0px; } .hb2 { background-position: -168px -54px; } .hb3 { background-position: -60px -57px; } .hb4 { background-position: -170px 0px; } .hb5 { background-position: -166px -110px; } .kinvest-icon { background: url(../images/banner-sprites.webp); width: 70px; height: 60px; display: inline-block; margin-left: 10px; } .ki1 { background-position: 0px -210px; } .ki2 { background-position: 0px 0px; } .ki3 { background-position: 0px -310px; } .ki4 { background-position: 0px -100px; } .life-icon { background: url(../images/banner-sprites.webp); width: 50px; height: 50px; display: inline-block; background-size: 130px; margin-right: 2rem; } .li1 { background-position: 41px -130px; } .li2 { background-position: 41px -60px; } .li3 { background-position: 41px -240px; } @media screen and (max-width: 480px) { ul.howdoUL li a.payOnline:before { background-position: -260px -128px !important; } ul.howdoUL li a.KMBankATMDropBox:before { background-position: -4px -129px !important; } ul.howdoUL li a.branchOffices:before { background-position: -405px -129px !important; } ul.howdoUL li a.ECS_NACH:before { background-position: -121px -129px !important; } .desktop-banner { display: none; } .mobile-banner { display: block; } ul.exiting-banner .life-icon { display: none; background: none !important; } .exiting-banner.bannerUL li .bannerCont { width: 100% !important; } .banner .vidDiv img.posterImg { display: none !important; } } /*End Home page sprites images*/ .bor-top-rad{text-transform:lowercase;}.txt-cta{text-transform:none !impo}.c12:before{background-position: -42px -250px;background-size: 951px; height: 50px;}.menu{z-index:1;padding:0;margin:0;list-style-type:none;position:absolute;right:116px;}.menu .share i.fa{height:25px;width:25px;font-size:18px;text-align:center;line-height:25px;background-color:#fff;border-radius:2px;color:#000;cursor:pointer}.menu .submenu{list-style-type:none;padding:0;margin:0}.menu .submenu li{transition:all ease-in-out 0.5s;position:absolute;top:0;left:0;z-index:-1;opacity:0}.menu .submenu li a{color:#212121;display:flex;align-items:center;justify-content:center;height:25px;width:25px}.menu .submenu li a .fa{display:inline-block}.menu .share:hover.top .submenu li:nth-child(1){opacity:1;top:26px;transition-delay:0.08s;transform:rotateY(0deg)}.menu .share:hover.top .submenu li:nth-child(2){opacity:1;top:52px;transition-delay:0.16s;transform:rotateY(0deg)}.menu .share:hover.top .submenu li:nth-child(3){opacity:1;top:78px;transition-delay:0.24s;transform:rotateY(0deg)}.menu .share:hover.top .submenu li:nth-child(4){opacity:1;top:104px;transition-delay:0.32s;transform:rotateY(0deg)}.menu .share:hover.top .submenu li:nth-child(5){opacity:1;top:130px;transition-delay:0.4s;transform:rotateY(0deg)}.menu .submenu li a:hover i.fa{color:#fff}.menu .submenu li a:hover.facebook i.fa{background-color:#3b5999}.menu .submenu li a:hover.twitter i.fa{background-color:#000}.menu .submenu li a:hover.twitter svg{fill:#fff}.menu .submenu li a:hover.googlePlus i.fa{background-color:#2e78b6}.menu .submenu li a:hover.instagram i.fa{background-color:#2e78b6}.menu .submenu li a:hover.instagram i.whatsap{background-color:#37db55}.twitterdiv{padding:6px 6px;fill:unset}@media only screen and (max-width:480px){.menu{display:none}}.border-feats{padding:38px 2px 2px 48px !important;border-radius:6px;border:1px solid #b6b6b6;}.border-e-term{border-radius:0px !important;border:unset !important;}ul.third_navUL5>li {
    width: 215px !important;
    max-width: none;
}
ul.fixedUL{
	padding:0 !important;
}
.buy-slick-card{
	margin-left: 10px;
}
/*csshome*/


    section:first-of-type {
        margin-top: 120px;
    }
    .home .banner {
    margin-top: -2rem;
    overflow: visible;
    margin-bottom: 60px;
}
.sliderNav{bottom: -80px !important;}
.home .banner {
    padding: 0 85px 0 0;
}
.home.outer ul {
    margin-top: 30px;
}
#myHomeBanner {
    display: block !important;
    margin-bottom: 10px;
}
ul.bannerUL {
    width: 100%;
    float: left;
    height: 100%;
    position: relative;
}
ul.bannerUL li {
    height: 425px !important;
    width: 100%;
    float: left;
    height: 100%;
    box-sizing: border-box;
    position: absolute;
    padding: 0;
    box-sizing: border-box;
    display: none;
}
.banner .vidDiv {
    width: 100%;
    height: 100%;
    float: left;
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: right center;
    background-position: initial;
}
ul#myHomeBanner li .slideBox {
    padding-left: 2rem;
}
ul#myHomeBanner li .slideBox {
    padding-left: 2rem;
     width: 100%;
    float: left;
    background: rgba(147, 149, 152, .7);
    height: 100%;
    position: relative;
    z-index: 1;
}
ul.bannerUL li .midWrapper {
    height: 100%;
}
ul.bannerUL li .kcrbchange {
    width: 100% !important;
}
ul.bannerUL li .bannerCont {
    height: 100%;
    float: left;
    display: table;
    width: 45%;
    position: relative;
    z-index: 5;
}
.kcrbget {
    top: 23px !important;
}
.top-text {
    vertical-align: top;
    margin-top: 2rem;
    position: relative;
}
.vCenterWrap {
    display: table-cell;
}
.banner_latest {
    position: relative;
}
.banner_latest .posterImg {
    border-radius: 12px;
}
.banner_latest img {
    object-fit: cover;
}
.slideBox.overlay-none {
    background: 0 0 !important;
}
ul.white-back li a {
    background-color: #fff !important;
    color: #da251c;
    margin: -9px 9px 0 0;
}
.kotak-life {
    display: none;
}
.home.outer ul {
    margin-top: 30px;
}
ul.sliderNav li {
    width: auto;
    float: left;
    margin: 0 5px;
}
.slick-dots {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0;
    margin: 0;
}
.needCalculatorWrap {
    margin-top: 20px;
}
article {
    width: 100%;
    float: left;
    padding-right: 80px;
    box-sizing: border-box;
}
.pad_0 {
    padding: 0px 85px 0px;
}
.slick_back {
    border-radius: 16px;
    padding: 32px 9px 10px;
    position: relative;
    margin-bottom: 24px;
}
.slick_back h2 {
    margin-bottom: 0;
}

.needCalculatorWrap h2 {
    text-align: center;
}
.looking_center {
    text-align: center;
    color: #3a3a3a !important;
    font-family: 'Lato-Regular' !important;
}

.slick-list {
    padding: 15px 0px !important;
    margin: 0px 10px !important;
}
.custom_slick_slider .slick-track {
    padding: 25px 0px 0px 0px;
}
.custom_slick_slider .slick-slide {
    margin: 0 13px;
    border-right: 0 !important;
}
.custom_slick_slider .cardhome {
    margin: 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    position: relative;
    min-height: 300px !important;
    width: 100%;
    min-width: 257px;
    background: rgb(255, 255, 255);
    border: 1px solid #a9a9a9;
    padding: 6px;
    height: 100%;
    float: none;
    transition: transform 0.3s 
ease-in-out;
}
.cardhome_back {
    display: flex;
}
.cardhome_back p {
    background-color: #ffecec;
    padding: 5px;
    border-radius: 8px;
    width: 100%;
    max-width: max-content;
    margin-left: auto;
    color: #ab2020;
    font-size: 13px;
    font-weight: 500;
}

.cardhome p {
    flex-grow: 1;
}
.kotak_slick {
    padding-left: 15px;
    margin-top: 20px;
} 
.kotak_slick h6 {
    font-size: 18px;
    color: #003366;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}
.kotak_slick h6 span {
    color: #fa1432 !important;
}
.kotak_slick h6::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 1px;
    background: #ddd;
}
.kotak_slick p {
    font-size: 16px;
    color: #5e6061;
    margin-top: 16px;
}
.back_grey {
    background-color: #f1f1f1;
    min-height: 77px;
    max-height: 77px;
    padding: 14px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 0px;
    right: 0px;
    left: 0px;
    align-items: center;
}
.back_grey h6 {
    font-size: 18px;
    color: #262626;
    font-weight: 600;
    max-width: 158px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cardhome sup {
    font-size: 10px;
}
.link_image_wrapper {
    display: inline-block;
    width: fit-content;
    height: fit-content;
}
.link_image_wrapper img {
    position: absolute;
    top: 50%;
    left: 87%;
    transform: translate(-50%, -50%);
}

.slick-slide img {
    display: block;
}
.default_imgg {
    width: 48px;
    height: 50px;
    object-fit: cover;
    object-position: 4px 0px;
}
.cardhome:hover .hover_imgg {
    width: 40px;
    height: 50px;
    object-fit: cover;
    object-position: -40px 0px;
    opacity: 1;
}
.link_image_wrapper .hover_imgg {
    opacity: 0;
}
.cardhome:hover .hover_imgg {
    opacity: 1;
}
.cardhome:hover .default_imgg {
    opacity: 0;
}

.link_image_wrapper img {
    position: absolute;
    top: 50%;
    left: 87%;
    transform: translate(-50%, -50%);
}
.slick-slide img {
    display: block;
}
.longLandBannerFooterSec {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #3a3a3a;
    justify-content: end;
}
.longLandBanFootTnCCls {
    display: flex;
    align-items: center;
}
.longLandBanFootTnCCls a {
    font: 400 12px RobotoRegular, sans-serif;
    color: #0d6efd !important;
    text-decoration: none !important;
    cursor: pointer !important;
    margin-left: 10px;
    margin-right: 11px;
}
.longLandBanFootTnCCls .bar {
    font-size: 16px;
}
.longLandBanFootRefCls {
    color: #000000 !important;
    font: 400 14px RobotoRegular, sans-serif;
}
.slick_back .slick-counter {
    position: absolute;
    bottom: 6px;
    left: 75px;
    font-size: 16px;
    font-weight: 700;
}
.slick_flex.slick_flex11 .prev_rotate {
    position: absolute;
    bottom: 1px;
    left: 24px;
    transform: rotate(180deg);
    cursor: pointer;
    width: 34px;
    height: 50px;
    object-fit: cover;
    object-position: -79px 0;
}
.slick_flex.slick_flex11 .slick_next {
    position: absolute;
    bottom: -16px;
    left: 125px;
    cursor: pointer;
    width: 34px;
    height: 50px;
    object-fit: cover;
    object-position: -80px 0;
}
.displayset {
    display: flex !important;
    position: absolute;
    bottom: 30px;
}
.btn-space5a{position: absolute;
    bottom: 30px;}
.banner-e-term4 {
    background-image: url(/assets/images/banner/DesktopBanners/ban4desk.webp);
}
.banner-bgnew {
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    height: 425px !important;
    width: 100%;
    border-radius: 12px;
    margin: 20px 0 20px;
}
.banner-e-term1 {
    background-image: url(/assets/images/banner/DesktopBanners/neweterm.webp);
}

.banner-bgnew {
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    height: 425px !important;
    width: 100%;
    border-radius: 12px;
    margin: 20px 0 20px;
}

.btn-space5a {
    margin: 105px 87px 10px !important;
    display: block;
}
.newtc {
    position: relative;
    text-align: end;
    right: -61%;
    bottom: 45px;
}
ul.bannerUL li p {
    color: #fff;
    font-size: 1.8em;
    width: 100%;
    float: left;
    margin: 10px 0 50px 0;
}


.tandc {
    font-size: 11px;
    color: #0B4D88;
    text-decoration: underline;
    font-family: 'Lato-Regular';
    padding-right: 4px !important;
}
.refer {
    padding-left: 7px !important;
        font-size: 11px;
   
    position: relative;
    display: inline-block;
}
.iso-app {
    width: 120px;
    background-image: url(../images/header-sprite.webp) !important;
    background-size: 563px !important;
    background-position: -425px -561px !important;
    height: 36px;
    border-radius: 10px;
}
.goo-app {
    width: 120px;
    background-image: url(../images/header-sprite.webp) !important;
    background-size: 493px !important;
    background-position: -370px -282px !important;
    height: 36px;
    border-radius: 10px;
}
.banner_latest .two_buttons {
    position: absolute;
    bottom: 65px;
    left: 80px;
    display: flex;
    align-items: center;
}
.buynowgreen {
    font-family: 'Lato-Regular';
    background: linear-gradient(0deg, rgb(182 189 46) 0%, rgb(137 135 44) 100%) !important;
    text-align: center;
    color: white !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    font-size: 16px;
    height: 40px;
    width: 160px;
}
.banner_latest .two_buttons .knowmoregreen {
    width: auto !important;
    padding: 5px 20px;
}
.z-know {
    position: relative;
    z-index: 10;
}
.knowmoregreen {
    width: 19%;
    border: 1px solid #82772D !important;
    border-radius: 20px;
    color: #82772D !important;
    font-family: 'Lato-Regular';
    padding: 10px;
    text-align: center;
    background-color: unset !important;
    font-size: 16px;
    padding: 10px 20px;
}
@media only screen and (max-width: 768px) {
    .slick-list {
        margin: 0px 0px !important;
    }
    .howdoi .card{width: 100% !important;}
    .pad_0{padding: 0 !important;}
    .slick_back .slick-counter {
        right: 75px !important;
        left: auto !important;
        bottom: 50px !important;
    }
    .slick_flex .prev_rotate {
        right: 125px !important;
        left: auto !important;
        bottom: 47px !important;
    }
        .slick_flex .slick_next {
        right: 30px !important;
        left: auto !important;
        bottom: 30px !important;
    }
    .longLandBannerFooterSec{margin-top: 45px;}
    .kotak-life {
    display: block;
}
.home1{display: none;}
.mbans-crs6{background-image: url(../images/banner/MobileBanners/manufacturemob.png); height:100vh !important;margin-top:-1rem !important;}
.mbans-crs14{background-image: url(../images/banner/MobileBanners/aummobile1.jpg); height:100vh !important;margin-top:-2rem !important; background-size:cover !important; background-position:center bottom;}
.mbans-crs1{background-image:url(../images/banner/MobileBanners/newfirst.webp);height:100vh!important;margin-top:-2rem!important;background-size:cover !important; background-position:center;}.mbans-crs4{background-image:url(../../images/banner/MobileBanners/newhappymob.png);height:100vh!important;background-size:cover !important; background-position:center;margin-top:-4rem!important}.mobile-btna{text-align:center;position:absolute;bottom:50%}.mobile-btna1{text-align:center;position:absolute;bottom:50%;display:flex!important;gap:12px!important;justify-content: center;}
.mbans-crs7{background-image: url(../images/banner/MobileBanners/0per_gst_mobile_banners.webp); height:100vh !important;margin-top:-2rem !important; background-size:cover !important; background-position:center bottom;}
.mbans-crs8{ background-image: url(../images/banner/MobileBanners/mobileplus.webp);height:100vh !important;margin-top:-2rem !important; background-size:cover !important; background-position:center;}
.mbans-crs2{background-image:url(../images/banner/MobileBanners/Bima-Lokpal-Day-mobile-min.webp);height:100vh!important;margin-top:-2rem!important;background-position:center;}
.mbans-crs4{background-image:url(../images/banner/MobileBanners/newhappymob.webp);height:100vh !important;background-size:cover !important; background-position:center;margin-top:-2rem!important}
.mbans {
    margin-top: 13px
}
    .mobile-btna {
        display: flex;
        gap: 10px;
        justify-content: center;
                text-align: center;
        position: absolute;
        bottom: 50%;
        align-items: center;
    
    }
    
    .know {
        padding: 5px 20px;
        display: inline-block;
        border-radius: 20px;
        font-size: 16px !important;
        border: 1px solid #82772D;
        color: #82772D;
        width: 160px !important;
        height: 40px !important;
    }
        .bbbb {
        padding: 9px 30px !important;
        margin-bottom: 0;
    }
.slick-dots {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0;
    margin: 0;
}
.slick-dots li {
    list-style: none;
    display: inline-block;
}
    .mobile-banners {
        width: 100%;
        
        background-size: 100% 100% !important;
        background-repeat: no-repeat;
    }
        .mobile-btna1 {
        text-align: center;
        position: absolute;
        bottom: 50%;
        display: flex !important;
        gap: 12px !important;
        justify-content: center;
    }
    .slick-initialized .slick-slide {
        margin: 0 2px;
    }
    .kotak-life{padding: 0;background-color: transparent !important;margin-top: -40px;}
    .kotak-life .slick-next, .kotak-life .slick-prev{display: none !important;}
    .kotak-life .slick-slide{border-right: 0 !important;}
    .life_join_us{border-top: 0 !important;}
        .newcontentgen {
        position: absolute;
        bottom: 20px;
        width: 100%;
        text-align: center;
    }
    

.slick-slider .slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #a9a9a9;
    border-color: #5e6061;
    border: 1px solid #5e6061 !important;
    border: none;
    cursor: pointer;
    padding: 0;
        transition: background-color 0.3s 
ease;

}
.slick-dots li.slick-active button {
    background-color: #fff !important;
}
}
.popular_list {
        margin-top: 0;
    }

    .positionRelative {
        position: relative
    }

    .blur {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 421px;
        z-index: 10
    }

    .howdoi_new .card:before {
        content: "";
        display: block;
        width: 75px;
        height: 75px;
        background: url(/assets/images/css_sprites_1.webp) no-repeat;
        background-size: auto;
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .howdoi_new .ipl1:before {
        background-position: -125px -25px !important;
    }

    .howdoi_new .ipl2:before {
        background-position: -25px -25px !important;
    }

    .howdoi_new .ipl3:before {
        background-position: -325px -25px !important;
    }

    .howdoi_new .ipl4:before {
        background-position: -725px -25px !important;
    }

    .howdoi_new .ipl5:before {
        background-position: -1025px -25px !important;
    }

    .howdoi_new .ipl6:before {
        background-position: -925px -25px !important;
    }

    .howdoi_new .ipl7:before {
        background-position: -225px -25px !important;
    }

    .howdoi_new .ipl8:before {
        background-position: -425px -25px !important;
    }

    .howdoi_new .ipl9:before {
        background-position: -625px -25px !important;
    }

    .howdoi_new .ipl10:before {
        background-position: -525px -25px !important;
    }

    .howdoi_new.ipl11:before {
        background-position: -825px -25px !important;
    }

    .howdoi {
        padding: 60px 0
    }

    .howdoi {
        margin-top: 0 !important;
    }

    .howdoi .asist {
        font-size: 14px;
        font-weight: 400;
        color: #DA251C;
        text-align: center;
    }

    .howdoi .how {
        font-weight: 400;
        font-size: 34px;
        color: #5e6061;
        text-align: center;
        margin: 10px 0;
    }

    .howdoi .step {
        color: #3A3A3A;
        font-weight: 500;
        font-size: 16px;
        text-align: center;
        padding-bottom: 30px;
    }

    .howdoi .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 16px;
        flex-direction: row !important;
        margin-left: 0 !important;
    }

    .howdoi .card {
        width: 17%;
        padding: 24px 20px 10px;
        border: 1px solid #a9a9a9;
        text-align: center;
        border-radius: 8px;
        box-shadow: none;
        min-height: 175px;
        transition: transform 0.3s ease-in-out;
        margin: 0;
        position: relative;
    }

    .howdoi .card:hover {
        transform: translateY(-5px);
        border: 2px solid #003366;
        border-radius: 8px;
    }

    .howdoi .card {
        transition: all 0.3s ease;
    }

    .new-im {
        width: 75px;
        height: 75px;
    }

    .howdoi .pay {
        font-size: 16px;
        margin: 10px 0;
        font-weight: 500;
        color: #000000;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        position: absolute;
        top: 95px;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
    }

    .product_card_12 {
        display: none;
    }

    .hidden-card {
        display: none;
    }

    .button-container {
        text-align: center;
        margin-top: 20px;
    }

    .button-container .btn {

        background-color: unset;
        color: #fa1432;
        border: 1px solid #fa1432;
        cursor: pointer;
        border-radius: 25px;
    }

    .button-container .btn:hover {
        background-color: unset;
        color: #fa1432;
        border-color: #fa1432;
        border: 1px solid #fa1432;
        border-radius: 25px;
    }

    .button-container .btn:focus {
        background-color: unset;
        color: #fa1432;
    }

    @media only screen and (max-width:768px) {
        .howdoi .row {
            display: grid !important;
            grid-template-columns: 1fr 1fr;
        }

        .get_card_11 {
            display: none !important;
        }

        .product_card_12 {
            display: block !important;
        }
            .whyKotak .carouselWrap .contWrap{height: 225px !important;}
    }

    @media only screen and (max-width:480px) {
        .card {
            width: 100%;
            margin: 0;
        }

        .row {
            gap: 10px;
        }

        .howdoi .how {
            font-weight: 400;
            font-size: 24px;
            color: #5e6061;

        }
    }

    .hidden {
        display: none;
    }
    .whyKotak {
    padding: 30px !important;
    margin-bottom: 60px;
}
.for-mobile{display: none;}

/*csshome*/
ul.third_navUL > li > a > img {position: unset !important;}
@media (max-width: 480px) {
	header .midWrapper{
		padding:0 !important;
	}
}
ul.navUL{
	padding-left:0 !important;
}


ul.third_navUL5>li:nth-child(5n+1) {
    clear: both !important;
}

ul.third_navUL5>li.borderNoneLI {
    clear: both !important;
}

ul.third_navUL5>li.borderNoneLI:after {
    display: none !important;
}

ul.third_navUL5>li:nth-child(5n+1):after {
    display: none !important;
}
.blog-body-content table tr th, .blog-body-content table tr td { font-size: 15px;}.c7:before{width:40px; left:18px;background-size:657px; background-position:-140px -180px; background-repeat:no-repeat;}.tulip-ol{width:50%;}.tulip-ol li{width:100% !important;}.tulip-cta a{width:250px;}@media (max-width:480px) {.tulip-ol{width:100%;}.eye-foundation{text-align: center}.eye-foundation img{width: 150px;}.eye-foundations .red-btn{top:0px;}.eye-foundations .space-bot{    margin-top: 3rem !important; position: relative; top: -30px; margin-bottom: 3rem;}}.menu-icon.ju1:before {   background-size: 440px !important;  background-position: 0px -309px;} 
.gwb1:before{background-size:270px; background-position: -154px -260px}@media (max-width: 1440px) {ul.second_navUL>li:hover>.third_navWrap{min-height:200px; max-height:510px; overflow:auto;}}@media (max-width: 1280px) {ul.third_navUL3 > li {width:310px;}}.w-h{width:100%; height:100%}.w-h-auto{width:auto; height:auto}.w-h-357{width:357px; height:357px;}@media screen and (max-width:480px) {.w-h-357{width:100%; height:100%;}}.get-let,.get-let span,.get-stay p span{font-family:Lato-Bold}.get-infinty,.get-let,.get-stay,.nfo-list{text-align:center}.get-let p,.get-stay p{margin-bottom:0!important;font-style:italic}.get24-banner .kgfc-h2 .pera-red, .bannerUL .renival-pay h3 .pera-red{background:#da251c!important;border-radius:30px;color:#fff!important}.get-let,ul.bannerUL li .get-premiun .bannerCont,ul.bannerUL li .get24 .bannerCont{width:100%!important}ul.bannerUL li .get24 h3{font-family:Lato-Regular;font-style:italic}ul.bannerUL li .get24 h3 span{font-family:Lato-Bold;display:inline-block;font-weight:700}.get24-banner img{margin-top:-4rem}.get-infinty img{width:180px}.get-infinty{margin-top:.5rem;margin-bottom:.5rem;display:inline-block;width:100%}.get-let{display:flex;justify-content:center;width:80%!important;border-radius:30px;margin:0 auto 20px;background:#08315f}.get24 .content-absolute h3 span,.get24-banner .kgbf-bans .kgfc-h2,.nfo-list{width:100%}.get24 h3 .pera-red{color:#da251c!important;letter-spacing:.3px}.get-let p{color:#fff!important;padding:10px 0!important}.get24 .mobile-ban img{width:100%;height:auto!important}.get24-banner .junebanner .kgfc-h2{font-size:20px;font-style:italic;font-family:Lato-Light;letter-spacing:.3px}.get24-banner .kgfc-h2 .pera-red{font-family:Lato-Bold;padding:0 20px;position:relative;top:0;display:inline-block;margin-bottom:10px}.get-stay{display:block;width:80%;margin:auto}.get-stay p{vertical-align:top;font-size:20px!important;color:#08315f!important}.get-stay p img{width:50px;position:relative;top:1rem;height:40px}.get24-banner .renival-pay img{margin-top:0}.renival-pay h3 .pera-red{line-height:33px;width:auto!important;padding:0 14px}.renival-pay h3 span{margin-bottom:5px}.nfo-btn { background: linear-gradient(0deg, rgba(182, 189, 46, 1) 0%, rgba(137, 135, 44, 1) 100%) !important; padding: 6px 20px; display: inline-block; border-radius: 20px; color: #fff !important; font-size: 14px; margin-top: 13px !important; margin-bottom:15px; font-family: 'Lato-Bold'; }}.best-invest #topic1 ol.ol-num{list-style:decimal !important;}
.net-pay,.pay-links,.upi-pay{display:flex}.net-pay,.pre-benfy span img{width:100%}.pre-benfy span,.t-right,.tabcontent_tabcontent.active,.upi-cont p{position:relative}.tab_tab{overflow:initial!important}.tab_tab .tablinks_tablinks.active{background:#fff;padding:10px 30px;border-top-left-radius:20px;border-top-right-radius:20px;border:2px solid #9a9a9a4f;border-bottom:0;position:relative;top:3px}.newpay-prem{background:#efefef;border-bottom:2px solid #9a9a9a4f}.tab_tab .tablinks_tablinks{font-size:14px;font-weight:600}.tab_tab .tablinks_tablinks.active p{border:0}.tablinks_tablinks.active:before{content:'';width:0;height:0;position:absolute;border-left:10px solid transparent;border-right:10px solid transparent;border-bottom:20px solid #efefef;bottom:-29px;left:45%}.tabcontent_tabcontent{margin-top:3rem}.pre-benfy span{width:20px;display:inline-block;top:3px}.tabcontent_tabcontent p a{color:#003cff;border-bottom:1px solid #003cff}.evenfaq ul.accordUL li{padding-left:0;background:0 0;box-shadow:none;border-bottom:1px solid #c4c4c4;margin-top:0}.evenfaq ul.accordUL li h3{padding:5px 20px 15px 5px}.evenfaq ul.accordUL li h3:after,.evenfaq ul.accordUL li h3:before{right:6px;border:none;left:auto;height:2px}.evenfaq ul.accordUL li h3 span:after{border:none!important}.evenfaq #load_more span{width:6px;display:inline-block;height:6px;background:#ed3237;margin-right:4px;border-radius:30px}.evenfaq #load_more span:nth-child(2){background:#036}.evenfaq #load_more{border:none!important;color:#000}.evenfaq #load_more:hover{background:0 0;color:#ed3237!important}.evenfaq .pay-num{width:30px;display:inline-block;padding-right:10px}.t-right:before,.upi-cont p:before{content:'';background:url(../images/paymypremeium/tick.png) 0 0/22px;width:22px;height:22px;position:absolute}.pay-links p{margin-right:20px}.t-right{padding-left:39px!important;vertical-align:top}.t-right:before{left:9px;margin-top:4px}.net-pay{margin:2rem 0}.ney-img{width:40%;text-align:center}.ney-img img{width:200px}.upi-cont p{padding-left:30px;padding-right:2rem;margin-bottom:2rem}.upi-cont p:before{left:0;top:3px}.upi-img img{width:90%;margin-left:10%}.no-bullet{padding-left:0;background:0 0}.no-bullet:before{content:none}@media (max-width:480px){.newpay-prem .tab_tab .tablinks_tablinks{padding:10px}.tablinks_tablinks p{padding:0}}
.manage_login,.manage_login.activate{right:auto;position:fixed;width:55%;left:50%;transform:translate(-50%,0);background:#fff}.manage_login{bottom:-1000px;border-top-left-radius:50px;border-top-right-radius:50px}.manage_login.activate{height:auto;z-index:1;bottom:0!important;top:auto;-webkit-transition:.2s linear;-moz-transition:.2s linear;-o-transition:.2s linear;transition:.2s linear}.manage_login .rhsBoxDetails1{width:100%;height:350px}.manage_login .rhsBoxDetails1 h3.select-login{font-size:22px;text-align:center;color:#000;border:none!important}.manage_login .glog{display:block}.manage_login .login-options{border:1px solid #dcdcdc;padding-bottom:2.4rem}.manage_login .login-options:last-child{content:none}.manage_login .sellog-group{justify-content:center}.manage_login a.closePopup:after,.manage_login a.closePopup:before{width:15px;height:2px;left:7px;top:14px}.manage_login .closePopup span:after{height:29px;width:29px;top:1px; left:1px;}
@media (max-width: 480px) {.manage_login.activate{width:90%;top:auto;height:85%}.manage_login .login-options{padding-left:0;padding-top:1rem;margin-bottom:15px}.manage_login .rhsBoxDetails1 h3.select-login{margin-bottom:1rem}.manage_login .login-options:last-child{content:none}.manage_login .rhsBoxDetails1{height:auto}.manage_login{border-top-left-radius:20px;border-top-right-radius:20px}}.best-invest #topic1 ol.ol-num li{list-style:decimal !important;}.best-invest #topic1 ol.ol-num li:before{content:none;}.rhsBoxDetailWrap_login{background:#fff;position:fixed;z-index:-1;height:0;top:98%;transition:.3s;-webkit-transition:.3s;width:98%;right:-1400px}.rhsBoxDetailWrap_login.activate{right:0;height:auto;z-index:-1;bottom:0!important;top:auto;position:fixed;width:60%}.rhsBoxDetails_login{background:#ffff;height:425px!important;position:absolute;left:0;bottom:0;width:100%}.sellog-group{display:grid;grid-gap:20px;grid-template-columns:repeat(auto-fit,minmax(300px,0fr))}.rhsBoxDetails1{width:91%;padding:20px;height:290px}.login-options,.login-options p{padding-left:2rem;padding-bottom:1rem}.rhsBoxDetails1 h3.select-login{font-size:28px;text-align:left;font-weight:600;padding-top:2rem;color:#ed3237;margin-bottom:3rem;border-bottom:1px dashed #707070!important;padding-bottom:1rem;letter-spacing:.3px}.login-options{border-right:1px solid #dcdcdc;display:block;text-align:center;padding-top:2.5rem}.login-options:last-child{border-right:none}.login-options p{font-size:18px;color:#404040;font-weight:600;padding-top:1rem}.login-options img{width:60px}.glog{display:flex;align-items:center}.login-now{background-color:#da251c;color:#fff;font-size:14px;display:inline-block;padding:6px 20px;border-radius:20px}.login-now:hover{color:#fff;background-color:#c41425}@media screen and (max-width:480px){.rhsBoxDetailWrap_login.activate{width:100%;height:560px;display:block}.rhsBoxDetails1{width:100%}.rhsBoxDetailWrap_login{display:none}}.wel2:before{background-position:-55px -219px}
@media screen and (max-width:480px){.sellog-group{grid-template-columns:inherit;}.login-options:first-child{padding-bottom:3rem;border-bottom: 1px solid #dcdcdc; border-right:0;}.policy-manager .pera-red{color:#da251c!important;width:100%;display:block}.get-policy{font-size:16px!important}.get-policy p img{width:50px;position:relative;top:0;height:30px}.get-policy p{vertical-align:top;display:flex;font-size:17px!important;font-style:normal}.w-h-100 img{width:100%;height:auto!important}.policy-manager .content-absolute h3{font-family:Lato-Light}.policy-manager .content-absolute h3 .pera-red{font-family:Lato-Bold}}.c8:before{background-position:-856px -289px; background-size:721px;}
.buy-arrow{display:inline-block;width:16px;position:relative;height:10px;top:2px;left:10px}.buy-arrow:before{width:15px;height:2px;background:red;content:'';position:absolute;top:0;margin-top:1px;transition:all ease .3s;-webkit-transition:all ease .3s;border-radius:-18px 24px 0 0;border-radius:24px}.buy-arrow:after{width:0;height:0;content:'';display:block;position:absolute;right:0;top:0%;border:2px solid red;border-color:transparent red red transparent;padding:4px;margin-top:-3px;transition:all ease .3s;-webkit-transition:all ease .3s;-moz-transition:all ease .3s;-o-transition:all ease .3s;transform:rotate(-45deg);-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-o-transform:rotate(-45deg)}.buy-life-slick p.p-txt{white-space:nowrap;overflow-y:visible!important}.buy-life-slick p.p-txt .buy-tit{color:#036;border-bottom:2px solid #036}.buy-online-links{padding-left:10rem!important}@media screen and (max-width:480px){.buy-slick-card .d-flex{display:flex!important}.buy-online-links{padding-left:7rem!important}.benefitsOfUlip-img svg, .manageUlipFunds-img svg, .whyInvestinUlip-img svg{width:100%; height:auto;}}
.buy-online-new-sec{border-radius:24px 0 0 24px;}.color_close:after{left:1px;background:#000 !important; z-index:-1; border:1px solid #000 !important;}.buy-online-new-sec .closePopup:before, .buy-online-new-sec .closePopup:after{content:''; background:#fff !important;}@media only screen and (max-width:640px) {.buy-online-new-sec{border-radius:24px 24px 0 0px;}}.menu-buy{background:#DDEEFF !important; border:none; color:#003366 !important;border: 1px solid #003366;width: max-content !important;display: flex !important;align-items: center;gap: 3px;}.menu-buy:hover{background:#DDEEFF !important; color:#003366 !important;border: 1px solid #003366 !important;}.menu-buy:hover img{margin-left: 5px;}.menu-buy img{width: 15px !important;height: 14px;object-fit: cover;transition: margin-left 0.3s ease;}.menu-buy:before{background:#82772D !important;}.c9:before{background-position:-137px -343px; background-size:721px; height:50px;}.blog-head .best-card .btnLink a{background: transparent linear-gradient(360deg, #82772D 0%, #C1CD23 100%) 0% 0% no-repeat padding-box !important;}@media screen and (max-width:1440px) {.tocContent {width: 530px;}}@media screen and (max-width:1366px) { .tocContent {width: 430px;}}@media screen and (max-width:1366px) { .tocContent {width:100%; font-size: 15px;}}.c10:before { background-position: 9px -872px;  background-size: 989px; height: 50px;}.c11:before { background-position: 18px -805px;  background-size: 836px; height: 50px;}.login-img{background: url(../images/menu-sprites.webp); background-size:370px; width:66px; height:66px; }  .li1{background-position:-103px -424px}.li2{background-position:-107px -504px}  
.iso-app{width: 120px;  background-image: url(../images/header-sprite.webp) !important;     background-size: 563px  !important;  background-position:-424px -561px !important; height: 35px; border-radius: 6px;}
.goo-app{width: 120px;  background-image: url(../images/header-sprite.webp) !important;     background-size: 493px  !important;  background-position:-371px -283px  !important; height: 35px; border-radius: 6px;}.termblog-sick li{}.term-blg{border:1px solid #fcdadd;background:#fff5f5;padding:10px;border-radius:30px;display:block;color:#000;text-align:center;width:90%;font-weight:600;letter-spacing:.3px;font-size:12px}.term-blg:hover{color:#fff;background:#da251c}.termblog-sick .slick-arrow{position:absolute;background:url(../images/term-insurance/testimonial-rating-sprites.webp);width:30px!important;z-index:1;background-color:#fff;height:40px;border:none;text-indent:-20000px;padding:0}.termblog-sick .slick-prev{left:-37px;background-position:-5px -180px}.termblog-sick .slick-next{right:-14px;background-position:-35px -180px;top:0}.termblog-sick .slick-arrow:hover{background-color:inherit;border:none}.termblog-sick .slick-disabled{background:none}@media only screen and (max-width:480px){.termblog-sick .slick-prev{left:-7px}.termblog-sick .slick-next{right:-7px}.term-blg{width:80%;text-align:center;margin:auto}} .newulip{margin-bottom:30px !important;}
@media screen and (max-width:480px){.buysticky{position:fixed;left:5%;bottom:10px;font-size:18px;font-family:Lato-Regular,Arial,Helvetica,sans-serif;display:inline-block;color:#fff;font-weight:400;width:90%;background:#fff0 linear-gradient(90deg,#82772D 0%,#C1CD23 100%) 0% 0% no-repeat padding-box;color:#FFF;padding:10px 30px;text-align:center;border-radius:30px;margin-top:10px;overflow:hidden;}.reddiv{text-align:center;background:#fff;position:fixed;z-index:2;width:100%;bottom:0;display:block;height:70px;margin:auto;overflow:hidden;box-shadow:0 -1px 6px 5px #cac4c4bf}.buysticky::before{position:absolute;content:'';display:inline-block;top:-180px;left:0;width:15px;height:100%;background-color:#fff;animation:shiny-btn1 4s ease-in-out infinite}}#bottomStickyProduct{z-index:0}.bottomNavProduct{background-color:#FFF;width:100%;margin:0 auto;padding:5px 20px;border-radius:10px 10px 0 0;box-shadow:0 3px 99px #00000029;text-align:center;transform:translate(-50%,0);display:none}.fixed-bottom{position:fixed;bottom:0;left:50%;display:block !important; z-index:1}.bottomNavProduct h3{font-size:18px;font-weight:500;color:#036;letter-spacing:.3px}.productPage-cta a{border:1px solid #036;color:#036;padding:8px 30px!important;border-radius:25px;display:inline-block;text-align:center;width:auto;font-weight:500;margin-top:2rem;font-family:'Lato-Regular';font-size:16px;position:relative;overflow:hidden;letter-spacing:.3px;transition:all .3s ease-in-out}.productPage-cta a:hover{color:#FFF;background-color:#036}.productPage-cta1 a{background:#fff0 linear-gradient(90deg,#82772D 0%,#C1CD23 100%) 0% 0% no-repeat padding-box;color:#FFF;padding:8px 30px!important;border-radius:25px;display:inline-block;text-align:center;width:auto;font-weight:500;margin-top:2rem;font-size:16px;position:relative;font-family:'Lato-Regular';overflow:hidden;letter-spacing:.3px}.productPage-cta1 a::before{position:absolute;content:'';display:inline-block;top:-180px;left:0;width:15px;height:100%;background-color:#fff;animation:shiny-btn1 4s ease-in-out infinite}.productSticky-grid{display:grid;grid-template-columns:50% 50%;align-items:center;max-width:1150px;margin:0 auto}.customerCare p{font-size:18px;font-weight:500;color:#da251c;text-align:left;display:flex;align-items:center;justify-content:center;gap:8px;font-family:'Lato-Regular';font-weight:400}.customerCare p img{width:35px;height:35px}.customerCare p a{color:#036;text-decoration:underline;text-underline-offset:3px;font-family:'Lato-Bold'}.customerCare p .downloadBrochure{color:#C41425!important;display:flex;align-items:center;justify-content:center;gap:10px;font-family:'Lato-Regular'}.dflexP{display:flex;justify-content:center;align-items:center;gap:10px}.dflexS{display:flex;justify-content:start;align-items:center;gap:25px}@media only screen and (max-width:480px){#bottomStickyProduct{display:none}.rhsFixed_Wrapper.life_join_us .activate .rhsboxWrap.buy-online-change{overflow:scroll; height:65vh;}}.buyPlan .for-nri:after{background:unset!important;}.for-nri{padding-top:15px;margin-bottom:10px;}.blog-social-meida .social__icons{display:none!important}.what-is-ulip{padding:50px 0 0}.wfa-icon{min-width:35px!important;width:unset!important}.fund-tick{min-width:25px!important}.ulip-incl-icon{min-width:55px!important}.listdisc{margin-left:33px}.listdisc li{list-style:disc!important}.side{min-height:unset!important}.newslickulip .slick-next{transform:rotate(364deg)!important}.min-heigt-space{min-height:360px!important;width:30%;max-width:30%}.flex-new{gap:13px!important}.newalignulip .slick-arrow{top:1px!important}.flex-new{gap:20px!important} @media only screen and (max-width: 480px) {.min-heigt-space{width:100% !important;max-width:unset !important;} .authorulip{display:flex !important;}}.new-bottom{margin-bottom:25px!important}.howdoes-new{gap:10px!important;margin:10px 0!important}.types-new{margin:0!important}.what-are{margin:0 0 -7px 0!important}.bene-img{margin:0!important}.bank-img{width:80%!important;height:auto!important;margin-left:47px}.newchoosegrid{align-items:unset!important;background-color:#FFF3F3;border:1px solid #E8D4D2;padding:20px 0;border-radius:4px}.whynewchoose1{height:89%!important;display:block!important;border:0!important;background:unset!important;padding:unset!important}.enjoynew{margin:31% 0 0!important}.margincta{margin:40px 0 0 0!important}@media only screen and (max-width:480px){.whynewchoose1 .margincta{margin:13px 0 0 0!important}.bank-img{width:100%!important;margin-left:0 !important;}.enjoynew{margin:-6px 35px 0 !important;}}@media only screen and (max-width:1366px){.whynewchoose1 .margincta{margin:22px -12px!important}.newslickulip .pagingInfo-facslick{bottom:7% !important}}
.blog-body-content{z-index:1}.blog-index{z-index:1 !important;}.buy_fixed{/*overflow:hidden; height:100vh;*/ height:100%;overflow:auto;}.height-unset .bor{height:auto;}
.newarrows .save-fund-tick,.save-fund-tick{background-image:url(../images/ulip-plan/ulip-sprites.webp);background-repeat:no-repeat;height:35px;min-width:28px;background-position:-183px -134px}.fund-tick-arrow{background-image:url(../images/ulip-plan/ulip-sprites.webp);min-width:30px;height:30px;background-repeat:no-repeat;background-position:-171px -80px}.typesaves .type{display:flex}.safunds{margin-left:10px}.new-saving-supporting{padding-bottom:3rem !important;}.new-saving-supporting .term-blg{border:1px solid #fff;background:#fff;padding:10px;padding-right:28px;border-radius:10px;display:block;color:#036;text-align:left;width:90%;font-weight:600;letter-spacing:.3px;font-size:15px;height:108px;position:relative;line-height:18px}.suport-arrow{position:absolute;width:26px;height:26px;border:1px solid #036;border-radius:30px;bottom:4px;right:9px}.suport-arrow:before{position:absolute;display:block;content:"";color:#ed1c24;width:11px;height:11px;border-top:solid 2px;border-left:solid 2px;top:26%;right:-5px;transform-origin:0% 0%;transform:rotatez(94deg)}.suport-arrow:after{position:absolute;display:block;content:"";color:#ed1c24;width:16px;height:2px;top:12px;border-bottom:solid 2px;transform:translatex(4px);transform:rotatez(315deg);left:2px}.saving-author{margin:-10px 0 10px!important}@media only screen and (max-width:480px){.new-saving-supporting{background:#F5F5F5;padding:2rem 0 18rem}.new-saving-supporting .slick-prev{right:40px!important;bottom:-70px!important;left:auto!important;background-color:inherit}.new-saving-supporting .slick-next{right:1px!important;top:128px;background-color:inherit}.saving-author{margin:10px 0 0px!important;z-index:11}}.newbgspace{padding-top:50px !important; margin-bottom:0 !important;}
 ul.howWorksUL li:before { width: 11px; height: 45px; position: relative; background: url(../images/downCurv01.png) no-repeat center 0; content: ''; display: block; margin: 0 auto 25px auto }.buy_fixed .custom-icon{display:none;}.card-min{min-height:407px !important;}
 
 .saving-author{top:120px;}.product-graycard { padding: 24px 0 34px 0 !important;z-index:1 !important; } .saving-top-section #newform { position: sticky; top: 18rem; margin-bottom: 10rem; } .saving-top-section .dynamicform { margin-top: -20rem; margin-left: 14rem; width: 535px; /* max-width: 533px; height: 500px;*/ border-radius: 16px; opacity: 1; background:#fff; } .saving-banner{top:0 !important;margin-top:20% !important} .white-background{width: 565px;background: white; margin-bottom:24px; border-radius: 8px; opacity: 1; height: 330px; margin-top:3rem;} .saving-kgfb{padding: 24px;} .kgfb-head{font-size: 18px; font-family: 'Lato-Bold'; letter-spacing: 0.3px; color: #000;} .sa-pays{font-size: 16px; margin-bottom: 10px; color: #000;} .getv{position: relative; width:47%;} .life-cover-d{width:40%;} .getv:before{content: ''; width: 2px; height: 100%; background: #d1cccc; position: absolute; right: -40px; bottom: -20px;} .get-val{display: flex; justify-content: space-between;border-bottom: 1px solid #999;padding-bottom: 2rem; width:100%;} .g-ayear{font-size: 16px; padding-bottom: 6px; } .g-ayear span{font-size: 14px; color: #717171} .sa-year-value{font-size: 16px; } .sa-year-value span{font-size: 21px; padding-bottom: 7px;font-weight: 600; } .retun-prem{padding: 15px 0; font-size: 15px;} .retun-prem span{color:#36B37D } .sa-kgfb-btn{display: flex; justify-content: space-between;} .saving-kgfb p{letter-spacing: 0.3px; color: #000;} .s-plde{font-size: 16px; color: #000; text-decoration: underline; margin-top: 1rem;} .get-gyear{font-size: 16px; color: #fff !important; border: 1px solid #C41425; padding: 10px 20px; border-radius: 30px;background-color:#ed1c24;} .lfie-death{font-size: 14px; color: #000;padding-bottom: 6px;} .kgfb-head span{color: #AB2020; background: #FFECEC; border-radius: 30px; display: inline-block; font-size: 14px; padding: 7px 12px; letter-spacing: 0.3px; font-family: 'Lato-Regular';} .saving-top-section{position: relative; top: 130px;} .position-bg{ width: 100%; height:780px; background: #F5F5F5; position: absolute; bottom: 0; z-index: -1;} .formimg{background-image:url('/assets/images/formsprite.webp')!important;} .spriteform1{background-position: -446px -928px !important; height: 14px;} .formimg1{background-image:url('/assets/images/formsprite.webp')!important; display: inline-block; vertical-align: middle;} .spriteform2{ background-position: -376px -924px !important; height: 26px; width: 26px; margin-right: 9px;margin-top:-7px } .spriteform3{ background-position: -185px -909px !important; height: 26px; width: 26px; margin-right: 9px; background-size: 126px;} .grey-bg{background: #F5F5F5} .new-saving-supporting .termblog-sick .slick-arrow{background-color: inherit !important;} .new-saving-supporting .termblog-sick .slick-prev, .new-saving-supporting .termblog-sick .slick-next{top: 31px !important;} .new-saving-supporting .new-saving-supporting .termblog-sick .slick-next{background-position: -35px -180px;} .new-saving-supporting .term-blg:hover { color: #101010; background: #fff;} @media only screen and (max-width:1366px){ .white-background{width:475px; height:330px;} .saving-top-section .dynamicform{margin-left:8rem;} } @media only screen and (max-width:480px){ .sec-kasp .kgfb-head{width:70%;} .sa-heads{background:#fff;} .saving-top-section #newform { position:unset !important} .life-cover-d{width:50%;} .saving-top-section .dynamicform{margin:unset !important; height:auto;} .custom-space{display:flex !important;overflow-x:scroll !important; margin-left:-2rem;} .custom-space::-webkit-scrollbar{display:none;	} .getv{width:58%;} .sec-kasp .getv{width:47%;} .saving-top-section .position-bg { width: 100%; height: 85% !important;} .white-background{margin-left:15px !important;min-width: 315px !important; min-height: 436px !important;} .kgfb-head { display: flex; align-items: center; justify-content: space-between;  } .kgfb-head span { margin-top:-13px; font-size:12px; } .getv:before { width: 2px; right: -18px; bottom: -20px; height: 98px !important; } .life-cover-d{margin-right:-20px !important} .display_block{display:block !important} .sa-kgfb-btn {flex-wrap:wrap;justify-content: center;} .s-plde{margin-bottom:1rem;} .retun-prem{padding-bottom:0 !important; min-height:60px;} .kgfb-head{margin-bottom:15px !important;} .arrow-pink{display: flex !important; align-items: baseline !important;} .saving-top-section{top:0px;} sec-kasp{width: 200px;} .new-saving-supporting .termblog-sick .slick-prev, .new-saving-supporting .termblog-sick .slick-next{top: 115px !important;} .grey-bg{background: #f4f5f6} .sa-year-value span{font-size: 18px; } .saving-kdfb{padding:14px;} .get-val{justify-content:start; gap:14%;} .get-gyear{font-size:14px;} .saving-kgfb{padding:14px;} .product-graycard {margin-top:0rem;} .product-graycard .midWrapper{padding:0 !important;} .saving-top-section .dynamicform {width: 100%;} .saving-author{top:0px;} }.arrow-pink{margin-left:10px;}.income-space{padding-left:3px}.income-space1{padding-right:3px}
 .paybtns{width: 100%;}
.paybtns:nth-child(2) .p-href{width: 300px !important;}
.p-href{ text-align: center; width: 240px !important;}
.ctacms{display: inline-block; padding: 10px 26px; width: 100%; max-width: 143px; background: #ED3237 0% 0% no-repeat padding-box; border-radius: 23px; text-align: center; font-size: 14px;  color: #FFF !important; font-weight: 300;    margin-top: 0px;}
@media (max-width:480px) {
    .pay-links {display: block; }
    .p-href, .paybtns:nth-child(2) .p-href{width: 100% !important;}
	.grey-bg1{background-color:#f4f5f6; padding-bottom:6rem;}
	.grey-bg1 .termblog-sick{margin-top:30px;}
	.ulip-proofs .min-heigt-space{min-height:100% !important;}
	.ulip-authorpoints .nameTitle{display:flex}
	.ulip-authorpoints .authorulip{display:block !important;}
	.ulip-authorpoints  .authorImg{width:65px; height:65px;}
	.ulip-authorpoints .sa-author1{background-position:-226px -776px !important; background-size:inherit !important;}
	.ulip-authorpoints .sa-author2{background-position:-100px -350px !important; background-size:inherit !important;}
	.ulip-authorpoints .tooltiptext{left:-30px !important;}
	.ulip-authorpoints .authorName{margin-bottom:20px !important;}
}
.check-calculators{margin-top:20px}.check-bg{background-color:#F6F6F6;padding:24px 20px;border-radius:10px;width:334px}.check{font-size:17px;font-weight:600 !important;letter-spacing:0.3px;font-family:'Lato-Regular';color:#000;border-bottom:1px solid #ED1C24;margin:0! important;padding-bottom:20px}.check-bg ul{padding:0}.check-bg ul li{font-size:16px;font-weight:400;font-family:'Lato-Regular';color:#000;border-bottom:1px solid #B8B8B8;padding:5px 0 !important;position:relative}.check-bg ul li:last-child{border-bottom:none!important}.check-bg ul li a{color:#000}.check-bg ul li:hover a{color:#ED1C24;width:100%;display:block}.kotak-e-term-plan{display:none;}
.new-online-card1{display:block;}.termblog-sick{display:flex;}
.newamithpadding{padding:0!important}.term-version{text-align:center;padding:0 0 10px;display:flex;align-items:center;justify-content:center}.term-version .current-font{font-size:14px!important;color:#404040 !important;}.version{height:16px;background-position:-324px -1165px;margin-right:5px;background-size:224px;width:23px}@media only screen and (max-width:480px){.authorDetails{display:inline-block !important;}}.benefitsOfTerm-arrow{background-image:url(/assets/images/saving-plans/term-plan-sprites.webp)}.term-version span{padding-left:3px;padding-right:3px;}




.c13:before{.c12:before{background-position: -42px -250px;background-size: 951px; height: 50px;}}
@media (min-width:1024px) {
   body section, footer{top:0 !important; position: static;}
    section:first-child{margin-top: 110px;}
    section:first-of-type { margin-top: 110px;}
    section.blog-head{margin-top: 0 !important;}
	section.form-section, section#topSectiongsp{margin-top:0;}
}

  .bima-logo{width: 112px; display: inline-block; margin: 10px 0 0;}
    .bima-logo a{}
    .bima-logo a img{width: 100%;}
.copyright{margin-top: -6px !important;}.authortop{margin-top:0;}
.new-footer{background:#fff;}
@media (max-width:480px){
.topinvest{top:24px !important;}
}
@media only screen and (min-width: 1280px) {
/*ul#myHomeBanner{margin-left: 4rem;} */
  
    .needCalculatorWrap .leftCont{padding-left: 0 !important;}
   ul.navRhs, .rhsNav{float: left; }
   .rhsNav{width:22%;}
    .navWrap { width: 46% !important;}
ul.navRhs>li>a.whatsBtn{padding-left: 35px !important;}
.polular-searches{margin-left:-4rem;}

}
@media only screen and (max-width: 1366px) {
	ul.navUL li a.customer-type {padding:0 20px;}
	
	header .midWrapper{width:1000px !important;}
}

@media only screen and (max-width: 480px) {
		header .midWrapper{width:100% !important;}
}
.buy-imgsnew4 {
    position: absolute !important;
    right: 0  !important;
    top: 0  !important;
    background-image: url(/assets/images/KotakGen2Gen.svg)  !important;
    background-repeat: no-repeat  !important;
    height: 65px  !important;
    width: 65px  !important;
}
.buy-imgsnew4:hover {
    background-image: url(/assets/images/KotakGen2Gen1.svg) !important;
}
.panel .text-center { text-align: center !important; }
 .customimg{width:100% !important;height:100% !important;}
   .rhsBoxDetailWrap.activate .slick-list{    overflow: inherit !important;}
.buy-img-only{margin-top: -90px !important;}

.buyterm .d-block{display:block !important;}
    .buyterm .d-none{display:none !important;}
	.bestsavgsp .onlinegsp .ml-auto i{display: none;}
.bestsavgsp .onlinegsp .accordioncard{position: relative}
.bestsavgsp .onlinegsp .accelclr .ml-auto:after{background-image: url(../images/spriteImg.webp);position: absolute;content: "";bottom: 3px;background-position: -259px -475px;right: 0;width: 20px;height: 20px;background-size: 715px;}
.bestsavgsp .onlinegsp .ml-auto:after{background-image: url(../images/spriteImg.webp);position: absolute;content: "";bottom: 3px;background-position: -259px -450px;right: 0;width: 20px;height: 20px;background-size: 715px;}
  @media only screen and (max-width: 480px) {
    .buyterm .d-block{display:none !important;}
    .buyterm .d-none{display:block !important;}
    .buyterm {
        margin-top: -13px !important;
    }
  }
  .buy-slick-card-image{max-width:unset !important;margin-right:0 !important}
 
  .menu-icon1:before {
    position: absolute;
    top: 0px;
    background-image: url(/assets/images/menu-sprites.webp) !important;
    content: '';
    height: 53px;
    width: 60px;
    left: 0;
    background-position: -434px -4px;
    background-repeat: no-repeat;
  }
  .menu-icon1 {
    position: relative;
    padding-left: 60px;
    height: 50px !important;
}

  .menu-icon5:before {
    position: absolute !important;
    top: 0px;
    background-image: url(/assets/images/menu-sprites.webp) !important;
    content: '' !important;
    height: 50px !important;
    width: 50px !important;
    left: 0;
    background-repeat: no-repeat;
    background-position: -540px -4px;
  }
  .menu-icon5 {
    position: relative !important;
    padding-left: 60px;
    height: 50px !important;
}

  .menu-icon6:before {
    position: absolute !important;
    top: 0px;
    background-image: url(/assets/images/menu-sprites.webp) !important;
    content: '' !important;
    height: 50px !important;
    width: 60px !important;
    left: 0;
    background-position: -804px -4px;
    background-repeat: no-repeat;
  }
  .menu-icon6 {
    position: relative !important;
    padding-left: 60px;
    height: 50px !important;
}


  .menu-icon7:before {
    position: absolute !important;
    top: 0px;
    background-image: url(/assets/images/menu-sprites.webp) !important;
    content: '' !important;
    height: 50px !important;
    width: 60px !important;
    left: 0;
    background-repeat: no-repeat;
    background-position: -488px -4px;
  }
  .menu-icon7 {
    position: relative !important;
    padding-left: 60px;
    height: 50px !important;
}


  .menu-icon8:before {
    position: absolute !important;
    top: 0px;
    background-image: url(/assets/images/menu-sprites.webp) !important;
    content: '' !important;
    height: 50px !important;
    width: 60px !important;
    left: 0;
    background-position: -597px -4px;
    background-repeat: no-repeat;
  }
  .menu-icon8 {
    position: relative !important;
    padding-left: 60px;
    height: 50px !important;
}

  .menu-icon9:before {
    position: absolute !important;
    top: 0px;
    background-image: url(/assets/images/menu-sprites.webp) !important;
    content: '' !important;
    height: 50px !important;
    width: 60px !important;
    left: 0;
    background-position: -752px -4px;
    background-repeat: no-repeat;
  }
  .menu-icon9 {
    position: relative !important;
    padding-left: 60px;
    height: 50px !important;
}

  .menu-icon10:before {
    position: absolute !important;
    top: 0px;
    background-image: url(/assets/images/menu-sprites.webp) !important;
    content: '' !important;
    height: 50px !important;
    width: 60px !important;
    left: 0;
    background-position: -701px -4px;
    background-repeat:no-repeat ;
  }
  .menu-icon10 {
    position: relative !important;
    padding-left: 60px;
    height: 50px !important;
}


  .menu-icon11:before {
    position: absolute !important;
    top: 0px;
    background-image: url(/assets/images/menu-sprites.webp) !important;
    content: '' !important;
    height: 50px !important;
    width: 60px !important;
    left: 0;
    background-position: -650px -4px;
    background-repeat: no-repeat;
  }
  .menu-icon11 {
    position: relative !important;
    padding-left: 60px;
    height: 50px !important;
}
.c21:before {
    background-position: 692px -269px !important;
    background-size: 53px !important;
    height: 49px !important;
	 content: '' !important;
  }
  
  .menu-icon12:before {
    
    position: absolute !important;
    top: 0px;
    background-image: url(/assets/images/menu-sprites.webp) !important;
    content: '' !important;
    height: 50px !important;
    width: 56px !important;
    left: 0;
    background-position: -384px -4px;
  }
  .menu-icon12 {
    position: relative !important;
    padding-left: 60px;
    height: 50px !important;
}


 
 .table th{font-size:18px !important;text-align:center !important;}
  .table td{font-size:16px !important;text-align:center !important;}
  
  .underline {
    text-decoration: underline !important;
    position: relative;
    display: inline-flex;
    align-items:baseline;
    gap: 5px; /* Ensures proper spacing between text and icon */
}

.arrowright:after {
    width: 11px;
    height: 10px;
    content: '';
    background: url(https://www.kotaklife.com/assets/images/spriteImg.webp) no-repeat -208px -29px;
    display: inline-block; /* Ensures it behaves like an inline element */
    transform: rotate(-88deg);
    vertical-align: middle; /* Aligns it with the text baseline */
}
.arrowright{ position: relative;color:#003366;text-decoration:unset;
    display: inline-flex;
    align-items:baseline;
    gap: 5px; /* Ensures proper spacing between text and icon */}
.newimgacc{display:flex;gap:11px  }
.circleblue{width:20px;display:block !important;}
.arrownewflex{display:flex;gap:10px;}

.newcolorcta{background: transparent linear-gradient(90deg, #82772D 0%, #C1CD23 100%) 0% 0% no-repeat padding-box !important;border:unset !important;
  color: #FFF !important;padding: 8px 30px;
  /* width: 45% !important; */
  display: inline-block !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin-top: 1rem !important;
  color: #FFFFFF;
  background-color: #ed3237 !important;
  border-radius: 30px !important;
  position: relative !important;
  overflow: hidden !important;
  text-align: center !important;
  letter-spacing: 0.3px !important;
  margin: 25px 0 0 !important;}
  .how-none{background-color:unset !important;border-left:0 !important;margin:0 !important;padding:0 !important;}
 
.invest-calone{font-size:18px;text-align:center;color:#000}
.remove_arrow{padding-right: 0 !important;}
.remove_arrow::after{display: none;}
@media only screen and (max-width:640px) {
	
	.buy-imgsnew4{position:relative !important;
	
	
	}
	.buyterm{
		height:fit-content;
	}

}

/*term-css*/
#topSection{margin-top: 100px;}
.breadcrumb-ulip {
    margin-top: 40px;
    padding-bottom: 0 !important;
    list-style: none;
}
.firstFold-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3%;
}
.termTitle {
    padding: 30px 0px 0px 0px;
}
.termTitle {
    font-size: 26px !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #000000 !important;
    margin: 0 !important;
   
    text-align: left;
}

.termDesc {
    font-size: 16px;
    font-weight: 500;
    color: #404040;
    padding: 10px 0;
    letter-spacing: 0.3px;
}
.firstFold-card {
    border: 1px solid #ab2020;
    border-radius: 8px;
    padding: 15px;
    margin-top: 25px;
}
.discountFlex {
    display: flex;
    align-items: center;
    background-color: #ffecec;
    border-radius: 15px;
    justify-content: start;
    padding-left: 10px;
    padding-right: 6px;
    gap: 2px;
    width: fit-content;
    font-size: 16px;
}
.discountFlex img {
    object-position: -266px 8px;
    object-fit: cover;
    width: 19px;
    height: 44px;
}
strong {
    padding-right: 3px;
    padding-left: 3px;
    font-family: Lato-Regular;
    
}
.stronger strong{font-weight: 700 !important;
    font-size: 20px;
    color: #000;}
.benefitsOfUlip-list li{
    color: #000;
}
.terms p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: .32px;
    color: #000;
}
.whoShouldBuyAccordion-item-header.active::after {
    content: "\2212";
}
.whoShouldBuyAccordion-item-header::after {
    content: "\002B";
    font-size: 3rem;
    position: absolute;
    right: 2rem;
}
.discountFlex span {
    background-color: #fff;
    border-radius: 15px;
    color: #ab2020;
    font-weight: 600;
    margin: 3px 0;
}
.cardTitle {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.3px;
    margin: 10px 0;
}
.cardTitle span {
    font-size: 29px;
    font-weight: 400;
    letter-spacing: 0.3px;
}
.get_tax_free {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0px;
}
.termBenefits {
    margin: 10px 0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #000;
}
sup {
    padding-right: 5px;
}
.buttonFlex {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
}
.termFirstCta {
    background-color: #ed3237;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 25px;
    padding: 10px 15px 10px 15px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.3px;
    gap: 10px;
    margin-top: 8px;
}
.termBrochure {
    color: #000;
    text-decoration: underline;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.hd-mob {
    display: block !important;
}

.whyKotakBenefits {
    margin: 25px 0 10px;
}
.whyKotakBenefits-title {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #000 !important;
}
.whyKotakBenefits .benefitsSection {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}
.benefitsTitle {
    font-size: 17px;
    font-weight: 700 !important;
    letter-spacing: 0.3px;
    color: #000 !important;
}
.benefitsTitle span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #000;
}
.bright {
    border-right: 1px solid #333;
    height: 25px;
    margin-right: 10px;
}
#popularLifeCover, #termInsurancePlan, #reasonToBuy, #howInsuranceWork, #kotakVsOther, #whoShouldBuy, #benefitsOfTerm, #lifeExpectancy, #onlineKotakPlan, #influenceTerm, #keySection, #chooseBestTerm, #whyWeNeedTerm, #howToBuyTerm, #top3Term, #rightTimeTerm, #termPolicy, #basicTerm {
    margin: 30px 0 20px;
}
.fullBg {
    background-color: #F5F5F5;
    padding: 25px;
}
.lifeCover-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.rating_img {
    object-position: -193px 25px;
    object-fit: cover;
    width: 95px;
    height: 50px;
}

.lifeCover-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    overflow-x: auto;
}
a {
    padding-left: 3px;
    padding-right: 3px;
}
.lifeCover-cards {
    background-color: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    padding: 30px 7px 0 7px;
    text-align: center;
    position: relative;
    min-height: 150px;
    min-width: 185px;
    margin-bottom: 10px;
}
#popularLifeCover .bestSeller {
    position: absolute;
    background-color: #ffecec;
    color: #ab2020 !important;
    font-size: 11px;
    top: 5px;
    right: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-height: 17px;
    padding: 0 5px;
}
.trendweb {
    object-position: -282px 11px;
    object-fit: cover;
    width: 14px;
    height: 49px;
}
#popularLifeCover .lifecoverAmt {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
#popularLifeCover .lifecoverAmt span {
    font-size: 36px;
    font-weight: 500;
    color: #000;
}
sup {
    padding-right: 5px;
}
#popularLifeCover .lifecoverAmt sup {
    font-size: 24px;
    color: #000;
}
#popularLifeCover .lifecoverValue {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
#popularLifeCover .lifecoverValue span {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
.lifecover-arrow {
    text-align: right;
    margin: 15px 0 0 5px;
}
.lifecover-arrow img {
    object-position: -42px 1px;
    object-fit: cover;
    width: 40px;
    height: 50px;
}
.lifeCover-cta, .kotakVsOther-cta, .lifeExpectancy-cta {
    display: flex;
    justify-content: center;
    margin: 15px auto 5px;
}
.lifeCover-cta a, .howInsuranceWork-sec a, .kotakVsOther-cta a, .lifeExpectancy-cta a, .onlineKotakPlan-cta a, .termInsuranceCalc-cta a, .chooseBestTermbox-cta a, .whyBuyTermbox-cta a {
    background-color: #ed3237;
    /* background-color: #C41425 !important; */
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 25px;
    padding: 10px 15px 10px 15px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.3px;
    gap: 10px;
    margin-top: 8px;
    max-width: 230px;
    position: relative;
    overflow: hidden;
}
.lifeCover-cta a::before, .howInsuranceWork-sec a::before, .kotakVsOther-cta a::before, .lifeExpectancy-cta a::before, .onlineKotakPlan-cta a::before, .chooseBestTermbox-cta a::before, .whyBuyTermbox-cta a::before {
    position: absolute;
    content: "";
    display: inline-block;
    top: -180px;
    left: 0;
    width: 15px;
    height: 100%;
    background-color: #fff;
    animation: 4s 
ease-in-out infinite shiny-btn1;
}

#popularLifeCover .trending {
    position: absolute;
    background-color: #f1f0d4;
    /* color: #857b2d !important; */
    color: #574F1E !important;
    font-size: 11px;
    top: 5px;
    right: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-height: 17px;
    padding: 0 5px;
}

.reasonToBuyCards, .typesOfTermCards, .whyWeNeedTermCards {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    margin: 20px 0;
    margin-top: 0 !important;
}
.factorsslickterm1 {
    justify-content: start !important;
    overflow-x: auto;
    flex-wrap: nowrap !important;
    display: flex;
    gap: 20px;
}
.reasonToBuyCard {
    box-shadow: none !important;
    min-width: 350px !important;
    background: white;
    border-radius: 8px;
    padding: 20px;
    max-width: 350px;
    min-height: 240px;
    margin-top: 0 !important;
    text-align: start !important;
    border: 1px solid #DBDBDB;
    margin-bottom: 15px;
}
.termSubtitle {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;}
    .factorsslickterm1::-webkit-scrollbar {
        height: 4px;
    }

    .factorsslickterm1::-webkit-scrollbar-track {
        background: #d0d0d0;
        border-radius: 2px;
        transition: background 0.3s ease;
        cursor: pointer;
    }

    .factorsslickterm1::-webkit-scrollbar-thumb:hover {
        background: #555;
        cursor: pointer;
    }

    .typesOfTermCards::-webkit-scrollbar {
        height: 4px;
    }

    .typesOfTermCards::-webkit-scrollbar-track {
        background: #d0d0d0;
        border-radius: 2px;
        transition: background 0.3s ease;
        cursor: pointer;
    }

    .typesOfTermCards::-webkit-scrollbar-thumb:hover {
        background: #555;
        cursor: pointer;
    }

    .whoShouldBuyAccordion {
    width: 100%;
    margin: 5px auto;
    transition: background-color 0.3s 
ease-out;
}
.whoShouldBuyAccordion-item {
    color: #111;
    margin: 1rem 0;
    border-radius: 0.5rem;
    border-bottom: 1px solid #d8d8d8;
}
.whoShouldBuyAccordion-item-header {
    font-weight: 500 !important;
    letter-spacing: 0.3px;
}

.whoShouldBuyAccordion-item-header {
    padding: 20px 15px;
    min-height: 3.5rem;
    line-height: 1.2;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    cursor: pointer;
}
.whoShouldBuyAccordion-item-header::after {
    content: "\002B";
    font-size: 3rem;
    position: absolute;
    right: 2rem;
}
.whoShouldBuyAccordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s 
ease-out, background-color 0.3s 
ease-out;
}
.whoShouldBuyAccordion-item-body-content {
    padding: 5px 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
.whoShouldBuyAccordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s 
ease-out, background-color 0.3s 
ease-out;
}
.tradition {
    margin-bottom: 25px !important;
}
.kotakVsOther-table {
    width: 100%;
    overflow-x: auto;
}
.kotakVsOther-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.kotakVsOther-table table th {
    background: #fff !important;
    font-weight: 700;
}

.kotakVsOther-table table th {
    padding: 12px;
    text-align: center;
    font-size: 20px;
    color: #000 !important;
    border: 1px solid #000 !important;
}
.kotakVsOther-table .primary {
    background-color: #002060 !important;
    color: #fff !important;
}

.kotakVsOther-table table th {
    background: #fff !important;
    font-weight: 700;
}
.middle {
    object-position: -98px 3px;
    object-fit: cover;
    width: 18px;
    height: 41px;
}
.middle {
    vertical-align: middle;
}
.color_w {
    color: #ffffff !important;
}
.kotakVsOther-table table td {
    font-size: 18px;
    padding: 10px !important;
    color: #000 !important;
    background-color: #fff !important;
    border: 1px solid #000 !important;
}
.online_card {
    display: flex;
}


.upsapce {
    margin-top: 25px !important;
}
.onlineEterm-card {
    margin: 25px 12px 10px 0 !important;
    width: 50%;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    padding: 20px 30px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2%;
}
.titleDownload {
    display: flex;
    justify-content: flex-start;
    align-items: start !important;
    width: 100%;
}
.onlinePlan-text a {
    text-decoration: underline;
    color: #036;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.brochure {
    background-position: -48px -136px;
    background-size: 560px;
}

.brochure, .td-bti-icon {
    height: 40px;
    width: 40px;
}
.assured-sprites, .benefitsOfTerm-arrow, .brochure, .bti-icon, .factor-sprites, .kotak-term-logo, .pay-sprites, .tp-sprites, .ttp-sprites, .wbuy-sprites, .who-sprites, .whyneed-sprites {
    background-image: url(../images/term-insurance/term-plan-sprites.webp);
}
.onlinePlanList {
    
    margin-top: 0;
    padding: 20px 0;
}

.onlinePlanList li {
    font-size: 16px;
     position: relative;
    font-weight: 500;
    color: #000;
    padding: 5px 25px;
}
.onlinePlanList li:before {
    width: 20px;
    height: 20px;
    background-image: url(../images/spriteImg.webp);
    position: absolute;
    content: "";
    left: 0;
    background-position: -259px -450px;
    background-size: 715px;
}
.get_quote_1 {
    align-self: center;
}
.onlineplan {
    font-size: 12px !important;
    margin-left: 12px !important;
    padding: 8px 20px;
    max-width: 290px;
    border-radius: 10px 10px 0 0;
    background-color: #ebebec;
    color: #404040;
    font-weight: 600;
    text-transform: uppercase;
}
.save-offline .accelcard {
    height: auto;
}
.accelcard {
    padding: 35px 10px 35px 50px;
}
.save-offline .op9:before {
    top: 15px !important;
}
.accel {
    color: #036 !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    letter-spacing: normal !important;
    text-transform: uppercase !important;
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: 100px;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    right: 33px;
    top: -2px;
    position: absolute;
    z-index: 1;
}
.tooltiptext {
    width: 500px !important;
}

.tooltiptext {
    display: none !important;
}
.accelcard .gspview {
    padding: 10px 40px;
}
.save-offline .op11:before {
    top: 60px !important;
}
.save-offline .op5:before {
    top: 11rem !important;
}
.benefitsOfTermFlex {
    flex: 0 0 48%;
    display: flex;
    align-items: center;
    margin: 0 !important;
    gap: 10px;
}
.benefitsOfTermFlex {
    display: flex;
    margin: 0 !important;
    gap: 10px;
    justify-content: flex-start;
    align-items: start !important;
}
.benefitsOfTermFlex img {
    object-position: -155px -6px;
    object-fit: cover;
    width: 27px;
    height: 49px;
}
.typesOfTermCards {
    overflow-x: auto;
    flex-wrap: nowrap !important;
}

.typesOfTermCards {
    justify-content: start !important;
    gap: 20px;
}
.reasonToBuyCards, .typesOfTermCards, .whyWeNeedTermCards {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    margin: 20px 0;
}
.typesOfTermCard {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    max-width: 370px;
    min-height: 307px;
    margin: 10px 0;
    text-align: start;
    border: 1px solid #e5e5e5 !important;
    min-width: 370px !important;
}
.typesOfTermnew .termDescnew {
    padding-bottom: 0 !important;
}
.featuresTerm-grid, .influenceTerm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 20px;
    margin-top: 10px;
}
.featuresTermFlex {
    min-height: 180px;
}

.benefitsOfTermFlex, .featuresTermFlex, .influenceTermFlex, .whyIsSumAssuredFlex, .whyBuyTermFlex, .termPolicyFlex, .basicTermFlex {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    margin: 10px 0;
}
.featuresTermFlex img {
    object-position: -155px -6px;
    object-fit: cover;
    width: 27px;
    height: 49px;
}
.typesOfTermCards {
    overflow-x: auto;
    flex-wrap: nowrap !important;
}
.typesOfTermCards {
    justify-content: start !important;
    gap: 20px;
}
.reasonToBuyCards, .typesOfTermCards, .whyWeNeedTermCards {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    margin: 20px 0;
}
.kotakVsOther-table table {
    min-width: 600px;
}

.newwtab {
    width: unset !important;
    margin: 0 auto;
}
.influenceTermFlex img {
    object-position: -45px -8px;
    object-fit: cover;
    width: 31px;
    height: 50px;
}
.chooseBestTermFlex {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 15px;
    background-color: #f6f6f6;
    border-bottom: 1px solid #d8d8d8;
    padding: 20px;
}
.wfa-icon {
    min-width: 35px !important;
    width: unset !important;
}

.wfa-icon {
    background-image: url(../images/ulip-plan/ulip-sprites.webp);
    min-width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: -171px -80px;
}   
.topspace {
    margin-top: 75px !important;
}
.testimonial-bg {
    background: none !important;
    height: 495px;
    width: 910px !important;
    background-position: 2px 23px;
    background-repeat: no-repeat;
    border: 5px solid #036;
    border-radius: 30px;
}
.testimonial-bg:before {
    background-image: url(../images/term-insurance/testimonial-rating-sprites.webp) !important;
    content: '';
    background-position: 9px 2px;
    width: 80px;
    height: 60px;
    position: absolute;
    top: -40px;
    left: 45%;
    background-color: #fff;
}
.saving-testimonial .slick-prev {
    background-position: -8px -187px;
}

.saving-testimonial .slick-prev, .saving-testimonial .slick-next {
    background-image: url(../images/term-insurance/testimonial-rating-sprites.webp) !important;
}
.saving-testimonial.savetest .slick-list {
    overflow: hidden !important;
}



.saving-testimonial .slick-next {
    background-position: -39px -187px;
}
.saving-testimonial .slick-prev, .saving-testimonial .slick-next {
    background-image: url(../images/term-insurance/testimonial-rating-sprites.webp) !important;
}
.pagingInfo-review-tes {
    bottom: 6rem;
}
.testimonial-bg:after {
    content: '';
    background-image: url(../images/term-insurance/testimonial-rating-sprites.webp) !important;
    background-position: 1px -80px;
    width: 63px;
    height: 60px;
    position: absolute;
    bottom: -40px;
    left: 47%;
    background-color: #fff;
}

.waiver_img {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}
.buying_11 {
    margin-left: 45px;
}

.whyBuyTermBox {
    background-color: #fff3f3;
    border: 1px solid #ceb0ac;
    border-radius: 8px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 25px;
    margin: 15px 0 10px;
    padding: 15px;
}

.whyBuyTermtitle {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.3px;
}
#termInsurance {
    margin-top: 30px !important;
}

.top3TermFlex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin: 10px 0;
    flex-wrap: wrap;
}


.top3TermCard {
    
    border-radius: 10px;
    border: none !important;
    padding: 0px !important;
    min-height: unset !important;
    text-align: start;
}
.top3TermCard img {
    margin: 10px 0;
}

.circle_arrow {
    object-position: -76px 3px;
    object-fit: cover;
    width: 40px;
    height: 50px;
}
.margin_25px {
    margin-left: 45px !important;
}
.benefitsContainer {
    display: flex;
    flex-wrap: wrap;
}
.commonMisconceptFlex {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 20px;
    margin: 20px 0 10px;
}
#factorsInfluence, #termInsuranceCalculator, #termPlanSecure, #whyBuyTerm, #whyChooseKotak {
    background-color: #f9f9f9;
    padding: 3% 0;
    margin: 25px 0;
}
.hid {
    opacity: unset !important;
}
ul li {
    color: #000 !important;
}
.influenceTermFlex h4{letter-spacing: 0.4px;}


.payoutCards {
    flex-wrap: wrap;
}
.payoutCards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.payoutCardsBlank {
    padding-top: 0 !important;
}
.payoutCardsBlank {
    max-width: unset !important;
    min-height: unset !important;
}
.payoutCard {
    background-color: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    padding: 25px;
    max-width: 350px;
   min-height: 283px !important;
    flex-basis: 100%;
}


.benefitsOfTerm-subTitle, .factorsAffecting-subTitle, .factorsInfluence-subTitle, .featureOfTerm-subTitle, .insuranceTerminology-subTitle, .payoutCard-subTitle, .payoutOptions-subTitle, .rightTimeToBuy-subTitle, .termInsuranceCalc-subTitle, .typeOfTerm-subTitle, .whatIsTermInsuranceRider-subTitle, .whoShouldBuy-subTitle, .whyYouNeedTerm-subTitle {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #000 !important;
    letter-spacing: 0.3px !important;
    margin-bottom: 10px;}
    

.benefitsOfTerm-subDesc, .factorsAffecting-subDesc, .factorsInfluence-subDesc, .featureOfTerm-subDesc, .insuranceTerminology-subDesc, .payoutCard-subDesc, .payoutOptions-subDesc, .termInsuranceCalc-subDesc, .typeOfTerm-subDesc, .whatIsTermInsuranceRider-subDesc, .whoShouldBuy-subDesc, .whyYouNeedTerm-subDesc {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #000 !important;
    letter-spacing: 0.3px !important;
    line-height: 25px !important;
}


.chooseBestTermFlex {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 15px;
    background-color: #f6f6f6;
    border-bottom: 1px solid #d8d8d8;
    padding: 20px;
}


.termSubtitle {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #000;
}

.bor {
    background: white !important;
    margin-bottom: 0 !important;
}
.what-policy-period {
    padding-top: 25px !important;
}


.safeguardtabs {
    margin: 25px 0 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.safeguardtabs li {
    color: #222;
    display: inline-block;
    cursor: pointer;
    background-color: #FFF;
    border-radius: 26px;
    padding: 8px 20px;
    font-size: 17px;
    font-weight: 500;
    border: 1px solid #e5e5e5;
}


.safeguardtabs li.current {
    background: #fff0 linear-gradient(90deg, #003974 0%, #0B4D88 100%) 0% 0% no-repeat padding-box;
    color: #FFF !important;
    border-radius: 26px;
    padding: 12px 35px;
    border: none;
}


.safeguardtab-content {
    display: none;
    padding: 15px;
}


.safeguardtab-content.current {
    display: inherit;
}
.bor .tab-detail p {
    font-size: 16px !important;
}
.firstFold1 .termTitle{padding: 0 !important}
.bottomNavProduct {
    background-color: #28323c !important;
    border-radius: 0 !important;
}
.productSticky-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    max-width: 1249px;
    margin: 0 auto;
    gap: 10px;
}
.new-dflex {
    display: contents;
}
.feature-item {
    text-align: center;
    border-right: 1px solid #ccc;
    padding: 0 10px;
}
.new-imga {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}
sup {
    padding-right: 5px;
}
.feature-item, .cta-wrapper {
    text-align: center;
}
.life-cover-banner{
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #28323c !important;
    color: #fff;
    max-width: 480px;
    width: 100%;
    box-sizing: border-box;
}
.text-part {
    font-size: 18px !important;
    color: #fff !important;
    font-weight: 400;
    display: inline-block;
    max-width: 166px;
    white-space: normal;
    line-height: 1.5rem;
    align-items: center;
    flex: 1;
    font-family: 'Lato-Regular';
}
.text-part1 {
    font-size: 17px !important;
    color: #fff !important;
    font-weight: 400;
    display: inline-block;
    white-space: normal;
    line-height: 1.5rem;
    align-items: center;
    flex: 1;
    font-family: 'Lato-Regular';
}
.text-part2 {
     font-size: 10px !important;
     font-family: 'Lato-Regular';
     color: #fff;
     padding-top: 5px;
}
.text-part2 .tc-link {
    margin-left: 10px;
    font-size: 10px;
     font-family: 'Lato-Regular';
     color: #0d6efd;

}
.check-prices-btn {
    background: transparent linear-gradient(90deg, #82772D 0%, #C1CD23 100%) 0% 0% no-repeat padding-box;
    color: #fff;
    font-weight: bold;
    font-family: 'Lato-Regular';
    border: none;
    border-radius: 6px;
    padding: 10px 35px;
    letter-spacing: 0.6px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    padding: 10px 20px;
    flex-shrink: 0;
}
.scrollauto{overflow-x: auto;}

@media only screen and (max-width: 768px) {
    .firstFold-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 0 !important;
    }
    .bg-buy-red{
        display: none !important;
    }
        .fixed-bottom {
        position: fixed;
        bottom: 0;
        left: 0;
        display: flex !important;
        z-index: 1;
    }
        .life-cover-banner {
        right: 0;
        width: 100%;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        display: flex !important;
    }
        
    .hd-mob {
        display: block !important;
    }
        .whyKotakBenefits {
        flex-wrap: wrap !important;
        margin: 20px 0 10px !important;
    }
        .benefitsSection {
        flex-wrap: nowrap;
    }
    .hide-desktop {
        display: none !important;
    }
        #termInsurancePlan {
        margin-top: 30px !important;
    }
        #popularLifeCover, #reasonToBuy, #kotakVsOther, #typesOfTerm, #commonMisconcept {
        background-color: #f5f5f5;
        padding: 20px 0;
    }
        .buttonFlex, .lifeCover-flex, .termInsurancePlanCTA, .howInsuranceWorkCards, .top3TermFlex {
        flex-direction: column;
    }
        .lifeCover-options {
        gap: 10px;
    }
        #reasonToBuy {
        padding-bottom: 30px;
    }
        section#whyBuyaTerm, #commonMisconcept, #basicTerm, #reasonToBuy {
        margin-top: 0 !important;
    }
        .fullBg {
        background-color: #fff0;
        padding: 0 !important;
    }
    .reasonToBuyCards {
        padding: 0px;
    }
    .factorsslickterm1 {
        display: flex !important;
        gap: 20px !important;
    }
        .factorsslickterm1 {
        padding-bottom: 10px !important;
    }
        .reasonToBuyCard {
        max-width: 100% !important;
        min-height: 100% !important;
    }
    .reasonToBuyCard {
        margin: 0 !important;
    }
        #reasonToBuy {
        padding-bottom: 30px;
    }
        #kotakVsOther {
        background-color: unset !important;
    }
    .kotakVsOther-table {
        overflow-x: auto;
    }
        .kotakVsOther-table table th, .kotakVsOther-table table td {
        font-size: 15px;
    }
    #popularLifeCover .lifecoverAmt span {
        font-size: 24px !important;
    }
    .whoShouldBuyAccordion-item-header.active::after {
    content: "\2212";
}
.whoShouldBuyAccordion-item-header::after {
    content: "\002B";
    font-size: 3rem;
    position: absolute;
    right: 2rem;
}
    .rating_img{display: none;}
    #benefitsOfTermnew{margin-top: 0 !important;}
    .termTitle{padding-top: 0 !important}
        .online_card {
        display: block !important;
    }
    .onlineEterm-card {
        width: 100% !important;
    }
        .off-save {
        margin-top: 1rem !important;
    }
        .howInsuranceWork-grid, .featuresTerm-grid, .typesOfTermCard, .influenceTerm-grid {
        grid-template-columns: 100%;
    }
        .testimonial-bg {
        width: 100% !important;
        height: auto !important;
    }
       
    .testimonial-bg:before {
        background-position: 7px 22px;
        width: 53px;
        height: 56px;
        background-size: 190px;
    }
        .saving-testimonial .slick-prev {
        left: -14px;
    }
    .saving-testimonial .slick-next {
        right: -16px;
    }
        .pagingInfo-review-tes {
        bottom: 26px !important;
    }
    .testimonial-bg .pagingInfo-review-tes {
        left: 41% !important;
    }
    .testimonial-bg:after {
        background-position: 2px -158px;
        width: 42px;
        height: 62px;
        left: 44%;
        position: absolute;
        background-size: 190px;
    }
    .chooseBestTermbox, .whyBuyTermBox {
        flex-direction: column;
        gap: 10px;
    }
    .whyBuyTermtitle {
        font-size: 20px;
    }
    
    .benefitsContainer {
        display: contents !important;
    }
    

    .savetest .custom-review p {
        padding-left: 15px !important;
        padding-right: 15px !important;
        font-size: 14px;
    }
    .safeguardtabs {
        overflow: auto;
        flex-wrap: wrap;
        justify-content: unset;
        scrollbar-width: none;
    }
    #firstFold{margin-top: 0 !important;}
    #topSection{margin-top: 0 !important;}
    .breadcrumb-ulip{margin-top: 0}
    .rhsFixed_Wrapper, footer, section {
        top: -27px;
    }
        .discountFlex .font {
        font-size: 9px !important;
        padding: 0px 14px;
    }
        .discountFlex strong {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    

    .discountFlex {
        padding: 5px 5px;
        width: 100%;
    }
    .get_tax_free {
        display: block;
    }
    section:first-of-type {
        margin-top: 0;
    }
    .typesOfUlip-flex, .typeOfUlipFunds-flex, .whichUlipfundsAreBest-flex, .claimTaxBenefits-flex {
     margin: 0 !important; 
}
    .mobile_cards {
        display: block !important;
    }
        .desktop_cards {
        display: none !important;
    }
        #popularLifeCover, #reasonToBuy, #kotakVsOther, #typesOfTerm, #commonMisconcept {
        background-color: #f5f5f5;
        padding: 20px 0;
    }
        #popularLifeCover {
        padding-bottom: 0 !important;
    }
        .p-20 {
        padding: 12px 0 !important;
    }
        .fullBg {
        background-color: #fff0;
    }
        .product-fundCards {
        flex-wrap: wrap;
        gap: 15px;
    }
        .fund-card {
        min-height: 100% !important;
        max-width: 100%;
        padding: 25px 15px;
    }
        .fundAsOfDate {
        text-align: left;
    }
        .click-here {
        display: block;
        margin-top: 1px;
    }
    .what-is-ulip {
    margin-bottom: 0px;
}
    .benefitsOfUlip-flex {
        display: block !important;
    }
        .benflx-icon {
        width: 62px !important;
        height: 62px !important;
        margin-bottom: 10px !important;
    }
        .ulipperson {
        display: none !important;
    }
        .mar-bottom {
        margin-bottom: 0 !important;
    }
        .row {
        margin: 0;
    }
        .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
        .m-no-padding {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
        #topSection1 .topSection-title {
        padding-bottom: 15px;
        padding-top: 15px;
        line-height: 1.2;
    }
    #morecont.active, #more.active {
    display: inline !important;
}
    #more {
        display: none !important;
    }
        #myBtn {
        display: block !important;
    }
        .ulip-sections .sep-btn img {
        width: 48px !important;
        height: 48px !important;
    }
        .disc-dlex {
        margin: 15px 0 15px !important;
    }
        .slide {
        gap: unset;
        flex-direction: column;
    }
        .bright1 {
        margin-right: 12px;
    }
        .displaydesk {
        display: block;
    }
        #ulipCalculator {
        margin-top: 1rem !important;
    }
        .greyBg {
        background-color: transparent !important;
    }
    .table_calc .col-lg-7 {
        padding: 0 !important;
    }
        .card {
        padding: 2.4rem 1.6rem;
        margin-bottom: 2.5rem;
    }
        .radio_tabs {
        margin-bottom: 3rem;
    }
    .radio_tabs label {
        padding: 6px 2px;
    }
        .radio_tabs label {
        font-size: 14px;
        line-height: 22px;
    }
    .table_calc .col-lg-5 {
        padding: 0 !important;
    }
        .card .card_title {
        font-size: 1.8rem;
    }
    .col-lg-7 {
     max-width: 100%; 
    }
    .col-lg-5 {
        max-width: 100%; 
    }
        .pagingInfo-review-tes {
        bottom: 34px !important;
    }
    .testimonial-bg .slick-slide{padding: 20px !important;}


    .saving-testimonial .slick-next {
        right: 0px;
        top: 30%;
    }
    .saving-testimonial .slick-prev {
        left: 0px;
        top: 30%;
    }
        .safeguardtabs {
        overflow: auto;
        flex-wrap: wrap;
        justify-content: flex-start !important;
        scrollbar-width: none;
    }
    .table_calc .col-lg-7{max-width: 100%;}
    .table_calc .col-lg-5{max-width: 100%;}
    .table_calc .radio_tabs label{
              font-size: 14px;
        line-height: 22px;
        padding: 6px 2px;
    }
    .table_calc .card {
        padding: 10px !important;
        margin-bottom: 2.5rem;
    }
    


}
.accordion-div .accordion:after{background: #000000;}
/* .accordion-div .accordion:hover::after{background: #fff;} */
/* .accordion-div .accordion:hover::before{background: #fff !important;} */
#testimonial .slick-slide{border-right: none !important;}
/*term-css*/
/*ulip-css*/

#topSection1 {
    margin: 0 0 30px;
    border-bottom: unset !important;
    padding-bottom: unset !important;
    position: unset !important;
    z-index: unset !important;
    top: unset !important;
    margin-top: 10px !important;
}
.termsText {
    font-size: 14px !important;
}
a, b, span {
    padding-left: 3px;
    padding-right: 3px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    
}
.form-section .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.form-section h1 {
    color: #003366 !important;
}
body, h1, h2, h3, h4, strong {
    font-family: Lato-Regular !important;
}
#dots {
    display: inline;
}
.investment-card {
    border: 1px solid #ab2020;
    border-radius: 10px;
    padding: 25px 9px 21px 25px;
    align-items: center;
    max-width: 557px;
    justify-content: space-between;
    position: relative;
    margin-top: 25px;
}
.dflex-space {
    display: flex;
    justify-content: space-between;
    margin: -9px 0 -30px 0;
}
.e-in {
    font-size: 18px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
}
.investment-card h3 {
    margin: 0;
}
.down-img {
    margin: 0;
}
.sep-btn {
    padding: 0 !important;
}
.disc-dlex {
    display: flex;
    margin-top: 35px;
    justify-content: space-between;
}
.slide {
    text-align: center;
    padding: 0 0;
    display: flex;
    gap: 15px;
}
.textleft {
    text-align: left;
    line-height: 21px !important;
}
.bright1 {
    border-right: 1px solid #707070;
    height: 35px;
    margin-right: 38px;
    margin-top: -54px;
}
.centerButton {
    margin-top: 0;
    justify-content: flex-start;
}
.e-invest-cta {
    font-size: 16px;
    width: max-content;
    padding: 5px 15px 5px 15px;
    font-weight: 500;
}
.e-invest-cta {
    background-color: #da251c;
    color: #FFF;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.3px;
    gap: 10px;
    margin-top: 14px;
}
.whyKotakBenefits {
    margin: 30px 0 10px !important;
}
.whyKotakBenefits-title {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #000 !important;
}
.whyKotakBenefits .benefitsSection {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}
.benefitsTitle {
    font-weight: 700 !important;
}
.bright {
    border-right: 1px solid #333;
    height: 25px;
    margin-right: 10px;
}
.displaymob {
    display: none;
}
.top-spacebenefit {
    padding-bottom: 10px;
}
.hid {
    opacity: unset !important;
}
.what-is-ulip {
    padding-top: 0 !important;
}
.whichUlipfundsAreBest-flex {
    margin: 10px 0 10px;
}
.whichUlipfundsAreBest-subTitle {
     padding: 2px 0;
    font-weight: 600 !important;
}
.desktop_cards {
    display: block;
}
.mobile_cards {
    display: none;
}
#howDoesUlipWork {
    margin-top: 0 !important;
}
.top_padding {
    padding-top: 30px;
}
.kotakVsOther-table {
    width: 100%;
    overflow-x: auto;
}
.kotakVsOther-table table {
    min-width: 600px;
}
.kotakVsOther-table table th, .kotakVsOther-table table td {
    font-size: 17px !important;
}

.kotakVsOther-table table th {
    padding: 12px;
    text-align: center;
    color: #000 !important;
    border: 1px solid #000 !important;
    background: #fff !important;
    font-weight: 700;
}
.kotakVsOther-table table td {
    font-size: 18px;
    padding: 10px !important;
    color: #000 !important;
    background-color: #fff !important;
    border: 1px solid #000 !important;
}
.benefitsOfUlip-list ul li{color: #161616;}
.whichUlipfundsAreBest-subTitle {
    padding: 2px 0;
    font-weight: 600 !important;
}
.whichUlipfundsAreBest-subTitle b{color: #161616;}
.classspace {
    margin-bottom: 0 !important;
    padding-bottom: 0;
}
#popularLifeCover, #termInsurancePlan, #reasonToBuy, #howInsuranceWork, #kotakVsOther, #whoShouldBuy, #benefitsOfTerm, #lifeExpectancy, #onlineKotakPlan, #influenceTerm, #keySection, #chooseBestTerm, #whyWeNeedTerm, #howToBuyTerm, #top3Term, #rightTimeTerm, #termPolicy, #basicTerm {
    margin: 30px 0 20px;
}
.bestUlips-title{color: #161616;}
.product-fundCards {
    display: flex;
    justify-content: space-between;
    align-items: normal;
}
.fund-card {
    max-width: 365px;
    min-height: 515px;
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid #BEBEBE;
    background: #fff;
}
.productFundName {
    font-size: 21px;
    font-weight: bold;
    letter-spacing: 0.3px;
    margin-bottom: 3px;
}
.highlight-red {
    color: #DF0010;
}
.highlight-blue {
    color: #003974;
}
.productFundCode {
    font-size: 12px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 16px;
}
.productFundGroup {
    background: #FFECEC;
    color: #AB2020;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 3px;
}
.productFund-date {
    font-size: 13px;
    font-weight: 500;
    color: #000;
    margin-bottom: 16px;
}
.fund-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.navText span {
    font-size: 13px;
}
.nav-value {
    font-size: 28px !important;
    font-weight: bold !important;
    color: #000;
    line-height: 40px !important;
}
.seperation {
    border-right: 1px solid #707070;
    height: 50px;
    width: 1px;
}
.risk-meter {
    width: 60px;
    display: block;
}
.navRisk {
    font-size: 13px;
    font-weight: 500;
    color: #000;
}
.returns {
    padding-bottom: 0 !important;
}

.returns {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.fund-returns, .benchmark-returns {
    text-align: left;
}
.green-value {
   
    font-size: 28px !important;
    font-weight: 500 !important;
}
.investmentObjective-title {
    margin-bottom: 3px;
}
.fund-productCta {
    margin: 16px auto;
    display: flex;
    justify-content: center;
}
.productCta a, .fund-productCta a {
    background-color: #da251c;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    border-radius: 25px;
    padding: 10px 20px;
    text-decoration: none;
    letter-spacing: .3px;
    margin-top: 8px;
    max-height: 45px;
}
.fundAsOfDate {
    text-align: right;
    margin: 10px 0;
}
.click-here {
    color: #003366;
    padding-left: 3px;
}
#keyFeatureofUlipnew {
    margin-bottom: 0 !important;
}
.term-design h2{color: #000;}
.desktop_cards {
    display: block;
}
.mobile_cards {
    display: none;
}
.desktop_cards img {
    width: 100%;
}
.top_padding {
    padding-top: 30px;
}
.keyFeatureofUlip-cards {
    align-items: inherit !important;
}
.keyFeatureofUlip-card {
    min-height: 100%;
}
.term-design h3{color: #000;}
.tooltip .tooltiptext {
    visibility: hidden;
    width: 100px;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    right: 33px;
    top: -2px;
    position: absolute;
    z-index: 1;
}
.ulipperson {
    width: 567px;
    height: 286px;
    background-position: -23px -3024px;
    background-size: 815px;
}
.ulipsprite-image {
    background-image: url(../images/ulip-plan/ulipsprite-smallimages.webp);
}
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    
}
    .col-lg-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .card {
    border-radius: 1.6rem;
    padding: 2rem 4rem;
    background-color: #fff;
    box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, .04);
    max-width: 100%;
}
.text_center {
    text-align: center;
}
.radio_tabs {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: .8rem;
    gap: 1.2rem;
    border-radius: .8rem;
    margin-bottom: 1rem;
    box-shadow: .5rem .5rem 2rem rgba(0, 0, 0, .0392156863);
    border: 3px solid #f4f4f4;
}
.radio_tabs input {
    display: none;
}
.radio_tabs input:checked+label {
    background-color: #004a8f;
    color: #fff;
    /* font-family: Roboto-Bold; */
    font-family: 'Lato-Bold';
}

.radio_tabs label {
    text-transform: capitalize;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 8px;
    -ms-flex: none;
    flex: none;
    -ms-flex-positive: 0;
    flex-grow: 0;
    border-radius: 4px;
    margin-bottom: 0;
    cursor: pointer;
}
.card label {
    display: block;
    margin-bottom: 1.6rem;
    font-size: 1.6rem;
    color: #000;
    font-weight: 400;
}
.range-wrap {
    margin-bottom: 0.6rem !important;
}
.goal-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}
h1, .goal-wrap .goal-title, input, .input-wrap span, p, .card_title {
    color: #000;
    
}
.goal-wrap .input-wrap {
    border: 1px solid #cdcdcd;
    border-radius: .5rem;
    font-size: 1.8rem;
    padding: 0 1.8rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 14rem;
    background: #fff;
    height: 3.5rem;
}
.goal-wrap .input-wrap .rupee {
    /* font-family: Roboto-SemiBold; */
    font-family: 'Lato-light';
    font-weight: 600;
    margin-right: .2rem;
    margin-top: .2rem;
}
.goal-wrap .input-wrap input {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
    background: 0 0;
    border: none;
    box-shadow: none;
    outline: 0;
    max-width: 100%;
    height: 4.5rem;
    display: block;
    border-radius: .2rem;
    position: relative;
    z-index: 1;
    /* font-family: Roboto-Bold; */
    font-family: 'Lato-Bold';
    font-size: 16px;
    color: #000;
}
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 0px;
    background: linear-gradient(to right, #08315f var(--value), #e4e4e4 var(--value));
    outline: none;
    transition: background 0.3s;
}
.sr-only {
    width: 1px;
    height: 1px;
    border: 0;
    padding: 0;
    position: absolute;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}
.invest-amt {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-bottom: 0 !important;
}
.value-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.value-wrap span {
    font-size: 1.4rem;
    color: #545454;
    line-height: 2rem;
}
.value-wrap span {
    font-size: 1.4rem;
    color: #545454;
    line-height: 2rem;
}
.range-wrap {
    margin-bottom: 0.6rem !important;
}
#calculate {
    height: 4.8rem;
}

.card .btn_primary {
    font-size: 2rem;
    padding: 1.1rem 5rem;
}
.btn_block {
    display: block;
    width: 100%;
}
.btn_outline_primary, .btn_primary {
    margin-top: 2.5rem;
    text-align: center;
    padding: 1.1rem 2rem;
    color: #fff;
    /* font-family: Roboto-semiBold; */
    font-family: 'Lato-light';
    font-size: 1.6rem;
    line-height: 2.2rem;
    background: #da251c;
    border: 1px solid #da251c;
    border-radius: .8rem;
    display: inline-block;
    transition: all .2s 
ease-in-out;
    cursor: pointer;
    text-transform: capitalize;
}

    .col-lg-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .card_middle {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.card {
    border-radius: 1.6rem;
    padding: 2rem 4rem;
    background-color: #fff;
    box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, .04);
    max-width: 100%;
}
.card_middle .card_body {
    width: 100%;
}

.card .card_title {
    font-family: 'Lato-Regular' !important;
    font-size: 2.4rem;
}
.card .card_title .amt_return {
    font-size: 4.2rem;
    color: #004a8f;
    line-height: 1.5;
    font-weight: 600;
}
.legend_text {
    margin: 0;
    font-size: 1.2rem;
}
.card .btn_primary {
    font-size: 2rem;
    padding: 1.1rem 5rem;
}

.btn_outline_primary, .btn_primary {
    margin-top: 2.5rem;
    text-align: center;
    padding: 1.1rem 2rem;
    color: #fff;
    /* font-family: Roboto-semiBold; */
    font-family: 'Lato-light';
    font-size: 1.6rem;
    line-height: 2.2rem;
    background: #da251c;
    border: 1px solid #da251c;
    border-radius: .8rem;
    display: inline-block;
    transition: all .2s 
ease-in-out;
    cursor: pointer;
    text-transform: capitalize;
}
.inline-links {
    color: #0073bb;
    text-decoration: none;
}
.tooltip{margin-right: 20px;}
input[type=range]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        /* circle */
        background: #Da251c;
        /* thumb color */
        cursor: pointer;
    }

    /* For Firefox */
    input[type=range]::-moz-range-thumb {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #Da251c;
        cursor: pointer;
    }

    /* For IE/Edge */
    input[type=range]::-ms-thumb {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #Da251c;
        cursor: pointer;
    }
    #calculatingUlip {
    margin-bottom: 0 !important;
}

#calculatingUlip {
    margin-top: 0 !important;
}
.purchasingcard ul {
    padding-left: 20px;
}


.purchasingcard li {
    padding: 0 0 10px 0 !important;
}
.purchasingcard li {
    list-style: decimal;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #161616;
    padding: 5px 0;
}


.howToFindBestUlipPlannew h3 {
    font-size: 17px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    padding: 2px 0 8px;
}
.whichUlipfundsAreBest-subTitle {
     color: #000 !important;
    font-weight: 600 !important;
}
.safeguardtabs {
    margin: 25px 0 25px;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.safeguardtabs li.current {
    background: #fff0 linear-gradient(90deg, #003974 0%, #0B4D88 100%) 0% 0% no-repeat padding-box;
    color: #FFF !important;
    border-radius: 26px;
    padding: 10px;
    border: none;
}

.safeguardtabs li {
    color: #222;
    display: inline-block;
    cursor: pointer;
    background-color: #FFF;
    border-radius: 26px;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e5e5e5;
}
.safeguardtab-content.current {
    display: block;
}
.safeguardtab-content {
    display: none;
}
.bor {
    height: unset;
}
.bor .accordion {
    padding: 0 10px;
}

.bor .accordion {
    cursor: pointer;
}
.accordion-div .accordion:before {
    width: 13px;
    height: 3px;
    background: unset;
}
/* .accordion-div .accordion:before {
    background: #000 !important;
} */
.accordion-btns h3 {
    color: #000 !important;
    font-family: Lato-Bold !important;
    font-size: 16px !important;
}
.tab-detail p {
    font-family: Lato-regular;
}

    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1170px;
    }
.bottomNavProduct {
    background-color: #28323c !important;
    border-radius: 0 !important;
}
.productSticky-grid1 {
    max-width: 931px !important;
}
.bottomNavProduct .new-img {
    flex-wrap: nowrap;
    text-wrap-mode: nowrap;
}

.bottomNavProduct .new-img {
    position: relative;
    font-size: 18px !important;
    color: #fff !important;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.new-img::before {
    content: "";
    display: inline-block;
    width: 92px;
    height: 135px;
    background-image: url(/assets/images/buysticky.svg);
    background-size: contain;
    background-repeat: no-repeat;
    top: -47px;
    position: absolute;
    left: -97px;
}
/* .bor .accordion:hover {
    background-color: #Da251c;
} */
.accordion-btns-gsp .accordion:hover::before {
    background: #ffffff !important;
}
/* .bor .accordion:hover span {
    color: #ffffff !important;
}
.bor .accordion:hover h3 {
    color: #ffffff !important;
} */
.accordion-btns-gsp .accordion:hover::after {
    background: #ffffff !important;
}
.terms p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: .32px;
    color: #000;
}

.terms p {
    font-family: Lato-regular;
}
#testimonial .slick-slide{border-right: none !important;}
.what-is-ulip{margin-bottom: 40px;}
.slide img {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
}
.safeguardtabs li.current {
    background: #fff0 linear-gradient(90deg, #003974 0%, #0B4D88 100%) 0% 0% no-repeat padding-box;
    color: #FFF !important;
    border-radius: 26px;
    padding: 12px 35px;
    border: none;
}
.safeguardtabs li {
    color: #222;
    display: inline-block;
    cursor: pointer;
    background-color: #FFF;
    border-radius: 26px;
    padding: 8px 20px;
    font-size: 17px;
    font-weight: 500;
    border: 1px solid #e5e5e5;
}
.mythsOfUlip-subTitle{color: #000;} .mythsOfUlip-subDesc{color: #000;}
.typeOfUlipFunds-subTitle{color: #000;}
.typeOfUlipFunds-subDesc{color: #000;}
.whichUlipfundsAreBest-flex{margin: 0 !important;}
.whichUlipfundsAreBest-flex ul li{font-size: 16px;color: #000;}
.benefitsOfUlip-list li{color: #000;}
.ulipsprite1{background-image: url(../images/ulipsprite.webp);background-position: -102px -21px;background-repeat: no-repeat;width: 70px;height: 70px;}
.ulipsprite{background-image: url(../images/ulipsprite.webp);background-position: -20px -21px;background-repeat: no-repeat;width: 70px;height: 70px;}


/*ulip-css*/
.new_ref_content{padding: 40px 0;}
.new_ref_content p, .new_ref_content a{font-size: 1.6rem;margin-bottom: 10px;}
.new_ref_content a{display: inline-block;}
.new_ref_content p b{padding: 0;}


.explore_our_products{background-color: #efefef;padding: 25px 0 35px;}
.explore_our_products h5{font-size: 18px;font-weight: 600;color: #000;text-align: center;letter-spacing: .3px;margin-bottom: 20px;}
.explore_our_products .plans_list li{border: 1px solid #BEBEBE;border-radius: 20px;padding: 8px 20px;}
.explore_our_products .plans_list li a{color: #000;font-size: 15px;font-weight: 500;letter-spacing: .3px;}
.explore_our_products .plans_list li a:hover{color: #606c76;}
.explore_our_products .plans_list{display: flex;flex-wrap: wrap;justify-content: space-evenly;}

.landing_secs{padding: 40px 0;}
.landing_secs .row{margin: 0 -15px;}
.oops_card{background-color: #F6F6F6;border-radius: 41px;padding: 35px 30px;text-align: center;}
.oops_card figure{margin: 0 0 20px;}
.oops_card h2{font-size: 36px;font-family: 'Lato-Bold' !important;font-weight: 500;letter-spacing: .3px;color: #000;margin-bottom: 10px;}
.oops_card p{font-size: 20px;font-family: 'Lato-Bold';font-weight: 500;letter-spacing: .3px;color: #343434;margin-bottom: 20px;}

.whatsapp_contact{display: flex;justify-content: center;}
.whatsapp_contact p{align-self: center;font-family: 'Lato-Regular';color: #343434;margin: 0 0 0 15px;}
.whatsapp_contact p a{font-family: 'Lato-Bold';color: #343434;}

.landing_secs .col_md_8{flex: 0 0 66.666667%;max-width: 66.666667%;padding: 0 15px;}

.product_lists{border: 1px solid #C7C7C7;border-radius: 41px;position: relative;transition: 0.5s;}
.product_lists .card_header{background-color: #EAECEF;padding: 10px;text-align: center;border-radius: 41px 41px 0 0;}
.product_lists .card_header h6{color: #000;font-size: 18px;font-weight: 500;}
.product_lists .card_body .plan_list{padding: 20px;height: 369px;overflow: hidden;transition: height 0.5s;}
.product_lists .card_body .plan_list li{margin-bottom: 25px;}
.product_lists .card_body .plan_list li:last-child{margin-bottom: 0;}
.product_lists .card_body .plan_list.active{height: auto;overflow: visible;}
.plan_media{display: flex;justify-content: space-between;}
.plan_media .plan_info{display: flex;}
.plan_media .plan_info img{width: 34px;height: 34px;margin-right: 15px;align-self: center;}
.plan_media .plan_info h6 a{color: #036;font-size: 17px;font-weight: 500;text-decoration: underline;text-underline-offset: 5px;padding: 0;}
.plan_media .plan_info p{font-size: 15px;font-weight: 500;letter-spacing: .3px;color: #404040;}
.plan_media .plan_info h6 a img{height: 14px;width: 14px;margin-left: 10px;}
.plan_media .plan_info + a{color: #ED3237;border: 1px solid #ED3237;border-radius: 50px;font-size: 15px;font-weight: 600;padding: 8px 15px;align-self: center;}

.view_all_btn{position: absolute;bottom: 0;left: 50%;transform: translateX(-50%);margin-bottom: 0;background-color: #ED3237;border-radius: 10px 10px 0 0;color: #fff;font-size: 14px;font-weight: 500;padding: 3px 25px;cursor: pointer;}

@media only screen and (max-width: 991px) {
    .plan_media .plan_info + a{font-size: 13px;}
    .plan_media .plan_info p{font-size: 13px;}
    .plan_media .plan_info h6 a{font-size: 14px;}
    .product_lists .card_header h6{font-size: 16px;}
    .view_all_btn{font-size: 12px;}
    .product_lists .card_body .plan_list{height: 340px;}
}

@media only screen and (max-width: 806px) {
    .explore_our_products .plans_list li{margin-bottom: 15px;}    
}

@media only screen and (max-width: 768px) {
    .landing_secs .row{margin: 0;}
    .landing_secs .col_md_4, .landing_secs .col_md_8{flex: 0 0 100%;max-width: 100%;margin-bottom: 20px;padding: 0;}
    .explore_our_products{margin-top: 0;}
    .rowww{display: flex;flex-wrap: wrap;}
}

@media only screen and (max-width: 506px) {
    .product_lists .card_body .plan_list{height: 339px;}
}

@media only screen and (max-width: 425px) {
    .plan_media{display: block;}
    .plan_media .plan_info{margin-bottom: 15px;}
    .plan_media .plan_info + a{margin: 0 50px;}
    .product_lists .card_body .plan_list{height: 325px;}
}

@media only screen and (max-width: 320px) {
    .plan_media .plan_info + a{margin: 0 13px;}
    .product_lists .card_body .plan_list{height: 385px;}
}


.bottomNavProducctt{display: none;position: fixed;bottom: 7px;left:50%;transform: translate(-50%);width: 100%;max-width: 1005px;border-radius: 33px;margin: 0 auto;padding: 6px 5px 6px 35px;background-color: #28323c;z-index: 3;}
.life-month{color: #ffffff;font-size: 15px;display: -webkit-box;letter-spacing: 0px;}
.life-month span{font-size: 15px;font-weight: 700;}
.feature-itemm{display: grid;align-items: center;gap: 10px;max-width: 245px;grid-template-columns: 1fr 5fr;}
.bottomimg{background-image: url(../images/newtermimg/bottomimage.webp);background-repeat: no-repeat;background-size: 110px;width: 44px;height: 44px;}
.bottomimg.firstimg{background-position: -7px -7px;}
.bottomimg.secondimg{background-position: -57px -7px;}
.feature-ite{border-right: 1px solid #ffffff;}
.cta2 a{display: flex;gap: 6px; margin: 0 !important;background-color: #da251c;padding: 15px 45px;font-size: 16px;color: #ffffff;text-decoration: none;border-radius: 27px;}
.cta2{text-align: right;}
.productSticky-gridd{display: flex;gap: 20px;align-items: center;}
.feature-ite{max-width: 210px;position: relative;}
.feature-ite .life-month{padding-right: 24px;}
.feature_flex{display: flex;align-items: center;}
.cta2 img{margin-top: 2px;}
.life-month sup{font-size: 10px;}
.life-month .supp{padding-right: 0 !important;font-size: 12px;}
.terms_and_conditions{font-size: 12px;color: #d0eaff;text-decoration: underline;margin-left: 24px;display: flex;align-items: end;}
.terms_and_conditions:hover{color: #ffffff;}
.cta-wrapper{margin-left: auto;}
.feature-ite:after{content: ""; position: absolute;right: -20px;top: 50%;background-color: #ffffff;width: 20px;height: 14px;  transform: translateY(-50%) rotate(0deg);clip-path: polygon(0 0, 0% 0, 25% 42%, -10% 20%, 25% 42%, -1% 100%, 0% 0%);}
@media only screen and (max-width: 1200px){
    .bottomNavProducctt{max-width: 934px;}
    .feature-ite {
    max-width: 165px;
    
}


.cta2 a{padding: 12px 17px;}
}
.rowww{display: flex;}
.rowwwwww{flex-wrap: nowrap !important;}
.bottomNavProducctt sup{padding-right: 0 !important;}
.show-more-btn1 {
    display: block;
    position: relative;
    margin-top: 10px;
    cursor: pointer;
    color: #ed1c24;
    background: 0 0;
    border: none;
    font-size: 16px;
        padding-left: 0 !important;
        font-weight: 700;
    letter-spacing: .1rem;
    line-height: 3.8rem;
    padding: 0 3.0rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;

}
.show-more-btn1:after {
    content: "+";
    position: absolute;
    right: 0.9rem;
    top: 0.94rem;
    color: #ed1c24;
    font-size: 2.2rem;
    width: 1.6rem;
    height: 1.6rem;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.show-more-btn1:hover {
    background-color: unset;
    border-color: unset;
    color: #ed1c24;
}
.show-more-btn1:focus {
    background-color: unset !important;
    color: #ed1c24;
}
.check-bg li:nth-child(n+6) {
    display: none;
}
.show-more-btn1.expanded::after {
    content: "-";
}



.feature-item1{max-width: 210px;}
.feature-item2{max-width: 296px;}
.feature-ite1{display: grid;align-items: center;gap: 10px;max-width: 135px;grid-template-columns: 1fr 5fr;border-right: none;}
.feature-ite1::after{display: none;}
.firstimg0{background-position: -10px -9px;}
.firstimg1{background-position: -63px -9px;}
.firstimg2{background-position: -115px -9px;}
.terms_and_conditions.terms_and_conditions1{margin-left: 12px;}
.life-month1 br{display: block !important;}
.life-month.life-month2{border-right: 1px solid #ffffff;padding-right: 10px !important;margin-right: 10px;}
.feature-iteee{max-width: 100% !important;}
.feature-iteee .life-month{padding-right: 0px;}
.life-month3{display: none;}
.life-month1{line-height: 1.3em !important;}
.bottomimg1{background-image: url(../images/newtermimg/ulipbottom.webp);background-repeat: no-repeat;background-size: 194px;width: 44px;height: 44px;}
.life-month4{position: absolute;left: 18px;bottom: 2px;font-size: 8px !important;}
@media only screen and (max-width: 376px){
    .life-month2{display: none;}
    .life-month3{display: block;}
    .life-month5{display: flex;}
    .life-month3{align-self: end;margin-left: 10px !important;font-size: 8px !important;}
    .life-month4{display: none;}
}


/*term_new_page*/

.secure_this .proceednew_btn{display: none;}
#topSectionn .breadcrumb-ulip{margin-top: 10px;}
.key_highlights{margin-top: 49px;background-color: #ffffff;z-index: 2;}
.protection .first_img{background-position: -48px -13px;background-size: 365px;}
.protection .second_img{background-position: -85px -12px;background-size: 365px;}
.protection .zero_img{background-position: -85px -12px;background-size: 365px;}
.protection .termnew_img{background-image: url(../images/newtermpage/term_new.webp);background-repeat: no-repeat;width: 34px;height: 34px;border: 1px solid #d1d1d1;padding: 9px;border-radius: 8px;}
.newoffline_tabs li.active .check_imgg{background-image: url(../images/newtermpage/term_new.webp);background-repeat: no-repeat;position: absolute;top: 50%;transform: translateY(-50%);right: 20px;display: block;width: 26px;height: 26px;background-position: -323px -16px;background-size: 365px;}
.boor.active .new_accordion_img_active{background-image: url(../images/newtermpage/term_new.webp);width: 12px;height: 8px;background-repeat: no-repeat;background-position: -295px -16px;background-size: 365px;position: absolute;top: 20px;right: 20px;display: block !important;}
.new_accordion_img{background-image: url(../images/newtermpage/term_new.webp);width: 12px;height: 8px;background-repeat: no-repeat;background-position: -266px -16px;background-size: 365px;position: absolute;top: 50%;transform: translateY(-50%);right: 20px;}
.secure_this_btn{background-image: url(../images/newtermpage/term_new.webp);width: 21px;height: 21px;background-repeat: no-repeat;background-position: -123px -11px;background-size: 350px;}
.right_ar{background-image: url(../images/newtermpage/term_new.webp);width: 21px;height: 21px;background-repeat: no-repeat;background-position: -160px -11px;background-size: 364px;}
.termnew_insurance .terminsurance_new{margin-top: 20px;}
.termnew_insurance{padding-bottom: 40px;}
.terminsurance_new{font-size: 28px;color: #0D0D0D;line-height: 23px;font-weight: 600;text-align: left;margin-bottom: 22px;padding-bottom: 0;letter-spacing: 0;}
.termnew_lifecover{display: grid;grid-template-columns: 54% 44%;gap: 2%;}
.termnew_lifecover_first{border: 1px solid #cfcfcf;border-radius: 30px;padding: 23px 23px 0 23px;margin-bottom: 26px;}
.premiums{display: flex;gap: 9px;}
.premium_left{display: flex;background-color: #fff3f3;padding: 7px;border-radius: 6px;gap: 5px;align-items: center;}
.premium_right{display: flex;background-color: #ebf6ff;padding: 7px;border-radius: 6px;gap: 5px;align-items: center;}
.para_tag{font-size: 16px;line-height: 23px;font-weight: 400;color: #000000;letter-spacing: 0;}
.premium_left p{color: #a60c00;font-weight: 600;}
.premium_right p{color: #003366;font-weight: 600;}
.premium_left .termnew_img{background-image: url(../images/newtermpage/term_new.webp);width: 21px;height: 21px;background-repeat: no-repeat;background-position: -218px -16px;background-size: 350px;}
.premium_right .termnew_img{background-image: url(../images/newtermpage/term_new.webp);width: 21px;height: 21px;background-repeat: no-repeat;background-position: -212px -18px;background-size: 400px;}
.month_475{display: grid;grid-template-columns: 2fr 1fr;margin-top: 10px;gap: 15px;align-items: center;}
.month_475 .terminsurance_new{line-height: 30px;margin-bottom: 13px;}
.proceednew_btn{border: 1px solid #fa1432;border-radius: 30px;padding: 13px 50px;color: #fa1432;line-height: 17px;font-size: 17px;display: inline-block;margin-top: 15px;letter-spacing: 0;margin-bottom: 20px;display: flex;width: max-content;gap: 10px;align-items: center;}
.provides{font-size: 17px;line-height: 24px;}
.mask_img{width: 174px;height: 100%;}
.mask_img img{width: 100%;object-fit: cover;height: 100%;}
 .for_new_mobile{display: none;}
 .termnew_lifecover_first{position: relative;}
 .mobile_premiums{display: none;}


.termnew_claim{background: linear-gradient(90deg, #1E3C72 0%, #2A5298 100%);padding: 14px 0;position: relative;}
.termnew_claim .ratio{display: flex;justify-content: space-between;}
.termnew_claim h2{color: #fff;font-size: 32px;line-height: 50px;font-weight: 700;letter-spacing: 0;margin-bottom: 0;}
.termnew_claim p{color: #ffffff;font-size: 17px;line-height: 22px;}
.termnew_claim .claim_settle{position: relative;text-align: center;}
.termnew_claim .claim_settle::after{content: "";position: absolute;background-color: #ffffff;height: 50px;width: 1px;top: 50%;transform: translateY(-50%);right: -43px;}
.termnew_claim .claim_settle:last-child::after{content: none;}
.italiccc{font-style: italic;font-size: 14px !important;}

.crore_coverage{padding: 60px 0;}
.can_save{font-size: 28px;text-align: center;margin-bottom: 36px;}
.tabbs {display: flex;list-style: none;padding: 0;justify-content: center;gap: 18px;}
.tab-contentt {display: none;margin-top: 15px;}
.tab-contentt.active {display: block;}
.tabbs li {cursor: pointer;display: flex;gap: 11px;align-items: center;border: 1px solid #cfcfcf;padding: 11px;font-size: 16px;line-height: 22px;letter-spacing: 0;font-weight: 400;color: #0D0D0D;border-radius: 34px;}
.tabbs li.active{color: #003366 !important;font-weight: 600;border: 1px solid #003366;}
.tabbs li span{max-width: 100px;}

.new_term_tab{border: 1px solid #b8b8b8;border-radius: 30px;display: grid;grid-template-columns: 48% 48%;gap: 4%;margin-top: 26px;}
.secure_this{background-color: #ebf6ff;border-radius: 30px;position: relative;padding-left: 40px;display: flex;justify-content: center;flex-direction: column;padding-right: 20px;}
.industry{background-color: #ffffff;border-radius: 15px;padding: 28px;border: 1px solid #cfcfcf;max-width: 418px;margin: 42px 0 29px;z-index: 1;position: relative;}
.industry_flex{display: flex;margin-bottom: 5px;gap: 5px;}
.young_professional{display: none;margin-bottom: 7px;font-size: 17px;font-weight: 400;letter-spacing: 0px;line-height: 22px;color: #000000;}
.back_red_new{background-color: #ca1717;color: #ffffff;z-index: 1;position: relative;width: fit-content;margin-bottom: 0;}
.back_red_new:hover{color: #ffffff;}
.secure_this h3{font-size: 32px;line-height: 25px;letter-spacing: 0;font-weight: 600;margin-bottom: 35px;color: #000000;z-index: 1;position: relative;}
.secure_this p span{font-size: 32px;line-height: 25px;letter-spacing: 0;font-weight: 600;color: #000000;z-index: 1;position: relative;}
.monthly{margin-bottom: 13px;z-index: 1;position: relative;}
.inter{position: absolute;right: 0;top: 39px;}
.inter_reverse{position: absolute;left: 0;bottom: 14px;}
.secure_this .industry span{font-size: 21px;line-height: 24px;letter-spacing: 0;color: #003366;}
.you_get{padding: 33px 10px;}
.you_get .what_term{margin-bottom: 13px;color: #000000;font-weight: 600;line-height: 25px;letter-spacing: 0;font-size: 17px;}
.you_get .protection{margin-bottom: 20px;display: flex;align-items: center;gap: 14px;}
.you_get .protection h3{margin-bottom: 3px !important;}
.you_get .protection p{color: #000000;font-weight: 400;line-height: 25px;font-size: 17px;}
.key_highlights{border: 1px solid #d1d1d1;border-radius: 15px;padding: 16px 24px;max-width: 444px;}
.key_highlights h4{font-size: 16px;font-weight: 600;line-height: 25px;letter-spacing: 0;color: #000000;}
.key_highlights ul li{font-size: 16px;font-weight: 400;letter-spacing: 0;line-height: 25px;list-style-type: disc;margin-left: 30px;}
.purposes{font-size: 13px;line-height: 17px;font-weight: 400;letter-spacing: 0;margin-top: 16px;color: #6e6e6e;}
.termnew_svg{background-color: #f4f6f7;border-radius: 50%;width: 47px;height: 47px;display: flex;align-items: center;justify-content: center;}
.tabbs li.active .termnew_svg{background-color: #ed1c24;}
.tabbs li.active svg path{fill: #ffffff;stroke: #ffffff;}
.tabbs li.active .lastnew_svg svg path{fill: none !important;}
.how_does{display: grid;grid-template-columns: 54% 43%;gap: 3%;}
.how_does h2{font-size: 28px;line-height: 40px;font-weight: 600;letter-spacing: 0;color: #000000;}
.how_does p{font-size: 17px;margin-bottom: 24px;}
.how_does p:last-child{margin-bottom: 0;}
.plain_gray{background-color: #d9d9d9;height: 224px;width: 100%;border-radius: 30px;}

 .plain_gray iframe {
   width: 100%;
   height: 100%;
   border-radius: 24px;
}
.benefitsOfUlip-listt li p{font-size: 16px;}


.newterm_online{padding: 80px 0;}
.newterm_online h2{text-align: center;font-size: 28px;}
.onlinenew_grid{display: grid;grid-template-columns: 1fr 1fr 1fr;gap: 22px;margin-top: 42px;}
.newkotak_cards{border: 1px solid #b8b8b8;border-radius: 30px;position: relative;padding: 60px 0 100px 22px;}
.newkotak_cards .kotak_new_new{color: #003366;font-size: 20px;line-height: 22px;letter-spacing: 0;font-weight: 700;margin-bottom: 15px;display: inline-block;}
.newkotak_cards .kotak_new_new span{color: #ed1c24;}
.newkotak_cards ul li{padding-left: 20px;font-size: 16px;line-height: 36px;letter-spacing: 0;color: #000000;position: relative;}
.online_btn{text-align: center;}
.newkotak_cards ul li::before{background-image: url(../images/newtermpage/Vectorarrow.svg);background-repeat: no-repeat;position: absolute;content: "";left: 5px;width: 8px;height: 12px;top: 12px;}
.newkotak_cards .back_red_new{position: absolute;left: 50%;transform: translateX(-50%);bottom: 32px;width: max-content;}
.new_back{font-size: 15px;line-height: 15px;font-weight: 500;padding: 3px 5px 3px 10px;position: absolute;left: 20px;top: 13px;border-radius: 4px;}
.termnew_blue{background-color: #ebf6ff;color: #004d99;}
.termnew_pink{background-color: #ffeeee;color: #cb5555;}
.termnew_yellow{background-color: #faf8e0;color: #8e853d;}
.pdfnewterm{position: absolute;top: 13px;right: 20px;border: 2.3px solid #003366;border-radius: 50%;width: 36px;height: 36px;display: flex;align-items: center;justify-content: center;}

.newoffline_tabs{flex-direction: column;}
.offline_newterm .midWrapper{max-width: 951px;margin: 0 auto;}
.offline_termnew{display: grid;grid-template-columns: 38% 59%;gap: 3%;}
.newoffline_tabs li{display: flex;align-items: center;gap: 20px;background-color: #f5f5f5;border-radius: 12px;padding: 15px 22px;margin-bottom: 5px;position: relative;cursor: pointer;}
.newoffline_tabs li.active{background-color: #003366;}
.newoffline_tabs li.active span{color: #ffffff;font-size: 18px;line-height: 20px;font-weight: 400;}
.newoffline_tabs li.active svg path{fill: #ffffff;}
.newoffline_tabs li span{font-size: 17px;line-height: 0;font-weight: 400;letter-spacing: 0;color: #0d0d0d;width: 100%;max-width: 100%}
.offline_newterm h3{color: #000000;font-size: 24px;font-weight: 600;letter-spacing: 0;line-height: 30px;margin-bottom: 20px;}
.newoffline_tabs li .check_imgg{display: none;}

.new_kotak_feature{padding: 28px 45px 80px;border-radius: 30px;position: relative;background-color: #ffffff;}
.new_kotak_feature h4{font-size: 20px;line-height: 30px;letter-spacing: 0;font-weight: 700;margin-bottom: 15px;color: #003366;}
.new_kotak_feature h4 span{color: #ed1c24;}
.new_kotak_feature ul{margin-left: 35px;}
.new_kotak_feature .know_new_more{position: absolute;bottom: 23px;left: 53px;padding: 14px 49px;color: #fa1432;font-size: 17px;line-height: 17px;border: 1px solid #fa1432;border-radius: 30px;display: flex;}
.new_kotak_feature ul li{list-style-type: disc;font-size: 17px;font-weight: 400;line-height: 27px;color: #0d0d0d;}
.card-3d-wrapper{position: relative;perspective: 1600px;perspective-origin: center bottom;min-height: 380px;}
.tab-contenttt{position: absolute;width: 100%;top: 0;left: 0;transform-origin: bottom center;transition: all 0.6s ease;backface-visibility: hidden;border-radius: 30px;}
.tab-contenttt.active{transform: translateY(0) scale(1);opacity: 1;z-index: 3;border: 1px solid #b8b8b8;}
.layer2{transform: translateY(18px) scale(0.93);opacity: 0.75;z-index: 2;}
.layer3{transform: translateY(30px) scale(0.88);opacity: 0.55;z-index: 1;}
.layer2 .new_kotak_feature {background: linear-gradient(to bottom,rgba(245,245,245,0.9),rgba(230,230,230,0.95));}
.layer3 .new_kotak_feature {background: linear-gradient(to bottom,rgba(240,240,240,0.95),rgba(225,225,225,0.95));}
.new_kotak_feature{padding: 28px 45px 80px;border-radius: 30px;position: relative;min-height: 424px;}
.tab-contenttt.active .new_kotak_feature::after{content:"";position:absolute;bottom:-25px;left:15%;width:70%;height:35px;background: radial-gradient(ellipse at center,rgba(0,0,0,0.18) 0%,rgba(0,0,0,0.05) 60%,transparent 80%);filter: blur(10px);z-index:-1;}
.tab-contenttt a{opacity: 0;}
.tab-contenttt.active a{opacity: 1;}
.offline_termnew_mobile{display: none;}
.new_kotak_feature a{color: #003366;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 0;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;}
    .new_kotak_feature a span{color: #ed1c24;}

.newterm_faq .midWrapper{max-width: 934px;margin: 0 auto;}
.newterm_faq h2{font-size: 28px;line-height: 28px;letter-spacing: 0;font-weight: 600;color: #000000;text-align: center;}
.newterm_faq ul{flex-wrap: wrap;}
.newterm_faq ul li span{width: max-content;max-width: 100%;}
.accord{display: flex;gap: 10px;cursor: pointer;}
.panell {max-height: 0;overflow: hidden;transition: max-height 0.9s ease-in-out;}
.newterm_faq .boor ul li{
    font-size: 16px;
    line-height: 22px;
    list-style-type: disc;
    color: white !important;
    }
    .newterm_faq .boor ul{margin-top: 12px;padding-left: 60px;}

.accord span{color: #000000;font-weight: 400;line-height: 22px;letter-spacing: 0;font-size: 17px;}
.accord h3{color: #000000;font-weight: 400;line-height: 22px;letter-spacing: 0;font-size: 17px;}
.panell p{color: #000000;font-weight: 400;line-height: 22px;letter-spacing: 0;font-size: 16px;padding-left: 40px;margin-top: 16px;}
.boor{border: 1px solid #cfcfcf;border-radius: 12px;padding: 16px 30px;margin-bottom: 16px;position: relative;}
.boor.active{background-color: #003366;}
.boor.active h3{color: #ffffff;}
.boor.active span{color: #ffffff;}
.boor.active .panell p{color: #ffffff;}

.boor.active .new_accordion_img{display: none;}
.boor .new_accordion_img_active{display: none;}
.new_accordion_img,
.new_accordion_img_active {
    pointer-events: none;
}
.tab-contentt {
    display: none;
}

.tab-contentt.active {
    display: block;
}



.proceednew_btn:hover{color: #fa1432;}
.plan_work{padding: 80px 0;}
.plan_work h2{text-align: center;font-size: 23px;line-height: 28px;letter-spacing: 0;font-weight: 600;margin-bottom: 24px;color: #000000;}
.plan_work p{text-align: center;font-size: 17px;line-height: 22px;letter-spacing: 0;font-weight: 400;color: #000000;margin-bottom: 35px;}
.plan_work_cards{display: flex;gap: 18px;justify-content: space-between;text-align: center;overflow-x: auto;}
.work_each_cards{border: 1px solid #b8b8b8;border-radius: 30px;padding: 31px 14px 25px;max-width: 212px;min-width: 212px;margin-bottom: 15px;}
.work_each_cards:nth-child(odd) span{background-color: #fa1432;}
.work_each_cards:nth-child(even) span{background-color: #003366;}
.work_each_cards span{width: 55px;height: 55px;border-radius: 50%;color: #ffffff;font-size: 15px;display: inline-flex;align-items: center;justify-content: center;margin-bottom: 16px;}
.plan_work .work_each_cards p.new_choose{font-size: 16px;line-height: 22px;letter-spacing: 0;margin-bottom: 0;}
.Get_covered{text-align: center;width: 100%;display: flex;justify-content: center;display: flex;margin-top: 15px;}
.termnew_claim img{display: none;}
.plan_work h3{font-size: 17px;color: #000000;letter-spacing: 0;margin-bottom: 15px;font-weight: 600;line-height: 22px;}

.mobile_new_accordion{background-color: #f5f5f5;width: 100%;border-radius: 12px;position: relative;color: #0d0d0d;border: none;text-align: left;padding-left: 70px;font-weight: 400;font-size: 17px;letter-spacing: 0;text-transform: none;padding: 7px 70px;height: auto;cursor: pointer;}
.mobile_new_accordion.active{background-color: #003366 !important;color: #ffffff !important;font-weight: 500;font-size: 18px;}
.offline_termnew_mobile .mobile_new_accordion .new_accordion_img{right: auto;left: 20px;}
.offline_termnew_mobile .mobile_new_accordion .new_accordion_img_active{display: none;background-image: url(../images/newtermpage/accordionarrow.svg);background-repeat: no-repeat;width: 12px;height: 8px;position: absolute;top: 13px;right: 20px;}
.offline_termnew_mobile .mobile_new_accordion.active .new_accordion_img{display: none;}
.offline_termnew_mobile .mobile_new_accordion.active .new_accordion_img_active{right: auto;left: 20px;display: block !important;top: 50%;transform: translateY(-50%);}
.offline_termnew_mobile .mobile_new_accordion .newfaq_img{display: none;}
.offline_termnew_mobile h3{font-size: 24px;line-height: 30px;letter-spacing: 0;color: #000000;font-weight: 600;text-align: center;margin-bottom: 24px;}
.offline_termnew_mobile .mobile_new_accordion.active .newfaq_img{display: block;    background-image: url(../images/newtermpage/check.svg);background-repeat: no-repeat;position: absolute;top: 50%;transform: translateY(-50%);right: 20px;display: block;width: 26px;height: 26px;}
.offline_termnew_mobile .new_kotak_feature{border: 1px solid #b8b8b8;background-color: #ffffff;padding-left: 20px;margin-top: 24px;margin-bottom: 24px;}
.panell {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.boor.active .panell {
    max-height: 1000px; /* big enough value */
}

.new_timeline{padding: 70px 0 0;}
.term-section {
    border: 1px solid #b8b8b8;
    padding: 125px 18px 40px;
    border-radius: 30px;
    position: relative;
}
.check_new_section{
        position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
}

.term-container {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}
.left-card {
    width: 210px;
    background: #ebf6ff;
    padding: 25px;
    border-radius: 30px;
    text-align: center;
    z-index: 2;
    position: relative;
    margin-top: -60px;
}
.left-card img{width: 80px;height: 80px;}
.benefit-card h4{font-size: 16px;line-height: 21px;color: #000000;letter-spacing: 0;font-weight: 400;}
.benefit-card h5{font-size: 28px;line-height: 21px;font-weight: 500;color: #000000;margin: 12px auto 18px;}

.left-card img {
    width: 80px;
    margin-bottom: 15px;
}
.timeline-area {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 60px;
}
.timeline-line {
    position: absolute;
    top: 48px;
    left: -100px;
    right: 0;
    height: 2px;
    border-top: 2px dashed #003366;
}
.timeline-area::after {
    content: "";
    position: absolute;
    right: 0;
    top: 48px;
    bottom: -50px;
    width: 2px;
    border-right: 2px dashed #003366;
}
.timeline-area::before {
    content: "";
    position: absolute;
    left: 200px;
    right: 0;
    bottom: -50px;
    height: 2px;
    border-bottom: 2px dashed #003366;
}
.timeline-item {
    width: 18%;
    text-align: center;
    position: relative;
}

.timeline-item p {
    margin-top: 10px;
    font-size: 17px;
    letter-spacing: 0;
    line-height: 22px;
    font-weight: 400;
}
.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin: auto;
    position: relative;
    z-index: 2;
}
.left-card p{font-size: 16px;line-height: 24px;letter-spacing: 0;color: #000000;}
.new_timeline .blue {border: 5px solid #003366;z-index: 2;background: #ffff; position: relative;}
.new_timeline .blue::after{position: absolute; border-right: 2px dashed #003366;content: "";height: 50px;left: 3px;top: 15px;}
.new_timeline .red { border: 5px solid #ed1c24;z-index: 2;background: #ffff; position: relative;}
.new_timeline .red::before{position: absolute;border-right: 2px dashed #ed1c24;content: "";height: 50px;left: 3px;bottom: 15px;}
.age-badge {
    margin: 50px auto 0;
    background: #003366;
    color: #fff;
    padding: 3px 11px;
    border-radius: 10px;
    font-size: 16px;
    display: inline-block;
    letter-spacing: 0;
}

.age-badge span {
    font-size: 11px;
}
.benefit-card {
    background: #ebf6ff;
    width: 421px;
    margin: -30px auto 0;
    padding: 29px;
    border-radius: 30px;
    text-align: center;
    z-index: 2;
    position: relative;
    display: flex;
    gap: 20px;
    align-items: center;
}

.benefit-card h2 {
    font-size: 36px;
    margin: 10px 0;
}


.timeline-item:nth-child(even) .top_bottom{
    position: absolute;
    top: -130px;
}
.timeline-item:nth-child(odd) .top_bottom{
    position: absolute;
    top: 35px;
}
.badge_top{
    position: absolute;
    top: -170px;
    left: 50%;
    transform: translateX(-50%);
}
.benefit-card img{width: 80px;height: 80px;}
.arrowww{
    position: absolute;
    top: -75px;}
    .dropdown-menu.show {
    display: block;
}
.custom-dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-menu.show {
    display: block;
}


.dropdown-btn {
    background: transparent;
    color: #003366;
    border: 1px solid #003366;
    border-radius: 6px;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 15px;
}
.dropdown-btn.active, .dropdown-btn:focus{background: transparent;color: #003366;}
.dropdown-btn img{width: 12px;height: 6px;transform: rotate(180deg);}
.dropdown-btn.active img{
    transform: rotate(0deg);
}
.dropdown-btn:hover{background: transparent;
    color: #003366;}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 5px;
    list-style: none;
    padding: 0;
    display: none;
    z-index: 2;
}

.dropdown-menu li {
    padding: 10px 15px;
    cursor: pointer;
}

.dropdown-menu li:hover {
    background: #f5f5f5;
}
#kotakVsOther .back_red_new{margin-top: 30px;}
.kotakVsOthercta{display: flex;justify-content: center;}
.get_instant{font-size: 15px !important;line-height: 15px !important;color: #003366 !important;letter-spacing: 0;margin-top: 15px;text-align: center !important;margin-bottom: 0 !important;}
.new_kotak_feature .pdfnewterm{display: flex;justify-content: center;align-items: center;top: 22px;}
.mobile_new_timeline{display: none;}
.mobile_timeline{display: flex;background-color: #ebf6ff;border-radius: 30px;align-items: center;padding: 21px 13px;gap: 19px;margin-bottom: 65px;}
.mobile_timeline p{font-size: 16px;line-height: 23px;color: #000000;letter-spacing: 0;}
.mobile_timeline .imggg{min-width: 91px;height: 91px;}
.mobile_amar{padding-left: 100px;position: relative;}
.mobile_amar::before{content: "";position: absolute;top: -60px;bottom: -25px;left: 70px;border-left: 2px dashed #003366;}
.mobile_amar li{font-size: 16px;line-height: 22px;letter-spacing: 0;font-weight: 400;color: #000000;border: 1px solid #cfcfcf;padding: 16px 25px;border-radius: 8px;margin-bottom: 25px;position: relative;}
.mobile_amar li:nth-child(even)::before {
  content: "";
  position: absolute;
  border: 1px dashed #003366;
  width: 40px;
  left: -50px;
}
.mobile_amar li:nth-child(odd)::before {
  content: "";
  position: absolute;
  border: 1px dashed #fa1432;
  width: 40px;
  left: -50px;
}
.mobile_amar .mobile_years{position: absolute;left: -100px;top: -10px;}
.mobile_img img {transform: rotate(270deg);position: absolute;top: 6px;left: -140px;width: 100px;}
.mobile_timeline button{font-size: 13px;padding: 0 10px;gap: 10px;}
.mobile_timeline h4{font-size: 16px;font-weight: 400;line-height: 21px;letter-spacing: 0;color: #000000;}
.mobile_timeline h5{font-size: 28px;line-height: 21px;letter-spacing: 0;color: #000000;margin: 10px 0;}
.mobile_amar .years_mobile{background-color: #003366;color: #fff;border-radius: 13px;padding: 0px 6px;font-size: 16px;}
.mobile_amar li:nth-child(odd) .dottt{border: 5px solid #fa1432;border-radius: 50%;background-color: #fff;z-index: 2;position: absolute;left: -39px;top: 8px;padding: 4px;}
.mobile_amar li:nth-child(even) .dottt{border: 5px solid #003366;border-radius: 50%;background-color: #fff;z-index: 2;position: absolute;left: -39px;top: 8px;padding: 4px;}
.newterm_faq{margin-top: 125px;}
.back_red_new:hover{color: #ffffff;}
.mobile_new_accordion:focus{background-color: #f5f5f5;color: #000000;}
.termTitlee{line-height: 28px;font-size: 23px !important;font-weight: 600;letter-spacing: 0px;color: #000000 !important;margin: 0 !important;text-align: left;}
.termDescc{font-size: 16px;font-weight: 500;color: #000;padding: 10px 0;letter-spacing: 0px;line-height: 22px;}
.termSubtitlee{
font-size: 18px;
    font-weight: 600;
    letter-spacing: 0px;
    color: #000;
line-height: 24px;}
    .benefitsOfUlip-listt {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .3px;
    padding: 10px;
    padding-left: 35px;
}
.whoShouldBuyAccordionn {
    width: 100%;
    margin: 5px auto;
    transition: background-color 0.3s ease-out;
}
.whoShouldBuyAccordion-itemm {
    color: #111;
    margin: 1rem 0;
    border-radius: .5rem;
    border-bottom: 1px solid #d8d8d8;
}
.whoShouldBuyAccordion-item-headerr {
    padding: 20px 15px;
    min-height: 3.5rem;
    line-height: 1.2;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    cursor: pointer;
    font-weight: 500 !important;
    letter-spacing: .3px;
}
.whoShouldBuyAccordion-item-headerr::after {
    content: "\002B";
    font-size: 3rem;
    position: absolute;
    right: 2rem;
}
.whoShouldBuyAccordion-item-headerr.active::after {
    content: "\2212";
}
.whoShouldBuyAccordion-item-bodyy {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, background-color 0.3s ease-out;
}
.whoShouldBuyAccordion-item-body-contentt {
    padding: 5px 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
.traditionn {
    margin-bottom: 25px !important;
}
.kotakVsOther-tablee table th, .kotakVsOther-tablee table td {
    font-size: 17px !important;
}
.kotakVsOther-tablee {
    width: 100%;
    overflow-x: auto;
}
.kotakVsOther-tablee table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
tr:nth-child(odd) {
    background-color: #f9f9f9 !important;
}
.kotakVsOther-tablee table th {
    padding: 12px;
    text-align: center;
    color: #000 !important;
    border: 1px solid #000 !important;
    background: #fff !important;
    font-weight: 700;
}
.middle {
    object-position: -98px 3px;
    object-fit: cover;
    width: 18px;
    height: 41px;
    vertical-align: middle;
}
.color_w {
    color: #ffffff !important;
}
.kotakVsOther-tablee .primaryy {
    background-color: #002060 !important;
    color: #fff !important;
}
tr:nth-child(odd) {
    background-color: #f9f9f9 !important;
}
.kotakVsOther-tablee table td {
    font-size: 17px;
    padding: 10px !important;
    color: #000 !important;
    background-color: #fff !important;
    border: 1px solid #000 !important;
}

.fullBgg {
    background-color: #F5F5F5;
    padding: 25px;
}
.reasonToBuyCardss, .typesOfTermCardss, .whyWeNeedTermCardss {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    margin: 20px 0;
}
.factorsslickterm11 {
    justify-content: start !important;
    overflow-x: auto;
    flex-wrap: nowrap !important;
    display: flex;
    gap: 20px;
}
.reasonToBuyCardd {
    box-shadow: none !important;
    min-width: 350px !important;
    background: white;
    border-radius: 8px;
    padding: 20px;
    max-width: 350px;
    min-height: 240px;
    margin-top: 0 !important;
    text-align: start !important;
    border: 1px solid #DBDBDB;
    margin-bottom: 15px;
}
.factorsslickterm11::-webkit-scrollbar {
        height: 4px;
    }

    .factorsslickterm11::-webkit-scrollbar-track {
        background: #d0d0d0;
        border-radius: 2px;
        transition: background 0.3s ease;
        cursor: pointer;
    }
    .benefitsOfTermFlexx, .featuresTermFlexx, .influenceTermFlexx, .whyIsSumAssuredFlexx, .whyBuyTermFlexx, .termPolicyFlexx, .basicTermFlexx {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    margin: 10px 0;
}
.featuresTerm-gridd, .influenceTerm-gridd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 20px;
    margin-top: 10px;
}
.typesOfTermCardd {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    max-width: 370px;
    min-height: 307px;
    margin: 10px 0;
    text-align: start;
    border: 1px solid #e5e5e5 !important;
    min-width: 370px !important;
}
.typesOfTermCardss {
    overflow-x: auto;
    flex-wrap: nowrap !important;
    gap: 20px;
}
.typesOfTermCardss::-webkit-scrollbar {
        height: 4px;
    }

 .typesOfTermCardss::-webkit-scrollbar-track {
        background: #d0d0d0;
        border-radius: 2px;
        transition: background 0.3s ease;
        cursor: pointer;
    }
    .lifeCover-cta, .kotakVsOther-cta, .lifeExpectancy-cta {
    display: flex;
    justify-content: center;
    margin: 15px auto 5px;
}
.benefitsOfUlip-listt {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .3px;
    padding: 10px;
    padding-left: 35px;
}
.benefitsOfTermFlexx, .featuresTermFlexx, .influenceTermFlexx, .whyIsSumAssuredFlexx, .whyBuyTermFlexx, .termPolicyFlexx, .basicTermFlexx {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    margin: 10px 0;
}
.benefitsOfUlip-listt li {
    list-style: disc;
}
.influenceTermFlexx h4 {
    letter-spacing: .4px;
}
.chooseBestTermFlexx {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 15px;
    background-color: #f6f6f6;
    border-bottom: 1px solid #d8d8d8;
    padding: 20px;
}
.testimonial-bgg {
    background: none !important;
    height: 495px;
    width: 910px !important;
    background-position: 2px 23px;
    background-repeat: no-repeat;
    border: 5px solid #036;
    border-radius: 30px;
    text-align: center;
    margin: 10px auto;
    padding: 100px;
        position: relative;
}
.testimonial-bgg:before {
    background-image: url(../images/term-insurance/testimonial-rating-sprites.webp) !important;
    content: '';
    background-position: 9px 2px;
    width: 80px;
    height: 60px;
    position: absolute;
    top: -40px;
    left: 45%;
    background-color: #fff;
}
.testimonial-titlee {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.2px;
}
.pagingInfo-review-tess {
    bottom: 6rem;
}
.testimonial-bgg:after {
    content: '';
    background-image: url(../images/term-insurance/testimonial-rating-sprites.webp) !important;
    background-position: 1px -80px;
    width: 63px;
    height: 60px;
    position: absolute;
    bottom: -40px;
    left: 47%;
    background-color: #fff;
}
.saving-testimonial .slick-prev, .saving-testimonial .slick-next {
    background-image: url(../images/term-insurance/testimonial-rating-sprites.webp) !important;
    
}
.saving-testimonial .slick-prev{background-position: -8px -187px;}
.saving-testimonial.savetest .slick-list {
    overflow: hidden !important;
}
#testimonial .slick-slide {
    border-right: none !important;
}
.saving-testimonial .slick-prev, .saving-testimonial .slick-next {
    background-image: url(../images/term-insurance/testimonial-rating-sprites.webp) !important;
    z-index: 1;
       
}
.saving-testimonial .slick-next {
    background-position: -39px -187px;
    background-size: auto;
    left: unset;
    z-index: 1000;
    right: -50px;
    top: 20%;
    bottom: 1px;
    background-color: #fff0;
    border: 0;
    font-size: 0;
    height: 25px;
    width: 25px;
    position: absolute;
    padding: 0;
    margin: 0;
}
.waiver_imgg {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}
.buying_111 {
    margin-left: 45px;
}
.nominee{position: absolute;bottom: 20px;left: 20px;font-size: 12px;color: #000000;letter-spacing: 0;max-width: 262px;}
.whyBuyTermBoxx {
    background-color: #fff3f3;
    border: 1px solid #ceb0ac;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin: 15px 0 10px;
    padding: 15px;
}
.whyBuyTermtitlee {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    letter-spacing: .3px;
}
.benefitsOfUlip-listt li {
    color: #000;
}
.commonMisconceptFlexx {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 20px;
    margin: 20px 0 10px;
}
.payoutCardd {
    background-color: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    padding: 25px;
    max-width: 350px;
    min-height: 283px !important;
    flex-basis: 100%;
}
.payoutCardss {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.termTitlee {
    padding: 30px 0 0 0;
}
.terms p {
    font-family: Lato-regular;
}
.terms p {
    font-family: Lato-regular;
}


.plan_work_cards::-webkit-scrollbar {
        height: 4px;
    }

    .plan_work_cards::-webkit-scrollbar-track {
        background: #d0d0d0;
        border-radius: 2px;
        transition: background 0.3s ease;
        cursor: pointer;
    }

    .plan_work_cards::-webkit-scrollbar-thumb:hover {
        background: #555;
        cursor: pointer;
    }


@media (max-width: 1366px) {
    .timeline-item:nth-child(even) .top_bottom{
    
    top: -150px;
    
}
.premiums .para_tag{font-size: 13px;}
.termnew_claim .claim_settle::after{right: -18px;}
}

/*term_new_page*/
.searchBtn span{background-image: url(https://www.kotaklife.com/assets/images/sprite.png);font-size: 0;height: 33px;width: 30px;display: inline-block;background-position: 4px 5px;background-repeat: no-repeat;background-size: 55px;cursor: pointer;}

.new_buy_online .buyOnline{
    background-color: #e41e25;
    padding: 25px 5px;
    box-sizing: border-box;
    font-size: 1.4em;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #fff;
    cursor: pointer;
}


ul.fixedUL.new_buy_online li .buyOnline:before{
    background-position: 21px 29px!important;
}

.searchBtn{
    margin-top: -10px;
}

ul.fixedUL.new_buy_online li .buyOnline:before {
    background-position: 1px 28px !important;
    content: '';
    display: inline-block;
}

.buy-online-change .closePopup {
    float: right;
    z-index: 111;
}

.closePopup {
    float: left;
    margin: 0 0 25px;
    width: 36px;
    height: 36px;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    background: 0 0;
    font-size: 1.4em;
    color: #da251c;
    padding-left: 45px;
    line-height: 36px;
    cursor: pointer;
}

.closePopup:before {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.closePopup:hover:before {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
}

.closePopup:hover:after {
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -o-transform: rotate(225deg);
}
   
.benefit-card .custom-dropdown li{color: #000000;font-size: 16px;letter-spacing: 0;}
.benefit-card .custom-dropdown li:hover{color: #003366 !important;}
.terminsurance_neww1{font-size: 22px;}
@media (min-width: 768px){
    .termnew_insurance .more {
        display: inline !important;
    }

    /* Hide dots */
    .termnew_insurance .dots {
        display: none !important;
    }

    /* Hide read more button */
    .termnew_insurance .readMoreBtn {
        display: none !important;
    }

    /* Hide checkbox */
    .termnew_insurance #readToggle {
        display: none !important;
    }

    .termnew_insurance #readToggle {
    display: none;
    }
}

@media (max-width: 767px) {
    .tooltiptext{width: 100% !important;}
    
    .termnew_lifecover{grid-template-columns: 100%;}
    .termnew_insurance{margin-top: -40px !important;}
    .onlinenew_grid{grid-template-columns: 1fr;} 
    .how_does{grid-template-columns: 100%;}
    .agreement{background-color: #f5f5f5;padding: 39px 28px;}
    .plain_gray{display: none;}
    .inter_reverse{display: none;}
    .inter{display: none;}
    .new_term_tab{grid-template-columns: 100%;}
    .secure_this{padding: 25px 30px;}
    .secure_this h2 {margin-bottom: 28px;font-size: 28px;}
    .industry{margin: 28px 0 10px;padding: 19px;}
    .back_red_new{width: 100%;text-align: center;justify-content: center;}
    .young_professional{display: block;}
    .secure_this p span{font-size: 28px;}
    .new_term_tab{gap: 0%;}
    .you_get{padding: 26px;}
    .tabbs li{display: block;height: max-content;min-width: 118px;padding: 14px;}
    .tabbs{justify-content: unset;}
    .tabbs{gap: 10px;overflow: auto;}
    .tabbs::-webkit-scrollbar {display: none;}
    .offline_termnew{display: none;}
    .offline_termnew_mobile{display: block;}
    .newterm_faq .tabbs{justify-content: center;}
    .termnew_claim {padding: 75px 37px 41px;position: relative;}
    .termnew_claim .ratio{flex-wrap: wrap;row-gap: 25px;}
    .termnew_claim h2{font-size: 26px;}
    .termnew_claim .claim_settle::after {display: none;}
    .termnew_claim .claim_settle{width: 130px;}
    .termnew_claim img{position: absolute;left: 50%;transform: translateX(-50%);top: -63px;}
    .plan_work{padding: 0;}
    .newterm_online{padding: 0;}
    .crore_coverage{padding: 0;}
    .month_475 p{display: none;}
    .for_new_mobile{display: block;}
    .for_new_mobile li{list-style-type: disc;}
    .mask_img{position: absolute;bottom: 0;right: -20px;height: auto;width: 157px;}
    .month_475 .terminsurance_new {font-size: 18px;line-height: 27px;font-weight: 500;max-width: 230px;}
     .month_475 ul{padding-left: 30px;}
     .month_475{grid-template-columns: 1fr;margin-top: 80px;}
     .month_475 .proceednew_btn{background-color: #ca1717;color: #ffffff;position: relative;z-index: 5;}
     .termnew_lifecover_first{background: linear-gradient(180deg, rgba(255, 255, 255, 0) -4.39%, #F5F5F5 100%);;}
     .new_proceed_center{text-align: center;}
     .premiums{display: none;}
     .mobile_premiums{display: block;background-color: #ebf6ff;padding: 18px 0 17px 29px;border-radius: 30px 30px 0 0;position: absolute;top: 0;right: 0;left: 0;margin-bottom: 25px;}
     .mobile_premiums_flex{display: flex;}
     .new_upto{border-right: 1px solid #000000;padding-right: 15px;margin-right: 15px;}
     .mobile_premiums_flex p{font-size: 17px;font-weight: 400;line-height: 22px;letter-spacing: 0;color: #000000;}
   
    .termnew_lifecover_first{margin-bottom: 0;}
    .termnew_insurance{padding-bottom: 0;}
    .newterm_faq{margin-top: 30px;}
    .howInsuranceWork-gridd, .featuresTerm-gridd, .typesOfTermCardd, .influenceTerm-gridd {
        grid-template-columns: 100%;
    }
        .chooseBestTermboxx, .whyBuyTermBoxx {
        flex-direction: column;
        gap: 10px;
    }
    

    .testimonial-bgg {
        width: 100% !important;
        height: auto !important;
        padding: 20px;
    }
    .savetest .custom-review p {
        padding-left: 31px !important;
        padding-right: 31px !important;
        font-size: 14px;
    }
    .secure_this .proceednew_btn{display: flex;justify-content: center;}
    .you_get .proceednew_btn{display: none;}
    .new_proceed_center .right_ar {background-position: -122px -11px;}
    

.saving-testimonial .slick-next{
        right: 0px;
    top: 30%;}
    #topSectionn{top: -40px;}
    .payoutCardd {max-width: 100%;}
    .termTitlee {padding-top: 0;}
    .check_new_section a{display: flex;width: max-content;margin-bottom: 25px;}
    .mobile_new_timeline{padding-bottom: 15px;}
    .newterm_online h2{line-height: 32px;}
    .claim_settle_none{display: none;}
    .ratio{justify-content: space-around !important;}
    .termnew_claim img {display: block;}
    .termnew_claim {margin-top: 100px;}
    .get_instant{margin-bottom: 0 !important;}
    .new_kotak_feature .know_new_more {bottom: 7px;}
    .nominee {
    position: absolute;
    bottom: 72px;
    left: 20px;
    font-size: 12px;
    color: #000000;
    letter-spacing: 0;max-width: 100%;}
    .mobile_timeline{margin-bottom: 90px;}
    /* read more */
   .termnew_lifecover_first{margin-bottom: 16px;}
    .termnew_insurance .dots {display: none;}
    .termnew_insurance #readToggle:checked ~ .dots {display: none;}
    .termnew_insurance #readToggle:checked ~ .more {display: inline;}
    .termnew_insurance .readMoreBtn {color: #ed3237;cursor: pointer;font-weight: 600;margin-left: 5px;}

   
    .termnew_insurance .readMoreBtn {display: inline;white-space: nowrap;margin-left: 4px;}
    .termnew_insurance input[type="checkbox"] {display: none !important;}
    .content {display: none;}
    .content.show {display: block;}
    .new_timeline{display: none;}
    .mobile_new_timeline{display: block;}
        .form_450_new {
        min-height: 500px;
    }


     /* read more */
}
 .menu-icon55::before{background-image: url(../images/spritesheet55.webp);content: '';
    height: 40px;
    width: 50px;
    left: 0;
position: absolute;
    top: 0;}
     .menu-icon55{padding-left: 60px;position: relative;height: 50px !important;}
     .c12::before{background-position: -105px -205px !important;
    background-size: 115px !important;}
@media (max-width: 390px) {
.check_new_section a {font-size: 14px !important;}}
.authorBox {width: 100%;
    justify-content: flex-start;}
.tooltiptext{display: block !important;
    width: 500px;
    top: 111%;}
.menu-icon555{padding-left: 60px;height: 50px !important;position: relative;}
    .menu-icon555:before {
    height: 50px !important;
    width: 60px !important;
    background-position: -131px 0px;
position: absolute !important;
    top: 0;
    background-image: url(/assets/images/spritesheet555.png) !important;
    left: 0;content: "";background-repeat: no-repeat;}


    /*savings_new*/
    .savings_new_plan .investmentDesc.para_tag{margin-bottom: 26px;}
    .savings_new_plan .termnew_lifecover_first{margin-bottom: 0;}
    .midWrapper .tablevk td {font-size: 18px;color: #000000;}
    .midWrapper .tablevk th {font-size: 20px;color: #000000;}
    .scrollx {overflow-x: auto;}
    .content-col {display: none;overflow: hidden;}
    .offline_termnew_savings{grid-template-columns: 45% 52%;}
    .savings_fullWBanner{margin-top: 175px;}
    .crore_coverage_savings .tabbs li span {max-width: 150px}
    #typesofsavingplan{padding: 60px 0 0;}
    .new_savings_table{padding: 50px 0 0;}
    .newterm_online .para_tag{text-align: center;}
    .savings_new_plan .premiums{justify-content: space-between;align-items: center;}
    .kasp_header .savings_para_tag{font-size: 20px;font-weight: 600;}
    .savings_new_plan .proceednew_btn{padding: 13px 10px;margin-bottom: 0;}
    .savings_new_plan .reverse_column_new{display: block;}
    .sup_pad sup {padding: 0 !important;}
    .secure_this_savings .proceednew_btn{display: flex !important;left: 30%}
 .crore_coverage_savings .you_get{display: flex;flex-direction: column;justify-content: center;}
    .crore_coverage_savings .newkotak_cards .kotak_new_new{z-index: 2;margin-bottom: 32px;}
    .secure_this_savings .para_tag{margin-bottom: 4px;z-index: 2;}
     .crore_coverage_savings .newkotak_cards{padding: 60px 0px 100px 50px;}
    .mar_16{margin-bottom: 30px !important;}
     @media (max-width: 1365px){
        .kasp-info {font-size: 13px !important;}
     }
    @media (max-width: 480px) {
    .savings_new_plan .mask_img{display: none;}
    .kasp-footer{flex-wrap: wrap;}
    .savings_guaranteed{align-items: start;}
    .savings_flex{flex-wrap: wrap;gap: 10px;}
    .savings_new_plan .premiums{display: block;}
    .secure_this_savings .proceednew_btn{position: static;transform: none;}
    .tabbs li{height: auto;max-width: 118px;}
    .crore_coverage_savings .newkotak_cards {
    padding: 25px 30px;
}
    
    }

    /*savings_new*/
.new_retire_sticky{border-radius: 33px !important;text-align: left;}
.new_retire_sticky .cta2 a{padding: 15px 28px;}

.bttm_sticky_product .bottomimg{background-color: #fff;background-size: 23px;border-radius: 50px;background-position: center;}
.bttm_sticky_product .bottomimg.firstimg{background-image: url(../images/homepageV2/rupee_icon.svg);}
.bttm_sticky_product .bottomimg.secondimg{background-image: url(../images/homepageV2/save_icon.svg);}
   
    






