
/* Fonts */
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Open Sans",  sans-serif;
  --nav-font: "Poppins",  sans-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: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37423b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #934a4e; /* 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. */
}

/* 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: #111111;  /* The default color of the main navmenu links */
  --nav-hover-color: #934a4e; /* 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: #272828; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #934a4e; /* 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: #f9f9f9;
  --surface-color: #ffffff;
}
.light-green-background{
   --background-color: #edf4f3;
}
.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}
.light-green-bg{
    background: #edf4f3;
}
.text-primary{
    color: #934a4e;
}
/* 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);
    font-size:1.15em;
}

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);
}

/* 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);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

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

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 75px;
  margin-right: 8px;
}

.header .logo h1 {
  font-weight: 700;
  font-size: 30px;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  /*font-size: 14px;*/
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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 a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 12px 15px;
    font-size: 1.15em;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
    .navmenu a:focus {
color: #934a4e;
    }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #934a4e;
  }
    .navmenu a.active::before {
  content: "";
  background: url("../img/bottom-line.jpg");
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-size: contain;
}

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    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: 0.9em;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .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);
  }

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

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

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    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: var(--nav-dropdown-color);
    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: #111111;
  background-color: #f9f9f9;
  font-size: 0.9em;
  padding-bottom: 10px;
  position: relative;
}

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

.footer .footer-about .logo {
  margin-bottom: 0;
}

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

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

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

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  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: 7px 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.4em;
}

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

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

.footer .copyright {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #e3e7e9;
}

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

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

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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 {
  --default-color: var(--contrast-color);
  --background-color: var(--accent-color);
  --heading-color: var(--contrast-color);
  color: var(--default-color);
  /*background-color: var(--background-color);*/
    background-image: url("../img/inside-banner.jpg");
  position: relative;
}

.page-title .heading {
  padding: 120px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 5%);
  padding: 20px 0;
}

