:root {
  --white: #ffffff;
  --black: #000000;
  --light-blue: #7db9e8;
  --dark-blue: #002c4a;
  --form-blue: #154174;
  --modal-blue: #095b92;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: "Play", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul {
  list-style-type: none;
}

.container {
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
}

.button {
  display: block;
  padding: 16px 32px;
  color: var(--white);
  font-weight: 600;
  background-color: transparent;
  border: 2px solid var(--white);
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
}

.button:hover {
  color: var(--black);
  background-color: var(--light-blue);
  border: 2px solid var(--light-blue);
}

.link {
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.link:hover {
  color: var(--light-blue);
}

.section {
  min-height: 800px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-title {
  margin: 0;
  padding-top: 80px;
  padding-bottom: 40px;
  font-size: 60px;
  font-weight: 800;
  text-align: center;
}

.accent {
  font-weight: 900;
}

.text-centered {
  text-align: center;
}

.text-h3 {
  font-size: 18px;
}

.header {
  position: sticky;
  top: 0;
  background-color: var(--dark-blue);
  color: var(--white);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.header-container {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 32px;
}

.logo-image {
  width: 40px;
  height: 40px;
  padding: 5px 0 0 20px;
}

.header-nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  gap: 40px;
  justify-content: space-around;
}

.header-menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-grow: 1;
  gap: 50px;
  padding: 0;
  margin: 0;
}

.hero-section {
  position: relative;

  background-image: url(../images/background/hero-background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9));
}

.hero-container {
  position: relative;

  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 50px;
  color: var(--white);
}

.hero-logo {
  width: 180px;
}

.hero-section-title {
  text-align: center;
  font-size: 70px;
  font-weight: 900;
  margin: 0;
}

.hero-section-text {
  width: 100%;
  max-width: 650px;
}

.hero-images {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  gap: 70px;
}

.hero-icons {
  fill: var(--white);
}

.about-section {
  color: var(--black);
  padding-bottom: 80px;
}

.about-content {
  text-align: justify;
  margin-bottom: 15px;
  margin-top: 0;
}

.about-span {
  font-size: 14px;
}

.areas-section {
  position: relative;

  background-image: url(../images/background/areas-background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 80px;
}

.areas-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
}

.areas-container {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.areas-title {
  position: relative;
  color: var(--white);
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}

.areas-item {
  flex-basis: calc((100% - 40px) / 4);
  padding-bottom: 20px;
}

.areas-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 190px;
  padding: 20px;
  background-color: rgb(0, 0, 0);
  color: var(--white);
  border-radius: 30px;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.areas-box:hover {
  background-color: var(--light-blue);
  transform: scale(1.1);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.7);
}

.areas-icon {
  fill: var(--white);
  display: flex;
  justify-content: flex-start;
  padding: 10px;
}

.steps-section {
  /* padding: 80px 0 80px 0; */
  min-height: 600px;
}

.steps-head-text {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.steps-container {
  position: relative;
  width: 100%;
  height: 350px;
  margin: 0;
}

.steps {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: var(--white);
  padding: 10px;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.steps:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.7);
}

.step-1 {
  top: 40%;
  left: 5%;
}

.step-2 {
  top: 10%;
  left: 22.5%;
}

.step-3 {
  left: 42.5%;
}

.step-4 {
  top: 10%;
  right: 22.5%;
}

.step-5 {
  top: 40%;
  right: 5%;
}

.steps-container::after {
  content: "Ми гарантуємо постійний супровід менеджера на всіх етапах проходження експертизи";
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
}

