
: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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

main{
  margin-top: -90px;
}

: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: #09110b; /* 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. */
}

:root {
  --nav-color: #272828;  /* The default color of the main navmenu links */
  --nav-hover-color: #0f1812; /* 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: #303030; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

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

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

:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

.header a {
  color: white;
}

.header.scrolled a {
  color: black;
}

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

.header {
  color: white!important;
  background-color: transparent; /* Start as transparent */
  padding: 17px 0;
  padding-top: 0;
  transition: all 0.5s;
  z-index: 997;
}

.header.scrolled {
  background-color: var(--background-color); /* Default background color when scrolled */
  color: black!important;
  padding-top: 17px;
}

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

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

.header .logo h1 {
  font-weight: 800;
  font-size: 45px;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white!important;
}

.header.scrolled .logo h1 {
  color: black!important;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: black;
  background: white;
  font-size: 18px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

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

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

.header.scrolled .btn-getstarted:hover,
.header.scrolled .btn-getstarted:focus:hover {
  color: black;
  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 {
    padding: 18px 15px;
    font-size: 18px;
    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 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;
  }

  .header.scrolled .navmenu li:hover>a,
  .header.scrolled .navmenu .active,
  .header.scrolled .navmenu .active:focus {
    color: black;
  }

  .header .navmenu li:hover>a,
  .header .navmenu .active,
  .header .navmenu .active:focus {
    color: white;
  }

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

  .header.scrolled .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: black;
  }

  .header .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: black;
  }

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

  .header .navmenu .dropdown ul a:hover,
  .header .navmenu .dropdown ul .active:hover,
  .header .navmenu .dropdown ul li:hover>a {
    color: black;
  }

  .header.scrolled .navmenu .dropdown ul a:hover,
  .header.scrolled .navmenu .dropdown ul .active:hover,
  .header.scrolled .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;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    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;
  }
}

/*--------------------------------------------------------------
# YERA Header
--------------------------------------------------------------*/
.header {
  height: 88px;
  padding: 0;
  color: #fff !important;
  background: linear-gradient(180deg, rgba(8, 18, 15, .62), rgba(8, 18, 15, 0));
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.header.scrolled,
.scrolled .header {
  padding: 0;
  color: #17211d !important;
  background: rgba(255, 255, 255, .96);
  border-color: rgba(23, 33, 29, .08);
  box-shadow: 0 12px 35px rgba(18, 31, 25, .09);
  backdrop-filter: blur(16px);
}

.header .header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header .brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
  color: #fff;
}

.header.scrolled .brand {
  color: #17211d;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #102019;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 13px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
}

.brand-mark > span {
  font-family: "Raleway", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  max-height: none;
  margin: 0;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: inherit;
  font-family: "Raleway", sans-serif;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: .16em;
}

.brand-copy small {
  margin-top: 6px;
  color: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .72;
}

.header .navmenu {
  margin-left: auto;
}

.header .header-contact {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 0 20px;
  color: #15221c;
  background: #d6b878;
  border: 1px solid #d6b878;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}

.header .header-contact:hover {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .7);
}

.header.scrolled .header-contact:hover {
  color: #15221c;
  background: #ead7ae;
  border-color: #ead7ae;
}

.mobile-contact-link {
  display: none;
}

@media (min-width: 1200px) {
  .header .navmenu > ul {
    gap: 4px;
  }

  .header .navmenu > ul > li > a {
    position: relative;
    padding: 32px 14px;
    color: rgba(255, 255, 255, .86);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .01em;
  }

  .header.scrolled .navmenu > ul > li > a {
    color: #34413b;
  }

  .header .navmenu > ul > li > a::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 23px;
    left: 14px;
    height: 2px;
    background: #d6b878;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
  }

  .header .navmenu > ul > li:hover > a,
  .header .navmenu > ul > li > a.active,
  .header.scrolled .navmenu > ul > li:hover > a,
  .header.scrolled .navmenu > ul > li > a.active {
    color: inherit;
  }

  .header .navmenu > ul > li:hover > a::after,
  .header .navmenu > ul > li > a.active::after {
    transform: scaleX(1);
  }

  .header .services-dropdown {
    position: static;
  }

  .header .navmenu .services-dropdown > .services-menu {
    width: min(900px, calc(100vw - 48px));
    display: grid;
    grid-template-columns: 245px 1fr;
    position: fixed;
    left: 50vw;
    top: 87px;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(25, 42, 34, .08);
    border-radius: 18px;
    box-shadow: 0 26px 70px rgba(9, 24, 17, .2);
    transform: translateX(-50%) translateY(8px);
  }

  .header .navmenu .services-dropdown:hover > .services-menu {
    top: 87px;
    transform: translateX(-50%) translateY(0);
  }

  .header .services-menu > li {
    min-width: 0;
  }

  .header .services-menu .menu-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    color: #173027;
    background: #fff;
    border-right: 1px solid #e5ebe8;
  }

  .header .menu-intro .menu-eyebrow {
    margin-bottom: 14px;
    color: #d6b878;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
  }

  .header .menu-intro strong {
    color: #173027;
    font-family: "Raleway", sans-serif;
    font-size: 20px;
    line-height: 1.4;
  }

  .header .menu-intro a {
    gap: 8px;
    justify-content: flex-start;
    margin-top: 26px;
    padding: 0;
    color: #6f5829;
    font-size: 13px;
    font-weight: 700;
  }

  .header .services-menu .service-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 20px;
  }

  .header .service-links > a {
    min-height: 48px;
    gap: 11px;
    justify-content: flex-start;
    padding: 9px 12px;
    color: #293831;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    white-space: normal;
  }

  .header .service-links > a i {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    margin: 0;
    color: #846b38;
    background: #f5efe2;
    border-radius: 8px;
    font-size: 14px;
  }

  .header .service-links > a:hover {
    color: #13251d;
    background: #f5f7f6;
  }
}

