*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #242424;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

h1, h2, h3, h4 {
  color: #11335F;
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  line-height: 1;
}

h2 {
  font-size: 40px;
}
@media (max-width: 1024px) {
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 36px;
}
@media (max-width: 1024px) {
  h3 {
    font-size: 26px;
  }
}

h4 {
  font-size: 24px;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  h4 {
    font-size: 20px;
  }
}

.section-label {
  display: block;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}
@media (max-width: 1024px) {
  .section-label {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .section-label {
    font-size: 18px;
  }
}

.section-label-sm {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  color: #11335F;
}
@media (max-width: 1024px) {
  .section-title {
    font-size: 32px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 17px 32px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  background: #D1914C;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .btn {
    padding: 12px 25px;
  }
}
@media (max-width: 767px) {
  .btn {
    font-size: 15px;
    padding: 10px 20px;
  }
}
.btn:hover {
  background: #25AAE1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56, 62, 75, 0.12);
}

.body-top {
  position: relative;
  height: 100px;
}
.body-top__curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 177px;
  background: #ffffff;
  border-top-left-radius: 70px;
  border-top-right-radius: 70px;
  display: block;
}
@media (max-width: 767px) {
  .body-top__curve {
    top: -55px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
}

.inner-container {
  width: 100%;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 80px;
  padding-bottom: 80px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #BDC5D2;
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.is-scrolled {
  box-shadow: 0 2px 8px rgba(56, 62, 75, 0.08);
}
.header__inner {
  width: 100%;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 86px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.header .site-logo {
  max-width: 160px;
}
.header__logo-icon {
  width: 40px;
  height: 40px;
}
.header__logo-text {
  font-size: 16px;
  font-weight: 700;
  color: #383E4B;
  line-height: 1.15;
}
.header__logo-text span {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: #5a6474;
  letter-spacing: 0.01em;
}
.header__nav .nav-links {
  height: 100%;
}
@media (max-width: 1024px) {
  .header__nav .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 330px;
    height: 100vh;
    background: #242424;
    padding: 20px;
    display: block;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: 0.5s;
    z-index: 1000;
  }
}
@media (max-width: 1024px) {
  .header__nav .nav-links {
    width: 100%;
  }
}
.header__nav .nav-links .sidebar-logo {
  display: none;
}
@media (max-width: 1024px) {
  .header__nav .nav-links .sidebar-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
}
.header__nav .nav-links .sidebar-logo .fa-xmark {
  display: block;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
}
.header__nav .nav-links ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 1280px) {
  .header__nav .nav-links ul {
    gap: 1rem;
  }
}
@media (max-width: 1024px) {
  .header__nav .nav-links ul {
    display: block;
    margin-top: 50px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
}
.header__nav .nav-links ul li {
  position: relative;
}
@media (max-width: 1024px) {
  .header__nav .nav-links ul li {
    display: block;
    line-height: 1;
    padding: 0;
    margin-bottom: 20px;
  }
}
.header__nav .nav-links ul li a.nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #383E4B;
  white-space: nowrap;
  transition: color 0.2s ease;
}
@media (max-width: 1024px) {
  .header__nav .nav-links ul li a.nav-link {
    color: #ffffff;
    font-weight: 400;
  }
}
.header__nav .nav-links ul li a.nav-link:hover {
  color: #25AAE1;
}
.header__nav .nav-links ul li.current-menu-item a.nav-link, .header__nav .nav-links ul li.current-menu-parent a.nav-link {
  color: #25AAE1;
}
.header__nav .nav-links ul li .sub-menu {
  position: absolute;
  top: 35px;
  left: 0;
  display: block;
  width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  border-style: solid;
  border-width: 2px 0 0 0;
  border-color: #25AAE1;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .header__nav .nav-links ul li .sub-menu {
    position: static;
    top: 0;
    height: 0;
    width: 100%;
    transform: translateY(0);
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 0;
  }
}
.header__nav .nav-links ul li .sub-menu li {
  position: relative;
  padding: 0;
  display: block;
  border-bottom: 1px solid rgba(29, 29, 29, 0.1);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .header__nav .nav-links ul li .sub-menu li {
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.header__nav .nav-links ul li .sub-menu li:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.header__nav .nav-links ul li .sub-menu li:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.header__nav .nav-links ul li .sub-menu li.open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.header__nav .nav-links ul li .sub-menu li.open > span > .arrow {
  transform: rotate(90deg);
}
.header__nav .nav-links ul li .sub-menu li a {
  display: block;
  width: 100%;
  color: #242424;
  font-weight: 400;
  padding: 10px 15px;
  text-transform: none;
}
@media (max-width: 1024px) {
  .header__nav .nav-links ul li .sub-menu li a {
    display: inline-block;
    width: auto;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
    padding-bottom: 15px;
  }
}
.header__nav .nav-links ul li .sub-menu li a:hover {
  color: #ffffff;
  background-color: #25AAE1;
}
@media (max-width: 1024px) {
  .header__nav .nav-links ul li .sub-menu li a:hover {
    background: transparent;
    color: #25AAE1;
  }
}
.header__nav .nav-links ul li .sub-menu li:hover {
  color: #ffffff;
}
@media (max-width: 1024px) {
  .header__nav .nav-links ul li .sub-menu li:hover {
    background-color: transparent;
    color: #242424;
  }
}
.header__nav .nav-links ul li .sub-menu li:hover:after {
  opacity: 0;
  width: 0;
}
.header__nav .nav-links ul li .sub-menu li.active a {
  background-color: #242424;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .header__nav .nav-links ul li .sub-menu li.active a {
    background-color: transparent;
    color: #242424;
  }
}
.header__nav .nav-links ul li .sub-menu li.active .sub-menu li a {
  background-color: #ffffff;
  color: #242424;
}
@media (max-width: 1024px) {
  .header__nav .nav-links ul li .sub-menu li.active .sub-menu li a {
    background-color: transparent;
    color: #ffffff;
  }
}
.header__nav .nav-links ul li .sub-menu li.active .sub-menu li a:hover {
  background-color: #242424;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .header__nav .nav-links ul li .sub-menu li.active .sub-menu li a:hover {
    background-color: transparent;
    color: #242424;
  }
}
.header__nav .nav-links ul li .sub-menu li.active .sub-menu li.active a {
  background-color: #242424;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .header__nav .nav-links ul li .sub-menu li.active .sub-menu li.active a {
    background-color: transparent;
    color: #242424;
  }
}
.header__nav .nav-links ul li .sub-menu li.current-menu-item a {
  color: #ffffff;
  background-color: #25AAE1;
}
.header__nav .nav-links ul li .arrow {
  display: inline-block;
  margin-left: 5px;
  font-size: 14px;
  transition: transform 0.3s ease;
}
@media (max-width: 1024px) {
  .header__nav .nav-links ul li .arrow {
    position: relative;
    top: 0;
    margin-left: 10px;
    color: #ffffff;
  }
}
.header__nav .nav-links ul li:hover a {
  color: #25AAE1;
}
.header__nav .nav-links ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .header__nav .nav-links ul li:hover > .sub-menu {
    opacity: 0;
    visibility: hidden;
  }
}
.header__nav .nav-links ul li:hover > .arrow {
  transform: rotate(180deg);
}
@media (max-width: 1024px) {
  .header__nav .nav-links ul li:hover > .arrow {
    transform: rotate(0deg);
  }
}
.header__nav .nav-links ul li.open > .arrow {
  transform: rotate(180deg);
}
@media (max-width: 1024px) {
  .header__nav .nav-links ul li.open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    height: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-top: 10px;
  }
}
.header__nav .nav-links ul li.open > .sub-menu .sub-menu {
  left: 0;
}
@media (max-width: 1024px) {
  .header__nav .nav-links ul li.open > .sub-menu .sub-menu {
    margin-top: 5px;
  }
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  justify-self: end;
}
.header__actions .fa-bars {
  display: none;
}
@media (max-width: 1024px) {
  .header__actions .fa-bars {
    display: block;
    font-size: 24px;
    cursor: pointer;
  }
}
.header__btn-contact, .header__btn-newsletter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
@media (max-width: 767px) {
  .header__btn-contact, .header__btn-newsletter {
    padding: 7px 15px;
    font-size: 14px;
  }
}
.header__btn-contact {
  background: #D1914C;
  color: #ffffff;
  border: 1.5px solid #D1914C;
}
.header__btn-contact:hover {
  background: #25AAE1;
  border-color: #25AAE1;
}
.header__btn-newsletter {
  background: #ffffff;
  color: #383E4B;
  border: 1.5px solid #383E4B;
}
.header__btn-newsletter:hover {
  background: #f7f8fa;
}
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #383E4B;
}
@media (max-width: 1024px) {
  .header__toggle {
    display: flex;
  }
}
.header__mobile-nav {
  display: none;
  background: #ffffff;
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid #BDC5D2;
  flex-direction: column;
  gap: 1rem;
}
.header__mobile-nav.is-open {
  display: flex;
}
.header__mobile-nav a {
  color: #383E4B;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.header__mobile-nav .header__btn-newsletter {
  width: 100%;
}

