@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --primary: #2970b2;
  --secondary: #4c5966;
  --secondary2: #394652;
  --body-font-color: #617180;
  --heading-color: #4c5966;
  --bg-light: #eeeff3;
  --light: #eeeff3;
  --white: #fff;
  --gray : #777;
  --black: #000;
  --brdr: #d6d2c9;
}

html{
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

a{
  text-decoration: none
}
input {
  outline: none !important;
  text-decoration: none !important;
}
i {
  vertical-align: middle;
}
/* all */
::-webkit-input-placeholder {
  color: #888888 !important;
}
::-moz-placeholder {
  color: #888888 !important;
}
/* firefox 19+ */
:-ms-input-placeholder {
  color: #888888 !important;
}
/* ie */
input:-moz-placeholder {
  color: #888888 !important;
}
.error::-webkit-input-placeholder {
  color: #f75959 !important;
}
.error::-moz-placeholder {
  color: #f75959 !important;
}
/* firefox 19+ */
.error:-ms-input-placeholder {
  color: #f75959 !important;
}
/* ie */
input.error:-moz-placeholder {
  color: #f75959 !important;
}

/*tooltip Box*/
.custom_tooltip_btn {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  cursor: default;
  z-index: 99;
}

/*tooltip */
.custom_tooltip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  min-width: 200px;
  visibility: hidden;
  z-index: 1;
  opacity: .40;
  width: 100%;
  background: #3f6e98;
  color: #fff;
  position: absolute;
  top: -140%;
  left: -25%;
  border-radius: 9px;
  font-size: 16px;
  transform: translateY(9px);
  transition: all 0.3s ease-in-out;
}

.custom_tooltip p {
  margin-bottom: 0;
  font-size: 14px;
  color: #fff;
}

.custom_tooltip p b {
  color: #ed5929;
}

/* tooltip  after*/
.custom_tooltip::after {
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12.5px 0 12.5px;
  border-color: #3f6e98 transparent transparent transparent;
  position: absolute;
  left: 40%;

}

.custom_tooltip_btn:hover .custom_tooltip {
  visibility: visible;
  transform: translateY(-10px);
  opacity: 1;
  transition: .3s linear;
  animation: tooltipAni 1s ease-in-out infinite alternate;

}

@keyframes tooltipAni {
  0% {
    transform: translateY(6px);
  }

  100% {
    transform: translateY(1px);
  }
}
/*hover ToolTip*/
.tooltip_left:hover {
  transform: translateX(-4px);
}
.tooltip_top:hover {
  transform: translateY(-4px);
}
.tooltip_bottom:hover {
  transform: translateY(4px);
}
.tooltip_right:hover {
  transform: translateX(4px);
}
/*left*/
.tooltip_left .custom_tooltip {
  top: -20%;
  left: -170%;
}
.tooltip_left .custom_tooltip::after {
  top: 40%;
  left: 90%;
  transform: rotate(-90deg);
}
/*top*/
.tooltip_top .custom_tooltip {
  top: unset;
  left: -84px;
  bottom: 150%;
}
.tooltip_top .custom_tooltip::after {
  bottom: -5px;
  left: 42%;
  transform: rotate(0deg);
}
/*bottom*/
.tooltip_bottom .custom_tooltip {
  top: 115%;
  left: -84px;
}
.tooltip_bottom .custom_tooltip::after {
  top: -6px;
  left: 42%;
  transform: rotate(180deg);
}
/*right*/
.tooltip_right .custom_tooltip {
  top: -20%;
  left: 115%;
}
.tooltip_right .custom_tooltip::after {
  top: 40%;
  left: -12%;
  transform: rotate(90deg);
}

.fw-300{
  font-weight: 300!important
}
.fw-400{
  font-weight: 400!important
}
.fw-500{
  font-weight: 500!important
}
.fw-600{
  font-weight: 600!important
}
.fw-700{
  font-weight: 700!important
}
.fw-800{
  font-weight: 800!important
}
.fs-10{
  font-size: 10px!important
}
.fs-11{
  font-size: 11px!important
}
.fs-12{
  font-size: 12px!important
}
.fs-13{
  font-size: 13px!important
}
.fs-14{
  font-size: 14px!important
}
.fs-15{
  font-size: 15px!important
}
.fs-16{
  font-size: 16px!important
}
.fs-17{
  font-size: 17px!important
}
.fs-18{
  font-size: 18px!important
}
.fs-20{
  font-size: 20px!important
}
.fs-22{
  font-size: 22px!important
}
.fs-24{
  font-size: 24px!important
}
.rad-0{
  border-radius: 0px!important
}
.rad-2{
  border-radius: 2px!important
}
.rad-5{
  border-radius: 5px!important
}
.rad-8{
  border-radius: 8px!important
}
.rad-10{
  border-radius: 10px!important
}
.rad-50{
  border-radius: 50%!important
}
.text-primary{
  color: var(--primary)!important;
}
.text-secondary{
  color: var(--secondary)!important;
}
.text-gray{
  color: var(--gray)!important;
}
.text-black{
  color: var(--black)!important;
}
.text-body{
  color: var(--body-font-color)!important
}

