@charset "UTF-8";
.main-content {
  padding-top: 95px;
}

.content-pad {
  padding: 0 50px;
}

body {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
body.loaded {
  opacity: 1;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.card-1.animate-on-scroll {
  transition-delay: 0.1s;
}

.card-2.animate-on-scroll {
  transition-delay: 0.15s;
}

.list-points .item.animate-on-scroll:nth-child(1) {
  transition-delay: 0.1s;
}
.list-points .item.animate-on-scroll:nth-child(2) {
  transition-delay: 0.2s;
}
.list-points .item.animate-on-scroll:nth-child(3) {
  transition-delay: 0.3s;
}
.list-points .item.animate-on-scroll:nth-child(4) {
  transition-delay: 0.4s;
}

@media (max-width: 991.98px) {
  .main-content {
    padding-top: 95px;
  }
  .content-pad {
    padding: 0 20px;
  }
  .animate-on-scroll {
    transform: translateY(20px);
  }
}
header {
  z-index: 1000;
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid rgba(42, 92, 121, 0.1);
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2a5c79 0%, rgba(42, 92, 121, 0.6) 50%, #2a5c79 100%);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}
header.scrolled {
  padding: 8px 40px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}
header .logo-container {
  display: block;
  width: 200px;
  height: 75px;
}
header .logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
header .logo-container {
  transition: transform 0.3s ease-in-out;
}
header .logo-container:hover {
  transform: scale(1.05);
}
header .nav-container ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
header .nav-container ul li.nav-item {
  position: relative;
  transition: all 0.3s ease-in-out;
}
header .nav-container ul li.nav-item a.nav-link {
  color: #7d7a89;
  font-size: 16px;
  padding: 8px 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  position: relative;
  display: inline-block;
}
header .nav-container ul li.nav-item::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #2a5c79, rgba(42, 92, 121, 0.7));
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
header .nav-container ul li.nav-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: rgba(42, 92, 121, 0.08);
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
  z-index: -1;
}
header .nav-container ul li.nav-item:hover::after, header .nav-container ul li.nav-item.active::after {
  width: 80%;
}
header .nav-container ul li.nav-item:hover::before, header .nav-container ul li.nav-item.active::before {
  transform: translate(-50%, -50%) scale(1);
}
header .nav-container ul li.nav-item:hover a.nav-link, header .nav-container ul li.nav-item.active a.nav-link {
  color: #2a5c79;
  transform: translateY(-2px);
}
header .nav-container ul li.nav-item.active::after {
  width: 80%;
}
header #mobile_menu_btn_open {
  border-radius: 10px;
  padding: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(42, 92, 121, 0.2);
  cursor: pointer;
  background: linear-gradient(135deg, rgba(42, 92, 121, 0.1), rgba(42, 92, 121, 0.05));
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
header #mobile_menu_btn_open::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(42, 92, 121, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
}
header #mobile_menu_btn_open:hover {
  border-color: #2a5c79;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(42, 92, 121, 0.2);
}
header #mobile_menu_btn_open:hover::before {
  width: 100%;
  height: 100%;
}
header #mobile_menu_btn_open:active {
  transform: scale(0.95);
}
header #mobile_menu_btn_open svg {
  color: #2a5c79;
  width: 28px !important;
  height: 28px !important;
  transition: transform 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}
header #mobile_menu_btn_open:hover svg {
  transform: rotate(90deg);
}
header #mobile_menu_btn_open {
  display: none;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@media (max-width: 991.98px) {
  header {
    padding: 10px 20px;
  }
  header.scrolled {
    padding: 8px 20px;
  }
  header .nav-container {
    display: none;
  }
  header #mobile_menu_btn_open {
    display: block;
  }
}
footer {
  background: linear-gradient(135deg, #2a5c79 0%, rgb(31.4871165644, 68.9717791411, 90.7128834356) 100%);
  padding: 60px 50px 30px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
}
footer .footer-paragraph {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}
footer .main-text-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
footer .main-text-wrapper .main-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 700px;
}
footer .main-text-wrapper .main-text-container h6 {
  color: #ffffff;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: center;
}
footer .main-text-wrapper .main-text-container p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.6;
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 50px;
}
footer .footer-logo-section {
  flex: 1;
  max-width: 300px;
}
footer .footer-logo-section .logo-container {
  display: block;
  width: 200px;
  height: 75px;
}
footer .footer-logo-section .logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
footer .footer-logo-section .logo-container {
  margin-bottom: 20px;
  display: inline-block;
}
footer .footer-logo-section .footer-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}
footer .footer-columns {
  display: flex;
  gap: 60px;
  flex: 2;
  justify-content: flex-end;
}
footer .footer-column .col-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
footer .footer-column .col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
}
footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-column .footer-item {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  transition: all 0.3s ease-in-out;
}
footer .footer-column .footer-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
footer .footer-column .footer-item a:hover {
  color: #ffffff;
  transform: translateX(3px);
}
footer .footer-column .footer-item:not(:last-child) {
  margin-bottom: 8px;
}
footer .footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