.hero {
  position: relative;
  height: 750px;
}
@media (max-width: 1024px) {
  .hero {
    height: 550px;
  }
}
@media (max-width: 767px) {
  .hero {
    height: 450px;
  }
}
.hero__slide {
  position: absolute;
  overflow: hidden;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  padding: 120px 0 350px;
  opacity: 0;
  transition: opacity 1.2s ease;
}
@media (max-width: 1024px) {
  .hero__slide {
    padding: 40px 0 160px;
  }
}
@media (max-width: 767px) {
  .hero__slide {
    padding: 0 0 100px;
  }
}
.hero__slide.is-active {
  opacity: 1;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  display: block;
}
.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 31, 56, 0.82) 0%, rgba(56, 62, 75, 0.55) 42%, rgba(10, 31, 56, 0.25) 72%, rgba(10, 31, 56, 0.15) 100%);
}
.hero__content {
  width: 100%;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 4.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
  }
}
.hero__text {
  max-width: 60%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__text.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .hero__text {
    max-width: 100%;
  }
}
.hero__title {
  font-size: 76px;
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 35px;
  }
}
.hero__subtitle {
  color: white;
  font-size: 24px;
  margin-bottom: 2rem;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .hero__subtitle {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .hero__subtitle {
    font-size: 18px;
  }
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 17px 32px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  background: #D1914C;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 60px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
@media (max-width: 1024px) {
  .hero__cta {
    padding: 12px 25px;
  }
}
@media (max-width: 767px) {
  .hero__cta {
    font-size: 15px;
    padding: 10px 20px;
  }
}
.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(56, 62, 75, 0.18);
}
@media (max-width: 1024px) {
  .hero__cta {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .hero__cta {
    font-size: 15px;
  }
}
.hero__cta:hover {
  background: #BD7A32;
}
.hero__chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  cursor: move;
}
@media (max-width: 767px) {
  .hero__chat-widget {
    right: 20px;
    bottom: 20px;
  }
}
.hero__chat-popup {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 368px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .hero__chat-popup {
    width: 320px;
  }
}
.hero__chat-popup.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.hero__chat-row {
  display: flex;
  align-items: center;
  position: relative;
}
.hero__chat-avatar-wrap {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  position: relative;
  margin-right: 18px;
  box-shadow: 0 4px 16px rgba(10, 31, 56, 0.12);
}
.hero__chat-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.hero__chat-bubble {
  position: relative;
  flex: 1;
  background: #ffffff;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 40px;
  box-shadow: 0px 5px 16px 0px rgba(8, 15, 52, 0.0588235294);
  overflow: hidden;
  height: 156px;
}
@media (max-width: 767px) {
  .hero__chat-bubble {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
.hero__chat-slide {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .hero__chat-slide {
    padding: 20px;
  }
}
.hero__chat-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hero__chat-title {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a3f;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}
.hero__chat-text {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #6F6C90;
  line-height: 1.65;
  margin: 0;
}
.hero__chat-btn {
  display: block;
  padding: 11px 20px;
  margin-left: 78px;
  background: #D1914C;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(85, 72, 255, 0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, all 0.3s ease;
}
.hero__chat-btn:hover {
  background: #BD7A32;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(85, 72, 255, 0.45);
}
.hero__chat-fab {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: #D1914C;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(85, 72, 255, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (max-width: 1024px) {
  .hero__chat-fab {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .hero__chat-fab {
    width: 40px;
    height: 40px;
  }
}
.hero__chat-fab img {
  max-width: 33px;
}
@media (max-width: 1024px) {
  .hero__chat-fab img {
    max-width: 25px;
  }
}
@media (max-width: 767px) {
  .hero__chat-fab img {
    max-width: 20px;
  }
}
.hero__chat-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 32px rgba(85, 72, 255, 0.55);
}
.hero__chat-close {
  position: absolute;
  top: 5px;
  right: 15px;
  width: 25px;
  height: 25px;
  border: none;
  border-radius: 50%;
  background: inherit;
  color: #1a1a3f;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
}
.hero__indicators {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  border: 1px solid #1D4989;
  padding: 15px 10px;
  border-radius: 50px;
  gap: 0.75rem;
  z-index: 3;
}
@media (max-width: 767px) {
  .hero__indicators {
    display: none;
  }
}
.hero__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero__dot.is-active {
  border: 2px solid #1D4989;
  transform: scale(1.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.partners {
  position: relative;
  z-index: 5;
  margin-top: -135px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.partners.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .partners {
    margin-top: -115px;
  }
}
@media (max-width: 767px) {
  .partners {
    margin-top: -185px;
  }
}
.partners__bar {
  width: 100%;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
  background: #ffffff;
  border: 0.5px solid #BDC5D2;
  border-radius: 10px;
  box-shadow: 0 16px 48px rgba(56, 62, 75, 0.18);
  padding: 1.75rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  height: 155px;
}
@media (max-width: 1024px) {
  .partners__bar {
    height: 100px;
  }
}
@media (max-width: 767px) {
  .partners__bar {
    height: 80px;
  }
}
@media (max-width: 767px) {
  .partners__bar {
    justify-content: center;
    padding: 1.5rem;
  }
}
.partners__bar .swiper {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.partners__bar .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 115px;
}
@media (max-width: 1024px) {
  .partners__bar .swiper .swiper-wrapper .swiper-slide {
    height: 70px;
  }
}
.partners__bar .swiper-button-next,
.partners__bar .swiper-button-prev {
  color: #11335F;
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .partners__bar .swiper-button-next,
  .partners__bar .swiper-button-prev {
    top: 54px;
  }
}
.partners__bar .swiper-button-next:hover,
.partners__bar .swiper-button-prev:hover {
  color: #11335F;
}
.partners__bar .swiper-button-next::after,
.partners__bar .swiper-button-prev::after {
  font-size: 14px;
  font-weight: 500;
}
.partners__bar .swiper-button-next {
  right: -10px;
}
.partners__bar .swiper-button-prev {
  left: -10px;
}
.partners__logo {
  max-height: 115px;
  opacity: 0.9;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
@media (max-width: 1024px) {
  .partners__logo {
    max-height: 70px;
  }
}
@media (max-width: 767px) {
  .partners__logo {
    max-height: 50px;
  }
}
.partners__logo:hover {
  opacity: 1;
}

.services {
  position: relative;
  padding: 75px 0 100px;
  background: #ffffff;
  z-index: 9;
}
@media (max-width: 1024px) {
  .services {
    padding: 35px 0 50px;
  }
}
@media (max-width: 767px) {
  .services {
    padding: 15px 0 30px;
  }
}
.services__header {
  width: 100%;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: end;
}
@media (max-width: 767px) {
  .services__header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .services__header {
    gap: 0.75rem;
  }
}
.services__intro {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.services__intro.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.services__desc {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.15s;
  font-size: 18px;
  line-height: 1.5;
}
.services__desc.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .services__desc {
    justify-self: start;
  }
}
.services__grid {
  width: 100%;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .services__grid {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.services__card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 482px;
  overflow: hidden;
  border-radius: 30px;
  overflow: hidden;
}
.services__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.services__card--featured .services__card-icon {
  background: rgba(255, 255, 255, 0.15);
}
.services__card--featured .services__card-title,
.services__card--featured .services__card-text,
.services__card--featured .services__card-link {
  color: #ffffff;
  position: relative;
  z-index: 2;
}
.services__card--featured .services__card-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 0.5rem 0 1rem;
}
.services__card--featured .services__card-link {
  display: inline-flex;
}
.services__card--featured .services__card-cursor {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.services__card--image {
  background: #11335F;
}
.services__card--image .services__card-overlay {
  position: absolute;
  inset: 0;
  background: #11335F;
  z-index: 1;
  transition: background 0.45s ease, opacity 0.45s ease;
}
.services__card--image .services__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s ease, opacity 0.45s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.services__card--image .services__card-content {
  position: relative;
  z-index: 2;
}
.services__card--image .services__card-title {
  color: #ffffff;
  margin-bottom: 0;
  transition: margin-bottom 0.35s ease;
}
.services__card--image .services__card-hidden {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(20px);
}
.services__card--image .services__card-text {
  color: #ffffff;
  margin-bottom: 50px;
}
.services__card--image .services__card-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  padding: 0 30px 5px 0;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .services__card--image .services__card-link {
    font-size: 16px;
    padding-right: 20px;
  }
}
.services__card--image .services__card-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transform: scaleX(100%);
  transform-origin: right;
  transition: transform 0.35s ease;
  display: block;
  opacity: 1;
}
.services__card--image .services__card-link::after {
  content: "";
  position: absolute;
  right: -65px;
  top: 50%;
  width: 55px;
  height: 55px;
  background: url(../../assets/images/arrow-icon.svg) no-repeat 100% 0;
  background-size: 95%;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .services__card--image .services__card-link::after {
    background-size: 80%;
    background-position: 100% 40%;
    right: -50px;
  }
}
.services__card--image .services__card-link-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  color: inherit;
  padding: 45px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  z-index: 1;
}
@media (max-width: 1024px) {
  .services__card--image .services__card-link-wrap {
    padding: 35px;
  }
}
.services__card--image .services__card-link-wrap::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  display: block;
  background: rgba(38, 123, 243, 0.2);
  opacity: 1;
  transition: opacity 0.35s ease;
}
.services__card--image .services__card-link-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 76.14%);
  opacity: 1;
  transition: opacity 0.35s ease;
}
.services__card--image .services__card-link-wrap:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(56, 62, 75, 0.18);
}
.services__card--image .services__card-link-wrap:hover::after {
  opacity: 0;
}
.services__card--image .services__card-icon {
  background: #ffffff;
  backdrop-filter: blur(4px);
  width: 76px;
  height: 76px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  padding: 10px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1024px) {
  .services__card--image .services__card-icon {
    width: 60px;
    height: 60px;
  }
}
.services__card--image .services__card-icon img {
  width: 42px;
  transition: all 0.35s ease-in-out;
}
.services__card--image:hover .services__card-overlay {
  background: #11335f;
}
.services__card--image:hover .services__card-bg {
  transform: scale(1.08);
  opacity: 0;
}
.services__card--image:hover .services__card-title {
  margin-bottom: 18px;
}
.services__card--image:hover .services__card-hidden {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}
.services__card--image:hover .services__card-icon {
  position: relative;
  overflow: hidden;
  background: transparent;
}
.services__card--image:hover .services__card-icon img {
  position: relative;
  width: 76px;
  z-index: 1;
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease, transform 0.35s ease;
}
.services__card--image:hover .services__card-arrow-icon {
  display: none;
}
.services__card__card {
  isolation: isolate;
}
.services__card-arrow-icon {
  position: relative;
  left: -8px;
  z-index: 2;
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 20px;
}
.services__card-arrow-icon img {
  width: 60px;
}
@media (max-width: 767px) {
  .services__card-arrow-icon img {
    width: 50px;
  }
}
.services__card-title {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .services__card-title {
    font-size: 20px;
  }
}
.services__card-text {
  font-size: 16px;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}
