@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

html {
  margin: 0;
  padding: 0;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none !important;
}

ul.navbar li a {
  color: #fff;
  position: relative;
  font-size: 16px;
  display: inline-block;
  margin-right: 25px;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

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

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

.navbar li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  right: 0;
}

.navbar li a:hover,
.navbar li a.active {
  color: #ffe03f;
}

.navbar li a:hover::after,
.navbar li a.active::after {
  border-bottom: 2px solid #ffe03f;
}

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

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

.sticky_item section.navWrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s;
}

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

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

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

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

.logo {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.for_mobile {
  display: none !important;
}

@media (max-width:991px) {

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

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

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

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

  .navbar-brand {
    display: none;
  }

  .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: #fff;
    position: relative;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    text-align: left;
    margin-right: 0;
  }

  .customDropdown.active .dropdown {
    margin-left: 20px;
  }

  .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: #fff;
    background: #FFE03F;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
  }

  .navbar li a:after {
    display: none;
  }

  .navWrap .col-lg-12 {
    padding: 0;
  }

  .navMobile {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }

  .hero_section {
    padding-top: 120px !important;
  }

  .for_mobile {
    display: block !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;
  }

  .for_desktop {
    display: none !important;
  }

  .call_btn {
    position: absolute;
    bottom: 60px;
    left: 15px;
  }

  .navWrap.showNav::after {
    background: #ddd;
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .navWrap.showNav::before {
    background: #ddd;
    position: absolute;
    width: 100%;
    height: 100%;
  }
}

/* Hero Section  */
.hero_section {
  background: #10A58E;
  color: #fff;
  padding: 60px 0;
}

.hero_title {
  color: #fff;
  font-size: 58px;
  font-weight: 500;
  line-height: 1em;
  margin-bottom: 30px;
}

.user_headline {
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.3em;
  margin-bottom: 40px;
}

.btnOne_style {
  display: inline-block;
  padding: 24px 50px;
  background: #ffe03f;
  color: #003A52;
  font-size: 16px;
  font-weight: 500;
  border-radius: 60px;
  transition: all 0.2s;
}

.btnOne_style:hover {
  background: #fff;
}

.btnTwo_style {
  display: inline-block;
  padding: 12px 24px;
  background: #fff;
  color: #003A52;
  font-size: 14px;
  font-weight: 500;
  border-radius: 60px;
  transition: all 0.2s;
}

.btnTwo_style:hover {
  background: #ffe03f;
  color: #003A52;
}

.call_btn {
  cursor: default;
}

.call_btn img {
  max-height: 32px;
  margin-right: 4px;
}

.userPhoto_inner {
  text-align: center;
  min-height: 440px;
  position: relative;
}

.user_img {
  position: relative;
  z-index: 2;
}

.user_img img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  object-position: center;
}

.bg_ellipse_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}

.ellipse_1 {
  background-image: url('/img/templates/111/Ellipse-1.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 120px;
  height: 120px;
  position: absolute;
  left: 36px;
  bottom: 55px;
  z-index: 1;
}

.ellipse_2 {
  background-image: url('/img/templates/111/Ellipse-2.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 70px;
  height: 155px;
  position: absolute;
  right: 60px;
  top: 110px;
  z-index: 1;
  transform: rotate(180deg);
}

.ellipse_3 {
  background-image: url('/img/templates/111/Rectangle-3.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 80px;
  height: 80px;
  position: absolute;
  right: 75px;
  top: -32px;
  z-index: 1;
}

/* Profile Summary */
.pofile_summary {
  background: #fff;
  padding: 100px 0;
}

.page_title {
  color: #003A52;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2083em;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 10px;
}

/* Flip card  */
.flipCard_row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.flip_card {
  width: 300px;
  height: 350px;
}

.flip_card_inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.7s;
  transform-style: preserve-3d;
}

/* .flip_card:hover .flip_card_inner {
       transform: rotateY(180deg);
   } */
.flip_card_inner a {
  color: #003A52;
  font-size: 14px;
  cursor: default;
}

.flip_card_inner a:hover {
  color: #10A58E;
}

.flip_card_back,
.flip_card_front {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip_card_front {
  background: #fff;
  color: #003A52;
  border: 1px solid #E6E6E6;
  border-radius: 5px;
  padding: 40px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  display: none;
}

.flip_card_front h2 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25em;
  margin-top: auto;
}

.flip_card_back {
  background-color: #fff;
  color: #003A52;
  /* transform: rotateY(180deg); */
  box-shadow: 0px 20px 34px 0px rgba(0, 58, 82, 0.1);
  border-radius: 5px;
  padding: 25px 20px;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.flip_card_back h2 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25em;
  margin-bottom: 10px;
}

.flip_card_back img {
  max-width: 32px;
  margin-bottom: 10px;
}

.servicingStates_btnImg {
  display: inline-block;
  cursor: pointer !important;
  margin-top: auto;
}

/* About Tab  */
.about_tab_section {
  background: #F6F9FC;
  color: #003A52;
  padding: 100px 0;
}

.tabsContent_wrap {
  display: flex;
  margin-top: 60px;
}

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

.tabsContent_content {
  flex: 0 60%;
}

.nav-tabs .nav-item .nav-link {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25em;
  color: #003A52;
  border: none;
  padding: 10px 0 !important;
  transition: all 0.2s;
  display: inline-block;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  color: #10A58E;
  background: unset;
  border: none;
}

.tabsContent_nav .img_icon {
  margin-right: 10px;
}

.tabsContent_desc .title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1944em;
  color: #003A52;
  margin-bottom: 20px;
}

.tabsContent_desc p {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5em;
  color: #003A52;
}

.PreInsCarrier_section {
  background: #fff;
  color: #003A52;
  padding: 100px 0;
}

.team_details {
  padding-left: 100px;
}

.team_details h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2083em;
  margin: 30px 0;
}