@media (max-width: 1199px) {
  .header,
  .header.scrolled {
    height: 76px;
    padding: 0;
  }

  .header .header-inner {
    gap: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .header .header-contact {
    order: 2;
    margin-left: auto;
  }

  .header .navmenu {
    order: 3;
    margin-left: 0;
  }

  .header .mobile-nav-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
  }

  .header.scrolled .mobile-nav-toggle {
    color: #17211d;
    background: #f3f5f4;
    border-color: #e5e9e7;
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 15px;
    right: 18px;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
  }

  .mobile-nav-active .navmenu {
    padding: 82px 16px 16px;
    background: rgba(9, 20, 15, .96);
    backdrop-filter: blur(18px);
  }

  .mobile-nav-active .navmenu > ul {
    position: static;
    max-width: 680px;
    height: calc(100vh - 98px);
    margin: 0 auto;
    padding: 12px;
    background: #fff;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
  }

  .header .navmenu a,
  .header .navmenu a:focus {
    padding: 14px 15px;
    color: #26352e;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 650;
    white-space: normal;
  }

  .header .navmenu a:hover,
  .header .navmenu a.active {
    color: #13251d;
    background: #f3f6f4;
  }

  .header .navmenu a .toggle-dropdown {
    flex: 0 0 34px;
    margin-left: auto;
    color: #796333;
    background: #f5efe2;
  }

  .header .navmenu .dropdown > .services-menu {
    margin: 4px 8px 10px;
    padding: 8px;
    background: #f6f8f7;
    border-radius: 12px;
  }

  .header .menu-intro {
    display: none;
  }

  .header .service-links a {
    gap: 10px;
    padding: 11px 12px;
    font-size: 13px;
  }

  .header .service-links a i {
    width: 28px;
    color: #8b713b;
    text-align: center;
  }

  .mobile-contact-link {
    display: block;
    margin-top: 8px;
  }

  .header .mobile-contact-link a {
    justify-content: center;
    color: #14221b;
    background: #d6b878;
  }
}

@media (max-width: 575px) {
  .header .header-inner {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand-copy small {
    letter-spacing: .14em;
  }

  .header .header-contact {
    display: none;
  }

  .header .navmenu {
    order: 2;
    margin-left: auto;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

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

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

.footer .footer-about .logo img {
  max-height: 40px;
  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-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: 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: 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: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

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

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

/*--------------------------------------------------------------
# YERA Footer
--------------------------------------------------------------*/
.yera-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: rgba(255, 255, 255, .7);
  background:
    radial-gradient(circle at 10% 20%, rgba(214, 184, 120, .1), transparent 28%),
    radial-gradient(circle at 92% 70%, rgba(63, 103, 84, .18), transparent 30%),
    #0d1b15;
}

.yera-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.footer-accent {
  height: 4px;
  background: linear-gradient(90deg, #8b713b, #e5ca8e 45%, #8b713b);
}

.yera-footer .footer-main {
  position: relative;
  z-index: 1;
  padding-top: 74px;
  padding-bottom: 68px;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 68px;
  padding: 38px 42px;
  background: linear-gradient(125deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .16);
  backdrop-filter: blur(10px);
}

.footer-cta-copy {
  max-width: 720px;
}

.footer-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: #d6b878;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -.025em;
}

.footer-cta p {
  max-width: 650px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 15px;
  line-height: 1.75;
}

.footer-cta-button {
  min-width: 210px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 0 0 auto;
  padding: 0 24px;
  color: #122019;
  background: #d6b878;
  border: 1px solid #d6b878;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 750;
}

.footer-cta-button:hover {
  gap: 16px;
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .45);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .62fr 1.5fr 1fr;
  gap: 54px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #fff;
}

.footer-brand:hover {
  color: #fff;
}

.footer-brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #102019;
  background: #fff;
  border-radius: 13px;
}

.footer-brand-mark > span {
  font-family: "Raleway", sans-serif;
  font-size: 26px;
  font-weight: 800;
}

.footer-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-brand-copy strong {
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: .16em;
}

.footer-brand-copy small {
  margin-top: 6px;
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.footer-positioning {
  max-width: 330px;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.8;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  color: rgba(255, 255, 255, .68);
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  font-size: 11px;
}

.footer-trust i {
  color: #d6b878;
}

.yera-footer h3 {
  position: relative;
  margin: 6px 0 24px;
  padding-bottom: 12px;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.yera-footer h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: #d6b878;
  border-radius: 2px;
}

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

.footer-links-column li + li {
  margin-top: 12px;
}

.footer-links-column a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  line-height: 1.45;
}

.footer-links-column a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: #d6b878;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.footer-links-column a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-links-column a:hover::after {
  transform: scaleX(1);
}

.footer-services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.footer-contact-column address {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  font-style: normal;
}

.footer-contact-column address a {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  line-height: 1.55;
}

.footer-contact-column address a:hover {
  color: #fff;
}

