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

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #EDEBE4;
}

h1, h2, h3, h4, h5, h6, ul, li, p {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

/* scroll bar right */
::-webkit-scrollbar {
  width: 6px; 
}

::-webkit-scrollbar-track {
  background: #EDEBE4; 
}

::-webkit-scrollbar-thumb {
  background: #304B85; 
  border-radius: 5px; 
}

/* Header */
.header {
  padding: 30px 30px 0 30px;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: auto;
}

.header-container {
  max-width: 1940px;
  width: 100%;
  padding: 10px;
  background: #304B85;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 96px;
}

.header-logo-container {
  position: relative; 
  left: 0;
  transition: all .3s ease;
}

#header-logo  {
  display: block;
  padding-top: 3px;
}

.svg-logo-header {
  z-index: 2000;
  width: clamp(8.5rem, 4.175rem + 11.63vw, 18.125rem) !important;
}

/* Burger menu */
.burger-button {
  display: none;
  width: 22px;
  height: 11px;
  position: relative;
  cursor: pointer;
}

.bar {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #EDEBE4;
  transition: all 0.4s;
}

.bar:nth-child(1) {
  top: 0;
}

.bar:nth-child(2) {
  top: 5px;
  width: 60%;
  transition: opacity 0.6s, left 0.6s;
}

.bar:nth-child(3) {
  top: 10px;
}

.burger-button.open .bar:nth-child(1) {
  transform: rotate(135deg);
  top: 5px;
  background-color: #304B85;
}

.burger-button.open .bar:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.burger-button.open .bar:nth-child(3) {
  top: 5px;
  transform: rotate(-135deg);
  background-color: #304B85;
}

/* Navigation */
.nav-menu-list {
  display: flex;
  gap: 45px;
}

.nav-menu-link {
  color: #EDEBE4;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.778rem, 0.728rem + 0.25vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  position: relative;
  text-decoration: none;
  transition: color 0.5s;
}

.nav-menu-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #EDEBE4;
  transition: width 0.5s ease-in-out;
}

.nav-menu-link:hover::after {
  width: 100%;
}

/* Header button */
.header-btn-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-btn {
  padding: 10px 20px;
  color: #fff;
  background: inherit;
  border-radius: 33px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  border: 1px solid #fff;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  font-size: clamp(0.778rem, 0.728rem + 0.25vw, 1rem);
  max-width: fit-content;
  transition: all 0.6s ease;
  position: relative;
  overflow: hidden;
}

.header-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.6s ease-in-out;
}

.header-btn:hover::before {
  left: 0;
}

.header-btn:hover {
  color: #000;
  background: #fff;
  transform: scale(1.05);
  border-color: #ddd;
}

/* Lang Dropdown */
.lang-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #EDEBE4;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.778rem, 0.728rem + 0.25vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  cursor: pointer;
  background: inherit !important;
  border: none !important;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 200%;
  left: 0;
  background: #304B85;
  border-radius: 10px;
  padding: 10px 0;
  width: 150px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.dropdown-menu.show {
  display: block; 
}

.dropdown-item a {
  color: #EDEBE4;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.778rem, 0.728rem + 0.25vw, 1rem);
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dropdown-item {
  padding: 10px;
}

.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Mobile styles (under 990px) */
@media (max-width: 990px) {
  body.lock {
    overflow: hidden;
  }

  .header-container {
    padding: 0 15px;
  }

  .header-container.active-burger {
    background-color: #EDEBE4;
    transition: all .5s ease;
  }

  .header.active-burger {
    background-color: #304B85;
    transition: all .5s ease;
  }

  #header-logo.active-burger svg {
    transition: all 0.3s;
    stroke: #304B85;
  }

  #header-logo.active-burger svg path,
  #header-logo.active-burger svg rect {
    transition: stroke 0.3s;
    stroke: #304B85;
  }
  
  .nav-menu, .header-btn {
    display: none;
    position: absolute;
    top: 99%;
    left: -100%;
    height: 100vh;
    width: 100%;
    display: flex;
    transition: all 0.4s ease;
    z-index: 5;
    overflow: auto;
  }

  .header-btn {
    height: fit-content;
    top: 500%;
  }

  .nav-menu.active-burger {
    display: flex;
    position: absolute;
    left: 0;
    background-color: #304B85;
    transition: all .5s ease;
  }

  .header-btn.active-burger {
    display: flex;
    position: absolute;
    top: 400%;
    left: 35px;
    background: #EDEBE4;
    color: #304B85;
    width: 100%;
    height: fit-content;
    min-width: 360px;
    align-items: center;
    flex-direction: column;
  }

  .nav-menu-list {
    flex-direction: column;
    padding: 35px;
    gap: 30px;
    width: 95%;
  }

  .nav-menu-link {
    font-size: 16px;
  }

  .burger-button {
    display: block;
    cursor: pointer;
  }

  .header-btn-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .lang-dropdown {
    position: relative;
    display: block;
  }

  .dropdown-toggle.active-burger,
  .dropdown-toggle.active-burger svg path {
    color: #304B85;
    stroke: #304B85;
    transition: all .5s ease;
  }

  .dropdown-menu {
    position: absolute;
    top: 150%;
    left: -11px;
    width: fit-content;
  }
}

