@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@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 {
  --primary-color: #FFA500;
  --primary-hover-color: #ffac15;
  --secondary-color: #3655a0;
  --secondary-hover-color: #3564d3;
  --dark-color: #222222;
  --black-color: #000;
  --text-color: #444444;
  --white-color: #fff;
  --light-gray-color: #f6f6f6;
  --primary-font: "League Spartan", sans-serif;
  --secondary-font: "Poppins", serif;
  --transition: all 0.3s ease-in-out;
}

body {
  font-size: 15px;
  font-family: var(--secondary-font);
  color: var(--text-color);
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: ease all 0.3s;
  -o-transition: ease all 0.3s;
  transition: ease all 0.3s;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.bullet-list{
	list-style:disc;
	padding-left:20px;
}
ul.bullet-list li{
	margin-bottom:5px;
}
h1 {
  font-size: 42px;
}

h2 {
  font-size: 34px;
}

h3,
.section-head h1{
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
  line-height: 1.1;
}

p:last-child {
  margin-bottom: 0;
}

.accessibility {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.accessibility:focus {
  position: static;
  width: auto;
  height: auto;
}

.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-holder {
  flex-grow: 1;
}

.block {
  padding: 50px 0;
}

.section-head {
  margin-bottom: 20px;
}

.section-head h2 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
}

.section-head h3 {
  color: var(--dark-color);
}

.fs-14 {
  font-size: 14px;
}

.fs-17 {
  font-size: 17px;
}

.rounded {
  border-radius: 15px !important;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.check-list li:before {
  content: "\f058";
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Fontawesome";
  color: var(--primary-color);
}

.check-list li:last-child {
  margin-bottom: 0;
}

.readmore-link span {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--white-color);
  background-color: var(--primary-color);
  border-radius: 50%;
  margin-left: 8px;
}

.readmore-link:hover span {
  color: var(--white-color);
  background-color: var(--secondary-color);
}

/* Button */

.btn {
  font-size: 15px;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 10px;
}

.btn-lg {
  padding: 15px 35px;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-primary:hover {
  background-color: var(--primary-hover-color);
  border-color: var(--primary-hover-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover-color);
  border-color: var(--secondary-hover-color);
}

.btn-light:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
	border-color: var(--white-color);
}

figure {
  margin-bottom: 0;
}
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.card-img {
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 2.7;
    object-fit: cover;
}

.card-img .price {
    position: absolute;
    right: 15px;
    bottom: 15px;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 700;
    padding:5px  10px;
    border-radius: 10px;
    background-color: var(--primary-color);
}

.card-body {
  padding: 25px;
}

.card .icon {
  margin-bottom: 20px;
}

.card .icon img {
  height: 50px;
  object-fit: contain;
}

.card h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.16;
  margin-bottom: 10px;
}
.package-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}
.package-feature .detail {
    font-size: 14px;
    overflow: hidden;
    line-height: 1.3;
}

.package-feature .detail span {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.package-feature .icon {
    flex-shrink: 0;
    color: var(--primary-color);
}
.sidebar-wrap{
    height:100%;
}

.sidebar {
  padding: 30px 25px;
	margin-bottom:25px;
  background-color: var(--light-gray-color);
  border-radius: 10px;
}
.sidebar:last-child{
	margin-bottom:0;
}

.sticky-column {
  position: sticky;
  top: 95px;
  padding: 30px 25px;
  background-color: var(--light-gray-color);
  border-radius: 10px;
}

.sidebar-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.sticky-section {
  position: sticky;
  top: 125px;
}

/* ------Color------- */

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-light-gray {
  background-color: var(--light-gray-color);
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

/* ------Fontss------- */

.font-primary {
  font-family: var(--primary-font);
}

.font-secondary {
  font-family: var(--secondary-font);
}

/* -----Form ------- */

.form-label {
  font-size: 15px;
  margin-bottom: 5px;
}

input,
textarea,
select {
  font-size: 15px !important;
}

input.form-control,
.form-select{
  height: 50px;
}

textarea {
  height: 120px;
}

.form-control::placeholder {
  color: #9e9e9e;
}

.form-check-input {
  width: 20px;
  height: 20px;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-radius: 3px;
}

.wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin-left: 0;
}

.wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.wpcf7-list-item-label {
  font-size: 14px;
}

.dscf7-captcha-container .wpcf7-not-valid-tip{
	    margin-top: 15px;
    background: var(--primary-color);
	color:var(--white-color);
    font-size: 13px;
    padding: 0px 10px;
}

.testimonials-item{
	padding:0 10px;
}

/* -------------------------------------------------------
                         Header
------------------------------------------------------- */

/* --------Header Top----------- */

.header-top {
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid #e3e3e3;
}

.si-wrap a {
  margin-right: 15px;
}

.si-wrap a:last-child {
  margin-right: 0;
}

.site-header {
  border-bottom: 1px solid #eeeeee;
}

.site-header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white-color);
  border-bottom: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  animation: smoothScroll 1s forwards;
  z-index: 999;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}

