/*
    Template Name: Modern Responsive Bootstrap 5 Consulting Template – Multi Page Design
    Template URI: crawford.dharapixel.com
    Description: Modern Responsive Bootstrap 5 Consulting Template – Multi Page Design
    Author: Dharapixel
    Author URI: https://themeforest.net/user/ravi18091993
    Version: 1.0
*/

/*===================================
    CSS INDEX
=====================================
    1. Default CSS
    2. Header CSS
    3. Hero CSS
    4. Archivement CSS
    5. Who we are CSS
    6. What we do CSS
    7. Team Card CSS
    8. Join Us CSS
    9. Case Study CSS
    10. Testimonial CSS
    11. Video CSS
    12. Contact CSS
    13. Blog CSS
    14. Newsletter CSS
    15. Page Hero CSS
    16. FAQ'S CSS
    17. Policy CSS
    18. Footer CSS
===================================*/

/* Montserrat */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* Poppins */
@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 {
  --body-font: "Poppins", serif;
  --title-font: "Montserrat", serif;
  --primary-bg: #fff;
  --secondary-bg: #252b42;
  --theme-bg: #ff7b47;
  --primary-text-color: #fff;
  --secondary-text-color: #252b42;
  --theme-text-color: #ff7b47;
  --gray-text-color: #737373;
  --primary-border: #fff;
  --secondary-border: #252b42;
  --theme-border: #ff7b47;
  --extra-light-green: #ecfdf3;
  --dark-green: #027a48;
  --extra-light-theme: #fdf2fa;
  --extra-light-secondary: #f9f5ff;
}

/*===================================
    1. Default CSS
===================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*-- Background Color --*/
.bg_primary {
  background-color: var(--primary-bg);
}

.bg_secondary {
  background-color: var(--secondary-bg);
}

.bg_theme {
  background-color: var(--theme-bg);
}

.text_secondary {
  color: var(--secondary-bg);
}

body {
  font-family: var(--body-font);
  overflow-x: hidden;
  background-color: #f9f9f9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
  font-weight: 700;
  margin-bottom: 0;
}

p {
  font-family: var(--body-font);
  margin-bottom: 0;
  line-height: 1.6;
}

/*-- Font Size --*/
/* Default styles (Desktop First) */
h1 {
  font-size: 80px;
}

h2 {
  font-size: 58px;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 36px;
}

h5 {
  font-size: 32px;
}

h6 {
  font-size: 28px;
}

/* Large screens (Desktops and laptops) */
@media (max-width: 1200px) {
  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 50px;
  }

  h3 {
    font-size: 36px;
  }

  h4 {
    font-size: 32px;
  }

  h5 {
    font-size: 28px;
  }

  h6 {
    font-size: 24px;
  }
}

/* Medium screens (Tablets) */
@media (max-width: 992px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 46px;
  }

  h3 {
    font-size: 34px;
  }

  h4 {
    font-size: 30px;
  }

  h5 {
    font-size: 26px;
  }

  h6 {
    font-size: 22px;
  }
}

/* Small screens (Large phones) */
@media (max-width: 768px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 26px;
  }

  h5 {
    font-size: 22px;
  }

  h6 {
    font-size: 20px;
  }
}

/* Extra small screens (Small phones) */
@media (max-width: 576px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }
}

.title-prefix {
  position: relative;
  width: fit-content;
}

.title-prefix span {
  color: var(--theme-text-color);
}

ul li {
  list-style: none;
}

a,
a:hover,
a:active {
  text-decoration: none;
}

/*-- Padding --*/
.py-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