@media (max-width: 991.98px) {
  footer {
    padding: 40px 20px 20px;
  }
  footer .footer-paragraph {
    font-size: 13px;
  }
  footer .main-text-wrapper {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
  footer .main-text-wrapper .main-text-container h6 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  footer .main-text-wrapper .main-text-container p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  footer .footer-content {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }
  footer .footer-logo-section {
    max-width: 100%;
    text-align: center;
  }
  footer .footer-logo-section .logo-container {
    margin-bottom: 15px;
  }
  footer .footer-logo-section .footer-description {
    font-size: 13px;
  }
  footer .footer-columns {
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }
  footer .footer-column .col-title {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
  }
  footer .footer-column .col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  footer .footer-column ul {
    text-align: center;
  }
  footer .footer-column .footer-item {
    font-size: 13px;
  }
  footer .footer-column .footer-item:not(:last-child) {
    margin-bottom: 6px;
  }
  footer .footer-bottom {
    padding-top: 20px;
  }
  footer .footer-bottom p {
    font-size: 12px;
  }
}
#mobile_menu {
  padding: 40px;
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 236, 236, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10000;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 12px 0 40px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}
#mobile_menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #2a5c79 0%, rgba(42, 92, 121, 0.5) 50%, #2a5c79 100%);
  animation: slideDown 2s ease-in-out infinite;
}
#mobile_menu.open {
  left: 0;
}
#mobile_menu.open .menu-content .mobile-menu-logo {
  animation: fadeInDown 0.5s ease-out 0.1s both;
}
#mobile_menu.open .menu-content .mobile-menu-links .mobile-menu-item:nth-child(1) {
  animation: fadeInLeft 0.5s ease-out 0.2s both;
}
#mobile_menu.open .menu-content .mobile-menu-links .mobile-menu-item:nth-child(2) {
  animation: fadeInLeft 0.5s ease-out 0.3s both;
}
#mobile_menu.open .menu-content .mobile-menu-links .mobile-menu-item:nth-child(3) {
  animation: fadeInLeft 0.5s ease-out 0.4s both;
}
#mobile_menu.open .menu-content .mobile-menu-links .mobile-menu-item:nth-child(4) {
  animation: fadeInLeft 0.5s ease-out 0.5s both;
}
#mobile_menu.open .menu-content .mobile-menu-links .mobile-menu-item:nth-child(5) {
  animation: fadeInLeft 0.5s ease-out 0.6s both;
}
#mobile_menu.open .menu-content .mobile-menu-links .mobile-menu-item:nth-child(6) {
  animation: fadeInLeft 0.5s ease-out 0.7s both;
}
#mobile_menu.open .menu-content .mobile-menu-links .mobile-menu-item:nth-child(7) {
  animation: fadeInLeft 0.5s ease-out 0.8s both;
}
#mobile_menu.open .menu-content .mobile-menu-links .mobile-menu-item:nth-child(8) {
  animation: fadeInLeft 0.5s ease-out 0.9s both;
}
#mobile_menu.open .menu-content .mobile-menu-links .mobile-menu-item:nth-child(9) {
  animation: fadeInLeft 0.5s ease-out 1s both;
}
#mobile_menu.open .menu-content .mobile-menu-links .mobile-menu-item:nth-child(10) {
  animation: fadeInLeft 0.5s ease-out 1.1s both;
}
#mobile_menu #mobile_menu_btn_close {
  border: 2px solid rgba(42, 92, 121, 0.2);
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, rgba(42, 92, 121, 0.1), rgba(42, 92, 121, 0.05));
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
#mobile_menu #mobile_menu_btn_close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(42, 92, 121, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
}
#mobile_menu #mobile_menu_btn_close:hover {
  border-color: #2a5c79;
  transform: rotate(90deg) scale(1.05);
  box-shadow: 0 4px 12px rgba(42, 92, 121, 0.2);
}
#mobile_menu #mobile_menu_btn_close:hover::before {
  width: 100%;
  height: 100%;
}
#mobile_menu #mobile_menu_btn_close:active {
  transform: rotate(90deg) scale(0.95);
}
#mobile_menu #mobile_menu_btn_close svg {
  color: #2a5c79;
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}
#mobile_menu .menu-content .mobile-menu-logo {
  display: block;
  width: 200px;
  height: 75px;
}
#mobile_menu .menu-content .mobile-menu-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#mobile_menu .menu-content .mobile-menu-logo {
  margin-bottom: 50px;
  opacity: 0;
}
#mobile_menu .menu-content .mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#mobile_menu .menu-content .mobile-menu-links .mobile-menu-item {
  opacity: 0;
  position: relative;
}
#mobile_menu .menu-content .mobile-menu-links .mobile-menu-item a {
  text-decoration: none;
  color: #7d7a89;
  font-weight: 500;
  font-size: 18px;
  padding: 16px 20px;
  display: block;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