.navbar-brand img,
.footer-logo img{
    width:200px;
}

#primary-menu {
  justify-content: center;
  gap: 30px;
}

#primary-menu .current-menu-item a,
#primary-menu a:hover {
  color: var(--primary-color);
}

.main-navigation ul ul {
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  background-color: var(--white-color);
}
.main-navigation ul ul li a {
  display: block;
  font-size: 14px;
  padding: 10px 15px;
  width: 250px;
  border-bottom: 1px solid #eee;
}

.main-navigation ul ul li a:hover,
.main-navigation ul ul li.current-menu-item a {
  color: var(--white-color) !important;
  background-color: var(--primary-color);
}

.site-menu-toggler {
  font-size: 24px;
  background-color: transparent;
  border: none;
}

.site-menu-toggler span{
    font-size:14px;
}
.offcanvas-header .btn-close {
  margin: 0;
}

.offcanvas-body {
  padding-left: 0;
  padding-right: 0;
}

.slicknav_menu {
  background-color: transparent;
  padding: 0;
}

.slicknav_nav li {
  border-bottom: 1px solid #dfdfdf;
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children:after {
  content: "\f078";
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: "Fontawesome";
  color: var(--primary-color);
  cursor: pointer;
}

.slicknav_nav .slicknav_parent:after {
  color: var(--dark-color);
}

.slicknav_nav .slicknav_parent:hover:after {
  color: var(--white-color);
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
  color: var(--dark-color);
  margin: 0;
  padding: 15px 20px;
}

.slicknav_nav .slicknav_row:hover,
.slicknav_nav .slicknav_row:hover a,
.slicknav_nav a:hover,
.slicknav_nav .current-menu-item a,
.slicknav_nav .current-menu-parent a {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-radius: 0;
}

/* -------------------------------------------------------
                         Hero Section
------------------------------------------------------- */

.hero-slider-item {
  position: relative;
  padding:50px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--white-color);
  isolation: isolate;
}

.hero-slider-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#113180+0,000000+100&0.8+0,0+100 */
  background: linear-gradient(
    to right,
    rgba(17, 49, 128, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

  z-index: -1;
}

.hero-slider .hero-slider-item {
  display: flex;
  align-items: center;
}

.hero-slider-item h1 span {
  color: var(--primary-color);
}

.hero-slider-item p {
  margin-bottom: 35px;
}

.hero-slider .swiper-pagination {
  top: unset;
  bottom: 5px;
  left: unset;
  width: auto;
}

.swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background-color: var(--white-color);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.intro-section-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "grid-1 grid-3"
    "grid-2 grid-2";
  gap: 15px;
}

.intro-section-grid-wrap .grid-1 {
  grid-area: grid-1;
}
.intro-section-grid-wrap .grid-2 {
  grid-area: grid-2;
}
.intro-section-grid-wrap .grid-3 {
  grid-area: grid-3;
}

.intro-section-grid-wrap figure,
.intro-section-grid-wrap figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.intro-content .bullet-list li::marker{
    color:var(--primary-color);
}

.exp-box {
  color: var(--white-color);
  background-color: var(--primary-color);
  padding: 30px;
  text-align: center;
  border-radius: 15px;
}

.exp-box h4 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 0;
}

.step-box {
  /*display: flex;*/
  /*align-items: center;*/
  /*flex-wrap: nowrap;*/
  /*gap: 15px;*/
  text-align:center;
  height:100%;
  padding: 15px;
  background-color: var(--white-color);
  margin-bottom: 20px;
  border-radius: 15px;
  cursor: pointer;
  transition: var(--transition);
}

.step-box:last-child {
  margin-bottom: 0;
}

.step-box:hover {
  background-color: var(--primary-color);
}

.step-box .num {
  display: inline-block;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-family: var(--primary-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--white-color);
  border-radius: 50%;
  background-color: var(--primary-color);
  margin-bottom:10px;
}

.step-box:hover .num {
  color: var(--black-color);
  background-color: var(--white-color);
}

.step-box h4 {
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}