@media (max-width: 770px) {
  .header {
    padding: 15px 15px 0 15px;
  }

  .nav-menu-list {
    padding: 20px;
  }

  .dropdown-menu {
    width: fit-content;
  }

  .header-btn.active-burger {
    left: 20px;
  }
}

@media (max-width: 670px) {
  .header {
    padding: 10px 10px 0 10px;
  }

  .header-btn.active-burger {
    top: 500%;
    min-width: 300px;
  }

  .nav-menu.active-burger {
    top: 99%;
    left: 0;
  }
}

/* Main */
.main {
  padding-top: clamp(1.188rem, 0.375rem + 4.06vw, 5.25rem);
}

.main-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 30px;
}

.main-wrap-header {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  gap: clamp(0.938rem, -0.125rem + 5.31vw, 6.25rem);
}

.main-title {
  color: #304B85;
  font-family: 'Jost', sans-serif;
  font-size: clamp(3.063rem, -0.366rem + 5.36vw, 6.063rem);
  font-style: normal;
  font-weight: 400;
  line-height: 100%; 
  text-transform: uppercase;
  text-align: start;
}

.main-title-text::before {
  content: '';
  display: block;
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #304B85;
  margin-bottom: clamp(0.938rem, 0.75rem + 0.94vw, 1.875rem);
}

.main-title-text {
  color: #304B85;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 1.412rem + 1.69vw, 3.438rem);
  font-style: normal;
  font-weight: 400;
  line-height: 120%; 
  text-transform: uppercase;
  width: clamp(29.438rem, -2.848rem + 50.45vw, 57.688rem);
}

.main-wrap-midle {
  padding-top: clamp(1.25rem, 0.75rem + 2.5vw, 3.75rem);
  max-width: 1920px;
  position: relative;

}

.main-img {
  width: 100%;
  border-radius: 2%
}

.main-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  
  background: #EDEBE4;
  border-radius: 33px;
  border: none;

  color: #304B85;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  padding-top: clamp(0.625rem, 0.575rem + 0.25vw, 0.875rem);
  padding-bottom: clamp(0.625rem, 0.575rem + 0.25vw, 0.875rem);
  padding-left: clamp(1.25rem, 1.188rem + 0.31vw, 1.563rem);
  padding-right: clamp(1.25rem, 1.188rem + 0.31vw, 1.563rem);
  transition: all 0.7s ease; 
}

.main-button:hover {
  background: #304B85; 
  color: #EDEBE4; 
  transform: translateX(-50%) scale(1.05); 
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); 
}

/* main mobile */
@media (max-width: 990px) {
  .main-wrap-header {
    flex-direction: column;
  }

  .main-title-text {
    width: 100%;
  }

  .main-img {
    min-height: 279px;
  }
}

@media (max-width: 700px) {
  .main-title {
    font-size: clamp(1.938rem, 1.464rem + 2.37vw, 2.5rem);
  }
}

@media (max-width: 670px) {
  .main-container {
    padding: 0 10px;
  }
}


/* About Section */
.about-section {
  padding-top: clamp(1.563rem, 0.25rem + 6.56vw, 8.125rem);
}

.about-section-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
}

.about-section-img{
  width: 100%;
}

.about-left-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pre-section-title {
  color: #304B85;
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.125rem, 1.1rem + 0.13vw, 1.25rem);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
}