.page-title nav a {
  color: var(--default-color);
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 25px;
  height: 25px;
  display: inline-block;
  background-image: url("../img/square.jpg");
    background-repeat: no-repeat;
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--nav-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 75vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

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

.hero:before {
  content: "";
  
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
    text-align: center;
}

.hero h2 {
  margin: 0;
  font-size: 3.5em;
  font-weight: 800;
    color: #111111;
}

.hero p {
  color: #111111;
  margin: 7px 0 0 0;
  font-size: 1.5em;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: 0.4s;
  margin-top: 30px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

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

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {

  font-weight: 800;
}

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

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.15rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p{
    width:90%;
    font-size:1em;
    line-height:1.7em;
    text-align:justify;
}
@media (max-width: 768px) {
    .about .content p{
    width:100%;
    }
}
.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: #924b4d;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 24px 10px 24px;
  border-radius: 0px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: #e5988e;
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Core Purpose Section
--------------------------------------------------------------*/
.core h4 {
  font-size: 2.8em;
  line-height: 44px;
  margin: 10px 0px;
  font-weight: 700;
  color: #934a4e;
  text-align: center
}
@media only screen and (max-width: 1440px) {
  .core h4 {
    font-size: 2.1em;
  }
}
@media only screen and (max-width: 767px) {
  .core h4 {
    font-size: 1.8em;
  }
}

/*--------------------------------------------------------------
# Values Section
--------------------------------------------------------------*/

.values .ynz-value-img {
  width: 50%
}
@media only screen and (max-width: 767px) {
  .values .ynz-value-img {
    width: 100%
  }
}
.values .ynz-value-img img {
  width: 100%
}
.values .ynz-value-txt {
  width: 50%;
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
  margin-left: -35px;
  padding: 20px 0px
}
@media only screen and (max-width: 767px) {
  .values .ynz-value-txt {
    width: 100%;
    margin-left: 0
  }
}
.values .ynz-value-txt .ynz-value-box {
  display: flex;
  align-items: center
}
.values .ynz-value-txt .ynz-value-box .ynz-value-box_img .color-box {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
    margin-right:20px;
}
.values .ynz-value-txt .ynz-value-box .ynz-value-box_img .client-col {
  background: #934a4e
}
.values .ynz-value-txt .ynz-value-box .ynz-value-box_img .teamwork-col {
  background: #92a7ad
}
.values .ynz-value-txt .ynz-value-box .ynz-value-box_img .growth-col {
  background: #df9c8d
}
.values .ynz-value-txt .ynz-value-box .ynz-value-box_img .flexi-col {
  background: #c4dfda
}
.values .ynz-value-txt .ynz-value-box .ynz-value-box_img .integrity-col {
  background: #934a4e
}
.values .ynz-value .ynz-value-txt .ynz-value-box .ynz-value-box_info {
  padding-left: 20px
}
@media only screen and (max-width: 767px) {
  .values .ynz-value-txt .ynz-value-box .ynz-value-box_info {
    margin-bottom: 30px
  }
}
.values .ynz-value-txt .ynz-value-box .ynz-value-box_info h3 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 32px
}
@media only screen and (max-width: 1440px) {
  .values .ynz-value-txt .ynz-value-box .ynz-value-box_info h3 {
    font-size: 24px;
    line-height: 24px
  }
}
@media only screen and (max-width: 767px) {
  .values .ynz-value-txt .ynz-value-box .ynz-value-box_info h3 {
    font-size: 20px;
    line-height: 20px
  }
}
.values .ynz-value-txt .ynz-value-box .ynz-value-box_info p {

  font-size: 1.1em;
  line-height: 32px
}
@media only screen and (max-width: 1440px) {
  .values .ynz-value-txt .ynz-value-box .ynz-value-box_info p {
    font-size: 1.1em;
    line-height: 24px
  }
}
@media only screen and (max-width: 767px) {
  .values .ynz-value-txt .ynz-value-box .ynz-value-box_info p {
    font-size: 1em;
    line-height: 22px
  }
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.service-item .service-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
}

.service-item .service-icon img{
    width:85%;
    margin: 0px auto;
    filter: invert(100%) sepia(0%) saturate(3141%) hue-rotate(249deg) brightness(117%) contrast(103%);
}

.service-item .service-icon i {
    transition: .2s;
}

.service-item:hover .service-icon i {
    font-size: 60px;
}

.bg-maroon {
  background: #934a4e
}
.bg-pink {
  background: #df9c8d
}
.bg-grey {
  background: #92a7ad
}

.service-item .read-more i {
  font-size: 1.1em;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.service-item .read-more:hover i {
  margin-left: 10px;
}
.services  h3 {
  color: #92a7ad;
  font-weight: 700;
  font-size: 1.5em;
    margin:10px 0;
}
.services p{
    font-weight:600;
}

.services-page .content h3 {

  font-weight: 800;
}

.services-page .content ul {
  list-style: disc;
}

.services-page .content ul li {
  padding-bottom: 10px;
    /*font-size: 1.05em;*/
}
.services-page .content ul li ul li {
  padding-bottom: 10px;
    /*font-size: 1.05em;*/
}
.services-page .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.services-page .content p{
    width:100%;
   /* font-size:1.05em;*/
    line-height:1.7em;
    text-align:justify;
}
@media (max-width: 768px) {
    .services-page .content p{
    width:100%;
    }
}
.services-page .content p:last-child {
  margin-bottom: 0;
}

.services-page .content .read-more {
  background: #924b4d;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 24px 10px 24px;
  border-radius: 0px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.services-page .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.services-page .content .read-more:hover {
  background: #e5988e;
  padding-right: 19px;
}

.services-page .content .read-more:hover i {
  margin-left: 10px;
}
/*-------------------------------------------------------------
# Knowledge Section
--------------------------------------------------------------*/
.knowledge{
  background: url("../img/knowledge-bg.jpg") no-repeat scroll center center;
  background-size: cover; 
    background-attachment: fixed;
}

    .knowledge .txt p {
      margin: 0px auto 40px auto; 
       /* font-size: 1.5em;*/
}
.knowledge .read-more {
  background: #924b4d;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 24px 10px 24px;
  border-radius: 0px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.knowledge .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.knowledge .read-more:hover {
  background: #e5988e;
  padding-right: 19px;
}

.knowledge .read-more:hover i {
  margin-left: 10px;
}

/*-----------------------------------------------------
# Knowledge Page
--------------------------------------------------*/
.video {
  padding: 8px;
  background: #fff;
    border:1px solid #eeeeee;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
@media (max-width: 767.98px) {
  .video {
    margin-bottom: 30px;
  }
}
.video .info {
  width: calc(100% - 110px);
}
.video  h3 {
  font-size: 1.2em;
    text-align:center;
    padding:15px 0 0 0;
}
.video .img {
  width: 110px;
  height: 105px;
  border: 4px solid #f0f0f0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

/*--------------------------------------------------------------
# Trainers Index Section
--------------------------------------------------------------*/
.trainers-index .member {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  margin-bottom: 20px;
}

.trainers-index .member img {
  margin: -1px -1px 30px -1px;
}

.trainers-index .member .member-content {
  padding: 0 20px 30px 20px;
}

.trainers-index .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.trainers-index .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.trainers-index .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.trainers-index .member .social {
  margin-top: 15px;
}

.trainers-index .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.trainers-index .member .social a:hover {
  color: var(--accent-color);
}

.trainers-index .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about-us .content ul {
  list-style: none;
  padding: 0;
}

.about-us .content ul li {
  padding-bottom: 10px;
}

.about-us .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}
.about-us .content p{
    width:80%;
    /*font-size:1.2em;*/
    line-height:1.7em;
    text-align:justify;
}
@media (max-width: 768px) {
  .about-us .content p{
    width:100%;
    /*font-size:1.2em;*/
    line-height:1.7em;
    text-align:justify;
}
}
.about-us .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/

.team button {
  border: none;
    background: none;
  cursor: pointer;
    text-align: center;
  height: 2.5rem;
  width: 100%;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: #934a4e;
    text-decoration-thickness: 2px;
    font-size:0.8em;
    font-weight:500;
    letter-spacing: 0.03em;
 }

.team button:hover {
  background: none;
}

.team .cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;

}

.team .cards_item {
  display: flex;
  padding: 1rem;
}

.team .card_image img{
  max-height: 100%;
}

@media (min-width: 40rem) {
  .team .cards_item {
    width: 50%;
  }
}

@media (min-width: 56rem) {
  .team .cards_item {
    width: 33.3333%;
  }
}

.card {
  background-color: #edf4f3;
    border:0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
        border-radius:0;
}

.card_content {
  padding: 5px 0;
    background: #ebebeb;
}

.card_title {
  font-size: 1.5rem;
    font-weight:600;
  color: #ffffff;
  background-color:#934a4e;
    padding:20px;
}

.card_text {
  padding:20px 30px;
    font-weight:500;
    /*font-size:1.05em;*/
    text-align: center;
}


.hide { display: none; }

.note {
  animation-name: note;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

@keyframes note {
  0%   {color: red;}
  25%  {color: yellow;}
  50%  {color: blue;}
  100% {color: #02411E;}
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

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

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  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;
  }
}

/*--------------------------------------------------------------
# Courses Course Details Section
--------------------------------------------------------------*/
.courses-course-details {
  padding-bottom: 20px;
}

.courses-course-details h3 {
  font-size: 24px;
  margin: 30px 0 15px 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.courses-course-details h3:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  bottom: 0;
  left: 0;
}

.courses-course-details h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.courses-course-details .course-info {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 10px 15px;
  margin-bottom: 15px;
}

.courses-course-details .course-info h5 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  font-family: var(--nav-font);
}

.courses-course-details .course-info p {
  margin: 0;
  font-weight: 600;
}

.courses-course-details .course-info a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# wednesday articles Section
--------------------------------------------------------------*/
.accordion {
  max-width: 100%;
  margin: 20px auto 0;
}

.at-tab {
  display: none;
  padding: 15px;
}

.at-title {
  cursor: pointer;
  background-color: #f5f5f5;
  position: relative;
  transition: background-color 0.3s ease;
}

.at-title:hover {
  background-color: #e0e0e0;
}

.at-title:after {
  content: "+";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  transition: all 0.3s ease;
  font-size: 24px;
  color:#fff;
}

.at-title.active:after {
  content: "-";
  
}

.at-item {
  border-radius: 5px;
  margin-bottom: 15px;
}

.at-title h2 {
  font-size: 22px;
  font-weight: 600;
  padding: 10px 15px;
  margin: 0;
       color:#fff;
}
.at-title h2:hover{
       color:#111;
}
.accordion-header {
  background-color: #222222;
  color: white;
  padding: 20px 0;
}
/*CSS3 multiple columns.*/
/* Get em size for colums: 184/16 */   
.article-columns
{   
    -moz-column-width: 35em; /* Firefox */
    -webkit-column-width: 35em; /* webkit, Safari, Chrome */
    column-width: 35em;
}
/*remove standard list and bullet formatting from ul*/
.article-columns ul
{
    margin: 0;
    padding: 10px;
    list-style: none;
}
.article-columns ul li{
    list-style-image: url("../img/square-bullet.png");
    padding-bottom:10px;
    padding-left:5px;
}
.article-columns ul li a{ 
    text-decoration: none;
     /*font-size:1em;*/
    font-weight:normal;
    color:#222;
}
.article-columns ul li a:hover{ 
    text-decoration: underline;
     text-underline-offset: 5px;
       color:#748c95;
}
/* correct webkit/chrome uneven margin on the first column*/
.article-columns ul li:first-child
{
    margin-top:0px;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 8px;
  padding-bottom: 40px;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=number],
.contact .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 50%);
  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 input[type=number]: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 input[type=number]::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 12px 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
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/** modal pop up**/

 #myModal{
        background: #fff;
        width:50%;
        position:fixed;
        top:40%;
        left:50%;
        transform: translate(-50%,-50%);
        z-index: 999999999;
        display: none;
     box-shadow: 0px 0px 4px #555555;
    }
    #myModal .modal-top{
     padding:20px 0;
    background: #934a4e;
    color: #ffffff;
  text-align: center;
        font-size:1.3em;
    }
    #myModal .modal-content{
        padding:20px 30px;
        height:270px;
        overflow: scroll;
    }
    #myModal .modal-bottom{
    text-align: center;
    }