@media (max-width: 992px) {
  .py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .py-00 {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.pt-70 {
  padding-top: 70px;
}

@media (max-width: 992px) {
  .pt-40 {
    padding-top: 40px;
  }

  .pt-00 {
    padding-top: 0;
  }
}

.pb-70 {
  padding-bottom: 70px;
}

@media (max-width: 992px) {
  .pb-40 {
    padding-bottom: 40px;
  }

  .pb-00 {
    padding-bottom: 0;
  }
}

/*-- Button CSS --*/
.custom-btn {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--body-font);
  transition: all 0.3s ease-in-out;
}

.theme-btn {
  background-color: var(--theme-border);
  color: var(--primary-text-color);
  border: 1px solid var(--theme-border);
}

.theme-btn:hover {
  background-color: var(--primary-border);
  color: var(--theme-text-color);
  border: 1px solid var(--secondary-border);
}

.white-btn {
  background-color: transparent;
  color: var(--primary-text-color);
  border: 1px solid var(--primary-border);
}

.white-btn:hover {
  background-color: var(--primary-border);
  color: var(--secondary-text-color);
}

.secondary-btn {
  background-color: transparent;
  color: var(--secondary-text-color);
  border: 1px solid var(--secondary-border);
}

.secondary-fill-btn {
  background-color: var(--secondary-border);
  color: var(--primary-text-color);
  border: 1px solid var(--secondary-border);
}

.secondary-fill-btn:hover {
  background-color: transparent;
  color: var(--secondary-text-color);
  border: 1px solid var(--secondary-border);
}

.secondary-btn:hover {
  background-color: var(--secondary-border);
  color: var(--primary-text-color);
}

/* preloader */
.crawford-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crawford-preloader img {
  width: 210px;
}

/* .hover shine */
.shine {
  position: relative;
  overflow: hidden;
}

.shine::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -75%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
  z-index: 2;
}

.shine:hover::before,
.shine:focus::before {
  -webkit-animation: shine 0.85s;
  animation: shine 0.85s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/*===================================
    2. Header CSS
===================================*/
header .navbar {
  transition: all 0.3s ease-in-out;
}

header.header-fixed .navbar {
  background-color: var(--secondary-bg) !important;
}

header.header-dark .navbar {
  background-color: var(--secondary-bg) !important;
}

header.header-active .navbar {
  background-color: var(--secondary-bg) !important;
}

header .navbar .navbar-brand img {
  width: 170px;
}

header .navbar .navbar-collapse .navbar-nav .nav-item.active .nav-link {
  color: var(--theme-text-color);
}

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: var(--primary-text-color);
  font-size: 14px;
  font-family: var(--title-font);
  font-weight: 500;
  letter-spacing: 0.2px;
}

header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
  padding: 0;
}

@media (max-width: 992px) {
  header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
    background-color: transparent;
    padding: 15px 0;
  }
}

header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a.dropdown-item {
  padding: 15px 20px;
  color: var(--secondary-text-color);
  font-size: 14px;
  font-family: var(--title-font);
  font-weight: 500;
  letter-spacing: 0.2px;
}

header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a.dropdown-item.active {
  background-color: var(--theme-bg);
  color: var(--primary-text-color);
}

@media (max-width: 992px) {
  header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a.dropdown-item {
    background-color: transparent;
    color: var(--primary-text-color);
  }
}

header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a.dropdown-item:hover,
header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a.dropdown-item:focus {
  background-color: var(--primary-bg);
  color: var(--theme-text-color);
}

header .navbar .navbar-toggler {
  color: var(--primary-text-color);
  border: 1px solid var(--primary-border);
  outline: none;
  box-shadow: none;
}

/*===================================
    3. Hero CSS
===================================*/
.hero-section {
  height: 100vh;
  position: relative;
}

.hero-section .background-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-bg);
  opacity: 0.5;
}

.hero-section .home-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 992px) {
  .hero-section .home-content {
    width: 75%;
  }
}

.hero-section .home-content .title-text {
  color: var(--primary-text-color);
}

.hero-section .home-content .hero-description {
  color: var(--primary-text-color);
  font-size: 20px;
  font-weight: 400;
}

@media (max-width: 992px) {
  .hero-section .home-content .hero-description {
    font-size: 16px;
  }
}

/*===================================
    4. Archivement CSS
===================================*/
.archivement-section .archivement-row {
  transform: translateY(-50%);
  background-color: var(--primary-bg);
}

@media (max-width: 992px) {
  .archivement-section .archivement-row {
    transform: translateY(0%);
  }
}

