/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}


@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.owl-carousel .fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.owl-carousel .fadeInUp {
  animation-name: fadeInUp;
}


@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 *  Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-transform:capitalize;  /*pw*/
  font-size: 20px;

}

.owl-dots {float:none; text-align: center;}
.owl-dot {padding:10px 5px; display:inline-block;}
.owl-dot:only-child {display:none;}
.owl-dot span {width:8px; height:8px; border-radius:50%; background:#cecece; display:block; float:left; cursor:pointer; -webkit-transition:0.3s all; transition:0.3s all;}
.owl-dot.active span {background-color:#ff9b41; cursor:default;}
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-controls .owl-nav .owl-prev, .owl-carousel .owl-controls .owl-nav .owl-next{padding: 10px;}  /*pw*/
.owl-carousel .owl-controls .owl-nav .owl-prev{float:left;}  /*pw*/
.owl-carousel .owl-controls .owl-nav .owl-next{float:right;} /*pw*/
.owl-carousel .owl-controls .owl-nav *.disabled {opacity:0.5; cursor: default;}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 *  Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 *  Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("clientlib/css/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

/*pw*/

@charset "UTF-8";
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/

.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}
@font-face { font-family: 'Rubik-Bold'; 
    src: url("../../../content/dam/bagic/fonts/Allianz Sans Bold.eot"); 
    src: url("../../../content/dam/bagic/fonts/Allianz Sans Bold.eot?#iefix") format("embedded-opentype"), 
         url("../../../content/dam/bagic/fonts/Allianz Sans Bold.woff2") format("woff2"), 
         url("../../../content/dam/bagic/fonts/Allianz Sans Bold.woff") format("woff"), 
         url("../../../content/dam/bagic/fonts/Allianz Sans Bold.svg#Allianz Sans Bold") format("svg"); font-weight: 700; font-style: normal; font-stretch: normal;  unicode-range: U+0-10FFFF;
    font-display: swap;
}
@font-face { font-family: 'Rubik-Regular'; 
    src: url("../../../content/dam/bagic/fonts/Allianz-Sans.eot"); 
    src: url("../../../content/dam/bagic/fonts/Allianz-Sans.eot?#iefix") format("embedded-opentype"), 
        url("../../../content/dam/bagic/fonts/Allianz-Sans.woff2") format("woff2"), 
        url("../../../content/dam/bagic/fonts/Allianz-Sans.woff") format("woff"), 
        url("../../../content/dam/bagic/fonts/Allianz-Sans.svg#Rubik Medium") format("svg"); font-weight: 500; font-style: normal; font-stretch: normal;  unicode-range: U+0020-2084;
    font-display: swap;
}
@font-face { font-family: 'Rubik-Light'; src: url("../../../content/dam/bagic/fonts/Allianz-Sans-Light.eot"); src: url("../../../content/dam/bagic/fonts/Allianz-Sans-Light.eot?#iefix") format("embedded-opentype"), url("../../../content/dam/bagic/fonts/Allianz-Sans-Light.woff2") format("woff2"), url("../../../content/dam/bagic/fonts/Allianz-Sans-Light.woff") format("woff"), url("../../../content/dam/bagic/fonts/Allianz-Sans-Light.svg#Rubik Medium") format("svg"); font-weight: 500; font-style: normal; font-stretch: normal;  unicode-range: U+0020-2084;
    font-display: swap;
}
body, p, input, button, textarea { font-family: "Rubik-Regular"; }
h1, h2, h3, h4, h5, h6, strong { font-family: "Rubik-Regular"; }
a { color: #fff; }
p, input, textarea, button, a, li, label { font-size: 1.8rem; line-height: 1.4; }
html { font-size: 62.5%; }
body { font-family: "Rubik-Regular"; color: #005596; overflow: hidden; }
* { margin: 0; padding: 0; outline: none; list-style: none; -webkit-tap-highlight-color: transparent; border: none; -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; border-radius: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -o-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; -ms-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; outline: none; color: #005596; }
a:hover { text-decoration: none; }
img { border: none; max-width: 100%; vertical-align: top; border: none; }
html { width: 100%; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
p, .ul, h1, h2, h3, h4, h5, h6 { padding-bottom: 5px; }
h1, h2, h3, h4, h5, h6 { line-height: 1; }
h1 { font-size: 5rem; }
h2 { font-size: 3.3rem; }
h3 { font-size: 3rem; font-family: "Rubik-Bold"; }
h4 { font-size: 2.2rem; font-family: "Rubik-Bold"; }
h5 { font-size: 2rem; }
h6 { font-size: 1.6rem; }
h3 a, h4 a, h5 a, h6 a { font-size: inherit; text-decoration: underline; }
table, table tr td, table tr th { border: none; }
table { border-collapse: collapse; border-spacing: 0; }
input, textarea { outline: none; }
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, section, summary, mark { float: left; width: 100%; }
.fl { float: left !important; }
.fr { float: right !important; }
    ::-webkit-scrollbar {
    width: 7px;
    height: 1px;
}

input[type=submit], input[type=button], button[type=submit] { -webkit-appearance: none; -moz-appearance: none; appearance: none; cursor: pointer; outline: none; }
.container { width: 100%; margin: 0 auto; padding: 0 40px; max-width: 1440px; }
.btn { background: #f89c30; padding: 8px 30px 10px; -webkit-border-radius: 50px; -moz-border-radius: 50px; -ms-border-radius: 50px; border-radius: 50px; color: white; font-size: 1.8rem; display: inline-block; clear: both; position: relative; overflow: hidden; z-index: 1; text-align: center; border: 1px solid #f89c30; font-family: "Rubik-Regular"; letter-spacing: 1px; }
.inlineBlock, .blueBox ul, .blueBox ul li, .blueBox ul li a, .blueBox.claimSec .nearestBranch, .blueBox.claimSec .nearestBranch a:before, .blueBox.claimSec ul li a:after, .customSelect .selectedText:after, .mainHeader .rightSec .notification, .mainHeader .rightSec .langSec, .mainHeader .rightSec .rightBottom .searchSec, .mainHeader .rightSec .rightBottom .getInTouch, .mainHeader .rightSec .rightBottom .loginSec, .locateAndClaimSec .claimInTabSec .tabContentSec .content .imgSec, .locateAndClaimSec .claimInTabSec .tabContentSec .content .description ul li:before, .insureWheelWrap .nearestBranch ul li:before, .healthInsuranceMain .stepsContainer .stepOneContainer form, .healthInsuranceMain .stepsContainer .stepOneContainer .rightSec, .getQuoteWrap .nearestLocate ul li:before, .docDownAndRenew .docDownloadSec ul li:before, .docDownAndRenew .docDownloadSec ul li:after { display: inline-block; vertical-align: middle; }
.communicationSec.visible { opacity: 0; z-index: -1; right: -300px; }
.communicationSec .chatWithUs { margin-top: 15px; }
.communicationSec p { font-size: 1.4rem; color: #000000; margin-top: 5px; }
.communicationSec { position: fixed; right: 10px; bottom: 90px; text-align: center; z-index: 10; -webkit-transition: 0.5s ease all; -moz-transition: 0.5s ease all; -ms-transition: 0.5s ease all; -o-transition: 0.5s ease all; transition: 0.5s ease all; }
.svgBox>img { display: none; }
.blueBox.claimSec ul li a:after { content: ""; width: 8px; height: 13px; background: url(../../../content/dam/bagic/index/sprite.png) no-repeat; background-position: -39px -88px; margin-left: 12px; }
.blueBox.claimSec ul li { padding-left: 15%; }
.scrollNone { overflow: hidden; }
.pageTitle { text-align: center; margin: 20px 0; }
.pageTitle h1 { color: #005596; font-size: 3rem; font-family: "Rubik-Bold"; padding-bottom: 15px; text-transform: uppercase; }
.whyUs { background: #f5fbff; text-align: center; padding: 38px 0; }
.whyUs h1.whyUsHead, .whyUs h2.whyUsHead { color: #005596; font-size: 3rem; font-family: "Rubik-Bold"; padding-bottom: 15px; text-transform: uppercase; }
.whyUs p { color: #5e5e5e; font-size: 1.8rem; max-width: 85%; width: 100%; margin: 0 auto; display: inline-block; }
.lists { width: 100%; }
.lists li { font-size: 1.8rem; color: #0072bc; padding: 16px 0 17px 20px; position: relative; }
.lists li:before { content: ""; position: absolute; width: 6px; height: 6px; left: 0; top: 28px; background: #ff9b41; -webkit-border-radius: 20px; -moz-border-radius: 20px; -ms-border-radius: 20px; border-radius: 20px; }
.lists li a { color: #0072bc; }
.bredcrumbs { padding-top: 18px; clear: both; }
.bredcrumbs ul li { font-size: 1.4rem; font-family: "Rubik-Light"; color: #000000; display: inline-block; vertical-align: top; margin-right: 10px; }
.bredcrumbs ul li a { font-size: 1.4rem; font-family: "Rubik-Light"; color: #000000; margin-right: 10px; }
.popupSec { position: absolute; max-width: 800px; width: 100%; height: 350px; left: 50%; top: 50%; padding: 40px; background: #fff; display: none; z-index: 99; }
.popupSec iframe { width: 100%; height: 100%; }
.popupSec .close { position: absolute; top: 10px; right: 10px; font-size: 2.5rem; color: #000000; top: 5px; right: 15px; }
.popupSec.videoPopupSec { height: 400px; }
.ratingSec { text-align: center; }
.ratingSec ul { font-size: 0; }
.ratingSec ul li { display: inline-block; vertical-align: top; width: 19px; }
.ratingSec ul li a { display: block; height: 18px; background: url(../../../content/dam/bagic/index/star-rating.png) no-repeat -19px 0; }
.ratingSec ul li.rate a { background-position: 0 0; }
.mouse { background: #b1b1b1 linear-gradient(transparent 0%, transparent 50%, #F7F7F7 50%, #F7F7F7 100%); position: relative; width: 19px; height: 35px; background-size: 100% 100%; border-radius: 100px; background-size: 225%; display: block; margin-top: 5px; animation: colorSlide 5s linear infinite, nudgeMouse 5s ease-out infinite; }
.nonTouch .btn:before { content: ''; z-index: -1; background: white; position: absolute; top: 50%; right: 100%; margin: -15px 0 0 1px; width: 30px; height: 30px; -webkit-border-radius: 50px; -moz-border-radius: 50px; -ms-border-radius: 50px; border-radius: 50px; -webkit-transform-origin: 0% 50%; -moz-transform-origin: 0% 50%; -ms-transform-origin: 0% 50%; transform-origin: 0% 50%; -webkit-transform: scale3d(1, 2, 1); -moz-transform: scale3d(1, 2, 1); -ms-transform: scale3d(1, 2, 1); -o-transform: scale3d(1, 2, 1); transform: scale3d(1, 2, 1); -webkit-transition: 0.5s all; -moz-transition: 0.5s all; -ms-transition: 0.5s all; -o-transition: 0.5s all; transition: 0.5s all }
.nonTouch .btn:hover { color: #f89c30; }
.nonTouch .btn:hover:before { -webkit-transform: scale3d(10, 9, 1); -moz-transform: scale3d(10, 9, 1); -ms-transform: scale3d(10, 9, 1); -o-transform: scale3d(10, 9, 1); transform: scale3d(10, 9, 1) }
.nonTouch footer a:hover { text-decoration: underline }
.nonTouch .ie9browser .btn:hover { color: #fff }
.nonTouch .ie9browser .docDownAndRenew .renewSec .btn:hover { color: #0b2150 }
.nonTouch .ie9browser .getQuoteWrap .btn:hover { color: #0b2150 }
.mouse:before, .mouse:after { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto; }
.mouse:before { width: 17px; height: 33px; background-color: #fff; border-radius: 100px; -webkit-box-shadow: 0px 0px 1px #585858; -moz-box-shadow: 0px 0px 1px #585858; -ms-box-shadow: 0px 0px 1px #585858; -o-box-shadow: 0px 0px 1px #585858; box-shadow: 0px 0px 1px #585858; }
.mouse:after { background-color: #b1b1b1; width: 5px; height: 5px; border-radius: 100%; animation: trackBallSlide 5s linear infinite; }
input.placeholder { color: #aaa; }
.blueBox { background: #005596; width: 90%; margin: 0 auto; text-align: center; }
.blueBox ul li a { color: #fff; font-family: "Rubik-Light"; }
.blueBox.claimSec { padding: 22px 0; margin-top: -38px; position: absolute; bottom: -35px; left: 0; right: 0; }
.blueBox.claimSec .nearestBranch { position: relative; width: 25%; }
.blueBox.claimSec .nearestBranch a { font-size: 1.8rem; color: #fff; font-family: "Rubik-Light"; }
.blueBox.claimSec .nearestBranch a:before { content: ""; background: url(../../../content/dam/bagic/index/sprite.png) no-repeat; background-position: -67px -63px; width: 25px; height: 25px; margin-right: 10px; }
.blueBox.claimSec .nearestBranch:after { content: ""; width: 1px; height: 100%; position: absolute; right: 0; background: #4a94cb; }
.blueBox.claimSec ul { width: 60%; text-align: left; }
.scrollShowAnimSec { visibility: hidden; animation-delay: 0.2s; animation-name: none; }
.customSelect { position: relative; }
.customSelect select { opacity: 0; position: absolute; top: 0; left: 0; width: 100%; height: 100%; cursor: pointer; }
.whatsNewFixSec { background: #ff9b41; text-align: center; display: none; padding: 8px 0 10px; }
.whatsNewFixSec ul li { display: inline-block; vertical-align: middle; }
.whatsNewFixSec ul li a { color: #fff; font-size: 1.5rem; display: block; position: relative; padding: 0 15px; }
.whatsNewFixSec ul li a:before { content: ""; display: block; background: url(../../../content/dam/bagic/index/sprite.png) no-repeat; height: 30px; width: 30px; margin: 3px auto; }
.whatsNewFixSec ul li a:after { content: ""; width: 1px; height: 60%; position: absolute; top: 22%; right: 0; background: #e4842d; }
.whatsNewFixSec ul li:nth-child(1) a:before { background-position: -488px -383px; }
.whatsNewFixSec ul li:nth-child(2) a:before { background-position: -492px -418px; }
.whatsNewFixSec ul li:nth-child(3) a:before { background-position: -492px -450px; }
.whatsNewFixSec ul li:nth-child(3) a:after { display: none; }
.customSelect .selectedText:after { content: ""; background: url(../../../content/dam/bagic/index/sprite.png) no-repeat; background-position: 0 -63px; width: 13px; height: 8px; margin-left: 10px; }
.bodyOverlay { position: fixed; left: 0; width: 100%; top: 0; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 99; display: none; }
.menuOverlay { position: fixed; left: 0; width: 100%; top: 0; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 98; display: none; }
.overlay { position: relative; }
.overlay:after { content: ""; position: absolute; left: 0; width: 100%; top: 0; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 99; }
.overFlowY { overflow-y: hidden; }
.svgSec svg { width: 100%; height: auto; }
.mouse { background: #b1b1b1 linear-gradient(transparent 0%, transparent 50%, #F7F7F7 50%, #F7F7F7 100%); position: relative; width: 19px; height: 35px; background-size: 100% 100%; border-radius: 100px; background-size: 225%; display: block; margin-top: 5px; animation: colorSlide 5s linear infinite, nudgeMouse 5s ease-out infinite }
.mouse:before, .mouse:after { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto }
.mouse:before { width: 17px; height: 33px; background-color: #fff; border-radius: 100px; -webkit-box-shadow: 0px 0px 1px #585858; -moz-box-shadow: 0px 0px 1px #585858; -ms-box-shadow: 0px 0px 1px #585858; -o-box-shadow: 0px 0px 1px #585858; box-shadow: 0px 0px 1px #585858 }
.mouse:after { background-color: #b1b1b1; width: 5px; height: 5px; border-radius: 100%; animation: trackBallSlide 5s linear infinite }
 @-webkit-keyframes pulse {  0% {
 -webkit-transform: scaleX(1);
 transform: scaleX(1)
}
 50% {
 -webkit-transform: scale3d(1.05, 1.05, 1.05);
 transform: scale3d(1.05, 1.05, 1.05)
}
to { -webkit-transform: scaleX(1); transform: scaleX(1) }
}
 @keyframes pulse {  0% {
 -webkit-transform: scaleX(1);
 transform: scaleX(1)
}
 50% {
 -webkit-transform: scale3d(1.05, 1.05, 1.05);
 transform: scale3d(1.05, 1.05, 1.05)
}
to { -webkit-transform: scaleX(1); transform: scaleX(1) }
}
.pulse { -webkit-animation-name: pulse; animation-name: pulse }
 @keyframes trackBallSlide {  0% {
 opacity: 1;
 transform: scale(1) translateY(-10px)
}
 6% {
 opacity: 1;
 transform: scale(0.9) translateY(2.5px)
}
 14% {
 opacity: 0;
 transform: scale(.4) translateY(20px)
}
 15%, 19% {
 opacity: 0;
 transform: scale(.4) translateY(-10px)
}
 28%, 29.99% {
 opacity: 1;
 transform: scale(1) translateY(-10px)
}
 30% {
 opacity: 1;
 transform: scale(1) translateY(-10px)
}
 36% {
 opacity: 1;
 transform: scale(0.9) translateY(2.5px)
}
 44% {
 opacity: 0;
 transform: scale(.4) translateY(20px)
}
 45%, 49% {
 opacity: 0;
 transform: scale(.4) translateY(-10px)
}
 58%, 59.99% {
 opacity: 1;
 transform: scale(1) translateY(-10px)
}
 60% {
 opacity: 1;
 transform: scale(1) translateY(-10px)
}
 66% {
 opacity: 1;
 transform: scale(0.9) translateY(2.5px)
}
 74% {
 opacity: 0;
 transform: scale(.4) translateY(20px)
}
 75%, 79% {
 opacity: 0;
 transform: scale(.4) translateY(-10px)
}
 88%, 100% {
 opacity: 1;
 transform: scale(1) translateY(-10px)
}
}
 @-webkit-keyframes flipInX {  0% {
 -webkit-transform: perspective(400px) rotateX(90deg);
 transform: perspective(400px) rotateX(90deg);
 opacity: 0;
}
 0%, 40% {
 -webkit-animation-timing-function: ease-in;
 animation-timing-function: ease-in;
}
 40% {
 -webkit-transform: perspective(400px) rotateX(-20deg);
 transform: perspective(400px) rotateX(-20deg);
}
 60% {
 -webkit-transform: perspective(400px) rotateX(10deg);
 transform: perspective(400px) rotateX(10deg);
 opacity: 1;
}
 80% {
 -webkit-transform: perspective(400px) rotateX(-5deg);
 transform: perspective(400px) rotateX(-5deg);
}
to { -webkit-transform: perspective(400px); transform: perspective(400px); }
}
 @keyframes flipInX {  0% {
 -webkit-transform: perspective(400px) rotateX(90deg);
 transform: perspective(400px) rotateX(90deg);
 opacity: 0;
}
 0%, 40% {
 -webkit-animation-timing-function: ease-in;
 animation-timing-function: ease-in;
}
 40% {
 -webkit-transform: perspective(400px) rotateX(-20deg);
 transform: perspective(400px) rotateX(-20deg);
}
 60% {
 -webkit-transform: perspective(400px) rotateX(10deg);
 transform: perspective(400px) rotateX(10deg);
 opacity: 1;
}
 80% {
 -webkit-transform: perspective(400px) rotateX(-5deg);
 transform: perspective(400px) rotateX(-5deg);
}
to { -webkit-transform: perspective(400px); transform: perspective(400px); }
}
.flipInX { -webkit-backface-visibility: visible !important; backface-visibility: visible !important; -webkit-animation-name: flipInX; animation-name: flipInX; }
 @keyframes line {  from {
 background: #fff;
 -webkit-transform: translateY(-50%) scaleX(0);
 -moz-transform: translateY(-50%) scaleX(0);
 -ms-transform: translateY(-50%) scaleX(0);
 -o-transform: translateY(-50%) scaleX(0);
 transform: translateY(-50%) scaleX(0);
}
to { background: #fff; -webkit-transform: translateY(-50%) scaleX(1); -moz-transform: translateY(-50%) scaleX(1); -ms-transform: translateY(-50%) scaleX(1); -o-transform: translateY(-50%) scaleX(1); transform: translateY(-50%) scaleX(1); z-index: 3; }
}
 @keyframes toparrow {  from {
 background: #fff;
 -webkit-transform: scaleX(0);
 -moz-transform: scaleX(0);
 -ms-transform: scaleX(0);
 -o-transform: scaleX(0);
 transform: scaleX(0);
}
to { background: #fff; -webkit-transform: scaleX(1); -moz-transform: scaleX(1); -ms-transform: scaleX(1); -o-transform: scaleX(1); transform: scaleX(1); z-index: 3; }
}
 @keyframes bottomarrow {  from {
 background: #fff;
 -webkit-transform: rotate(-90deg) scaleX(0);
 -moz-transform: rotate(-90deg) scaleX(0);
 -ms-transform: rotate(-90deg) scaleX(0);
 -o-transform: rotate(-90deg) scaleX(0);
 transform: rotate(-90deg) scaleX(0);
}
to { background: #fff; -webkit-transform: rotate(-90deg) scaleX(1); -moz-transform: rotate(-90deg) scaleX(1); -ms-transform: rotate(-90deg) scaleX(1); -o-transform: rotate(-90deg) scaleX(1); transform: rotate(-90deg) scaleX(1); z-index: 3; }
}
 @keyframes arrows {  0% {
 left: 0px;
}
 50% {
 left: 15px;
}
 100% {
 left: 0px;
}
}
 @-webkit-keyframes fadeIn {  0% {
 opacity: 0;
}
to { opacity: 1; }
}
 @-moz-keyframes fadeIn {  0% {
 opacity: 0;
}
to { opacity: 1; }
}
 @-o-keyframes fadeIn {  0% {
 opacity: 0;
}
to { opacity: 1; }
}
 @keyframes fadeIn {  0% {
 opacity: 0;
}
to { opacity: 1; }
}
.fadeIn { -webkit-animation-name: fadeIn; animation-name: fadeIn; }
.pulse { -webkit-animation-name: pulse; animation-name: pulse }
 */ @-webkit-keyframes fadeInUp {
 0% {
 opacity: 0;
 -webkit-transform: translate3d(0, 100%, 0);
 transform: translate3d(0, 100%, 0);
}
 to {
 opacity: 1;
 -webkit-transform: none;
 transform: none;
}
}
 @-moz-keyframes fadeInUp {  0% {
 opacity: 0;
 -webkit-transform: translate3d(0, 100%, 0);
 transform: translate3d(0, 100%, 0);
}
to { opacity: 1; -webkit-transform: none; transform: none; }
}
 @-o-keyframes fadeInUp {  0% {
 opacity: 0;
 -webkit-transform: translate3d(0, 100%, 0);
 transform: translate3d(0, 100%, 0);
}
to { opacity: 1; -webkit-transform: none; transform: none; }
}
 @keyframes fadeInUp {  0% {
 opacity: 0;
 -webkit-transform: translate3d(0, 100%, 0);
 transform: translate3d(0, 100%, 0);
}
to { opacity: 1; -webkit-transform: none; transform: none; }
}
.fadeInUp { -webkit-animation-name: fadeInUp; animation-name: fadeInUp; }
 @-webkit-keyframes yAxis {  50% {
 -webkit-animation-timing-function: cubic-bezier(0.02, 0.01, 0.21, 1);
 animation-timing-function: cubic-bezier(0.02, 0.01, 0.21, 1);
 -webkit-transform: translateY(-12px);
 transform: translateY(-12px);
}
}
 @-moz-keyframes yAxis {  50% {
 -webkit-animation-timing-function: cubic-bezier(0.02, 0.01, 0.21, 1);
 animation-timing-function: cubic-bezier(0.02, 0.01, 0.21, 1);
 -webkit-transform: translateY(-12px);
 transform: translateY(-12px);
}
}
 @-o-keyframes yAxis {  50% {
 -webkit-animation-timing-function: cubic-bezier(0.02, 0.01, 0.21, 1);
 animation-timing-function: cubic-bezier(0.02, 0.01, 0.21, 1);
 -webkit-transform: translateY(-12px);
 transform: translateY(-12px);
}
}
 @keyframes yAxis {  50% {
 -webkit-animation-timing-function: cubic-bezier(0.02, 0.01, 0.21, 1);
 animation-timing-function: cubic-bezier(0.02, 0.01, 0.21, 1);
 -webkit-transform: translateY(-12px);
 transform: translateY(-12px);
}
}
 @-webkit-keyframes xAxis {  50% {
 -webkit-animation-timing-function: cubic-bezier(0.3, 0.27, 0.07, 1.64);
 animation-timing-function: cubic-bezier(0.3, 0.27, 0.07, 1.64);
 -webkit-transform: translateX(15px);
 transform: translateX(20px);
}
}
 @-moz-keyframes xAxis {  50% {
 -webkit-animation-timing-function: cubic-bezier(0.3, 0.27, 0.07, 1.64);
 animation-timing-function: cubic-bezier(0.3, 0.27, 0.07, 1.64);
 -webkit-transform: translateX(15px);
 transform: translateX(20px);
}
}
 @-o-keyframes xAxis {  50% {
 -webkit-animation-timing-function: cubic-bezier(0.3, 0.27, 0.07, 1.64);
 animation-timing-function: cubic-bezier(0.3, 0.27, 0.07, 1.64);
 -webkit-transform: translateX(15px);
 transform: translateX(20px);
}
}
 @keyframes xAxis {  50% {
 -webkit-animation-timing-function: cubic-bezier(0.3, 0.27, 0.07, 1.64);
 animation-timing-function: cubic-bezier(0.3, 0.27, 0.07, 1.64);
 -webkit-transform: translateX(15px);
 transform: translateX(20px);
}
}
 @-webkit-keyframes rotation {  from {
 -webkit-transform: rotate(0deg);
}
to { -webkit-transform: rotate(359deg); }
}
 @-moz-keyframes rotation {  from {
 -webkit-transform: rotate(0deg);
}
to { -webkit-transform: rotate(359deg); }
}
 @-o-keyframes rotation {  from {
 -webkit-transform: rotate(0deg);
}
to { -webkit-transform: rotate(359deg); }
}
 @keyframes rotation {  from {
 -webkit-transform: rotate(0deg);
}
to { -webkit-transform: rotate(359deg); }
}
 @-webkit-keyframes rotation {  from {
 -webkit-transform: rotate(0deg);
}
to { -webkit-transform: rotate(359deg); }
}
 @-moz-keyframes rotation {  from {
 -webkit-transform: rotate(0deg);
}
to { -webkit-transform: rotate(359deg); }
}
 @-o-keyframes rotation {  from {
 -webkit-transform: rotate(0deg);
}
to { -webkit-transform: rotate(359deg); }
}
 @keyframes rotation {  from {
 -webkit-transform: rotate(0deg);
}
to { -webkit-transform: rotate(359deg); }
}
 @keyframes colorSlide {  0% {
 background-position: 0% 100%;
}
 20% {
 background-position: 0% 0%;
}
 21% {
 background-color: #b1b1b1;
}
 29.99% {
 background-color: #F7F7F7;
 background-position: 0% 0%;
}
 30% {
 background-color: #b1b1b1;
 background-position: 0% 100%;
}
 50% {
 background-position: 0% 0%;
}
 51% {
 background-color: #b1b1b1;
}
 59% {
 background-color: #F7F7F7;
 background-position: 0% 0%;
}
 60% {
 background-color: #b1b1b1;
 background-position: 0% 100%;
}
 80% {
 background-position: 0% 0%;
}
 81% {
 background-color: #b1b1b1;
}
 90%, 100% {
 background-color: #F7F7F7;
}
}
 @keyframes trackBallSlide {  0% {
 opacity: 1;
 transform: scale(1) translateY(-10px);
}
 6% {
 opacity: 1;
 transform: scale(0.9) translateY(2.5px);
}
 14% {
 opacity: 0;
 transform: scale(0.4) translateY(20px);
}
 15%, 19% {
 opacity: 0;
 transform: scale(0.4) translateY(-10px);
}
 28%, 29.99% {
 opacity: 1;
 transform: scale(1) translateY(-10px);
}
 30% {
 opacity: 1;
 transform: scale(1) translateY(-10px);
}
 36% {
 opacity: 1;
 transform: scale(0.9) translateY(2.5px);
}
 44% {
 opacity: 0;
 transform: scale(0.4) translateY(20px);
}
 45%, 49% {
 opacity: 0;
 transform: scale(0.4) translateY(-10px);
}
 58%, 59.99% {
 opacity: 1;
 transform: scale(1) translateY(-10px);
}
 60% {
 opacity: 1;
 transform: scale(1) translateY(-10px);
}
 66% {
 opacity: 1;
 transform: scale(0.9) translateY(2.5px);
}
 74% {
 opacity: 0;
 transform: scale(0.4) translateY(20px);
}
 75%, 79% {
 opacity: 0;
 transform: scale(0.4) translateY(-10px);
}
 88%, 100% {
 opacity: 1;
 transform: scale(1) translateY(-10px);
}
}
 @keyframes nudgeMouse {  0% {
 transform: translateY(0);
}
 20% {
 transform: translateY(8px);
}
 30% {
 transform: translateY(0);
}
 50% {
 transform: translateY(8px);
}
 60% {
 transform: translateY(0);
}
 80% {
 transform: translateY(8px);
}
 90% {
 transform: translateY(0);
}
}
 @keyframes nudgeText {  0% {
 transform: translateY(0);
}
 20% {
 transform: translateY(2px);
}
 30% {
 transform: translateY(0);
}
 50% {
 transform: translateY(2px);
}
 60% {
 transform: translateY(0);
}
 80% {
 transform: translateY(2px);
}
 90% {
 transform: translateY(0);
}
}
 @keyframes colorText {  21% {
 color: #b1b1b1;
}
 30% {
 color: #F7F7F7;
}
 51% {
 color: #b1b1b1;
}
 60% {
 color: #F7F7F7;
}
 81% {
 color: #b1b1b1;
}
 90% {
 color: #F7F7F7;
}
}
.clear { clear: both; }
.fl { float: left; }
.fr { float: right; }
 @-webkit-keyframes flipInX {  0% {
 -webkit-transform: perspective(400px) rotateX(90deg);
 transform: perspective(400px) rotateX(90deg);
 opacity: 0;
}
 0%, 40% {
 -webkit-animation-timing-function: ease-in;
 animation-timing-function: ease-in;
}
 40% {
 -webkit-transform: perspective(400px) rotateX(-20deg);
 transform: perspective(400px) rotateX(-20deg);
}
 60% {
 -webkit-transform: perspective(400px) rotateX(10deg);
 transform: perspective(400px) rotateX(10deg);
 opacity: 1;
}
 80% {
 -webkit-transform: perspective(400px) rotateX(-5deg);
 transform: perspective(400px) rotateX(-5deg);
}
to { -webkit-transform: perspective(400px); transform: perspective(400px); }
}
 @keyframes flipInX {  0% {
 -webkit-transform: perspective(400px) rotateX(90deg);
 transform: perspective(400px) rotateX(90deg);
 opacity: 0;
}
 0%, 40% {
 -webkit-animation-timing-function: ease-in;
 animation-timing-function: ease-in;
}
 40% {
 -webkit-transform: perspective(400px) rotateX(-20deg);
 transform: perspective(400px) rotateX(-20deg);
}
 60% {
 -webkit-transform: perspective(400px) rotateX(10deg);
 transform: perspective(400px) rotateX(10deg);
 opacity: 1;
}
 80% {
 -webkit-transform: perspective(400px) rotateX(-5deg);
 transform: perspective(400px) rotateX(-5deg);
}
to { -webkit-transform: perspective(400px); transform: perspective(400px); }
}
.insPolicyTabsWrap .insPolicyTabsContentWrap,  .whyUs.detailsWhyUs,  .aboutBoxSec.prodListing,  .demystifyInsur.productlanding { padding: 50px 0; }
.bodyScrollHide{overflow:hidden;}

.loader {
    position: fixed;
    top: 0;
    left: 0%;
    /* -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); */
    height: 100%;
    width: 100%;
    z-index: 221;
    display: none;
}

.loader:before {
    content: none;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 50%;
    width: 80px;
    height: 80px;
    margin-top: -15px;
    margin-left: -15px;
    border-radius: 50%;
    border: 3px solid #fff;
    border-top-color: #0071bb;
    animation: loadspinner .6s linear infinite;
}
 #lhnHelpOutCenter, #lhnHocButton{ zoom: 0 !important; }
.searchSec{ display: none !important; }


@media screen and (max-width: 1500px) {
  .container {
    padding: 0 40px;
  }
}

@media screen and (max-width: 1200px) {
  .demystifyInsur .headingSec {
    margin-right: 65px;
  }
  .demystifyInsur .headingSec .iconSec {
    margin-right: 35px;
  }
  .demystifyInsur ul li {
    margin-right: 50px;
  }
  .demystifyInsur .btn {
    margin-left: 15px;
  }
  .container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1024px) {
  .demystifyInsur {
    padding: 55px 20px;
    text-align: left;
  }
  .demystifyInsur .headingSec {
    width: 100%;
    text-align: left;
    margin-right: 0;
    margin-bottom: 30px;

  }
  .demystifyInsur .headingSec .iconSec .square {
    width: 8px;
    height: 8px;
  }
	div#lhnHelpOutCenter, div#lhnHocButton{ 
    zoom: 0 !important; 
}
}

@media screen and (max-width: 768px) {
  .popupSec {
    max-width: 90%;
  }
  .communicationSec p {
    display: none;
  }
  .communicationSec img {
    max-width: 50px;
  }

	div#lhnHocButton.lhnslide{ zoom: 0 !important; }
}

@media screen and (max-width: 767px) {
  .demystifyInsur .headingSec .iconSec .svgSec {
    margin-left: 0;
  }
  .demystifyInsur .headingSec h3 {
    font-size: 2.5rem;
  }
  .demystifyInsur ul {
    width: 100%;
  }
  .demystifyInsur ul li {
    margin-right: 0px;
  }
  .demystifyInsur ul li:last-child {
    display: none;
  }
  .demystifyInsur .btn {
    margin-left: 0;
    margin-top: 30px;
  }
  .demystifyInsur .headingSec h3, .addOnWrap h2, .beforeBuyWrap .impPointOuter .impPointInnerL h2, .docDownAndRenew h4, .aboutBoxSec.prodListing h2, .demystifyInsur .headingSec h3 {
    font-size: 2rem;
  }
  .btn {
    font-size: 1.5rem;
    padding: 5px 18px 7px;
  }
  h3 {
    font-size: 2.5rem;
  }
  h4 {
    font-size: 2rem;
  }
  .aboutBoxSec {
    padding: 30px 0;
  }
  .popupSec {
    padding: 28px;
    height: 300px;
  }
  .popupSec .close {
    top: 0px;
    right: 8px;
  }
.popupSec.videoPopupSec {
    height: 300px;
}
.popupSec.videoPopupSec .closePop{
right: 0;
    top: -20px;}
.popupSec.videoPopupSec .closePop span{
background: white;}
}

@media screen and (max-width: 639px) {
  .demystifyInsur ul li {
    font-size: 1.6rem;
    margin-right: 55px;
  }
  .demystifyInsur ul li a {
    font-size: 1.6rem;
  }
  .demystifyInsur ul li:last-child {
    margin-right: 0;
  }
  .demystifyInsur .btn {
    margin-top: 15px;
  }
  .popupSec {
    padding: 10px;
    height: 280px;
  }
  .popupSec .close {
    top: -35px;
    color: #fff;
  }
  .humbugMenu.close {
    bottom: 20px;
  }
  .communicationSec img {
    max-width: 40px;
  }
  .communicationSec .chatWithUs {
    margin-top: 5px;
  }
}

@media screen and (max-width: 480px) {
  .demystifyInsur {
    padding: 55px 20px 30px;
  }
  .demystifyInsur ul {
    width: 100%;
  }
  .demystifyInsur ul li {
    margin-right: 0px;
    display: block;
    margin-bottom: 15px;
  }
  .demystifyInsur .btn {
    margin-top: 5px;
  }
  .container {
    padding: 0 10px;
  }
  .popupSec {
    height: 200px;
  }
  .whatsNewFixSec ul li a {
    padding: 0 14px;
  }
  .whatsNewFixSec ul li:first-child a {
    padding-left: 0;
  }
  .whatsNewFixSec ul li:last-child a {
    padding-right: 0;
  }
  .whatsNewFixSec {
    display: block;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 1;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
    transition: 0.5s all;
  }
  .whatsNewFixSec.down {
    bottom: -80px;
  }
  .whatsNewFixSec.up {
    bottom: 0px;
    -webkit-box-shadow: 0 0 22px 2px #eaeaea;
    -moz-box-shadow: 0 0 22px 2px #eaeaea;
    -ms-box-shadow: 0 0 22px 2px #eaeaea;
    -o-box-shadow: 0 0 22px 2px #eaeaea;
    box-shadow: 0 0 22px 2px #eaeaea;
  }
  .communicationSec {
    bottom: 82px;
  }
}