* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-padding-top: 85px;
  scroll-behavior: smooth;
}
body {
  font-family: "Arial", serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* HEADER */
.header {
  width: 100%;
  background-color: #fff;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header_logo_wrapper {
  flex-shrink: 0;
}
.header_logo_extended {
  padding: 0;
}
.header_logo {
  flex-shrink: 0;
}
.header_logo img {
  height: 50px;
  width: auto;
  display: block;
}
.header_right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}
.header_actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header_btn {
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.header_btn_login {
  background-color: #4A10B3;
  color: #fff;
}
.header_btn_login:hover {
  background-color: #3a0d8f;
}
.header_btn_register {
  background-color: #EC770D;
  color: #fff;
}
.header_btn_register:hover {
  background-color: #d66a0b;
}
.header_mobile {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header_language {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.header_language_icon {
  width: 25px;
  height: 25px;
}
.header_language_text {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.header_language_arrow {
  width: 15px;
  height: 15px;
  color: #333;
}
.header_nav {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.nav_links {
  display: none;
  gap: 14px;
}
.burger_menu {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 5px;
}
.burger_lines {
  width: 30px;
  height: 19px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.burger_lines span {
  height: 2.5px;
  background-color: #333;
  border-radius: 3px;
  transition: 0.3s;
  transform-origin: center;
}
.burger_menu.open .burger_lines span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
  background-color: #333;
}
.burger_menu.open .burger_lines span:nth-child(2) {
  transform: rotate(-45deg) translateY(-8px);
  background-color: #333;
}
.burger_menu.open .burger_lines span:nth-child(3) {
  opacity: 0;
}
.nav_links.show {
  max-width: 1200px;
  margin: 0 auto;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  background: white;
  position: absolute;
  top: 99%;
  left: 0;
  right: 0;
  padding: 10px 0;
  z-index: 998;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.nav_links.show a {
  font-size: 18px;
  color: #2F4157;
  text-decoration: none;
  text-align: center;
}
/* Responsive */
@media (max-width: 968px) {
.header {
  padding: 15px 0;
}
.header_logo_extended {
  padding: 0;
}
.header_logo img {
  height: 45px;
}
.header_right {
  gap: 15px;
}}
@media (max-width: 768px) {.header_actions {display: none;}}
@media (max-width: 400px) {
  .header {
    padding: 12px 0;
  }
  .header_logo_extended {
    padding: 0;
  }
  .header_logo img {
    height: 40px;
  }
  .header_right {
    gap: 10px;
  }
  .header_mobile {
    gap: 10px;
  }
  .header_language {
    gap: 3px;
  }
  .header_language_icon {
    width: 20px;
    height: 20px;
  }
  .header_language_text {
    font-size: 12px;
  }
  .header_language_arrow {
    width: 10px;
    height: 10px;
  }
  .burger_menu span {
    width: 22px;
  }
}
/* HEADER END */

/* HERO BANNER */
.hero_banner{
  max-width:1200px;
  margin:110px auto 0;
  background:#1A2B3D url("../img/hero_banner.png") left center/contain no-repeat;
  position:relative;
  overflow:hidden;
  min-height: 650px;
}
.hero_banner::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:100%;
  background:rgba(26, 43, 61, 0.15);
  z-index:0;
}
.hero_container{
  position:relative;
  z-index:2;
  padding: 15px 0 0;
  display: flex;
  flex-direction: column;
}
.hero_topbar{
  display:flex;
  flex-direction: column;
  align-items:flex-end;
  gap:20px;
  margin-bottom:26px;
  padding: 0 20px 0 0;
  margin-left: auto;
  width: fit-content;
}

.hero_topbar_controls{
  display:flex;
  align-items:center;
  gap: 25px;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 10;
}
.hero_phone_link{
  display:inline-flex;
  align-items:center;
  color:#fff;
  font-size: 20px;
  font-weight: 500;
  text-decoration:none;
}
.hero_phone_icon{ width:35px;height:35px; }
.hero_title_section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  width: 100%;
  margin-top: 60px;
}
.hero_title{
  margin:0 0 15px 0;
  color:#fff;
  font-size: 26px;
  font-weight: 500;
  line-height:1.2;
}
.hero_desktop_only{
  display: block;
}
.hero_mobile_only{
  display: none;
}
.hero_content .hero_button_wrapper{
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  padding-left: 30px;
  position: relative;
  z-index: 3;
}
.hero_content{
  display:flex;
  flex-direction: row;
  justify-content:flex-end;
  align-items:flex-end;
  position: relative;
}
.hero_contact_button{
  background-color: #00A8E9;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero_contact_button img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.hero_contact_button_standalone{
  background-color: #00A8E9;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero_contact_button_standalone img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.hero_card{
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
  background: url("../img/hero_card_bg.png") center/contain no-repeat;
  background-size: 100% 100%;
  padding: 10px 10px 10px 30px;
  width: 479px;
  height: 498px;
}
.hero_card_title{
  color:#fff;
  font-size:28px;
  font-weight: 500;
  line-height:1.2;
  margin:0 0 22px;
}
.hero_card_list{ margin:0;padding:0;list-style:none; }
.hero_card_item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:#fff;
  font-size:16px;
  line-height:1.5;
  margin-bottom:18px;
}
.hero_card_item:last-child{ margin-bottom:0; }
.hero_check_icon{ 
  flex-shrink:0;
  margin-top:2px;
  width: 35px;
  height: 35px;
}
.hero_card_button{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  padding:14px 28px;
  border:none;
  border-radius:10px;
  background:#4A90E2;
  color:#fff;
  font-weight:700;
}
.hero_card_button:hover{ background:#3a7bc8; }
/* Responsive */
@media (max-width: 1400px){
.hero_topbar_controls{ gap: 22px; }
.hero_phone_link{ font-size: 19px; }
.hero_phone_icon{ width: 33px; height: 33px; }

.hero_card{ 
  width: 450px;
  height: 470px;
  padding: 10px 10px 10px 25px;
}}
@media (max-width: 1200px){
.hero_banner{ background-size: 45% auto; }
.hero_topbar{ padding: 0 15px; gap: 18px; }
.hero_topbar_controls{ gap: 20px; }
.hero_phone_link{ font-size: 18px; }
.hero_phone_icon{ width: 32px; height: 32px; }
  
.hero_title_section{ max-width: 500px; }
.hero_title{ font-size: 24px; }
.hero_card{ 
  width: 420px;
  height: 440px;
  padding: 10px 10px 10px 22px;
}
.hero_card_title{ font-size: 22px; }
.hero_card_item{ font-size: 13px; }}
@media (max-width: 1024px){
.hero_banner{ background-size: 50% auto; }
.hero_topbar{ gap: 15px; }
.hero_topbar_controls{ gap: 18px; }
.hero_phone_link{ font-size: 17px; }
.hero_phone_icon{ width: 30px; height: 30px; }

.hero_title{ font-size: 22px; }
.hero_card{ 
  width: 380px;
  height: 400px;
  padding: 10px 10px 10px 20px;
}
.hero_card_title{ font-size: 20px; }
.hero_card_item{ font-size: 12px; margin-bottom: 10px; }
.hero_check_icon{ width: 28px; height: 28px; }}
@media (max-width: 900px){
.hero_topbar_controls{ gap: 16px; }
.hero_phone_link{ font-size: 16px; }
.hero_phone_icon{ width: 28px; height: 28px; }

.hero_card{ 
  width: 350px;
  height: 370px;
  padding: 10px 10px 10px 18px;
}
.hero_card_title{ font-size: 19px; }
.hero_card_item{ font-size: 11px; }
.hero_check_icon{ width: 26px; height: 26px; }}

@media (max-width: 768px){
.hero_desktop_only{
  display: none;
}
.hero_mobile_only{
  display: flex;
  flex-direction: column;
  padding: 480px 0 20px 15px;
}
.hero_container{ 
  padding: 0;
  min-height: 750px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero_banner{ 
  margin-top: 95px;
  min-height: 750px;
  background-position: center top;
  background-size: 100% auto;
}
.hero_banner::before{ 
  width: 100%;
  background: rgba(26, 43, 61, 0.35);
}
.hero_mobile_phone{
  position: absolute;
  top: 15px;
  right: 15px;
  flex-direction: row;
  gap: 8px;
}
.hero_phone_link{ font-size: 18px; }
.hero_phone_icon{ width: 24px; height: 24px; }

.hero_mobile_only .hero_card{ 
  padding: 15px;
  width: 456px;
  height: 420px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: 0;
}
.hero_mobile_only .hero_card_title{ 
  font-size: 22px;
  margin-bottom: 18px;
}
.hero_mobile_only .hero_card_item{ 
  font-size: 16px;
  margin-bottom: 14px;
  gap: 10px;
}
.hero_mobile_only .hero_check_icon{ 
  width: 32px;
  height: 32px;
}
.hero_mobile_only .hero_title{ 
  font-size: 20px;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 0;
  line-height: 1.3;
  padding-right: 15px;
}
.hero_mobile_only .hero_contact_button_standalone{
  align-self: center;
  margin-right: 15px;
}
.hero_contact_button_standalone{ 
  padding: 10px 20px;
  font-size: 16px;
}
.hero_contact_button_standalone img{
  width: 22px;
  height: 22px;
}
.hero_card{ 
  padding: 8px 8px 8px 15px;
  width: calc(100% - 15px);
  height: auto;
}
.hero_card_title{ font-size: 16px; margin-bottom: 12px; }
.hero_card_item{ 
  font-size: 10px;
  margin-bottom: 8px;
  gap: 6px;
}
.hero_check_icon{ width: 20px; height: 20px; }}
@media (max-width: 480px){
.hero_mobile_only{
  padding: 370px 0 20px 12px;
}
.hero_container{ 
  min-height: 680px;
}
.hero_banner{ 
  margin-top: 85px;
  background-size: 100% auto;
  min-height: 680px;
}
.hero_mobile_phone{ 
  top: 12px;
  right: 12px;
  gap: 6px; 
}
.hero_phone_link{ font-size: 16px; }
.hero_phone_icon{ width: 22px; height: 22px; }

.hero_mobile_only .hero_card{ 
  padding: 40px 10px 10px 30px;
  width: 360px;
  height: 330px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: 0;
}
.hero_mobile_only .hero_card_title{ 
  font-size: 19px;
  margin-bottom: 15px;
}
.hero_mobile_only .hero_card_item{ 
  font-size: 15px;
  margin-bottom: 12px;
  gap: 8px;
}
.hero_mobile_only .hero_check_icon{ 
  width: 30px;
  height: 30px;
}
.hero_mobile_only .hero_title{ 
  font-size: 18px;
  margin-bottom: 12px;
  padding-right: 12px;
}
.hero_mobile_only .hero_contact_button_standalone{
  margin-right: 12px;
}
.hero_contact_button_standalone{ 
  padding: 10px 18px;
  font-size: 15px;
}
.hero_contact_button_standalone img{
  width: 20px;
  height: 20px;
}
.hero_card_title{ font-size: 14px; margin-bottom: 10px; }
.hero_card_item{ 
  font-size: 9px;
  margin-bottom: 6px;
}
.hero_check_icon{ width: 18px; height: 18px; }}

@media (max-width: 360px){
.hero_mobile_only{
  padding: 0 0 15px 10px;
}
.hero_container{ 
  min-height: 640px;
}
.hero_banner{ 
  margin-top: 80px;
  min-height: 640px;
  background-size: 100% auto;
}
.hero_mobile_phone{ 
  top: 10px;
  right: 10px;
  gap: 5px; 
}
.hero_phone_link{ font-size: 11px; }
.hero_phone_icon{ width: 20px; height: 20px; }

.hero_mobile_only .hero_card{ 
  padding: 10px;
  width: 320px;
  height: 300px;
  margin-bottom: 12px;
  margin-left: auto;
  margin-right: 0;
}
.hero_mobile_only .hero_card_title{ 
  font-size: 18px;
  margin-bottom: 12px;
}
.hero_mobile_only .hero_card_item{ 
  font-size: 14px;
  margin-bottom: 10px;
  gap: 6px;
}
.hero_mobile_only .hero_check_icon{ 
  width: 28px;
  height: 28px;
}
.hero_mobile_only .hero_title{ 
  font-size: 16px;
  margin-bottom: 10px;
  padding-right: 10px;
}
.hero_mobile_only .hero_contact_button_standalone{
  margin-right: 10px;
}
.hero_contact_button_standalone{ 
  padding: 8px 16px;
  font-size: 14px;
}
.hero_contact_button_standalone img{
  width: 18px;
  height: 18px;
}
.hero_card_title{ font-size: 12px; margin-bottom: 8px; }
.hero_card_item{ 
  font-size: 8px;
  margin-bottom: 5px;
}
.hero_check_icon{ width: 16px; height: 16px; }}
/* HERO BANNER END */

/* SECTION ABOUT US */
.about_section {
  max-width:1200px;
  margin: 0 auto;
  background-color: #fff;
  padding: 80px 20px;
}
.about_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.about_images {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about_image_main {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
}
.about_image_main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_images_small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.about_image_small {
  width: 100%;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
}
.about_image_small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_content {
  display: flex;
  flex-direction: column;
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.accordion_item {
  border-bottom: 1px solid #e0e0e0;
}
.accordion_header {
  cursor: pointer;
  user-select: none;
}
.accordion_header:hover .about_title {
  color: #4A10B3;
}
.accordion_header:hover .about_link_arrow {
  filter: brightness(1.2);
}
.about_title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.accordion_item.active .about_title {
  color: #4A10B3;
}
.about_link_arrow {
  width: 25px;
  height: 25px;
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
  vertical-align: middle;
}
.accordion_item.active .about_link_arrow {
  transform: rotate(90deg);
}
.accordion_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}
.accordion_item.active .accordion_content {
  max-height: 800px;
  padding-bottom: 20px;
}
.about_text {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
}
.about_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about_list_item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}
.list_icon {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  margin-top: 2px;
}
/* Responsive */
@media (max-width: 768px) {
.about_section {
  padding: 40px 20px;
}
.about_container {
  grid-template-columns: 1fr;
  gap: 30px;
}
.about_title {
  font-size: 22px;
}
.about_text {
  font-size: 15px;
}
.about_link_arrow {
  width: 14px;
  height: 14px;
}
.about_list_item {
  font-size: 15px;
  gap: 10px;
  margin-bottom: 12px;
}
.list_icon {
  width: 25px;
  height: 25px;
}}
/* SECTION ABOUT US END */

/* SECTION PARTNERS */
.partners_section {
  max-width:1200px;
  margin: 0 auto;
  background-color: #1A2B3D;
  padding: 30px 20px;
}
.partners_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.partners_left {
  color: #fff;
  max-width: 550px;
  flex: 1;
}
.partners_map {
  flex-shrink: 0;
  width: 400px;
  height: 450px;
}
.partners_map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.4));
}
.partners_title {
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}
.partners_description {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 15px;
}
.partners_subdescription {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 10px;
}
.partners_subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
/* Partners Cards Row */
.partners_cards_row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}
.partners_card {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px 10px;
  flex: 1;
  max-width: 580px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
/* Partner Card Vertical Carousel */
.partners_card_arrow {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  align-self: center;
  transition: all 0.3s ease;
  padding: 0;
  margin: 5px 0;
}
.partners_card_arrow:hover {
  transform: scale(1.1);
}
.partners_card_arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.partners_card_arrow_down img {
  transform: rotate(180deg);
}
.partners_card_carousel {
  overflow: hidden;
  position: relative;
  height: 260px;
  flex: 0 0 auto;
}
.partners_card_carousel_wrapper {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease;
}
.partners_card_slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 260px;
  flex-shrink: 0;
  justify-content: center;
  padding: 10px 0;
}
.partners_card_icon {
  display: none;
}
.partners_card_content {
  width: 100%;
}
.partners_card_title {
  font-size: 22px;
  font-weight: 700;
  color: #1A2B3D;
  margin-bottom: 15px;
  line-height: 1.3;
}
.partners_card_text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}
.partners_card_examples {
  font-size: 14px;
  line-height: 1.5;
  color: #888;
  font-style: italic;
}
/* Logos for first slide */
.partners_card_logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
/* Grid layout for chambers card */
.partners_card_logos_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  align-items: center;
  justify-items: center;
}
/* Grid layout 2x2 for governments card */
.partners_card_logos_grid_2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  align-items: center;
  justify-items: center;
}
.partner_logo {
  max-width: 150px;
  max-height: 100px;
  object-fit: contain;
}
.partner_logo_tall {
  grid-column: 3;
  grid-row: 1 / 3;
  max-height: 200px;
}
.partners_join {
  flex: 1;
  max-width: 510px;
  color: #fff;
}
.partners_join_title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.partners_join_text {
  font-size: 17px;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 25px;
}
.partners_join_button {
  background-color: #00A8E9;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.partners_join_button img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
/* Partners Carousel */
.partners_carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
/* Общий стиль для кнопок каруселей */
.carousel_btn,
.partners_carousel_btn {
  background-color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 2;
  flex-shrink: 0;
}
.carousel_btn:hover,
.partners_carousel_btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.carousel_btn svg,
.partners_carousel_btn svg {
  width: 20px;
  height: 20px;
  color: #333;
}
.carousel_btn_prev,
.partners_carousel_btn_prev {
  position: absolute;
  left: -25px;
}
.carousel_btn_next,
.partners_carousel_btn_next {
  position: absolute;
  right: -25px;
}
.partners_carousel_container {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}
.partners_carousel_wrapper {
  display: flex;
  transition: transform 0.3s ease;
  gap: 25px;
}
.partner_card {
  background-color: #F3F6F6;
  border-radius: 16px;
  padding: 30px 25px;
  flex-shrink: 0;
  width: calc((100% - 50px) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.partner_icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}
.partner_name {
  font-size: 18px;
  font-weight: 600;
  color: black;
  margin-bottom: 15px;
}
.partner_description {
  font-size: 14px;
  line-height: 1.6;
  color: black;
}
/* Responsive */
@media (max-width: 1024px) {
  .partners_map {
    width: 300px;
    height: 350px;
  }
  .partner_logo {
    max-width: 120px;
    max-height: 80px;
  }
  .partner_logo_tall {
    max-height: 140px;
  }
  .partners_card_logos_grid {
    gap: 12px;
  }
  .partners_card_logos_grid_2x2 {
    gap: 15px;
  }
}

@media (max-width: 900px) {
  .partner_logo {
    max-width: 80px;
    max-height: 60px;
  }
  .partner_logo_tall {
    max-height: 120px;
  }
  .partners_card_logos_grid {
    gap: 10px;
  }
  .partners_card_logos_grid_2x2 {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .partners_section {
    padding: 40px 20px;
  }
  .partners_container {
    flex-direction: column;
  }
  .partners_map {
    display: none;
  }
  .partners_title {
    font-size: 32px;
  }
  .partners_cards_row {
    flex-direction: column;
    gap: 20px;
  }
  .partners_card,
  .partners_join {
    max-width: 100%;
  }
  .partners_card {
    padding: 15px 20px;
  }
  .partners_card_arrow {
    width: 35px;
    height: 35px;
  }
  .partners_card_carousel {
    height: 360px;
  }
  .partners_card_slide {
    height: 360px;
    padding: 18px 12px;
  }
  .partners_card_title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .partners_card_text {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .partners_card_examples {
    font-size: 13px;
  }
  .partner_logo {
    max-width: 110px;
    max-height: 80px;
  }
  .partner_logo_tall {
    max-height: 130px;
  }
  .partners_card_logos {
    gap: 18px;
    margin-top: 18px;
  }
  .partners_card_logos_grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
  }
  .partners_card_logos_grid_2x2 {
    gap: 18px;
  }
  .partners_carousel_btn_prev {
    left: -15px;
  }
  .partners_carousel_btn_next {
    right: -15px;
  }
  .partner_card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .partners_card_carousel {
    height: 380px;
  }
  .partners_card_slide {
    height: 380px;
    padding: 15px 10px;
  }
  .partner_logo {
    max-width: 80px;
    max-height: 60px;
  }
  .partner_logo_tall {
    max-height: 110px;
  }
  .partners_card_logos {
    gap: 15px;
    margin-top: 15px;
  }
  .partners_card_logos_grid {
    gap: 12px;
  }
  .partners_card_logos_grid_2x2 {
    gap: 15px;
  }
}
/* SECTION PARTNERS END */

/* SECTION SERVICES */
.services_section {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #1A2B3D;
  padding: 40px 0;
  display: flex;
  align-items: center;
}
.services_container {
  width: 100%;
  padding: 0 20px;
}
.services_title {
  color: #ffffff;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: left;
}
.services_grid_row1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 15px;
  align-items: stretch;
}
.services_grid_row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 0 auto 15px auto;
  align-items: stretch;
}
.services_grid_row3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 0 auto;
  align-items: stretch;
}
.service_card {
  background-color: #F3F6F6;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.service_icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  background-color: #1A2B3D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service_icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.service_title {
  color: #212529;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}
/* Responsive */
@media (max-width: 768px) {
.services_section {
  padding: 60px 0;
}
.services_title {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}
.services_grid_row1 {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  margin: 0 auto 15px auto;
}
.services_grid_row2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  margin: 0 auto 15px auto;
}
.services_grid_row2 .service_card:nth-child(3) {
  grid-column: 1 / -1;
}
.services_grid_row3 {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  margin: 0 auto;
}
.service_card {
  padding: 10px;
  min-height: 140px;
  width: auto;
}
.service_title {
  font-size: 14px;
  line-height: 1.2;
}}
/* SECTION SERVICES END */

