body {
  padding: 0 0 24px;
}


header.header-2 {
  padding: 24px 20px;
}

@media screen and (min-width:1200px) {
  header.header-2 {
    padding: 20px 15px;
  }
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

user agent stylesheet header {
  display: block;
  unicode-bidi: isolate;
}

body {
  font-family: "Noto Sans", sans-serif;
}

:root {
  --cTextHeader: #fff;
  --bgcHeader: #fff;
}

/* Contact */

.wrapper_contact {
  padding: 0 20px;
  /* max-width: 80%; */
}

@media screen and (min-width: 1200px) {
  .wrapper_contact {
    padding: 0;
    max-width: 794px;
  }
}

.wrapper_contact form>* {
  display: block;
}

.wrapper_contact form>button {
  display: flex;
}

.wrapper_contact form>* {
  margin-bottom: 36px;
}

.wrapper_contact form input,
.wrapper_contact form textarea {
  display: block;
  width: 100%;
  height: 64px;
  border-radius: 8px;
  border: 1px solid rgba(216, 216, 216, 1);
  margin-top: 8px;
  padding: 0 12px;
}

.wrapper_contact form textarea {
  height: 240px;
  resize: none;
  padding-top: 10px;
  padding-bottom: 10px;
}

.wrapper_contact>div {
  margin: 0 auto;
  text-align: center;
}

.button {
color: rgb(0, 0, 0);
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    box-shadow: rgba(43, 164, 209, 0.3) 0px 5px 15px;
    font-family: SVN-Gilroy;
    background-color: #6ecdc5;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    padding: 18px 40px;
    border-radius: 16px;
    transition: 0.3s;
    gap: 10px;
    margin: 36px auto 24px;
}

.button:hover {
  background: linear-gradient(135deg, #6ecdc5, #5eafa9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(43, 164, 209, 0.4);
}

.button::after {
    content: "→";
    font-size: 18px;
    transition: transform 0.3s;
}

.button:hover::after {
    transform: translateX(3px);
}

.wrapper_contact .form_title {
  font-size: 36px;
  font-weight: 700;
}

.wrapper_contact form span {
  color: red;
}

.logo img {
  display: none;
}

@media screen and (min-width: 1200px) {
  .navbar {
    padding: 20px 50px;
  }

  #bar {
    display: none;
  }

  .logo img {
    display: block;
  }
}

@media screen and (max-width: 1199px) {
  .pages>a {
    display: none;
  }

  .nav-links {
    display: none;
    gap: 20px;
    flex-direction: column;
    width: 65%;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgb(255 255 255);
    padding: 36px 22px 0;
  }

  .nav-links.show+.shadown {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(43, 43, 43, 0.502);
    z-index: -1;
  }
}

@media screen and (min-width: 1200px) {
  .nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    transition: all 0.3s ease;
    align-items: center;
    padding: 0;
  }
}

.nav-links li {
  position: relative;
  display: block;
  padding: 10px;
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .nav-links li {
    width: unset;
  }
}

@media screen and (max-width: 1199px) {
  .nav-links li:not(:last-child) {
    margin-bottom: 8px;
  }
}

.header-2 .nav-links a {
  color: #5C636B;
  text-decoration: none;
  font-weight: 300;
  padding: 3px 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1200px) {
  .header-2 .nav-links a {
    color: white;
    font-weight: 300;
    font-size: 1.06vw;
    padding: 8px 15px;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    /* transform: translateY(-2px); */
  }
}

.nav-links a.active {
  position: relative;
  font-weight: 700;
  color: #00071A;
  display: block;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  height: 2px;
  background-color: rgba(14, 168, 218, 1);
}

@media screen and (max-width: 1199px) {
  .nav-links .nav-close {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media screen and (min-width: 1200px) {
  .nav-links a.active {
    display: inline-block;
    color: #FFFFFF;
  }

  .nav-links a.active::after {
    content: "";
    position: absolute;
    width: 80%;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background-color: rgba(14, 168, 218, 1);
  }

  .nav-links .nav-close {
    display: none;
  }
}

.nav-close a {
  flex: 1;
}

@media screen and (max-width: 1199px) {
  .pages {
    flex-direction: row-reverse;
  }
}
