html {
  overflow-x: hidden;
}

body {
  font-family: Tahoma, Segoe UI, system-ui, -apple-system, sans-serif;
  font-size: 17px;
  margin: 0;
  overflow: clip;
}

.content {
  max-width: 90%;
  width: 1140px;
  margin: 0 auto;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

h1, h2 {
  color: #003995;
}

h2 {
  font-size: 2.5rem;
  font-weight: 400;
}

p {
  color: #555;
  line-height: 1.6rem;
}
p a {
  color: #003995;
  text-decoration: underline;
}

input,
textarea {
  color: #555;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  height: 70px;
  padding: 0 16px;
  border: none;
  outline: none;
  width: 100%;
  border: 1px solid #eee;
}
input:focus,
textarea:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

ul {
  list-style: none;
}

strong {
  color: black;
}

button {
  background: #fe4f58;
  border: none;
  display: flex;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  color: white;
  height: 50px;
  font-size: 1.2rem;
}
button:hover {
  cursor: pointer;
  opacity: 0.8;
}

hr {
  border-top: 1px solid #eee;
}

.onlyMobile {
  display: none;
}

.row {
  display: flex;
  gap: 30px;
}
.row .col {
  flex: 1 1 0px;
}

.notification {
  border: 1px solid #0078a0;
  width: 100%;
  position: fixed;
  top: 0;
  padding: 1rem;
  font-size: 1rem;
  background-color: #008cba;
  color: white;
  text-align: center;
  z-index: 9;
}
.notification.alert-success {
  background-color: #43ac6a;
  border-color: #3a945b;
}

.hightlight {
  border-left: 3px solid #003995;
  padding-left: 20px;
  font-size: 1rem;
  margin-top: 80px;
}

.menu svg {
  fill: #555;
}
.menu:hover {
  cursor: pointer;
  opacity: 0.8;
}

header {
  padding: 24px 0;
  position: sticky;
  top: 0;
  background: #fafafa;
  z-index: 9;
  border-bottom: 1px solid #eee;
}
header .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo img {
  height: 30px;
}
header nav ul {
  padding: 0;
  margin: 0;
  display: flex;
  list-style: none;
  gap: 40px;
}
header nav ul a {
  text-decoration: none;
  color: #555;
}
header nav ul a:hover {
  text-decoration: underline;
}

footer {
  height: 50px;
  position: relative;
  background: #003995;
  text-align: center;
  color: #fff;
  margin-top: 150px;
  font-size: 0.9rem;
}
footer ::after {
  content: "";
  width: 120%;
  height: 70px;
  left: -10%;
  top: -46px;
  position: absolute;
  z-index: -1;
  background: #003995;
  transform: rotate(-1.3deg);
}
footer strong {
  color: white;
  font-size: 1rem;
  margin-right: 30px;
}

.breadcrumb {
  background: #fafafa;
  margin-bottom: 20px;
  float: left;
  width: 100%;
}
.breadcrumb ul {
  padding: 0;
  display: flex;
  gap: 10px;
  color: #555;
}
.breadcrumb ul li {
  font-size: 0.9rem;
}
.breadcrumb ul li a {
  color: #003995;
}
.breadcrumb ul li:after {
  content: "/";
  margin-left: 10px;
  text-decoration: none !important;
}
.breadcrumb ul li:last-child::after {
  display: none;
}

.roundList {
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  list-style: none !important;
}
.roundList li a {
  display: flex;
  padding: 10px 15px;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 30px;
  color: #333;
  text-decoration: none;
  align-items: center;
  gap: 10px;
}
.roundList li a img {
  height: 30px;
  border-radius: 50%;
  border: 1px solid white;
}
.roundList li a:hover {
  background: #f1f1f1;
}

.homepage header {
  border: none;
}

.banner {
  height: 90vh;
  display: flex;
  background-color: #fafafa;
  background-image: url("/images/bgBanner.png");
  background-position: right 0 bottom 18vh;
  background-repeat: no-repeat;
  padding-top: 10vh;
}
.banner .data {
  width: 50%;
}
.banner .data h1 {
  font-size: 3.8rem;
  font-weight: 400;
  margin: 0 0 20px;
  line-height: 4rem;
}
.banner .data form.search {
  width: 80%;
}

.states_wrapper {
  position: relative;
  margin-top: -20vh;
  margin-bottom: 70px;
}
.states_wrapper:after {
  content: "";
  width: 120%;
  height: 85%;
  left: -10%;
  top: 8vh;
  position: absolute;
  z-index: 1;
  background: #fe4f58;
  transform: rotate(-6deg);
}
.states_wrapper .data {
  margin-top: 0px;
  position: relative;
  box-shadow: 0px 42px 62px rgba(0, 0, 0, 0.1);
  background: white;
  border-radius: 10px;
  padding: 50px;
  z-index: 2;
  text-align: center;
}
.states_wrapper .data h2 {
  margin: 0;
}

.data_wrapper {
  min-height: 70vh;
}
.data_wrapper .title {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 15px;
}
.data_wrapper .title .flag {
  height: 40px;
  border-radius: 50%;
}
.data_wrapper ul {
  list-style: disc;
  color: #555;
  line-height: 30px;
}

.search {
  margin-top: 30px;
}
.search .group {
  position: relative;
}
.search .group input {
  font-size: 1.2rem;
}
.search .group button {
  height: 30px;
  position: absolute;
  top: 10%;
  right: 0;
  transform: translateX(-10%);
  border-radius: 6px;
  height: 80%;
  width: 55px;
  align-items: center;
  justify-content: center;
}
.search .group button svg {
  height: 28px;
  width: auto;
}
.search .group button svg path {
  fill: white;
}

.formContact {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.formContact label {
  color: #555;
  margin-bottom: 10px;
  width: 100%;
  display: inline-block;
}
.formContact input {
  height: 56px;
  font-size: 1rem;
}
.formContact textarea {
  font-size: 1rem;
  height: 140px;
  padding: 16px;
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .onlyMobile {
    display: block;
  }
  header {
    padding: 16px 0;
  }
  header nav {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
  }
  header nav ul {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 65vw;
    background: #555;
    padding: 40px 0 0 30px;
  }
  header nav ul li a {
    color: white;
  }
  header nav:after {
    content: "";
    position: absolute;
    top: 0;
    right: -35vw;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(0, 0, 0, 0.3);
  }
  header .logo img {
    height: 25px;
  }
  footer {
    height: 100px;
    line-height: 1.5rem;
  }
  .row {
    flex-direction: column;
  }
  .hightlight {
    margin-top: 40px;
  }
  .breadcrumb .content {
    overflow: scroll;
    max-width: 100%;
    margin: 0;
  }
  .breadcrumb .content ul {
    white-space: nowrap;
    margin-right: 10px;
  }
  .breadcrumb .content ul li:first-child {
    padding-left: 5%;
  }
  .breadcrumb .content ul li:last-child {
    padding-right: 5%;
  }
  .banner {
    padding-top: 5vh;
    background-size: 100% auto;
    background-position: bottom;
    height: 65vh;
  }
  .banner .data {
    width: 100%;
  }
  .banner .data h1 {
    font-size: 2.2rem;
    line-height: 2.4rem;
  }
  .roundList {
    margin-top: 30px;
    grid-template-columns: repeat(1, 1fr);
  }
  .search .group input {
    font-size: 1rem;
  }
  .states_wrapper {
    margin-top: 0;
    background: white;
    margin-bottom: 20px;
  }
  .states_wrapper:after {
    display: none;
  }
  .states_wrapper .data {
    padding: 30px 0;
    box-shadow: none;
  }
  .data_wrapper .title {
    gap: 10px;
    align-items: flex-start;
  }
  .data_wrapper .title .flag {
    height: 25px;
    margin-top: 4px;
  }
  .data_wrapper .title h1 {
    margin: 0;
  }
}
