@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Light.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  color: #2D5F7A;
  -webkit-tap-highlight-color: transparent;
  font-family: 'Inter', sans-serif;
}
html.pre-translated body {
  visibility: hidden;
}

html {
  font-size: 16px;
}

.navbar {
  display: block;
  text-align: center;
  padding-top: 10px;
}

.logo img {
  height: 60px;
  cursor: pointer;
}

.logo {
  cursor: default;
}
.dropdown {
  margin: 0 10px 0;
  }
.menu-button {
  display: block;
  width: 100%;
  border: none;
  padding: 10px;
  margin-top: 5px;
  background-color: #f2f2f257;
/* border: 0.4px solid #cfcfcf82; */
  text-align: center;
  cursor: pointer;
  font-size: 1rem;
}

.menu-button.active {
    color: #6db17a;
}

.navlinkcontact {
  display: none;
}

.drop-list {
  display: none;
}
.drop-list li {
  padding: 15px;
  border-block-end: 1px solid rgba(203, 201, 201, 0.161);
  cursor: default;
}

.drop-list a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: default;
}

.drop-list li:hover {
  background-color: rgba(203, 201, 201, 0.161);
}


.nav-link.active {
  color: #6db17a;
}


.has-submenu {
  position: relative;
}

.icon-caret {
  position: absolute;
  text-align: center;
  padding: 19px;
  right: 0;
  top: 1px;
  
  width: 50px !important;
  height: 50px;
  transition: transform 0.3s ease;
  transform-origin: center;
  transition: transform 0.3s ease;
  
  transform: rotate(-90deg);
  
  cursor: default;

}



.icon-caret.open {
  transform: rotate(0deg);
  
}



.submenu {
  display: none;
  
  list-style-type: none;
  margin: 0;
  padding: 0;
  top: 100%;
  left: 0;
  background-color: none;
}


.submenu.open {
  display: block;
  
  z-index: 1;
}

.submenu a {
  margin: 0;
  padding: 5px;
  color: #7a807db3;
  font-size: 0.875rem;
}

.submenu li {
  margin: 5px;
  padding: 0;
  color: #7a807db3;
  border-block-end: none;
  transition: transform 0.2s ease;
}



#contact-form {
  display: flex;
  flex-direction: column; 
}


.container {
  padding: 40px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  align-self: center;
}

.header1 {
   display: none;
  justify-content: center;
  margin: 10px 14px 5px;
  padding-bottom: 10px;
  position: relative;
}

.header1 span {
  /* color: #827777; */
  font-size: 1.2rem;
  cursor: default;
}


.divider {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


h1 {
  font-size: 1.25rem;
  cursor: default;
  margin-bottom: 20px;
}


p {
  margin-bottom: 10px;
  text-align: start;
  cursor: default;
}


.form_1 {
  margin-top: 5px;
}


.form-group {
  position: relative;
  margin: 10px 0;
  text-align: left;
}


.form-group input {
  width: 100%;
  padding: 10px 10px;
  font-size: 0.875rem;
  border: 1px solid #ccc;
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box; 
}



.form-group input::placeholder {
  color: #a19e9e; 
  font-size: 0.875rem;
}

.form-group textarea {
  border-radius: 0;
}

.form-group textarea::placeholder {
  color: #a19e9e; 
  font-size: 0.875rem;
}


.form-group label {
  position: absolute;
  top: 20px; 
  left: 10px;
    font-size: 0.875rem;
  color: #aaa;
  pointer-events: none; 
  transition: all 0.3s ease;
  transform: translateY(10px);
  opacity: 0;
}




.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
  top: -10px; 
  left: 10px;
    font-size: 0.875rem;
  color: #52a88d;
  background: white; 
  padding: 0 5px; 
  transform: translateY(0);
  opacity: 1;
}

.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px; 
  left: 10px;
    font-size: 0.875rem;
  color: #52a88d;
  background: white; 
  padding: 0 5px; 
  transform: translateY(0);
  opacity: 1;
}


.form-group input:focus::placeholder {
  opacity: 0; 
}
.form-group textarea:focus::placeholder {
  opacity: 0; 
}


input[type="text"],
input[type="email"],
textarea {
  font-family: inherit; 
  color: inherit;       
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  color: #2D5F7A;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #71c3a9;
  outline: none;
}


textarea {
  resize: vertical;
}