/* SECTION COURSES */
.courses_section {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px 20px;
}
.courses_header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.courses_text {
  flex: 1;
  max-width: 600px;
  margin-right: 40px;
}
.courses_title {
  font-size: 48px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
.courses_description {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
.universities_logos {
  display: flex;
  gap: 5px;
  align-items: end;
}
.university_logo {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.university_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.courses_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.course_card {
  padding: 32px 28px;
  background-color: #F3F6F6;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.course_image {
  width: 100%;
  height: 240px;
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}
.course_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.course_content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.course_title {
  font-size: 28px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}
.course_description {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 24px;
  flex: 1;
}
.course_info {
  margin-bottom: 32px;
  text-align: right;
}
.course_label {
  font-size: 16px;
  color: #999;
  display: block;
}
.course_date {
  font-size: 18px;
  font-weight: bold;
  color: #1a1a1a;
}
.course_button {
  background: #EC770D;
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  letter-spacing: 0.5px;
}
/* Responsive */
@media (max-width: 768px) {
.courses_header {
  flex-direction: column;
  margin-bottom: 40px;
}
.courses_text {
  margin-right: 0;
  margin-bottom: 30px;
}
.courses_title {
  font-size: 36px;
}
.courses_description {
  font-size: 18px;
}
.universities_logos {
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.course_card {
  padding: 10px;
}
.courses_grid {
  grid-template-columns: 1fr;
  gap: 20px;
}
.course_title {
  font-size: 24px;
}
.course_description {
  font-size: 18px;
}
.course_button {
  font-size: 18px;
  padding: 14px 24px;
}
}
/* SECTION COURSES END */

/* SECTION NEWS */
.news_section {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px 20px;
}
.news_title {
  font-size: 48px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
.news_carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.news_cards_container {
  padding: 15px 0;
  flex: 1;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.news_cards_wrapper {
  display: flex;
  transition: transform 0.3s ease;
  gap: 20px;
}
.news_card {
  padding: 20px 15px;
  background-color: #F3F6F6;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  width: calc((100% - 40px) / 3);
}
.news_card_image {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
}
.news_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_card_content {
  padding: 25px 0 0;
}
.news_card_title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}
.news_card_description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.news_card_button {
  background: #4A10B3;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}
.news_card_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
}
/* Large Desktop - 3 cards */
@media (min-width: 1201px) {
.news_card {
  width: calc((100% - 40px) / 3);
}}
/* Desktop - 3 cards */
@media (max-width: 1200px) and (min-width: 901px) {
.news_card {
  width: calc((100% - 40px) / 3);
}}
/* Tablet - 2 cards */
@media (max-width: 900px) and (min-width: 601px) {
.news_card {
  width: calc((100% - 20px) / 2);
}
.news_cards_container {
  width: 100%;
  margin: 0;
}
.news_cards_wrapper {
  gap: 20px;
}}
/* Mobile - 1 card */
@media (max-width: 600px) {
.news_section {
  padding: 60px 20px;
}
.news_title {
  font-size: 36px;
  margin-bottom: 30px;
}
.news_carousel {
  gap: 10px;
  justify-content: center;
}
.carousel_btn,
.partners_carousel_btn {
  width: 40px;
  height: 40px;
}
.carousel_btn svg,
.partners_carousel_btn svg {
  width: 16px;
  height: 16px;
}
.carousel_btn_prev,
.partners_carousel_btn_prev {
  left: -15px;
}
.carousel_btn_next,
.partners_carousel_btn_next {
  right: -15px;
}
.news_cards_container {
  width: 280px !important;
  max-width: 280px !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  position: relative !important;
  flex: none !important;
  padding: 0 !important;
}
.news_cards_wrapper {
  display: flex !important;
  transition: transform 0.3s ease !important;
  width: max-content !important;
  gap: 0 !important;
}
.news_card {
  width: 280px !important;
  flex-shrink: 0 !important;
  margin-right: 0 !important;
}
.news_card_image {
  height: 160px;
}
.news_card_content {
  padding: 20px;
}
.news_card_title {
  font-size: 18px;
  margin-bottom: 12px;
}
.news_card_description {
  font-size: 13px;
  margin-bottom: 15px;
}
.news_card_button {
  padding: 10px 20px;
  font-size: 13px;
}}
/* SECTION NEWS END */

/* SECTION CONTACTS */
.contacts_section {
  background-color: #1A2B3D;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.contacts_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
/* Left Column - Contact Info */
.contacts_info {
  color: #fff;
}
.contacts_title {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
}
.contacts_details {
  margin-bottom: 35px;
}
.contact_item {
  font-size: 18px;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.4;
}
.contacts_map {
  width: 100%;
}
.contacts_map iframe {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  border: none;
}
/* Right Column - Contact Form */
.contacts_form_card {
  width: 100%;
  height: 100%;
  background-color: #F3F6F6;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.form_header {
  margin-bottom: 30px;
}
.form_title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin: 0;
}
.contact_form {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto auto;
  gap: 20px;
  align-items: start;
}
.form_group_name {
  grid-column: 1;
  grid-row: 1;
}
.form_group_email {
  grid-column: 1;
  grid-row: 2;
}
.form_illustration {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 120px;
  height: 120px;
  align-self: center;
}
.form_illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.form_group_message {
  grid-column: 1 / -1;
  grid-row: 3;
}
.form_button {
  grid-column: 1 / -1;
  grid-row: 4;
  justify-self: center;
}
.form_group {
  position: relative;
}
.input_icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #999;
  z-index: 2;
}
.form_input {
  width: 100%;
  padding: 15px 15px 15px 50px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  background-color: #fff;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}
.form_input:focus {
  outline: none;
  border-color: #6b46c1;
}
.form_textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  background-color: #fff;
  transition: border-color 0.3s ease;
  resize: vertical;
  min-height: 120px;
  box-sizing: border-box;
  font-family: inherit;
}
.form_textarea:focus {
  outline: none;
  border-color: #4A10B3;
}
.form_button {
  background-color: #4A10B3;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.form_button:hover {
  background-color: #553c9a;
}
/* Responsive */
@media (max-width: 768px) {
.contacts_section {
  padding: 60px 20px;
}
.contacts_content {
  grid-template-columns: 1fr;
  gap: 40px;
}
.contacts_title {
  font-size: 36px;
  margin-bottom: 20px;
}
.contact_item {
  font-size: 16px;
  margin-bottom: 12px;
}
.contacts_map iframe {
  height: 250px;
}
.contacts_form_card {
  padding: 30px 20px;
}
.form_title {
  font-size: 28px;
}
.form_button {
  justify-self: center;
}
.form_input {
  font-size: 16px;
  padding: 12px 12px 12px 45px;
}
.form_textarea {
  font-size: 16px;
  padding: 12px;
}
.form_button {
  font-size: 16px;
  padding: 12px 24px;
}}
/* SECTION CONTACTS END */

/* REGISTRATION FORM */
.registration_section {
  padding: 20px 20px;
  background-color: #F5F5F5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.registration_container {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.registration_form_wrapper {
  background-color: #fff;
  border-radius: 15px;
  padding: 50px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.registration_form_header {
  margin-bottom: 40px;
  text-align: center;
}
.registration_title {
  font-size: 32px;
  font-weight: bold;
  color: #000;
  margin: 0 0 10px 0;
}
.registration_subtitle {
  font-size: 16px;
  color: #999;
  margin: 0;
}
.registration_form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.registration_form_group {
  position: relative;
}
.registration_input_icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.registration_input_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.registration_input {
  width: 100%;
  padding: 15px 15px 15px 50px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background-color: #fff;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  font-family: inherit;
  color: #333;
}
.registration_input::placeholder {
  color: #999;
}
.registration_input:focus {
  outline: none;
  border-color: #EC770D;
}
.registration_button {
  background-color: #EC770D;
  color: #fff;
  border: none;
  padding: 18px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
  width: 100%;
}
.registration_button:hover {
  background-color: #d66a0b;
}
/* Responsive */
@media (max-width: 768px) {
.registration_section {
  padding: 20px 20px;
}
.registration_form_wrapper {
  padding: 40px 30px;
}
.registration_title {
  font-size: 28px;
}
.registration_subtitle {
  font-size: 14px;
}
.registration_form {
  gap: 18px;
}
.registration_input {
  padding: 14px 14px 14px 45px;
  font-size: 16px;
}
.registration_button {
  padding: 16px 24px;
  font-size: 16px;
}}
@media (max-width: 480px) {
.registration_section {
  padding: 20px 15px;
}
.registration_form_wrapper {
  padding: 30px 20px;
}
.registration_title {
  font-size: 24px;
}
.registration_subtitle {
  font-size: 13px;
}
.registration_form {
  gap: 15px;
}
.registration_input {
  padding: 12px 12px 12px 40px;
  font-size: 15px;
}
.registration_input_icon {
  width: 18px;
  height: 18px;
  left: 12px;
}
.registration_button {
  padding: 14px 20px;
  font-size: 15px;
}}
/* REGISTRATION FORM END */

/* LOGIN FORM */
.login_section {
  padding: 20px 20px;
  background-color: #F5F5F5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login_container {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.login_form_wrapper {
  background-color: #fff;
  border-radius: 15px;
  padding: 50px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.login_form_header {
  margin-bottom: 40px;
  text-align: center;
}
.login_title {
  font-size: 32px;
  font-weight: bold;
  color: #000;
  margin: 0 0 10px 0;
}
.login_subtitle {
  font-size: 16px;
  color: #999;
  margin: 0;
}
.login_form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.login_form_group {
  position: relative;
}
.login_input_icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login_input_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.login_input {
  width: 100%;
  padding: 15px 15px 15px 50px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background-color: #fff;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  font-family: inherit;
  color: #333;
}
.login_input::placeholder {
  color: #999;
}
.login_input:focus {
  outline: none;
  border-color: #EC770D;
}
.login_button {
  background-color: #EC770D;
  color: #fff;
  border: none;
  padding: 18px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
  width: 100%;
}
.login_button:hover {
  background-color: #d66a0b;
}
.login_footer {
  text-align: center;
  margin-top: 20px;
}
.login_footer_text {
  font-size: 16px;
  color: #333;
  margin: 0;
}
.login_footer_link {
  color: #EC770D;
  text-decoration: underline;
  transition: color 0.3s ease;
}
/* Responsive */
@media (max-width: 768px) {
  .login_section {
    padding: 20px 20px;
  }
  .login_form_wrapper {
    padding: 40px 30px;
  }
  .login_title {
    font-size: 28px;
  }
  .login_subtitle {
    font-size: 14px;
  }
  .login_form {
    gap: 18px;
  }
  .login_input {
    padding: 14px 14px 14px 45px;
    font-size: 16px;
  }
  .login_button {
    padding: 16px 24px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .login_section {
    padding: 20px 15px;
  }
  .login_form_wrapper {
    padding: 30px 20px;
  }
  .login_title {
    font-size: 24px;
  }
  .login_subtitle {
    font-size: 13px;
  }
  .login_form {
    gap: 15px;
  }
  .login_input {
    padding: 12px 12px 12px 40px;
    font-size: 15px;
  }
  .login_input_icon {
    width: 18px;
    height: 18px;
    left: 12px;
  }
  .login_button {
    padding: 14px 20px;
    font-size: 15px;
  }
  .login_footer_text {
    font-size: 14px;
  }
}
/* LOGIN FORM END */

/* FOOTER */
.footer {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  margin-top: 60px;
}
.footer_content {
  background-color: #fff;
  padding: 20px 20px 40px;
}
.footer_container {
  display: grid;
  grid-template-columns: 50px 1fr 1fr;
  gap: 10px;
}
.footer_column {
  display: flex;
  flex-direction: column;
}
.footer_nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer_link {
  color: #31148E;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}
.footer_social {
  align-items: center;
  text-align: center;
}
.footer_social_title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}
.footer_social_icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}
.footer_social_icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}
.footer_social_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer_copyright {
  font-size: 18px;
  color: #666;
  margin: 0;
}
.footer_info_text {
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.2;
}
.footer_info_link {
  color: #333;
  text-decoration: none;
}
.footer_copyright_bottom {
  font-size: 18px;
  color: #666;
  margin-top: 15px;
  margin-bottom: 0;
}
/* Responsive */
@media (max-width: 800px) {
.footer_container {
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}
.footer_nav {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.footer_social_icons {
  gap: 20px;
}
.footer_social_icon {
  width: 50px;
  height: 50px;
}
.footer_info_text {
  font-size: 16px;
  margin-bottom: 12px;
}
.footer_copyright,
.footer_copyright_bottom {
  font-size: 16px;
}}
/* FOOTER END */

/* DASHBOARD (home) */
.dash {
  --dash-topbar-height: 72px;
  display: flex;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1a1a1a;
}
.dash-sidebar {
  --dash-sidebar-pad-x: 18px;
  width: 260px;
  flex-shrink: 0;
  background: #0A4E78;
  padding: 0 var(--dash-sidebar-pad-x) 28px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.dash-logo {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  min-height: var(--dash-topbar-height);
  padding: 0 var(--dash-sidebar-pad-x);
  margin: 0 calc(-1 * var(--dash-sidebar-pad-x));
  background: #083e60;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  color: #EC770D;
  letter-spacing: -0.02em;
  line-height: 1;
}
.dash-logo:hover {
  color: #f5923a;
}
.dash-logo img {
  max-height: 44px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}
.dash-logo:hover img {
  opacity: 0.9;
}
.dash-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dash-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 15px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.dash-nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
}
.dash-nav-link--active {
  background: #EC770D;
  color: #fff;
}
.dash-nav-link--active:hover {
  background: #d66a0b;
}
.dash-nav-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  object-fit: contain;
  opacity: 0.95;
}
.dash-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #eef1f4;
}
.dash-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  box-sizing: border-box;
  min-height: var(--dash-topbar-height);
  padding: 14px 25px;
  background: #FFFFFF;
  position: relative;
  z-index: 1002;
}
.dash-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 15px;
  flex-shrink: 0;
}
.dash-burger:hover {
  background: rgba(236, 119, 13, 0.1);
}
.dash-burger-lines {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.dash-burger-lines span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: #EC770D;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.dash--nav-open .dash-burger-lines span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.dash--nav-open .dash-burger-lines span:nth-child(2) {
  opacity: 0;
}
.dash--nav-open .dash-burger-lines span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
.dash-sidebar-backdrop {
  display: none;
}
.dash-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.dash-icon-btn {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  border-radius: 15px;
  line-height: 0;
  transition: background 0.2s;
}
.dash-icon-btn:hover {
  background: rgba(26, 43, 61, 0.08);
}
.dash-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EC770D;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dash-main {
  position: relative;
  padding: 16px 28px 40px;
  flex: 1;
}
.dash-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/icons/materic_america.svg");
  background-repeat: no-repeat;
  background-position: center -40px;
  background-size: auto min(95%, 760px);
  opacity: 0.60;
  pointer-events: none;
  z-index: 0;
}
.dash-main > * {
  position: relative;
  z-index: 1;
}
.dash-greeting {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin: 0 0 6px;
}
.dash-greeting-sub {
  font-size: 15px;
  color: #5a6570;
  margin: 0 0 22px;
  line-height: 1.4;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}
.dash-stat-card {
  background: #fff;
  border-radius: 15px;
  padding: 16px 9px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.dash-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(10, 30, 50, 0.14);
}
.dash-stat-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dash-stat-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: 1;
  min-width: 0;
}
.dash-stat-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.dash-stat-value {
  font-size: 2.35rem;
  font-weight: 700;
  color: #111;
  line-height: 1;
  flex-shrink: 0;
}
.dash-stat-label {
  font-size: 14px;
  color: #111;
  line-height: 1.25;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
}
.dash-panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
@media (min-width: 640px) {
  .dash-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .dash-panels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.dash-panel {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.dash-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(10, 30, 50, 0.14);
}
.dash-panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  padding: 20px 20px 12px;
  color: #EC770D;
}
.dash-panel-title img {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.dash-panel-body {
  flex: 1;
  padding: 0 20px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.dash-panels > .dash-panel:first-child {
  border-radius: 15px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.dash-panels > .dash-panel:first-child .dash-panel-title {
  padding: 24px 24px 14px;
}
.dash-panels > .dash-panel:first-child .dash-panel-body {
  padding: 0 24px 24px;
}
.dash-panels > .dash-panel:first-child .dash-panel-footer {
  padding: 16px 24px 22px;
}
.dash-panels > .dash-panel:first-child .dash-link-action {
  font-weight: 500;
}
.dash-panel-footer {
  margin-top: auto;
  padding: 14px 20px 18px;
  border-top: 1px solid #e8ecf1;
}
.dash-link-action {
  color: #EC770D;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.dash-link-action:hover {
  text-decoration: underline;
}
.dash-link-arrow {
  font-weight: 700;
}
.dash-company {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: fit-content;
  max-width: 100%;
}
.dash-panel-body.dash-company {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  max-width: 100%;
}
.dash-company-info {
  text-align: left;
  min-width: 0;
}
.dash-company-logo {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: #2360A1;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dash-company-name {
  font-weight: 700;
  font-size: 18px;
  color: #111;
  margin: 0 0 6px;
}
.dash-company-meta {
  font-size: 14px;
  font-weight: 400;
  color: #111;
  margin: 0 0 6px;
  line-height: 1.4;
}
.dash-company-status {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #00B236;
  line-height: 1.4;
}
.dash-course-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: min(100%, 28rem);
}
.dash-course-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}
.dash-course-pct {
  flex-shrink: 0;
  font-weight: 600;
  color: #111;
}
.dash-progress {
  height: 8px;
  background: #e8ecf1;
  border-radius: 999px;
  overflow: hidden;
}
.dash-progress-bar {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: #2360A1;
}
.dash-notify-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: min(100%, 28rem);
}
.dash-notify-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.dash-notify-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b0b8c0;
  flex-shrink: 0;
  margin-top: 4px;
}
.dash-notify-dot--new {
  background: #EC770D;
}
.dash-notify-text {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin: 0 0 2px;
  line-height: 1.35;
}
.dash-notify-item--read .dash-notify-text {
  font-weight: 400;
  color: #88929c;
}
.dash-notify-time {
  font-size: 12px;
  color: #88929c;
  line-height: 1.25;
}
.dash-docs-block {
  margin-bottom: 28px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  box-sizing: border-box;
}
.dash-docs-block .dash-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 18px;
  color: #EC770D;
}
.dash-docs-block .dash-section-title img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.dash-docs-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.dash-doc-card {
  background: #3372B44D;
  border-radius: 15px;
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-width: 0;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.dash-doc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
}
.dash-doc-file-img {
  flex-shrink: 0;
  width: 32px;
  height: auto;
  display: block;
  object-fit: contain;
}
.dash-doc-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  text-align: left;
}
.dash-doc-name {
  font-size: 14px;
  font-weight: 700;
  color: #2c2c2c;
  line-height: 1.25;
}
.dash-doc-date {
  font-size: 12px;
  font-weight: 400;
  color: #6d7780;
  line-height: 1.2;
}
.dash-info-carousel {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
}
.dash-info-carousel-viewport {
  flex: 1;
  min-width: 0;
  container-type: inline-size;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  border-radius: 0;
}
.dash-info-carousel-viewport::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.dash-info-carousel-track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 18px;
}
.dash-info-carousel-track .dash-info-card {
  box-sizing: border-box;
  flex: 0 0 100cqw;
  width: 100cqw;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}
