/* Font Link */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Root Var */
:root {
  /* Root Theme Color */
  --theme-color: #0076bc;
  --theme-color-second: #399545;
  --theme-color-third: #000;
  --theme-color-fourth: #ffffff;

  /* Root Font */
  --heading-font: "Inter", sans-serif;
  --paragraph-font: "Poppins", sans-serif;
  /* --span-font: 'spanist'; */
  /* Root Shadow Css */
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 16px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: var(--paragraph-font);
}

/* Font Face */
/* @font-face {
  font-family: "";
  src: url();
}

@font-face {
  font-family: "";
  src: url();
} */

a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  transition: all 0.6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 12px;
  color: inherit;
  font-family: var(--heading-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 21px;
  font-size: 16px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
  font-size: 60px;
  font-weight: 600;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 38px;
}

h4 {
  font-size: 28px;
}

h5 {}

h6 {}

.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

/* Back To Top */

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--theme-color-second);
  border-radius: 25px;
  text-align: center;
  border: 2px solid var(--theme-color);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.m-backtotop>div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 20px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Padding Top And Bottom */
.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}

/* Form Css */

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* Site Button */
.hd_info {
  display: flex;
  align-items: center;
  color: #fff;
  flex-wrap: wrap;
  gap: 9px;
}

/* 
.hd_info a img {
  margin: 0 24px 0 10px;
} */

a.comon-btn {
  background: var(--theme-color-second);
  color: #fff;
  display: flex;
  font-size: 15px;
  padding: 12px 0;
  border-radius: 55px;
  width: 230px;
  text-align: center;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  gap: 6px;
  box-shadow: 1px 2px 10px var(--theme-color-second);
}

a.comon-btn:hover {
  background: #121212;
  color: var(--theme-color-second);
}

a.comon-btn i {
  font-size: 18px;
}

a.comon-btn2 {
  background: var(--theme-color);
  color: #fff;
  display: flex;
  font-size: 15px;
  padding: 12px 0;
  border-radius: 55px;
  width: 210px;
  text-align: center;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  gap: 6px;
  box-shadow: 1px 2px 10px var(--theme-color);
}

a.comon-btn2:hover {
  background: #121212;
  color: var(--theme-color-second);
}

a.comon-btn3 {
  background: var(--theme-color-fourth);
  color: #000;
  display: flex;
  font-size: 15px;
  padding: 12px 0;
  border-radius: 55px;
  width: 210px;
  text-align: center;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  gap: 6px;
  border: 1px solid #c7c7c7;
}

a.comon-btn3:hover {
  background: #121212;
  color: var(--theme-color-second);
}

/* Sticky Top */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}

/* Small Header */

.small {
  display: none;
}

.header_menu {
  background: transparent;
  border-top: 1px solid #e1e1e1;
}

a.navbar-brand img {
  width: 310px;
  margin: 0 auto;
  display: block;
}

.header_menu li a {
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
  padding: 19px 16px;
  display: inline-block;
  letter-spacing: 1px;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 280px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}

#main_header .top_bar {
  padding: 13px 0px;
}

#main_header .email_info {
  display: flex;
  align-items: center;
  gap: 8px;
}

#main_header .email_info img {
  width: 42px;
}

#main_header .email_info span {
  line-height: 1.2;
  font-size: 14px;
  display: flex;
  align-items: start;
  flex-direction: column;
}

#main_header .email_info span a {
  font-weight: 500;
  font-size: 16px;
  color: var(--theme-color-second);
}

/* ********* */
.banner_sec h1 span {
  color: var(--theme-color);
}

.banner_sec {
  padding: 50px 0 20px;
  background: url(../image/banner-bg.jpg);
}

.banner_sec .review img {
  width: 240px;
}

.banner_sec .banner_heading {
  padding-bottom: 80px;
}

/* **************** */
.about_sec {
  padding: 0;
}

.about_sec h2 span {
  color: var(--theme-color-second);
}

.about_sec h3 {
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 800;
  margin-left: 50px;
  color: #fff;
  margin-bottom: 30px;
  padding-top: 140px;
}