.archivement-section .archivement-row .archivement-content h6 {
  color: var(--secondary-text-color);
}

.archivement-section .archivement-row .archivement-content p {
  color: var(--gray-text-color);
  font-size: 14px;
  font-weight: 500;
}

/*===================================
    5. Who we are CSS
===================================*/
.who-we-are-section .who-we-are-content .content {
  color: var(--gray-text-color);
  font-weight: 400;
  font-size: 14px;
}

/*===================================
    6. What we do CSS
===================================*/
.what-we-do-section .service-card {
  padding: 25px 35px;
  background-color: var(--primary-bg);
}

.what-we-do-section .service-card h6 {
  font-size: 20px;
}

.what-we-do-section .service-card p {
  font-size: 14px;
  color: var(--gray-text-color);
}

/*===================================
    7. Team Card CSS
===================================*/
.our-team-section .heading-description {
  color: var(--gray-text-color);
}

.our-team-section .team-card {
  background-color: var(--primary-bg);
  padding: 25px 30px;
}

@media (max-width: 992px) {
  .our-team-section .team-card {
    padding: 15px 10px;
  }
}

.our-team-section .team-card .member-image {
  width: 128px;
  height: 128px;
  min-width: 128px;
  object-fit: cover;
}

.our-team-section .team-card h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-text-color);
}

.our-team-section .team-card p {
  font-weight: bold;
  color: var(--secondary-text-color);
}

.our-team-section .team-card a {
  font-size: 14px;
  color: var(--gray-text-color);
}

@media (max-width: 992px) {
  .our-team-section .team-card a {
    font-size: 11px;
  }
}

/*===================================
    8. Join Us CSS
===================================*/
.join-us-section {
  background-color: var(--secondary-bg);
}

.join-us-section .join-us-content h6 {
  color: var(--primary-text-color);
}

.join-us-section .join-us-content h3 {
  color: var(--primary-text-color);
}

/*===================================
    9. Case Study CSS
===================================*/
.case-studies-section .case-study-card h6 {
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary-text-color);
}

@media (max-width: 992px) {
  .case-studies-section .case-study-card h6 {
    font-size: 20px;
  }
}

.case-studies-section .case-study-card p {
  font-size: 14px;
  color: var(--gray-text-color);
}

@media (max-width: 992px) {
  .case-studies-section .case-study-card p {
    font-size: 12px;
  }
}

.case-studies-section .case-study-card .case-category p {
  font-size: 13px;
  background-color: var(--primary-bg);
  color: var(--secondary-text-color);
  font-weight: 500;
  width:fit-content;
}

@media (max-width: 992px) {
  .case-studies-section .case-study-card .case-category p {
    font-size: 11px;
  }
}

.case-studies-archive {
  padding-top: 180px;
  padding-bottom: 80px;
}

@media (max-width: 992px) {
  .case-studies-archive {
    padding-bottom: 40px;
  }
}

.case-studies-archive .case-archive-content p {
  color: var(--gray-text-color);
  font-weight: 400;
}

/*===================================
    10. Testimonial CSS
===================================*/
.testimonial-section {
  background-color: var(--secondary-bg);
}

.testimonial-section .review-slider .slick-list {
  margin-left: -30px;
  margin-right: -30px;
}

.testimonial-section .review-slider .slick-dots {
  margin-top: 30px;
  bottom: initial;
}

.testimonial-section .review-slider .slick-dots li {
  width: 10px;
  height: 10px;
}

.testimonial-section .review-slider .slick-dots li.slick-active button {
  opacity: 1;
  background-color: var(--theme-bg);
}

.testimonial-section .review-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  background-color: var(--primary-bg);
  border-radius: 50%;
  opacity: 0.25;
}

.testimonial-section .review-slider .slick-dots li button::before {
  display: none;
}

.testimonial-section .review-slider .slick-list .slick-slide {
  padding-left: 30px;
  padding-right: 30px;
}

