@font-face {
  font-family: "League Spartan";
  src: url("../fonts/LeagueSpartan-Bold.woff2") format("woff2"),
    url("../fonts/LeagueSpartan-Bold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url(" ../fonts/DMSans-Bold.woff2") format("woff2"),
    url("../fonts/DMSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Agrandir";
  src: url("../fonts/agrandir-regular.woff2") format("woff2"),
    url("../fonts/agrandir-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "League Spartan Medium";
  src: url("../fonts/LeagueSpartan-Medium.woff2") format("woff2"),
    url("../fonts/LeagueSpartan-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #fff;
  --black: #000;
  --color_yellow: #ffd700;
  --color_blue: #0057b7;
  --color_green: #0a9b3f;
  --color_warning_red: #e80008;
  --color_dark_green: #068936;
  --top_space: 145px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  font-size: 16px;
  font-weight: 400;
  position: relative;
  font-family: "Agrandir", sans-serif;
}

html {
  position: relative;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

:focus {
  outline: none;
}

input[type="submit"],
button {
  -webkit-appearance: none;
}

select {
  word-wrap: normal;
}

::-webkit-input-placeholder {
  color: #6f6f6f;
}

:-moz-placeholder {
  color: #6f6f6f;
}

::-moz-placeholder {
  color: #6f6f6f;
}

ul {
  list-style: none;
}

.clr {
  clear: both;
  float: none;
  display: block;
}

.clr:after,
.afclr:after {
  clear: both;
  float: none;
  display: block;
  content: "";
}

.wrapper {
  width: 100%;
  max-width: 1188px;
  padding: 0 20px;
  margin: 0 auto;
}

.outer_block {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: var(--color_blue);
}

.paragraph_pra p {
  font-family: "Agrandir";
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 20px 0;
}

/* .paragraph_pra p:last-child,
.heading_pra p:last-child {
    padding-bottom: 0;
} */

.site_btn {
  font-size: 36px;
  line-height: 1.2;
  font-weight: bolder;
  font-family: "League Spartan";
  font-style: normal;
  text-align: center;

  display: inline-block;
  border-style: none;
  border-radius: 10px;
  background-color: var(--color_green);
  text-shadow: none;
  color: var(--white);
  background-repeat: no-repeat;
  transition: background-color 0.3s ease;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -ms-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  padding: 22px 29px 12px;
  box-shadow: 0px 4px 9px #00000094 !important;
  transition: box-shadow 0.3s ease;
}

.site_btn:hover {
  background-color: var(--black);
}

.heading_02 {
  text-align: center;
}

.heading_02 h2 {
  font-size: 56px;
  font-family: "League Spartan";
  font-weight: 400;
  font-style: normal;
  text-align: center;
  line-height: 1.2;
  color: var(--black);

  background-image: url("../images/heading-bg-image.webp");

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  display: inline-block;
  padding: 20px;
  margin: auto;
}

/* //Header// */

.header_section {
  padding: 36px 0 31px;
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.19); */
  background-color: var(--white);
}

.sticky_header {
  position: fixed;
  left: 0;
  right: 0;
  top: -80px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.19);
}

.sticky_header.header_is_sticky {
  top: 0;
  opacity: 1;
  visibility: visible;
  z-index: 100;
}

/* .header_outer_block {
    max-width: 1060px;
    margin: auto;
} */

.header_inner_box {
  display: flex;
  align-items: center;
  /* justify-content: center; */
}

.header_img_sec {
  width: 50%;
  padding-left: 5px;
}

.header_img_b a {
  display: inline-block;
}

.header_img_b img {
  display: block;
  width: 100%;
  max-width: 423px;
  height: auto;
}

.header_btn_sec {
  width: 50%;
}

.header_btn_box {
  display: flex;
  justify-content: flex-end;
  padding-right: 30px;
  margin-top: -6px;
}

.header_btn_box a {
  display: inline-block;
}

.header_btn {
  display: block;
  border-style: none;
  border-radius: 10px;
  background: var(--color_blue);
  box-shadow: none;
  text-shadow: none;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  font-family: "DM Sans";
  font-style: normal;
  text-align: center;
  background-repeat: no-repeat;
  padding: 19px 26px;
  transition: background-color 0.3s ease;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -ms-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
}

.header_btn:hover {
  background-color: var(--black);
}

/* Banner Section */

.banner_section {
  /* margin-top: var(--top_space); */
}

.banner_sec_outer {
  position: relative;
}

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

.banner_image_sec img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner_sec_inner {
  padding: 62px 0 45px;
  display: flex;
  flex-wrap: wrap;
}

.banner_info_b {
  width: 58%;
  padding-right: 30px;
  padding-bottom: 45px;
}

.banner_main_img_b {
  width: 42%;
}

.heading_title h1 {
  font-family: "League Spartan", sans-serif;
  line-height: 1;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  font-size: 82px;
  color: var(--black);
  font-style: normal;
  font-weight: 400;
}

.heading_title h2 {
  color: var(--black);
  font-size: 54px;
  font-family: "League Spartan", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1.2;
}

.banner_paint_bg h2 {
  color: var(--white);
  background-image: url("../images/paint-line-image.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: -2px 0;
  display: inline-block;
  padding: 20px 88px 20px;
  margin-left: 12px;
  margin-top: 8px;
}

.banner_icon_list {
  padding-left: 20px;
}

.banner_pra {
  padding: 20px 0 15px 20px !important;
}

.banner_icon_list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* padding-top: 16px; */
}

.banner_icon_list li {
  display: flex;
  gap: 3px;
}

.banner_list_icon {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}

.banner_list_icon svg {
  width: 100%;
  display: block;
  height: 100%;
}

.banner_icon_list li span {
  font-size: 26px;
  line-height: 1.4em;
  font-family: "Agrandir";
  word-spacing: -1px;
}

.banner_icon_list li span b {
  font-size: 25px;
  font-family: "League Spartan", sans-serif;
  font-weight: 100;
}

.banner_btn {
  display: inline-block;
  position: relative;
  padding-left: 10px;
}

.banner_info_content {
  max-width: 600px;
}

.banner_info_content p span {
  font-family: "League Spartan", sans-serif;
}

.banner_click_img {
  display: block;
  width: 103px;
  position: absolute;
  right: -17px;
  left: 95%;
  animation: flashAnimation 1s infinite;
  top: 36px;
}

.banner_click_img img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes flashAnimation {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.banner_main_img {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.banner_main_img img {
  display: block;
  width: auto;
  height: auto;
  margin-left: -130px;
  object-fit: contain;
}

.featured_slider_section {
  margin-top: -45px;
  position: relative;
  z-index: 0;
  margin-bottom: 90px;
}

.featured_slider_sec_inner {
  padding: 8px 20px;
  box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.5019607843137255);
  border-radius: 35px;
  min-height: 70px;
  background-color: var(--white);
  margin: 0 10px;
}

.featured_slider_block {
  max-height: 70px;
  overflow: hidden;
}

.featured_swiper_img_box {
  position: relative;
  padding-top: 70px;
  border-radius: 5px;
  transition: all 0.3s ease;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.featured_swiper_img_box img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  max-height: 100%;
  width: auto;
  padding: 11px 6px;
  height: auto;
}

.work_section {
  padding: 0 0 70px;
}

.work_steps_block {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, minmax(auto, 1fr));
  gap: 20px;
  padding: 33px 20px 30px;
  margin-bottom: 50px;
}

.work_step_box {
  display: block;
  width: 100%;
}

.work_step_box img {
  display: block;
  width: auto;
  height: auto;
  margin: auto;
}

.work_sec_btn {
  text-align: center;
  /* margin-top: 50px; */
}

.work_sec_btn .site_btn {
  padding: 26px 9px;
}

.pulse_active {
  -webkit-animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.reviews_section {
  padding: 70px 0;
  background-color: var(--color_yellow);
}

.reviews_sec_inner .heading_02 h2 {
  background-image: url(../images/heading-bg-white.webp);
  background-position: center;
  padding: 20px 65px;
}

.reviews_sec_box {
  margin: 30px 0 50px;
  min-height: 400px;
  padding: 0px 25px;
}

.reviews_sec_btn {
  text-align: center;
}

/* 
.reviews_sec_btn .site_btn {
    padding: 18px 41px;
} */

.team_section {
  padding: 70px 0 0;
}

.team_sec_inner .heading_02 h2 {
  background-size: 100% 100%;
  padding: 30px 22px 16px;
}

.team_sec_block {
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 85px;
  padding-top: 100px;
  max-width: 950px;
  margin: auto;
}

.team_box_inner {
  max-width: 342px;
  width: 100%;
  margin: 0 auto;
}

.team_box_inner {
  display: block;
  background: #fff;
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
  box-shadow: 0 4px 26px #00000066 !important;
  border-radius: 18px;
  padding: 40px;
  text-align: center;
}

.team_box_inner a {
  display: block;
  width: 100%;
}

.team_box_inner img {
  border-radius: 100%;
  display: block;
  width: 130px;
  height: 130px;
  margin: -90px auto 20px auto;
}

.team_box_inner h3 {
  font-weight: 700;
  font-family: "agrandir";
  font-size: 35px;
  color: var(--black);
}

.team_box_inner p {
  font-weight: 400;
  font-family: "agrandir";
  font-size: 24px;
  color: #000;
  font-style: normal;
}

.start_btn_b {
  text-align: center;
  margin-top: 45px;
}

.start_btn {
  position: relative;
  display: inline-block;
  margin: auto;
  text-align: center;
}

.start_btn .site_btn {
  font-size: 32px;
  padding: 22px 21px 18px;
}

.start_btn .banner_click_img {
  left: 87%;
  top: 47px;
}

.attorney_team_img {
  margin-top: 100px;
}

.attorney_team_img img {
  display: block;
  width: 100%;
  height: auto;
}

.footer_section {
  padding: 25px 0;
}

.footer_section_inner {
  max-width: 1000px;
  margin: auto;
}

.footer_section_inner p {
  font-size: 15px;
  font-weight: 400;
  padding-bottom: 8px;
  text-align: center;
}

.footer_section_inner p:last-child {
  padding-bottom: 0;
}

.warning_block {
  max-width: 630px;
  margin: auto;
  margin-top: 100px;
}

.warning_block img {
  display: block;
  width: 100%;
  height: auto;
}

.team_bio_sec {
  background-color: var(--white);
  padding: 60px 40px;
  display: none;
}

.team_bio_block {
  display: flex;
  flex-wrap: wrap;
  max-width: 1140px;
  margin: auto;
}

.team_bio_inner {
  width: 40%;
}

.team_bio_content_box {
  width: 60%;
}

.team_bio_img_b {
  margin-bottom: 20px;
}

.team_bio_img_b img {
  width: 100%;
  display: block;
  height: auto;
}

.team_bio_social_box {
  background-color: transparent;
  background-image: linear-gradient(180deg, gold 0, #eaf0f6 100%);
  padding: 20px;
}

.team_bio_social_box ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-content: center;
  align-items: center;
}

.team_bio_social_box ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.bio_social_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.bio_social_icon svg {
  width: 100%;
  display: block;
}

.bio_social_text {
  width: 100%;
  font-size: 20px;
  font-family: "agrandir";
  color: var(--black);
}

.team_bio_content_inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 50px;
}

.team_bio_content_inner h2 {
  color: var(--black);
  font-family: "League Spartan Medium";
  font-size: 43px;
  font-weight: 500;
  line-height: 1;
}

.team_bio_content_inner h3 {
  color: var(--black);
  font-family: "League Spartan Medium";
  font-size: 25px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}

.team_bio_content_box .paragraph_pra p {
  font-size: 17px;
  padding: 0 0 18px;
}

.team_bio_content_box .paragraph_pra p:last-child {
  padding: 0;
}

.team_bio_content_list {
  margin-top: 30px;
}

.team_bio_content_list ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.team_bio_content_list ul li {
  display: flex;
  gap: 16px;
  align-content: center;
  align-items: center;
}

.content_list_icon {
  width: 36px;
  height: 36px;
  display: block;
  flex-shrink: 0;
}

.content_list_icon svg {
  display: block;
  width: 100%;
  fill: #e7bc20;
}

.content_list_text {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5em;
}

@media (max-width: 1279px) {
  .heading_title h1 {
    font-size: 70px;
  }

  .heading_title h2 {
    font-size: 43px;
  }
}

@media (max-width: 992px) {
  .heading_title h1 {
    font-size: 48px;
  }

  .heading_title h2 {
    font-size: 36px;
  }

  .banner_icon_list li span {
    font-size: 20px;
  }

  .banner_list_icon {
    width: 24px;
    height: 24px;
  }

  .heading_02 h2 {
    font-size: 44px;
  }

  .banner_icon_list li span b {
    font-size: 20px;
  }

  .site_btn {
    font-size: 28px;
  }

  .banner_info_content {
    padding-left: 0;
  }

  .header_btn_box {
    padding-right: 0;
    margin-top: 0;
  }

  .team_bio_block {
    gap: 60px;
  }

  .team_bio_content_box {
    width: 100%;
  }

  .team_bio_inner {
    width: 100%;
  }

  .team_bio_content_inner {
    padding-left: 0;
  }

  .banner_info_b {
    width: 100%;
    padding: 0;
  }

  .banner_main_img_b {
    width: 100%;
    margin-top: 50px;
  }

  .work_steps_block {
    grid-template-columns: repeat(2, minmax(auto, 1fr));
  }

  .header_img_sec {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .work_section {
    padding: 0 0 60px;
  }

  .reviews_section {
    padding: 60px 0;
  }

  .team_section {
    padding: 60px 0 0;
  }

  .warning_block {
    margin-top: 60px;
  }

  .banner_pra {
    padding: 20px 0 20px 0px !important;
  }

  .banner_paint_bg h2 span {
    margin: 0 -26px;
  }

  .banner_sec_inner {
    text-align: center;
  }

  .banner_main_img {
    max-width: 350px;
    margin: auto;
  }

  .banner_main_img_b {
    margin-top: 10px;
  }

  .banner_icon_list {
    display: flex;
    justify-content: center;
  }

  .team_bio_block {
    gap: 40px;
  }

  .header_section {
    padding: 20px 0;
  }

  .header_btn {
    padding: 11px 20px;
    font-size: 18px;
  }

  .heading_title h1 {
    font-size: 48px;
  }

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

  .team_box_inner h3 {
    font-size: 28px;
  }

  .banner_icon_list li span {
    font-size: 20px;
  }

  .site_btn {
    font-size: 26px;
    padding: 18px 27px 13px !important;
  }

  .banner_btn {
    text-align: center;
  }

  .banner_click_img {
    width: 80px;
    right: 0px;
    top: 41px;
    height: auto;
    left: unset;
  }

  .banner_main_img img {
    margin-left: 0;
    padding-top: 20px;
  }

  .work_steps_block {
    margin-bottom: 20px;
  }

  .start_btn .site_btn {
    font-size: 26px;
  }

  .heading_02 h2 {
    font-size: 38px !important;
  }

  .team_sec_block {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, auto);
    gap: 85px;
    padding-top: 100px;
  }

  .attorney_team_img {
    margin-top: 60px;
  }

  .team_box_inner p {
    font-size: 22px;
  }
}

@media (max-width: 479px) {
  .team_box_inner {
    max-width: 324px;
  }

  .team_sec_block {
    gap: 70px;
    padding-top: 70px;
  }

  .team_box_inner img {
    width: 93px;
    height: 93px;
    margin: -80px auto 20px auto;
  }

  .featured_slider_sec_inner {
    padding: 5px 16px;
    min-height: 70px;
    margin: 0;
  }

  .content_list_text {
    font-size: 15px;
  }

  .team_bio_social_box {
    padding: 14px;
  }

  .team_bio_sec {
    padding: 50px 20px 40px;
  }

  .team_bio_content_inner h2 {
    font-size: 38px;
  }

  .team_bio_block {
    gap: 30px;
  }

  .team_bio_content_box .paragraph_pra p {
    font-size: 16px;
  }

  .team_bio_content_inner h3 {
    font-size: 20px;
  }

  .bio_social_text {
    font-size: 18px;
  }

  .header_btn {
    padding: 12px 17px;
    font-size: 16px;
  }

  .site_btn {
    font-size: 28px;
    padding: 17px 36px !important;
  }

  .banner_paint_bg h2 span {
    margin: 0-23px;
  }

  .banner_main_img_b {
    width: 100%;
    margin-top: 0;
    max-width: 350px;
  }

  .banner_btn .site_btn {
    font-size: 22px;
    background-color: var(--color_dark_green);
  }

  .site_btn:hover {
    background-color: var(--black);
  }

  .heading_02 h2 {
    font-size: 38px !important;
  }

  .reviews_sec_inner .heading_02 h2 {
    background-image: url(../images/heading-bg-white.webp);
    background-position: center center;
    padding: 11px 46px;
  }

  .team_box_inner h3 {
    font-size: 30px;
  }

  .banner_click_img {
    top: 40px;
    width: 60px;
    right: 22px;
  }

  .start_btn_b {
    text-align: center;
    margin-top: 40px;
  }

  .featured_slider_section {
    margin-bottom: 60px;
  }

  .work_section {
    padding: 0 0 60px;
  }

  .reviews_section {
    padding: 60px 0 60px;
  }

  .work_steps_block {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
    padding: 20px 10px 35px;
    margin-bottom: 30px;
  }

  .start_btn .site_btn {
    padding: 14px 33px !important;
  }

  .footer_section_inner p {
    font-size: 14px;
  }

  .header_img_sec {
    padding-right: 14px;
    width: 100%;
  }

  .banner_sec_inner {
    padding: 35px 0 45px;
  }

  .paragraph_pra p {
    font-size: 18px;
  }

  .heading_title h1 {
    font-size: 44px;
  }

  .heading_title h2 {
    font-size: 28px;
    margin-top: 0;
  }

  .header_btn_sec {
    width: auto;
    flex-shrink: 0;
  }

  .banner_icon_list {
    padding-left: 0;
    justify-content: flex-start;
  }

  .banner_icon_list li span b {
    font-size: 17px;
  }

  .banner_icon_list li span {
    font-size: 17px;
  }

  .banner_pra {
    text-align: left;
  }

  .banner_paint_bg h2 {
    background-size: 90% 72%;
    background-position: 0 center;
    padding: 20px 60px 20px;
    margin-left: 12px;
    margin-top: 0;
  }

  .header_section {
    padding: 12px 0;
  }

  .banner_info_content {
    display: flex;
    flex-direction: column;
  }

  .banner_pra {
    order: 1;
  }

  .banner_btn {
    padding: 0;
    margin-top: 20px;
  }

  .banner_main_img img {
    padding-top: 0;
    max-width: 260px;
    margin: auto;
  }

  .work_sec_btn .site_btn {
    padding: 13px 25px !important;
  }

  .reviews_sec_box {
    margin: 0 0 30px;
    min-height: 400px;
    padding: 0;
  }

  .team_sec_inner .heading_02 h2 {
    padding: 22px 22px 16px;
  }

  .team_sec_inner .heading_02 h2 br {
    display: none;
  }

  .work_step_box img {
    width: unset;
    height: unset;
  }

  .banner_main_img {
    min-height: 260px;
  }
}

@media (max-width: 389px) {
  .banner_paint_bg h2 {
    padding: 20px 49px 20px;
    margin: 0;
  }

  .banner_icon_list li span {
    font-size: 16px;
    text-align: left;
  }

  .banner_btn .site_btn {
    font-size: 17px;
    padding-left: 7px !important;
    padding-right: 7px !important;
  }

  .featured_swiper_img_box {
    padding-top: 60px;
  }

  .heading_02 h2 {
    font-size: 35px !important;
  }

  .team_sec_inner .heading_02 h2 {
    padding: 22px 19px 16px;
  }
}

/* 
@media (max-width:389px) {
    .header_btn {
        padding: 5px 12px;
        font-size: 15px;
    }

    .heading_title h1 {
        font-size: 36px;
    }

    .heading_title h2 {
        font-size: 25px;
        margin-top: -8px;
    }

    .banner_icon_list li span {
        font-size: 17px;
    }

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

    .heading_02 h2 {
        font-size: 28px !important;
    }

    .team_box_inner h3 {
        font-size: 26px;
    }
} */