#myModal .modalBtn{
    background: #924b4d;
    border: 0px;
    color:#ffffff;
    padding:10px 20px;
    border-radius:10px;
    margin:20px 5px;
}
@media only screen and (max-width: 767px) {
  #myModal{
        top:40%;
        width:80%;
    }
}

/****ul li general****/
.cards ul{
    list-style: disc;
}
.cards ul li{
    margin-bottom:8px;
}

/***process***/
.process-wrap {
  display: block;
  position: relative;
  background: white;
  padding: 0 20px;
  border-radius: 5px;
  border: 2px dashed #dedede;
}
  .process-wrap .icon {
    position: absolute;
    top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
    left: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bgColor); 
color: #fff; 
        font-size:2em;
}

.process-wrap:hover .icon {
    border: 2px solid var(--bgColor); 
    background: white; 
    color: var(--bgColor);
}

.process-wrap .text{
    margin: 2px 2px 2px 50px;
}

.fact-item{
    /*border: 2px dotted var(--bordColor);*/
    border:1px dashed #cdcdcd;
}
.fact-item h5{
    text-transform: uppercase;
}
.fact-item p{
    text-align:left;
}
.fact-item .fact-icon {
    width: 100px;
    height: 100px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bgColor);
    border-radius: 120px;
    transition: .5s;
    color: white;
    font-size:2em;
}

