* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
  /* color: var(--primary); */
}

:root {
  --primary-light: #324259;
  --primary: #003956;
  --secondary: #5BA46D;
  --black: #000000;
  --blue: #1552B8;
  --lightBlue: #39A1FF;
  --sky: #D2EDFF;
  --f8f8f8: #F8F8F8;
  --light-gray: #EFF5F9;
  --yellow: #F6BF18;
  --black-light: #324259;
  --white: #ffffff;
  --d1e9f5: #D1E9F5;
  --dashboard-primery:#D1E9F5;
  --dashboard-d9:#D9D9D9;


  --size-14: clamp(10px, 1vw, 14px);

  --size-16: clamp(14px, 1vw, 16px);
  --size-18: clamp(16px, 1vw, 18px);
  --size-20: clamp(16px, 1.2vw, 20px);

  --size-21: clamp(18px, 1.3vw, 21px);
  --size-22: clamp(18px, 1.3vw, 22px);

  --size-24: clamp(18px, 1.3vw, 24px);

  --size-32: clamp(24px, 2vw, 32px);
  --size-35: clamp(24px, 2vw, 35px);
  --size-46: clamp(18px, 3vw, 46px);
  --size-48: clamp(20px, 2vw, 48px);
  --size-60: clamp(24px, 2vw, 60px);

}
::selection{
  color: var(--white);
  background-color: var(--primary);
}
body {
  padding: 0;
  margin: 0;
  font-family: var(--raleway);
  color: var(--primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--raleway);
}

p {
  font-size: var(--size-18);
  font-weight: 400;
  /* line-height: normal; */
  font-family: var(--raleway);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--black);
}

img {
  width: 100%;
  height: auto;
}

.languagebtn {
  display: flex;
  align-items: center;
  font-size: var(--size-20);
  padding: 0.5rem;
  border-radius: 0.6rem;
  color: var(--primary);
  /* display: inline-block; */
  background-color: transparent;
  font-weight: 500;
  border: 1px solid var(--primary);
  transition: 0.1s ease-in-out;
}

.common-btn {
  font-size: var(--size-18);
  padding: 0.6rem 1.5rem;
  border-radius: 0.6rem;
  font-weight: bold;
  color: var(--white);
  display: inline-block;
  background: var(--secondary);
  transition: 0.1s ease-in-out;
  border: 1px solid var(--secondary);
  position: relative;
  z-index: 2;
  &:hover{
    border-color: var(--yellow);
    background-color: var(--yellow);
  }
}

.btn-primerry,
.btn-secondary {
  font-size: var(--size-18);
  padding: 0.6rem 1.5rem;
  border-radius: 0.6rem;
  font-weight: bold;
  color: var(--white);
  display: inline-block;
  background: var(--yellow);
  transition: 0.1s ease-in-out;
  border: 1px solid var(--yellow);
  position: relative;
  z-index: 2;
  &:hover{
    border-color: var(--black);
    background-color: var(--black);
  }
}
.HltBtn:hover {
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
  background: linear-gradient(to right, var(--blue), var(--green-light));
}
.btn-secondary {
  background: var(--primary);
  border-color: var(--primary);
}
.btn-outline{
  background: transparent;
  color: var(--black);
  border-color: #5BA46D;
  &:hover{
    color: var(--white);
  }
}
.svg-icon {
  max-width: 1.2rem;
}

/* Header */
.header {
  padding: 1rem 0 1rem;
}

.header-inner-flex {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}

.column-booknow {
  width: 100%;
}

.phone-recovery {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}

.phone-recovery p {
  margin: 0;
  padding: 0 0 0.2rem;
  font-size: var(--size-18);
  font-family: var(--lato);
  font-weight: bold;
}

.phone-recovery h5 {
  margin: 0;
  padding: 0 0 0.2rem;
  font-size: var(--size-20);
  font-weight: bold;
  color: var(--black-light);
}

.dropdownbtnlog .outlineBtn {
  font-weight: bold;
  font-size: var(--size-20);
}

.dropdownbtnlog .outlineBtn img {
  position: relative;
  top: -0.2rem;
}

/* navbar */
.navbar {
  width: 100%;
  padding:0;
  background: var(--primary);
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  transition: all 0.5s ease-in-out;
}
.navbar-brand{
  display: block;
}
.navbar-brand img {
  /* width: 15rem; */
  transition: all 0.5s ease-in-out;
}

.navbar-sticky {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-sticky .navbar-brand {
  width: 14rem;
}
.navbar-nav{
  position: relative;
}
.navbar-nav li {
  padding: 0 0.5rem;
}

.navbar-nav .nav-item.dropdown li,
#navigation-desktop-menu .menu-item {
  padding: 0;
}
.nav-link,
.menu-item a {
  font-size: var(--size-20);
  padding: 1rem;
  color: var(--white);
  font-weight: 500;
  display: inline-block;

  &:hover{
    color: var(--yellow);
  }
}
.nav-link:focus,
.nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.current_page_item a {
  color: var(--white);
  font-weight: 600;
}

.navbar-nav li .dropdown-menu,
.menu-item-has-children .sub-menu {
  background-color: var(--white);
  padding: 1rem;
  border-radius: 0rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: none;
  margin-top: 0.5rem;
}
.menu-item-has-children .sub-menu{
  max-width: 20rem;
  position: absolute;
  top: 3.8rem;
  margin: 0;
  padding: 1rem;
  list-style: none;
  transition: all ease-in-out 0.5s;
  opacity: 0;
  cursor: none;
  z-index: 2;
  display:none;
  box-shadow: 0 0 15px #c1c1c182;
}
.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  cursor: pointer;
  display:block;
}

.navbar-nav li .dropdown-item,
.menu-item-has-children .sub-menu .menu-item a {
  font-size: var(--size-20);
  padding: 0.5rem 0.8rem;
  color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.0);
  border-radius: 0.5rem;
  font-weight: 600;
}

.mobile-navbar-canva .navbar-nav li .dropdown-item,
.menu-item-has-children .sub-menu .menu-item a {
  white-space: inherit;
  display: inline-block;
}

.navbar-nav li .dropdown-item:focus,
.navbar-nav li .dropdown-item:hover,
.navbar-nav li .dropdown-item.active,
.navbar-nav li .dropdown-item:active,
.menu-item-has-children .sub-menu .menu-item:hover a,
.menu-item-has-children .sub-menu .current-menu-item a {
  color: var(--white);
  background-color: var(--yellow);
  border-color: var(--yellow);
}

.navbar-nav .dropdown-toggle::after,
.menu-item-has-children:after {
  display: inline-block;
    content: "";
  border: none;
  background: url('../img/icon/chev.svg') no-repeat;
  background-size: 1rem;
  width: 1rem;
  height: 1rem;
  margin: 0px 0 0 0.5rem;
  vertical-align: 0;
}
.menu-item-has-children:after{
  margin: 0;
}
.show.dropdown-toggle::after,
.menu-item-has-children:hover:after {
  transform: rotate(180deg);
}
.menu-item-has-children:has(.sub-menu) a{
  padding-right: 0;
  margin-right: 0.2rem;
}
.ir-nav-buttons {
  display: flex;
  gap: 10px;
}

/* Mobile Navbar */
.offcanvas {
  background: var(--primary);
}

.m-vertion {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 1rem;
}

.m-vertion .dropdownbtnlog button img,
.m-vertion .languagebtn img {
  filter: contrast(100) invert(1);
}

.m-vertion .languagebtn {
  border: none;
  color: var(--white);
}

.m-vertion .languagebtn .svg-icon {
  max-width: 2.5rem;
}

.m-vertion .dropdown-toggle::after {
  border-top-color: var(--white);
}

.mobile-navbar .nav-link {
  font-size: var(--size-20);
  padding: 0.5rem 0;
}

.mobile-navbar .nav-link:focus,
.mobile-navbar .nav-link:hover,
.mobile-navbar .navbar-nav .nav-link.active,
.mobile-navbar .navbar-nav .nav-link.show {
  color: var(--white);
}

