﻿/* Typograpy */
* {
  margin: 0;
  padding: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

ul,
li {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 0;
  font-size: 21px;
}

button {
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
}

#page_top_scroll {
  display: inline-block;
  background-color: #ff9800;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-container{
  max-width: 1400px;
}
#page_top_scroll i {
  font-size: 30px;
  color: #fff;
}

#page_top_scroll:hover {
  cursor: pointer;
  background-color: #333;
}

#page_top_scroll:active {
  background-color: #555;
}

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

/* End  */

/* Header Wrap  */
.header_wrap {
  width: 100%;
  z-index: 1024;
  float: left;
  top: 0;
  position: sticky;
  top: 0;
}

.header_wrap nav {
  background: #000;

}
.navbar_list {
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.navbar_list img {
  max-width: 100%;
}
.mainNav .nav-item .nav-link {
  color: #fff !important;
  font-size: 25px;
  font-weight: 500;
  padding-left: 0px;
  display: block;
  transition: 0.3s ease;
  
}
.navbar_list li:first-child:before{
  display: none;
}
.mainNav .nav-item .nav-link:hover {
  color: rgb(251, 165, 46) !important;
}

.header_telephone {
  position: absolute;
  right: 0;
  top: 0;
}
.head_medim_telephone {
}
.header_telephone a {
  text-decoration: none;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  background-color: #3AB5FD;
  top: 31px;
  width: auto;

  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-weight: 600;
  font-size: 18px;
  transition: 0.3s ease;
  padding: 10px 15px;
}

.header_telephone a:hover {
  background-color: rgba(251, 166, 46, 0.9);
}

button.menu_bars {
  border: 0 !important;
  outline: none;
  border-radius: 0 !important;
}

button.menu_bars .navicon {
  background: #fff;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 24px;
}

button.menu_bars .navicon:before {
  top: 8px;
}

button.menu_bars .navicon:after,button.menu_bars .navicon:before {
  background: #fff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

button.menu_bars .navicon:after {
  top: -8px;
}



button.menu_bars[aria-expanded=true] .navicon {
    background: transparent;
}

button.menu_bars[aria-expanded=true] .navicon::before, button.menu_bars[aria-expanded=true] .navicon::after {
    top: 0;
}

button.menu_bars[aria-expanded=true] .navicon::before {
    transform: rotate(-45deg);
}

button.menu_bars[aria-expanded=true] .navicon::after {
    transform: rotate(45deg);
}

.mobile-header-icon {
  width: 43px;
  margin-right: 10px;
}

.brand-logo {
  width: 100px;
  height: auto;
}
/* End Header Wrap  */

/* Banner Wrap  */
.home_banner_wrap {
  background: url(../img/home/banner-bg.jpg) no-repeat center center;
  background-size: 100% 100%;
  height: 995px;
  display: flex;
  align-items: center;
  position: relative;
}

.home_banner_content {
  color: #fff;
}

.home_banner_content h3 {
  font-size: 77px;
  line-height: 70px;
  padding-bottom: 3px;
}

.home_banner_content p {
  font-weight: 400;
  font-size: 22.5px;
  line-height: 33px;
  padding-bottom: 25px;
}

.home_banner_content p a {
  text-decoration: none;
  color: #fba52e;
  font-weight: 600;
}

.banner_search_form {
  display: flex;
  align-items: center;
  height: 60px;
  width: 692px;
  max-width: 692px;
  background: #fff;
  border-radius: 7px;
  margin-bottom: 21px;
}

.banner_search_select {
  height: 100%;
  flex: 1 1 auto;
  color: #7f7f7f;
  font-size: 17.5px;
  font-style: italic;
  display: flex;
  align-items: center;
  background: #fff;
  border: none;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}

.banner_search_select.nice-select .list {
  font-style: normal;
}

.banner_search_select.nice-select:after {
  border-bottom: 4px solid #000;
  border-right: 4px solid #000;
  height: 15px;
  margin-top: -7px;
  right: 27px;
  width: 15px;
}

.banner_search_form button {
  width: 163px;
  height: 100%;
  background-color: rgb(0, 190, 240);
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  font-size: 19.5px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s ease;
  outline: none;
}

.banner_search_form button:hover {
  background-color: rgba(0, 188, 240, 0.75);
}

/* End Banner  */

/* Brand Logo */
.brand_logo_wrap {
  margin-top: -20px;
  position: relative;
}

.brand_logo_border_bottom {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 60px;
  margin-bottom: 70px;
}

/* End Brand Logo  */


/* Company Commitment */

.compan_commit_sec1_box {
  color: #fff;
  background: #2a2a2a;
  border-right: 1px solid #000;
  height: 153px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compan_commit_sec1_box p {
  font-size: 23px;
  font-weight: 600;
  line-height: 25.58px;
  color: #2ec0cf;
}

.company_commit_sec_two_wrap {
  background: url("../img/home/find-covered-ca-agent-bg.jpg")no-repeat center center;
  background-size: cover;
  padding: 40px 50px;
  color: #fff;
}

.com_commit_sec2_left h4 {
  font-size: 51px;
  line-height: 51px;
  padding-bottom: 4px;
}

.com_commit_sec2_left p {
  font-size: 21px;
  line-height: 28px;
  font-weight: 500;
}

.com_commit_sec2_right h5 {
  font-size: 31px;
}

.com_commit_sec2_call {
  background: #fff;
  height: 63px;
  border-radius: 7px;
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0px 18px;
}

.com_commit_sec2_call a {
  display: block;
  font-size: 31px;
  font-weight: 600;
  text-decoration: none;
  color: #00bef0;
}

/* End Company Commitment */


/* Footer Wrap */

.footer-logo {
  max-width: 200px;
}
.footer_wrap {
  margin-top: -125px;
  color: #fff;
}

.footer_top_wrap {

  background: url("../img/footer-bg.png")
    no-repeat center center;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 25px;
}

.footer_content img {
  padding-bottom: 17px;
}

.footer-google-rating {
  max-width: 200px;
}
.footer-chat-icon,.footer-call-icon {
  max-width: 120px;
}
.footer_content p {
  font-size: 16px;
  line-height: 35px;
}

.footer_content p:first-of-type {
  padding-bottom: 40px;
}

.footer_content h4 {
  font-size: 23px;
  color: #FFBC56;
  padding-bottom: 12px;
}
.footer_content ul li {
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
  margin-left: 7px;
}
.footer_content ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  display: block;
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
}

.footer_content ul li a:hover {
  color: #00bef0;
}
.footer_content_end {
  margin-top: 30px;
}
.footer_newsletter input {
  width: 100%;
  background-color: rgb(188, 188, 188);
  height: 55px;
  border: none;
  outline: none;
  font-size: 17px;
  color: #555555;
  padding: 10px 20px;
  margin-bottom: 13px;
}

.footer_newsletter input::placeholder {
  font-size: 17px;
  color: #555555;
}

.footer_newsletter button {
  background-color: rgb(0, 190, 240);
  width: 126px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  transition: 0.3s ease;
}

.footer_newsletter button:hover {
  background: rgba(0, 172, 219, 0.95);
}

.footer_newsletter {
  margin-bottom: 32px;
}

.footer_social a {
  margin-right: 4px;
}

.footer_top_bottom_text {
  margin-top: 50px;


}

.footer_top_bottom_text p {
  font-size: 14px;
  line-height: 22px;
}

.footer_bottom_wrap {
  background: #1e1e1e;
  height: 125px;
  display: flex;
  align-items: center;
}

.footer_bottom_content p {
  font-size: 16px;
  color: #a7a3a6;
}

.footer_bottom_content p a {
  color: #fff;
  text-decoration: none;
}

.footer_bottom_content ul {
  display: flex;
  align-items: center;
  margin-left: auto;
  justify-content: flex-end;
}

.footer_bottom_content ul li a {
  font-size: 16px;
  color: #a7a3a6;
  text-decoration: none;
  display: inline;
  border-left: 2px solid #a7a3a6;
  padding-left: 20px;
  margin-left: 20px;
  transition: 0.3s ease-in;
}
.footer_bottom_content ul li a:hover {
  color: #fff;
}

.footer_bottom_content ul li:first-of-type a {
  border-left: 0;
  padding-left: 0;
  margin-left: 0;
}

/* End Footer  */

/* About Us Wrap  */

/* Banner  */
.all_banner_wrap {
  height: 565px;
  background: url(../img/about/about-banner-bg.jpg) no-repeat center center;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
}

.all_banner_content h3 {
  font-size: 77px;
  color: #fff;
}

/* End  */

/* Section One  */

/* End Blog Section 6  */

/* End Blog Section 10 */

/* End Blog 14  */
/* Blog Wrap  */
.blog_wrap {
  padding-top: 224px;
  margin-top: -50px;
}

.blog_overlay_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.blog_heading {
  padding-bottom: 65px;
}

.blog_heading p {
  font-size: 19.39px;
  font-weight: 600;
  color: #a2a2a2;

}

.blog_slide_content {
  display: flex;
}

.blog_thumb {
  background: #fff;
  padding-right: 30px;
}

.blog_item_text_content {
  background: #f6f6f6;
  padding: 50px 42px;
}

.blog_item_text_content h4 {
  font-size: 33.5px;
  line-height: 31px;
  color: #262626;
  padding-bottom: 10px;
}

.blog_item_text_content p {
  font-size: 20.5px;
  line-height: 34px;
  color: #4d4d4d;
  padding-bottom: 24px;
}

.blog_item_text_content a {
  text-decoration: none;
  color: #fff;
  border-radius: 7px;
  background-color: rgb(0, 190, 240);
  width: 264px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 600;
}

.blog_slide_content {
  background: #f6f6f6;
}

.blog_slider .owl-item {
  flex: 1;
}

.blog_slider {
  margin-bottom: 60px;
  position: relative;
  background: #f6f6f6;
}

.see_blog_revi_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 7px;
  background-color: rgb(42, 42, 42);
  color: #fff;
  width: 676px;
  height: 75px;
  padding: 20px;
}

.see_blog_revi_content p {
  font-size: 26.5px;
  font-weight: 500;
}

.see_blog_revi_content a {
  text-decoration: none;
  color: #fff;
  border-radius: 7px;
  background-color: rgb(0, 190, 240);
  width: 176px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.see_blog_rev_border_bot {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #dbdbdb;
}

.blog_slider .owl-nav button {
  font-size: 70px !important;
  color: #000 !important;
  border: none;
  outline: none;
}

.blog_slider .owl-nav .owl-prev,
.blog_slider .owl-nav .owl-next {
  position: absolute;
  top: 43%;
  transform: translateY(-43%);
}

.blog_slider .owl-nav .owl-prev {
  left: 280px;
}

.blog_slider .owl-nav .owl-next {
  right: 280px;
}

/* End Blog  */
/* End Blog  */

/* Individual Family Wrap  */
.individual_family_section_one h2 {
  font-size: 57px;
  color: #252525;
  text-align: center;
  padding-bottom: 27px;
  margin-bottom: 43px;
  border-bottom: 1px solid #e0e0e0;
}

.individual_family_section_one p {
  line-height: 39px;
  color: #252525;
}

.individual_confused_box {
  background: url(../img/indi-family/planFinder-bg.png) no-repeat center center;
  background-size: cover;
  height: 284px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.individual_confused_box h5 {
  color: #fff;
  font-size: 57px;
}

.individual_family_planFinder {
  padding: 50px 49px;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(214, 214, 214);
  background-color: rgb(255, 255, 255);
  box-shadow: 2.5px 4.33px 5px 0px rgba(0, 0, 0, 0.12);
}

.individual_family_planFinder h2 {
  text-align: center;
  font-size: 57px;
  padding-bottom: 37px;
  color: #171717;
}

.individual_family_planFinder h4 {
  height: 86px;
  background-color: rgb(0, 190, 240);
  display: flex;
  align-items: center;
  padding: 0px 28px;
  font-size: 35px;
  color: #fff;
  margin-bottom: 50px;
}

.individual_family_planFinder h6 {
  font-size: 31px;
  color: #171717;
  padding-bottom: 40px;
}

.individual_text_con_same {
  margin-bottom: 50px;
  padding-bottom: 55px;
  border-bottom: 1px solid #d8d8d8;
}

.individual_text_con_same h2 {
  font-size: 57.4px;
  line-height: 57px;
  color: #171717;
  padding-bottom: 23px;
}

.individual_text_con_same h4 {
  font-size: 31px;
  line-height: 41px;
  color: #171717;
  padding-bottom: 20px;
}

.individual_text_con_same p {
  line-height: 39px;
  font-size: 21px;
  color: #373737;
  padding-bottom: 28px;
}


.individual_onelie_application {
  height: 151px;
  background: url(../img/indi-family/free-call-bg.png)no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 68px;
}
.ind_licence_applicant p {
  font-size: 17px;
  padding-bottom: 95px;
}
.individual_onelie_application h5 {
  font-size: 51px;
  color: #fff;
  margin-bottom: 0;
}

.individual_onelie_application p {
  font-size: 19px;
  color: #fff;
}

.individual_onelie_application p a {
  text-decoration: none;
  border-bottom: 1px solid #00bef0;
  color: #00bef0;
  padding-bottom: 0;
}


.js-scroll-bar {
  height: 80px !important;
}

iframe#mIframe {
  margin-bottom: 70px;
}

/* End Individual Wrap  */

p {
  font-size: 18px;
}
h1 {
  color: #4e5ac7;
  font-size: 40px;
  font-weight: 600;
  line-height: 45px;
  margin: 0 auto;
  text-align: left;
  text-transform: uppercase;
}
h2 {
  color: #4e5ac7;
  font-size: 36px;
  font-weight: 600;
  text-transform: capitalize;
  padding-top: 50px;
  border-top: 1px solid #4e5ac7;
  padding-bottom: 25px;
}
h3 {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
}
h3:before {
  color: #ccc;
  font-size: 18px;
  font-style: italic;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
h7 {
  color: #4286f4;
  font-size: 50px;
  font-weight: 800;
  text-transform: capitalize;
}
ol {
  margin-left: 30px;
  font-size: 18px;
  color: #4b78eb;
}
li {
  margin-left: 30px;
  font-size: 18px;
  color: #4b78eb;
}
ul {
  margin-left: 5px;
  font-size: 16px;
  padding-left: 10px;
  color: #4b78eb;
  list-style-type: square;
}

@media only screen and (max-width: 600px) {

  h1 {
    color: #4b78eb !important;
    font-size: 24px !important;
    line-height: 1.1em !important;
  }
  h2 {
    color: #4b78eb !important;
    font-size: 22px !important;
    line-height: 1.1em !important;
    padding-top: 30px;
    border-top: 1px solid #4e5ac7;
    padding-bottom: 5px;
  }
  h3 {
    background: #f9f9f9;
    border-left: solid #ccc;
    margin-left: 0px;
  }
  h3:before {
    color: #ccc;
    font-size: 18px !important;
    margin-left: 0px;
    vertical-align: -0.2em;
  }
  h7 {
    color: #4286f4;
    font-size: 30px;
    font-weight: 800;
    text-transform: capitalize;
  }
  ol {
    margin-left: 5px;
    font-size: 16px;
    color: #4b78eb;
  }
  li {
    margin-left: 5px;
    font-size: 16px;
    color: #4b78eb;
  }
  ul {
    margin-left: 5px;
    font-size: 16px;
    color: #4b78eb;
    list-style-type: square;
    padding-left: 10px;
  }
}