#mobile_menu .menu-content .mobile-menu-links .mobile-menu-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 70%;
  background: linear-gradient(90deg, #2a5c79, rgba(42, 92, 121, 0.5));
  border-radius: 0 4px 4px 0;
  transition: width 0.3s ease-in-out;
}
#mobile_menu .menu-content .mobile-menu-links .mobile-menu-item a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 92, 121, 0.05);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}
#mobile_menu .menu-content .mobile-menu-links .mobile-menu-item a span {
  position: relative;
  z-index: 1;
}
#mobile_menu .menu-content .mobile-menu-links .mobile-menu-item:hover a {
  color: #2a5c79;
  transform: translateX(8px);
  background: rgba(42, 92, 121, 0.08);
}
#mobile_menu .menu-content .mobile-menu-links .mobile-menu-item:hover a::before {
  width: 4px;
}
#mobile_menu .menu-content .mobile-menu-links .mobile-menu-item:hover a::after {
  transform: translateX(0);
}
#mobile_menu .menu-content .mobile-menu-links .mobile-menu-item.active a {
  color: #2a5c79;
  font-weight: 700;
  background: rgba(42, 92, 121, 0.12);
  box-shadow: 0 2px 8px rgba(42, 92, 121, 0.15);
}
#mobile_menu .menu-content .mobile-menu-links .mobile-menu-item.active a::before {
  width: 4px;
}

@keyframes slideDown {
  0%, 100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
#menu_backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
#menu_backdrop.open {
  opacity: 1;
  visibility: visible;
}

.btn-1 {
  display: block;
  text-decoration: none;
  padding: 10px 30px;
  background-color: #2a5c79;
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
  font-size: 16px;
}
.btn-1:hover {
  background-color: transparent;
  color: #2a5c79;
  border-color: #2a5c79;
}
.btn-1.light {
  background-color: #ffffff;
  color: #2a5c79;
  border-color: #ffffff;
}
.btn-1.light:hover {
  background-color: #ffffff;
  color: #2a5c79;
  border-color: #ffffff;
}
.btn-1.outlined {
  background-color: transparent;
  color: #2a5c79;
  border-color: #2a5c79;
}
.btn-1.outlined:hover {
  background-color: #2a5c79;
  color: #ffffff;
  border-color: #2a5c79;
}

@media (max-width: 991.98px) {
  .btn-1 {
    padding: 8px 20px;
    font-size: 14px;
  }
}
.card-1 {
  padding: 40px;
  border: 1px solid #999fa6;
  border-radius: 12px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.card-1:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(42, 92, 121, 0.15);
  border-color: #2a5c79;
}
.card-1 svg {
  width: 48px;
  height: 48px;
  color: #2a5c79;
  margin-bottom: 30px;
  transition: transform 0.3s ease-in-out;
}
.card-1:hover svg {
  transform: scale(1.1);
}
.card-1 .card-title {
  color: #2a5c79;
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.card-1 .card-subtitle {
  color: #7d7a89;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.card-1 ul.card-list li {
  color: #7d7a89;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
  list-style: none;
}
.card-1 ul.card-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2a5c79;
  font-weight: 700;
}
.card-1 ul.card-list li:not(:last-child) {
  margin-bottom: 12px;
}

