@import url("https://fonts.googleapis.com/css2?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: #2a66ae;
  --secondary-color: #00adef;
  --white-color: #ffffff;
  --black-color: #1a1818;
  --poppins-font: "Poppins", sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  box-sizing: border-box;
  position: relative;
  background-color: transparent !important;
}

img {
  max-width: 100% !important;
}

section {
  padding: 70px 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.justify-content-between {
  justify-content: space-between;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_40 {
  margin-bottom: 40px;
}

.custom-logo {
  max-height: 50px;
  width: auto;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-nav {
  padding-left: 0;
}

.navbar-nav li {
  display: inline-block;
  padding: 0 20px;
}

.navbar-nav li a {
  text-decoration: none;
  color: var(--primary-color);
  font-family: var(--poppins-font);
  position: relative;
  transition: all 0.3s;
}

.navbar-nav li a:hover {
  color: var(--secondary-color);
}

.navbar-nav li.current_page_item a:after {
  content: "";
  position: absolute;
  width: 35px;
  height: 2px;
  left: 0;
  bottom: 0;
  background: var(--secondary-color);
  transition: all 0.3s;
}

.navbar-nav li.current_page_item a:hover:after {
  width: 100%;
}

header {
  background: transparent;
  padding: 20px 0;
}

.header.sticky_header {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 999;
  animation: headeranim 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.header.sticky_header .custom-logo {
  max-height: 30px;
}

.banner_shape_one {
  animation: rotateme 30s infinite alternate;
  position: absolute;
  top: 70px;
}

.faq-que {
  cursor: pointer;
  position: relative;
}

.faq-que::after {
  content: "+";
  position: absolute;
  right: 0;
  transition: transform 0.3s;
}

.faq-que.active::after {
  content: "-";
}

.current-service-content {
  font-size: 16px;
  line-height: 1.7;
  font-family: var(--poppins-font);
  color: var(--black-color);
  padding: 0 0 20px;
  width: calc(100% - 440px);
}

.current-service-content * {
  font-family: var(--poppins-font);
}

.service-banner {
  background-size: cover;
  background-position: center;
  min-height: 500px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.service-banner:after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.banner-content h1 {
  color: #fff;
  font-family: var(--poppins-font);
}

.all-services ul {
  padding: 0;
  margin: 0;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  overflow: hidden;
}

.all-services ul li {
  list-style: none;
  padding: 10px;
}

.all-services ul li a {
  text-decoration: none;
  color: var(--black-color);
}

.all-services ul li:not(:last-child) {
  margin-bottom: 10px;
}

.service-faqs {
  padding: 70px 0;
  background-color: #f5f5f5;
}

.current-service-content h1,
.current-service-content h2,
.current-service-content h3,
.current-service-content h4,
.current-service-content h5,
.current-service-content h6 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #222;
}

.current-service-content + .wp-block-heading {
  margin-top: 0;
}

.current-service-content p {
  margin-bottom: 20px;
}

.current-service-content ul,
.current-service-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.current-service-content ul li,
.current-service-content ol li {
  margin-bottom: 10px;
}

.current-service-content a {
  color: #0073e6;
  text-decoration: underline;
  transition: 0.3s;
}

.current-service-content a:hover {
  color: #005bb5;
  text-decoration: none;
}

.current-service-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
}

.current-service-content blockquote {
  border-left: 4px solid #ccc;
  padding-left: 20px;
  margin: 20px 0;
  font-style: italic;
  color: #555;
}

.current-service-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.current-service-content table th,
.current-service-content table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.current-service-content table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

.all-services {
  width: 400px;
  position: sticky;
  top: 100px;
  height: 100%;
}

.single-faq:not(:first-child) {
  margin-bottom: 20px;
}

.single-faq {
  border-bottom: 1px solid;
  padding-bottom: 20px;
}

.faq-answer {
  padding: 15px;
}

.all-services ul li h3 {
    color: #fff;
    font-size: 22px;
    line-height: 120%;
    font-weight: 700;
}

.all-services ul li:first-child {
    background: var(--primary-color);
    padding: 10px 10px;
}

.all-services ul li.active a {
    color: var(--primary-color);
}

.current-service-content h2, .current-service-content h3 {
    font-size: 30px;
}

@keyframes headeranim {
  0% {
    top: -145px;
  }
  100% {
    top: 0;
  }
}

@keyframes rotateme {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
    opacity: 1;
  }
}

.nav_toggle {
  display: none;
}

.home_banner_slides .svg_banner_shape svg {
  position: absolute;
  bottom: 0;
}

.single_home_slider {
  max-width: 1170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  margin-top: 50px;
  flex-wrap: wrap;
}

.home_banner_slides i {
  position: absolute;
  bottom: 270px;
  right: 140px;
  color: #fff;
  z-index: 99;
  cursor: pointer;
}

.home_banner_slides i.fa-solid.fa-arrow-left.slick-arrow {
  right: 190px;
}

.slider_content h2,
.slider_content h1 {
  color: var(--white-color);
  font-family: var(--poppins-font);
  font-size: 42px;
  line-height: 50px;
  text-shadow: 0 0 7px rgb(0, 0, 0);
  font-weight: 600;
  margin-bottom: 20px;
}

.slick-current .slider_content h2,
.slick-current .slider_content h1 {
  animation: fadeUp 1.75s;
}

.slider_content p {
  color: var(--white-color);
}

.slider_content p br {
  display: none;
}

.slider_img {
  width: calc(50% - 20px);
}

.slider_content {
  width: calc(50% - 20px);
}

.single_home_slider_wrap {
  height: 100%;
}

.home_page_slider {
  height: 100%;
}

.home_page_slider .slick-list.draggable {
  height: 100%;
}

.home_banner_slides {
  padding: 0;
  height: calc(100vh - 90px);
  background: var(--secondary-color);
  position: relative;
}

.home_page_slider .single_slider {
  width: 100%;
  height: calc(100vh - 90px);
  background-size: cover !important;
  background-position: center center !important;
  position: relative;
  z-index: 1;
}

.home_page_slider .single_slider:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(30, 35, 40, 0.6);
  z-index: -1;
  top: 0;
  left: 0;
}

.single_home_slider_wrap .single_slider .slider_content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  flex-wrap: wrap;
}