.footer-contact-column address i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #d6b878;
  background: rgba(214, 184, 120, .08);
  border: 1px solid rgba(214, 184, 120, .14);
  border-radius: 8px;
}

.footer-availability {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #80b494;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(128, 180, 148, .1);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 24px 0 20px;
  background: rgba(4, 12, 8, .38);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: 11px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-legal a {
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
}

.footer-legal a:hover {
  color: #d6b878;
}

.footer-disclaimer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .055);
}

.footer-disclaimer p {
  max-width: 960px;
  line-height: 1.65;
}

.yera-footer + .scroll-top {
  width: 46px;
  height: 46px;
  right: 24px;
  bottom: 24px;
  background: #d6b878;
  border: 1px solid rgba(18, 32, 25, .12);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(7, 17, 12, .22);
}

.yera-footer + .scroll-top i {
  color: #13221a;
  font-size: 25px;
}

.yera-footer + .scroll-top:hover {
  background: #ead7ae;
  transform: translateY(-3px);
}

@media (max-width: 1199px) {
  .footer-grid {
    grid-template-columns: 1.2fr .7fr 1.4fr;
  }

  .footer-contact-column {
    grid-column: 1 / -1;
  }

  .footer-contact-column address {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .yera-footer .footer-main {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 48px;
    padding: 28px 24px;
    border-radius: 18px;
  }

  .footer-cta-button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px 28px;
  }

  .footer-brand-column,
  .footer-links-column,
  .footer-services-column,
  .footer-contact-column {
    grid-column: 1 / -1;
  }

  .footer-services-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-contact-column address {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-cta h2,
  .footer-cta p {
    overflow-wrap: anywhere;
  }
}

/*--------------------------------------------------------------
# YERA Perspectives
--------------------------------------------------------------*/
.yera-perspectives {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #f4f6f5;
}

.perspectives-orbit {
  position: absolute;
  border: 1px solid rgba(23, 48, 39, .07);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 520px;
  height: 520px;
  top: -290px;
  right: -150px;
}

.orbit-two {
  width: 300px;
  height: 300px;
  bottom: -180px;
  left: -80px;
}

.perspectives-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.perspectives-heading h2 {
  max-width: 760px;
  margin: 0;
  color: #173027;
  font-family: "Raleway", sans-serif;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 570;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.perspectives-heading > p {
  margin: 0 0 5px;
  color: #718078;
  font-size: 14px;
  line-height: 1.8;
}

.perspectives-slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.perspectives-slider .swiper-wrapper {
  align-items: stretch;
}

.perspectives-slider .swiper-slide {
  height: auto;
}

.perspective-card {
  position: relative;
  min-height: 390px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  color: #23392f;
  background: #fff;
  border: 1px solid #e0e6e3;
  border-radius: 20px;
  box-shadow: 0 20px 55px rgba(20, 45, 34, .055);
}

.perspective-card::before {
  content: "";
  position: absolute;
  right: -64px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  background: #f5f0e5;
  border-radius: 50%;
}

.perspective-card::after {
  content: "";
  position: absolute;
  right: 29px;
  bottom: 29px;
  width: 42px;
  height: 42px;
  border-right: 1px solid rgba(138, 110, 52, .25);
  border-bottom: 1px solid rgba(138, 110, 52, .25);
  border-radius: 0 0 10px 0;
}

.perspective-dark {
  color: #fff;
  background: #173027;
  border-color: #173027;
}

.perspective-dark::before {
  background: rgba(214, 184, 120, .1);
}

.perspective-dark::after {
  border-color: rgba(225, 196, 127, .35);
}

.perspective-gold {
  color: #17271f;
  background: #d9bd7d;
  border-color: #d9bd7d;
}

.perspective-gold::before {
  background: rgba(255, 255, 255, .18);
}

.perspective-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.perspective-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #80652d;
  background: #f5f0e5;
  border-radius: 13px;
  font-size: 19px;
}

.perspective-dark .perspective-icon {
  color: #e1c47f;
  background: rgba(225, 196, 127, .1);
}

.perspective-gold .perspective-icon {
  color: #173027;
  background: rgba(255, 255, 255, .28);
}

.perspective-number {
  color: #a5afaa;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .15em;
}

.perspective-dark .perspective-number {
  color: rgba(255, 255, 255, .35);
}

.perspective-gold .perspective-number {
  color: rgba(23, 39, 31, .5);
}

.perspective-label {
  margin-top: 55px;
  color: #8a6e34;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.perspective-dark .perspective-label {
  color: #e1c47f;
}

.perspective-gold .perspective-label {
  color: #4d411f;
}

.perspective-card h3 {
  position: relative;
  z-index: 1;
  margin: 14px 0 18px;
  color: inherit;
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-weight: 620;
  line-height: 1.28;
  letter-spacing: -.02em;
}

.perspective-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #76827c;
  font-size: 12px;
  line-height: 1.75;
}

.perspective-dark p {
  color: rgba(255, 255, 255, .6);
}

.perspective-gold p {
  color: rgba(23, 39, 31, .7);
}

.perspective-line {
  width: 42px;
  height: 2px;
  margin-top: auto;
  background: #d6b878;
}

.perspective-dark .perspective-line {
  background: #e1c47f;
}

.perspective-gold .perspective-line {
  background: #173027;
}

.perspectives-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
}

.perspectives-pagination {
  position: static !important;
  width: auto !important;
  display: flex;
  align-items: center;
  gap: 7px;
}