.card-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  border-radius: 16px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.card-2:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(42, 92, 121, 0.12);
}
.card-2 .image-container {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 25px;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.card-2 .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  border: 4px solid #ffffff;
}
.card-2 .image-container .card-badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.card-2:hover .image-container {
  transform: scale(1.05);
}
.card-2 .card-title {
  color: #2a5c79;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}
.card-2 .card-subtitle {
  color: #7d7a89;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.4;
}
.card-2 .card-description {
  color: #7d7a89;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.6;
}
.card-2 .linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #0077b5, #005582);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 8px rgba(0, 119, 181, 0.2);
}
.card-2 .linkedin-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.card-2 .linkedin-link:hover {
  background: linear-gradient(135deg, #005582, #003d5c);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
  color: #ffffff;
}
.card-2 .linkedin-link:active {
  transform: translateY(0);
}

.badge-1 {
  padding: 8px 24px;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 500;
}
.badge-1.primary {
  background-color: #2a5c79;
  color: #ffffff;
}
.badge-1.secondary {
  background-color: #ececec;
  color: #2a5c79;
}

.badge-2 {
  padding: 2px 22px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}
.badge-2.primary {
  background-color: #2a5c79;
  color: #ffffff;
}
.badge-2.secondary {
  background-color: #ececec;
  color: #2a5c79;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 236, 236, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.preloader .preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.preloader .preloader-logo {
  width: 180px;
  height: auto;
  animation: logoFloat 2s ease-in-out infinite;
}
.preloader .preloader-spinner {
  position: relative;
  width: 60px;
  height: 60px;
}
.preloader .preloader-spinner .spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: #2a5c79;
  border-radius: 50%;
  animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.preloader .preloader-spinner .spinner-ring:nth-child(1) {
  animation-delay: -0.45s;
}
.preloader .preloader-spinner .spinner-ring:nth-child(2) {
  animation-delay: -0.3s;
  border-top-color: rgba(42, 92, 121, 0.6);
}
.preloader .preloader-spinner .spinner-ring:nth-child(3) {
  animation-delay: -0.15s;
  border-top-color: rgba(42, 92, 121, 0.3);
}
.preloader .preloader-text {
  font-size: 16px;
  font-weight: 500;
  color: #2a5c79;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite;
}
.preloader .preloader-dots {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.preloader .preloader-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2a5c79;
  animation: dotBounce 1.4s ease-in-out infinite;
}
.preloader .preloader-dots .dot:nth-child(1) {
  animation-delay: -0.32s;
}
.preloader .preloader-dots .dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes dotBounce {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
#home_page .banner-section {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e8f4f8 50%, #f0f7fa 100%);
  position: relative;
  min-height: 650px;
  padding: 100px 0;
  margin-bottom: 50px;
  overflow: hidden;
}
#home_page .banner-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(42, 92, 121, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  animation: pulse-slow 8s ease-in-out infinite;
}
#home_page .banner-section::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(42, 92, 121, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  animation: pulse-slow 10s ease-in-out infinite reverse;
}
#home_page .banner-section .animated-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
#home_page .banner-section .animated-shapes .shape {
  position: absolute;
  opacity: 0.15;
}
#home_page .banner-section .animated-shapes .shape.shape-1 {
  top: 15%;
  left: 10%;
  width: 60px;
  height: 60px;
  border: 3px solid #2a5c79;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
#home_page .banner-section .animated-shapes .shape.shape-2 {
  top: 60%;
  left: 5%;
  width: 40px;
  height: 40px;
  background: #2a5c79;
  border-radius: 8px;
  animation: float 8s ease-in-out infinite reverse;
  transform: rotate(45deg);
}
#home_page .banner-section .animated-shapes .shape.shape-3 {
  top: 25%;
  right: 15%;
  width: 80px;
  height: 80px;
  border: 3px solid #2a5c79;
  border-radius: 12px;
  animation: spin-slow 20s linear infinite;
}
#home_page .banner-section .animated-shapes .shape.shape-4 {
  bottom: 20%;
  right: 8%;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(42, 92, 121, 0.3), rgba(42, 92, 121, 0.1));
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
}
#home_page .banner-section .animated-shapes .shape.shape-5 {
  top: 70%;
  left: 20%;
  width: 30px;
  height: 30px;
  border: 2px solid #2a5c79;
  animation: float 5s ease-in-out infinite reverse;
}
#home_page .banner-section .animated-shapes .shape.shape-6 {
  top: 10%;
  right: 30%;
  width: 25px;
  height: 25px;
  background: #2a5c79;
  border-radius: 50%;
  animation: pulse-slow 4s ease-in-out infinite;
}
#home_page .banner-section .banner-content-container {
  align-items: center;
  position: relative;
  z-index: 1;
  padding-left: 40px;
}
#home_page .banner-section .banner-content-container .banner-text {
  margin-bottom: 40px;
  padding-right: 40px;
  animation: fadeInUp 0.8s ease-out;
}
#home_page .banner-section .banner-content-container .banner-text .banner-title {
  color: #2a5c79;
  font-weight: 700;
  font-size: 72px;
  margin-bottom: 30px;
  line-height: 1.1;
  position: relative;
  display: inline-block;
}
#home_page .banner-section .banner-content-container .banner-text .banner-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #2a5c79, rgba(42, 92, 121, 0.5));
  border-radius: 3px;
  animation: expandWidth 0.8s ease-out 0.3s both;
}
#home_page .banner-section .banner-content-container .banner-text .banner-description {
  font-size: 22px;
  font-weight: 400;
  color: #7d7a89;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
