/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Gothic+A1&family=Great+Vibes&family=Montserrat+Alternates: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&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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Saira:ital,wght@0,100..900;1,100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&family=ZCOOL+XiaoWei&display=swap');



:root {
  --default-font: "Saira", serif;
  --heading-font: "Saira", serif;
  --nav-font: "Saira", serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #364d59;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #52565e;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ff0000;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --primary-color: #ff0000;
  --secondary-color: #121820;
  --third-color: #F58B8B;
  --fourth-color: #fff;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.55);
  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff0000;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4f7f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  scroll-behavior: smooth;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

ul {
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
  margin-left: 4px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 24px;
  padding-left: 1px;
  font-family: var(--heading-font);
  color: var(--color-primary);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #fff;
  --heading-color: #3c3c3c;
  --nav-color: #3c3c3c;
  --nav-hover-color: #3c3c3c;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .withoutscroll {
    display: block;
  }

  .scrolled .withoutscroll {
    display: none;
  }

  .withscroll {
    display: none;
  }

  .scrolled .withscroll {
    display: block;
  }

  .scrolled .navmenu a,
  .navmenu a:focus {
    color: #000 !important;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff !important;
    font-size: 16px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: capitalize;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--primary-color) !important;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: -50px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--nav-dropdown-color) !important;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color) !important;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 18px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000000;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #000;
  background: url("../images/home/footer-bg.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  font-size: 14px;
  position: relative;
}

.footer .container {
  position: relative;
}

.footer:before {
  content: "";
  position: absolute;
  inset: 0;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 20px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 26px;
  bottom: 40px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 40px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 110px 0 60px 0;
  text-align: left;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, #121820, transparent 20%);
  position: absolute;
  inset: 0;
  /* background-image: url('../images/home/deco-03.png');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 10%; */
}

.page-title h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
  padding-top: 16px;
  position: relative;
  top: 40px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: start;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  position: absolute;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs li a {
  color: #fff;
}


.current {
  list-style-type: disc;
  color: var(--accent-color);
  margin-left: 30px;
}

.current span {
  margin-left: -10px;
  color: #fff;
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: #000;
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
}

.hero .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

.hero .info .btn-get-started {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--accent-color);
}

.hero .info .btn-get-started:hover {
  background: var(--accent-color);
}

.hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

.hero .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* .hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
} */

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started .content {
  padding: 30px 0;
}

.get-started .content h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}

.get-started .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.get-started .content p {
  font-size: 14px;
}

.get-started .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-started .php-email-form {
    padding: 20px;
  }
}

.get-started .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-started .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-started .php-email-form input[type=text],
.get-started .php-email-form input[type=email],
.get-started .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.get-started .php-email-form input[type=text]:focus,
.get-started .php-email-form input[type=email]:focus,
.get-started .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.get-started .php-email-form input[type=text]::placeholder,
.get-started .php-email-form input[type=email]::placeholder,
.get-started .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.get-started .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.get-started .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Constructions Section
--------------------------------------------------------------*/
.constructions .card-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
}

.constructions .card-item .card-bg {
  min-height: 300px;
  position: relative;
}

.constructions .card-item .card-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.constructions .card-item .card-body {
  padding: 30px;
}

.constructions .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.constructions .card-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--heading-color);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services .service-item:hover .icon i {
  color: var(--heading-color);
}

.services .service-item:hover .icon:before {
  background: var(--accent-color);
}

.services .service-item:hover h3 {
  border-color: var(--accent-color);
  color: var(--heading-color);
}

.services .service-item:hover .readmore {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .features-image {
  position: relative;
  min-height: 400px;
}

.alt-services .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.alt-services h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.alt-services h3:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

.alt-services .icon-box {
  margin-top: 50px;
}

.alt-services .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.alt-services .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.alt-services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.alt-services .icon-box h4 a:hover {
  color: var(--accent-color);
}

.alt-services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  color: var(--heading-color);
  padding: 15px 0;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.projects .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.projects .portfolio-filters li:hover,
.projects .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.projects .portfolio-filters li:first-child {
  margin-left: 0;
}

.projects .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .projects .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.projects .portfolio-content {
  position: relative;
  overflow: hidden;
}

.projects .portfolio-content img {
  transition: 0.3s;
}

.projects .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.projects .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.projects .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.projects .portfolio-content .portfolio-info .preview-link,
.projects .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.projects .portfolio-content .portfolio-info .preview-link:hover,
.projects .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.projects .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.projects .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.projects .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

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

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
  background: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
}

.recent-blog-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-blog-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-blog-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}

.about .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--accent-color);
}

.about .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

.about .about-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats-counter .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats-counter .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Alt Services 2 Section
--------------------------------------------------------------*/
.alt-services-2 .features-image {
  position: relative;
  min-height: 400px;
}

.alt-services-2 .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.alt-services-2 h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.alt-services-2 .icon-box {
  margin-top: 30px;
}

.alt-services-2 .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.alt-services-2 .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services-2 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--accent-color);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards h3 {
  font-size: 20px;
  font-weight: 700;
}