.perspectives-pagination .swiper-pagination-bullet {
  width: 22px;
  height: 3px;
  margin: 0 !important;
  opacity: 1;
  background: #cbd2ce;
  border: 0;
  border-radius: 3px;
  transition: width .3s ease, background-color .3s ease;
}

.perspectives-pagination .swiper-pagination-bullet-active {
  width: 44px;
  background: #8a6e34;
}

.perspectives-arrows {
  display: flex;
  gap: 9px;
}

.perspectives-arrows button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #173027;
  background: transparent;
  border: 1px solid #cfd6d2;
  border-radius: 11px;
  transition: .3s ease;
}

.perspectives-arrows button:hover {
  color: #fff;
  background: #173027;
  border-color: #173027;
}

@media (max-width: 991px) {
  .perspectives-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .perspectives-heading > p {
    max-width: 650px;
  }
}

@media (max-width: 767px) {
  .yera-perspectives {
    padding: 82px 0;
  }

  .perspectives-heading {
    margin-bottom: 38px;
  }

  .perspective-card {
    min-height: 370px;
  }
}

/*--------------------------------------------------------------
# YERA Inner Pages
--------------------------------------------------------------*/
.service-detail-main,
.yera-about-page .main,
.yera-contact-page .main {
  margin-top: -88px;
}

.inner-hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 170px 0 82px;
  color: #fff;
  background: #10251c;
}

.inner-hero-image,
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.inner-hero-image {
  object-fit: cover;
  filter: saturate(.58) contrast(1.04);
}

.inner-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 24, 17, .94), rgba(7, 24, 17, .72) 48%, rgba(7, 24, 17, .25)),
    linear-gradient(180deg, rgba(7, 20, 15, .12), rgba(7, 20, 15, .48));
}

.inner-hero-content {
  position: relative;
  z-index: 1;
}

.inner-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 46px;
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
}

.inner-breadcrumbs a {
  color: rgba(255, 255, 255, .7);
}

.inner-breadcrumbs a:hover {
  color: #e1c47f;
}

.inner-breadcrumbs i {
  font-size: 8px;
}

.inner-kicker {
  display: block;
  margin-bottom: 18px;
  color: #e1c47f;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.inner-hero h1 {
  max-width: 990px;
  margin: 0;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: clamp(50px, 6vw, 84px);
  font-weight: 540;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.inner-hero p {
  max-width: 740px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
  line-height: 1.75;
}

.service-detail-content {
  padding: 120px 0;
  background: #fff;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 70px;
}

.service-main-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  color: #80652d;
  background: #f4efe3;
  border-radius: 15px;
  font-size: 23px;
}

.service-intro-heading h2,
.service-closing h2,
.about-story h2,
.about-values-heading h2,
.about-network h2,
.contact-sidebar h2,
.contact-form-heading h2 {
  margin: 0;
  color: #173027;
  font-family: "Raleway", sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 570;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.service-intro-copy {
  padding-bottom: 5px;
}

.service-intro-copy p {
  margin: 0;
  color: #6f7d76;
  font-size: 14px;
  line-height: 1.85;
}

.service-intro-copy p + p {
  margin-top: 18px;
}

.service-capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #dde4e0;
  border-left: 1px solid #dde4e0;
}

.capability-card {
  position: relative;
  min-height: 225px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 20px;
  padding: 34px;
  overflow: hidden;
  background: #fff;
  border-right: 1px solid #dde4e0;
  border-bottom: 1px solid #dde4e0;
  transition: .35s ease;
}

.capability-card:hover {
  color: #fff;
  background: #173027;
}

.capability-number {
  color: #a1aaa5;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .15em;
}

.capability-card h3 {
  margin: 0 0 13px;
  color: #21372e;
  font-size: 20px;
  font-weight: 650;
  transition: color .35s ease;
}

.capability-card p {
  margin: 0;
  color: #78847e;
  font-size: 12px;
  line-height: 1.75;
  transition: color .35s ease;
}

.capability-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #846a32;
  background: #f5f0e5;
  border-radius: 10px;
}

.capability-card:hover .capability-number,
.capability-card:hover p {
  color: rgba(255, 255, 255, .56);
}

.capability-card:hover h3 {
  color: #fff;
}

.capability-card:hover .capability-arrow {
  color: #e1c47f;
  background: rgba(225, 196, 127, .1);
}

.service-closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 80px;
  padding: 48px 52px;
  background: #f4f6f5;
  border-radius: 22px;
}

.service-closing > div {
  max-width: 770px;
}

.service-closing p {
  max-width: 650px;
  margin: 18px 0 0;
  color: #718078;
  font-size: 13px;
  line-height: 1.75;
}

.service-closing .button {
  min-width: 215px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  flex: 0 0 auto;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 750;
}

.about-story,
.about-network {
  padding: 120px 0;
  background: #fff;
}

.about-story-grid,
.about-network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.about-story-copy .lead {
  margin: 28px 0 18px;
  color: #344b40;
  font-size: 17px;
  line-height: 1.75;
}

.about-story-copy > p:not(.lead),
.about-network p {
  color: #718078;
  font-size: 14px;
  line-height: 1.85;
}

.about-story-copy .text-link {
  margin-top: 22px;
}

.about-story-image,
.about-network-image {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(20, 43, 33, .12);
}

.about-story-image > img,
.about-network-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.62);
}