#home_page .banner-section .banner-content-container .img-container {
  width: 100%;
  height: 440px;
  position: relative;
  z-index: 0;
}
#home_page .banner-section .banner-content-container .img-container::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(42, 92, 121, 0.1), rgba(42, 92, 121, 0.05));
  border-radius: 50%;
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}
#home_page .banner-section .banner-content-container .img-container::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(42, 92, 121, 0.08), rgba(42, 92, 121, 0.03));
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  z-index: -1;
  animation: float 8s ease-in-out infinite reverse;
}
#home_page .banner-section .banner-content-container .img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 20px 40px rgba(42, 92, 121, 0.2)) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
  animation: fadeInScale 0.8s ease-out;
}
#home_page .banner-section .banner-content-container .img-container img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 25px 50px rgba(42, 92, 121, 0.25)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
}
#home_page .banner-section .banner-content-container .img-container .overlay {
  position: absolute;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(42, 92, 121, 0.2), 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  z-index: 10;
  bottom: -60px;
  left: -120px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideInLeft 0.8s ease-out 0.3s both;
}
#home_page .banner-section .banner-content-container .img-container .overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #2a5c79, rgba(42, 92, 121, 0.5));
  border-radius: 16px 0 0 16px;
}
#home_page .banner-section .banner-content-container .img-container .overlay:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(42, 92, 121, 0.25), 0 6px 16px rgba(0, 0, 0, 0.1);
}
#home_page .banner-section .banner-content-container .img-container .overlay svg {
  color: #2a5c79;
  margin-right: 20px;
  width: 32px;
  height: 32px;
  padding: 6px;
  background: rgba(42, 92, 121, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}
#home_page .banner-section .banner-content-container .img-container .overlay:hover svg {
  transform: scale(1.1) rotate(5deg);
}
#home_page .banner-section .banner-content-container .img-container .overlay .overlay-text span:nth-child(1) {
  color: #2a5c79;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
#home_page .banner-section .banner-content-container .img-container .overlay .overlay-text span:nth-child(2) {
  color: #7d7a89;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
}
#home_page .services-section {
  margin-bottom: 80px;
}
#home_page .services-section .section-header {
  margin-bottom: 60px;
  text-align: center;
}
#home_page .services-section .section-header .section-title {
  color: #2a5c79;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 16px;
}
#home_page .services-section .section-header .section-subtitle {
  color: #7d7a89;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
}
#home_page .services-section .services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
#home_page .about-section {
  background-color: #ececec;
  padding: 80px 0;
}
#home_page .about-section .section-content .section-title {
  color: #2a5c79;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 50px;
  line-height: 1.2;
}
#home_page .about-section .section-content .list-points .item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 20px;
}
#home_page .about-section .section-content .list-points .item:not(:last-child) {
  margin-bottom: 32px;
}
#home_page .about-section .section-content .list-points .item .icon-container {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #2a5c79;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(42, 92, 121, 0.2);
  transition: all 0.3s ease-in-out;
}
#home_page .about-section .section-content .list-points .item .icon-container svg {
  color: #ffffff;
  width: 26px;
  height: 26px;
}
#home_page .about-section .section-content .list-points .item:hover .icon-container {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(42, 92, 121, 0.3);
}
#home_page .about-section .section-content .list-points .item .text-container .title {
  color: #2a5c79;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 8px;
  line-height: 1.3;
}
#home_page .about-section .section-content .list-points .item .text-container .description {
  color: #7d7a89;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}
@keyframes pulse-slow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.15;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.25;
  }
}
@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 1199.98px) {
  #home_page .services-section .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 991.98px) {
  #home_page .banner-section {
    min-height: auto;
    padding: 60px 0 100px;
    margin-bottom: 40px;
  }
  #home_page .banner-section::before {
    width: 300px;
    height: 300px;
    top: -10%;
    right: -5%;
  }
  #home_page .banner-section::after {
    width: 250px;
    height: 250px;
  }
  #home_page .banner-section .animated-shapes {
    display: none;
  }
  #home_page .banner-section .banner-content-container {
    padding-left: 0;
  }
  #home_page .banner-section .banner-content-container .banner-text {
    text-align: center;
    margin-bottom: 30px;
    padding-right: 0;
  }
  #home_page .banner-section .banner-content-container .banner-text .banner-title {
    font-size: 38px;
    margin-bottom: 25px;
  }
  #home_page .banner-section .banner-content-container .banner-text .banner-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
  }
  #home_page .banner-section .banner-content-container .banner-text .banner-description {
    font-size: 16px;
  }
  #home_page .banner-section .banner-content-container .img-container {
    height: 280px;
    margin-bottom: 80px;
  }
  #home_page .banner-section .banner-content-container .img-container::before {
    width: 80px;
    height: 80px;
    top: -10px;
    right: -10px;
  }
  #home_page .banner-section .banner-content-container .img-container::after {
    width: 70px;
    height: 70px;
    bottom: -15px;
    left: -15px;
  }
  #home_page .banner-section .banner-content-container .img-container img {
    border-radius: 12px;
  }
  #home_page .banner-section .banner-content-container .img-container .overlay {
    padding: 18px 22px;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 12px;
  }
  #home_page .banner-section .banner-content-container .img-container .overlay svg {
    margin-right: 12px;
    width: 26px;
    height: 26px;
  }
  #home_page .banner-section .banner-content-container .img-container .overlay .overlay-text span:nth-child(1) {
    font-size: 18px;
  }
  #home_page .banner-section .banner-content-container .img-container .overlay .overlay-text span:nth-child(2) {
    font-size: 12px;
  }
  #home_page .services-section {
    margin-bottom: 40px;
  }
  #home_page .services-section .section-header {
    margin-bottom: 40px;
  }
  #home_page .services-section .section-header .section-title {
    font-size: 36px;
  }
  #home_page .services-section .section-header .section-subtitle {
    font-size: 18px;
  }
  #home_page .services-section .services-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  #home_page .about-section {
    padding: 60px 0;
  }
  #home_page .about-section .section-content .section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
  }
  #home_page .about-section .section-content .list-points .item:not(:last-child) {
    margin-bottom: 28px;
  }
}
#team_page .hero-section {
  padding: 120px 30px;
  background-color: #ececec;
  margin-bottom: 80px;
  text-align: center;
}
#team_page .hero-section .page-title {
  font-size: 52px;
  font-weight: 700;
  color: #2a5c79;
  margin-bottom: 24px;
  line-height: 1.2;
}
#team_page .hero-section .page-subtitle {
  font-size: 22px;
  font-weight: 400;
  color: #7d7a89;
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
#team_page .team-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}
#team_page .about-company-section {
  padding: 80px 0;
  background: #ffffff;
}
#team_page .about-company-section .about-content {
  max-width: 100%;
  margin: 0 auto;
}
#team_page .about-company-section .about-content .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #2a5c79;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}
#team_page .about-company-section .about-content .section-description {
  font-size: 18px;
  font-weight: 400;
  color: #7d7a89;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