.bg-primary{
  background: var(--primary)!important;
  color: #fff
}
.bg-secondary{
  background: var(--secondary)!important;
}
.text-light{
  color: var(--secondary)!important;
}
.bg-light{
  background: var(--bg-light)!important;
}

.lead{
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 20px;
}
.lead-lg{
  font-size: 22px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 25px;
}
b{
  font-weight: 700
}
strong{
  font-weight: 600
}


/*common*/
body{
  color: var(--body-font-color);
  line-height: 1.6;
  font-size: 18px;
  font-family: "PT Serif", serif!important;
  overflow-x: hidden;
}
h1,h2,h3,h4, h5, h6{
  font-family: "DM Serif Text", serif!important;
  /*font-family: "Outfit", sans-serif!important;*/
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--heading-color);
}

h1{
  font-size:44px;
}
h2{
  font-size:36px;
}
h3{
  font-size:32px;
}
h4{
  font-size:26px;
  /*color: var(--secondary)*/
}
h5{
  font-size:24px;
  margin-bottom: 12px;
}

h6{
  font-size:22px;
  margin-bottom: 12px;
}
.video-wrapper{
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 9px 20px #00000034
}

/* Template CSS  */
.navbar_block {
  display: flex;
  align-items: center;
  gap: 0 25px;
}
.navbar_block ul {
  display: flex;
}
.navbar_block ul li{
  list-style: none
}
.navbar_block ul li a {
  color: var(--white);
  position: relative;
  font-size: 17px;
  font-weight: 400;
  display: inline-block;
  margin-right: 40px;
  transition: all .2s ease;
  padding: 24px 0;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  text-transform: uppercase;
  margin-bottom: 1px;
}
.navbar_block ul li:last-child a {
  margin-right: 0;
}
.navbar {
  justify-content: center;
  padding: 0;
}
.navbar_block ul li a:hover,
.navbar_block ul li a.active {
  color: var(--white);
  border-bottom-color: var(--white)
}
.navWrap {
  background: var(--primary);
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  display: block;
  z-index: 99;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.1)
}
.sticky_item .navWrap {
  background: var(--primary);
  padding: 0;
  z-index: 999;
  transition: all 0.3s;
  padding: 0 20px;
  box-shadow: none
}
.sticky_item .navbar_block ul li a {
  padding: 18px 0
}

.navMobile {
  position: fixed;
  top: 0;
  left: 0;
  background: transparent;
  width: 100%;
  padding: 10px 15px;
  display: none;
  z-index: 999;
}
.navMobile a {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 0px;
  margin-right: 15px;
}
.navWrap .user_action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo .name, .profile-name{
  font-weight: 400;
  color: var(--white);
  font-size: 28px;
  font-family: "PT Serif"
}

.agent-name{
  font-family: 'PT Serif'!important;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
}
.for_mobile {
  display: none !important;
}
.agent-name img{
  /*filter: brightness(1.2);*/
}


@media screen and (max-width: 1199px) {
  .navbar_block ul li a {
    margin-right: 15px;
  }
}