.about_sec h3 span {
  display: block;
  padding-left: 50px;
}

.about_sec .right_content::before {
  content: "";
  background: linear-gradient(180deg,
      rgba(62, 152, 60, 1) 0%,
      rgba(255, 255, 255, 1) 100%);
  position: absolute;
  top: 0;
  width: 440px;
  height: 100%;
  left: -50px;
  right: 0;
  margin: 0 auto;
}

.about_sec .right_content h3 {
  position: relative;
  z-index: 1;
}

.about_sec .right_content img {
  position: relative;
  z-index: 1;
}

.about_sec .btom_img .btn_text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
}

.about_sec .btom_img .btn_text h5 {
  margin-bottom: 0;
}

.about_sec .btom_img .btn_text h5 a {
  color: var(--theme-color);
}

/* ***************** */

.difference-section .content h2 {
  text-align: start;
  color: #59b4f5;
  margin-bottom: 25px;
}

.difference-section .cards {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.difference-section .card {
  padding: 35px 24px;
  border-radius: 25px;
  border: none;
  transition: 0.4s;
}

.difference-section .card img {
  width: 60px;

  margin-bottom: 20px;
}

.difference-section .card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.difference-section .card p {
  color: #555;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.8;
}

.difference-section .active {
  background: #fff;
  box-shadow: 0 0px 23px rgba(3, 121, 191, 0.21);
}

.difference-section h2 {
  background: #0077BE;
  background: linear-gradient(to right, #0077BE 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* *************** */
.matters-section {
  background: #369434;
}

.matters-section .section-title {
  text-align: center;
  margin-bottom: 30px;
}

.matters-section .section-title h2 {
  color: #fff;
}

.matters-section .section-title p {
  max-width: 850px;
  margin: auto;
  color: #e8f5e9;
  line-height: 1.8;
  font-size: 17px;
}

.matters-section .matters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}

.matters-section .matter-card {
  background: #fff;
  border-radius: 6px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  transition: .3s;
}

.matters-section .matter-card:hover {
  transform: translateY(-8px);
}

.matters-section .icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
}

.matters-section .icon img {
  width: 100%;
}

.matters-section .matter-card h3 {
  font-size: 22px;
  color: #222;
  margin-bottom: 14px;
}

.matters-section .matter-card h4 {
  color: #41a845;
  font-size: 17px;
  margin-bottom: 24px;
}

.matters-section .matter-card li {
  margin-bottom: 16px;
  color: #444;
  line-height: 1.8;
  font-size: 15px;
}

.matters-section .bottom-text {
  text-align: center;
  color: #e8f5e9;
  max-width: 900px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

/* ************ */

.home_sec_2 .head-box {
  height: 100%;
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
}


.home_sec_2 .head-box img {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
  object-fit: contain;
}

.home_sec_2 .head-box h3 {
  font-size: 25px;
  font-weight: 600;
}

.home_sec_2 .head-box p {
  font-size: 15px;
  color: #888;
  min-height: 158px;
}

.home_sec_2 .head-box a.learn-more {
  text-transform: uppercase;
  color: var(--theme-color-second);
  font-weight: 600;
}

a.btn-white {
  background-color: #fff;
  color: #000;

}


a.btn-white i {
  color: var(--theme-color-second);
}

/* ******************* */
.faq-contact .accordion-button:not(.collapsed) {
  color: #ffff;
  background-color: var(--theme-color-second);
  box-shadow: none;
  border: none !important;
}

.faq-contact .accordion-item {
  color: var(--bs-accordion-color);
  background-color: #c1c0bd;
  border: none;
}

.faq-contact .accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
  border: none !important;
}

.faq-contact .accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: none !important;
}

.faq-contact .accordion-item {
  margin-bottom: 10px;
  border-radius: 0;
  overflow: hidden;
  text-align: start;
  background: var(--theme-color-second);
  color: #fff;
  border: none;
}

.faq-contact .get-intouch button:hover {
  background-color: #000;
  color: #fff;
}

.faq-contact .accordion-item h2 {
  line-height: 22px;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--paragraph-font-Regular);
}