.story-image-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  gap: 15px;
  padding: 22px;
  color: #fff;
  background: rgba(15, 43, 31, .88);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.story-image-note i {
  color: #e1c47f;
  font-size: 24px;
}

.story-image-note p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.65;
}

.about-values {
  padding: 120px 0;
  background: #f4f6f5;
}

.about-values-heading {
  max-width: 760px;
  margin-bottom: 55px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-values-grid article {
  position: relative;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: #fff;
  border: 1px solid #e2e8e5;
  border-radius: 18px;
}

.about-values-grid article > span {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #a3aca7;
  font-size: 10px;
  font-weight: 750;
}

.about-values-grid i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #80652d;
  background: #f5f0e5;
  border-radius: 13px;
  font-size: 19px;
}

.about-values-grid h3 {
  margin: auto 0 14px;
  color: #20372d;
  font-size: 22px;
}

.about-values-grid p {
  margin: 0;
  color: #78847e;
  font-size: 12px;
  line-height: 1.75;
}

.about-network {
  background: #10271d;
}

.about-network-grid {
  color: #fff;
}

.about-network h2 {
  color: #fff;
}

.about-network p {
  color: rgba(255, 255, 255, .62);
  margin: 25px 0;
}

.about-network ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-network li {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.about-network li i {
  color: #e1c47f;
}

.contact-modern {
  padding: 120px 0;
  background: #f4f6f5;
}

.contact-modern-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 70px;
  align-items: start;
}

.contact-sidebar {
  position: sticky;
  top: 120px;
}

.contact-sidebar > p {
  margin: 25px 0 35px;
  color: #718078;
  font-size: 14px;
  line-height: 1.85;
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-methods > a,
.contact-methods > div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px;
  color: #263d33;
  background: #fff;
  border: 1px solid #e0e6e3;
  border-radius: 13px;
}

.contact-methods i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #80652d;
  background: #f5f0e5;
  border-radius: 10px;
}

.contact-methods span {
  display: flex;
  flex-direction: column;
}

.contact-methods small {
  margin-bottom: 3px;
  color: #909a95;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.contact-methods strong {
  color: #263d33;
  font-size: 13px;
}

.contact-confidence {
  display: flex;
  gap: 12px;
  margin-top: 25px;
  padding-top: 24px;
  border-top: 1px solid #dce3df;
}

.contact-confidence i {
  color: #80652d;
  font-size: 20px;
}

.contact-confidence p {
  margin: 0;
  color: #7c8882;
  font-size: 11px;
  line-height: 1.7;
}

.contact-form-card {
  padding: 46px;
  background: #fff;
  border: 1px solid #e0e6e3;
  border-radius: 22px;
  box-shadow: 0 25px 70px rgba(21, 46, 35, .07);
}

.contact-form-heading {
  margin-bottom: 35px;
}

.contact-form-heading > span {
  display: block;
  margin-bottom: 10px;
  color: #8a6e34;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.contact-form-heading h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.contact-form-card label:not(.contact-consent) {
  display: block;
  margin-bottom: 8px;
  color: #2d4339;
  font-size: 11px;
  font-weight: 700;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  min-height: 52px;
  padding: 13px 15px;
  color: #263c32;
  background-color: #f8f9f8;
  border: 1px solid #e0e6e3;
  border-radius: 10px;
  font-size: 13px;
  box-shadow: none;
}

.contact-form-card textarea.form-control {
  min-height: 145px;
  resize: vertical;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  background: #fff;
  border-color: #a58a4f;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #7a8680;
  font-size: 11px;
  line-height: 1.6;
}

.contact-consent input {
  margin-top: 3px;
  accent-color: #173027;
}

.contact-form-card button[type=submit] {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  color: #14231c;
  background: #d9bd7d;
  border: 0;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 750;
}

.contact-form-card button[type=submit]:hover {
  color: #fff;
  background: #173027;
}

.services-overview-intro {
  padding: 120px 0;
  background: #fff;
}

.services-overview-heading {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 60px;
}

.services-overview-heading h2 {
  margin: 0;
  color: #173027;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 570;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.services-overview-heading > p {
  margin: 0 0 5px;
  color: #718078;
  font-size: 14px;
  line-height: 1.85;
}

.services-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.portfolio-service-card {
  position: relative;
  min-height: 355px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  color: #23392f;
  background: #f7f8f7;
  border: 1px solid #e2e7e4;
  border-radius: 18px;
}

.portfolio-service-card > span {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #9da7a2;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .14em;
}

.portfolio-service-card > i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #80652d;
  background: #f1eadb;
  border-radius: 13px;
  font-size: 20px;
}

.portfolio-service-card h3 {
  margin: auto 0 14px;
  color: inherit;
  font-size: 24px;
  font-weight: 620;
}

.portfolio-service-card p {
  margin: 0;
  color: #77837d;
  font-size: 12px;
  line-height: 1.7;
}

.portfolio-service-card b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #80652d;
  font-size: 11px;
}

.portfolio-service-card:hover {
  color: #fff;
  background: #173027;
  border-color: #173027;
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(19, 45, 33, .12);
}

.portfolio-service-card:hover p {
  color: rgba(255, 255, 255, .58);
}

.portfolio-service-card:hover > i {
  color: #e1c47f;
  background: rgba(225, 196, 127, .1);
}

.portfolio-service-card:hover b {
  color: #e1c47f;
}

.portfolio-service-card.dark {
  color: #fff;
  background: #173027;
  border-color: #173027;
}