.pre-section-title::before {
  content: '';
  display: block;
  position: relative;
  height: 1px;
  width: 35px;
  background-color: #304B85;
}

.about-right-wrap {
  max-width: 915px;
  width: clamp(37rem, 13.929rem + 36.05vw, 57.188rem);
  display: flex;
  flex-direction: column;
}

.about-section-title {
  color: #304B85;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 1.175rem + 0.38vw, 1.625rem);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; 
  text-transform: uppercase;
  align-self: stretch;
}

.about-section-title::after {
  content: '';
  display: block;
  position: relative;
  height: 1px;
  width: 100%;
  background-color: #304B85;
  margin-top: 25px;
}

.about-right-main-box {
  padding-top: 60px;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.about-pre-text {
  color: #304B85;
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.125rem, 0.982rem + 0.22vw, 1.25rem);
  font-style: normal;
  font-weight: 600;
  line-height: 100%; 
  text-transform: uppercase;
  padding-bottom: 15px;
}

.about-pre-span {
  opacity: .5;
  margin-right: 10px;
}

.about-section-text {
  color: #304B85;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 0.732rem + 0.22vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.about-section-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;

  background-color: #304B85;
  border: 1px solid #304B85; 
  border-radius: 33px;
  padding: clamp(0.625rem, 0.339rem + 0.45vw, 0.875rem) 0;
  color: #EDEBE4;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 0.732rem + 0.22vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 120%; 
  cursor: pointer;
  align-items: center;
  transition: all 0.7s ease; 
}

.about-section-btn:hover {
  background: #EDEBE4; 
  color: #304B85; 
  border: 1px solid #304B85;
  transform: scale(1.01); 
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); 
}

/* About mobile */
@media (max-width: 990px) {
  .about-section-container {
    flex-direction: column;
  }

  .about-section-img{
    order: 2; 
    margin: 20px 0; 
    max-width: 100px;
  }

  .about-right-wrap {
    order: 1; 
  }
}

@media (max-width: 768px) {
  .about-right-main-box {
    flex-direction: column;
  }

  .about-right-wrap {
    width: 100%; 
  }

  .pre-section-title {
    gap: 5px;
  }
}

@media (max-width: 670px) {
  .about-section-container {
    padding: 0 10px;
  }
}

/* Info Section */
.words-section {
  background: #DBD9CF;
  margin-top: clamp(5rem, 3.5rem + 7.5vw, 12.5rem);
}

.words-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  border-top: 1px solid #304B85;
  border-bottom: 1px solid #304B85;
  z-index: 2;

  max-width: 1920px;

}

.words-wrap {
  overflow: hidden;
  padding: clamp(1.625rem, 1rem + 3.13vw, 4.75rem) 30px;
}

.info-text {
  color: #304B85; 
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.063rem, 0.525rem + 2.69vw, 3.75rem);
  font-style: normal;
  font-weight: 400;
  line-height: 100%; 
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  gap: clamp(0.5rem, 0.262rem + 1.19vw, 1.688rem);
}

.info-text:not(:last-child) {
  padding-bottom: clamp(0.313rem, 0.175rem + 0.69vw, 1rem);
}

.fade {
  opacity: 0.5;
}

.img-info {
  max-width: 100%;
  width: clamp(11.25rem, 5.737rem + 27.56vw, 38.813rem);
  position: absolute;
  z-index: 20;
  left: 50%;
  transform: translateX(-50%);
}

/* Info Mobile */



/* Project Section */
.projects-section {
  padding-top: clamp(6.25rem, 4.725rem + 7.63vw, 13.875rem);
  padding-bottom: clamp(3.125rem, 1.55rem + 7.88vw, 11rem);
}

.projects-container {
  max-width: 1920px;
  padding: 0 30px;
  margin: 0 auto;
}

.projetcs-pre-title {
  color: #304B85; 
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.25rem, 0.95rem + 1.5vw, 2.75rem);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.projetcs-pre-title::after {
  content: '';
  display: block;
  position: relative;
  height: 1px;
  width: 100%;
  background-color: #304B85;
  margin-left: 20px;
}

.projects-pre-wrap {
  margin-top: clamp(2.5rem, 1.875rem + 3.13vw, 5.625rem);
  display: flex;
  justify-content: space-between;

  gap: 40px;
}