.services__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.services__card-link:hover {
  gap: 0.6rem;
}
.services__card-cursor {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: #c94b4b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  animation: pulse 2s ease infinite;
}
.services__card-cursor svg {
  width: 18px;
  color: #ffffff;
}
.services__footer {
  width: 100%;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.services__footer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services__card--image a {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
.projects {
  position: relative;
  padding: 80px 0;
  background: #E8E8E8;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .projects {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .projects {
    padding: 30px 0;
    border-radius: 30px;
  }
}
.projects__blob {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: #11335F;
  border-radius: 60% 40% 55% 45%/50% 60% 40% 50%;
  opacity: 0.85;
  animation: blobMorph 12s ease-in-out infinite;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .projects__blob {
    top: -50px;
    right: -100px;
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 767px) {
  .projects__blob {
    top: -90px;
    right: -90px;
    width: 200px;
    height: 200px;
  }
}
.projects__header {
  width: 100%;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .projects__header {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767px) {
  .projects__header {
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .projects__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.projects__intro {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 45%;
}
.projects__intro.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .projects__intro {
    width: 100%;
  }
}
.projects__view-all {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: 18px;
  margin-right: 50px;
}
.projects__view-all.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .projects__view-all {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .projects__view-all {
    color: #11335F;
    font-size: 15px;
    margin-right: 0;
  }
}
.projects__view-all::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: #ffffff;
  display: block;
}
@media (max-width: 767px) {
  .projects__view-all::after {
    background: #11335F;
  }
}
.projects__view-all:hover {
  gap: 0.75rem;
}
.projects__view-all:hover::after {
  width: 0;
  transition: all 0.2s ease;
}
.projects__slider-wrap {
  width: 100%;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-right: calc(50% - 50vw);
}
.projects__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 767px) {
  .projects__track {
    padding-top: 15px;
  }
}
.projects__card {
  flex: 0 0 min(100%, 800px);
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.5;
}
.projects__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .projects__card {
    flex: 0 0 100%;
  }
}
.projects__card.active {
  opacity: 1;
}
.projects__image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .projects__image {
    height: 300px;
  }
}
.projects__body {
  padding: 1.75rem 2rem 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  opacity: 0;
}
@media (max-width: 767px) {
  .projects__body {
    flex-direction: column;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
.projects__info {
  flex: 1;
}
@media (max-width: 767px) {
  .projects__info {
    padding-bottom: 8px;
  }
}
.projects__title {
  margin-bottom: 0.5rem;
}
.projects__controls {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  position: absolute;
  top: 520px;
  right: 80px;
}
@media (max-width: 1024px) {
  .projects__controls {
    top: 350px;
  }
}
@media (max-width: 767px) {
  .projects__controls {
    top: 0;
    right: 20px;
  }
}
.projects__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #BDC5D2;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
@media (max-width: 1024px) {
  .projects__arrow {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 767px) {
  .projects__arrow {
    width: 30px;
    height: 30px;
  }
}
.projects__arrow:hover {
  background: #383E4B;
  border-color: #383E4B;
  color: #ffffff;
  transform: scale(1.05);
}
.projects__arrow svg {
  width: 18px;
  height: 18px;
}
.projects__peek {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 280px;
  background: #ffffff;
  border-radius: 24px 0 0 24px;
  opacity: 0.5;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .projects__peek {
    display: none;
  }
}
.projects__card.active .projects__body {
  opacity: 1;
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes blobMorph {
  0%, 100% {
    border-radius: 60% 40% 55% 45%/50% 60% 40% 50%;
  }
  33% {
    border-radius: 45% 55% 40% 60%/55% 45% 55% 45%;
  }
  66% {
    border-radius: 55% 45% 60% 40%/40% 55% 45% 55%;
  }
}
.stats {
  padding: 100px 0;
  background: #ffffff;
}
@media (max-width: 1024px) {
  .stats {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .stats {
    padding: 30px 0;
  }
}
.stats__grid {
  width: 100%;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }
}
.stats__card {
  border-right: 1px solid #BDC5D2;
  padding: 0 80px 0 0;
  margin-left: 30px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.stats__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .stats__card {
    padding: 0 20px 0 0;
    margin-left: 5px;
  }
}
@media (max-width: 767px) {
  .stats__card {
    padding: 0;
    margin-left: 0;
    border-right: none;
  }
}
.stats__card:first-child {
  margin-left: 0;
}
.stats__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(56, 62, 75, 0.12);
}
.stats__card:last-child {
  border-right: none;
  padding-right: 0;
}
.stats__number {
  font-size: 70px;
  font-weight: 700;
  color: #11335F;
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .stats__number {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .stats__number {
    font-size: 35px;
  }
}
.stats__number span {
  color: #11335F;
}
.stats__label {
  font-size: 24px;
  color: #11335F;
  font-weight: 500;
}
.stats__icon {
  position: absolute;
  top: 5px;
  right: 60px;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .stats__icon {
    width: 35px;
    top: 3px;
    right: 25px;
  }
}
@media (max-width: 767px) {
  .stats__icon {
    width: 30px;
    top: 1px;
    right: 0;
  }
}
.stats__icon:last-child {
  right: 10px;
}
.stats__card:last-child .stats__icon {
  right: 10px;
}

.contact {
  padding: 100px 0;
  background: #E8E8E8;
}
@media (max-width: 1024px) {
  .contact {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .contact {
    padding: 30px 0;
  }
}
.contact__wrapper {
  width: 100%;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__wrapper.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.contact__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-radius: 30px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #C0A486;
}
@media (max-width: 1024px) {
  .contact__card {
    grid-template-columns: 1fr;
  }
}
.contact__info {
  position: relative;
  background: #11335F;
  padding: 80px;
  color: #ffffff;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media (max-width: 1280px) {
  .contact__info {
    padding: 50px;
  }
}
@media (max-width: 1024px) {
  .contact__info {
    border-bottom-right-radius: 0;
  }
}
@media (max-width: 767px) {
  .contact__info {
    padding: 25px;
  }
}
.contact__info::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: block;
  background: rgba(38, 123, 243, 0.2);
  opacity: 1;
  transition: opacity 0.35s ease;
}
@media (max-width: 767px) {
  .contact__info::before {
    width: 200px;
    height: 200px;
    top: -80px;
    left: -80px;
  }
}
.contact__info h2 {
  color: #ffffff;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .contact__info h2 {
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .contact__info h2 br {
    display: none;
  }
}
.contact__item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .contact__item {
    margin-bottom: 20px;
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .contact__item {
    margin-bottom: 15px;
    gap: 1rem;
  }
}
.contact__item:last-child {
  margin-bottom: 0;
}
.contact__icon {
  width: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .contact__icon {
    width: 40px;
  }
}
@media (max-width: 767px) {
  .contact__icon {
    width: 30px;
  }
}
.contact__label {
  font-size: 12px;
  opacity: 0.75;
  margin-bottom: 0.15rem;
}
.contact__value {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  word-break: break-word;
}
@media (max-width: 767px) {
  .contact__value {
    font-size: 16px;
  }
}
.contact__form-wrap {
  padding: 80px;
}
@media (max-width: 1280px) {
  .contact__form-wrap {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .contact__form-wrap {
    padding: 30px;
  }
}
.contact__form-wrap h2 {
  margin-bottom: 35px;
}
@media (max-width: 1024px) {
  .contact__form-wrap h2 {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .contact__form-wrap h2 {
    margin-bottom: 15px;
  }
}
.contact__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}
@media (max-width: 479px) {
  .contact__form {
    grid-template-columns: 1fr;
  }
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact__field--full {
  grid-column: 1/-1;
}
.contact__field input,
.contact__field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(209, 145, 76, 0.1);
  border-radius: 8px;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  box-shadow: 0px 2px 2px 0px rgba(72, 80, 88, 0.28);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact__field input:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: #383E4B;
  box-shadow: 0 0 0 3px rgba(56, 62, 75, 0.1);
}
.contact__field input.is-invalid,
.contact__field textarea.is-invalid {
  border-color: #c94b4b;
}
.contact__field textarea {
  height: 110px;
}
@media (max-width: 767px) {
  .contact__field textarea {
    height: 80px;
  }
}
.contact__field .error-msg {
  font-size: 12px;
  color: #c94b4b;
  display: none;
}
.contact__field .error-msg.is-visible {
  display: block;
}
.contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 17px 32px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  background: #D1914C;
  color: #ffffff;
  margin-top: 20px;
  grid-column: 1/-1;
  justify-self: start;
}
@media (max-width: 1024px) {
  .contact__submit {
    padding: 12px 25px;
  }
}
@media (max-width: 767px) {
  .contact__submit {
    font-size: 15px;
    padding: 10px 20px;
  }
}
.contact__submit:hover {
  background: #25AAE1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56, 62, 75, 0.12);
}
@media (max-width: 767px) {
  .contact__submit {
    margin-top: 10px;
  }
}
.contact__success {
  display: none;
  padding: 1rem;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 1rem;
}
.contact__success.is-visible {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.footer {
  background: #E8E8E8;
}
.footer__container {
  background: #ffffff;
  padding: 100px 0 50px;
  border-top-left-radius: 70px;
  border-top-right-radius: 70px;
}
@media (max-width: 1024px) {
  .footer__container {
    padding: 50px 0 20px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }
}
@media (max-width: 767px) {
  .footer__container {
    padding: 30px 0 10px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
}
.footer__top {
  width: 100%;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  text-align: center;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__top.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .footer__top {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .footer__top {
    margin-bottom: 25px;
  }
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 25px;
}
@media (max-width: 1024px) {
  .footer__logo {
    max-width: 160px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .footer__logo {
    max-width: 140px;
    margin-bottom: 15px;
  }
}
.footer__logo-text {
  font-weight: 700;
  color: #383E4B;
  font-size: 18px;
}
.footer__tagline {
  max-width: 950px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .footer__tagline {
    font-size: 14px;
  }
}
.footer__nav {
  width: 100%;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  text-align: center;
}
.footer__nav ul {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 50px;
  padding: 20px 65px;
  background: #EEF3FA;
  border-radius: 80px;
}
@media (max-width: 1024px) {
  .footer__nav ul {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .footer__nav ul {
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 15px 10px 5px;
    justify-content: center;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .footer__nav ul li {
    margin: 0 10px 10px;
  }
}
.footer__nav ul li a {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #11335F;
  transition: color 0.2s ease;
}
@media (max-width: 1024px) {
  .footer__nav ul li a {
    font-size: 14px;
  }
}
.footer__nav ul li a:hover {
  color: #D1914C;
}
.footer__columns {
  width: 100%;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .footer__columns {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer__col {
  border-right: 1px solid #11335F;
  padding: 0 30px;
  text-align: center;
}
.footer__col:last-child {
  border-right: none;
}
@media (max-width: 1024px) {
  .footer__col {
    margin-bottom: 40px;
  }
  .footer__col:nth-child(2n) {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .footer__col {
    border-right: none;
    padding: 0;
    margin-bottom: 20px;
  }
}
.footer__col-title {
  font-size: 18px;
  margin-bottom: 0.75rem;
  text-align: center;
}
.footer__col-text {
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .footer__col-text {
    font-size: 14px;
  }
}
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer__social {
    justify-content: center;
  }
}
.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #032E42;
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.footer__social-link:hover {
  background: #383E4B;
  transform: translateY(-3px);
}
.footer__social-link.linkedin {
  background: #D83030;
}
.footer__social-link.linkedin:hover {
  background: #c94b4b;
}
.footer__copyright {
  width: 100%;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .footer__copyright {
    font-size: 14px;
  }
}

/*# sourceMappingURL=main.css.map */