.single_home_slider_wrap:nth-child(odd) .single_home_slider {
  flex-direction: row-reverse;
}

.home_page_slider .single_slider .slider_content h2,
.home_page_slider .single_slider .slider_content h1 {
  font-family: var(--poppins-font);
  color: var(--white-color);
  font-size: 48px;
  font-weight: 600;
}

.home_page_slider .single_slider .slider_content p {
  font-family: var(--poppins-font);
  color: var(--white-color);
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 40px;
}

.home_page_slider ul.slick-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
}

.home_page_slider ul.slick-dots li {
  list-style: none;
  display: inline-block;
  margin: 0 10px;
  transition: all 0.3s;
}

.home_page_slider ul.slick-dots li button {
  font-size: 0;
  padding: 0;
  width: 45px;
  height: 3px;
  line-height: 0;
  margin: 0;
  border: none;
  background-color: #aaa !important;
  transition: all 0.3s;
}

.home_page_slider ul.slick-dots li.slick-active button {
  width: 100px;
  background-color: var(--white-color) !important;
}

.home_page_slider ul.slick-dots li button:focus,
.home_page_slider ul.slick-dots li button:focus-visible {
  outline: none;
}

.slider_cta {
  background: var(--primary-color);
  color: var(--white-color);
  font-family: var(--poppins-font);
  text-decoration: none;
  padding: 10px 20px;
  transition: all 0.3s;
  border: 1px solid var(--primary-color);
}

.slider_cta:hover {
  background: transparent;
  border-color: var(--white-color);
}

.about_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about_img {
  width: calc(50% - 30px);
}

.about_content {
  width: calc(50% - 30px);
}

.about_content h3 {
  font-family: var(--poppins-font);
  margin-bottom: 20px;
  color: var(--black-color);
  font-size: 34px;
  line-height: 38px;
  font-weight: 600;
}