.projects-discription-text {
  color: #304B85; 
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.125rem, 1.1rem + 0.13vw, 1.25rem);
  font-style: normal;
  font-weight: 600;
  line-height: 100%; 
  text-transform: uppercase;
  opacity: 0.5;
  width: 50%;
}

.projects-discription-title {
  color: #304B85;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 1.175rem + 0.38vw, 1.625rem);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
  max-width: 883px;
  width: 50%;
}

.projects-main-wrap {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  gap: clamp(0.938rem, -0.134rem + 1.67vw, 1.875rem);
}

.projects-img {
  width: 100%;
  max-width: 50%;
  border-radius: 3%;
}

.projects-wrap-box {
  background: #304B85;
  border-radius: clamp(0.625rem, 0.5rem + 0.63vw, 1.25rem);
  padding: clamp(0.938rem, -0.134rem + 1.67vw, 1.875rem);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  gap: 30px;
}

.projects-wrap-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.938rem, -0.134rem + 1.67vw, 1.875rem);
}

.projects-choise {
  background: inherit;
  border: 1px solid #EDEBE4;
  border-radius: clamp(1.625rem, 1.3rem + 1.63vw, 3.25rem);
  padding-top: clamp(0.438rem, 0.35rem + 0.44vw, 0.875rem);
  padding-bottom: clamp(0.438rem, 0.35rem + 0.44vw, 0.875rem);
  padding-left: clamp(0.813rem, 0.663rem + 0.75vw, 1.563rem);
  padding-right: clamp(0.813rem, 0.663rem + 0.75vw, 1.563rem);

  color: #EDEBE4;
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.813rem, 0.65rem + 0.81vw, 1.625rem);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  cursor: pointer;
  width: fit-content;
}

.projects-btn-all {
  background: #EDEBE4;
  border-radius: clamp(1.625rem, 1.3rem + 1.63vw, 3.25rem);
  padding-top: clamp(0.438rem, 0.35rem + 0.44vw, 0.875rem);
  padding-bottom: clamp(0.438rem, 0.35rem + 0.44vw, 0.875rem);
  padding-left: clamp(0.813rem, 0.663rem + 0.75vw, 1.563rem);
  padding-right: clamp(0.813rem, 0.663rem + 0.75vw, 1.563rem);
  align-items: center;
  width: fit-content;

  color: #304B85;
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.625rem, 0.55rem + 0.38vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase; 
  transition: all 0.5s ease; 
}

.projects-btn-all:hover {
  background: #304B85; 
  color: #EDEBE4; 
  border: 1px solid #EDEBE4;
  transform: scale(1.01); 
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); 
}

.projects-box-footer {
  padding-bottom: 20px;
}

.about-pre-text-projects {
  color: #EDEBE4;
}

.projects-box-text {
  color: #EDEBE4; 
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 130%;

  max-width: 574px;
  width: clamp(26.25rem, 15.25rem + 17.19vw, 35.875rem);
  padding-bottom: clamp(1.563rem, 1.25rem + 1.56vw, 3.125rem);
}

.projects-btn-footer {
  background: #304B85;
  border: 1px solid #EDEBE4;
  color: #EDEBE4;
}

.projects-btn-footer:hover {
  background: #EDEBE4; 
  color: #304B85; 
  border: 1px solid #304B85;
  transform: scale(1.01); 
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); 
}

/* Projects Mobile */
@media (max-width: 950px) {
  .projects-pre-wrap {
    flex-direction: column;
  }

  .projects-discription-title { 
    width: 100% !important;
  }

  .projects-main-wrap {
    flex-direction: column-reverse;
  }

  .projects-img {
    max-width: 100%;
  }

  .projects-wrap-box {
    gap: 10px;
    padding: 0;
  }

  .projects-wrap-box-header {
    margin-bottom: 10px;
    padding: 15px;
  }

  .projects-box-footer {
    padding: 15px;
  }

  .projects-choise {
    font-size: 13px;
  }

  .projects-box-text {
    width: 100%;
    max-width: fit-content;
  }
}

@media (max-width: 670px) {
  .projects-container {
    padding: 0 10px;
  }
}