@media (max-width:991px) {
  .navWrap,
  .sticky_item section.navWrap {
    position: fixed;
    left: -1000px;
    top: 0;
    background: #33333370;
    z-index: 9999 ;
    transition: all 0.3s;
    height: 100%;
    width: 100%;
    transition: all 0.3s;
    padding: 0;
  }
  .navWrap_inner {
    width: 80%;
    height: 100%;
    background: var(--primary);
    padding: 20px 0;
  }
  .navWrap.showNav, .sticky_item section.navWrap.showNav{
    left: 0;
    transition: all 0.3s;
  }
  .navWrap.showNav>.container {
    max-width: 100%;
  }
  .sticky_item .navMobile{
    background: var(--white);
    box-shadow: 0px 6px 6px 0px #49494926;
  }
  .navMobile i.fa.fa-bars {
    transition: all 0.3s;
  }
  .navMobile i.fa.fa-bars.fa-long-arrow-right {
    transition: all 0.3s;
    transform: rotate(180deg);
  }
  .navbar_block ul {
    display: block;
    width: 100%;
    margin-top: 0;
  }
  .navbar_block ul li a {
    display: block !important;
    color: var(--white);
    position: relative;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    display: block;
    text-align: left;
    margin-right: 0;
  }
  .sticky_item .navbar_block ul li a{
    padding: 10px 20px;
  }
  .navbar_block ul li {
    padding: 0;
  }
  .navbar li a:after {
    display: none;
  }
  .navWrap .col-lg-12 {
    padding: 0;
  }
  .navMobile {
    display: flex !important;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    box-shadow: 0px 6px 6px 0px #49494926;
  }
  .sticky_item .navbar_block ul li a:hover,
  .sticky_item .navbar_block ul li a:active {
    color: #fff;
  }
  .for_mobile {
    display: block !important;
  }
  .for_desktop {
    display: none !important;
  }
  .close_menu {
    text-align: right;
  }
  .menu_toggle_btn_two {
    display: inline-block;
    color: #fff;
    padding-right: 20px;
    padding-bottom: 20px;
  }
  .menu_toggle_btn_two i {
    font-size: 24px;
  }
  .navWrap.showNav::after {
    background: #ddd;
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .navWrap.showNav::before {
    background: #ddd;
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .navWrap .user_action {
    align-items: flex-start;
    flex-direction: column;
  }
  .sticky_item .navbar_block ul li a{
    color: #fff
  }
  .navbar_block{
    width: 100%
  }
  .navbar-brand{
    padding: 20px;
    white-space: normal;
  }
  .logo .name, .sticky_item .logo .name {
    color: var(--white);
  }
  .navWrap .user_action{
    background: transparent;
    box-shadow: none
  }
}
/*nav end */

.social_media a {
  display: inline-block;
  color: var(--primary);
  opacity: 0.6;
  transition: ease-in-out 0.2s;
}
.social_media a+a{
  margin-left: 3px;
}
.social_media a:hover {
  opacity: 1
}
.social_media a i {
  font-size: 24px;
}
.share_img {
  width: 21px;
}
.social-share{
  fill: #000;
  opacity: 0.5;
  transition: ease-in-out 0.2s
}
.share_btn:hover .social-share {
  opacity: .7;
}

.form-control,.form-select{
  padding: 5px 14px;
  border-color: var(--brdr);
  min-height: 42px!important;
  border-radius: 5px!important;
  background: #fff!important
}
.form-control:focus,.form-select:focus{
  box-shadow: none;
  border-color: var(--primary);
  background: #fff!important
}

.contact_form .form-group .form-control{
  min-height: 44px !important;
  border-radius: 5px !important;
  padding-left: 15px;
  font-size: 15px!important
}
.contact_form .form-group{
  margin-bottom: 14px!important;
}
.contact_form .form-group textarea.form-control{
  border-radius: 5px!important
}
.btn{
  font-size: 18px;
  font-weight: 500;
  padding: 12px 18px;
  border-radius: 5px ;
  line-height: 1;
  transition: ease-in-out 0.2s;
  position: relative;
  text-transform: capitalize;
  color: var(--white);
  background: var(--primary);
}

.btn:hover{
  color: var(--white);
  background: var(--secondary);
}
.contactForm .btnSend {
  font-size: 16px;
  font-weight: 400;
  padding: 11px 20px !important;
  border-radius: 5px ;
  letter-spacing: 0;
  line-height: 1;
  transition: ease-in-out 0.2s;
  background: var(--primary) !important;
  border: 0!important;
  color: var(--white) !important;
  position: relative;
  z-index: 1
}
.contactForm .btnSend:hover, .contactForm .btnSend:focus{
  color: var(--white)!important;
  background: var(--black) !important;
}
.min-height-46{
  min-height: 46px;
}
a.email_tooltip{
  margin: 7px 5px 0 0
}
.btn.btn-header{
  cursor: default;
  background: var(--white);
  color: var(--primary);
}
.btn.btn-header:hover{
  cursor: default;
  background: var(--black);
  color: var(--white)
}

.btn.btn-header i {
  font-size: 18px;
}
.btn-primary{
  background: var(--primary);
  border-color:var(--primary);
  color: var(--white);
}
.btn-primary:hover,.btn-primary:active,.btn-primary:focus,.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle{
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}
.btn-light{
  background: var(--white);
  border-color:var(--white);
  color: var(--primary);
}
.btn-light:hover,.btn-light:active,.btn-light:focus,.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show>.btn-light.dropdown-toggle{
  background: var(--light);
  border-color: var(--light);
  color: var(--primary);
}
.btn-white{
  background: #fff;
  border-color: #fff;
  color: var(--primary)
}
.btn-white:hover,.tn-white:active,.btn-white:focus,.btn-white:not(:disabled):not(.disabled).active, .btn-white:not(:disabled):not(.disabled):active, .show>.btn-white.dropdown-toggleb{
  background: var(--black);
  border-color: var(--black);
  color: #fff
}

.hero-section{
  background-color: var(--bg-light);
  position: relative;
  padding-top: 115px;
}

.subheading{
  color: #4c5966bd;
  background: #eeeff3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 10px 13px;
  line-height: 1;
  border-radius: 4px;
  letter-spacing: 0;
  font-weight: 400;
}

.image-shadow{
  margin-right: 40px;
  border-radius: 5px;
}
.image-shadow img{
  border-radius: 5px;
  box-shadow: 30px 30px 0 var(--primary);
  transition: ease-in-out 0.2s;
  transform: scale(1)
}

.imp_dates{
  background: var(--primary);
  color: #fff;
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
  border-radius: 5px 5px 20px;
  box-shadow: 10px 10px 0 var(--secondary);
  position: relative
}
.imp_dates:before{
  content:'';
  top: 10px;
  left: 10px;
  border-radius: 10px 0 0;
  width: 100%;
  height: 100%;
  border-top: 2px solid var(--secondary);
  border-left: 2px solid var(--secondary);
  position: absolute
}
.imp_dates h4{
  color: var(--secondary);
}

.how-works-box {
  text-align: center;
  color: #fff;
  position: relative;
}
.how-works-box p{
  max-width: 280px;
  margin: 0 auto;
}
.how-works-box .icons{
  width: 70px;
  height: 70px;
  margin:  0 auto;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

/*img{
  transition: ease-in-out 0.2s;
  transform: scale(1)
}
img:hover{
  transform: scale(1.05)
}*/
.image-shadow.shadow-light img{
  box-shadow: 30px 30px 0 var(--light);
}

.image-shadow:hover img{
  box-shadow: 30px 30px 30px var(--primary);
}
.image-shadow.shadow-light:hover img{
  box-shadow: 30px 30px 30px var(--light);
}
.quote-form{
  border: 0;
  transition: ease-in-out 0.2s;
  border-radius: 5px;
  padding: 25px 20px 10px;
  background: #fff;
  box-shadow: 0px 9px 10px #00000014
}
.quote-form:hover{
  box-shadow: 0px 9px 20px #0000004a
}

.flex-center-icon{
  display: flex;
  align-items: center;
  gap: 8px;
}
.flex-center-icon2 {
  font-size: 14px;
}
.flex-center-icon2 img{
  display: inline-block;
  margin-right: 5px;
}


.quote-form .container{
  padding: 0 5px;
}
.iaf_ContactUsForm_managedByRow a:hover, .iaf_ContactUsForm_privacyRow a:hover{
  color: var(--primary) !important;
}

.eye-opening{
  background-size: cover;
  background-position: right center;
  background-attachment: fixed;
  position: relative
}
blockquote{
  font-size: 24px;
  padding: 30px;
  background: var(--primary) url(../images/quote2.svg) no-repeat;
  background-position: bottom right;
  background-size: 40px;
  border-radius: 5px;
  color: #fff;
  border-left: 10px solid var(--secondary);
  margin: 0;
  box-shadow: 30px 30px 0 #fff;
  position: relative;
  transition: ease-in-out 0.2s
}
blockquote:hover{
  box-shadow: 30px 30px 30px #efb583;
}
blockquote .quote{
  position: absolute;
  top: -30px;
  left: -34px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.video-wrapper {
  border: 1px solid var(--secondary);
  background-image: url(../images/bg-video.jpg);
  background-size: cover;
}
ul.list1{
}
ul.list1 li{
  display: block;
  position: relative;
  font-size: 20px;
  padding-left: 30px;
}
ul.list1.fs-18 li{
  font-size: 18px;
}
ul.list1 li+li{
  margin-top: 12px;
}
ul.list1 li:before{
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url(../images/bullets/arrow1.svg);
  background-repeat: no-repeat;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  background-size: 100%;
  background-color: transparent;
  border-radius: 50%;
  background-position: center;
}

ul.list2{
}
ul.list2 li{
  display: block;
  position: relative;
  font-size: 17px;
  padding-left: 0;
}
ul.list2 li+li{
  margin-top: 8px;
}
ul.list2 li strong{
  color: var(--secondary)
}

/*profile*/
.bg-profile{
  border-radius: 5px;
  height: 100%;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 1px;
  transition: ease-in-out 0.2s;
}
.agent_img:hover{
  box-shadow: 0px 9px 20px #0000004a
}
.agent_img{
  display: block;
  max-width: 400px;
  border-radius: 5px;
  transition: ease-in-out 0.2s;
  border: 1px solid transparent
}

.agent_img img{
  border-radius: 5px;
}

/*guidance*/
.guidance-box{
  padding: 20px;
  background: rgba(255,255,255,0.01);
  transition: ease-in-out 0.2s;
  box-shadow: 0px 9px 10px #00000014;
  border-radius: 6px;
  height: 100%;
}
.guidance-box:hover{
  padding: 20px;
  background: rgba(255,255,255,0.5);
  transition: ease-in-out 0.2s;
  box-shadow: 0px 9px 20px #0000004a;
}

.guidance-section h4{
  color: var(--heading-color)
}
.guidance-box svg{
  transition: ease-in-out 0.2s;
  transform: scale(1)
}
.guidance-box:hover svg{
  transform: scale(1.15)
}
.guidance-box p{
  margin: 0
}

.icon-guidance-box{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /*background: var(--secondary)*/
}

/*faq*/
.faq-section{
}
/*contact*/
.contact-section{
  /*background: var(--primary);*/
}
.btns-lookup .btn{
  padding: 0 10px;
  border-radius: 10px;
  font-weight: normal;
  text-transform: none;
  font-size: 11px;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  gap: 4px;
  background: transparent;
  transition: ease-in-out 0.1s;
  border: 1px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.5);
}
.btns-lookup .btn:hover{
  border: 1px solid rgba(255,255,255,0.7);
  color: rgba(255,255,255,0.7)
}
.btns-lookup .btn img{
  opacity: 0.5;
  transition: ease-in-out 0.1s;
}
.btns-lookup .btn:hover img{
  opacity: 0.7;
}
/*years of experience*/

.yrs-of-exp{
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  margin: 0;
  padding: 3px 15px 3px 45px;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  background: var(--bg-light);
  color: #999;
  text-transform: none!important;
  height: 30px;
}

.yrs-of-exp small{
  font-size: 16px;
  font-weight: 400;
  background: #7fa9d1;
  color: #fff;
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 40px;
  height: 40px;
}

.link-color{
  color: var(--body-font-color)
}
.link-color:hover{
  color: var(--body-font-color)
}
.fs-18{
  font-size: 18px!important;
}

/* dba logo name address */
.dba-logo-addr-phn-email{
  display: flex;
  align-items: center;
  gap: 20px;
}
.dba-logo-sqr, .dba-logo-sqr img{
  max-height: 80px;
  width: auto;
}
.dba-logo-rect, .dba-logo-rect img{
  max-width: 200px;
  height: auto;
}
p.dba-name{
  color: var(--font)!important;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
a.dba-addr, p.dba-phone{
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.7;
  margin: 0;
  color: var(--body-font-color);
  font-size: 14px;
}

p.dba-phone{
  gap: 6px 15px;
  flex-wrap: wrap;
}
a.dba-addr i, p.dba-phone i{
  width: 20px
}
a.dba-addr:hover{
  color: var(--primary)
}
/*lookup*/
.btns-lookup .btn:focus{
  box-shadow: none
}
.btns-lookup .btn{
  padding: 7px 10px;
  line-height: 1;
  border-radius: 5px;
  font-weight: normal;
  text-transform: none;
  font-size: 12px;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(0,0,0,0.2);
  color: rgba(0,0,0,0.6);
  transition: ease-in-out 0.1s;
  min-height: 24px;
}
.btns-lookup .btn:hover{
  border: 1px solid rgba(0,0,0,0.4);
  color: rgba(0,0,0,0.8)
}
/*lookup light*/
.btns-lookup.light .btn{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.4);
}
.btns-lookup.light .btn:hover{
  border: 1px solid rgba(255,255,255,0.6);
  color: rgba(255,255,255,0.6)
}
.verifiedSeal_icon img{
  max-width: 20px
}
.text-disclaimer{
  font-size: 13px;
  opacity: 0.5;
  color: #fff
}
.item-copyright-wrap{
  color: #898d91;
  font-size: 13px;
}
.item-copyright-wrap a{
  transition: ease-in-out 0.15s;
  color: #898d91;
}
.item-copyright-wrap a:hover{
  color: #aaa;
}
.text-white2{
  color: #ccc
}
.footer-icon{
  fill: var(--primary);
  opacity: 0.7
}



.sec_compensation{
}
.sec_compensation p strong{
  display: block;
  width: 100%;
  padding-bottom: 4px;
}


ul.bullet{
  padding-left: 0
}
ul.bullet li{
  list-style: none;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}
ul.bullet li:before{
  content: '\f35a';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900
}
ul.bullet li+li{
  margin-top: 5px;
}
.bullet.icon2 li:before{
  content: '\f138';
}
.box1{
  border-radius: 5px;
  background: #fff;
  box-shadow: 1px 3px 15px 5px rgb(0 0 0 / 7%);
  height: 100%
}
.box1 h4{
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  margin: 0;
  border-radius: 5px 5px 0 0;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.box1 .box-content{
  padding: 20px;
  border-radius: 0 0 5px 5px
}
.box1 .box-content ul li strong{
  color: #000
}

.box11{
  padding: 20px;
  background: #fff;
  transition: ease-in-out 0.2s;
  box-shadow: 0px 9px 10px #00000014;
  border-radius: 6px;
  height: 100%;
}
.box11:hover{
  padding: 20px;
  background: #fff;
  transition: ease-in-out 0.2s;
  box-shadow: 0px 9px 20px #0000004a
}

.hero-section{
  background: var(--light);
  background: linear-gradient(180deg, var(--primary) 50%, var(--white) 50%);
}
.gradiant1{
  background: var(--primary);
  background: linear-gradient(90deg, var(--primary) 50%, var(--light) 50%);
}
.gradiant2{
  background: var(--primary);
  background: linear-gradient(180deg, var(--secondary) 70%, var(--white) 70%)
}

.gradiant img{
  width: 100%;
  height: 100%;
  object-fit: cover
}
.gradiant ul.bullet li+li{
  margin-top: 3px;
}
.gradiant p{
  line-height: 1.4
}
.gradiant ul.bullet li:before{
  color: #fff;
}
.gradiant h3{
  margin-bottom: 10px;
}
.gradiant p{
  font-size: 14px;
}

table tr td{
  line-height: 1.3
}

.table-rad-wrap1{
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 1px 3px 15px 5px rgb(0 0 0 / 7%)
}
.table.table-rad{
  border-radius: 7px
}
.table1 th{
  padding: 10px 12px!important;
  font-weight: 500;
  background: var(--primary)!important;
  color: #fff!important
}
.table.table1{
  background: #fff!important;
}
.table1 td{
  padding: 10px 12px!important;
  color: var(--body-font-color)!important
}
.table1.table-hover>tbody>tr:hover>td{
  background-color: var(--primary)!important;
  color: #fff!important
}

.table-rad-wrap2{
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.35);
  border-bottom: 0
}
.table2 th{
  padding: 10px 12px!important;
  font-weight: 500;
  background: #18655e!important;
  color: #fff!important;
  text-transform: uppercase
}
.table.table2{
  background: transparent!important;
}
.table2 td{
  padding: 6px 12px!important;
  color: #ddd!important;
  background: transparent!important;
  font-size: 14px;
}
.table2>tbody>tr:hover>td{
  background-color: rgba(0,0,0,0.1)!important;
  color: #fff!important
}
.table2,.table2 td, .table2 th{
  border-color: rgba(255,255,255,0.35)
}
.table2 tr td:first-child,.table2 tr th:first-child{
  border-right: 1px solid rgba(255,255,255,0.35)
}

.imgleft,.imgright{
  border-radius: 5px
}
.guidance_image{
  border-radius: 5px;
  overflow: hidden
}

.fivesec img{
  border-radius: 5px;
  box-shadow: 0 10px 25px 0 rgb(218 225 235);
  border: 2px solid #fff;
}

.fivesec h3{
  display: inline-block;
  background: var(--primary);
  color: #fff;
  transition: ease-in-out 0.2s;
  padding: 5px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 28px;
}
.fivesec h3:hover{
  background: var(--secondary);
}

.fivesec h6{
  margin-bottom: 10px;
  text-transform: uppercase;

  font-size: 15px;
  font-weight: bold;
  transition: ease-in-out 0.2s;
  position: relative;
  padding-bottom: 10px
}
.fivesec h6:after{
  position: absolute;
  content: '';
  height: 4px;
  width: 30px;
  border-radius: 5px;
  background: var(--primary);
  bottom: 0;
  left: 0;
  z-index: 1
}

.fivesec ul.bullet li+li{
  margin: 0
}

.image-wrapper{
  border-radius: 5px;
  box-shadow: 0px 9px 10px #00000014;
  transition: ease-in-out 0.2s;
  border: 1px solid transparent;
}
.image-wrapper:hover{
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0px 9px 20px #0000004a
}

.image-wrapper img{
  border-radius: 5px
} 

.quote-text{
  margin: 0;
  color: #fff;
  background: var(--primary);
  border-radius: 5px;
  position: relative;
  transition: ease-in-out 0.2s
}
.quote-text:hover{
  box-shadow: 0 8px 20px -5px #00000030;
  transform: translateY(-5px);
}
.quote-text:before{
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  content: '';
  background: url(../images/quote1.png);
  background-size: 100%;
  width: 32px;
  height: 24px;
}
.quote-text:after{
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  content: '';
  background: url(../images/quote2.png);
  background-size: 100%;
  width: 32px;
  height: 24px;
}

#optionalMsgBtn:hover{
  color: var(--secondary)!important
}

.box-keystat{
  padding: 25px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 9px 15px #cccccc73;
  transition: ease-in-out 0.2s;
  height: 100%;
  display: flex;
  gap: 20px;
}
.box-keystat .img{
  width: 100px;
  flex: 0 0 100px;
  opacity: 0.7
}
.box-keystat .cont{
  flex: 1;
}
.box-keystat:hover{
  box-shadow: 0 9px 15px #ccc;
}
.box-keystat h5{
  color: var(--primary);
}

.custom_radius{
  border-radius: 5px;
  overflow: hidden
}
.custom_radius img{
  width: 100%
}

.alert_text{
  color: #ddd!important;
  font-size: 14px;
  margin: 0;
}
.lead-sm{
  font-size: 17px;
}


/*responsive*/
@media screen and (min-width: 767px){

}
@media screen and (min-width: 992px){
  /*  .hero-section{
      background-size: 50%;
      background-position: bottom right;
      background-repeat: no-repeat;
    }*/
  .sec_compensation .col-lg+.col-lg{
    border-left: 2px solid var(--brdr)
  }
  .text-lg-white{
    color: #fff!important
  }
}
@media screen and (min-width: 1300px){
  .container-xl{
    max-width: 1250px
  }
  .hero-content{
    /*max-width: 600px*/
  }
}
@media screen and (min-width: 1400px){
  .container-xl{
    max-width: 1320px
  }
}

@media screen and (max-width: 1400px){
  .lead-sm, ul.list1.fs-18 li{
    font-size: 16px;
  }
}
@media screen and (max-width: 991px){
  .container{
    width: 100%!important;
    max-width: 100%!important
  }
}
@media screen and (max-width: 860px){
  h1{
    font-size: 40px
  }
  h2{
    font-size: 30px
  }
  h3{
    font-size: 27px
  }
  h4{
    font-size: 24px
  }
}
@media screen and (max-width: 767px){
  .agent_img{
    max-width: 250px;
  }
  .agent_details p{
    line-height: 1.2
  }

}

@media screen and (max-width: 575px){
  body, ul.list1 li{
    font-size: 16px;
  }
  h1{
    font-size: 26px
  }
  h2{
    font-size: 26px
  }
  h3{
    font-size: 24px
  }
  h4{
    font-size: 22px
  }
  h4{
    font-size: 20px
  }
  blockquote .quote{
    top: -30px;
    left: -20px;
    width: 50px;
    height: 50px;
  }
  blockquote .quote img{
    width: 32px
  }
  blockquote, .bg-profile{
    box-shadow: none;
  }
  blockquote{
    font-size: 20px
  }
  .agent_img img{
    max-width: 100%
  }
  .image-wrap, .text-wrap{
    padding: 20px
  }
  .agent_img{
    margin-top: 15px;
  }
  .lead-lg{
    font-size: 18px;
  }

  .container-xl{
    padding: 0 20px
  }
  .image-shadow img{
    box-shadow: 20px 20px 0 var(--primary)
  }
  .image-shadow.shadow-light img{
    box-shadow: 20px 20px 0 var(--light)
  }
  .image-shadow{
    margin-right: 20px
  }
  .dba-logo-addr-phn-email{
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    align-items: flex-start
  }
  .dba-addr-phn-email{
    /*text-align: center*/
  }
  .box-keystat{
    padding: 20px 20px 25px;
  }
  .box-keystat{
    flex-direction: column;
  }

  p.dba-name{
    font-size: 17px;
    margin-bottom: 5px;
  }
  a.dba-addr, p.dba-phone{
    line-height: 1.4;
    margin-bottom: 5px;
    /*justify-content: center*/
  }
  .quote-form h4{
    font-size: 17px;
  }
  .subheading{
    font-size: 13px
  }
  .lead{
    font-size: 16px;
  }
  .quote-text:before,.quote-text:after{
    font-size: 24px;
  }
  .hero-section{
    padding: 100px 0 0;
  }
  .hero_title small{
    font-size: 16px;
  }

  /*.eye-opening .text-wrap{background: #fff}*/

  .sec_compensation .col-lg{
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .sec_compensation .col-lg:nth-last-of-type(even){
    background: var(--bg-light);
  }
  .sec_compensation .col-lg.mb-4{
    margin: 0!important
  }
  .sec_compensation .col-lg p{
    margin: 0
  }
  .image-shade-in-mobile{
    background: var(--bg-light);
    padding: 20px;
  }
  .contact-section h5{
    font-size: 20px;
  }
}

@media screen and (max-width: 430px){
  h2.hero_title{
    font-size: 24px
  }
  .sec_why_medicare h2{
    font-size: 24px
  }
  .imp_dates{
    padding: 20px;
  }
  .imp_dates h6{
    font-size: 18px;
  }

  .subheading{
    padding: 10px 12px;
    font-size: 11px;
  }
  .item-copyright-wrap{
    font-size: 12px;
  }
}
@media screen and (max-width: 375px){
  h2.hero_title{
    font-size: 20px
  }
  h5{
    font-size: 20px;
  }
  .contact-section h5{
    font-size: 18px;
  }
  .btn{
    font-size: 18px;
  }
  .quote-form{
    padding: 25px 10px 10px
  }
}

/* Recomand Modal  */
#modal-share .modal-header {
  display: block;
  background: #fff;
  border-radius: 3px;
  border: none;
}

#modal-share .modal-dialog {
  max-width: 600px;
}

@media (min-width: 576px) {
  #modal-share .modal-dialog {
    margin: 4.75rem auto;
  }
}