#team_page .about-company-section .about-content .sets-apart-title {
  font-size: 24px;
  font-weight: 600;
  color: #2a5c79;
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: left;
}
#team_page .about-company-section .about-content .sets-apart-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 60px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#team_page .about-company-section .about-content .sets-apart-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(42, 92, 121, 0.04), rgba(42, 92, 121, 0.01));
  border-left: 3px solid #2a5c79;
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}
#team_page .about-company-section .about-content .sets-apart-list li:hover {
  background: linear-gradient(135deg, rgba(42, 92, 121, 0.08), rgba(42, 92, 121, 0.03));
  transform: translateX(4px);
}
#team_page .about-company-section .about-content .sets-apart-list li strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #2a5c79;
  margin-bottom: 4px;
}
#team_page .about-company-section .about-content .sets-apart-list li span {
  font-size: 15px;
  font-weight: 400;
  color: #7d7a89;
  line-height: 1.6;
}
#team_page .about-company-section .about-content .about-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
#team_page .about-company-section .about-content .about-features .feature-item {
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.3s ease-in-out;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}
#team_page .about-company-section .about-content .about-features .feature-item:hover {
  transform: translateY(-5px);
}
#team_page .about-company-section .about-content .about-features .feature-item .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(42, 92, 121, 0.1), rgba(42, 92, 121, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
#team_page .about-company-section .about-content .about-features .feature-item .feature-icon svg {
  width: 40px;
  height: 40px;
  color: #2a5c79;
}
#team_page .about-company-section .about-content .about-features .feature-item:hover .feature-icon {
  background: linear-gradient(135deg, rgba(42, 92, 121, 0.15), rgba(42, 92, 121, 0.08));
  transform: scale(1.05);
}
#team_page .about-company-section .about-content .about-features .feature-item h3 {
  font-size: 22px;
  font-weight: 600;
  color: #2a5c79;
  margin-bottom: 15px;
}
#team_page .about-company-section .about-content .about-features .feature-item p {
  font-size: 15px;
  font-weight: 400;
  color: #7d7a89;
  line-height: 1.6;
  margin-bottom: 0;
}
#team_page .banner-section {
  padding: 100px 0;
  background-color: #ececec;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
#team_page .banner-section .section-content {
  width: 80%;
}
#team_page .banner-section .section-content .banner-title {
  font-size: 38px;
  font-weight: 700;
  color: #2a5c79;
  margin-bottom: 50px;
  line-height: 1.2;
}
#team_page .banner-section .section-content .items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}
#team_page .banner-section .section-content .items .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
#team_page .banner-section .section-content .items .item span:nth-child(1) {
  font-size: 56px;
  font-weight: 700;
  color: #2a5c79;
  line-height: 1;
}
#team_page .banner-section .section-content .items .item span:nth-child(2) {
  font-size: 16px;
  font-weight: 400;
  color: #7d7a89;
  line-height: 1.4;
}