.faq-contact .accordion-item p {
  color: #fff;
  font-weight: 500;
  /* padding-left: 20px; */
  /* border-left: 2px solid #f9f9f9; */
  /* margin-left: 25px; */
}

.faq-contact .accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  padding-top: 0;
}

.faq-contact .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 18px 20px;
  font-size: 17px;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: #f6f2ee;
  border: 0;
  border-radius: 0 !important;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
  font-weight: 500;
  line-height: 1.6;
}

.faq-contact .accordion-button::after {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  margin-left: auto;
  content: "";
  /* background-image: url(../image/down-arrow.png) !important; */
  background-repeat: no-repeat;
  background-size: contain;
  transition: var(--bs-accordion-btn-icon-transition);
  background-position: center !important;
}

.faq-contact .accordion-button:not(.collapsed)::after {
  /* background-image: url(../image/down-arrow2.png) !important; */
  transform: var(--bs-accordion-btn-icon-transform);
}


/* Blog Page */
#bg-blue .blog-box a p {
  color: #000;
  margin-bottom: 5px !important;
  font-size: 15px;
}

#bg-blue .blog-box a h5 {
  font-weight: 400;
  color: #000;
  font-size: 16px;
  line-height: 1.4;
}

#bg-blue .read-btn {
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.blog-sec .blog-box {
  position: relative;
}

.blog-sec .blog-box .btom_content {
  position: absolute;
  bottom: 10px;
  padding: 0 24px;
}

/* ************** */

/* Contact Section */

.contact_sec .left_content {
  position: relative;
}