#modal-share .modal-content {
  box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  border: none;
}

#modal-share .modal-header .close {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #000 !important;
  font-weight: 500;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  font-size: 24px;
}

#modal-share .modal-title {
  padding-right: 20px;
  padding-left: 20px;
  font-weight: normal;
  font-size: 24px;
  margin-bottom: 6px;
  color: #333;
}

#modal-share p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
}

#modal-share li {
  margin-bottom: 15px;
  color: #fff;
}

#modal-share li a {
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  max-width: 300px;
}

#modal-share li a.btn-facebook {
  background: #3b5998;
}

#modal-share li a.btn-twitter {
  background: #00acee;
}

#modal-share li a.btn-linkedin {
  background: #0e76a8;
}


/* Custom Modal design  */
.customModal {
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(0 0 0 / 60%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 999999;
}
.customModal_dialog {
  max-width: 800px;
  width: 100%;
  border-radius: 0px;
  position: relative;
}
.customModal_content {
  background: #ffffff;
  border-radius: .3rem;
  outline: 0;
  border: 1px solid var(--primary) !important;
  margin-top: -1px;
}
.modal_header {
  background: var(--primary) !important;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--primary) !important;
}
.close_modal {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
  background: none;
  border: none;
  float: right;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: #fff !important;
  text-shadow: 0 1px 0 #fff;
  opacity: 1;
  cursor: pointer;
}