.step-box:hover h4 {
  color: var(--white-color);
}

.counter-section {
  color: var(--white-color);
  background-color: var(--secondary-color);
}

.counter-wrap {
  display: flex;
  justify-content: space-between;
}

.counter-item h4,
.counter-item span {
  display: inline-block;
  font-size: 40px;
  font-weight: 700;
  line-height: 0.8;
}

.counter-item p {
  font-size: 12px;
}

.location-section .nav-pills .nav-link {
  flex-shrink: 0;
  font-size: 14px;
  padding: 10px 15px;
	border:1px solid var(--secondary-color);
}

.call-act .icon {
  display: inline-block;
  float: left;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: var(--primary-color);
  background-color: var(--white-color);
  border-radius: 50%;
}

.call-act a {
  display: block;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
}

.call-act a:hover {
  color: var(--primary-color);
}

.ofc-wrap figure img {
  width: 100%;
	aspect-ratio:4/3;
  margin-bottom: 10px;
  border-radius: 8px;
	object-fit:cover;
}

.ofc-wrap h3 {
  font-size: 16px;
	font-weight:600;
}

.scroll-slider figure {
  text-align: center;
}

.scroll-slider figure img {
  height: 70px;
  object-fit: contain;
}

.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.service-slider-card {
  position: relative;
  overflow: hidden;
}

.service-slider-card figure {
  position: relative;
}
.service-slider-card figure::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.2+0,0.65+100 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.65) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.service-slider-card figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 2.5;
  object-fit: cover;
}

.service-slider-card .service-slider-card-body {
  position: absolute;
  bottom: -100%;
  color: var(--white-color);
  padding: 20px 25px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.swiper-slide-active .service-slider-card .service-slider-card-body,
.swiper-slide-active .service-slider-card figure::before {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.service-slider-card .service-slider-card-body h4 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
}

.service-slider-card .service-slider-card-body h4:before {
  content: "\f111";
  position: absolute;
  top: 5px;
  left: -15px;
  color: var(--primary-color);
  font-family: "Fontawesome";
  font-size: 8px;
}

.service-slider-card .service-slider-card-body h4:hover a,
.service-slider-card .service-slider-card-body .readmore-link:hover {
  color: var(--primary-color);
}

.service-slider-card .service-slider-card-body .readmore-link:hover span {
  background-color: var(--primary-color);
}

.service-card {
  background-color: var(--white-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.service-card figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 55 / 35;
  object-fit: cover;
}

.service-card .service-card-body {
  padding: 25px;
}

.service-card .service-card-body h4 a:hover {
  color: var(--primary-color);
}

.service-card .service-card-body .readmore-link {
  color: var(--primary-color);
  transition: var(--transition);
}

.service-card .service-card-body .readmore-link:hover {
  text-decoration: underline;
}

.service-card .service-card-body .readmore-link:hover span {
  background-color: var(--primary-color);
}

.nav-pills .nav-link {
  text-align: center;
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 500;
  padding: 15px 30px;
  margin-bottom: 15px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--secondary-color);
}

.cta-section {
  position: relative;
  isolation: isolate;
}

.cta-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 0.92;
  z-index: -1;
}

.cta-section h2 {
  color: var(--white-color);
  font-size: 30px;
  font-weight: 700;
}

.cta-section h2 span {
  display: block;
  font-weight: 300;
}

.testimonials-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background-image: url("../img/bg-shape.png");
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(1.3);
}

.testimonials-card {
  position: relative;
  padding: 30px 20px;
  background-color: var(--secondary-color);
  border-radius: 15px;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
}

.testimonials-card:before {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 20px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 15px 50px 0 0;
  border-color: var(--secondary-color) transparent transparent transparent;
}

.quote-icon {
  width: 30px;
}

.client-area {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0 0 0;
  background-color: var(--white-color);
}

.client-img {
  display: block;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  padding: 3px;
  border-radius: 50%;
  border: 1.5px solid var(--secondary-color);
  overflow: hidden;
}

.client-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}

.client-info {
  flex-shrink: 0;
}

.client-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

.client-info p {
  font-size: 15px;
}

.gallery-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "item-1 item-2"
    " item-3  item-3"
    "item-4 item-5";
}

.galler-item.item-1 {
  grid-area: item-1;
}
.galler-item.item-2 {
  grid-area: item-2;
}
.galler-item.item-3 {
  grid-area: item-3;
}
.galler-item.item-4 {
  grid-area: item-4;
}
.galler-item.item-5 {
  grid-area: item-5;
}