.contact_sec .left_content .social_icon ul {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 17px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.contact_sec .left_content .social_icon ul li img {
  width: 32px;
}

.contact_sec .location_content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact_sec .location_content img {
  width: 36px;
}

.contact_sec .contact_info {
  display: flex;
  align-items: start;
  flex-direction: column;
  margin-top: 0;
  font-size: 17px;
  gap: 0;
  color: #000;
}

.contact_sec .contact_info a {
  color: #000;
  margin-bottom: 8px;
}

.contact_sec .btom_content {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.contact_sec input {
  width: 100%;
  padding: 14px;
  border: none;
  outline: none;
  background: #fff;
  font-size: 15px;
  border-radius: 7px;
}

.contact_sec select {
  width: 100%;
  padding: 14px;
  border: none;
  outline: none;
  background: #fff;
  font-size: 15px;
  border-radius: 7px;
  color: #6f6f6ff5;
}

.contact_sec textarea {
  width: 100%;
  padding: 14px;
  border: none;
  outline: none;
  background: #fff;
  font-size: 15px;
  border-radius: 7px;
}

.contact_sec button {
  width: 100%;
  padding: 14px;
  border: none;
  outline: none;
  background: var(--theme-color-second);
  border: 1px solid var(--theme-color-fourth);
  font-size: 17px;
  border-radius: 50px;
  color: #fff;
  letter-spacing: 1px;
}

.contact_sec h4 {
  font-size: 36px;
  margin-bottom: 16px;
  font-weight: 600;
}

.contact_sec .right_content {
  background: linear-gradient(180deg, rgba(48, 147, 70, 1) 0%, rgba(12, 135, 181, 1) 100%);
  color: #fff;
  padding: 45px 25px;
  border-radius: 20px;
}

.contact_sec .left_content .top_arrow_icon {
  position: absolute;
  top: -55px;
  right: -60px;
  transform: rotate(60deg);
}

.contact_sec .left_content .top_arrow_icon img {
  width: 180px;
}

.contact_sec .left_content h3 {
  font-size: 40px;
}


/* TESTIMONIAl SEC */

.home_sec3 .test-mat img {
  width: 45px !important;
  text-align: end;
  margin-left: auto !important;
  margin-bottom: 30px;
  display: block;
}

.home_sec3 .test-mat ul {
  gap: 6px;
  color: #fe8a02;
  margin-bottom: 0;
}

.home_sec3 .test-mat {
  background: #FFF;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.13) 0%, rgba(12, 135, 181, 0) 100%);
  padding: 39px 26px;
  border-radius: 20px;
  height: 100%;
}

.home_sec3 .owl-dots {
  display: none;
}


.home_sec3 .owl-nav {
  position: relative;
}

.home_sec3 .owl-prev {
  position: absolute;
  left: -60px;
  top: -220px;
}

.home_sec3 .owl-next {
  position: absolute;
  right: -60px;
  top: -220px;
}

.home_sec3 .test-mat p span {
  font-size: 15px;
  font-style: italic;
  line-height: 31px;
  font-weight: 400;
  margin-bottom: 7px;
  display: inline-block;
}

.home_sec3 .test-mat .btom_content h6 {
  font-size: 17px;
  border-top: 1px solid #fff;
  display: inline-block;
  padding-top: 15px;
}

.home_sec3 .test-mat img {
  width: 175px !important;
  text-align: start;
  margin-left: 0 !important;
  margin-bottom: -70px;
  display: block;
}

.home_sec3 .btom_content img {
  width: 190px;
  margin-top: 30px;
}

/* FOOTER SEC */

.footer_bg .lgo_ftr img {
  width: 260px;
}

.footer_bg .ftr_contact2.ftr_contact3 ul li a {
  color: #c3c3c3;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.footer_bg .ftr_contact2.ftr_contact3 ul li {
  margin-bottom: 18px;
}

.footer_bg {
  background: #000000;
  color: #cecece;
  padding: 80px 0 24px;
}

.footer_top .content_top_pera {
  padding: 0 0 0 130px;
  color: #dbdbdb;

}

.footer_top .container {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #bbb;
  padding-bottom: 35px;
  margin-bottom: 48px;
}

.ftr_contact ul {
  display: inline-table;
  width: 140px;
}

.ftr_contact h5 {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 36px;
  color: #000000d9;
}

.ftr_contact ul li a {
  color: #dbdbdb;
  display: block;
  margin-bottom: 9px;
}

.ftr_contact ul {
  list-style: none;
  padding: 0;
}

.ftr_contact2 h5 {
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 21px;
  color: var(--theme-color-fourth);
  font-family: var(--paragraph-font);
}

.ftr_contact2 ul li a {
  color: #3f3f3f;
  display: flex;
  margin-bottom: 1px;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.ftr_contact2 ul {
  padding: 0;
  list-style: none;
}

.ftr_contact2 ul li i {
  font-size: 19px;
  margin: 0 16px 0 10px;
}

.ftr_contact2 ul li {
  display: flex;
  align-items: center;
}

a.link-ftr {
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 17px;
  text-decoration: underline;
  letter-spacing: 1px;
  margin-top: 23px;
}

.social_ftr a {
  background: #ffffffe3;
  color: #000;
  display: inline-block;
  width: 45px;
  text-align: center;
  line-height: 45px;
  font-size: 22px;
  border-radius: 50px;
  margin: 0 6px 0 0;
}

.social_ftr a:hover {
  background: var(--theme-color);
  color: var(--theme-color-second);
}

.social_ftr {
  margin-top: 10px;
}

.copyright {
  color: #dbdbdb;
  margin-top: 20px;
}

footer h3 {
  font-size: 34px;
  font-weight: 600;
}

.footer_bg .ft_left_content {
  background: #fff;
  padding: 35px 20px;
  border-radius: 30px;
  border-bottom: 8px solid #0076bc;
  border-right: 8px solid #0076bc;
  color: #3f3f3f;
}

/* ******** */
.inner_banner_sec {
  padding: 60px 0;
}

/* ****** Inner Blog Page ******* */

.inner-blog-right-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 35px 21px 20px;
  border-radius: 8px;
}

.inner-blog-right-sec .blog-search form {
  position: relative;
  border: 1px solid #1c1c1c3b;
  border-radius: 5px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inner-blog-right-sec .blog-search form input {
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
}

.inner-blog-right-sec .blog-search form button {
  /* position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%; */
  cursor: pointer;
  background: none;
  border: 0;
  font-size: 15px;
  color: #000000;
}

.inner-blog-right-sec .popular-sec .popular-cards1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1c1c1c3b;
  padding: 15px 0;
  gap: 10px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .img-top img {
  width: 130px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 p {
  color: #000000ab;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0;
}

.inner-blog-right-sec .popular-sec .popular-cards1 a {
  color: #000000ab;
  font-size: 15px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .heading {
  width: 100%;
}

.main-sec .heading a {
  color: var(--theme-color);
}

.main-sec h4 {
  font-size: 21px;
  /* margin-bottom: -25px; */
}

.inner-blog-left-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 15px 5px 35px;
  border-radius: 8px;
}

.inner-blog-left-sec .inner-blog-sec1 p {
  color: #000000ab;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head p {
  color: #606060;
  margin-bottom: 12px;
}

.inner-blog-left-sec .inner-blog-sec1 h3 {
  font-weight: 600;
  margin-bottom: 18px;
  /* font-size: 29px; */
}

.inner-blog-left-sec .inner-blog-sec1 img {
  border-radius: 5px;
  margin-bottom: 0;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1c1c1c2b;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul {
  display: flex;
  gap: 15px;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li i {
  font-size: 17px;
  color: var(--theme-color);
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head i {
  color: var(--theme-color);
  font-size: 16px;
  margin-right: 3px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li a {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .navigation-sec .navigation a {
  color: var(--theme-color);
  font-size: 15px;
  font-weight: 600;
}

.inner-blog-left-sec .navigation-sec .navigation i {
  color: var(--theme-color);
}

.inner-blog-left-sec .navigation-sec .blog-contain {
  padding: 25px 18px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  border-radius: 5px;
  height: 100%;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top {
  padding-bottom: 15px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top img {
  border-radius: 5px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading h3 {
  color: #000;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p strong {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p {
  color: #000000ab;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading .blog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-comment .contact-form {
  padding: 20px 25px;
  border: 1px solid rgba(69, 69, 70, 0.2);
  border-radius: 8px;
  background: #fff;
  color: #000;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form input {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form textarea {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button {
  color: #ffffff;
  background-color: #000;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #000;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.5s;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button:hover {
  background: #1c1c1c3b;
  border: 1px solid #1c1c1c3b;
  color: #000;
  transition: 0.5s;
}

.inner-blog-left-sec .admin-sec p {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul {
  display: flex;
  gap: 25px;
  align-items: center;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li i {
  font-size: 18px;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li a {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content {
  border-top: 1px solid #1c1c1c3b;
  border-bottom: 1px solid #1c1c1c3b;
  padding: 10px 20px;
}

.inner-blog-left-sec .admin-sec img {
  border-radius: 5px;
}

.main-sec h1 {
  font-size: 42px;
  line-height: 40px;
  /* font-weight: 600; */
  line-height: 1.1;
}

.main-sec h3 {
  font-size: 28px;
  font-weight: 600;
}

.inner-blog-left-sec img {
  height: 350px !important;
  object-fit: cover;
  width: 100% !important;
  max-width: 100% !important;
}

/* ********** */
.office_locations_sec h5 {
  font-size: 17px;
  line-height: 1.8;
}

.office_locations_sec .content {
  background: var(--theme-color-second);
  color: var(--theme-color-fourth);
  padding: 17px 17px;
  border-radius: 19px;
}

.office_locations_sec .content iframe {
  border-radius: 19px;
}

.office_locations_sec .content a {
  color: #fff;
}

/* ************ */
.reviews-section {
  padding: 80px 20px;
}

.reviews-section .section-title p {
  color: #777;
}

.reviews-section .reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  gap: 30px;
}

.reviews-section .review-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  transition: .35s;
  border-top: 5px solid #27ae60;
}

.reviews-section .review-card:hover {
  transform: translateY(-8px);
}

.reviews-section .review-header h3 {
  font-size: 24px;
  color: #222;
}

.reviews-section .review-header span {
  display: block;
  color: #777;
  margin-top: 6px;
  margin-bottom: 0px;
}

.reviews-section .stars {
  color: #f4b400;
  font-size: 20px;
  margin-bottom: 12px;
}

.reviews-section .review-card p {
  color: #555;
  line-height: 1.8;
}

.reviews-section .btn-area {
  text-align: center;
  margin-top: 60px;
}

.reviews-section .btn-area a {
  display: inline-block;
  background: #28a745;
  color: #fff;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: bold;
  transition: .3s;
}

.reviews-section .btn-area a:hover {
  background: #1f8c39;
}

/* *************** */
#faq-contact h3 {
  font-size: 38px;
}

/* **************** */
.tax-investigation-insurance-sec ul li i {
  font-size: 11px;
  color: var(--theme-color-second);
}

.tax-investigation-insurance-sec ul li {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}

/* *************** */
.factsheets-sec img {
  border-radius: 10px;
  margin-bottom: 20px;
}

.factsheets-sec .content {
  box-shadow: var(--shadow-large);
  padding: 15px 15px 25px;
  height: 100%;
  border-radius: 10px;
}

.factsheets-sec .content h5 {
  color: var(--theme-color-second);
}

.ul_list_items li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 9px;
}

.ul_list_items li i {
  color: var(--theme-color-second);
  font-size: 20px;
}

.ul_list_items p {
  margin-bottom: 0px;
}



.we_help_sec1 .service-box {
  border-radius: 20px;
  height: 100%;
  color: #000;
  height: 100%;
  padding: 15px;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.164);
  transition: all .6s;
}


.we_help_sec1 .service-box img {
  height: 220px;
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}


.we_help_sec1 .service-box h3 {
  margin-top: 25px;
  font-size: 24px;
  font-weight: 600;
}

.we_help_sec1 .service-box .read_more {
  color: var(--theme-color);
  font-weight: 600;
  transition: .4s ease;
}

.we_help_sec1 .service-box:hover {
  background: var(--theme-color-second);
  transform: translateY(-8px);
}

.we_help_sec1 .service-box:hover h3 {
  color: var(--theme-color-fourth);
}

.we_help_sec1 .service-box:hover p {
  color: var(--theme-color-fourth);
}

.we_help_sec1 .service-box:hover .read_more {
  color: var(--theme-color-fourth);
}


.about_stewart_sec2 {
  background: #FFFFFF;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(0, 118, 188, 0.51) 100%);

}

.bookkeeping_services_sec3 {
  background: #FFFFFF;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(0, 118, 188, 0.51) 100%);
}

.about_stewart_sec3 .content {
  height: 100%;
}

.about_stewart_sec3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ************* Contact Page ************ */

.contact-info-content {
  background: transparent;
  padding: 30px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: var(--theme-color-second);

  border: 2px solid var(--theme-color-second);
  transition: .4s ease;
}

/* Icon */
.contact-info-content .icon {
  width: 60px;
  height: 60px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-color-fourth);
  color: var(--theme-color);
  font-size: 30px;
  border-radius: 50%;
  transition: .4s ease;
}

.contact-info-content:hover .icon {
  background: var(--theme-color);
  color: var(--theme-color-fourth);
}

/* Icon Info */
.contact-info-content .icon-info {
  margin-top: 20px;
}

.contact-info-content .icon-info h4 {
  color: var(--theme-color-fourth);
  font-weight: 600;
  margin-bottom: 4px;
  transition: .4s ease;
}

.contact-info-content:hover .icon-info h4,
.contact-info-content:hover .icon-info a {
  color: var(--theme-color-third);
}

.contact-info-content:hover {
  background: var(--theme-color-fourth);
  border: 2px solid var(--theme-color-second);
}


.contact-info-content .icon-info p {
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0px;
}



.contact-info-content .icon-info a {
  color: var(--theme-color-fourth);
  font-size: 19px;
  font-weight: 400;
  text-decoration: none;
}

.contact-info-content .icon-info .mail {
  font-size: 15px;
}

.contact-info-content .icon-info .address {
  font-size: 15px;
}

/* Required field note */
.contact-info span {
  color: #cb1818;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1.6px;
}

/* Form Heading */
.contact-page-form h2 {
  color: var(--theme-color-third);
  font-size: 40px;
}


/* =========================
   Form Fields
========================= */

.contact-info input,
.contact-info select,
.contact-info textarea {
  width: 100%;
  padding: 15px 15px;
  border-radius: 15px;
  border: 1px solid var(--theme-color);
  background: #fff;
  color: var(--theme-color);
  font-weight: 400;
  outline: none;
  box-shadow: none;
}

/* Focus State */
.contact-info input:focus,
.contact-info select:focus,
.contact-info textarea:focus {
  border-color: var(--theme-color-second);
  box-shadow: none;
}


/* Button */
.contact-info button {
  width: 100%;
  padding: 15px 0;
  border: none;
  border-radius: 15px;
  background: var(--theme-color-second);
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.contact-info button:hover {
  background: var(--theme-color);
}

.contact-info .img_box {
  height: 100%;
}

.contact-info .img_box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--theme-color-second);
  box-shadow: -1px 1px 20px 1px rgba(214, 166, 90, .432);
  border-radius: 20px;
}

.contact-info .check_boxes {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}



.contact-info .check_boxes .check_box input {
  width: auto;
}



.newsletter_form input,
.newsletter_form select,
.newsletter_form textarea,
.newsletter_form button {
  padding: 14px 20px;
  border-radius: 10px;
  outline: none;
  border: 1px solid transparent;
  background-color: #0077bc41;
  transition: all 0.3s ease;
}

.newsletter_form input::placeholder,
.newsletter_form textarea::placeholder {
  color: var(--theme-color-third);
}

.newsletter_form select {

  color: var(--theme-color-third);
}


.newsletter_form .submit_btn {
  background: var(--theme-color-second);
  width: 100%;
  color: var(--theme-color-fourth);
}

.newsletter_form .submit_btn:hover {
  background-color: var(--theme-color-third);
  color: var(--theme-color-fourth);
}

.newsletter_form input:focus {
  border: 1px solid var(--theme-color);
}


.newsletter_form label {
  margin-bottom: 8px;
  color: #606060;
  font-size: 18px;
}

.newsletter_form .heading p {
  color: #606060;
}

.newsletter_form .heading h2 {
  font-size: 28px;
}


.newsletter_form .check_box{
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.newsletter_form .check_box label{
  font-size: 16px;
}
.custom-pagination{
    display:flex;
    justify-content:center;
    margin-top:40px;
}

.custom-pagination ul{
    display:flex;
    gap:10px;
    list-style:none;
    padding:0;
    margin:0;
}

.custom-pagination li{
    list-style:none;
}

.custom-pagination a,
.custom-pagination span{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #ddd;
    border-radius:50%;
    text-decoration:none;
    color:#222;
}

.custom-pagination a:hover,
.custom-pagination .current{
    background:#0076bc;
    color:#fff;
    border-color:#0076bc;
}

.inner-blog-left-sec .comments-area #submit {
  color: #ffffff !important;
  background-color: #0076bc !important;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #0076bc;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.5s;
}

.inner-blog-left-sec .comments-area #submit:hover {
  background: #000 !important;
  border: 1px solid #000;
  color: #fff;
  transition: 0.5s;
}
input#wp-comment-cookies-consent {
    width: 40px;
}
/* .fa-angle-down:before {
    display: none !important;
} */

.dropdown-menu{
    display:none;
}

.dropdown-menu.show{
    display:block;
}

.dropdown-icon{
    cursor:pointer;
    margin-left:10px;
    display:inline-flex;
    align-items:center;
}

.small .sub-menu{
    display:none;
}
form.wpcf7-form.init p {
    margin-bottom: 0;
}
.wpcf7-form p { 
    margin-bottom: 0px;
margin-top: 0px;
}

.wpcf7-form br {
    display: none; 
}
input[type="checkbox"] {
    width: 40px;
}
.check_boxes .check_box span{
	color: #1e1e1e !important;
}
.ul-dot li{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}
.ul-dot li i{
	font-size: 6px;
}
.land-hding{
  font-size: 28px;
}