/* WHY US */
.why-us-section {
  padding-bottom: clamp(6.25rem, 5rem + 6.25vw, 12.5rem);
}

.why-us-container {
  max-width: 1920px;
  padding: 0 30px;
  margin: 0 auto;
}

.projetcs-pre-title.reverse {
  flex-direction: row-reverse; 
}

.projetcs-pre-title.reverse::after {
  margin-left: 0; 
  margin-right: 20px; 
}

.why-us-wrap {
  margin-top: clamp(2.5rem, 1.875rem + 3.13vw, 5.625rem);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.why-us-circle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #304B85;
  border-radius: 50%;
  aspect-ratio: 1; 
  width: 100%;
  padding: clamp(1rem, 0.875rem + 2vw, 2rem); 
  box-sizing: border-box; 
}

.why-us-number {
  color: #304B85;
  font-family: 'Jost', sans-serif;
  text-align: center;
  font-size: clamp(1.125rem, 0.912rem + 1.06vw, 2.188rem);
  font-style: normal;
  font-weight: 400;
  line-height: 100%; 
  text-transform: uppercase;
  opacity: 0.5;

  padding-bottom: clamp(2.188rem, 1.288rem + 4.5vw, 6.688rem);
}

.why-us-title {
  color: #304B85;
  font-family: 'Jost', sans-serif;
  text-align: center;
  font-size: clamp(0.875rem, 0.8rem + 0.38vw, 1.25rem);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;

  padding-bottom: 20px;
}

.why-us-text {
  color: #304B85;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 130%; 

  max-width: 341px;
}

/* Why Us Mobile */
/* Why Us at 990px */
@media (max-width: 990px) {
  .why-us-wrap {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .why-us-circle {
    flex-basis: 48%; 
  }

  .why-us-circle:nth-child(3) {
    justify-content: center;
    margin: 0 auto;
  }
}


@media (max-width: 768px) {
  .why-us-wrap {
    flex-direction: column;
  }
}

@media (max-width: 670px) {
  .why-us-container {
    padding: 0 10px;
  }
}

/* Submit */
.submit-section-container {
  max-width: 1920px;
  padding: 0 30px;
  display: flex;
  gap: 30px;
  margin: 0 auto;
}

.submit-section-container img{
  width: 100%;
  max-width: 50%;
  border-radius: 3%
}

.submit-form-wrap {
  border: 1px solid #304B85;
  border-radius: 20px;
  padding: 30px;
}

.pre-form-title {
  color: #304B85;
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.938rem, -0.563rem + 3.91vw, 4.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  padding-bottom: clamp(2.5rem, 1.071rem + 2.23vw, 3.75rem);
}

.input-field {
  display: flex;
  gap: clamp(1.25rem, -0.179rem + 2.23vw, 2.5rem);
}


/* Style for Inputs */
.input-field input,
.input-field-second input,
.input-field-second textarea {
  background: inherit;
  border: none;
  border-bottom: 1px solid #304B85;
  padding: 10px 0 10px 10px;
  width: 100%;

  color: #304B85;
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.125rem, 0.554rem + 0.89vw, 1.625rem);
  font-style: normal;
  font-weight: 300;
  line-height: 100%; 
  outline: none;
}

.input-field input::placeholder,
.input-field-second input::placeholder,
.input-field-second textarea::placeholder {
  text-transform: uppercase;
  color: #304B85;
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.125rem, 0.554rem + 0.89vw, 1.625rem);
  font-style: normal;
  font-weight: 300;
  line-height: 100%; 
  opacity: 0.5;
}

.input-field-second input, 
.input-field-second textarea {
  margin-top: clamp(1.25rem, -0.179rem + 2.23vw, 2.5rem);
}

.input-field-second textarea {
  resize: none;
  padding-bottom: 0;
}

.input-checkbox-field {
  margin-top: clamp(1.25rem, -0.179rem + 2.23vw, 2.5rem);
}

.input-privacy-check {
  color: #304B85;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.125rem, 0.554rem + 0.89vw, 1.625rem);
  font-style: normal;
  font-weight: 300;
  line-height: 100%; 
  padding-bottom: 10px;
}

.input-checkbox-field label { 
  text-align: center;
  color: #304B85;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.75rem, 0.464rem + 0.45vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 130%; 
}