.testimonial-section .testimonial-card .testimonial-content {
  padding: 40px 60px;
  background-color: var(--primary-bg);
}

@media (max-width: 992px) {
  .testimonial-section .testimonial-card .testimonial-content {
    padding: 30px 40px;
  }
}

.testimonial-section .testimonial-card .testimonial-content .reviewer-image {
  width: 96px;
  height: 96px;
  min-width: 96px;
  object-fit: cover;
  position: absolute;
  left: -48px;
}

@media (max-width: 992px) {
  .testimonial-section .testimonial-card .testimonial-content .reviewer-image {
    position: initial;
  }
}

.testimonial-section .testimonial-card .testimonial-content .reviewer-name {
  font-size: 24px;
}

@media (max-width: 992px) {
  .testimonial-section .testimonial-card .testimonial-content .reviewer-name {
    font-size: 20px;
  }
}

.testimonial-section .testimonial-card .testimonial-content .reviewer-company {
  font-size: 14px;
  color: var(--gray-text-color);
  font-weight: 500;
}

.testimonial-section .testimonial-card .testimonial-content .review-star {
  color: #f3cd03;
}

.testimonial-section .testimonial-card .testimonial-content .reviewer-content {
  font-size: 14px;
  color: var(--gray-text-color);
  font-weight: 400;
}

/*===================================
    11. Video CSS
===================================*/
.video-section .video-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-bg);
  opacity: 0.2;
}

.video-section .video-image img {
  height: 400px;
  object-fit: cover;
}

.video-section .video-image button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
  color: var(--primary-text-color);
}

.video-section .video-image button::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background-color:rgba(255, 255, 255, 0.2);
  border-radius:50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blink-shadow 1s infinite;
}

@keyframes blink-shadow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.video-section .latest-video-content .video-description {
  font-size: 14px;
  color: var(--gray-text-color);
}

.video-section .latest-video-content ul li h6 {
  font-size: 16px;
}

.video-section .latest-video-content ul li p {
  font-size: 14px;
  color: var(--gray-text-color);
}

/*===================================
    12. Contact CSS
===================================*/
.branch-section {
  background-color: var(--secondary-bg);
}

.branch-section h3 {
  color: var(--primary-text-color);
  font-weight: 600;
}

.branch-section p {
  font-size: 14px;
  color: var(--primary-text-color);
}

.contact-form-section {
  background: linear-gradient(to top,
      transparent 0%,
      transparent 50%,
      var(--secondary-bg) 50%,
      var(--secondary-bg) 100%);
}

.contact-form-section .contact-form-section-bg {
  background-color: var(--primary-bg);
  padding: 40px 60px;
}

@media (max-width: 992px) {
  .contact-form-section .contact-form-section-bg {
    padding: 80px 30px;
  }
}

@media (max-width: 576px) {
  .contact-form-section .contact-form-section-bg {
    padding: 80px 25px;
  }
}

.contact-form-section .contact-form-section-bg form .form-group label {
  font-size: 14px;
  font-weight: 500;
}

.contact-form-section .contact-form-section-bg form .form-group input {
  background-color: #f8f8f8;
  border: none;
  outline: none;
  padding: 15px 20px;
  font-size: 14px;
  font-family: var(--title-font);
}

.contact-form-section .contact-form-section-bg form .form-group textarea {
  background-color: #f8f8f8;
  border: none;
  outline: none;
  padding: 15px 20px;
  font-size: 14px;
  font-family: var(--title-font);
}

.contact-form-section .contact-form-section-bg form .submit-btn {
  background-color: var(--theme-bg);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--title-font);
  color: var(--primary-text-color);
}

.contact-info-section .contact-info-card {
  background-color: var(--secondary-bg);
  padding: 30px 40px;
  color: var(--primary-text-color);
}

.contact-info-section .contact-info-card i {
  font-size: 32px;
}

.contact-info-section .contact-info-card h6 {
  font-size: 22px;
}

.contact-info-section .contact-info-card a {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-text-color);
}

/*===================================
    13. Blog CSS
===================================*/
.blog-section .main-blog-section .slider-btn-group {
  z-index: 1;
}