@media (max-width: 1199.98px) {
  #team_page .team-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  #team_page .banner-section .section-content {
    width: 90%;
  }
}
@media (max-width: 991.98px) {
  #team_page .hero-section {
    padding: 80px 20px 60px;
  }
  #team_page .hero-section .page-title {
    font-size: 36px;
  }
  #team_page .hero-section .page-subtitle {
    font-size: 18px;
  }
  #team_page .about-company-section {
    padding: 60px 20px;
  }
  #team_page .about-company-section .about-content .section-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  #team_page .about-company-section .about-content .section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  #team_page .about-company-section .about-content .sets-apart-title {
    font-size: 20px;
    margin-bottom: 18px;
  }
  #team_page .about-company-section .about-content .sets-apart-list {
    margin-bottom: 40px;
    gap: 14px;
  }
  #team_page .about-company-section .about-content .sets-apart-list li {
    padding: 14px 16px;
  }
  #team_page .about-company-section .about-content .about-features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  #team_page .about-company-section .about-content .about-features .feature-item {
    padding: 20px 10px;
    min-width: 100%;
    max-width: 100%;
  }
  #team_page .about-company-section .about-content .about-features .feature-item .feature-icon {
    width: 70px;
    height: 70px;
  }
  #team_page .about-company-section .about-content .about-features .feature-item .feature-icon svg {
    width: 35px;
    height: 35px;
  }
  #team_page .about-company-section .about-content .about-features .feature-item h3 {
    font-size: 20px;
  }
  #team_page .about-company-section .about-content .about-features .feature-item p {
    font-size: 14px;
  }
  #team_page .team-section {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  #team_page .banner-section {
    padding: 80px 20px;
  }
  #team_page .banner-section .section-content {
    width: 100%;
  }
  #team_page .banner-section .section-content .banner-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  #team_page .banner-section .section-content .items {
    gap: 30px;
  }
  #team_page .banner-section .section-content .items .item {
    gap: 8px;
    min-width: 140px;
  }
  #team_page .banner-section .section-content .items .item span:nth-child(1) {
    font-size: 42px;
  }
  #team_page .banner-section .section-content .items .item span:nth-child(2) {
    font-size: 14px;
  }
}
#contact_page .hero-section {
  padding: 120px 30px 80px;
  background-color: #ececec;
  text-align: center;
}
#contact_page .hero-section .page-title {
  font-size: 52px;
  font-weight: 700;
  color: #2a5c79;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}
#contact_page .hero-section .page-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #7d7a89;
  margin-bottom: 0;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
#contact_page .contact-section {
  padding: 80px 50px;
}
#contact_page .contact-section .row {
  align-items: stretch;
}
#contact_page .contact-section .right-column {
  display: flex;
  flex-direction: column;
  gap: 26px;
  height: 100%;
}
#contact_page .contact-section .form-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(42, 92, 121, 0.1);
  height: 100%;
}
#contact_page .contact-section .form-card .form-title {
  font-size: 24px;
  font-weight: 600;
  color: #2a5c79;
  margin-bottom: 30px;
}
#contact_page .contact-section .form-card .form-group {
  margin-bottom: 20px;
}
#contact_page .contact-section .form-card .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #2a5c79;
  margin-bottom: 8px;
}
#contact_page .contact-section .form-card .form-group .form-label-main {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #2a5c79;
  margin-bottom: 12px;
}
#contact_page .contact-section .form-card .form-group .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 15px;
  color: #7d7a89;
  transition: all 0.3s ease;
  background-color: #ffffff;
}
#contact_page .contact-section .form-card .form-group .form-control:focus {
  outline: none;
  border-color: #2a5c79;
  box-shadow: 0 0 0 3px rgba(42, 92, 121, 0.1);
}
#contact_page .contact-section .form-card .form-group .form-control::placeholder {
  color: rgba(125, 122, 137, 0.5);
}
#contact_page .contact-section .form-card .form-group .form-control.is-invalid {
  border-color: #dc3545;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px 20px;
  padding-right: 40px;
}
#contact_page .contact-section .form-card .form-group .form-control.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}
#contact_page .contact-section .form-card .form-group .invalid-feedback {
  display: none;
  color: #dc3545;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
}
#contact_page .contact-section .form-card .form-group select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%232a5c79' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 12px;
  padding-right: 40px;
}
#contact_page .contact-section .form-card .form-group textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
#contact_page .contact-section .form-card .form-group .checkbox-group {
  background-color: #f8f9fa;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}
