/*
Theme Name: Connectforce
Description: 
Version: 1.0
Author: Your Name
*/

body:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(154.31deg, #F2EDDF 24.23%, rgba(251, 251, 248, 0) 52.85%, rgba(248, 248, 248, 0) 83.76%);
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}




/* Connect Force Header */

.header {
  z-index: 100;
  transition: .4s;
}
.header.is-fixed {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header.is-fixed:hover {
  background: #fff;
}
.header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}


@media screen and (max-width: 960px) {
  .header__logo {
    width: 180px;
  }
}

.global-nav__list {
  align-items: center;
  display: flex;
  gap: var(--spacing-md);
}


.global-nav__item {
  font-size: var(--font-size-9);
}

.global-nav__item a {
  position: relative;
}
.global-nav__item a:after {
  content: "";
  background: var(--color-text-secondary);
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -4px;
  left: 0;
  transform: scaleX(0);
  transition: all 0.3s ease;
}

.global-nav__item:hover > a:after {
  transform: scaleX(1);
}

.-level_0 > .global-nav__item {
  padding-block: 28px;
  position: relative;
}

.sub-menu {
  background: #fff;
  position: absolute;
  opacity: 0;
  transition: .4s;
  pointer-events: none;
  top: 100%;
  left: -24px;
  padding-left: 24px;
  padding-right: 40px;
  padding-block: 8px;
}

.global-nav__item:hover .sub-menu {
  opacity: 1;
  pointer-events: auto;
}

.global-nav__btn a {
  border: 1px solid var(--color-text-primary);
  border-radius: 9999vw;
  background: var(--color-text-primary);
  color: var(--color-white);
  line-height: 1.8;
  display: block;
  padding: 8px 19px;
  transition: all 0.3s ease;
}
.global-nav__btn a:after {
  display: none;
}
.global-nav__btn a:hover {
  background: var(--color-text-secondary);
  border-color: var(--color-text-secondary);
  color: var(--color-white);
}

.global-nav__btn--secondary a {
  background: transparent;
  color: var(--color-text-primary);
}




.-level_1 > .global-nav__item {
  display: block;
  padding-block: 16px;
  white-space: nowrap;
}










/* Connect Force Footer */
.cf-footer {
  background-color: #333333;
  padding: 50px 76px;
  border-top-left-radius: 50px;
  width: 100%;
}

.cf-footer__container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.cf-footer__content {
  display: flex;
  gap: var(--spacing-2xl);
  width: 100%;
  padding: var(--spacing-2xl) 0 var(--spacing-xl);
}

.cf-footer__left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
}

.cf-footer__logo {
  width: 196px;
  height: 74px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.cf-footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cf-footer__company-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: flex-start;
  justify-content: flex-start;
  width: 196px;
}

.cf-footer__company-name {
  font-family: var(--font-family-main);
  font-size: var(--font-size-8);
  font-weight: 500;
  line-height: 18.29px;
  color: var(--color-white);
  margin: 0;
  white-space: nowrap;
}

.cf-footer__address {
  font-family: var(--font-family-main-p);
  font-size: 14.222px;
  font-weight: 400;
  line-height: 22.3px;
  color: var(--color-white);
  margin: 0;
  width: 166px;
}

.cf-footer__map-link {
  width: 100px;
  height: 24px;
  position: relative;
}

.cf-footer__map-btn {
  font-size: var(--font-size-10);
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  text-align: center;
  border: 1px solid var(--color-white);
  border-radius: 50px;
  padding: 2px 12px;
  transition: all 0.3s ease;
}

.cf-footer__map-btn:hover {
  background-color: var(--color-white);
  color: #333333;
}

.cf-footer__divider {
  background-color: var(--color-white);
  width: 1px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cf-footer__divider img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -0.5px;
  right: -0.5px;
  max-width: none;
  max-height: 100%;
  display: block;
}

.cf-footer__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
}

.cf-footer__navigation {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-2xl);
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.cf-footer__nav-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  align-items: flex-start;
  justify-content: flex-start;
}