.features-cards p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-cards ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.features-cards ul li i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
  width: 100%;
}

.project-details .swiper-wrapper {
  height: auto;
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .project-details .swiper-button-prev,
  .project-details .swiper-button-next {
    display: none;
  }
}

.project-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.project-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.project-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.project-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.project-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.project-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.project-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.project-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.project-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.project-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.project-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.project-details .portfolio-description p {
  padding: 0;
}

.project-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.project-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.project-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.project-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.project-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

.blog-posts .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts p {
  margin-top: 20px;
}

.blog-posts hr {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 15px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

.carousel-caption {
  z-index: 9;
  top: 30%;
}

.carousel-caption h2 {
  font-size: 53px;
}

.carousel-caption p {
  font-size: 16px;
}

.slider-text {
  color: var(--primary-color);
  font-weight: 600;
}


.cerficate {
  gap: 3rem;
}


.cerficate img {
  width: 12%;
}



.card-icon {
  padding: 10px;
  background-color: rgba(18, 24, 32, 0.05);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: relative;
  left: 45%;
  top: 10px;
}

.card-icon img {
  width: 100%;
}

.border-bottom {
  border-bottom: 3px solid #dcdcde !important;
  width: 90%;
  position: relative;
  left: 30px;
}

.border-bottom::before {
  content: '';
  display: block;
  width: 8%;
  position: relative;
  left: -32px;
  top: 3px;
  border-bottom: 3px solid var(--primary-color);
}

.card {
  border-radius: 10px;
  padding: 0;
  background-color: transparent;
  border: 2px solid #dcdcde;
}

.card:hover {
  border: 2px solid var(--primary-color);
}

.card-list {
  padding-top: 10px;
}

.card-list li {
  padding-top: 13px !important;
  color: #ff0000;
  list-style-type: disc;
}

.card-list li span {
  color: black;
}

.card-btn a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.card-btn span {
  color: #fff;
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 4px;
  position: relative;
  left: 7px;
  padding-left: 13px;
}

.card-btn span i {
  position: relative;
  left: -4px;
}

.slider-container {
  position: relative;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.bg-card {
  background-image: url('../images/home/deco-1.svg');
  background-repeat: no-repeat;
  background-position: top right;
}

.line {
  line-height: 25px;
}

.choose-content-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url('../images/home/deco-01.png');
  background-repeat: no-repeat;
  background-position: top right;
  position: relative;
  top: -30px;
}

.choose-content {
  margin-top: 40px;
}

.choose-bg {
  background-color: #121820;
}

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

.list-style li {
  list-style-type: none;
}

/* .list-style li span {
  background-color: var(--accent-color);
} */

.list-style li i {
  font-size: 10px;
  width: 15px;
  height: 15px;
  padding: 3px;
  background-color: var(--accent-color);
  border-radius: 50%;
  color: black;
}

.list-style li {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.video-bg {
  background-color: #f5f5f5;
}

.video-tile {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 100%;
  height: auto;
}

.video-tile:hover:before {
  opacity: 1;
}

.video-tile img {
  width: 100%;
  border-radius: 6px;
}

.video-tile .curtain {
  background-color: #000;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease-in;
  z-index: 1;
}

.video-tile .video-tile__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-overflow: ellipsis;
  font: 500 24px/0.9 "Oswald", sans-serif;
  text-transform: uppercase;
  color: #fff;
  padding: 15px;
  background: #000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
  text-shadow: 2px 2px 4px rgba(39, 40, 41, 0.9);
  text-overflow: ellipsis;
  width: 100%;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .video-tile .video-tile__title {
    font: 500 32px/0.9 "Oswald", sans-serif;
    padding: 45px 40px 28px 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
  .video-tile .video-tile__title {
    font: 500 36px/0.9 "Oswald", sans-serif;
    padding: 45px 40px 28px 40px;
  }
}

@media only screen and (min-width: 1280px) {
  .video-tile .video-tile__title {
    font: 500 42px/0.9 "Oswald", sans-serif;
    padding: 45px 40px 28px 40px;
  }
}

.video-tile .video-tile-loader {
  display: none;
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

/********************************************************************************
 * SVG Play Button
 ********************************************************************************/
.play {
  width: 79px;
  height: 79px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  z-index: 1;
  cursor: pointer;
  border-radius: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: top 0.1s ease-in-out, box-shadow 0.2s ease-in-out;
}

.play-button {
  width: 79px;
  height: 79px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.25);
  padding: 0px;
  position: relative;
}

.play-button .player-icon {
  fill: #fff;
}

.play-icon {
  position: absolute;
  width: 20px;
  height: 29px;
  top: 25px;
  left: 32px;
  opacity: 0.75;
  transition: width 0.2s ease-in-out, top 0.2s ease-in-out, left 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.play-icon .player-icon {
  fill: #ffffff;
  transition: fill 0.3s ease-in-out;
}

.video-tile:hover .SVGobject {
  stroke-width: 79px;
}

.video-tile:hover .play {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  top: 40.25%;
}

.video-tile:hover .play-icon {
  opacity: 1;
}

.video-tile:hover .play-icon .player-icon {
  fill: #6699cc;
}

.SVGobject {
  stroke-width: 10px;
  stroke: #fff;
  transition: stroke-width 0.2s;
}

@keyframes stroke-width {
  0% {
    stroke-width: 10;
  }

  100% {
    stroke-width: 79;
  }
}



.testimonials-card {
  border: 2px solid #eeeeee;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  height: 300px;
}

.testimonials-name {
  font-size: 15px;
  font-weight: 700;
  color: #000;
}

.testimonials-sub {
  color: rgba(0, 0, 0, .5);
}

.testimonials-para {
  color: #000;
  font-size: 15px;
}

.testimonials-icon {
  text-align: end;
}

.testimonials-icon img {
  background-color: #F58B8B;
  width: 15%;
  position: relative;
  top: -10px;
  left: 10px;
  border-radius: 0px 8px 0px 100px;
  padding: 18px;
}

.testimonials-content {
  position: relative;
  top: -46px;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.testimonials-card {
  border: 2px solid #eeeeee;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  height: 300px;
  flex: 1 0 100%;
}

footer {
  background-color: #0e131a;
}

.copyright {
  display: flex;
  justify-content: space-between;
  color: #b1aeae;
}

.service-bg {
  background-color: #fbfbfb78;
  background-image: url('../images/home/deco-1.svg');
  background-repeat: no-repeat;
  background-position: 90% 0;
  padding-bottom: 30px;
}


.about-img img {
  width: 90%;
  height: 560px;
  border-radius: 60%;
}

.about-bg {
  background-color: #f3f3f4;
  background-image: url('../images/home/deco-1.svg');
  background-repeat: no-repeat;
  background-position: top right;
}

.about-title h1 {
  font-size: 42px;
  padding-bottom: 15px;
  color: #000000;
  font-weight: 600;
}

.about-title p {
  line-height: 30px;
  font-size: 16px;
}

.about-title strong {
  color: #72747a;
}



.hr-line {
  border-top: 1px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(90deg, White, DimGrey, White) border-box;
}

.timeline-time-left {
  position: absolute;
}

.intro {
  font-size: 42px;
  color: #000000;
}

.vission-bg {
  background-color: #f7f7f7;
  padding-bottom: 0;
  padding-top: 40px;
}

.image-vision img {
  border-radius: 8px;
}

.mission {
  padding-top: 20px;
}


.line-anim {
  border-top: 4px solid #f7f7f7;
  width: 25%;
  position: relative;
  left: 12%;
  height: 20px;
  border-radius: 81% 28% 14% 22%;
  animation: grothwidth 2s 2s ease-in-out infinite;
  transition: .5s;
}

@keyframes grothwidth {
  0% {
    border-top: 4px solid var(--accent-color);
    transition: .5s;
  }

  100% {
    border-top: 4px solid var(--accent-color);
    transition: .5s;
  }
}


.core-bg {
  background-color: #1b252f;
  padding-bottom: 0;
  padding-top: 20px;
  height: 480px;
}

.core-img img {
  border-radius: 5px;
}

.core-img .img-2 {
  position: relative;
  left: 50%;
  top: -130px;
}


.service-title {
  color: #000;
  padding-bottom: 20px;
  font-weight: 600;
}

.card-1 {
  text-align: center;
}

.hover-img img {
  display: none;
  position: absolute;
  top: 0;
  width: 40%;
  right: 0;
}

.card-1:hover {
  box-shadow: 1px 1px 5px grey;
  position: relative;
  z-index: 2;
}

.card-1:hover .hover-img img {
  display: block;
  z-index: -1;
  animation: fadedown .5s 1 ease-in;
}

@keyframes fadedown {
  from {
    transform: translateY(-5px);
  }

  to {
    transform: translateY(0);
  }
}

.themecolor {
  color: var(--accent-color);
}

.service-title h2 {
  font-size: 33px;
}

.related-service {
  background-color: #fff;
  margin: 10px 10px 10px 50px;
  padding: 20px 16px 8px 20px;
  box-shadow: 2px 2px 8px grey;
  border-radius: 6px;
}

.related-service h2 {
  font-size: 20px;
  color: #000;
}

.related-service ul {
  list-style-type: none;
  padding: 0;
}

.related-service ul li {
  padding-top: 15px;
}

.related-service ul li a {
  color: #000;
  transition: .5s ease-in;
}

.related-service ul li a:hover {
  color: var(--accent-color);
  transition: .5s ease-out;
}

.service-share ul {
  list-style-type: none;
  display: flex;
  gap: 15px;
  font-size: 18px;
}

.service-share ul li {
  background-color: #f3f3f4;
  border-radius: 50%;
  padding: 6px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-caption h5 {
  color: #fff;
  font-size: 35px;
  margin-top: -60px;
  padding-bottom: 30px;
}

.service-caption p {
  font-size: 17px;
}

.service-content-b h2 {
  font-size: 28px;
  color: #000;
  padding-bottom: 15px;
}

.service-content-b p {
  font-size: 16px;
  width: 60%;
  position: relative;
  left: 20%;
}

.service-content-b span {
  color: #ff1800;
  font-weight: 800;
}

.service-menu-icon i {
  font-size: 22px;
  transition: .5s ease-out;
  cursor: pointer;
  margin-left: 10px;
}

.service-menu-icon i:hover {
  color: #ff1800;
  transition: .5s ease-in;
}

.service-menu-icon {
  margin: 0;
}

.service-content-next {
  margin: 0;
}

.service-content-perv {
  margin: 0;
}

.service-content-perv i {
  padding-right: 10px;
}

.service-content-next {
  font-size: 17px;
  padding-right: 0px;
  transition: .5s ease-out;
  cursor: pointer;
}

.service-content-next i {
  font-size: 17px;
  padding-left: 10px;
}

.service-content-next a:hover {
  color: #ff1800 !important;
  transition: .5s ease-in;
}


.service-content-prev {
  font-size: 17px;
  padding-left: 20px;
  transition: .5s ease-out;
  cursor: pointer;
}

.service-content-prev i {
  font-size: 17px;
  padding-right: 10px;
}

.service-content-prev a:hover {
  color: #ff1800 !important;
  transition: .5s ease-in;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(-60px);
    transition: .5s ease-in;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    transition: .5s ease-in;
  }
}

.carousel-caption h5,
.carousel-caption h2,
.carousel-caption p {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: .5s ease-in;
}

.carousel-item.active .carousel-caption h5,
.carousel-item.active .carousel-caption h2,
.carousel-item.active .carousel-caption p {
  animation: fadeUp 2s ease-in forwards;
  transition: .5s ease-in;
}

.service-head {
  color: #000;
  padding-left: 17px;
  font-size: 40px;
  font-weight: 600;
}

.service-card-title {
  font-weight: 700;
}

.choose-head {
  font-weight: 700;
}

.banner-bg-home {
  position: absolute;
  z-index: 9;
  left: 60px;
  top: 90px;
}

.banner-bg-home img {
  width: 80%;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.2);
    transition: .5s ease-in;
  }

  100% {
    transform: scale(1);
    transition: .5s ease-in;
  }
}

.zoom-out {
  animation: zoomOut 1s ease 1;
  transform-origin: center;
}

.testimonial-head {
  font-weight: 600;
  font-size: 40px;
}

.message-form {
  position: fixed;
  right: 30px;
  bottom: 110px;
  padding: 10px;
  width: 60px;
  height: 60px;
  font-size: 32px;
  border-radius: 50%;
  background-color: #d2e6e5;
  z-index: 9;
  cursor: pointer;
}

.message-form i {
  position: relative;
  left: 4px;
}

.form-logo {
  background-color: #eeeeee;
  padding: 10px;
  text-align: center;
  position: fixed;
  top: 12px;
  right: 0px;
  z-index: 999;
  border-radius: 5px;
}

.form-logo img {
  width: 30%;
  padding-bottom: 10px;
}

.form-container {
  background-color: #fff;
  padding: 20px;
  text-align: start;
  border-radius: 10px;
}

.form-container input,
textarea {
  width: 100%;
  padding: 5px;
  background-color: #ededed;
  border: 1px solid grey;
  border-radius: 3px;
  transition: .5s ease-out;
}

.form-container input:hover,
textarea:hover {
  border: 1px solid var(--accent-color);
  transition: .5s ease-in;
}

.form-container p {
  font-weight: 500;
  margin: 0;
}

.pop-up-form {
  margin-top: 10px;
  background-color: #e6e6e6;
  color: var(--accent-color);
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
}

/* Animation Styles */
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


@keyframes fadein {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-logo i {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 20px;
  cursor: pointer;
}

/* Initially hide the form */
.form-logo {
  display: none;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.5s ease-in-out;
}

.form-logo.show {
  display: block;
  opacity: 1;
  transform: translateX(0);
  transition: all 1s ease-in-out;
  overflow-y: scroll;
  max-height: 550px;
}

.form-logo.fade-in {
  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
}

.form-logo.fade-out {
  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
}


/* Style for without scroll (default) */
.withoutscroll {
  display: block;
}

/* Style for with scroll (hidden initially) */
.withscroll {
  display: none;
}

/* When scrolled, toggle the visibility */
.scrolled .withoutscroll {
  display: none;
}

.scrolled .withscroll {
  display: block;
}

.card-content h1 {
  font-weight: 600;
  font-size: 18px;
  padding: 14px 0 10px 0;
}

.card-content p {
  color: black;
}

.z-index-9 {
  position: relative;
  z-index: 9;
}

.mobilemenu i {
  display: none;
}

.bread h2 {
  text-transform: uppercase;
  padding-top: 10px;
  font-weight: 600;
  font-size: 42px;
  position: relative;
  top: 30px;
}

.carousel-caption-1 {
  top: 40%;
}


.title {
  position: relative;
  margin-top: 30px;
  width: 100%;
  text-align: center;
}

.timeline {
  position: relative;
  width: 100%;
  padding: 30px 0;
}

.timeline .timeline-container {
  position: relative;
  width: 100%;
}

.timeline .timeline-end,
.timeline .timeline-start,
.timeline .timeline-year {
  position: relative;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.timeline .timeline-end p,
.timeline .timeline-start p,
.timeline .timeline-year p {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0;
  padding: 0px 0;
  position: relative;
  top: 8px;
  left: 2px;
  text-align: center;
  background: #d6d6d6;
  border-radius: 100px;
  box-shadow: 0 0 5px rgba(0, 0, 0, .4);
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.timeline .timeline-start p {
  top: -8px;
}

.timeline .timeline-year {
  margin: 30px 0;
}

.timeline .timeline-continue {
  position: relative;
  width: 100%;
  padding: 30px 0;
}

.timeline .timeline-continue::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  top: 0;
  left: 50%;
  margin-left: -1px;
  background: #d6d6d6;
}

.timeline .row.timeline-left,
.timeline .row.timeline-right .timeline-date {
  text-align: right;
}

.timeline .row.timeline-right,
.timeline .row.timeline-left .timeline-date {
  text-align: left;
}

.timeline .timeline-date {
  font-size: 20px;
  font-weight: 600;
  margin: 41px 20px 0 20px;
  color: var(--accent-color);
}


/* .timeline .timeline-date::after {
  content: '';
  display: block;
  position: relative;
  width: 14px;
  height: 14px;
  top: 45px;
  background: linear-gradient(#4F84C4, #00539C);
  box-shadow: 0 0 5px rgba(0, 0, 0, .4);
  border-radius: 15px;
  z-index: 1;
} */

.timeline .row.timeline-left .timeline-date::after {
  left: -39px;
  top: -25px;
}

.timeline .row.timeline-right .timeline-date::after {
  left: 105%;
  top: -24px;
}

.timeline .timeline-box,
.timeline .timeline-launch {
  position: relative;
  display: inline-block;
  margin: 12px 30px 15px 30px;
  padding: 20px;
  border: 1px solid #000000;
  border-radius: 6px;
  background: #ffffff;
}

.timeline .timeline-box {
  border-width: 0px 0px 0px 3px;
  box-shadow: 0px 2px 5px #8080804a;
}

.timeline-box-left {
  border-width: 0px 3px 0px 0px !important;
  left: -15px;
}


.timeline-time-right i {
  position: relative;
  left: 98%;
  top: -40px;
  z-index: 9;
  background-color: #000;
  color: #fff;
  border: 5px solid #d6d6d6;
  border-radius: 50%;
  font-size: 30px;
  padding: 3px;
}

.timeline-time-left i {
  position: relative;
  right: 73%;
  top: -40px;
  z-index: 9;
  background-color: #000;
  color: #fff;
  border: 5px solid #d6d6d6;
  border-radius: 50%;
  font-size: 30px;
  padding: 3px;
}

.timeline .timeline-launch {
  width: 100%;
  margin: 15px 0;
  padding: 0;
  border: none;
  text-align: center;
  background: transparent;
}

.timeline .timeline-box::after,
.timeline .timeline-box::before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline .row.timeline-left .timeline-box::after,
.timeline .row.timeline-left .timeline-box::before {
  left: 100%;
}

.timeline .row.timeline-right .timeline-box::after,
.timeline .row.timeline-right .timeline-box::before {
  right: 100%;
}

.timeline .timeline-launch .timeline-box::after,
.timeline .timeline-launch .timeline-box::before {
  left: 50%;
  margin-left: -10px;
}

.timeline .timeline-box::after {
  top: 26px;
  border-color: transparent transparent transparent #ffffff;
  border-width: 10px;
}

.timeline .timeline-box::before {
  top: 25px;
  border-color: transparent transparent transparent #000000;
  border-width: 13px;
}

.timeline .row.timeline-right .timeline-box::after {
  border-color: transparent #ffffff transparent transparent;
}

.timeline .row.timeline-right .timeline-box::before {
  border-color: transparent #000000 transparent transparent;
  border-width: 13px;
}

.timeline .timeline-launch .timeline-box::after {
  top: -20px;
  border-color: transparent transparent #dddddd transparent;
}

.timeline .timeline-launch .timeline-box::before {
  top: -19px;
  border-color: transparent transparent #ffffff transparent;
  border-width: 10px;
  z-index: 1;
}

.timeline .timeline-box .timeline-icon {
  position: relative;
  width: 40px;
  height: auto;
  float: left;
}

.timeline .timeline-icon i {
  font-size: 25px;
  color: #4F84C4;
}

.timeline .timeline-box .timeline-text {
  position: relative;
  width: calc(100% - 40px);
  float: left;
}

.timeline .timeline-launch .timeline-text {
  width: 100%;
}

.timeline .timeline-text h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
}

.timeline .timeline-text p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  color: #000000;
}

@media (max-width: 768px) {
  .timeline .timeline-continue::after {
    left: 40px;
  }

  .timeline .timeline-end,
  .timeline .timeline-start,
  .timeline .timeline-year,
  .timeline .row.timeline-left,
  .timeline .row.timeline-right .timeline-date,
  .timeline .row.timeline-right,
  .timeline .row.timeline-left .timeline-date,
  .timeline .timeline-launch {
    text-align: left;
  }

  .timeline .row.timeline-left .timeline-date::after,
  .timeline .row.timeline-right .timeline-date::after {
    left: 47px;
  }

  .timeline .timeline-box,
  .timeline .row.timeline-right .timeline-date,
  .timeline .row.timeline-left .timeline-date {
    margin-left: 55px;
  }

  .timeline .timeline-launch .timeline-box {
    margin-left: 0;
  }

  .timeline .row.timeline-left .timeline-box::after {
    left: -20px;
    border-color: transparent #ffffff transparent transparent;
  }

  .timeline .row.timeline-left .timeline-box::before {
    left: -27px;
    border-color: transparent #080808 transparent transparent;
  }

  .timeline .timeline-launch .timeline-box::after,
  .timeline .timeline-launch .timeline-box::before {
    left: 30px;
    margin-left: 0;
  }
}

.core-img .img-1 {
  width: 80%;
}

.core-img .img-2 {
  width: 60%;
}


@media screen and (max-width: 991px) {
  .timeline-time-left i {
    top: 30px !important;
  }

  .title-vision {
    padding-top: 25px;
  }
}

.all-service-bg {
  background-image: url('../images/about/15.jpg');
  background-size: cover;
  background-attachment: fixed;
}

.all-service-bg::before {
  content: "";
  background-color: #000;
  position: absolute;
  z-index: 3;
  width: 100%;
  margin-top: -60px;
  height: 225px;
  opacity: 0.6;
}

.all-service-bg .banner-content {
  position: relative;
  z-index: 4;
}

.all-service-bg .banner-content h3 {
  color: #fff;
  font-weight: 500;
}

.all-service-bg .banner-content p {
  color: #fff;
  width: 93%;
}

.all-service-bg .banner-content span {
  color: var(--accent-color);
}

.all-service-bg .banner-decor-img {
  position: absolute;
  left: 45%;
  z-index: 3;
}

.all-service-bg .banner-decor-img img {
  width: 80%;
}

.all-service-bg .banner-btn .btn-1 {
  color: #fff;
  position: relative;
  z-index: 4;
  border: 2px solid var(--accent-color);
  border-radius: 40px;
  padding: 17px 50px;
  top: 50px;
  left: 30%;
}

.about-bg-img img {
  position: relative;
  top: 20px;
}

.text-throghline {
  color: #fff !important;
  text-decoration: line-through;
}

.font-weight-8 {
  font-weight: 700;
}

.text-black {
  color: #000000 !important;
}

.card-service-img {
  padding-top: 16px;
}

.service-img img {
  border-radius: 8px;
}

.service-title-1 h2 {
  font-size: 32px;
  font-weight: 600;
  color: #000000 !important;
}

.service-title-1 p {
  color: #838181;
  font-weight: 400;
}

.service-slider-title h2 {
  font-size: 40px;
}

.text-underline {
  text-decoration: underline;
}

.zoom-slider {
  animation: zoomout1 20s 1 ease-out;
  transition: .5s ease;
  transform: scale(1.5);
}

@keyframes zoomout1 {
  from {
    transform: scale(1);
    transition: .5s ease;
  }

  to {
    transform: scale(1.5);
    transition: .5s ease;
  }
}

/* Zoom-in and Zoom-out for images */
@keyframes zoomIn {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes zoomOut2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Text transition: text goes down when the slide changes */
@keyframes textMoveDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}

/* Text transition for new slide: text comes from up */
@keyframes textMoveUp {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.carousel-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
  animation-fill-mode: both;
}

.carousel-item {
  position: relative;
}

.carousel-caption {
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
  /* Add smooth transition for text */
}

/* Class for transitioning text out */
.carousel-caption.transition-out {
  animation: textMoveDown 1s ease-out forwards;
}

/* Class for transitioning text in */
.carousel-caption.transition-in {
  animation: textMoveUp 1s ease-in forwards;
}


.blog-card {
  border-radius: 15px;
}

.blog-card-content {
  border-bottom: 2px solid #dddddd;
  padding: 16px 20px;
}

.blog-card-img img {
  border-radius: 15px 15px 0px 0px;
  height: 180px;
}

.blog-card-content h2 {
  font-size: 14px;
  color: #000000;
  font-weight: 600;
}

.blog-readmore-btn {
  padding-top: 12px;
}

.blog-readmore-btn a {
  color: #72747a;
  font-weight: 500;
}

.blog-post-date p {
  margin: 0;
  padding: 14px;
  font-size: 12px;
  color: #72747a;
}

.blog-card:hover {
  border: 2px solid #dcdcde;
  box-shadow: 1px 1px 5px #dcdcde;
}

.blog-card-img p {
  background-color: #4bd45c;
  color: #fff;
  position: absolute;
  top: 10px;
  right: 14px;
  padding: 2px 22px;
  border-radius: 50px;
}

.pagination-1 .pagination-item p {
  font-weight: 500;
  color: #999a9b;
  cursor: pointer;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

.pagination-item {
  cursor: pointer;
  padding: 5px 10px;
  border: none;
  background-color: #f9f9f9;
  border-radius: 5px;
}

.pagination-item.active {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.blog-banner-img {
  padding: 0;
}

.blog-banner img {
  height: 80vh;
}

.blog-post-detail ul {
  list-style-type: none;
  display: flex;
  gap: 20px;
  padding: 0;
}

.blog-post-detail ul li {
  font-size: 14px;
}

.blog-post-detail ul li i {
  padding-right: 6px;
}

.blog-title h1 {
  font-size: 35px;
  padding-bottom: 10px;
  font-weight: 600;
  color: #000000;
}

.blog-highlight {
  color: var(--accent-color);
  text-decoration: underline;
}

.blog-content p {
  color: var(--heading-color);
}

.blog-content p strong {
  color: #77797e;
}

.blog-content h3 {
  font-size: 22px;
  color: #000000;
}

.blog-content h4 {
  font-size: 20px;
  color: #000000;
}

.related-blog {
  border: 1px solid #b9b9b9;
  padding: 14px;
  border-radius: 3px;
}

.related-blog h3 {
  font-size: 18px;
  margin: 0;
}

.related-blog-list ul {
  padding: 0;
}

.related-blog-list-name {
  text-decoration: underline;
}

.related-blog-list-name a {
  color: var(--heading-color);
}

.related-blog-list ul li {
  padding-bottom: 12px;
}

.blog-list-1 {
  margin-left: -24px;
}

.blog-openclose-icon .visible {
  display: block;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.related-blog {
  position: sticky;
  top: 120px;
  bottom: 400px;
}

.section-border {
  border-bottom: 1px solid #c9c7c7;
  padding-top: 30px;
}

.blog-nextprev .blog-prev {
  padding-top: 20px;
}

.blog-nextprev a,
.blog-prev a {
  color: #817f7f;
  font-size: 18px;
  text-transform: uppercase;
}

.blog-prev a:hover i,
.blog-nextprev a:hover i {
  color: var(--accent-color);
}

.blog-nextprev i,
.blog-prev i {
  font-size: 15px;
  color: var(--heading-color);
}

.text-000000 {
  color: #000000;
  font-weight: 600;
}

.policy strong {
  color: #000000;
}

.policy ul {
  list-style-type: disc;
  padding-bottom: 10px;
}

.contact-link a {
  color: #000000;
  font-weight: 600;
  text-decoration: underline;
}

.text-theme {
  color: var(--accent-color);
  font-weight: 600;
}

.policy p {
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.text-0077b5 i {
  color: #0077b5;
  font-size: 24px;
}

.contactform input,
select {
  border: none;
  border-bottom: 1px solid #777771;
  width: 100%;
  padding: 10px 0px;
  background-color: #F3F3F4;
}

.contactform textarea {
  background-color: transparent;
  border: 1px solid #777771;
  background-color: #F3F3F4;
}

.contactform input:focus-visible,
.contactform select:focus-visible {
  border: none;
  border-bottom: 1px solid var(--accent-color);
  outline: none;
}

.contactform textarea:focus-visible {
  border: none;
  border-bottom: 1px solid var(--accent-color);
  outline: 1px solid var(--accent-color);
}

.contactform input:hover,
.contactform select:hover {
  border: none;
  border-bottom: 1px solid var(--accent-color);
  outline: none;
}

.contactform textarea:hover {
  border: none;
  border: 1px solid var(--accent-color);
  outline: none;
}

.color-theme {
  color: var(--accent-color);
}

.contact-bg {
  background-color: #F3F3F4;
}

.font-w-600 {
  font-weight: 800;
}

.btn-contact-submit {
  padding: 6px 26px;
  margin-top: 10px;
  border-radius: 3px;
}

.contact-detail-bg {
  background-color: #464646;
  background-image: url(../images/contact/deco.svg);
  background-position: 90% -26px;
  background-repeat: no-repeat;
}

.contact-detail-title {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 42px;
}

.contact-address {
  padding-top: 28px;
}

.contact-address i {
  color: var(--accent-color);
  font-size: 22px;
}

.contact-address h2 {
  color: #FFFFFF;
  font-size: 20px;
  padding-top: 20px;
  padding-bottom: 15px;
}

.contact-address p {
  color: #C9C9C9;
  font-size: 15px;
}

.contact-border-half-red {
  border-bottom: 2px solid #FFFFFF;
  position: relative;
}

.contact-border-half-red::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  width: 8%;
  border-bottom: 2px solid var(--accent-color);
}

.testing-service-content h2 {
  font-size: 50px;
  color: #000000;
  font-weight: 700;
  padding-bottom: 10px;
}

.testing-service-content p {
  font-size: 20px;
  color: #0e131a;
  padding-bottom: 10px;
}

.testing-service-content a {
  color: #fff;
  background-color: var(--accent-color);
  padding: 5px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 25px;
}

.testing-service-content a:hover {
  background-color: #000000;
  color: #fff;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  width: 556px;
  height: 112px;
}

.cta-container img {
  width: 50px;
  height: 50px;
}

.cta-text {
  flex-grow: 1;
  margin-left: 20px;
  font-size: 1em;
  color: #333;
}

.cta-button {
  background-color: #ff0000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
}

.testing-service-section {
  padding-top: 60px;
  background-color: #ededed !important;
  margin-bottom: 20px !important;
}

.testing-service-list p {
  font-size: 20px;
  color: #4a4a4a;
}

.testing-service-list span {
  color: var(--accent-color);
}

.testing-service-content h2 {
  font-weight: 300;
  font-size: 60px;
  color: #4a4a4a;
}

.testing-service-bg-1 {
  background-color: #fdfdfd;
  padding: 20px 0;
}

.testing-service-bg-2 {
  background-color: #fff;
  box-shadow: 1px 1px 10px #4a4a4a;
  padding: 60px;
}

.underborder {
  border: 20px solid var(--accent-color);
  width: 50%;
  position: relative;
  left: 25%;
}

.testing-service-card-content {
  padding: 4px 15px 30px 20px;
}

.testing-service-card-btn {
  background-color: var(--accent-color);
  color: #fff;
  padding: 8px 20px;
  position: relative;
  left: 54%;
  border-radius: 25px;
}

.testing-service-card-content h3 {
  padding-top: 20px;
  padding-bottom: 10px;
  color: var(--accent-color);
  font-weight: 300;
}


.testing-service-card-content p {
  padding-bottom: 20px;
}

.testing-service-card {
  background-color: #ededed;
  border: 0;
  border-radius: 0;
  height: 490px;
}

.testing-service-card:hover {
  border: none;
  transition: .5s ease;
}

.testing-service-card-btn:hover {
  color: #fff;
  background-color: #000000;
}

.card-underborder {
  border: 10px solid var(--accent-color);
  width: 60%;
  position: relative;
  left: 20%;
}

.color-theme-test-service {
  color: var(--accent-color);
  font-size: 30px;
  font-weight: 300;
}

.test-service-blue-bg {
  background-color: #45aee3;
  color: #fff;
  padding: 60px;
  text-align: center;
}

.test-service-black-border {
  border: 10px solid rgb(49, 49, 49);
  width: 50%;
  position: relative;
  left: 25%;
}

.quote-close {
  transform: rotateY(180deg);
}

.testing-slider-btn {
  background-color: var(--accent-color);
  color: #fff;
  padding: 10px 20px;
}

.testing-slider-btn:hover {
  background-color: #000000;
  color: #fff;
}

.testing-slider-content h2 {
  font-size: 50px;
  padding-bottom: 20px;
}

.testing-slider-content p {
  padding-bottom: 20px;
  font-size: 20px;
}

.slick-dots li button:before {
  font-size: 12px !important;
}

.logo-client-title {
  font-size: 45px;
  font-weight: 300;
  padding-bottom: 30px;
}

.testing-slide-logo {
  background-color: #fff;
  margin: 10px;
  padding: 30px;
}

.testing-slide-logo img {
  position: relative;
  left: 12%;
}

.slick-next:before,
.slick-prev:before {
  font-size: 50px !important;
  color: var(--accent-color) !important;
}

.slick-prev {
  left: -50px !important;
}

.testing-logo-services-bg {
  background-color: #232323;
  border-top: 30px solid var(--accent-color);
  border-bottom: 8px solid var(--accent-color);
}

.testing-slider-content {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.5s ease-in-out;
}

.testing-slider-content.active {
  opacity: 1;
  transform: translateY(0);
}

.testing-slider-content.active {
  opacity: 1;
  transform: translateY(0);
}

.forth-bg {
  background-color: #efefef;
}

.text-justify {
  text-align: justify;
  color: #000;
}

.timeline .timeline-box .timeline-text {
  width: 100% !important;
}

.timeline-box-left {
  left: 0px !important;
}

.desk-padd img {
  padding: 30px;
}

.blog-bookmark {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-link a {
  background-color: transparent;
  color: var(--accent-color);
  padding: 0;
  font-size: 20px;
}

.service-link a:hover {
  background-color: transparent;
  color: #000;
}

.header-padd {
  padding-right: 50px;
}

.service-highlighted {
  font-weight: 700;
  color: #fff !important;
}

.bread p {
  position: relative;
  top: 38px;
  left: 10px;
  font-size: 25px;
}

.desk-padd-1 {
  padding: 30px 40px !important;
}

.desk-padd-1 img {
  padding: 8px 8px;
}

@media (max-width: 767px) {
  .desk-padd-1 {
    padding: 0px 8px !important;
  }
}

@media (min-width: 768px) and (max--width: 991px) {
  .desk-padd-1 img {
    padding: 18px 35px !important;
  }
}