@container (min-width: 500px) {
  .dash-info-carousel-track .dash-info-card {
    flex-basis: calc((100cqw - 18px) / 2);
    width: calc((100cqw - 18px) / 2);
  }
}
@container (min-width: 960px) {
  .dash-info-carousel-track .dash-info-card {
    flex-basis: calc((100cqw - 36px) / 3);
    width: calc((100cqw - 36px) / 3);
  }
}
.dash-info-carousel-btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.dash-info-carousel-btn:hover:not(:disabled) {
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}
.dash-info-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.dash-info-carousel-btn svg {
  width: 20px;
  height: 20px;
}
.dash-info-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.dash-info-card-img {
  height: 160px;
  overflow: hidden;
}
.dash-info-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dash-info-card-text {
  background: #142238;
  color: #fff;
  padding: 20px 18px 22px;
  flex: 1;
}
.dash-info-card-text h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}
.dash-info-card-text p {
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}
@media (max-width: 1200px) {
  .dash-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .dash-stat-card {
    padding: 14px 8px;
    gap: 8px;
  }
  .dash-stat-value {
    font-size: 2rem;
  }
  .dash-stat-label {
    font-size: 13px;
  }
  .dash-stat-icon {
    width: 20px;
    height: 20px;
  }
  .dash-docs-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dash-docs-block {
    padding: 18px 16px;
  }
}
body.dash--body-lock {
  overflow: hidden;
}
@media (max-width: 768px) {
  .dash {
    --dash-topbar-height: 68px;
    display: block;
  }
  .dash-burger {
    display: flex;
  }
  .dash-header {
    justify-content: space-between;
    padding: 12px 16px;
    min-height: var(--dash-topbar-height);
  }
  .dash-sidebar-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s;
    pointer-events: none;
  }
  .dash--nav-open .dash-sidebar-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .dash-sidebar {
    --dash-sidebar-pad-x: 16px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(288px, 88vw);
    z-index: 1001;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 24px;
    padding: 0 var(--dash-sidebar-pad-x) 28px;
    box-shadow: 4px 0 28px rgba(0, 0, 0, 0.18);
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .dash--nav-open .dash-sidebar {
    transform: translateX(0);
  }
  .dash-nav {
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    gap: 8px;
  }
  .dash-nav-link span {
    display: inline;
  }
  .dash-nav-link {
    padding: 12px 16px;
  }
  .dash-docs-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .dash-docs-block {
    padding: 16px 14px;
  }
  .dash-main {
    padding: 12px 16px 28px;
  }
  .dash-content {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .dash-greeting {
    font-size: 22px;
  }
  .dash-greeting-sub {
    font-size: 14px;
    margin-bottom: 18px;
  }
}
@media (max-width: 499px) {
  /* Una columna + texto centrado solo en pantallas muy estrechas */
  .dash-stats {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
  .dash-stat-card {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 15px;
  }
  .dash-stat-icon-wrap {
    align-self: center;
  }
  .dash-stat-icon {
    width: 28px;
    height: 28px;
  }
  .dash-stat-main {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
  }
  .dash-stat-value {
    font-size: 2.125rem;
    flex-shrink: 0;
    text-align: center;
    max-width: none;
  }
  .dash-stat-label {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    flex: 0 1 auto;
    min-width: 0;
    width: auto;
    max-width: 100%;
    text-align: center;
  }
}
/* DASHBOARD END */