.team_details p {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.3em;
  margin-bottom: 40px;
}

/* Preferred insurance carrier  */
.custom_divider {
  display: block;
  height: 2px;
  background: #003A52;
  margin: 100px 0;
}

.preferred_insCarrier_row {
  display: flex;
  flex-wrap: wrap;
}

.title_block {
  flex: 0 40%;
  padding-right: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: auto 0;
}

.section_desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 0;
  text-align: center;
}

.title_block .desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 30px;
}

.carriers_block {
  flex: 0 60%;
}

.title_block h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2083em;
  margin-top: 20px;
}

.carriers_block_row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.carriers_block_item {
  width: 200px;
}

.carriers_block_item a.title {
  color: #003A52;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25em;
  cursor: default;
}

.carriers_block_item a.title:hover {
  color: #10A58E;
}

.iaf_InsCompanyItem_subTitle {
  font-size: 14px;
  margin-bottom: 10px;
}

.carriers_block_item li p {
  font-size: 18px;
  margin-bottom: 8px;
}

.carriers_block_item li p img {
  max-width: 20px;
}

.iaf_newWindowLink_icon:hover {
  --fa-primary-color: #ec5929 !important;
  --fa-secondary-color: #0e4571 !important;
  cursor: pointer;
}

.carriers_block .see_more {
  width: 100%;
  text-align: right;
}

/* Experiences  */
.experience {
  background: #F6F9FC;
  padding: 100px 0;
}

.experience_row {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 60px;
}

.experience_box {
  flex: 0 32%;
}

.experience_box_inner ul li {
  padding: 20px;
  padding-left: 0;
  display: flex;
  gap: 15px;
}

.experience_box_inner ul li:first-child {
  margin-top: 15px;
}

.experience_box_inner ul li p {
  margin-bottom: 0;
  color: #003A52;
  font-size: 16px;
}

.experience_box_inner .degree {
  display: block;
  font-size: 22px;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 10px;
  color: #003A52;
}

.experience_box_inner .count {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #10A58E;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.experience_box_inner h3 {
  font-size: 24px;
  color: #003A52;
  display: flex;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
}

.experience_box_inner h3 .experience_icon {
  display: inline-block;
}

.experience_box_inner {
  border: 1px solid #09E3C27A;
  padding: 20px;
  border-radius: 3px;
  height: 100%;
}

/* Office Location  */
.locationWrap {
  padding: 100px 0;
}

.locationWrap .headingView {
  margin-bottom: 20px !important;
}

.locationWrap .address {
  margin-bottom: 20px;
  color: #003A52;
  font-size: 16px;
  font-weight: normal;
  display: inline-block !important;
  cursor: default;
}

.locationWrap .address:hover {
  color: #10A58E;
}

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

.iaf_officeTime_item {
  display: flex;
}

.iaf_officeTime_date {
  background: #10A58E69;
  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: #003A52;
}

.iaf_officeTime_time {
  background: #F6F9FC;
  color: #003A52;
  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: #febfaa;
}

.iaf_officeTime_subtitle {
  text-align: center;
  font-weight: normal;
  color: #003A52;
  font-size: 14px;
  margin-top: 10px;
}