.privacy-terms-link {
  color: #304B85;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.75rem, 0.464rem + 0.45vw, 1rem);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  transition: all .5s;
}

.privacy-terms-link:hover {
  text-decoration: underline;
}

.form-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(3.125rem, 0.982rem + 3.35vw, 5rem);

  background: #304B85;
  border: 1px solid #304B85;
  border-radius: 33px;
  color: #EDEBE4;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; 
  padding: 14px 0;
  transition: all .5s;

}

.form-submit-btn:hover {
  background: #EDEBE4; 
  color: #304B85; 

}

/* Submit Mobile */
@media (max-width: 768px) {
  .submit-section-container {
    flex-direction: column;
  }

  .submit-section-container img {
    max-width: 100%;
  }

  .submit-form-wrap {
    padding: 15px;
  }

  .input-field {
    flex-direction: column;
  }

  .input-field input, .input-field-second input, .input-field-second textarea {
    padding: 5px 0 5px 5px;
  }

  .form-submit-btn {
    margin-top: 10px;
    padding: 12px 0;
  }
}

@media (max-width: 670px) {
  .submit-section-container {
    padding: 0 10px;
  }
}

/* Our Mission */
.mission-section {
  padding: clamp(6.25rem, 5.825rem + 2.13vw, 8.375rem) 0;
}

.mission-container {
  max-width: 1920px;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
}

.pre-section-mission {
  padding-top: 10px;
}

.mission-wrap {
  display: flex;
  align-items: flex-end;
}

.mission-title {
  color: #304B85;
  font-family: 'Jost', sans-serif;
  font-size: clamp(2.563rem, 1.563rem + 5vw, 7.563rem);
  font-style: normal;
  font-weight: 400;
  line-height: 103%;
  text-transform: uppercase;
  max-width: 941px;
}

.mission-wrap img {
  max-width: 250px;
  width: clamp(5.563rem, 3.55rem + 10.06vw, 15.625rem);
}

/* Our Mission Mobile */
@media (max-width: 990px) {
  .mission-container {
    flex-direction: column;
    gap: 20px;  
  }
}

@media (max-width: 768px) {
  .mission-wrap {
    display: block;
  }

  .mission-wrap img {
    width: 100%;
  }

  .mission-title {
    font-size: clamp(1.938rem, 1.464rem + 2.37vw, 2.5rem);
    padding-bottom: 20px;
  }
}

@media (max-width: 670px) {
  .mission-container {
    padding: 0 10px;
  }
}

/* POPUP */
.popup {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.popup-content {
  max-width: 45%;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #304B85;
  background: #EDEBE4;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: auto;
}

.popup-title {
  color: #304B85;
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.563rem, -0.58rem + 3.35vw, 3.438rem);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  padding-bottom: clamp(2.5rem, 1.071rem + 2.23vw, 3.75rem);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  color: #304B85;
  font-size: 30px; 
  line-height: 22px;
}

/* POPUP Mobile */
@media (max-width: 990px) {
  .popup-content {
    max-height: 70vh;
  }
}

@media (max-width: 700px) {
  .popup-content {
    max-width: 80%;
    width: 100%;
    padding: 15px;
  }

  .popup-title {
    padding-bottom: 20px;
  }
}
/* END POPUP */

/* FOOTER */
.footer {
  padding-top: clamp(6.25rem, 5rem + 6.25vw, 12.5rem);
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
}

.footer-container {
  background: #304B85;
  border-radius: 10px;
  max-width: 1920px;
  margin: 0 auto;
  padding: 30px;
}

.footer-top-wrap {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding-bottom: clamp(2.188rem, 1.988rem + 1vw, 3.188rem);
}

.footer-top-left {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 30px;
}

.footer-top-left img {
  width: clamp(2.5rem, 2.175rem + 1.63vw, 4.125rem);
  max-width: 100%;
}

.footer-top-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 10px;
}

.footer-top-logo-wrap img {
  max-width: 100%;
  width: clamp(16.438rem, 12.038rem + 22vw, 38.438rem);
}

.footer-nav-menu {
  display: flex;
  gap: clamp(0.625rem, 0.375rem + 1.25vw, 1.875rem);
}

.footer-menu-link {
  color: #EDEBE4;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  transition: color .5s;
  position: relative; 
  text-decoration: none; 
}