.customModal_body {
  padding: 1rem;
}
.customModal {
  opacity: 0;
  visibility: hidden;
}
.customModal.customModal_open {
  opacity: 1;
  visibility: visible;
}
.customModal .customModal_dialog {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.customModal.customModal_open .customModal_dialog {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.customModal,
.customModal.customModal_open .customModal_dialog,
.customModal .customModal_dialog {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 575px) {
  .customModal{
    padding: 20px
  }
  .customModal_body {
    padding: 16px 5px!important;
  }
  section{
    overflow-x: hidden!important
  }
}

/* Custom Modal design End */
/*
.pulse5 {
  --color: #ef6eae;
  --hover: #ef8f6e;
}

.pulse5:hover,
.pulse5:focus {
  -webkit-animation: pulse5 1s;
          animation: pulse5 1s;
  box-shadow: 0 0 0 2em transparent;
}

@-webkit-keyframes pulse5 {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}

@keyframes pulse5 {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}
*/


/* consultation button */

.container_schedule_demo {
  position: relative;
}
.consultation_btn {
  position: absolute;
  right: 0;
  border-radius: 6px;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  padding: 5px 10px;
  transition: all .3s ease;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.consultation_btn:hover {
  color: #fff;
  background: var(--primary);
}


@media screen and (max-width: 991px) {
  .consultation_btn {
    position: unset;
    margin-bottom: 20px;
  }
}