.iaf_experienceAccolades_row {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.iaf_experienceAccolades_item {
  border-radius: 3px;
  width: 350px;
  max-width: 350px;
}

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

/* Contact Section  */
.contact_section {
  background: #fff !important;
  padding: 100px 0;
}

.contact_details {
  flex: 0 30%;
}

.contact_details h3 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #003A52;
  text-align: left !important;
}

.contact_form {
  flex: 0 70%;
}

.iaf_addressTelEmail_block {
  flex-direction: column !important;
  gap: 10px !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

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

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

.iaf_addressTelEmail_block .address {
  color: #003A52 !important;
  font-size: 16px;
  font-weight: normal;
}

.contactForm .form-control {
  border: 1px solid #003A52 !important;
  color: #003A52 !important;
}

.contactForm .form-control.error {
  border: 1px solid #ca0000 !important;
  color: #ca0000 !important;
}

.iaf_ContactUsForm_managedByRow a:hover,
.iaf_ContactUsForm_privacyRow a:hover {
  color: #10A58E !important;
}

.contactForm .btnSend {
  display: inline-flex !important;
  padding: 24px 45px !important;
  background: #FFE03F !important;
  color: #003A52 !important;
  font-size: 16px;
  font-weight: 500;
  border-radius: 60px;
  transition: all 0.2s;
}

.contactForm .btnSend:hover {
  background: #10A58E !important;
  color: #fff !important;
}

.contactForm .btnSend svg {
  fill: #003A52;
  transition: all 0.2s;
}

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

/* 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 {
    padding-top: 136px;
  }
}

/* Recomand Modal  */
.iaf_recommend_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  justify-content: flex-end;
}

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

#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: #fff;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

#btn-share:hover, #btn-share:active {
  background: #ffe03f;
  color: #003A52;
}

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

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

/* Animations  */
.animateBottom {
  animation: animateBottom 0.3s;
}

@keyframes animateBottom {
  0% {
    transform: translate(0px, 50px);
    opacity: 0;
  }

  100% {
    transform: translate(0px, 0);
    opacity: 1;
  }
}

/* Global responsive code  */
@media screen and (max-width: 1199px) {
  .hero_title {
    font-size: 44px;
  }

  .flipCard_row {
    justify-content: center;
    gap: 30px;
  }

  .experience_row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .experience_box_inner {
    min-width: 360px;
  }

  .preferred_insCarrier_row {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .title_block {
    padding-right: 0;
  }
}

@media screen and (max-width: 991px) {
  .flip_card_back {
    transform: rotateY(0);
  }

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

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

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

  .contactForm .btnSend {
    display: block !important;
    margin-top: 20px !important;
    padding: 12px 45px !important;
  }

  .contactForm .btnSend .svg {
    position: relative;
    top: 6px;
  }

  .pofile_summary,
  .about_tab_section,
  .PreInsCarrier_section,
  .experience,
  .locationWrap,
  .contact_section {
    padding: 40px 0;
  }

  .officeTime {
    margin: 20px 0px;
  }

  .experience_row {
    margin-top: 40px;
  }

  .title_block h2 {
    margin-top: 0;
  }

  .tabsContent_wrap {
    margin-top: 40px;
  }

  .experience_box_inner .degree {
    margin-bottom: 0;
  }

  .iaf_officeTimeRow {
    flex-direction: column-reverse;
  }
}

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

  .page_title,
  .title_block h2,
  .contact_details h3 {
    font-size: 36px;
  }

  .experience_box {
    flex: 0 100%;
  }

  .experience_box_inner {
    min-width: unset;
  }

  .tabsContent_wrap {
    flex-direction: column;
    margin-top: 30px;
  }

  .tabsContent_nav {
    gap: 10px 30px;
    flex-direction: row;
    margin-bottom: 30px;
  }

  .tabsContent_desc .title {
    font-size: 28px;
  }

  .carriers_block_row {
    justify-content: space-between;
  }

  .carriers_block_item {
    width: auto;
    min-width: 40%;
  }
}

@media screen and (max-width: 574px) {
  .tabsContent_nav {
    justify-content: center;
  }
}

@media screen and (max-width: 499px) {
  .carriers_block_item {
    width: 100%;
  }
}

@media screen and (max-width: 424px) {
  .user_img img {
    max-width: 300px;
    height: auto;
  }

  .userPhoto_inner {
    min-height: 380px;
  }
}

@media screen and (max-width: 374px) {
  .iaf_addressTelEmail_block {
    align-items: center !important;
  }

  .nav-tabs .nav-item {
    width: 100%;
  }
}