.blog-section .blog-list .single-blog a img {
  height: 200px;
  width: 200px;
  object-fit: cover;
}

@media (max-width: 992px) {
  .blog-section .blog-list .single-blog a img {
    height: 200px;
    width: 100%;
  }
}

.blog-custom a .blog-date {
  color: var(--theme-text-color);
  font-size: 14px;
}

.blog-custom a .blog-title {
  color: var(--secondary-text-color);
  font-size: 24px;
}

@media (max-width: 992px) {
  .blog-custom a .blog-title {
    font-size: 20px;
  }
}

.blog-custom a .blog-description {
  color: var(--gray-text-color);
}

@media (max-width: 992px) {
  .blog-custom a .blog-description {
    font-size: 14px;
  }
}

.blog-custom a .blog-label p {
  font-size: 14px;
  padding: 4px 12px;
  margin-right: 5px;
  border-radius: 20px;
  font-weight: 500;
}

.blog-custom a .blog-label p:nth-child(3n + 1) {
  background-color: var(--extra-light-green);
  color: var(--dark-green);
}

.blog-custom a .blog-label p:nth-child(3n + 2) {
  background-color: var(--extra-light-theme);
  color: var(--theme-text-color);
}

.blog-custom a .blog-label p:nth-child(3n + 3) {
  background-color: var(--extra-light-secondary);
  color: var(--secondary-text-color);
}

.blog-archive {
  padding-top: 180px;
  padding-bottom: 80px;
}

@media (max-width: 992px) {
  .blog-archive {
    padding-bottom: 40px;
  }
}

.blog-archive .blog-archive-content p {
  color: var(--gray-text-color);
  font-weight: 400;
}

.blog-archive .blog-archive-content .blog-date {
  color: var(--theme-text-color);
  font-weight: 500;
}

.blog-archive-content .blog-label p {
  font-size: 14px;
  padding: 4px 12px;
  margin-right: 5px;
  border-radius: 20px;
  font-weight: 500;
}

.blog-archive-content .blog-label p:nth-child(3n + 1) {
  background-color: var(--extra-light-green);
  color: var(--dark-green);
}

.blog-archive-content .blog-label p:nth-child(3n + 2) {
  background-color: var(--extra-light-theme);
  color: var(--theme-text-color);
}

.blog-archive-content .blog-label p:nth-child(3n + 3) {
  background-color: var(--extra-light-secondary);
  color: var(--secondary-text-color);
}

/*===================================
    14. Newsletter CSS
===================================*/
.newsletter-section {
  background-color: var(--secondary-bg);
}

.newsletter-section .newsletter-content h5 {
  color: var(--primary-text-color);
}

.newsletter-section .newsletter-content p {
  color: var(--primary-text-color);
  font-size: 20px;
}

@media (max-width: 992px) {
  .newsletter-section .newsletter-content p {
    font-size: 16px;
  }
}

.newsletter-section .newsletter-form input {
  width: 240px;
  height: 50px;
  padding: 0 20px;
  outline: none;
  color: var(--secondary-text-color);
  font-size: 16px;
}

@media (max-width: 992px) {
  .newsletter-section .newsletter-form input {
    width: 200px;
  }
}

.newsletter-section .newsletter-form input::placeholder {
  color: var(--secondary-text-color);
  opacity: 0.4;
}

.newsletter-section .newsletter-form button {
  background-color: var(--theme-bg);
  color: var(--primary-text-color);
  height: 50px;
  padding: 0 24px;
  font-family: var(--title-font);
  font-weight: 500;
}

/*===================================
    15. Page Hero CSS
===================================*/
.page-hero-section {
  height: 450px;
}

.page-hero-section::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-bg);
  opacity: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.page-hero-section .page-hero-bg {
  object-fit: cover;
}

.page-hero-section .page-hero-content {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}

.page-hero-section .page-hero-content h2 {
  color: var(--primary-text-color);
}

/*===================================
    16. FAQ'S CSS
===================================*/
.faq-section .faq-heading {
  top: 120px;
}