.footer-menu-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px; 
  background-color: #EDEBE4; 
  transition: width 0.5s ease-in-out; 
}

.footer-menu-link:hover::after {
  width: 100%; 
}

.footer-top-right-wrap {
  display: flex;
  gap: clamp(1.25rem, -1.607rem + 4.46vw, 3.75rem);
}

.footer-right-wrapper-phone {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-loc-text {
  color: #EDEBE4;
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.125rem, 1.025rem + 0.5vw, 1.625rem);
  font-style: normal;
  font-weight: 500;
  line-height: 100%; 
  text-transform: uppercase;
  padding-bottom: 20px;
}

.footer-address {
  color: #EDEBE4;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; 
  max-width: 237px;
  position: relative;
  transition: all .5s;
}

.footer-address-tel {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-address-tel::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px; 
  background-color: #EDEBE4; 
  transition: width 0.5s ease-in-out; 
}

.footer-address-tel:hover::after {
  width: 78%; 
}

.footer-bottom-extra-wrap::before {
  content: '';
  display: block;
  position: relative;
  height: 1px;
  width: 100%;
  background-color: #EDEBE4;
}

.footer-bottom-wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  align-items: center;
}

.footer-terms-list {
  display: flex;
  gap: 10px;
}

.footer-terms-item:not(:last-child) {
  border-right: 1px solid rgba(237, 235, 228, 0.5); 
}

.footer-terms-link {
  color: #EDEBE4;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; 
  transition: all .5s;
  position: relative;
}

.footer-terms-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px; 
  background-color: #EDEBE4; 
  transition: width 0.5s ease-in-out; 
}

.footer-terms-link:hover::after {
  width: 100%; 
}

.footer-copyright {
  color: #EDEBE4;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; 
}

/* Footer Mobile */
@media (max-width: 1440px) {
  .footer-top-left img {
    width: 50px;
  }

  .footer-top-logo-wrap img {
    width: 420px;
  }

  .footer-menu-link {
    font-size: 14px;
  }

  .footer-address {
    font-size: 14px;
  }

  .footer-terms-link {
    font-size: 14px;
  }

  .footer-copyright {
    font-size: 14px;
  }
}

@media (max-width: 1275px) {
  .footer-top-left img {
    max-width: 45px;
    width: 100%;
  }

  .footer-top-logo-wrap img {
    max-width: 370px;
    width: 100%;
  }

  .footer-top-left {
    gap: 15px;
  }

  .footer-top-right-wrap {
    flex-direction: column;
  }

  .footer-loc-text {
    font-size: 18px;
  }
}

@media (max-width: 700px) {
  .footer-container {
    padding: 15px;
  }

  .footer-top-wrap {
    flex-direction: column;
  }

  .footer-top-left {
    position: relative;
  }

  .footer-nav-menu {
    position: absolute;
    top: 120%;
    left: 0;
  }

  .footer-top-right {
    margin-top: 50px;
  }

  .footer-loc-text {
    padding-bottom: 10px;
  }

  .footer-bottom-wrap {
    flex-direction: column;
    gap: 19px;
    align-items: baseline;
  }

  .footer-terms-list {
    gap: 5px;
    flex-wrap: wrap;
  }

  .footer-terms-link {
    font-size: 12px;
  }

  .footer-copyright {
    font-size: 12px;
  }
}

@media (max-width: 670px) {
  .footer {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 361px) {
  .footer-top-left img {
    max-width: 32px;
  }

  .footer-top-logo-wrap img {
    max-width: 175px;
  }
}

/* cookie */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 50%; 
  transform: translateX(-50%); 
  width: 80%;
  height: 30%;
  background-color: #EDEBE4; 
  color: #304B85; 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 1000; 
  transition: bottom 0.5s ease;
  border-radius: 20px;
  flex-direction: column;
  font-size: 20px;
}

.cookie-banner.show {
  bottom: 0;
}

.accept-cookies {
  margin-top: 30px;
  padding: 10px 20px;
  background-color: #304B85; 
  color: #EDEBE4;
  border: 1px solid #EDEBE4;
  border-radius: 20px;
  transition: all .3s;
  font-size: 18px;
}

.accept-cookies:hover {
  color: #304B85;
  background: #EDEBE4;
  border: 1px solid #304B85;
}