.fact-item:hover .fact-icon {
    background: white;
    border: 5px solid var(--bordColor);
    color: var(--bordColor);
}


.process ul {
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  justify-content: center;
  gap: 2rem;
  list-style: none;
}

.process ul li {
  width: 16rem;
  justify-self: center;
  display: grid;
  grid-template:
    "icon"
    "line"
    "dot"
    "title"
    "descr" 1fr;
  justify-items: center;
  align-items: flex-start;
  text-align: left;
}

.process ul li .icon {
  grid-area: icon;
  width: 6rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: white;
  font-size: 2.5rem;
  border: 0.4rem solid var(--bgColor);
  border-radius: 50%;
  background: var(--accent-color);
}

.process ul li::before {
  content: "";
  grid-area: line;
  height: 2rem;
  border-right: 2px dotted currentColor;
}

.process ul li::after {
  content: "";
  grid-area: dot;
  width: 1rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent-color);
  justify-self: center;
  margin-bottom: 0.5rem;
}

.process ul li .title {
  grid-area: title;
  margin-block: 0.5rem;
  font-size: 1.1em;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}
.process1 ul {
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  justify-content: center;
  gap: 2rem;
  list-style: none;
}

.process1 ul li {
  width: 25rem;
  justify-self: center;
  display: grid;
  grid-template:
    "icon"
    "line"
    "dot"
    "title"
    "descr" 1fr;
  justify-items: center;
  align-items: flex-start;
  text-align: left;
}

@media (max-width: 767px) {
    .process1 ul {
  margin-inline: auto;
  display: block;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  justify-content: center;
  gap: 2rem;
  list-style: none;
}

  .process1 ul li {
  width: 30rem;
    }
}
@media only screen and (max-width: 1440px) {

  .process1 ul li {
  width: 18rem;
    }
}
.process1 ul li .icon {
  grid-area: icon;
  width: 6rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: white;
  font-size: 2.5rem;
  border: 0.4rem solid var(--bgColor);
  border-radius: 50%;
  background: var(--accent-color);
}

.process1 ul li::before {
  content: "";
  grid-area: line;
  height: 2rem;
  border-right: 2px dotted currentColor;
}

.process1 ul li::after {
  content: "";
  grid-area: dot;
  width: 1rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent-color);
  justify-self: center;
  margin-bottom: 0.5rem;
}

.process1 ul li .title {
  grid-area: title;
  margin-block: 0.5rem;
  font-size: 1.1em;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}
