@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary: #333333;
  --secondary: #33CEA5;
}

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

/* .container-fluid {
       max-width: 1500px;
   } */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

ul {
  list-style: none;
}

a {
  font-family: "Poppins", sans-serif;
  text-decoration: none !important;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

ul.navbar li a {
  font-family: "Montserrat", sans-serif;
  color: #8E8E8E;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin-right: 30px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

ul.navbar li:last-child a {
  margin-right: 0;
}

.navbar {
  justify-content: center;
  padding: 0;
}

.navbar li a:hover,
.navbar li a.active {
  color: var(--primary);
}

.navWrap {
  background: #fff;
  padding: 10px 0;
}

.sticky section.navWrap {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sticky_item section.navWrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s;
  box-shadow: 0px 20px 32px 0px rgba(103, 122.00000000000003, 141, 0.17);
}

.sticky_item section.navWrap ul.navbar li a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.navMobile {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  padding: 15px 15px;
  display: none;
  z-index: 99999;
}

.navMobile .menu_toggle_btn {
  color: #8E8E8E;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 0px;
  margin-right: 15px;
}

.navWrap .user_action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 28px;
  font-weight: 600;
}

.logo .fname {
  color: var(--primary);
}

.logo .lname {
  color: var(--secondary);
}

.btnTwo_style {
  background: var(--secondary);
  display: inline-block;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  border: 2px solid var(--secondary);
  border-radius: 30px 30px 30px 30px;
  padding: 18px 37px 18px 37px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btnTwo_style:hover {
  background: #fff;
  color: var(--secondary);
}

.for_mobile {
  display: none !important;
}

.btnTwo_style.call_btn {
  cursor: default;
  white-space: nowrap;
}

.btnTwo_style.call_btn .iaf_topNav_phnIcon{
  display: inline-block;
}

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

  .call_btn {
    padding: 15px 20px;
    font-size: 14px;
  }
}

@media (max-width:991px) {

  .navWrap,
  .sticky_item section.navWrap {
    position: fixed;
    left: -1000px;
    top: 0;
    background: #33333370;
    z-index: 99999;
    transition: all 0.3s;
    height: 100%;
    width: 100%;
    transition: all 0.3s;
    padding: 0;
  }

  .navWrap_inner {
    width: 80%;
    height: 100%;
    background: #fff;
    padding: 20px 0;
  }

  section.navWrap.showNav {
    left: 0;
    transition: all 0.3s;
  }

  section.navWrap.showNav>.container {
    max-width: 100%;
  }

  .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);
  }

  ul.navbar {
    display: block;
    width: 100%;
    margin-top: 0;
  }

  ul.navbar li a {
    display: block !important;
    color: #8E8E8E;
    position: relative;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-align: left;
    margin-right: 0;
  }

  .sticky_item section.navWrap ul.navbar li a {
    transition: all 0.3s;
  }

  ul.navbar li {
    padding: 0;
  }

  .navbar li a:hover,
  .navbar li a.active {
    color: var(--primary);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  .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;
  }

  .for_mobile {
    display: block !important;
  }

  .close_menu {
    text-align: right;
  }

  .menu_toggle_btn_two {
    display: inline-block;
    color: var(--primary);
    padding-right: 20px;
    padding-bottom: 20px;
  }

  .menu_toggle_btn_two i {
    font-size: 24px;
  }

  .for_desktop {
    display: none !important;
  }

  .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;
  }

  .logo {
    margin-bottom: 20px;
  }

  .logo .fname {
    color: var(--primary);
  }

  .iaf_toggle_wrrow {
    color: var(--primary);
  }
}