.steps-image {
  width: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.steps-text {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}

.documents-section {
  position: relative;
  background-image: url(../images/background/documents-background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 100px;
  color: var(--white);
}

.documents-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
}

.documents-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.section-title.docs {
  font-size: 50px;
}

.documents-download {
  display: flex;
  font-weight: 500;
  gap: 40px;
}

.document-img {
  width: 70px;
}

.document-link {
  text-decoration: none;
  font-size: 20px;
  color: var(--white);
  text-align: center;
  transition: color 0.3s;
}

.document-link:hover {
  color: var(--light-blue);
}

.expertise-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.expertise-buttons-link {
  text-decoration: none;
  color: var(--white);
  font-size: 15px;
  padding: 15px 25px;
}

.contact-container {
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
  gap: 40px;
}

.contact-map {
  flex-shrink: 0;
  border-radius: 32px;
  width: 600px;
  height: 480px;
  border: 2px solid var(--black);
}

.contact-form {
  position: relative;
  width: 100%;
  max-width: 520px;
  background-color: var(--light-blue);
  padding: 20px 40px;
  border-radius: 32px;
}

.form-p {
  font-weight: 600;
  font-size: 40px;
  text-align: center;
  margin-bottom: 10px;
}

.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.form-label {
  position: absolute;
  top: 10px;
  left: 30px;
}

.form-input {
  padding: 18px 30px;
  width: 100%;
  max-width: 300px;
  font-size: 13px;
  border: 2px solid var(--form-blue);
  color: var(--white);
  border-radius: 32px;
  background-color: transparent;
}

.form-input:focus {
  background-color: var(--form-blue);
  outline: none;
}

.form-input::placeholder {
  color: var(--white);
  font-size: 13px;
}

.form-button {
  display: block;
  margin: 0 auto 8px;
  border-color: var(--form-blue);
}

.form-button:hover {
  background-color: var(--dark-blue);
  color: var(--white);
  border: 2px solid var(--dark-blue);
}

.footer {
  background-color: var(--dark-blue);
  color: var(--white);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 25px 10px;
}

.footer-main {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.footer-logo,
.footer-contact,
.footer-list {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.footer-logo {
  align-items: center;
}

.footer-logo a {
  height: 60px;
}

.logo {
  width: 60px;
}

.footer-link {
  display: flex;
  align-items: center;
}

.footer-icon {
  fill: var(--white);
  padding-right: 15px;
  transition: fill 0.3s;
  flex-shrink: 0;
}

hr {
  margin: 0;
}

.copyright {
  margin: 0 auto;
  font-size: 15px;
  color: #c0c0c0;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition:
    opacity 0.3s,
    visibility 0.3s;
}

.backdrop.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
    url(../images/background/modal-background.jpg);
  background-position: center;
  background-size: cover;
  color: var(--white);
  border-radius: 32px;
  padding: 30px;
}

.modal-btn-close {
  position: absolute;
  background: transparent;
  cursor: pointer;
  top: 8%;
  right: 8%;
  border: none;
}

.btn-close {
  width: 25px;
  height: 25px;
}

.modal-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100%;
}

.modal-b {
  flex-direction: column;
}

.modal-h2 {
  font-weight: 600;
  font-size: 40px;
  text-align: center;
  padding-bottom: 20px;
}

.modal-buttons {
  font-size: 17px;
  background-color: var(--light-blue);
}

.modal-buttons:hover {
  background-color: var(--modal-blue);
  border: 2px solid var(--modal-blue);
}

.modal-link {
  text-decoration: none;
  color: var(--black);
}

@media (max-width: 1280px) {
  .section {
    min-height: 500px;
  }

  .section-title {
    font-size: 50px;
    padding-top: 40px;
  }

  .header-container {
    width: 100%;
    max-width: 1250px;
    padding: 10px 15px;
    justify-content: center;
  }

  .header-nav {
    gap: 30px;
    flex-grow: 0.5;
  }

  .link {
    font-size: 15px;
  }

  .button {
    padding: 10px 15px;
    font-size: 13px;
  }

  .hero-section {
    padding: 20px;
  }

  .hero-container {
    gap: 30px;
  }

  .hero-logo {
    width: 120px;
  }

  .hero-section-title {
    font-size: 55px;
    text-align: center;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-images {
    gap: 50px;
  }

  .areas-box {
    width: 180px;
    height: 150px;
  }

  .text-h3 {
    font-size: 12px;
  }

  .about-section,
  .steps-section,
  .documents-section,
  .contact-section {
    padding: 40px;
  }

  .section-title.docs {
    font-size: 45px;
  }

  .document-img {
    width: 60px;
  }

  .document-link {
    font-size: 17px;
  }

  .contact-form {
    width: 50%;
    height: 400px;
  }

  .form-p {
    font-size: 30px;
  }

  .form-input {
    width: 100%;
    max-width: 300px;
    font-size: 12px;
  }

  .contact-map {
    width: 50%;
    height: 430px;
  }

  .footer-container {
    padding: 25px 30px;
  }

  .modal {
    width: 350px;
    height: 350px;
    padding: 20px;
  }

  .modal-container {
    gap: 10px;
  }

  .modal-h2 {
    font-size: 25px;
    padding-bottom: 10px;
  }

  .modal-b {
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .container {
    width: 100%;
    max-width: 1024px;
  }
  .section-title {
    padding-top: 0;
  }

  .button {
    padding: 13px 20px;
  }

  .text-h3 {
    font-size: 15px;
  }

  .header-container {
    gap: 40px;
    padding: 10px 20px;
  }

  .header-nav {
    gap: 40px;
    flex-grow: 0;
  }

  .header-menu {
    gap: 40px;
  }

  .hero-images {
    gap: 50px;
  }

  .hero-icons {
    width: 60px;
  }

  .about-section,
  .steps-section,
  .documents-section,
  .contact-section {
    padding: 60px;
  }

  .areas-section {
    padding: 60px;
  }

  .areas-list {
    justify-content: space-around;
  }

  .areas-box {
    width: 200px;
    height: 140px;
  }

  .steps {
    width: 150px;
    height: 150px;
  }

  .step-1 {
    top: 45%;
    left: 2%;
  }

  .step-2 {
    left: 19.5%;
  }

  .step-3 {
    left: 40.5%;
  }

  .step-4 {
    right: 19.5%;
  }

  .step-5 {
    top: 45%;
    right: 2%;
  }

  .steps-image {
    width: 40px;
  }

  .steps-text {
    font-size: 13px;
  }

  .section-title.docs {
    font-size: 30px;
  }

  .document-img {
    width: 60px;
  }

  .document-link {
    font-size: 16px;
  }

  .expertise-buttons {
    gap: 20px;
    flex-direction: column;
  }

  .contact-container {
    padding-bottom: 0;
  }

  .contact-map {
    width: 50%;
    height: 500px;
  }

  .contact-form {
    width: 50%;
    height: 460px;
  }

  .form-p {
    font-size: 35px;
  }

  .form-field {
    margin-bottom: 15px;
  }

  .form-input {
    width: 100%;
    max-width: 250px;
    font-size: 13px;
  }

  .modal {
    width: 450px;
    height: 450px;
  }

  .modal-h2 {
    font-size: 30px;
  }

  .modal-buttons {
    padding: 15px 40px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: 768px;
  }

  .section-title,
  .hero-container {
    padding-top: 0;
  }

  .section-title {
    font-size: 50px;
  }

  .button {
    padding: 10px;
  }

  .link {
    font-size: 14px;
  }

  .text-h3 {
    font-size: 12px;
  }

  .header-container {
    padding: 10px 0;
  }

  .logo-image {
    padding: 5px 0 0;
  }

  .header-nav {
    gap: 20px;
    flex-grow: 0;
  }

  .header-menu {
    gap: 30px;
    align-items: center;
    font-size: 15px;
  }

  .hero-section-title {
    font-size: 60px;
  }

  .hero-section-text {
    text-align: center;
  }

  .hero-images {
    gap: 30px;
  }

  .hero-icons {
    width: 50px;
  }

  .about-container {
    font-size: 15px;
  }

  .areas-list {
    gap: 5px;
    justify-content: space-around;
  }

  .areas-box {
    width: 115px;
    height: 115px;
  }

  .areas-icon {
    display: none;
  }

  .steps {
    width: 125px;
    height: 125px;
    padding: 5px;
  }

  .step-1 {
    top: 45%;
    left: 0%;
  }

  .step-2 {
    left: 16.5%;
  }

  .step-3 {
    left: 39%;
  }

  .step-4 {
    right: 16.5%;
  }

  .step-5 {
    top: 45%;
    right: 0%;
  }

  .steps-image {
    width: 35px;
  }

  .steps-text {
    font-size: 11px;
  }

  .section-title.docs {
    font-size: 30px;
    padding-bottom: 20px;
  }

  .document-img {
    width: 50px;
  }

  .document-link {
    font-size: 15px;
  }

  .expertise-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
  }
  .contact-map {
    flex-shrink: 0;
    height: 176px;
    width: 480px;
    margin: 0 -24px;
    border-radius: 16px;
    border: none;
  }

  .contact-form {
    width: 400px;
    height: 420px;
  }

  .form-p {
    font-size: 28px;
    padding-bottom: 10px;
  }

  .footer-container {
    padding: 20px;
  }

  .footer-main {
    gap: 25px;
  }

  .footer-logo a {
    height: 50px;
  }

  .logo {
    width: 50px;
  }

  .footer-icon {
    padding-right: 10px;
    width: 25px;
    height: 25px;
  }

  .copyright {
    font-size: 13px;
  }

  .modal {
    width: 450px;
    height: 450px;
  }

  .modal-buttons {
    padding: 15px 40px;
  }
}

.menu-btn-open {
  display: none;
  width: 30px;
  height: 30px;
  fill: var(--white);
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: var(--dark-blue); */
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
    url(../images/background/mobile-menu.jpg);
  /* background-position: center; */
  background-size: cover;
  transform: translateX(100%);
  transition: transform 0.3s;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.menu-btn-close {
  padding: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-list {
  padding-top: 15px;
}
.menu-list a {
  font-size: 18px;
}

.menu-ul {
  margin: 0;
}

@media (max-width: 480px) {
  .container {
    width: 100%;
    max-width: 480px;
  }

  .section {
    min-height: 400px;
  }

  .menu-btn-open {
    display: block;
  }

  .header {
    width: 480px;
  }

  .header-menu {
    display: none;
  }

  .header-container {
    padding: 0;
  }

  .button {
    font-size: 10px;
  }

  .hero-section,
  .about-section,
  .areas-section,
  .steps-section,
  .documents-section,
  .contact-section,
  .footer {
    width: 440px;
    padding: 20px;
  }

  .hero-container {
    gap: 10px;
  }

  .hero-logo {
    width: 80px;
  }

  .hero-section-title {
    font-size: 30px;
  }

  .hero-text {
    font-size: 13px;
  }

  .hero-images {
    gap: 10px;
    padding-top: 0;
  }

  .hero-icons {
    width: 30px;
  }

  .section-title {
    font-size: 30px;
    padding-bottom: 20px;
  }

  .about-container,
  .about-span {
    font-size: 12px;
  }

  .areas-box {
    width: 70px;
    height: 70px;
  }

  .areas-item {
    padding: 5px;
  }

  .areas-list {
    justify-content: space-around;
  }

  .text-h3 {
    font-size: 8px;
  }

  .steps-head-text {
    font-size: 20px;
  }

  .steps {
    width: 100px;
    height: 100px;
  }

  .steps-image {
    width: 20px;
    height: 20px;
  }

  .steps-text {
    font-size: 9px;
  }

  .step-1 {
    top: 0%;
    left: 0;
  }

  .step-2 {
    top: 0%;
    left: 35%;
  }

  .step-3 {
    top: 0%;
    left: 70%;
  }

  .step-4 {
    top: 40%;
    left: 17%;
  }

  .step-5 {
    top: 40%;
    left: 57%;
  }

  .steps-container::after {
    font-weight: 700;
    font-size: 13px;
    bottom: 20px;
  }

  .documents-container {
    display: flex;
    flex-direction: column;
  }

  .section-title.docs {
    font-size: 27px;
  }

  .document-link {
    font-size: 12px;
  }

  .document-img {
    width: 40px;
  }

  .expertise-buttons {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .expertise-buttons-link {
    font-size: 10px;
  }

  .exp-button {
    width: 90px;
    padding: 5px;
  }

  .contact-map {
    width: 350px;
  }

  .contact-form {
    width: 300px;
    height: 350px;
    padding: 20px;
  }

  .form-p {
    font-size: 22px;
  }

  .form-input {
    width: 100%;
    max-width: 160px;
    font-size: 6px;
  }

  .form-button {
    font-size: 12px;
  }

  .footer-container {
    padding: 0;
    gap: 10px;
  }

  .footer-main {
    flex-direction: column;
    gap: 10px;
  }

  .footer-logo,
  .footer-contact,
  .footer-list {
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .footer-logo a {
    height: 40px;
  }

  .logo {
    width: 40px;
    padding-left: 0;
  }

  .link {
    font-size: 12px;
  }

  .copyright {
    font-size: 11px;
  }

  .modal {
    width: 75%;
    height: 45%;
    padding: 30px;
  }

  .modal-h2 {
    font-size: 23px;
    padding-bottom: 0;
  }

  .modal-buttons {
    font-size: 13px;
    padding: 15px 30px;
  }

  .modal-b {
    flex-direction: column;
  }

  .modal-btn-close {
    top: 5%;
    right: 5%;
  }

  .btn-close {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 320px) {
  .container {
    width: 100%;
    max-width: 320px;
  }

  .section {
    min-height: 300px;
  }

  .header {
    width: 320px;
  }

  .header-container {
    padding: 0;
  }

  .logo-image {
    width: 30px;
    height: 30px;
  }

  .button {
    font-size: 7px;
    width: 100px;
    padding: 5px 10px;
  }

  .menu-list {
    padding-top: 10px;
  }

  .menu-list a {
    font-size: 13px;
  }

  .hero-logo {
    width: 60px;
  }

  .hero-section-title {
    font-size: 20px;
  }

  .hero-text {
    font-size: 10px;
  }

  .hero-icons {
    width: 20px;
  }

  .hero-section,
  .about-section,
  .areas-section,
  .steps-section,
  .documents-section,
  .contact-section,
  .footer {
    padding: 15px;
    width: 290px;
  }

  .section-title {
    font-size: 20px;
    padding-bottom: 10px;
  }

  .about-container,
  .about-span {
    font-size: 7px;
  }

  .areas-box {
    width: 50px;
    height: 50px;
  }

  .areas-item {
    padding: 5px;
  }

  .text-h3 {
    font-size: 6px;
  }

  .steps-head-text {
    font-size: 15px;
  }

  .steps {
    width: 50px;
    height: 50px;
  }

  .steps-image {
    width: 10px;
    height: 10px;
  }

  .steps-text {
    font-size: 4px;
  }

  .step-1 {
    top: 0%;
    left: 10%;
  }

  .step-2 {
    top: 0%;
    left: 43%;
  }

  .step-3 {
    top: 0%;
    left: 75%;
  }

  .step-4 {
    top: 30%;
    left: 26%;
  }

  .step-5 {
    top: 30%;
    left: 61%;
  }

  .steps-container {
    height: 200px;
  }

  .steps-container::after {
    font-weight: 700;
    font-size: 9px;
    bottom: 10px;
  }

  .section-title.docs {
    font-size: 20px;
    padding-bottom: 10px;
  }

  .document-link {
    font-size: 10px;
  }

  .document-img {
    width: 30px;
  }

  .exp-button {
    font-size: 6px;
    padding: 5px 4px;
  }

  .contact-map {
    width: 250px;
  }

  .contact-form {
    width: 250px;
    height: 300px;
    padding: 10px;
  }

  .form-p {
    font-size: 18px;
  }

  .form-input {
    padding: 15px;
    width: 100%;
    max-width: 150px;
    font-size: 2px;
  }

  .form-input::placeholder {
    font-size: 8px;
  }

  .form-button {
    font-size: 10px;
  }

  .footer-container,
  .footer-main,
  .footer-contact,
  .footer-list {
    gap: 5px;
  }

  .footer-logo a {
    height: 30px;
  }
  .logo {
    width: 30px;
  }

  .footer-icon {
    width: 20px;
    height: 20px;
  }

  .link {
    font-size: 10px;
  }

  .copyright {
    font-size: 9px;
  } 

  .modal {
    width: 250px;
    height: 250px;
    padding: 20px;
  }

  .modal-container {
    gap: 10px;
  }

  .modal-h2 {
    font-size: 15px;
    padding-bottom: 10px;
  }

  .modal-buttons {
    font-size: 10px;
  }

  .modal-b {
    flex-direction: column;
    gap: 10px;
  }

  .modal-btn-close {
    top: 22px;
    right: 22px;
  }

  .btn-close {
    width: 20px;
    height: 20px;
  }
}