.about_content p {
  font-family: var(--poppins-font);
  font-size: 18px;
  line-height: 36px;
  color: var(--black-color);
  letter-spacing: 0.3px;
}

.services {
  background: #efefef;
}

.section_title {
  font-family: var(--poppins-font);
  font-size: 34px;
  line-height: 38px;
  color: var(--black-color);
  text-align: center;
  position: relative;
}

.section_title:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background: var(--primary-color);
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
}

.services_wrap {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.single_service {
  width: calc(25% - 15px);
  padding: 15px;
  text-align: center;
  background: var(--white-color);
  height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.single_service:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(1, 1, 151, 0.1);
  top: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.3s;
  z-index: -1;
}

.single_service:hover:after {
  transform: scale(1);
}

.service_icon {
  width: 80px;
  height: 80px;
  background: rgba(1, 1, 151, 0.1);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.single_service:nth-child(n + 5) {
  margin-top: 15px;
}

.view_service {
  height: 210px;
  width: calc(25% - 15px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.btn_style_two {
  text-decoration: none;
  display: inline-block;
  border: 1px solid var(--primary-color);
  color: var(--black-color);
  padding: 15px 20px;
  font-family: var(--poppins-font);
  transition: all 0.3s;
  width: 100%;
  text-align: center;
}

.btn_style_two:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.service_heading {
  font-family: var(--poppins-font);
  font-size: 20px;
  line-height: 24px;
  color: var(--black-color);
}

.align-self-center {
  align-self: center;
}

footer {
  background: var(--black-color);
  padding: 40px 0 0;
}

.footer_col {
  width: calc(22% - 15px);
}

.footer_col:nth-child(1) {
  width: calc(25% - 15px);
}

.footer_wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

footer * {
  font-family: var(--poppins-font);
  color: var(--white-color);
}

.footer_info p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin-top: 20px;
  text-align: justify;
}

.footer_col ul {
  padding-left: 0;
  margin-top: 15px;
}

.footer_col ul li {
  list-style: none;
}

.footer_col ul li a {
  color: var(--white-color);
  text-decoration: none;
  font-size: 16px;
  line-height: 18px;
  transition: all 0.3s;
}

.footer_col ul li a i {
  margin-right: 10px;
  background: #fff;
  color: var(--black-color);
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.footer_col ul li a:hover {
  color: var(--primary-color);
}

.footer_logo img {
  max-height: 100px;
}

.latest_blogs {
  background: #efefef;
}

.single_blog {
  width: calc(33.33% - 20px);
  background: #fff;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.blogs_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 70px;
}

.blog_img {
  height: 220px;
  overflow: hidden;
}

.blog_img img {
  height: 100% !important;
  object-fit: cover;
  transition: all 0.3s;
}

.single_blog a {
  text-decoration: none;
}

.single_blog h4 {
  padding: 15px;
  font-size: 20px;
  line-height: 24px;
  font-family: var(--poppins-font);
  min-height: 110px;
}
.single_blog:hover img {
  transform: scale(1.02);
}

.client_testimonials {
  background: var(--secondary-color);
}

.slider_sec_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.slider_heading_col {
  width: calc(40% - 15px);
}

.tesimonial_slider_col {
  width: calc(60% - 15px);
}

.testomonial_text {
  padding: 20px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 40px;
  position: relative;
  border-radius: 10px;
}

.testomonial_text:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 30px solid #33bdf2;
  border-right: 30px solid transparent;
  bottom: -21px;
  left: 0;
}

.testomonial_text p {
  color: #fff;
  font-family: var(--poppins-font);
  font-size: 18px;
  line-height: 32px;
}

.single_testimonial {
  margin: 0 10px;
}

.slider_heading {
  font-family: var(--poppins-font);
  font-size: 32px;
  font-weight: 700;
  color: var(--white-color);
}

.testimonial_user h4 {
  font-family: var(--poppins-font);
  font-size: 20px;
  line-height: 24px;
  color: var(--white-color);
  margin-top: 0;
  margin-bottom: 0;
}

.testimonial_user span {
  font-family: var(--poppins-font);
  font-size: 16px;
  line-height: 20px;
  color: var(--white-color);
}

.testimonial_slider .slick-dots li button {
  font-size: 0;
  padding: 0;
  background-color: var(--primary-color) !important;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.5;
}

.testimonial_slider .slick-dots li.slick-active button {
  opacity: 1;
}

.testimonial_slider .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.testimonial_slider .slick-dots {
  padding-left: 0;
  text-align: center;
}

.slider_handles {
  display: flex;
  margin-top: 30px;
}

.slider_handles div {
  margin-right: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white-color);
}

.single_client img {
  max-width: 45% !important;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.single_client {
  text-align: center;
}

.single_client img:hover {
  filter: grayscale(0);
}

.service_cta {
  margin-top: 40px;
  text-align: center;
}

.btn_style_one {
  background: var(--primary-color);
  color: var(--white-color);
  font-family: var(--poppins-font);
  text-decoration: none;
  padding: 10px 20px;
  transition: all 0.3s;
  border: 1px solid var(--primary-color);
  display: inline-block;
}

.btn_style_one:hover {
  background: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.common_banner {
  background: url(https://amoharecruitment.com/wp-content/uploads/2023/06/banner-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 90px 0;
  position: relative;
  z-index: 1;
}

.common_banner:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(30, 35, 40, 0.6);
  z-index: -1;
  top: 0;
  left: 0;
}

.common_banner h1 {
  text-align: center;
  font-size: 58px;
  line-height: 62px;
  color: var(--white-color);
  font-family: var(--poppins-font);
}

.single_services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  background: #e0e0e0;
  box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
  padding: 20px 40px;
}

.single_service_img {
  width: calc(50% - 30px);
}

.single_service_content {
  width: calc(50% - 30px);
}

.single_services:nth-child(even) {
  flex-direction: row-reverse;
}

.services_name {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  font-family: var(--poppins-font);
  margin-bottom: 20px;
}

.single_service_content p {
  font-family: var(--poppins-font);
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
}

.single_services:not(:last-child) {
  margin-bottom: 60px;
}

.single_service_img img {
  height: 400px;
}

.copy_text {
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
}

.about_company_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about_img_col {
  width: calc(50% - 20px);
}

.about_content_col {
  width: calc(50% - 20px);
}

.about_content_col h2 {
  font-family: var(--poppins-font);
  color: var(--black-color);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

.about_content_col p {
  font-size: 18px;
  line-height: 26px;
  color: var(--black-color);
  font-family: var(--poppins-font);
  letter-spacing: 0.3px;
}

.why_us_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 70px;
}

.single_why_us {
  width: calc(33.33% - 30px);
  padding: 15px;
}

.why_us_img_single {
  text-align: center;
}

.why_us_img_single img {
  height: 200px;
}

.single_why_us h3 {
  color: var(--black-color);
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  font-family: var(--poppins-font);
  margin-bottom: 20px;
}

.single_why_us p {
  color: var(--black-color);
  font-size: 16px;
  line-height: 26px;
  font-family: var(--poppins-font);
}

.single_why_us:hover {
  background-color: #ffffff;
  transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
  box-shadow: 0px 30px 60px 0px rgb(0, 0, 0, 0.1);
}

.client_centric_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.client_centric_img {
  width: calc(50% - 20px);
}

.client_centric_content {
  width: calc(50% - 20px);
}

.client_centric_content h3 {
  font-family: var(--poppins-font);
  font-size: 22px;
  line-height: 26px;
  color: var(--black-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.client_centric_content p {
  font-size: 18px;
  line-height: 26px;
  color: var(--black-color);
  font-family: var(--poppins-font);
  letter-spacing: 0.3px;
}

.our_team_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 70px;
}

.single_team_member {
  width: calc(33.33% - 20px);
  padding: 20px;
  border: 1px solid #e7eaf3;
}

.member_img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.member_content {
  margin-top: 15px;
  font-family: var(--poppins-font);
}

.member_content span {
  font-size: 13px;
  color: #77838f;
}

.member_name {
  font-size: 20px;
  color: var(--black-color);
  margin-bottom: 15px;
  font-family: var(--poppins-font);
}

.member_content p {
  font-size: 15px;
  line-height: 25px;
  color: var(--black-color);
}

.contact_form_wrap {
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.contact_form_img_col {
  width: calc(50% - 30px);
}

.contact_form_col {
  width: calc(50% - 30px);
}

.contact_form_col form input {
  max-width: 100% !important;
}

.contact_form_col form textarea {
  resize: none;
}

.contact_info_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.single_contact {
  width: calc(33.33% - 20px);
  padding: 90px 15px;
  text-align: center;
  border-radius: 50px;
  background: #e0e0e0;
  box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.contact_icon i {
  font-size: 40px;
  color: var(--primary-color);
}

.single_contact .contact {
  color: var(--black-color);
  font-family: var(--poppins-font);
  margin: 10px 0;
}

.single_contact .contact_detail {
  font-family: var(--poppins-font);
  font-size: 16px;
  line-height: 22px;
}

.contact_form_col form * {
  font-family: var(--poppins-font);
}

.contact_form_col form label {
  color: var(--black-color);
}

.contact_form_col form .btn_style_one {
  background: var(--primary-color) !important;
  padding: 10px 20px !important;
  border: 1px solid var(--primary-color) !important;
  display: inline-block;
}

.contact_form_col form .btn_style_one:hover {
  background: transparent !important;
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.back_to_top {
  position: fixed;
  bottom: 40px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white-color);
}

.h_banner_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.h_slider_img {
  width: calc(50% - 50px);
}

.h_slider_content {
  width: calc(50% - 50px);
}

.post-banner {
  background-position: center;
  background-size: cover;
  padding: 140px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.post-banner:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: -1;
}

.post-title {
  font-family: var(--poppins-font);
  font-size: 62px;
  color: var(--white-color);
  line-height: 76px;
}

.post-content {
  margin-top: 40px;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.post-meta .author {
  margin-right: 10px;
  margin-bottom: 0;
}

.post-meta .post-date {
  margin-bottom: 0;
}

.post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  margin-bottom: 20px;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .single_service_img img {
    height: 200px;
  }
  .home_page_slider .slick-track {
    height: 100%;
  }
  .home_banner_slides i {
    bottom: 140px;
  }
}

@media (max-width: 767px) {
  p {
    font-size: 16px;
    line-height: 120% !important;
    margin-bottom: 20px !important;
  }
  section {
    padding: 20px 0;
  }
  .footer_col {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .single_home_slider {
    margin-top: 20px;
    display: inline-block;
  }
  .slider_img {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }

  .slider_content h2,
  .slider_content h1 {
    font-size: 32px;
    line-height: 44px;
  }

  .home_banner_slides i.fa-solid.fa-arrow-left.slick-arrow {
    right: 70px;
  }

  .home_banner_slides i {
    bottom: 110px;
    right: 20px;
  }

  .slider_content {
    text-align: center;
  }

  .slider_content {
    width: 100%;
  }
  .single_service,
  .view_service {
    width: calc(50% - 15px);
  }
  .btn_style_two {
    padding: 10px 10px;
    font-size: 16px;
  }
  .about_img,
  .about_content {
    width: 100%;
  }
  .nav_toggle {
    display: block;
    position: absolute;
    right: 20px;
  }
  .navbar-nav {
    width: 100%;
    background: #efefef;
    top: 100px;
    position: absolute;
    z-index: 999;
    left: 100%;
    height: calc(100vh - 100px);
    padding-top: 30px;
    transition: all 0.3s;
  }
  .post-banner {
    padding: 70px 0;
  }

  .post-title {
    font-size: 30px;
    line-height: 40px;
  }

  .custom-logo {
    max-height: 60px;
  }
  .post-content h2,
  .post-content h3 {
    font-size: 26px;
  }
  .navbar-nav li {
    display: block;
  }
  .navbar-nav.collapsed {
    left: 0;
  }
  .header.sticky_header .nav.navbar-nav {
    top: 75px;
  }
  html.navbar_collapsed,
  html.navbar_collapsed body {
    overflow: hidden !important;
  }
  .single_blog {
    width: 100%;
  }
  .single_blog:not(:last-child) {
    margin-bottom: 20px;
  }
  .single_service:nth-child(n + 3),
  .view_service {
    margin-top: 30px;
  }
  .home_page_slider .single_slider {
    height: calc(100vh - 100px);
  }
  .home_page_slider .single_slider .slider_content h2,
  .home_page_slider .single_slider .slider_content h1 {
    font-size: 32px;
  }

  .home_page_slider .single_slider .slider_content p {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 20px;
  }

  .slider_cta {
    font-size: 16px;
  }

  .slider_heading_col {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  .tesimonial_slider_col {
    width: 100%;
  }

  .slider_handles {
    align-items: center;
    justify-content: center;
  }

  .testomonial_text p {
    font-size: 16px;
    line-height: 26px;
  }
  .single_service_img {
    width: 100%;
    text-align: center;
  }

  .all_services {
    padding: 40px 0;
  }

  .single_service_content {
    width: 100%;
    margin-top: 20px;
  }

  .single_services {
    padding: 10px 20px;
  }

  .services_name {
    font-size: 20px;
    line-height: 24px;
  }

  .single_service_content p {
    font-size: 16px;
    line-height: 22px;
  }

  .btn_style_one {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 20px;
  }

  .single_services:not(:last-child) {
    margin-bottom: 40px;
  }
  .common_banner {
    padding: 40px 0;
  }

  .common_banner h1 {
    font-size: 36px;
    line-height: 40px;
  }
  .about_content h3 {
    font-size: 24px;
    line-height: 28px;
  }

  .about_content p {
    font-size: 16px;
    line-height: 24px;
  }
  .blogs_wrap {
    margin-top: 30px;
  }

  .section_title {
    font-size: 24px;
    line-height: 26px;
  }

  .service_heading {
    font-size: 16px;
    line-height: 20px;
  }
  .footer_info p {
    font-size: 14px;
    line-height: 18px;
  }

  .col_title {
    font-size: 20px;
  }

  .footer_col ul {
    margin-top: 10px;
  }

  .footer_col ul li {
    line-height: 1.5;
  }
  .about_img_col {
    width: 100%;
  }

  .about_content_col {
    width: 100%;
    margin-top: 40px;
  }

  .about_our_company {
    padding-top: 40px;
  }

  .about_content_col h2 {
    font-size: 20px;
    line-height: 24px;
  }

  .about_content_col p {
    font-size: 16px;
    line-height: 22px;
  }

  .why_us_wrap {
    margin-top: 30px;
  }

  .single_why_us {
    width: 100%;
  }

  .client_centric_img {
    width: 100%;
  }

  .client_centric_content {
    width: 100%;
    margin-top: 20px;
  }

  .client_centric_content p {
    font-size: 16px;
    line-height: 22px;
  }

  .our_team_wrap {
    margin-top: 30px;
  }

  .single_team_member {
    width: 100%;
  }

  .single_team_member:nth-child(n + 2) {
    margin-top: 20px;
  }

  .contact_form_wrap {
    margin-top: 30px;
  }

  .contact_form_img_col {
    width: 100%;
  }

  .contact_form_col {
    width: 100%;
  }

  .single_contact {
    width: 100%;
    padding: 75px 15px;
  }

  .single_contact:not(:last-child) {
    margin-bottom: 20px;
  }

  .all-services {
    width: 100%;
    position: relative;
    top: 0;
    order: 2;
    margin-bottom: 40px;
  }

  .current-service-content {
    width: 100%;
  }
  .banner-content h1 {
    font-size: 2.5rem;
    line-height: 130%;
  }

  .current-service-content h2, .current-service-content h3 {
      font-size: 24px;
  }

  .service-faqs {
    padding: 40px 0;
  }

  .faq-que {
    font-size: 20px;
  }
}