/* Navbar CSS End  */
/* Hero section Start  */
.hero_section {
  padding-top: 250px;
  padding-bottom: 250px;
  background-image: url('/img/templates/123/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero_title {
  color: #292929;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 25px;
}

.user_headline {
  color: #456C53;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6em;
  margin-bottom: 25px;
  max-width: 500px;
}

.btnOne_style {
  display: inline-block;
  padding: 21px 37px 21px 37px;
  margin: 0px 0px 0px 0px;
  background-color: #FFFFFF;
  color: #333333;
  border-radius: 30px 30px 30px 30px;
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: 18px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btnOne_style:hover {
  background-color: #33CEA5;
  color: #FFFFFF;
}

@media screen and (max-width: 1199px) {
  .hero_title {
    font-size: 42px;
  }
}

@media screen and (max-width: 991px) {
  .hero_section {
    background-position: left center;
  }
}

/* Hero section end  */
/* Profile Summary Start */
.profile_summary {
  padding: 50px 0;
  position: relative;
}

.page_title {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  font-size: 48px;
  font-weight: 600;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  color: var(--primary);
  margin-bottom: 20px;
}

.page_title .title_icon {
  display: inline-block;
  width: 50px;
}

.title_icon .svg .st0 {
  fill: var(--primary);
}

.title_icon .svg .st1 {
  fill: var(--secondary);
}

.section_desc {
  max-width: 1000px;
  margin: 15px auto;
  text-align: center;
  color: #747474;
  font-size: 18px;
  font-weight: 300;
}

.feature_row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 70px;
}

.feature_item {
  flex: 0 50%;
  display: flex;
}

.feature_item.three,
.feature_item.four {
  flex-direction: row-reverse;
}

.feature_img_box {
  flex: 0 50%;
  display: flex;
  align-items: center;
}

.feature_contents {
  flex: 0 50%;
}

.feature_contents_inner {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.feature_title {
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 15px;
}

.featureTypes a {
  color: #747474;
  font-size: 18px;
  font-weight: 300;
}

.featureTypes a:hover {
  color: var(--secondary);
}

.see_more {
  margin-top: 20px;
}

.see_more a {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #747474;
}

.see_more a:hover {
  color: var(--secondary);
}

.feature_img_box_inner {
  position: relative;
}

.feature_img_border::before,
.feature_img_border::after {
  position: absolute;
  content: '';
  opacity: 0;
  z-index: 2;
  -webkit-transition: opacity .35s, -webkit-transform .35s;
  transition: opacity .35s, -webkit-transform .35s;
  -o-transition: opacity .35s, transform .35s;
  transition: opacity .35s, transform .35s;
  transition: opacity .35s, transform .35s, -webkit-transform .35s
}

.feature_img_border::before {
  top: 40px;
  right: 20px;
  bottom: 40px;
  left: 20px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

.feature_img_border::after {
  top: 20px;
  right: 40px;
  bottom: 20px;
  left: 40px;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.feature_img_box_inner:hover .feature_img_border::before,
.feature_img_box_inner:hover .feature_img_border::after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1)
}

.feature_img_overlay {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  background: #000;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: opacity .35s;
  -o-transition: opacity .35s;
  transition: opacity .35s;
}

.feature_img_box_inner:hover .feature_img_overlay {
  background-color: #FFFFFF;
  opacity: 0.2;
}

@media screen and (max-width: 1199px) {
  .feature_item {
    flex: 0 100%;
  }

  .feature_item.two {
    flex-direction: row-reverse;
  }

  .feature_item.three {
    flex-direction: row;
  }

  .feature_item.four {
    flex-direction: row-reverse;
  }

  .feature_img_box_inner {
    width: 100%;
  }

  .feature_img_box_inner img {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .feature_contents_inner {
    padding: 0 20px;
  }
}

@media screen and (max-width: 574px) {
  .feature_item {
    flex-direction: column !important;
    gap: 20px;
  }

  .feature_img_box_inner img {
    height: 350px;
    object-fit: cover;
    object-position: center;
  }

  .feature_row {
    gap: 30px;
  }
}

/* Profile Summary End */
/* About Start*/
.about_section {
  padding: 50px 0;
}

.userShortBio h2 {
  font-size: 36px;
  color: var(--primary);
  font-weight: 600;
}

.designation,
.userShortBio h4 {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 5px;
}

.iaf_name {
  font-size: 24px;
  font-weight: 500;
}

.social_media {
  justify-content: flex-start;
  gap: 4px;
  margin-top: 15px;
}

.social_media li a svg {
  width: 24px;
  fill: #8E8E8E;
  transition: all 0.3s;
}

.social_media li a svg .st2 {
  fill: #8E8E8E;
}

.social_media li a:hover svg,
.social_media li a:hover svg .st2 {
  fill: var(--secondary);
  transition: all 0.3s;
}

.about_section .page_subtitle {
  display: block;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--secondary);
  font-size: 24px;
}

.about_section .page_subtitle::before {
  display: none;
}

.about_desc {
  color: #747474;
}

.iaf_recommend_wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}

#btn-share {
  padding: 8px 10px;
  line-height: 1;
  border-radius: 6px;
  text-transform: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: transparent;
  border: 1px solid rgba(208, 202, 202, 0.48);
  color: var(--secondary);
  cursor: pointer;
  transition: all .3s ease-in-out;
}