input[type="checkbox"] {
  appearance: none; 
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 14px;
  height: 14px;
  border: 1px solid #333; 
  background-color: #fff;
  cursor: pointer;
  margin: 0;
  border-radius: 0; 
  display: inline-block;
  position: relative;
  vertical-align: middle;
}


input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}


input[type="checkbox"]:hover {
  border-color: #000;
}


@keyframes dots {
  0% {
    content: '';
  }
  33% {
    content: '.';
  }
  66% {
    content: '..';
  }
  100% {
    content: '...';
  }
}


#submit-button {
  position: relative;
  box-sizing: border-box; 
  width: 100%;
  background-color: #2D5F7A;
  color: white;
  border: none;
  font-size: 1rem;
  padding: 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1); 
}

#submit-button:hover {
  background-color: #77bca6
}

#submit-button.loading {
  width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 0; 
    background-color: #77bca6;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); 
}

#submit-button.loading::after {
  content: '...';
  animation: dots 1.2s steps(3, end) infinite;
  color: white;
  font-size: 1rem; 
  display: inline-block;
  position: absolute; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}


#submit-button:not(.loading) {
  transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1); 
}


#success-notification {
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 10px; 
  width: 100vw;
  position: absolute;
  left: 0;
  margin: 20px auto;
  padding: 5px 5px;
  background-color: #e6f7ee;
  border: 1px solid none;
  color: #2d5f7a;
  font-size: 14px;
  transition: opacity 0.5s ease;
  opacity: 0; 
  visibility: hidden;
  text-align: center; 
}


#success-notification.visible {
  opacity: 1;
  visibility: visible;
}


.circle-check {
  width: 20px;
  height: 20px;
  border: 1px solid #77bca6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #9bdac6;
  color: white;
  font-size: 1rem;
  font-weight: bold;
}


#success-notification p {
  margin: 0;
  font-size: 1rem; 
  color: #2d5f7a; 
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding-top: 70px;
  padding-bottom: 30px;
}


.inst-you-link a {
  display: block;
  line-height: 0;
  align-content: center;
}
.bi-youtube {
  padding-top: 3px;
}

.container-link-policy {
  position: relative;
  display: flex;
  flex: 1;
  margin-left: 15px;
}

.link-policy {
  position: absolute;
  display: none;
  flex-direction: column;
  align-content: center;
  bottom: 120%;
  padding-bottom: 10px;
}
.link-policy span {
  white-space: nowrap;
  color: #959595;
  transition: color 0.2s;
  font-size: 14px;
}
.link-policy span:hover {
color: #292929;
}
.link-policy a {
  padding-bottom: 5px;
}

.toggle-icon-document {
  cursor: pointer;
  width: 28px;
  height: 28px;
}

.icon-container {
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.icon-container svg path {
  transition: fill 0.3s ease;
}

.icon-container:hover svg path {
  fill: #4A90E2;
}


@media (min-width: 768px) {
  .navbar {
      all: unset;
  }

  .menu-button {
      display: none;
  }

  .header1 {
   display: flex;
}

  .has-submenu {
    margin-right: 15px;
}

  .navbar {
      display: grid;
      grid-template-areas:
      'logo drop-list';
      padding-top: 10px;
      padding-right: 80px;
      margin-left: 20px;
      align-items: center;
  }

  .drop-list li {
      border-block-end: none;
      transition: transform 0.3s ease, color 0.3s ease;
  }

  .drop-list li:hover {
      background-color: white;
  }

  .logo img {
      transition: transform 0.3s ease;
  }

  .logo :hover {
      transform: scale(1.2);
  }


  .icon-caret {
    transform: unset;
    transition: unset;
    right: -20px;
  }

  .icon-caret.open {
    transform: rotate(180deg);
  }

  .submenu {
    position: absolute;
    list-style-type: none;
    margin: 0;
    padding: 0;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fcfbfb;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2), 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .submenu a {
    text-align: center;
  }

  .submenu li {
    margin: 0;
    transition: none;
  }

  .submenu li :hover {
    background-color: #f1f0f0d4;
  }
  
  .nav-link {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
  }

  
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #6db17a;
    transition: width 0.3s ease, left 0.3s ease;
    transform: translateX(-50%);
  }

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

.loading-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-modal.hidden {
  display: none;
}

.loading-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