.userShortBio {
  padding-top: 10px;
  padding-left: 170px;
  display: block;
  text-align: left;
  position: relative;
  z-index: 99;
}

.userShortBio span {
  font-size: 14px;
  color: #fff;
  line-height: 1;
}

.userShortBio .iaf_name {
  font-size: 28px;
}

.userShortBio .social {
  margin-top: 15px;
}

.userShortBio .social ul {
  list-style: none;
}

.userShortBio .social ul li {
  display: inline;
  color: #fff;
  margin-right: 10px;
}

.userShortBio .social li a:hover {
  opacity: .7;
}

.userShortBio .social ul li a i {
  color: #fff !important;
}

@media screen and (max-width: 991px) {
  .ellipse_1 {
    left: -60px;
  }

  .ellipse_2 {
    right: -35px;
    top: 120px;
  }

  .ellipse_3 {
    right: -25px;
    top: -25px;
  }

  .userShortBio {
    padding-left: 75px;
  }
}

@media screen and (max-width: 767px) {
  .hero_section {
    overflow: hidden;
  }

  .userShortBio {
    padding-left: 0;
    text-align: center;
  }

  .ellipse_1 {
    left: 5px;
    bottom: 80px;
  }

  .ellipse_2 {
    right: 50px;
    top: 75px;
  }

  .ellipse_3 {
    right: 60px;
    top: -50px;
  }
}

@media screen and (max-width: 520px) {
  .ellipse_1 {
    left: 0;
    bottom: 200px;
  }

  .ellipse_2 {
    right: 0;
    top: 100px;
  }

  .ellipse_3 {
    right: 0;
    top: 0;
  }

  .flip_card {
    width: 80%;
  }
}