#btn-share:hover,
#btn-share:active {
  background: var(--secondary);
  color: #fff;
}

/* Verified Seal  */
.verifiedSeal_box {
  transition: all .2s linear;
}

.verifiedSeal_img:hover>img {
  opacity: .8;
}

.verifiedSeal_icon {}

.verifiedSeal_icon .verifiedSeal_img img {
  width: 100%;
  max-width: 22px;
  transition: ease-in-out 0.2s;
  cursor: pointer;
  margin-top: -3px;
}

h4.modal-title {
  color: #fff !important;
}

.recomand_row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  gap: 10px 20px;
}

.recomand_box {
  display: flex;
  align-items: center;
  gap: 5px 15px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.recomand_box p {
  margin-bottom: 0;
}

.recomand_box p img {
  margin-right: 5px;
}


.agent_img_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 30px;
  border-color: #FFFFFF;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}

.agent_img img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 991px) {
  .about_section .row {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .agent_img {
    text-align: left;
    padding: 0;
    background-image: none;
  }

  .agent_img img {
    height: auto;
  }
}

/* About End*/
/* What I Do  Start*/
.whatIdo_item_row {
  display: flex;
}

.whatIdo_item_row.two {
  flex-direction: row-reverse;
}

.whatIdo_img {
  flex: 0 50%;
}

.whatIdo_content {
  flex: 0 50%;
}

.whatIdo_content_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 80px;
  background-color: transparent;
  background-image: linear-gradient(180deg, #88DFCB 15%, #4BC5D6 85%);
  color: #fff;
}

.whatIdo_content .title {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.whatIdo_content p {
  font-size: 18px;
  font-weight: 300;
}

.whatIdo_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.whatIdo_item_row.one .whatIdo_content_inner {
  background: #6EE5AC;
}

@media screen and (max-width: 1199px) {
  .whatIdo_content .title {
    font-size: 36px;
  }

  .whatIdo_content_inner {
    padding: 0 40px;
  }

  .whatIdo_content p {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  .whatIdo_item_row {
    height: auto;
    flex-direction: column !important;
  }

  .whatIdo_img img {
    max-height: 400px;
  }

  .whatIdo_content_inner {
    padding: 40px 20px;
  }
}

/* What I Do  End*/
/* Insurance Carriers Start*/
.PreInsCarrier_section {
  padding-top: 100px;
}

.desc {
  color: #747474;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  margin: 16px auto;
  max-width: 1000px;
}

.carriers_block_row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
}

.carriers_block_item {
  flex: 45%;
  max-width: 45%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 3px;
  box-shadow: 0px 20px 32px 0px rgba(103, 122.00000000000003, 141, 0.17);
}

.carriers_block_item .title {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
}

.carriers_block_item .title:hover {
  color: var(--secondary);
}

.iaf_newWindowLink_icon {
  --fa-primary-color: var(--primary);
  --fa-secondary-color: var(--secondary);
  --fa-secondary-opacity: 1;
}

.iaf_newWindowLink_icon:hover {
  --fa-primary-color: var(--secondary);
  --fa-secondary-color: var(--primary);
}

.carriers_block_item li a:first-child.title {
  cursor: default;
}

.iaf_InsCompanyItem_subTitle {
  margin-bottom: 10px;
  color: #4F556A;
}

.carriers_block_item .service_name {
  color: var(--primary);
  font-size: 18px;
  min-width: 140px;
  display: inline-block;
}

.PreInsCarrier_section .see_more {
  margin: 0 auto;
}

.carriers_block .see_more {
  margin-top: 20px;
}

@media screen and (max-width: 574px) {
  .carriers_block_row {
    flex-direction: column;
  }

  .carriers_block_item {
    width: 100%;
    max-width: 100%;
  }
}

/* Insurance Carriers End*/
/* Experience & Accolades Start  */
.experience {
  padding-top: 100px;
}

.experience_desc {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  color: #747474;
  font-size: 18px;
  font-weight: 300;
}

.tabsContent_wrap {
  display: flex;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.tabsContent_nav {
  flex: 0 40%;
  flex-direction: column;
  border: none;
}

.tabsContent_content {
  flex: 0 60%;
}

.tabsContent_nav .nav-item {
  text-align: right;
}

.tabsContent_nav .nav-item.one {
  background: #33cea5;
}

.tabsContent_nav .nav-item.two {
  background: #6ee5ac;
}

.tabsContent_nav .nav-item.three {
  background: #4bcfe0;
}

.tabsContent_nav .nav-link {
  padding: 60px 80px 60px !important;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  border: none !important;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.experience_icon {
  display: inline-block;
  width: 60px;
}

.nav-link .experience_icon svg,
.nav-link .experience_icon svg .exp1 {
  fill: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-link:hover .experience_icon svg .exp1 {
  fill: var(--primary);
}

.nav-link.active>.experience_icon svg,
.nav-link.active>.experience_icon svg .exp1,
.nav-link:hover>.experience_icon svg,
.nav-link.hover>.experience_icon svg .exp1 {
  fill: var(--primary);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  color: var(--primary);
  background: unset;
  border: none;
}

.tabsContent_content {
  background-image: url('/img/templates/123/experience_bg.png');
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  padding-left: 80px;
}

.experience_box_content .title {
  font-size: 38px;
  margin-bottom: 20px;
}

.experience_box_content ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.experience_box_content .count {
  width: 34px;
  height: 34px;
  background: var(--primary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  line-height: 18px;
  font-size: 18px;
}

.experience_box_content .details .degree {
  font-size: 20px;
  font-weight: 500;
}

.experience_box_content .details p {
  margin-bottom: 0;
  color: #747474;
}

@media screen and (max-width: 1199px) {
  .tabsContent_content {
    position: relative;
  }

  .tabsContent_content_overlay {
    background-color: #FFFFFF;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .tab-content>.active {
    z-index: 11;
  }

  .tabsContent_nav .nav-link {
    padding-left: 20px !important;
    padding-right: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  .tabsContent_content {
    padding-left: 40px;
  }
}

@media screen and (max-width: 574px) {
  .tabsContent_wrap {
    flex-direction: column;
  }

  .tabsContent_nav .nav-link {
    padding: 20px !important;
    align-items: flex-start;
  }

  .tabsContent_content {
    padding: 20px;
  }
}

/* Experience & Accolades End  */
/* Location Start */
.locationWrap {
  padding: 80px 0;
}

.view_map {
  margin-top: 40px;
}

.locationWrap .address {
  color: #747474;
  font-size: 16px;
  transition: all 0.2s;
  margin-top: 10px;
}

.locationWrap .address i {
  --fa-primary-color: var(--primary);
  --fa-primary-opacity: .7;
  --fa-secondary-color: var(--secondary);
  --fa-secondary-opacity: .7;
}

.locationWrap .address:hover {
  color: var(--secondary);
}

.iaf_officeTime_subtitle {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-weight: 400;
  color: #747474;
  font-size: 15px;
  margin-top: 20px;
}

.time_icon i {
  font-size: 24px;
  --fa-primary-color: #33333347;
  --fa-primary-opacity: 1;
  --fa-secondary-color: #33CEA557;
  --fa-secondary-opacity: 1;
}

.officeTime {
  margin-top: 40px;
  margin-bottom: 0;
}

.officeTime ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0px 15px;
}

.iaf_officeTime_item {
  display: flex;
}

.iaf_officeTime_date {
  background: #33CEA557;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  width: 50px;
  border-radius: 3px 0 0 3px;
  font-size: 16px;
  color: var(--primary);
}

.iaf_officeTime_time {
  background: #7474742b;
  color: var(--primary);
  width: 98px;
  font-size: 10px;
  border-radius: 0 3px 3px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iaf_officeTime_item.closed .iaf_officeTime_date {
  background: #33333347;
}

@media screen and (max-width: 1199px) {
  .officeTime ul {
    justify-content: center !important;
    gap: 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .iaf_officeTime_subtitle {
    margin-top: 20px;
  }
}

/* Contact Section  */
/* Contact Section  */
.contact_section {
  background-image: url('/img/templates/123/contact_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--primary);
  padding: 60px 0;
}

.contact_details h3 {
  font-size: 48px;
  font-weight: 600;
  color: var(--primary);
  text-transform: lowercase;
}

.contact_details h3 span {
  position: relative;
  padding-left: 45px;
}

.contact_details h3 span::before {
  position: absolute;
  content: '';
  top: 12px;
  left: -15px;
  width: 50px;
  height: 50px;
  background: url(/img/templates/123/get_in_touch.svg);
  background-size: 100%;
}

.tel_icon,
.mail_icon {
  color: #747474;
  opacity: 1;
}

.iaf_addressTelEmail_block {
  margin-bottom: 40px !important;
  margin-top: 20px !important;
}

.iaf_addressTelEmail_block .address {
  color: #747474 !important;
  font-size: 16px;
  font-weight: 500;
}

.insignia_logo {
  height: 32px;
  position: relative;
  top: 10px;
}

.iaf_ContactUsForm_managedByRow,
.iaf_ContactUsForm_managedByRow a,
.iaf_ContactUsForm_privacyRow a {
  color: #747474 !important;
  font-weight: 400 !important;
}

.iaf_ContactUsForm_managedByRow a:hover,
.iaf_ContactUsForm_privacyRow a:hover {
  color: var(--secondary) !important;
}

.iaf_ContactUsForm_privacyRow a:first-child {
  border-right: 2px solid #747474 !important;
}

.contactForm .btnSend {
  display: flex !important;
  margin: 0 auto !important;
  padding: 18px 37px 18px 37px !important;
  background: #fff !important;
  color: var(--primary) !important;
  font-size: 18px;
  font-weight: 500;
  border: 2px solid #fff !important;
  border-radius: 30px;
  font-family: "Roboto Condensed", sans-serif;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.contactForm .btnSend:hover {
  background: var(--secondary) !important;
  color: #fff !important;
  border: 2px solid var(--secondary) !important;
}

.contactForm .btnSend svg {
  fill: var(--primary);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.contactForm .btnSend:hover svg {
  fill: #fff;
}

.custom_toggle_icon {
  -moz-padding-start: calc(0.75rem - 3px);
  background-color: #fff !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right .5rem center !important;
  background-size: 16px 12px !important;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.insignia_logo svg {
  fill: #747474;
}

@media screen and (max-width: 991px) {
  .PreInsCarrier_section .title_block .svg {
    margin-bottom: 15px;
  }

  .contact_row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .contact_details h3 {
    text-align: center !important;
    margin-bottom: 15px !important;
  }

  .iaf_addressTelEmail_block {
    justify-content: center !important;
    flex-direction: row !important;
    gap: 20px !important;
    margin-bottom: 15px !important;
    align-items: center !important;
  }

  .iaf_ContactUsForm_managedByRow,
  .iaf_ContactUsForm_privacyRow {
    text-align: center !important;
  }

  .g-recaptcha,
  .contactForm .btnSend {
    margin: 0 auto !important;
  }

  .contactForm .btnSend {
    margin-top: 20px !important;
  }
}

@media screen and (max-width: 574px) {
  .contact_details h3 {
    padding-top: 50px;
    position: relative;
  }

  .contact_details h3 span {
    position: unset;
    padding-left: 0;
  }

  .contact_details h3 span::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Global Responsive */
@media screen and (max-width: 1399px) {

  .contact_details h3,
  .page_title {
    font-size: 42px;
  }

  .page_title .title_icon {
    width: 40px;
  }

  .whatIdo_section_bg {
    padding-left: 0;
  }
}

@media screen and (max-width: 574px) {
  .profile_summary .hero_bg_1 {
    top: 0;
  }

  .userShortBio h2 {
    font-size: 32px;
  }
}

/* Smooth Sticky  */
@media screen and (min-width: 992px) {
  .sticky section.navWrap {
    top: -100px;
    transition: all 1s ease 0s;
  }

  .sticky_item section.navWrap {
    transition: all 1s ease 0s;
  }

  .sticky_item .hero_section {
    margin-top: 86px;
  }
}

/* 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: 15px;
  right: 15px;
  color: #000 !important;
  font-weight: 500;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

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

#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;
}

@media screen and (max-width: 767px) {
  .iaf_addressTelEmail_block {
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 10px !important
  }
}

/*dba logo dba name */
.dba-logo-name-address {
  display: flex;
  flex-direction: column;
}

.dba-logo-name-address p.dba-name {
  font-weight: 600 !important;
  font-weight: 500;
  font-size: 18px;
  color: #747474;
}

/*.dba-logo-sqr, .dba-logo-rect{
     background: #fff;
     padding: 10px 12px;
     border-radius: 5px;
   }*/
.dba-logo-sqr img {
  max-height: 80px;
  width: auto;
}

.dba-logo-rect img {
  max-width: 200px;
  height: auto;
}

/*years of experience*/
.yrs-of-exp small {
  font-size: 16px;
  font-weight: 500;
  background: #8cc5b6;
  color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 35px;
  height: 35px;
}

.yrs-of-exp {
  display: inline-flex;
  align-items: center;
  border-radius: 30px;
  margin: 0;
  padding: 5px 15px 5px 40px;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  background: #8cc5b6c4;
  color: #fff;
  text-transform: none !important
}

/*lookup*/
.btns-lookup .btn:focus {
  box-shadow: none
}

.btns-lookup .btn {
  padding: 7px 10px;
  line-height: 1;
  border-radius: 30px;
  font-weight: normal;
  text-transform: none;
  font-size: 11px;
  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)
}

@media screen and (max-width: 574px) {
  .fdc-575 {
    flex-direction: column !important;
  }
}

/* consultation button */
.consultation_btn {
  position: absolute;
  right: 0;
  border-radius: 6px;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  padding: 6px 10px;
  transition: all .3s ease;
  color: var(--secondary);
  background-color: #fff;
  border: 1px solid #a7d2c7;

}

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

.consultation_btn i {
  position: relative;
  top: -1px;
}

.container_schedule_demo,
.position-relative {
  position: relative
}

.container_schedule_demo {
  margin-bottom: 15px;
}

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


/* Blog Post Start  */
.blog_post {
  background: #F5F6F8;
  padding: 70px 0;
}

.blog_post .sub_header {
  color: #33cea5;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
  display: block;
}

.blog_post .page_title {
  text-align: center;
  margin-bottom: 20px;
}

.blog_post .desc {
  color: #747474;
  font-size: 18px;
  max-width: 1000px;
  margin: 15px auto;
  text-align: center;
}

.blog_post .blog_item {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0px 20px 32px 0px rgba(103, 122.00000000000003, 141, 0.17);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.blog_post .blog_item:hover {
  box-shadow: 0 10px 30px 3px #a7a9aa4a;
}

.blog_post .blog_item .img {
  overflow: hidden;
  height: 270px;
  border-radius: 10px 10px 0 0;
}

.blog_post .blog_item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 10px 10px 0 0;
  transition: all 2s ease;
  -webkit-transition: all 2s ease;
  -moz-transition: all 2s ease;
  -ms-transition: all 2s ease;
  -o-transition: all 2s ease;
}

.blog_post .blog_item:hover .img img {
  -webkit-transform-style: unset;
  transform-style: unset;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  -moz-transform: scale(1.2);
  opacity: 0.8;
}

.blog_post .blog_item .contents {
  padding: 20px;
}

.blog_post .blog_item .tag {
  display: inline-block;
  padding: 4px 17px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background: var(--secondary);
  margin-bottom: 15px;
}

.blog_post .blog_item .title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--primary);
}

.blog_post .blog_item .blog_desc {
  margin-bottom: 0;
  color: #747474;
  font-size: 15px;
  font-weight: 400;
}

.blog_post .blog_item .read_more {
  font-size: 14px;
  display: inline-block;
  margin-top: 15px;
  color: var(--primary);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.blog_post .blog_item .read_more:hover {
  letter-spacing: 1px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

/* Blog Post End */
#backToTop {
  font-size: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background-color: var(--secondary);
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  cursor: pointer;
}

#backToTop:hover {
  background-color: var(--primary);
}

#backToTop:active {
  background-color: var(--primary);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

ul.navbar li .customDropdown .dropdown a {
  color: #8E8E8E !important;
}

ul.navbar li .customDropdown .dropdown a:hover {
  color: var(--primary) !important;
  text-decoration: none !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-2 {
  gap: .5rem !important;
}

.align-items-start {
  align-items: flex-start !important;
}


.types-language .lng_title {
  color: #212529;
}

.types-language .normal {
  color: #747474;
}

.servicingStates_btn {
  padding: 8px 10px;
  line-height: 1;
  border-radius: 30px;
  font-weight: normal;
  text-transform: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.65);
  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;
}

.servicingStates_btn:hover {
  border: 1px solid rgba(0, 0, 0, 0.4);
  color: rgba(0, 0, 0, 0.8);
}


.types-language .iconn {
  position: relative;
  top: -2px;
}

.member_review .stars [data-star]::before {
  color: #6EE5AC !important;
}

.member_review .stars [data-star]::after {
  color: var(--secondary) !important;
}

.member_review .ratings_number {
  color: var(--secondary);
}

.member_review .total_review a {
  color: #8cc5b6c4;
  transition: all .3s ease;
}

.member_review .total_review a:hover {
  text-decoration: underline !important;
}