.galler-item figure {
  width: 100%;
  height: 100%;
}

.galler-item figure img {
    aspect-ratio:6 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid transparent;
  transition: var(--transition);
}

.galley-photo:hover img {
  border: 4px solid var(--primary-color);
}

.blog-slider {
  padding-top: 20px;
}

.blog-card {
  position: relative;
}

.blog-card .post-date {
  position: absolute;
  top: -18px;
  left: 25px;
  width: 100px;
  height: 85px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white-color);
  background-color: var(--primary-color);
  z-index: 1;
}

.blog-card .post-date:before {
  content: "";
  position: absolute;
  top: 0;
  left: -18px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 0 18px 18px;
  border-color: transparent transparent var(--primary-color) transparent;
}

.blog-card .post-date span {
  display: block;
  font-size: 38px;
  font-weight: 700;
}

.blog-card figure {
  position: relative;
}

.blog-card figure:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e5799+0,0d0d0d+100&0+0,0.85+100 */
  background: linear-gradient(
    to bottom,
    rgba(30, 87, 153, 0) 0%,
    rgba(13, 13, 13, 0.85) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.blog-card figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 412 / 489;
  object-fit: cover;
}

.blog-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.blog-card-body h4 {
  font-size: 20px;
  font-weight: 700;
}

.blog-card-body h4 a {
  color: var(--white-color);
}

.slider-btn-wrap {
  position: relative;
}

.newsletter-section {
  position: relative;
  background-color: var(--secondary-color);
  margin-top: 40px;
}

.newsletter-img {
  max-width: 490px;
  width: 100%;
}



.newsletter-rtl {
  padding: 40px 0;
}

.newsletter-form {
  padding: 5px 5px 5px 15px;
  border: 1px solid var(--white-color);
  border-radius: 100px;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.newsletter-form p {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
}

.newsletter-form input {
  color: var(--white-color);
  border: none;
  background-color: transparent;
  border-radius: 50px 0 0 50px;
}

.newsletter-form input::placeholder {
  color: var(--white-color);
}

.newsletter-form input:focus {
  color: var(--white-color);
  background-color: transparent;
  box-shadow: none;
}

.newsletter-form .input-group-text {
  display: inline-block;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  border-radius: 50% !important;
}

.swiper-button-prev,
.swiper-button-next {
  top: 25px;
  width: 45px;
  height: 45px;
  border: 1px solid #020202;
  border-radius: 50%;
  transition: var(--transition);
}

.swiper-button-prev {
  left: unset;
  right: 60px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: "Fontawesome";
  font-size: 17px;
  color: #020202;
}

.swiper-button-next:after {
  content: "\f061";
}
.swiper-button-prev:after {
  content: "\f060";
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: var(--white-color);
}

.site-footer {
  font-size: 15px;
  border-top: 1px solid #eeeeee;
}

.footer-top {
  padding: 60px 0 20px 0;
  border-bottom: 1px dashed #dcdcdc;
}

.footer-title {
  color: var(--black-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-item .menu li {
  margin-bottom: 10px;
}

.footer-item .menu li:last-child {
  margin-bottom: 0;
}

.footer-item a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  padding: 20px 0;
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid #dee2e6;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}
.accordion-item:first-of-type {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.accordion-button {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--secondary-font);
  padding: 25px;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: transparent;
  box-shadow: none;
}

.faqs-wrap .accordion-body {
  padding: 0 25px 25px 25px;
}

.accordion-button::after,
.accordion-button:not(.collapsed)::after {
  font-family: "Fontawesome";
  background-image: none;
}

.accordion-button::after {
  content: "\2b";
}

.accordion-button:not(.collapsed)::after {
  content: "\f068";
  color: var(--primary-color);
}

.referral-form-wrap {
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-wrap {
  padding: 20px;
  background-color: var(--light-gray-color);
  border-radius: 15px;
}

.contact-form-wrap h4 {
  font-size: 20px;
  margin-bottom: 30px;
}

.map-section .nav-pills .nav-link{
	font-size:14px;
	text-align:center;
	min-width:auto;
	border: 1px solid var(--primary-color);
}

.map-section .nav-pills .nav-link.active{
	color:var(--white-color);
	background-color:var(--primary-color);
}

/* -------------------------------------------------------
                         Single Page
------------------------------------------------------- */

.sidebar #menu-services li a {
  position: relative;
  display: block;
  padding: 12px 20px;
  background-color: var(--white-color);
  margin-bottom: 10px;
  border-radius: 8px;
}

.sidebar #menu-services li a:after {
  content: "\f0a9";
  position: absolute;
  top: 10px;
  right: 15px;
  font-family: "Fontawesome";
  font-size: 18px;
  color: var(--primary-color);
}

.sidebar #menu-services li:last-child a {
  margin-bottom: 0;
}

.sidebar #menu-services li a:hover,
.sidebar #menu-services li.current-menu-item a {
  color: var(--white-color);
  background-color: var(--primary-color);
}