.offcanvas-title,
.offcanvas-header .btn-close {
  color: var(--white);
}

.navbar-toggler,
.navbar-toggler:focus {
  border: none;
  box-shadow: 0 0 0 transparent;
}

.navbar-toggler-icon,
.offcanvas-header .btn-close {
  filter: invert(1) sepia(1);
}

.mobile-navbar-canva {
  display: none;
}

.hamburger-cart {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Banner */
.banner-insurance-recovery {
  padding: 4rem 0;
  background: var(--sky);
  position: relative;
}

.banner-insurance-recovery::after {
  content: '';
  width: 50%;
  height: 30%;
  border-bottom-left-radius: 2rem;
  background: var(--primary);
  position: absolute;
  top: 0;
  right: 0;
}

.banner-content {
  position: relative;
  z-index: 0;
}

.banner-content h1 {
  color: var(--primary-light);
  font-size: var(--size-60);
  margin-bottom: 1rem;
  padding: 0;
}

.banner-content span.fontbold {
  color: var(--primary-light);
}

.fontbold {
  font-weight: bold;
}

.banner-content p {
  color: var(--black-light);
  font-size: var(--size-20);
  /* line-height: var(--line-height-120); */
}

.banner-main-pic {
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

#calculatorAncher.rightinfo {
  position: fixed;
  right: 0;
  top: 48%;
  width: 13rem !important;
  box-shadow: 0 0 10px #00000030;
  z-index: 10000;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}

.leftinfo {
  position: absolute;
  left: 0;
  bottom: 1rem;
  width: 22rem !important;
  border-radius: 0.5rem;
}

.owl-theme .owl-dots {
  text-align: left;
}

/* ir-we-have-done */
.ir-we-have-done {
  padding: 4rem 0;
  background: var(--light-gray);
}

.main-title-ir {
  margin-bottom: 4rem;
}

.main-title-ir h2 {
  font-size: var(--size-60);
  color: var(--primary);
}

.title-border {
  min-width: 20rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.title-border span {
  width: 100%;
  height: 1px;
  background: var(--black);
}

.title-border img {
  flex: 0 0 auto;
}

.havedonemain {
  width: 100%;
  height: 100%;
  padding: 3rem;
  background: var(--white);
  border-top-right-radius: 4rem;
  border-bottom-left-radius: 4rem;
  text-align: center;
}

.havedonemain:hover {
  background: var(--primary);
}

.havedonemain2 {
  border-top-right-radius: 0rem;
  border-bottom-left-radius: 0rem;
  border-top-left-radius: 4rem;
  border-bottom-right-radius: 4rem;
}

.havedonemain h3 {
  font-size: var(--size-48);
  font-weight: bold;
}

.havedonemain p {
  font-size: var(--size-24);
  font-weight: 500;
}

.havedonemain:hover h3,
.havedonemain:hover p {
  color: var(--white);
}

/* ir-where-we-stand */
.ir-where-we-stand {
  padding: 4rem 0;
  background: #E8F2FF;
  position: relative;
  z-index: 1;
}

.ir-where-we-stand::after {
  content: '';
  width: 50%;
  height: 20%;
  background: url('../img/wehave-bg-ef.png') no-repeat, #fff;
  background-size: 14rem;
  background-position: -136px 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.header-flex .main-title-ir {
  max-width: 75%;
}

.we-stand-right {
  flex: 0 0 auto;
  text-align: end;
}

.we-stand-right img {
  width: 12rem;
}

.zig-zag-section .row {
  padding: 1rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.zig-zag-section .row:nth-of-type(odd) {
  background: var(--sky);
}

.zig-zag-section .row:nth-of-type(even) {
  background: var(--white);
}

.zig-zag-section .row:nth-of-type(odd) .order-02 {
  padding-left: 2rem;
}

.zig-zag-section .row:nth-of-type(even) .order-02 {
  padding-right: 2rem;
}

.zig-zag-section .row:nth-of-type(even) .order-01 {
  order: 1;
}

.stand-main-content h4 {
  font-size: var(--size-32);
}

.standlist {
  padding: 0;
  margin: 0;
}

.standlist li {
  list-style: none;
  padding: 0.5rem 0 0.5rem 2rem;
  font-size: var(--size-21);
  background: url('../img/icon/edit.svg') no-repeat;
  background-size: 1.2rem;
  background-position: 0px 1rem;
  font-weight: 500;
}

.standlist li a {
  color: var(--blue);
  text-decoration: underline;
}

/* marque-main */
.marque-main-sec {
  background: var(--secondary);
  padding: 1rem 0;
}

.marque-main {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.marque-main img {
  width: 10rem;
}

.marque-main h2 {
  color: var(--secondary);
  font-size: var(--size-60);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 6px;
  text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
}

/* ir-service-main */
.ir-service-main {
  padding: 4rem 0;
  background: #eff5f9;
  position: relative;
}

.service-box {
  width: 100%;
  background: url('../img/service-bg-ef.png') no-repeat, #fff;
  background-size: 2.9rem;
  background-position: 372px 101%;
  border-radius: 1rem;
  overflow: hidden;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.service-box:hover {
  background-color: var(--sky);
}

.service-pic img {
  width: 100%;
  height: 13.75rem;
  object-fit: cover;
  border-radius: 1rem;
}

.service-shadow {
  width: 6.2rem;
  height: 6.2rem;
  border-radius: 100%;
  background: linear-gradient(0deg, #fff 50%, rgba(255, 255, 255, 0.40) 50%);
  filter: drop-shadow(0px 5px 14px var(--blue));
  margin: -3.1rem auto 2rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-shadow::after {
  content: '';
  width: 5.7rem;
  height: 5.7rem;
  border: 1px solid var(--white);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.service-icon img {
  max-width: 3.5rem;
}

.service-content h4 {
  font-size: var(--size-32);
  font-weight: bold;
  a{
    color: var(--primary);
    &:hover{
      color: var(--yellow);
    }
  }
}

/* ir-agents-main */
.ir-agents-main {
  padding: 4rem 0;
  background: var(--light-gray);
  position: relative;
}

.ir-agents-main::after {
  content: '';
  width: 50%;
  height: 20%;
  background: url('../img/bg-ef-w-left.png') no-repeat;
  background-size: 14rem;
  background-position: 0px 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.group_btns{
  gap: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agents-box {
  margin-bottom: 4rem;
}

.content-agents {
  padding-left: 2rem;
  margin-bottom: 4rem;
}

.content-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.content-title img {
  max-width: 4rem;
}

.content-title p {
  font-size: var(--size-32);
  font-weight: 500;
}

.agent-list {
  padding: 0;
  margin: 0;
}

.agent-list li {
  list-style: none;
  padding: 0.5rem 0 0.5rem 2rem;
  font-size: var(--size-18);
  background: url('../img/icon/Question.svg') no-repeat;
  background-size: 1.2rem;
  background-position: 0px 0.8rem;
  font-weight: 500;
}

.content-agents h4 {
  font-size: var(--size-18);
  font-weight: 500;
}

/* ir-choose-us-main */
.ir-choose-us-main {
  padding: 4rem 0;
  /* background: var(--light-gray); */
}
.ir-choose-us-main .row{
  row-gap: 20px;
}
.service-details img {
  max-width: 160px;
  margin-top: -80px;
}
.choose-us-box{
  width: 100%;
  height: 77%;
  /* padding: 0 2rem 2rem; */
  padding: 5rem 2rem 2rem;
  border-radius: 1rem;
  background: var(--secondary);
  /* margin: 3rem 0rem 2rem 0rem; */
}
.choose-us-box p,
.choose-us-box b{
  color: var(--white);
}
.choose-us-box p{
  font-size: var(--size-14);
}
.us-icon{
  width:7rem;
  height:7rem;
  border-radius: 100%;
  border-bottom-right-radius: 0;
  background: var(--yellow);
  border: 1rem solid var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  margin:auto;
  position: relative;
  /* top: -3rem; */
  margin-bottom: -3.5rem;
}
.us-icon img{
  width: 100%;
  max-width: 3rem;
  filter: invert(1) sepia(1);
}
.ir-choose-us-main .col-lg-3:hover .choose-us-box,
.choose-us-box:hover{
  background: var(--primary);
}
.ir-choose-us-main .col-lg-3:hover .us-icon {
  background: var(--white);
  border-color: var(--primary);
}

.ir-choose-us-main .col-lg-3:hover .us-icon img{
  filter: invert(0) sepia(0);
}


/* .choose-us-box:hover .us-icon{
  background: var(--white);
  border-color: var(--primary);
}
.choose-us-box:hover .us-icon img{
  filter: invert(0) sepia(0);
} */
/* ir-trustworthy-main */
.ir-trustworthy-main {
  padding: 4rem 0;
  background: url('../img/bg-india.png') no-repeat, var(--sky);
  background-position: center;
  background-size: 50%;
  position: relative;
  overflow: hidden;
}

.ir-trustworthy-main:after {
  content: '';
  width: 7rem;
  height: 7rem;
  border-radius: 1rem;
  background: var(--white);
  position: absolute;
  top: -1rem;
  right: 15rem;
  z-index: 1;
}

.trustworthylist {
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.trustworthylist::after {
  content: '';
  width: 10px;
  height: 100%;
  border-left: 2px dashed var(--secondary);
  position: absolute;
  top: 0;
  left: 30px;
}

.trustworthylist::before {
  content: '';
  width: 100%;
  height: 20px;
  border-bottom: 2px dashed var(--secondary);
  position: absolute;
  bottom: 0;
  left: 30px;
}

.trustworthylist li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
}

.number-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  background: var(--secondary);
  font-size: var(--size-35);
  color: var(--white);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.number-icon::after {
  content: '';
  width: 4.6rem;
  height: 4.6rem;
  border: 2px dashed var(--secondary);
  border-radius: 100%;
  position: absolute;
  top: -5px;
  left: -5px;
}

.content-trust h4 {
  font-size: var(--size-24);
  font-weight: bold;
}

.content-trust p {
  font-size: var(--size-18);
}

.zig-zag-trusthly .row:nth-of-type(even) .order-01 {
  order: 1;
}

.trusthly-pic img {
  width: 80%;
  margin-bottom: 4rem;
}

.zig-zag-trusthly .row:nth-of-type(odd) .order-02 .trusthly-pic {
  text-align: end;
}

.zig-zag-trusthly .row:nth-of-type(even) .order-01 .trustworthylist::after {
  height: 104%;
  top: -20px;
}

.zig-zag-trusthly .row:last-child .order-01 .trustworthylist::before{
  content: none;
}
/* ir-client-first-main */
.ir-client-first-main {
  padding: 4rem 0;
}

/* .flex-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.columns {
  width: 20%;
} */

.flex-row {
  gap: 1rem;
  display: grid;
  grid-template-columns: repeat(5,1fr);
}
/* .columns {
  width: 20%;
} */

/* .client-ir-box {
  padding: 2rem;
} */

.client-ir-icon {
  width: 4.625rem;
  height: 4.625rem;
  margin: auto;
  border-radius: 1rem;
  background: url('../img/service-bg-ef-w.png') no-repeat, var(--secondary);
  background-size: 1.9rem;
  background-position: 101% 101%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.client-ir-icon::after {
  content: '';
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 100%;
  background: var(--secondary);
  position: absolute;
  bottom: 0;
  right: 4px;
}

.client-ir-icon img {
  max-width: 2.2rem;
}

.client-ir-box:hover .client-ir-icon::after {
  background: var(--primary);
}

.client-ir-box:hover .client-ir-icon {
  background: url('../img/service-bg-ef-w.png') no-repeat, var(--primary);
  background-size: 1.9rem;
  background-position: 101% 101%;
}

.client-ir-box p {
  font-size: var(--size-18);
  font-weight: 500;
}

/* ir-testimonials */
.ir-testimonials {
  padding: 4rem 0;
  background: var(--f8f8f8);
}

.owl-carousel .owl-stage {
  display: flex;
}

.testimonials-main {
  width: 100%;
  height: 100%;
  background: var(--white);
  padding: 1rem;
  gap: 20px;
  border-radius: 1rem;
  display: flex;
  /* justify-content: space-between; */
  /* align-items: stretch; */
  flex-direction: column;
}

.testimonials-main p {
  font-size: var(--size-18);
  /* line-height: 140%; */
}

.flex-test {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.test-pic{
  width: 80px;
  height: 80px;
}
.content-test h4 {
  font-size: var(--size-20);
}

.content-test h5 {
  font-size: var(--size-14);
}

.test-pic img {
  max-width: 4rem;
  border-radius: 0.5rem;
}

#testimonial .owl-nav {
  margin-top: 2rem;
}

#testimonial button.owl-next,
#testimonial button.owl-prev {
  width: 3rem;
  height: 3rem;
  background: transparent;
  border-radius: 100% !important;
  border: 1px solid #A4A5A5 !important;
}

#testimonial .owl-nav [class*='owl-']:hover,
#testimonial button.owl-next:hover span,
#testimonial button.owl-prev:hover span {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

#testimonial button.owl-next span,
#testimonial button.owl-prev span {
  font-size: 40px;
  line-height: 32px;
  color: #A4A5A5;
}

/* google-review-item */
.google-review-item {
  width: 98%;
  height: 100%;
  margin: auto;
  border: 1px solid #A4A5A5;
  border-radius: 1rem;
  padding: 1rem;
  gap: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: column;
}

.review-pic img {
  max-width: 3rem;
  border-radius: 100%;
  flex: 0 0 auto;
}

.content-reviews h4 {
  font-size: var(--size-18);
  font-weight: bold;
  margin: 0;
}

.content-reviews p {
  font-size: var(--size-16);
  font-weight: bold;
  margin: 0;
}

.rattingstart {
  display: flex;
}

.google-review-item p {
  font-size: var(--size-18);
  margin: 0;
}

#google-reviews .owl-nav {
  margin-top: 2rem;
}

#google-reviews button.owl-next,
#google-reviews button.owl-prev {
  width: 3rem;
  height: 3rem;
  background: transparent;
  border-radius: 100% !important;
  position: absolute;
  top: 40%;
}

#google-reviews button.owl-next {
  right: -3rem;
}

#google-reviews button.owl-prev {
  left: -3rem;
}

#google-reviews .owl-nav [class*='owl-']:hover,
#google-reviews button.owl-next:hover span,
#google-reviews button.owl-prev:hover span {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

#google-reviews button.owl-next span,
#google-reviews button.owl-prev span {
  font-size: 40px;
  line-height: 32px;
  color: #A4A5A5;
}

.google-review-counter {
  text-align: center;
}

.google-review-counter .rattingstart {
  display: inline-flex;
  justify-items: center;
  align-items: center;
}

.google-review-counter h4 {
  font-size: var(--size-48);
}

.googleimg img {
  width: 10rem;
}

/* Frequently */
.ir-frequently {
  padding: 4rem 0;
  background: #E8F2FF;
  margin-bottom: 3rem;
  position: relative;
}

.ir-frequently:after {
  content: '';
  width: 7rem;
  height: 7rem;
  border-radius: 1rem;
  background: var(--white);
  position: absolute;
  top: -1rem;
  right: 15rem;
  z-index: 1;
}

.frequently-ir {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1;
}

.accordion-button {
  font-size: var(--size-21);
  color: var(--primary);
  font-weight: bold;
}

.accordion-item {
  width: 48%;
  border-radius: 1rem !important;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid rgba(165, 164, 164, 0.62) !important;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: 0 0 0 transparent;
}

.accordion-body {
  padding-top: 0;
}

.accordion-button::after {
  background: url('../img/icon/plus-icon.svg') no-repeat;
  background-size: 1.3rem;
  background-position: right center;
  padding: 0;
}

.accordion-button:not(.collapsed)::after {
  background: url('../img/icon/minus.svg') no-repeat;
  background-size: 1.3rem;
  background-position: right center;
}

/* consultation-ir */

.consultation-ir {
  padding: 4rem 0;
  position: relative;
  background: var(--primary);
  overflow: hidden;
}

.consultation-bg-img {
  width: 84%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  margin-left: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.bg-white-top-left-effect {
  width: 100%;
  height: 7rem;
  background: var(--white);
  border-radius: 1rem;
  position: absolute;
  top: -1.1rem;
  left: 6rem;
}

.bg-bottom-right-effect {
  width: 12rem;
  height: 10rem;
  background: var(--primary);
  border-top-left-radius: 1rem;
  position: absolute;
  bottom: 0rem;
  right: 0rem;
  z-index: 2;
}

.consultation-free {
  position: relative;
  z-index: 2;
}

.consultation-free .main-title-ir {
  margin-bottom: 1rem;
}

.consultation-free h2 {
  color: var(--white);
  font-size: var(--size-35);
  font-weight: 600;
}

.consultation-free p {
  color: var(--white);
  font-size: var(--size-24);
  margin-bottom: 2rem;
}

.consultation-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* footer navbar */
.footer {
  background: var(--primary);
  padding: 4rem 0 2rem;
}
.footer .row:first-child{
  row-gap: 30px;
}
.footermain {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.footer-barnd {
  display: block;
  width: 19rem;
}

.located-info,
.located-info-call,
.social-media {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}

.social-media {
  padding: 0;
  /* margin: 1rem 0 0; */
  align-items: center;
  border-top: 0;
  flex-wrap: wrap;
}

.social-media li {
  list-style: none;
  display: inline-block;
}

.social-media li a {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 100%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-media li img {
  height: 1.2rem;
}

.social-media li:hover a {
  background: var(--yellow);
}

.social-media li:hover img {
  filter: brightness(0) invert(0);
}

.located-info-call {
  align-items: center;
}

.located-info a,
.located-info p,
.located-info-call a {
  color: var(--white);
  font-size: var(--size-18);
  font-weight: 400;
  opacity: 0.8;
}
.located-info-call a:hover {
  opacity: 1;
  color: var(--yellow);
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.located-info img,
.located-info-call img {
  width: 1.5rem;
  flex: 0 0 auto;
}

.navbar-link {
  padding: 0;
  margin: 0;
}

.footer-navbar h4,
.newsletter h4 {
  color: var(--white);
  font-size: var(--size-24);
  font-weight: bold;
  border-bottom: 1px solid var(--white);
  margin-bottom: 1rem;
  display: inline-block;
}

.navbar-link li {
  list-style: none;
}

.navbar-link li a {
  color: var(--white);
  font-size: var(--size-18);
  font-weight: 400;
  padding-bottom: 1rem;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  opacity: 0.8;
  &:hover{
    opacity: 1;
    color: var(--yellow);
  }
}
.footer-navbar .navbar-link{
  gap: 15px;
  display: flex;
  flex-direction: column;
}
.footer-navbar .menu-item a {
  padding: 0;
}
/* .navbar-link li a:hover {
  opacity: 1;
} */
.footer .newsletter{
  margin-top: 40px;
}
.copyright p,
.Privacypolicy a {
  color: var(--white);
  font-size: var(--size-16);
}

.Privacypolicy {
  text-align: end;
}

.Privacypolicy a:first-child {
  border-right: 1px solid var(--white);
  padding-right: 0.5rem;
  margin-right: 0.5rem;
}

.newsletter h4 {
  border: none;
  margin-top: 1rem;
}

.input-group {
  width: 100%;
  background: var(--white);
  padding: 0.2rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.newsletter input {
  font-size: var(--size-16);
  border: none;
}

.newsletter button {
  border-radius: 0.6rem !important;
}

.form-control:focus {
  border-color: #fff;
  outline: 0;
  box-shadow: 0 0 0 0rem transparent;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: var(--white);
  margin: 2rem 0;
  opacity: 0.2;
}

/*******************************
      INNER PAGE CSS
*******************************/
.inner-banner-content h1,
.inner-banner-content p {
  color: var(--primary-light);
}

/* Our History */
.ir-our-history {
  width: 100%;
  padding: 4rem 0;
  background: var(--light-gray);
}

.our-history-content {
  padding-left: 2rem;
}

.main-title-ir-inner {
  margin-bottom: 2rem;
}

.our-history-content p {
  font-size: var(--size-18);
  /* line-height: 135%; */
  margin-top: 1.5rem;
}

.our-history-content h3 {
  font-size: var(--size-32);
  font-weight: 500;
}

/* ir-our-vision-mision */
.ir-our-vision-mision {
  width: 100%;
  padding: 4rem 0;
  background: var(--d1e9f5);
  position: relative;
}

.light-gray-bg-bottom-effect {
  width: 5rem;
  height: 6rem;
  background: var(--light-gray);
  border-radius: 1rem;
  position: absolute;
  top: -1rem;
  right: 10rem;
}

.our-v-m-pic,
.our-mission-vision-content {
  margin-bottom: 2rem;
}

.our-mission-vision-content h4 {
  font-size: var(--size-24);
}

.our-mission-vision-content p {
  font-size: var(--size-18);
}

/* ir-our-promise */
.ir-our-promise-section {
  padding: 4rem 0;
}

.our-promise-pic {
  padding-right: 2rem;
  margin-bottom: 3rem;
}

.ir-promise-content p {
  font-size: var(--size-18);
  /* line-height: 135%; */
}

.promise-list {
  padding: 0;
}

.promise-list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.promise-list li::after {
  content: '';
  width: 3px;
  height: 140%;
  border-left: 3px dashed var(--secondary);
  position: absolute;
  top: 0px;
  left: 26px;
}

.promise-list li .number-icon {
  width: 3.2rem;
  height: 3.2rem;
  font-size: var(--size-24);
}

.promise-list li .number-icon::after {
  content: '';
  width: 3.9rem;
  height: 3.9rem;
  top: -6px;
  left: -5px;
}

.promise-contents h4 {
  font-size: var(--size-24);
  margin-bottom: 2rem;
  font-weight: bold;
}

.promise-contents h5 {
  font-size: var(--size-21);
  margin: 3rem 0 0;
  font-weight: bold;
}

/* ir-real-stories */
.ir-milestones {
  width: 100%;
  padding: 4rem 0;
  background: var(--light-gray);
  position: relative;
}

.bg-white-bottom-left-effect {
  width: 6rem;
  height: 6rem;
  background: var(--white);
  border-radius: 1rem;
  position: absolute;
  bottom: -1rem;
  left: 10rem;
}

.milestones-heading {
  text-align: center;
}

.milestones-heading h2 {
  font-size: var(--size-48);
  line-height: 120%;
}

.milestones-heading p {
  font-weight: 500;
}

.milestones-content {
  position: relative;
  margin: 8rem auto;
  max-width: 1000px;
}

.milestones-main-image {
  text-align: center;
}

.milestones-point {
  display: flex;
  align-items: start;
  gap: 0;
}

.milestones-details {
  max-width: 210px;
}

.milestones-point-img {
  max-width: 200px;
}

.milestones-details h3 {
  background: var(--secondary);
  width: 96px;
  padding: 8px;
  font-size: var(--size-32);
  font-weight: bold;
  line-height: 120%;
  color: var(--white);
  text-align: center;
}

.milestones-details p {
  font-size: var(--size-24);
  font-weight: 600;
  /* line-height: 113%; */
}

.point-01 {
  position: absolute;
  left: -13px;
  bottom: -12%;
  align-items: center;
}

.point-02 {
  position: absolute;
  top: -9%;
  left: 11%;
  gap: 40px;
}

.point-03 {
  position: absolute;
  bottom: -2%;
  right: 16%;
  flex-direction: row-reverse;
}

.point-03 .milestones-details {
  text-align: right;
}

.point-03 h3 {
  float: right;
}

/* ir-team */
.ir-team {
  padding: 4rem 0 0;
}

.team-box {
  margin-bottom: 4rem;
}

.team-pic {
  width: 100%;
  background: var(--d1e9f5);
  margin-bottom: 1rem;
  border-radius: 0.8rem;
  position: relative;
}

.team-pic::after {
  content: '';
  width: 3rem;
  height: 3rem;
  background: url('../img/icon/curves-bg.svg') no-repeat;
  background-size: 3rem;
  position: absolute;
  bottom: 0;
  right: 0;
}

.circle-eff {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 100%;
  background: var(--secondary);
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  z-index: 1;
}

.team-pic img {
  height: 20.688rem;
  object-fit: cover;
  border-radius: 0.8rem;
}

.team-content h4 {
  font-size: var(--size-21);
  color: var(--black);
  font-weight: bold;
}

.team-content p {
  font-size: var(--size-18);
  color: var(--black);
}

/* General Insurance */
.ir-Mis-selling {
  width: 100%;
  padding: 4rem 0;
}

.ir-Mis-selling h2 {
  font-size: var(--size-48);
  color: var(--primary);
}

.ir-Mis-selling-box {
  background: var(--secondary);
  padding: 4rem 5rem;
  width: 100%;
  margin: auto;
  border-radius: 20px;
}

.min-selling-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.min-selling-content h3 {
  color: var(--white);
  font-size: var(--size-24);
  font-weight: 700;
}

.min-selling-content p {
  color: var(--white);
  font-size: var(--size-16);
  font-weight: 500;
  font-style: italic;
}

.ir-Mis-selling-box .owl-theme .owl-dots {
  text-align: center;
}

.ir-Mis-selling-box .owl-theme .owl-dots .owl-dot span {
  width: 35px;
  height: 6px;
  background: var(--f8f8f8);
  border: none;
  border-radius: 0;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--lightBlue);
  border-color: var(--lightBlue);
}

.min-selling-content img {
  max-width: 50px;
}

/* ir-agents-main-wraper */
.ir-agents-main-wraper {
  padding: 4rem 0;
  background: var(--light-gray);
  position: relative;
}

.white-bg-bottom-effect {
  width: 5rem;
  height: 6rem;
  background: var(--white);
  border-radius: 1rem;
  position: absolute;
  top: -1rem;
  right: 10rem;
}

/* ir-blog-posts */
.ir-blog-posts {
  padding: 5rem 0;
  background: var(--light-gray);
  position: relative;
  margin-bottom: 5rem;
}

.blog-post-ef {
  width: 6rem;
  height: 6rem;
  background: var(--white);
  border-radius: 1rem;
  position: absolute;
  bottom: -1rem;
  right: 25rem;
}

.blog-post {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  overflow: hidden;
}

.blog-post-body {
  padding: 35px 15px;
}

.blog-post-body span {
  font-size: var(--size-18);
  display: flex;
  align-items: center;
}

.blog-post-body span img {
  width: 20px;
  margin-right: 5px;
}



.blog-post-image {
  height: 300px;
  position: relative;
  overflow: hidden;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.blog-post-image::after {
  content: '';
  width: 100%;
  height: 100%;
  background: url('../img/blog-post-image-ef.png') no-repeat;
  background-size: 4rem;
  background-position: 100% 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.media-coverage-post .blog-post-image {
  height: 450px;
}
.blog-post-body h2 {
  font-size: var(--size-24);
  font-weight: 700;
  line-height: 140%;
  margin: 20px 0;
}

.blog-post-body p {
  font-weight: 500;
  margin-bottom: 30px;
}

.read-more-btn {
  display: inline-block;
  padding: 0;
  color: var(--secondary);
  font-weight: 700;
  font-size: var(--size-18);
  line-height: normal;
}

.blog-pagination {
  margin-top: 0;
}

.blog-pagination .pagination {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination .page-item {
  margin: 2px;
}

.blog-pagination .page-numbers {
  margin-top: 100px;
  background: transparent;
  border: none;
  color: var(--black);
  font-size: var(--size-24);
  font-weight: 400;
  padding: 12px 25px;
  border-radius: 5px;
}

.blog-pagination .page-numbers:focus {
  color: var(--white);
  background-color: var(--yellow);
  outline: 0;
  box-shadow: none;
}

.blog-pagination .page-numbers.current {
  z-index: 3;
  border-color: transparent;
  background: var(--yellow);
  color: var(--white);
}

.blog-pagination .pagination .prev ,
.blog-pagination .pagination .next
{
  border: 1px solid #dedede;
  border-radius: 5px;
}

.blog-pagination .pagination .prev img,
.blog-pagination .pagination .next img {
  width: 10px;
}

.blog-pagination .page-numbers img {
  width: 20px;
}

/* ir-career */
.ir-career {
  width: 100%;
  padding: 10rem 0 7rem;
  background: var(--d1e9f5);
  position: relative;
}

.ir-career .light-gray-bg-bottom-effect {
  width: 5rem;
  height: 6rem;
  background: var(--light-gray);
  border-radius: 1rem;
  position: absolute;
  top: -1rem;
  right: 25rem;
}

.our-career-content {
  padding-left: 2rem;
}

.our-career-content p {
  font-size: var(--size-18);
  /* line-height: 135%; */
  margin-top: 1.5rem;
}

.our-career-content h3 {
  font-size: var(--size-32);
  font-weight: 500;
}

.current-opening .opening-heading {
  text-align: center;
  margin-top: 6rem;
  margin-bottom: 4rem;
}

.current-opening .opening-heading h2 {
  font-size: var(--size-48);
  font-weight: 500;
  line-height: 120%;
}

.ir-career .current-opening .card {
  text-align: center;
  background: var(--white);
  padding: 25px 15px;
  border-radius: 20px;
}

.ir-career .current-opening .card h3 {
  font-size: var(--size-24);
  font-weight: 700;
  line-height: 140%;
}

.ir-career .current-opening .card p {
  font-size: var(--size-18);
  font-weight: 500;
  line-height: normal;
}

.card-btn {
  margin-top: 30px;
}

.opening-btn {
  font-size: var(--size-18);
  font-weight: 700;
  background: var(--secondary);
  border: 1px solid var(--secondary);
  color: var(--white);
  width: 80%;
  padding: 0.5rem;
  border-radius: 0.6rem;
}

.current-opening .card:hover {
  background: var(--secondary);
  color: var(--white);
}

.current-opening .card:hover p {
  color: var(--white);
}

.current-opening .card:hover .opening-btn {
  background: var(--yellow);
  border: 1px solid var(--white);
}

/* Work-benifits */
.ir-work-benifits {
  padding: 4rem 0;
}

.work-benifits-content h2 {
  font-size: var(--size-48);
  max-width: 370px;
}

.work-benifits-content p {
  font-weight: 700;
}

.benifit-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benifit-list li {
  display: flex;
  align-items: start;
  gap: 25px;
  background-color: var(--white);
  border-radius: 20px;
  cursor: pointer;
  padding: 20px 30px;
}

.benifit-list li:hover {
  background-color: #F3FFF6;
  border-radius: 20px;
}

.benifit-number img {
  width: 60px;
}

.benifit-content h3 {
  font-size: var(--size-24);
  font-weight: 700;
  line-height: 140%;
}

.benifit-content p {
  font-weight: 500;
}

/* Ir-Popup-form */
.ir-career .modal-dialog {
  max-width: 32%;
  margin-right: auto;
  margin-left: auto;
}

.ir-career .modal-content {
  border-radius: 20px;
}

.ir-career .modal-header {
  border: 0;
  padding: 30px 40px 0;
}

.ir-career .modal-header h2 {
  font-size: var(--size-24);
  font-weight: bold;
}

.ir-career .modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 0 40px 30px;
}

.ir-career .form-control {
  border: none;
  background-color: var(--f8f8f8);
  padding: 20px;
  font-size: 16px;
  font-weight: 300;
  color: var(--primary);
}

.ir-career .form-control:focus {
  background-color: var(--f8f8f8);
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.ir-career .btn-close {
  --bs-btn-close-color: #000;
  --bs-btn-close-bg: url(../img/icon/close-btn.svg);
  opacity: 1;
  width: 1.5em;
  height: 1.5em;
  background: transparent var(--bs-btn-close-bg) center / 1.5em auto no-repeat;
}

.ir-career .upload-label {
  color: #1a2a36;
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.ir-career .upload-btn {
  background-color: #f8c024;
  border: none;
  color: white;
  padding: 10px 20px;
  width: 145px;
  border-radius: 15px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
  border-top-left-radius: 15px !important;
  border-bottom-left-radius: 15px !important;
}

.ir-career .upload-btn:hover {
  background-color: #e0a800;
}

input[type="file"] {
  display: none;
}

.ir-career .modal-footer {
  border-top: 0;
  justify-content: flex-start;
}

.ir-career .send-btn {
  width: 214px;
  padding: 12px 0;
}

/* Faq-information-section */
.ir-faq-main {
  padding: 4rem 0;
}

.faq-heading {
  text-align: center;
  margin-bottom: 50px;
}

.faq-heading h2 {
  font-size: var(--size-48);
  line-height: 120%;
}

.ir-faq-main .form-control {
  border: 1px solid #A4A5A5;
  padding: 15px;
  border-right: 0;
  border-radius: 10px 0 0 10px;
  font-size: var(--size-18);
  font-weight: 400;
}

.ir-faq-main .input-group-text {
  display: flex;
  align-items: center;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  text-align: center;
  white-space: nowrap;
  background-color: transparent;
  border-left: 0;
  border: 1px solid #A4A5A5;
  border-radius: 0 10px 10px 0;
}

.faq-tab-select {
  background: var(--f8f8f8);
  border-radius: 15px;
  border-bottom: 2px solid var(--secondary);
}
.faq-tab-select .flex-column{
  background: transparent;
  border-right: 0;
}
.faq-tab-select .nav-pills .nav-link {
  border-radius: 15px;
  display: block;
  text-align: start;
  color: var(--bs-btn-close-color);
  font-size: var(--size-18);
  font-weight: bold;
}

.faq-tab-select .nav-pills .nav-link.active,
.faq-tab-select .nav-pills .show>.nav-link {
  color: var(--white);
  background-color: var(--secondary);
  border-radius: 15px;
}

.ir-faq-accordion .accordion-item {
  width: 100%;
}

.ir-faq-accordion .accordion-button:not(.collapsed)::after {
  background: url('../img/icon/green-minus.svg') no-repeat;
  background-size: 1.3rem;
  background-position: right center;
}

.ir-faq-accordion .accordion-button:not(.collapsed) {
  margin-bottom: 0;
  color: var(--secondary);
}

.ir-faq-accordion .accordion-item {
  border-radius: 1rem !important;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid var(--secondary) !important;
}

.ir-faq-main .input-group {
  margin: 0 0 30px;
}

/* ir-our-contact */
.ir-our-contact {
  width: 100%;
  padding: 4rem 0;
  background: var(--white);
}

.our-contact-map {
  position: relative;
}

.our-contact-map::before {
  content: "";
  position: absolute;
  background-color: var(--white);
  width: 20%;
  height: 15%;
  right: 0;
  top: 0;
  border-radius: 0 0 0 20px;
}

.our-contact-map::after {
  content: "";
  position: absolute;
  background-color: var(--white);
  width: 30%;
  height: 20%;
  left: 0;
  bottom: 0;
  border-radius: 0 20px 0 0;
}

.our-contact-map iframe {
  width: 100%;
  height: 450px;
  border-radius: 20px;
}

.our-contact h2 {
  font-size: var(--size-48);
}

.our-contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.our-contact-details img {
  width: 20px;
}

.contact-info,
.contact-info-call {
  display: flex;
  align-items: start;
  gap: 10px;
  max-width: 345px;
}

.contact-info p {
  font-weight: 500;
  margin: 0;
}

.contact-info-call a {
  font-size: var(--size-18);
  font-weight: 500;
  line-height: normal;
  color: var(--primary);
}

/* ir-policies */
.ir-policies {
  width: 100%;
  padding: 8rem 0;
  background: var(--d1e9f5);
  position: relative;
}

.ir-policies::after {
  content: '';
  width: 7rem;
  height: 7rem;
  border-radius: 1rem;
  background: var(--white);
  position: absolute;
  top: -1rem;
  right: 15rem;
  z-index: 1;
}

.ir-policies .opening-heading {
  margin-top: 0;
}

.ir-policies .policy-holders {
  margin-bottom: 4rem;
}

.ir-policies .havedonemain:hover {
  background: var(--secondary);
}

.ir-policies .havedonemain:hover span {
  color: var(--white);
}

.ir-policies .havedonemain span {
  font-size: var(--size-48);
  font-weight: bold;
  color: var(--primary);
}

.policy-details {
  display: flex;
  align-items: start;
  gap: 10px;
}

.policy-details img {
  width: 32px;
}

.policy-details p {
  font-weight: 500;
}

/* Get-in-Touch */
.ir-get-in-touch {
  padding: 4rem 0;
}

.get-in-touch-content h2 {
  font-size: var(--size-48);
}

.social-icon-list {
  list-style-type: none;
  display: flex;
  justify-content: left;
  gap: 20px;
  margin: 4rem 0 0;
  padding: 0;
}

.social-icon-list li a {
  width: 50px;
  height: 50px;
  /* padding: 15px; */
  border-radius: 50%;
  font-size: 20px;
  display: block;
  text-align: center;
  align-content: center;
  background-color: var(--secondary);
  &:hover{
    background-color: var(--yellow);
  }
}
.social-icon-list li a img{
  height: 1.2rem;
  filter: invert(10) brightness(5);
}

.main-form {
  background: var(--primary);
  border-radius: 20px;
  padding: 50px 70px;
}

.main-form .nav-link {
  font-size: var(--size-18);
  padding: 0.6rem 1.5rem;
  border-radius: 0.6rem;
  font-weight: bold;
  width: 240px;
  color: var(--white);
  display: inline-block;
  background-color: transparent;
  transition: 0.1s ease-in-out;
  border: 1px solid var(--white);
  position: relative;
  z-index: 2;
}

.main-form .nav-pills .nav-link.active,
.main-form .nav-pills .show>.nav-link {
  color: var(--white);
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
}

.main-form .nav-pills {
  display: flex;
  justify-content: space-between;
}

.form-box-heading h3 {
  color: var(--white);
  font-size: var(--size-24);
  font-weight: bold;
  line-height: normal;
}

.form-box-content p {
  font-size: var(--size-16);
  font-weight: 300;
  color: var(--white);
}

.form-check-box {
  display: flex;
  gap: 20px;
}

.form-check .form-check-label {
  color: var(--white);
  padding-left: 10px;
  font-size: var(--size-16);
}

.form-check {
  display: flex;
  align-items: center;
}

.form-check-input {
  width: 1.3em;
  height: 1.3em;
  background-color: transparent;
  border: 2px solid var(--white);
  box-shadow: none;
}

.form-check-input:checked {
  background-color: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.form-check-input:focus {
  border: 2px solid var(--white);
  outline: 0;
  box-shadow: none;
}

.main-form .form-control {
  padding: 0.8rem 0.75rem;
  border: none;
  font-size: var(--size-16);
  font-weight: 300;
  color: var(--primary);
}

/* .main-form .send-btn {
  width: 40%;
} */

.main-form .upload-container {
  border: 1px solid var(--white);
  border-radius: 0.5rem;
  margin-top: 1rem;
  padding: 1rem;
  width: 100%;
  background: transparent;
}

.main-form .upload-label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--white);
}

.main-form .adhaar-upload-btn .upload-btn {
  width: 100%;
  display: inline-block;
  background: #EEEEEE;
  border: none;
  padding: 10px 40px;
  border-radius: 10px;
}

.main-form .required-asterisk {
  color: red;
}

.main-form .adhaar-upload-btn {
  display: flex;
  justify-content: space-between;
}

.pan-btn {
  width: 180px;
  display: inline-block;
  background: #EEEEEE;
  border: none;
  padding: 10px 40px;
  border-radius: 10px;
  border-top-left-radius: 15px !important;
  border-bottom-left-radius: 15px !important;
}

.bank-details {
  border: 1px solid var(--white);
  border-radius: 0.5rem;
  margin-top: 1rem;
  padding: 1rem;
  width: 100%;
  background: transparent;
}

.bank-details label {
  color: var(--white);
}

/* media-coverage-post */
.media-coverage-post {
  margin-bottom: 0;
  background-color: var(--white);
}

.media-coverage-post .blog-post {
  background-color: var(--f8f8f8);
}

.media-coverage-post .blog-post-image::after {
  background: url('../img/media-post-image-ef.png') no-repeat;
  background-size: 6.5rem;
  background-position: 100% 100%;
  bottom: -2px;
  right: -1px;
}


/* Video-Section */
.video-gallery-sec {
  background: #EFF5F9;
  padding: 4rem 0 7rem;
  position: relative;
}

.video-gallery-ef {
  width: 6rem;
  height: 6rem;
  background: var(--white);
  border-radius: 1rem;
  position: absolute;
  bottom: -1rem;
  right: 10rem;
}

.video-group {
  background: var(--white);
  padding: 10px;
  border-radius: 15px;
  border: 2px solid var(--primary);
}

.video-group .video-thumbnail {
  position: relative;
  display: inline-block;
}
.video-group .thumbnail-image{
  height: 275px;
  overflow: hidden;
  border-radius: 20px;
}
.video-group .thumbnail-image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.video-group .play-button {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  cursor: pointer;
}

.video-group .modal-dialog {
  max-width: 800px;
}

.video-group .modal-content {
  border-radius: 20px;
}

.video-group .modal-body {
  padding: 0;
  height: 450px;
}

.video-group .video-iframe {
  width: 100%;
  height: 450px;
  padding: 5px;
  border: none;
  border-radius: 20px;
  position: relative;
}

.customer-page-review {
  background: var(--white);
}

.customer-review-accordion::after {
  background: var(--white);
}

.video-review {
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.video-review img {
  width: 80px;
}

.video-review-text h3 {
  color: var(--white);
  font-size: var(--size-18);
  font-weight: 700;
  line-height: 120%;
}

.video-review-text p {
  font-size: var(--size-16);
  font-weight: 400;
  line-height: normal;
  color: var(--white);
}

.video-gallery-button {
  text-align: center;
  margin-top: 4rem;
}

.video-gallery-button a {
  width: 200px;
}
.main-pic{
  position: relative;
}
/* Video-Banner */
.banner-main-pic .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.banner-video-popup .modal-dialog {
  max-width: 800px;
}

.banner-video-popup .modal-content {
  border-radius: 20px;
}

.banner-video-popup .modal-body {
  padding: 0;
  height: 450px;
}

.banner-video-popup .video-iframe {
  width: 100%;
  height: 450px;
  padding: 5px;
  border: none;
  border-radius: 20px;
}

.nav-modal .modal-content {
  background: var(--primary);
  border-radius: 20px;
}

.nav-modal .modal-body {
  background: var(--primary);
  border-radius: 20px;
}

.nav-modal .btn-close {
  --bs-btn-close-color: var(--white);
  --bs-btn-close-bg: url("../img/icon/xmark-solid-full.svg");
  width: 2em;
  height: 2em;
  background-size: 80%;
  opacity: 1;
}

.nav-modal .main-form {
  padding: 25px 10px;
}

.nav-modal .modal-header {
  border-bottom: 0;
}

.nav-modal .main-form .nav-link {
  font-size: var(--size-18);
  padding: 0.6rem 0.5rem;
  border-radius: 0.6rem;
  font-weight: bold;
  width: 220px;
  color: var(--white);
  display: inline-block;
  background-color: transparent;
  transition: 0.1s ease-in-out;
  border: 1px solid var(--white);
  position: relative;
  z-index: 2;
}

.video-group .btn-close,
.banner-about .btn-close {
  position: absolute;
  top: 1%;
  right: 1%;
  --bs-btn-close-color: var(--white);
  --bs-btn-close-bg: url("../img/icon/xmark-solid-full.svg");
  width: 2em;
  height: 2em;
  background-size: 80%;
  opacity: 1;
  z-index: 1;
}

.btn-close:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

.nav-modal .main-form .adhaar-upload-btn .upload-btn {
    width: 100%;
    display: inline-block;
    background: #EEEEEE;
    border: none;
    padding: 10px 30px;
    border-radius: 10px;
}

.channerl-create-header {
  display: flex;
  justify-content: space-between;
}
/*=================================*/
/* Dashboard */
.ir-dashboard-wrapper{
  width: 100%;
  background: var(--dashboard-primery);
  padding: 4rem 0;
}
.dashboard-main-wrap{
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
.flex-main-wrap-dashboard
/* .flex-column */
{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.flex-column{
  min-width: 20rem;
  width: auto;
  background: #F9FAFC;
  border-right: 1px solid var(--dashboard-d9);
}
.dashboard-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--dashboard-d9);
}
.dashboard-logo img{
  width: 5rem;
}
.nav.na-pills{
  padding: 1rem 0rem 1rem 1rem;
  border: none;
  justify-content: flex-start;
}
.nav-dashboard.logout{
  margin-left: 1.2rem;
}
.nav-dashboard{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  color: var(--primary);
  text-align: left;
  font-size: var(--size-16);
  font-weight: 500;
  border-right: 1px solid transparent;
  padding: 1rem 2rem 1rem 1rem;
}
.nav-dashboard img{
  width: 1.5rem;
}
.nav-dashboard:focus, 
.nav-dashboard:hover, 
.nav-dashboard.active, 
.nav-dashboard.show{
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}
/* tab-dashboard-content */
.tab-dashboard-content{
  width: 80%;
  padding: 1rem;
  background: var(--white);
}
.ir-dashboard-claim{
  width: 100%;
  height: 100%;
  min-height: 35rem;
}
.flex-dash-content,
.enquery-main-wrap-profile,
.insurance-company-select{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.profile-picture img,
.profile-picture{
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 100%;
  object-fit: cover;
  background-color:#D1D1D3;
  flex: 0 0 auto;
}
.profile-content h2,
.enquery-main-wrap-profile h2,
.editable-profile h4,
.title-form-cus h2,
.complaint-tracker-main-wrap h2{
  color: var(--primary);
  font-size: var(--size-32);
  font-weight: bold;
  font-family: var(--raleway);
}
.profile-content p,
.profile-content ul li a,
.enquery-main-wrap-profile p{
  font-size: var(--size-18);
  color: var(--primary);
}
.profile-content ul{
  margin: 2rem 0 0 0;
  padding: 0;
  list-style: none;
}
.profile-content ul li a,
.enquery-main-wrap-profile p{
  font-weight: 500;
}
.profile-content ul li img{
  margin-right: 0.5rem;
}
.enquery-main-wrap-profile{
  margin-top: 4rem;
  justify-content: space-between;
  box-shadow: 0rem 0rem 0.4rem rgba(0, 0, 0, 0.1);
  padding: 1rem;
}
.enquery-main-wrap-profile p{
  margin: 0;
}
.enquery-main-wrap-profile .btn-primerry,
.profile-content .btn-primerry{
  background-color: #5BA46D;
  border-color: #5BA46D;
  &:hover{
    background-color: var(--primary);
  }
}
.editprofiledash,
.editable-profile{
  width: 50%;
  margin: auto;
}
.editprofiledash{
  margin-bottom: 2rem;
}
.editable-profile h4{
  border-bottom: 1px solid var(--dashboard-d9);
  margin-bottom: 2rem;
}
.editable-profile label{
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.input-dash{
  background: #F9FAFC;
  border: none;
  font-size: var(--size-18);
  color: var(--black);
  padding: 0.5rem;
}
.input-dash:focus {
    border-color:#F9FAFC;
    outline: 0;
    background-color: #F9FAFC;
    box-shadow: 0 0 0 0rem transparent;
}
.customerenquery{
  width: 100%;
  margin: auto;
}
.title-form-cus{
  margin-bottom: 2rem;
}
.customerenquery .form-group{
  margin-bottom: 1rem;
}
.form-select,
.form-control{
  width: 100%;
  background-color: rgb(249,250,252,0.5);
  padding: 0.7rem;
  border-radius: 0.5rem;
  border-color: #66899A;
}
.form-select:focus,
.form-control:focus {
    border-color: #66899A;
    outline: 0;
    box-shadow: 0 0 0 0.0rem transparent;
}
.customerenquery .form-check-input {
    width: 1.2em;
    height: 1.2em;
    background-color: transparent;
    border: 1px solid #66899A;
    box-shadow: none;
    color: var(--primary);
}
.form-check-input:checked[type=radio]{
  background-color: var(--primary);
}
.customerenquery .form-check-label{
  color: var(--primary);
  margin-bottom: 0;
}
/* complaint-tracker-main-wrap */
.complaint-tracker-main-wrap{
  width: 70%;
  margin: auto;
}
.insurance-company-select-wrp{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.insurance-company-select-wrp label{
  flex: 0 0 auto;
}
.tracker-point{
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.tracker-point li{
  font-size: var(--size-18);
  color: var(--primary);
  padding: 2rem 0rem 2rem 3rem;
  position: relative;
}
.tracker-point li::before{
  content: '';
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 100%;
  background: var(--white);
  border: 0.1rem dashed #66899A;
  position: absolute;
  left: 0;
  top: 2rem;
  z-index: 1;
}
.tracker-point li:not(:last-child)::after{
  content: '';
  width: 0.1rem;
  height: 50%;
  border-radius: 100%;
  background: #66899A;
  position: absolute;
  left: 0.8rem;
  top: 4.5rem;
}
.tracker-point li span{
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  background: #66899A;
  position: absolute;
  left: 0.4rem;
  top: 2.4rem;
  z-index: 1;
}
.tracker-point li:not(:last-child).active::before{
  border-color: #5BA46D;
}
.tracker-point li.active span,
.tracker-point li.active::after{
  background: #5BA46D;
}
/* .tracker-point li:not(:last-child).active span,
.tracker-point li:not(:last-child).active::after{
  background: #5BA46D;
} */
.dividerli{
  width: 93%;
  margin-left: auto;
  height: 0.1rem;
  background: var(--dashboard-d9);
}

/* single post page style */
.singlePostSec{
  padding-block: 100px;
  background: var(--light-gray);
  position: relative;
  margin-bottom: 5rem;
}

.singlePost_container {
  padding: 25px;
  border-radius: 20px;
  background: var(--white);
}
.blog-post-body h1{
  font-weight: 700;
  margin-block: 20px 30px;
  font-size: var(--size-48);
}
.singlePostThumb{
  height: 600px;
}
.socialShare{
  gap: 10px;
  display: flex;
  align-items: center;
}

.video-group .btn-close,
.banner-about .btn-close,
.banner-customer-review .btn-close{
  position: absolute;
  top: 1%;
  right: 1%;
  --bs-btn-close-color: var(--white);
  --bs-btn-close-bg: url("../img/icon/xmark-solid-full.svg");
  width: 2em;
  height: 2em;
  background-size: 80%;
  opacity: 1;
  z-index: 1;
}

.btn-close:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

.owner_wrapper{
  gap: 10px;
  display: flex;
  margin-top: 15px;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--primary);
}
.owner_img {
  width: 85px;
  height: 85px;
  border-radius: 10px;
  overflow: hidden;
}
.owner_info{
  padding: 12px;
  h5{
    color: var(--white);
    font-size: var(--size-20);
  }
  p{
    color: var(--white);
    font-size: var(--size-16);
    margin-bottom: 0;
  }
}

.question_img{
  margin-top: 80px;
}

.ir-google-review{
  padding: 4rem 0;
  position: relative;
  background-color: var(--white);
}
.ir-google-review::before{
  content: "";
  width: 7rem;
  height: 7rem;
  border-radius: 1rem;
  background: var(--white);
  position: absolute;
  top: -6rem;
  right: 15rem;
  /* z-index: 1; */
}
.gtranslate_wrapper .gt_selector {
  border: 0;
  font-size: var(--size-16);
  &:focus-visible{
    outline: 0;
  }
}

.registration-messages {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 4px;
}
.registration-messages.success {
    background-color: #dff0d8;
    color: #3c763d;
}
.registration-messages.error {
    background-color: #f2dede;
    color: #a94442;
}
.editprofiledash .profile-content .btn-primerry{
  cursor: pointer;
  &:hover{
    border-color: var(--black);
    background-color: var(--black);
  }
}
.edit-profile-messages {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 4px;
}
.edit-profile-messages.success {
    background-color: #dff0d8;
    color: #3c763d;
}
.edit-profile-messages.error {
    background-color: #f2dede;
    color: #a94442;
}

.customerenquery .forminator-ui .forminator-row{
  margin-bottom: 0!important;
}
.customerenquery .forminator-ui .forminator-row .form-group{
    border-radius: 0.5rem;;
}

.signinContainer{
  max-width: 800px;
  margin-inline: auto;
}
.signinContainer .nav-pills{
  gap: 40px;
  justify-content: center;
}
.signinContainer .nav-pills .nav-item .nav-link{
  color: var(--primary);
}
.signinContainer .nav-pills .nav-item .nav-link.active{
  color: var(--white);
  background-color: var(--primary);
}
.signinContainer  .tab-pane{
  padding: 40px;
  color: var(--white);
  background-color: var(--primary);
}
.signinContainer  .tab-pane .title-form-cus h2{
  color: var(--white);
}

.title-form-cus label{
  display: block;
}
.title-form-cus input{
  width: 50%;
  font-weight: 300;
  color: var(--primary);
  border-radius: 0.5rem;
  padding: 0.8rem 0.75rem;
  font-size: var(--size-16);
  border: 1px solid var(--black-light);
  background-color: rgb(249, 250, 252, 0.5);
}
.title-form-cus .login-submit .button-primary{
  font-size: var(--size-18);
  padding: 0.6rem 1.5rem;
  border-radius: 0.6rem;
  font-weight: bold;
  color: var(--white);
  display: inline-block;
  background: var(--secondary);
  transition: 0.1s ease-in-out;
  border: 1px solid var(--secondary);
  position: relative;
  z-index: 2;
  &:hover{
    border-color: var(--primary);
    background-color: var(--primary);
  }
}


.forminator-description {
  display: none!important;
}

.buttons_group {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}


.point-01 .milestones-details,
.point-02 .milestones-details {
  display: flex;
  max-width: 210px;
  flex-direction: column;
  align-items: flex-start;
}
.point-03 {
  position: absolute;
  bottom: -5%;
  right: 16%;
  flex-direction: row-reverse;
}

.point-03 .milestones-details {
  display: flex;
  max-width: 210px;
  text-align: right;
  align-items: flex-end;
  flex-direction: column;
}

.disclaimerText_area {
  padding: 15px;
  margin-top: 40px;
  border-radius: 10px;
  background-color: #6a6a6a61;
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  backdrop-filter: blur(8px) saturate(120%);
  backdrop-clip: padding-box;

  p{
    font-size: var(--size-14);
    margin-bottom: 0;
  }
}