.iaf_officeTime_subtitle {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.time_icon i {
  font-size: 24px;
  --fa-primary-color: #ee4e1a;
  --fa-primary-opacity: 0.5;
  --fa-secondary-color: #10A58E;
  --fa-secondary-opacity: .5;
}

.iaf_topNav_phnIcon {
  margin-right: 4px;
}

.iaf_topNav_phnIcon i {
  --fa-primary-color: #fff;
  --fa-primary-opacity: 1;
  --fa-secondary-color: #10A58E;
  --fa-secondary-opacity: 1;
}

.tel_icon,
.mail_icon {
  opacity: .7;
}

.see_more {
  margin-top: auto;
  text-align: right;
}

.see_more a {
  color: #10A58E;
}

.see_more a:hover {
  color: #10A58E9E;
}

.page_title {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}

.page_title .title_icon {
  display: inline-block;
  width: 40px;
  padding-top: 5px;
}

.contact_details h3 {
  position: relative;
  padding-top: 50px;
}

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

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

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

/* 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: 20px;
  transition: ease-in-out 0.2s;
  cursor: pointer;
  background: #fff;
  padding: 2px;
  border-radius: 50%;
  margin-top: 0;
}

.recomand_row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  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;
}

@media screen and (max-width: 574px) {
  .recomand_row {
    justify-content: flex-end;
  }
}

@media screen and (min-width: 768px) {
  .recomand_row {
    max-width: 60%;
    margin-left: auto;
  }
}

.insignia_logo svg {
  fill: #c6c6c6;
  position: relative;
  top: 10px;
}

@media screen and (max-width: 767px) {
  .iaf_addressTelEmail_block {
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !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: #003A52;
}

/*.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: var(--primary);
  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: #baccdf;
  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, .btns-lookup .btn:active {
  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.6);
  color: rgba(255, 255, 255, 0.6);
}

.btns-lookup.light .btn:hover {
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.8)
}

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

@media screen and (max-width: 767px) {
  .userShortBio .align-items-center {
    justify-content: center
  }

  .btnOne_style {
    padding: 15px 30px
  }
}

.customDropdown .dropdown .item a:hover {
  text-decoration: none !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: #003A52;
  background-color: #fff;
  border: 1px solid #ddd;
}

.consultation_btn:hover {
  color: #fff;
  background-color: #10a58e;
  border-color: #10a58e;
}

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

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

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

@media screen and (min-width: 992px) {
  #cfCaptchaWidget {
    text-align: left !important;
  }
}



/*experience and accolades */

.experience-accolades {
  background: #F6F9FC;
  padding: 100px 0;
}


.experience-accolades .sub_header {
  color: #10A58E;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: left;
  display: block;
}

.experience-accolades .page_title {
  color: #003A52;
  font-size: 48px;
  font-weight: 500;
  text-align: left;
  justify-content: flex-start;
  margin-top: 10px;
}

.experience-accolades .desc {
  font-size: 18px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 0;
  max-width: 600px;
  color: #003A52;
}



.rad-5 {
  border-radius: 5px;
}

.accordion-item {
  background-color: transparent;
  border: 1px solid #ccc !important;
  margin: 10px 0;
  border-radius: 6px;
}

.accordion-button {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  background: transparent !important;
  box-shadow: none;
  padding: 10px 40px 10px 15px;
  border-radius: 5px !important;
  position: relative;
  border: 0;
}

.accordion-button.collapsed {
  display: flex;
  width: 100%;
  gap: 10px;
  box-shadow: none;
  background: transparent !important;
  position: relative;
  border: 0
}

.accordion-button.collapsed:hover {
  color: #003A52 !important;
}

.accordion-button:focus {
  box-shadow: none
}



.accordion-button:after {
  background-image: none !important;
  margin-left: 0;
  width: 35px;
  height: 35px;
  content: '\f068';
  font-family: "Font Awesome 6 Pro";
  font-size: 16px;
  color: #003A52;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  right: 15px;
  transition: ease-in-out 0.1s
}

.accordion-button.collapsed:after {
  color: #003A52;
  background: transparent;
  content: '\2b';
}



.accordion-button.collapsed:hover:after {

  color: #003A52;

  background: transparent;

}



.accordion-button h4 {
  margin: 0;
  color: #003A52;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500
}



.accordion-button .experience-icon {

  display: inline-block;

  width: 100%;

  max-width: 35px;
  height: 35px;

  fill: #003A52;

}



.accordion-button.collapsed h4 {

  color: #003A52;

  transition: ease-in-out 0.2s;



}



.accordion-button.collapsed:hover h4 {

  color: #003A52;

}



.accordion-button.collapsed .experience-icon {

  fill: #003A52;

  transition: ease-in-out 0.2s
}

.accordion-button.collapsed:hover .experience-icon {
  fill: #003A52;
}



.accordion-button:not(.collapsed) {
  box-shadow: none
}



.accordion-body {
  border: 0;
  border-top: 0;
  border-radius: 0 0 5px 5px;
  background: transparent;
  padding: 20px;
}



.experience-box-content {

  display: flex;

  align-items: center;

  /*height: 100%;*/

  padding: 0;

}



.experience-box-content ul {

  display: flex;

  flex-wrap: wrap;

  width: 100%
}



.experience-box-content ul li {

  display: inline-flex;

  gap: 10px;

  width: 50%;

  margin: 10px 0;

}



.experience-box-content ul li .details {

  width: calc(100% - 42px);

}



.experience-box-content .count {
  color: #10A58E;
  font-size: 16px;
}



.experience-box-content h5 {

  margin-bottom: 5px;

  font-weight: 500;

  color: #10A58E;

  font-size: 20px
}



.experience-box-content ul li p {

  margin-bottom: 0;

  color: #003A52;

}

.experience-box-content ul li p .institution {
  font-weight: 500;
}


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

@media screen and (max-width: 574px) {
  .experience-box-content ul {
    flex-direction: column;
  }

  .experience-box-content ul li {
    width: 100%;
  }
}

/* ///experience accolades */




/* Blog Post Start  */

.blog_post {
  background: #F6F9FC;
  padding: 100px 0;
}

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

.blog_post .page_title {
  font-weight: 500;
  text-align: center;
  color: #003A52;
  font-size: 48px;
}

.blog_post .desc {
  color: #003A52;
  font-size: 16px;
  max-width: 750px;
  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 34px 0px rgba(0, 58, 82, 0.1);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}


.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: #003A52;
  font-size: 14px;
  font-weight: 400;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background: #10A58E69;
  margin-bottom: 15px;
}

.blog_post .blog_item .title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #003A52;
}

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

.blog_post .blog_item .read_more {
  font-size: 14px;
  display: inline-block;
  margin-top: 15px;
  color: #003A52;

  -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: #003A52;
  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(--secondary);
}

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

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

ul.navbar li .customDropdown .dropdown a {
  color: #003A52 !important;
}

ul.navbar li .customDropdown .dropdown a:hover {
  color: #ffe03f !important;
  text-decoration: none !important;
}


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

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


.types-language .lng_title {
  color: #10A58E;
}

.types-language .normal {
  color: #003A52;
}

.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: #fff !important;
}

.member_review .stars [data-star]::after {
  color: #ffe03f !important;
}

.member_review .ratings_number {
  color: #fff;
}

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

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

@media screen and (max-width: 767px) {
  .member_review_page_inner{
    justify-content: center;
  }
}