.sidebar #menu-services li a:hover:after,
.sidebar #menu-services li.current-menu-item a:after {
  color: var(--white-color);
}

.hero-img {
  margin-bottom: 30px;
}

.hero-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.75/1;
  object-fit: cover;
  border-radius: 15px;
}

.blog-meta {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e6e6e6;
}

.recent-blog-item {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.recent-blog-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.recent-blog-item figure img {
  width: 80px;
  border-radius: 12px;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.recent-blog-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.recent-blog-item h4 a {
    color:var(--dark-color);
}

.recent-blog-item h4 a:hover {
  color: var(--primary-color);
}

.recent-blog-item .post-date{
    font-size:13px;
}

.single-content h3 {
  font-size: 20px;
}
.single-content h4 {
  font-size: 18px;
}
.blog-single .single-content ul{
	list-style:disc;
	padding-left:20px;
}
.blog-single a{
	color: var(--primary-color);
}
.hero-title {
  font-size: 36px;
	color:#222;
}

.single-content h2 {
  font-size: 34px;
	color:#222;
}

.single-content h3 {
  font-size: 30px;
	color:#222;
}

.single-content h4 {
  font-size: 18px;
	color:#222;
}

.single-content h5 {
  font-size: 18px;
	color:#222;
}

.single-content h6 {
  font-size: 16px;
	color:#222;
}


/* -------------------------------------------------------
                         Careers
------------------------------------------------------- */
.careers .accordion-item{
    margin-bottom: 15px;
    border: 1px solid #d4d4d4;
    border-radius: 8px;
    overflow: hidden;
}

.careers .accordion-header{
    padding: 0;
    border: none;
}

.careers .accordion-button{
    padding: 20px;
}

.careers .accordion-button:not(.collapsed){
    color: var(--white-color);
    background-color: var(--primary-color);
}

.careers .accordion-body{
    color: var(--text-color);
    padding: 20px;
    background-color: transparent;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.jd ul{
	list-style:disc;
	padding-left:20px;
}

.job-feature p{
    font-weight: 700;
    margin-bottom: 5px;
}

.job-feature p span{
    display: inline-block;
    font-weight: 400;
    min-width: 190px;
}

.careers .note{
    font-style: italic;
    background-color: var(--secondary-color);
    padding:30px;
    border-radius:8px;
}

.careers .note a{
    color: #084FA4;
    text-decoration: underline;
}

/* -------------------------------------------------------
                         Page Banner
------------------------------------------------------- */

.page-banner {
  position: relative;
  color: var(--white-color);
  padding: 80px 0;
  isolation: isolate;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.page-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#113180+0,000000+100&0.8+0,0+100 */
  background: linear-gradient(
    to right,
    rgba(17, 49, 128, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  z-index: -1;
}

.page-banner.single-blog-banner{
	padding:10px 0;
}

.breadcrumb li {
  position: relative;
  font-family: var(--primary-font);
  font-size: 17px;
  padding: 0 15px;
}

.breadcrumb li:before {
  content: "/";
  position: absolute;
  left: 0;
}

.breadcrumb li:first-child {
  padding-left: 0;
}
.breadcrumb li:first-child:before {
  content: unset;
}

.breadcrumb li a {
  color: var(--white-color);
}

.breadcrumb li a:hover {
  color: var(--primary-color);
}

/*.wpcf7-not-valid-tip{*/
/*	position:absolute;*/
/*}*/


.wpcf7 form.sent .wpcf7-response-output{
	color:#fff;
	background-color:#46b450;
}

.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output{
	color:#fff;
	background-color:#dc3232;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
		color:#fff;
	background-color:#ffb900;
}

.modal .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #000;
  opacity: 1;
  padding: 0;
  color: #fff;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  margin: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.modal .btn-close:hover, .modal .btn-close:focus {
  background: #f3b88f;
  color: #000;
}

/* -------------------------------------------------------
                         Scrollbar
------------------------------------------------------- */

body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background-color: var(--light-primary-color);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 10px;
}


body.single-service .single-content ul{
	list-style:disc;
	padding-left:20px;
}