.cf-footer__nav-link {
  font-family: var(--font-family-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 18.29px;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 0.42px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.cf-footer__nav-link:not(span):hover {
  color: var(--color-brand-primary);
}

.cf-footer__nav-link--main {
  margin-bottom: var(--spacing-xs);
}

.cf-footer__nav-submenu {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  align-items: flex-start;
  justify-content: flex-start;
}

.cf-footer__nav-sublink {
  font-family: var(--font-family-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 23.3px;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 0.42px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.cf-footer__nav-sublink:hover {
  color: var(--color-brand-primary);
}

.cf-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.cf-footer__legal-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  align-items: flex-start;
  justify-content: flex-start;
  width: 166px;
}

.cf-footer__legal-link {
  font-family: var(--font-family-main-p);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: var(--color-white);
  text-decoration: none;
  width: 100%;
  transition: color 0.3s ease;
}

.cf-footer__legal-link:hover {
  color: var(--color-brand-primary);
}

.cf-footer__cta-buttons {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
  justify-content: flex-start;
}

.cf-footer__cta-btn {
  display: flex;
  gap: var(--spacing-xs);
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 40px;
  padding: 0 30px;
  position: relative;
}

.cf-footer__cta-btn--outline {
  border: 1px solid var(--color-white);
  background-color: transparent;
  color: var(--color-white);
}

.cf-footer__cta-btn--filled {
  border: 1px solid #333333;
  background-color: var(--color-white);
}

.cf-footer__cta-btn:hover {
  background: var(--color-text-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cf-footer__cta-btn--outline:hover {
  background: var(--color-white);
  color: var(--color-text-primary);
}
.cf-footer__cta-text {
  font-family: var(--font-family-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.4px;
  white-space: nowrap;
}


.cf-footer__cta-btn--filled {
  color: #333333;
}

.cf-footer__cta-arrow {
  display: grid;
  place-content: center;
  width: 20px;

  flex-shrink: 0;
}

.cf-footer__cta-arrow img {
  display: block;
  width: 100%;
  height: 100%;
}

.cf-footer__top-btn {
  flex-shrink: 0;
}

.cf-footer__top-link {
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  text-decoration: none;
  border: 1px solid var(--color-white);
  background-color: transparent;
  transition: all 0.3s ease;
  width: 56px;
  height: 56px;
  position: relative;
  padding: 16px 16px 18px;
}

.cf-footer__top-link:hover {
  background-color: var(--color-white);
}

.cf-footer__top-icon {
  display: flex;
  height: 16.153px;
  align-items: center;
  justify-content: center;
  width: 16.153px;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.cf-footer__top-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.cf-footer__top-text {
  font-family: var(--font-family-main-p);
  font-size: 10.667px;
  font-weight: 400;
  line-height: 10.667px;
  white-space: nowrap;
  margin-bottom: 4px;
}

.cf-footer__top-link:hover {
  color: #333333;
}

.cf-footer__copyright {
  font-size: var(--font-size-10);
  font-weight: 400;
  line-height: 18.29px;
  color: var(--color-white);
  flex-shrink: 0;
}

/* Responsive adjustments */
@media screen and (max-width: 960px) {
  .cf-footer {
    padding: 40px var(--spacing-md);
    border-top-left-radius: 30px;
  }
  
  .cf-footer__container {
    gap: var(--spacing-lg);
  }
  
  .cf-footer__content {
    flex-direction: column;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) 0;
  }
  
  .cf-footer__left {
    align-items: center;
    text-align: center;
  }
  
  .cf-footer__logo {
    width: 160px;
    height: 60px;
  }
  
  .cf-footer__company-info {
    align-items: center;
    text-align: center;
  }
  
  .cf-footer__address {
    text-align: center;
  }
  
  .cf-footer__divider {
    height: 40px;
    width: 100%;
    max-width: 200px;
  }
  
  .cf-footer__divider img {
    position: static;
    transform: rotate(90deg);
    max-width: 100%;
    max-height: 40px;
  }
  
  .cf-footer__navigation {
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
    text-align: center;
  }
  
  .cf-footer__nav-item {
    align-items: center;
    text-align: center;
  }
  
  .cf-footer__bottom {
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
  }
  
  .cf-footer__legal-links {
    align-items: center;
    text-align: center;
  }
  
  .cf-footer__cta-buttons {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .cf-footer__cta-btn {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .cf-footer {
    padding: var(--spacing-lg) var(--spacing-sm);
    border-top-left-radius: 20px;
    position: relative;
  }
  
  .cf-footer__logo {
    width: 140px;
    height: 50px;
  }

  .cf-footer__left {
    gap: var(--spacing-xl);
  }
  
  .cf-footer__company-name {
    font-size: var(--font-size-9);
  }
  
  .cf-footer__address {
    font-size: var(--font-size-9);
  }
  
  .cf-footer__nav-link,
  .cf-footer__nav-sublink {
    font-size: var(--font-size-9);
  }
  
  .cf-footer__cta-text {
    font-size: var(--font-size-9);
  }
  
  .cf-footer__legal-link {
    font-size: var(--font-size-10);
  }
  
  .cf-footer__top-text {
    font-size: var(--font-size-10);
  }
  
  .cf-footer__copyright {
    text-align: center;
    font-size: var(--font-size-10);
  }
  .cf-footer__top-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
  }

}

/* Burger Menu */
.c-burger-menu {
  background: transparent;
  border: 0;
  border-radius: 50%;
  appearance: none;
  outline: none;
  width: 80px;
  height: 80px;
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .c-burger-menu {
    height: 50px;
    width: 50px;
    margin-right: -12px;
  }
}

.c-burger-menu__btn {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  width: 32px;
  height: 22px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .c-burger-menu__btn {
    height: 16px;
    width: 27px;
  }
}

.c-burger-menu__btn span {
  background: var(--color-text-primary);
  display: block;
  width: 100%;
  height: 3px;
  margin: auto;
  position: absolute;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .c-burger-menu__btn span {
    height: 2px;
  }
}

.c-burger-menu__btn span:nth-child(1) {
  top: 0px;
}

.c-burger-menu__btn span:nth-child(2) {
  top: 0;
  bottom: 0;
  right: 0;
  /* display: none; */
}

.c-burger-menu__btn span:nth-child(3) {
  bottom: 0px;
}

.is-menu-open .c-burger-menu__btn span:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .is-menu-open .c-burger-menu__btn span:nth-child(1) {
    transform: translateY(7px) rotate(-45deg);
  }
}

.is-menu-open .c-burger-menu__btn span:nth-child(2) {
  opacity: 0;
}

.is-menu-open .c-burger-menu__btn span:nth-child(3) {
  transform: translateY(-9px) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .is-menu-open .c-burger-menu__btn span:nth-child(3) {
    transform: translateY(-7px) rotate(45deg);
  }
}

/* Slide Menu */
.p-slide {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
}
.p-slide * {
  pointer-events: none !important;
}
.p-slide.is-active *{
  pointer-events: auto !important;
}

.p-slide-nav__list {
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}

.p-slide-nav__item {
  font-size: var(--font-size-7);
  padding: 16px 0 16px 0;
  text-align: left;
}

.p-slide-nav__item:last-child {
  border-bottom: 0;
}

.p-slide-nav__item a {
  font-weight: 700;
  letter-spacing: 0.1em;
}

.p-slide-nav .sub-menu {
  /* padding-left: 16px; */
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  gap: 16px;
  position: static;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  padding-left: 0;
}
.p-slide-nav .sub-menu .p-slide-nav__item {
  font-weight: 400;
  font-size: var(--font-size-9);
}
.p-slide-nav .sub-menu .p-slide-nav__item a {

  font-weight: 400;
  font-size: var(--font-size-9);
}
.p-slide-nav .sub-menu .p-slide-nav__item:before {
  content: "-";
  margin-right: 8px;
}

.p-slide-nav .sub-menu .p-slide-nav__item {
  font-size: var(--font-size-7);
  padding: 0;
  border: 0;
  /* &:before {
    content: "-";
    color: #fff;
    margin-right: 0.5em;
  } */
}

.p-slide-nav__item.global-nav__btn {
  text-align: center;
  padding-bottom: 0;
}

.p-slide-nav__buttons {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  gap: 40px 24px;
}

@media screen and (max-width: 1024px) {
  .p-slide-nav__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }
  
  .p-slide-nav__buttons .c-btn {
    gap: 8px;
    min-width: initial;
    padding: 8px 16px;
  }
  
  .p-slide-nav__buttons .c-btn__text {
    font-size: var(--font-size-9);
  }
}

.p-slide-nav__button {
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .p-slide-nav__button:last-child {
    grid-column: span 2;
  }
  
  .p-slide-nav__button:last-child .c-btn {
    justify-content: center;
  }
}

.p-slide-nav__button .c-btn--primary-white {
  border: 1px solid var(--color-main);
  background: transparent;
}

.p-slide-nav__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  opacity: 0.3;
  z-index: -1;
}

/* Slide Layout */
.l-slide {
  background: #fff;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  transition: .3s;
  opacity: 0;
  width: 100%;
  height: 100vh;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 128px 24px 100px;
  pointer-events: none;
  z-index: 95;
}

@media screen and (max-width: 767px) {
  .l-slide {
    padding-top: var(--headerHeight);
  }
}

.l-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}