.portfolio-service-card.dark p {
  color: rgba(255, 255, 255, .58);
}

.portfolio-service-card.dark > i {
  color: #e1c47f;
  background: rgba(225, 196, 127, .1);
}

.portfolio-service-card.dark b {
  color: #e1c47f;
}

.portfolio-service-card.gold {
  color: #17271f;
  background: #d9bd7d;
  border-color: #d9bd7d;
}

.portfolio-service-card.gold p {
  color: rgba(23, 39, 31, .66);
}

.portfolio-service-card.gold > i {
  color: #173027;
  background: rgba(255, 255, 255, .25);
}

.portfolio-service-card.gold b {
  color: #3f351a;
}

.portfolio-service-card.image-card {
  color: #fff;
}

.portfolio-service-card.image-card > img,
.portfolio-service-card.image-card > div {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portfolio-service-card.image-card > img {
  object-fit: cover;
  filter: saturate(.55);
}

.portfolio-service-card.image-card > div {
  background: linear-gradient(180deg, rgba(14, 39, 29, .35), rgba(14, 39, 29, .94));
}

.portfolio-service-card.image-card > *:not(img):not(div) {
  position: relative;
  z-index: 1;
}

.portfolio-service-card.image-card > span {
  position: absolute;
}

.portfolio-service-card.image-card p {
  color: rgba(255, 255, 255, .65);
}

.portfolio-service-card.image-card > i {
  color: #e1c47f;
  background: rgba(225, 196, 127, .12);
}

.portfolio-service-card.image-card b {
  color: #e1c47f;
}

@media (max-width: 991px) {
  .service-detail-main,
  .yera-about-page .main,
  .yera-contact-page .main {
    margin-top: -76px;
  }

  .inner-hero {
    min-height: 560px;
    padding-top: 145px;
  }

  .service-intro-grid,
  .about-story-grid,
  .about-network-grid,
  .contact-modern-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-story-image,
  .about-network-image {
    min-height: 520px;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-sidebar {
    position: static;
  }

  .services-overview-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .services-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .inner-hero {
    min-height: 540px;
    padding: 130px 0 65px;
  }

  .inner-breadcrumbs {
    margin-bottom: 34px;
  }

  .inner-hero h1 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .inner-hero p {
    font-size: 14px;
  }

  .service-detail-content,
  .about-story,
  .about-values,
  .about-network,
  .contact-modern {
    padding: 82px 0;
  }

  .service-capabilities,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 200px;
    grid-template-columns: 40px 1fr;
    padding: 26px;
  }

  .capability-arrow {
    display: none;
  }

  .service-closing {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 55px;
    padding: 32px 26px;
  }

  .service-closing .button {
    width: 100%;
  }

  .about-story-image,
  .about-network-image {
    min-height: 420px;
  }

  .contact-form-card {
    padding: 30px 22px;
  }

  .services-overview-intro {
    padding: 82px 0;
  }

  .services-portfolio-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .footer-legal {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .yera-footer + .scroll-top {
    right: 16px;
    bottom: 16px;
  }
}

/*--------------------------------------------------------------
# YERA Homepage
--------------------------------------------------------------*/
.index-page main {
  margin-top: -88px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #8a6e34;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #173027;
  font-size: 13px;
  font-weight: 750;
}

.text-link:hover {
  gap: 15px;
  color: #8a6e34;
}

.yera-home-hero {
  min-height: 790px;
  height: 100vh;
  max-height: 980px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 80px;
  background: #0b1c16;
}

.yera-home-hero .hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.yera-home-hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  background: none;
}

.yera-home-hero .hero-container {
  position: relative;
  z-index: 2;
}

.yera-home-hero .hero-content {
  max-width: 800px;
  filter: drop-shadow(0 3px 18px rgba(0, 0, 0, .38));
}

.yera-home-hero .hero-kicker {
  color: #f3cf73;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .65);
}

.yera-home-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: clamp(54px, 6.1vw, 92px);
  font-weight: 520;
  line-height: .99;
  letter-spacing: -.045em;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .48);
}

.yera-home-hero h1 span {
  color: #f3cf73;
}

.yera-home-hero .hero-content > p {
  max-width: 710px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .94);
  font-size: 17px;
  line-height: 1.75;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .68);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
}

.hero-actions .button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 750;
}

.button-gold {
  color: #12231b;
  background: #d9bb77;
  border-color: #d9bb77;
}

.button-gold:hover {
  color: #12231b;
  background: #ead59f;
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .28) !important;
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .5) !important;
}

.hero-principles {
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 64px;
  border-top: 0;
}

.hero-principles > div {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 82px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .98);
  border-radius: 13px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .14);
  backdrop-filter: blur(7px);
}

.hero-principles > div + div {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, .98);
}

.hero-principles i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #745b27;
  background: #f3e8ce;
  border: 1px solid #e5d2a6;
  border-radius: 10px;
}

.hero-principles span {
  display: flex;
  flex-direction: column;
  color: #65716b;
  font-size: 11px;
}

.hero-principles strong {
  margin-bottom: 3px;
  color: #173027;
  font-size: 13px;
}

.hero-scroll {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll:hover {
  color: #fff;
}

.home-about {
  padding: 120px 0;
  background: #fff;
}

.about-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(18, 39, 30, .13);
}

.about-visual > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(.52) contrast(.95);
}

.about-visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 30, 22, .74));
}