@media (max-width: 992px) {
  .faq-section .faq-heading {
    position: relative;
  }
}

.faq-section .faq-accordion .accordion-item {
  border: 1px solid #d1d1d1;
  background-color: transparent;
  border-radius: 5px;
}

.faq-section .faq-accordion .accordion-item .accordion-header .accordion-button {
  background-color: transparent;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--title-font);
  outline: none;
  box-shadow: none;
  color: var(--secondary-text-color);
}

.faq-section .faq-accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url("../assets/images/icon/arrow-down-circle.svg") !important;
  height: 34px;
  width: 34px;
  background-size: cover;
}

.faq-section .faq-accordion .accordion-item .accordion-body {
  font-size: 15px;
  color: var(--gray-text-color);
  font-weight: 400;
}

.faq-section .faq-accordion .accordion-item .accordion-body span {
  color: var(--theme-text-color);
}

/*===================================
    17. Policy CSS
===================================*/
.policy-section {
  padding-top: 180px;
  padding-bottom: 140px;
}

@media (max-width: 992px) {
  .policy-section {
    padding-top: 140px;
    padding-bottom: 80px;
  }
}

.policy-section .policy-list {
  top: 180px;
  background-color: var(--primary-bg);
  padding: 40px 30px 16px;
}

.policy-section .policy-list .policy-points li a {
  color: var(--gray-text-color);
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.policy-section .policy-list .policy-points li.active a {
  background-color: var(--extra-light-theme);
  color: var(--theme-text-color);
  padding: 8px 16px;
}

.policy-content .single-policy:first-child {
  padding-top: 0;
}

.policy-content .single-policy {
  padding-top: 140px;
}

@media (max-width: 992px) {
  .policy-content .single-policy {
    padding-top: 80px;
  }
}

.policy-content .single-policy p {
  color: var(--gray-text-color);
  font-size: 14px;
  line-height: 1.8;
}

/*===================================
    18. Footer CSS
===================================*/
footer .footer-row {
  padding-top: 100px;
  padding-bottom: 60px;
}

@media (max-width: 992px) {
  footer .footer-row {
    padding-top: 30px;
    padding-bottom: 80px;
  }
}

footer .footer-row .link-title {
  font-size: 20px;
}

footer .footer-row .link-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 70px;
  height: 4px;
  border-radius: 4px;
  background-color: var(--theme-bg);
}

footer .footer-row .company-info p {
  font-size: 14px;
  color: var(--gray-text-color);
}

footer .footer-row .company-info .footer-logo {
  width: 190px;
  display: block;
}

footer .footer-row .company-info .social-links li a {
  width: 32px;
  height: 32px;
  min-width: 32px;
  color: var(--gray-text-color);
  border: 1px solid #d8d8d8;
  transition: all 0.3s ease-in-out;
}

footer .footer-row .company-info .social-links li a:hover {
  background-color: var(--theme-bg);
  color: var(--primary-bg);
  border: 1px solid var(--theme-border);
}

footer .footer-row .footer-menu-link li {
  margin-bottom: 20px;
}

footer .footer-row .footer-menu-link li:last-child {
  margin-bottom: 0;
}

footer .footer-row .footer-menu-link li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-text-color);
  transition: all 0.3s ease-in-out;
}

footer .footer-row .footer-menu-link li a:hover {
  color: var(--theme-text-color);
}

footer .footer-row .contact-links li {
  margin-bottom: 20px;
}

footer .footer-row .contact-links li:last-child {
  margin-bottom: 0;
}

footer .footer-row .contact-links li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-text-color);
  transition: all 0.3s ease-in-out;
}

footer .footer-row .contact-links li a i {
  color: var(--theme-text-color);
  font-size: 18px;
}

footer .sub-footer-row {
  background-color: var(--secondary-bg);
  padding: 30px 0;
}

footer .sub-footer-row p {
  color: var(--primary-text-color);
  font-size: 14px;
}

footer .sub-footer-row p a {
  color: var(--theme-text-color);
}