#contact_page .contact-section .form-card .form-group .checkbox-group .form-check {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
#contact_page .contact-section .form-card .form-group .checkbox-group .form-check:last-child {
  margin-bottom: 0;
}
#contact_page .contact-section .form-card .form-group .checkbox-group .form-check .form-check-input {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(42, 92, 121, 0.3);
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
  appearance: none;
  position: relative;
  accent-color: #2a5c79;
}
#contact_page .contact-section .form-card .form-group .checkbox-group .form-check .form-check-input:checked {
  background-color: #2a5c79;
  border-color: #2a5c79;
}
#contact_page .contact-section .form-card .form-group .checkbox-group .form-check .form-check-input:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}
#contact_page .contact-section .form-card .form-group .checkbox-group .form-check .form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(42, 92, 121, 0.1);
}
#contact_page .contact-section .form-card .form-group .checkbox-group .form-check .form-check-label {
  font-size: 14px;
  color: #495057;
  cursor: pointer;
  user-select: none;
  margin-bottom: 0;
}
#contact_page .contact-section .form-card #contact-submit-btn {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#contact_page .contact-section .form-card #contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
#contact_page .contact-section .form-card #contact-submit-btn .btn-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#contact_page .contact-section .form-card #contact-submit-btn .btn-loader .spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s linear infinite;
}
#contact_page .contact-section .alert {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
#contact_page .contact-section .alert .alert-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}
#contact_page .contact-section .alert .success-icon {
  background-color: #28a745;
  position: relative;
}
#contact_page .contact-section .alert .success-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
#contact_page .contact-section .alert .error-icon {
  background-color: #dc3545;
  position: relative;
}
#contact_page .contact-section .alert .error-icon::before, #contact_page .contact-section .alert .error-icon::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 4px;
  width: 2px;
  height: 12px;
  background-color: #ffffff;
}
#contact_page .contact-section .alert .error-icon::before {
  transform: rotate(45deg);
}
#contact_page .contact-section .alert .error-icon::after {
  transform: rotate(-45deg);
}
#contact_page .contact-section .alert.alert-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
#contact_page .contact-section .alert.alert-danger {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
#contact_page .contact-section .info-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(42, 92, 121, 0.1);
}
#contact_page .contact-section .info-card .info-title {
  font-size: 22px;
  font-weight: 600;
  color: #2a5c79;
  margin-bottom: 24px;
}
#contact_page .contact-section .info-card .info-items .info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(42, 92, 121, 0.1);
}
#contact_page .contact-section .info-card .info-items .info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#contact_page .contact-section .info-card .info-items .info-item:first-child {
  padding-top: 0;
}
#contact_page .contact-section .info-card .info-items .info-item .icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(42, 92, 121, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
}
#contact_page .contact-section .info-card .info-items .info-item .icon-wrapper svg {
  width: 24px;
  height: 24px;
  color: #2a5c79;
}
#contact_page .contact-section .info-card .info-items .info-item:hover .icon-wrapper {
  background: rgba(42, 92, 121, 0.15);
  transform: scale(1.05);
}
#contact_page .contact-section .info-card .info-items .info-item .info-content {
  flex: 1;
}
#contact_page .contact-section .info-card .info-items .info-item .info-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: #2a5c79;
  margin-bottom: 6px;
}
#contact_page .contact-section .info-card .info-items .info-item .info-content p {
  font-size: 14px;
  color: #7d7a89;
  margin-bottom: 4px;
  line-height: 1.5;
}
#contact_page .contact-section .info-card .info-items .info-item .info-content p:last-child {
  margin-bottom: 0;
}
#contact_page .contact-section .info-card .info-items .info-item .info-content .small-text {
  font-size: 13px;
  color: rgba(125, 122, 137, 0.8);
}
#contact_page .contact-section .info-card .info-items .info-item .info-content a {
  color: #2a5c79;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}
#contact_page .contact-section .info-card .info-items .info-item .info-content a:hover {
  color: rgb(28.8588957055, 63.2147239264, 83.1411042945);
  text-decoration: underline;
}
#contact_page .contact-section .features-card {
  background: linear-gradient(135deg, rgba(42, 92, 121, 0.05), rgba(42, 92, 121, 0.02));
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(42, 92, 121, 0.15);
}
#contact_page .contact-section .features-card .features-title {
  font-size: 20px;
  font-weight: 600;
  color: #2a5c79;
  margin-bottom: 20px;
}
#contact_page .contact-section .features-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#contact_page .contact-section .features-card .features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: #7d7a89;
  line-height: 1.5;
}
#contact_page .contact-section .features-card .features-list li svg {
  width: 20px;
  height: 20px;
  color: #2a5c79;
  flex-shrink: 0;
}
#contact_page .contact-section .features-card .features-list li span {
  flex: 1;
}
#contact_page .contact-section .consultation-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(42, 92, 121, 0.1);
  height: 380px;
}
#contact_page .contact-section .consultation-card .consultation-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 991.98px) {
  #contact_page .hero-section {
    padding: 80px 20px 60px;
  }
  #contact_page .hero-section .page-title {
    font-size: 36px;
  }
  #contact_page .hero-section .page-subtitle {
    font-size: 18px;
  }
  #contact_page .contact-section {
    padding: 60px 20px;
  }
  #contact_page .contact-section .form-card {
    padding: 30px 20px;
  }
  #contact_page .contact-section .info-card,
  #contact_page .contact-section .features-card {
    padding: 24px;
  }
  #contact_page .contact-section .right-column {
    gap: 20px;
  }
  #contact_page .contact-section .consultation-card {
    min-height: 250px;
  }
  #contact_page .contact-section .consultation-card img {
    object-position: left !important;
  }
}

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