.about-visual::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 88px;
  height: 88px;
  border-top: 1px solid rgba(255, 255, 255, .55);
  border-right: 1px solid rgba(255, 255, 255, .55);
  border-radius: 0 15px 0 0;
}

.about-visual-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  color: #fff;
  background: rgba(14, 38, 28, .84);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.about-visual-card .card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #e1c47f;
  background: rgba(225, 196, 127, .1);
  border-radius: 12px;
  font-size: 20px;
}

.about-visual-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.about-visual-card p {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 11px;
  line-height: 1.5;
}

.about-content {
  padding-left: 42px;
}

.about-content h2,
.section-heading h2,
.services-heading h2,
.principles-heading h2 {
  margin: 0;
  color: #173027;
  font-family: "Raleway", sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 570;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.about-content .about-lead {
  margin: 28px 0 16px;
  color: #31473d;
  font-size: 17px;
  line-height: 1.75;
}

.about-content > p:not(.about-lead) {
  color: #6c7973;
  font-size: 14px;
  line-height: 1.8;
}

.about-benefits {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.about-benefits > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid #e8ecea;
}

.about-benefits i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #8a6e34;
  background: #f5f0e5;
  border-radius: 10px;
}

.about-benefits span {
  color: #78837e;
  font-size: 12px;
  line-height: 1.55;
}

.about-benefits strong {
  display: block;
  margin-bottom: 3px;
  color: #21382e;
  font-size: 14px;
}

.home-principles {
  padding: 0 0 120px;
  background: #fff;
}

.principles-shell {
  overflow: hidden;
  padding: 54px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(214, 184, 120, .12), transparent 28%),
    #10271d;
  border-radius: 25px;
}

.principles-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.principles-heading .section-kicker {
  color: #d9bb77;
}

.principles-heading h2 {
  color: #fff;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.principles-grid article {
  min-height: 210px;
  padding: 28px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.principles-grid article:first-child {
  border-left: 0;
}

.principle-number {
  color: #d9bb77;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.principles-grid h3 {
  margin: 40px 0 12px;
  color: #fff;
  font-size: 21px;
  font-weight: 600;
}

.principles-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  line-height: 1.75;
}

.home-expertise {
  padding: 120px 0;
  background: #f5f7f6;
}

.section-heading.centered {
  max-width: 820px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading.centered .section-kicker::before {
  display: none;
}

.section-heading > p {
  max-width: 650px;
  margin: 20px auto 0;
  color: #75817b;
  font-size: 14px;
  line-height: 1.8;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.expertise-card {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  color: #253a31;
  background: #fff;
  border: 1px solid #e4e9e6;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(22, 48, 37, .05);
}

.expertise-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  background: #f3efe4;
  border-radius: 50%;
  transition: transform .4s ease;
}

.expertise-card.featured {
  color: #fff;
  background: #183328;
  border-color: #183328;
}

.expertise-card.featured::after {
  background: rgba(214, 184, 120, .1);
}

.expertise-card:hover {
  color: #253a31;
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(22, 48, 37, .12);
}

.expertise-card.featured:hover {
  color: #fff;
}

.expertise-card:hover::after {
  transform: scale(1.18);
}

.expertise-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #80662e;
  background: #f4efe3;
  border-radius: 14px;
  font-size: 22px;
}

.featured .expertise-icon {
  color: #e2c682;
  background: rgba(226, 198, 130, .1);
}

.expertise-index {
  position: absolute;
  top: 36px;
  right: 34px;
  color: #a7b0ab;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.featured .expertise-index {
  color: rgba(255, 255, 255, .38);
}

.expertise-card h3 {
  margin: 62px 0 16px;
  color: inherit;
  font-size: 25px;
  font-weight: 620;
}

.expertise-card p {
  margin: 0;
  color: #738079;
  font-size: 13px;
  line-height: 1.75;
}

.featured p {
  color: rgba(255, 255, 255, .62);
}

.expertise-card .card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: #80662e;
  font-size: 12px;
  font-weight: 750;
}

.featured .card-link {
  color: #e2c682;
}

.home-services {
  padding: 120px 0;
  background: #fff;
}

.services-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 55px;
}

.services-heading > div:last-child {
  max-width: 510px;
  justify-self: end;
}

.services-heading p {
  margin: 0 0 20px;
  color: #738079;
  font-size: 14px;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e3e8e5;
  border-left: 1px solid #e3e8e5;
}

.service-card {
  min-height: 138px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 25px;
  color: #253b31;
  background: #fff;
  border-right: 1px solid #e3e8e5;
  border-bottom: 1px solid #e3e8e5;
}

.service-card:hover {
  color: #fff;
  background: #173027;
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #846a31;
  background: #f4efe4;
  border-radius: 12px;
  font-size: 19px;
}

.service-card:hover .service-icon {
  color: #e1c47f;
  background: rgba(225, 196, 127, .1);
}

.service-card > span:nth-child(2) {
  min-width: 0;
}

.service-card strong,
.service-card small {
  display: block;
}

.service-card strong {
  color: inherit;
  font-size: 14px;
  font-weight: 680;
}

.service-card small {
  margin-top: 6px;
  color: #8a948f;
  font-size: 10px;
  line-height: 1.5;
}

.service-card:hover small {
  color: rgba(255, 255, 255, .55);
}

.service-arrow {
  color: #9da6a1;
  font-size: 15px;
  transition: transform .3s ease;
}

.service-card:hover .service-arrow {
  color: #e1c47f;
  transform: translate(3px, -3px);
}

@media (max-width: 1199px) {
  .yera-home-hero {
    min-height: 760px;
    max-height: none;
  }

  .about-content {
    padding-left: 10px;
  }

  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .principles-grid article:nth-child(3) {
    border-left: 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .index-page main {
    margin-top: -76px;
  }

  .yera-home-hero {
    min-height: 780px;
    height: auto;
    padding-top: 160px;
  }

  .about-visual {
    min-height: 520px;
  }

  .about-content {
    padding: 20px 0 0;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-card {
    min-height: 330px;
  }

  .services-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .services-heading > div:last-child {
    max-width: 650px;
    justify-self: start;
  }
}

@media (max-width: 767px) {
  .home-about,
  .home-expertise,
  .home-services {
    padding: 82px 0;
  }

  .home-principles {
    padding-bottom: 82px;
  }

  .yera-home-hero {
    min-height: 760px;
    padding: 135px 0 60px;
  }

  .yera-home-hero .hero-overlay {
    display: none;
    background: none;
  }

  .yera-home-hero h1 {
    font-size: clamp(45px, 13vw, 66px);
  }

  .yera-home-hero .hero-content > p {
    font-size: 15px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-principles {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .hero-principles > div,
  .hero-principles > div + div {
    padding: 14px 16px;
    border-left: 1px solid rgba(255, 255, 255, .98);
    border-bottom: 1px solid rgba(255, 255, 255, .98);
  }

  .hero-scroll {
    display: none;
  }

  .about-visual {
    min-height: 440px;
  }

  .principles-shell {
    padding: 34px 24px;
    border-radius: 20px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .principles-grid article,
  .principles-grid article:nth-child(3) {
    min-height: 0;
    padding: 24px 0;
    border-left: 0;
  }

  .principles-grid h3 {
    margin-top: 22px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .yera-home-hero {
    min-height: 820px;
  }

  .about-visual {
    min-height: 390px;
  }

  .about-visual-card {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .expertise-card {
    min-height: 360px;
    padding: 28px;
  }
}

/*--------------------------------------------------------------
# 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: 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);
  position: relative;
}

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

.page-title .heading h1 {
  font-size: 60px;
  font-weight: 700;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.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: 60px 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;
}

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

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  font-family: var(--nav-font);
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  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: "";
  background: color-mix(in srgb, var(--background-color), transparent 91%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.hero h2 {
  margin: 0;
  font-size: 68px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.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-size: 2rem;
  font-weight: 700;
}

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

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

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

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

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 24px 12px 24px;
  border-radius: 50px;
  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: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

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

/*--------------------------------------------------------------
# Counts Section
--------------------------------------------------------------*/
.counts {
  padding: 25px 0;
}

.counts .stats-item {
  padding: 30px;
  width: 100%;
}

.counts .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.counts .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}

.why-us .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.why-us .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .icon-box i {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 10px 0;
}

.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Courses Section
--------------------------------------------------------------*/
.courses .course-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 5px;
}

.courses .course-content {
  padding: 15px;
}

.courses .course-content h3 {
  font-weight: 700;
  font-size: 20px;
}

.courses .course-content h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.courses .course-content h3 a:hover {
  color: var(--accent-color);
}

.courses .course-content .category {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0;
  border-radius: 5px;
}

.courses .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .course-content .description {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .trainer {
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.courses .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.courses .trainer .trainer-profile .trainer-link {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.courses .trainer .trainer-profile .trainer-link:hover {
  color: var(--accent-color);
}

.courses .trainer .trainer-rank {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.courses .trainer .trainer-rank .user-icon {
  font-size: 22px;
}

/*--------------------------------------------------------------
# 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:last-child {
  margin-bottom: 0;
}

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

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs {
  padding-top: 30;
}

.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  background-color: var(--background-color);
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.tabs .nav-link:hover {
  color: var(--accent-color);
}

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

.tabs .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tabs .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .tabs .nav-link {
    border: 0;
    padding: 15px;
  }

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

/*--------------------------------------------------------------
# Trainers Section
--------------------------------------------------------------*/
.trainers .member {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .card {
  background-color: var(--background-color);
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.events .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.events .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.events .card-body {
  z-index: 10;
  background: var(--surface-color);
  border-top: 4px solid var(--surface-color);
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.events .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.events .card-title a {
  color: var(--default-color);
  transition: 0.3s;
}

.events .card-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events .card:hover img {
  transform: scale(1.1);
}

.events .card:hover .card-body {
  border-color: var(--accent-color);
}

.events .card:hover .card-body .card-title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

.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 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 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 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 */
}

.playwrite-au-sa-berkay {
  font-family: "Playwrite AU SA", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


@media (min-width: 770px) {


  .pad-top-450{

    padding-top: 250px;
    padding-bottom: 250px;
  
  }
  
  .pad-top-450 p{
  
    text-align: right;
    padding-top: 300px;
    font-size: 24px;
    margin-right: -500px;
    margin-left: 110px;
  
  }


  #animated-text {
    display: inline-block;
    font-size: 3rem;
    line-height: 1.8;
    opacity: 0; /* Initially hidden */
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
  }
  
  .word {
    display: inline-block;
    margin-right: 5px;
    opacity: 0; /* Initially hidden */
    transform: translateY(10px);
    transition: opacity 0.5s, transform 0.5s;
  }
  
  .word.visible {
    opacity: 1;
    transform: translateY(0);
  }
  

}
