* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}

body {
     font-family: "Inter", sans-serif;
     padding-top: 120px;
     background-color: #000;
}

.header {
     width: 100%;
     position: relative;
}

.headerbody {
     display: flex;
     justify-content: space-between;
     align-items: center;
}

.header {
     width: 100%;
     display: flex;
     justify-content: center;
     background: black;
     position: fixed;
     top: 0;
     z-index: 1000;
}

.headerbody {
     width: 60%;
     height: 120px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     position: relative;
}

.logo-1 img {
     height: 120px;
}

.burger {
     cursor: pointer;
     display: flex;
     flex-direction: column;
     gap: 5px;
}

.burger span {
     width: 25px;
     height: 3px;
     background: #fff;
     color: #fff;
     display: block;
}

.links {
     position: absolute;
     top: 100%;
     left: 0;
     width: 100%;
     display: flex;
     justify-content: center;
     gap: 30px;
     background: white;
     padding: 15px 0;
     opacity: 0;
     transform: translateY(-10px);
     pointer-events: none;
     transition: all 0.3s ease;
}

.links.active {
     opacity: 1;
     transform: translateY(0);
     pointer-events: auto;
     background-color: #000;
}

.links a {
     text-decoration: none;
     color: #fff;
     font-weight: 500;
}

.section-start {
     width: 100%;
     height: 700px;
     position: relative;
     overflow: hidden;
}

.text-container {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 2;
}

.image-start {
     width: 100%;
     height: 100%;
     object-fit: cover;
}

.section-start::after {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.20);
     background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
}

.text {
     width: 60%;
     color: white;
}

.text h1 {
     font-size: 120px;
     font-family: "Oswald", sans-serif;
     font-optical-sizing: auto;
     font-weight: 400;
     font-style: normal;
     max-width: 100%;
     max-height: 150px;
}

.text p {
     font-size: 73px;
     max-width: 100%;
     margin-bottom: 10px;
     font-family: "Oswald", sans-serif;
     font-optical-sizing: auto;
     font-weight: 200;
     font-style: normal;
}

.text-container a {
     width: 500px;
     height: 65px;
     display: flex;
     gap: 0px;
     justify-content: center;
     align-items: center;
     background-color: gray;
     color: white;
     text-decoration: none;
     border-radius: 25px;
     font-size: 20px;
     font-weight: 500;
     transition: 0.3s;
}

.text-container a:hover {
     background-color: white;
     color: black;
}

.title {
     text-align: center;
     color: #fff;
}

.title p {
     font-size: 22px;
     padding: 10px 0px;
}

.title a {
     color: #fff;
     text-decoration: none;
}

.contact-body {
     display: flex;
     justify-content: center;
     align-items: center;
     width: 100%;
     padding-bottom: 40px;
     background-color: #000;
     color: #fff;
}

.contact-container {
     width: 60%;
     margin: auto;
     margin-top: 40px;
}

.contact-container h1 {
     margin-bottom: 20px;
     font-size: 28px;
}

.contact-list {
     list-style: none;
}

.contact-list li {
     padding: 15px 0;
     border-bottom: 1px solid #fff;
     line-height: 1.6;
}

.contact-list li a {
     color: #fff;
     text-decoration: none;
}


.map-section {
     width: 100%;
     background: #000;
     display: flex;
     justify-content: center;
     padding: 50px 0;
}

.map-grid {
     width: 60%;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 25px;
}

.map-card {
     background: #111;
     border-radius: 18px;
     overflow: hidden;
     text-align: center;
     padding-bottom: 15px;
}

.map-card iframe {
     width: 100%;
     height: 260px;
     border: 0;
}

.map-card p {
     color: #fff;
     font-size: 16px;
     margin-top: 15px;
}

.custom-footer {
     width: 100%;
     background-color: #000;
     color: #fff;
     display: flex;
     justify-content: center;
}

.footer-container {
     width: 60%;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
}

.footer-column h3 {
     margin-bottom: 15px;
     font-size: 18px;
     text-transform: uppercase;
     color: #fff;
}

.footer-column ul {
     list-style: none;
     padding: 0;
}

.footer-column ul li {
     margin-bottom: 10px;
     font-size: 13px;
}

.footer-column ul li a {
     margin-bottom: 10px;
     color: #fff;
     text-decoration: none;
     transition: color 0.3s ease;
     cursor: pointer;
     font-size: 13px
}

.footer-column ul li a:hover {
     color: gray;
}

.footer-column p.footer-title {
     font-family: "Michroma", sans-serif;
     font-weight: 400;
     font-style: normal;
     font-size: 18px;
     display: flex;
     justify-content: right;
}

.footer-finish {
     padding: 20px 0px;
     width: 100%;
     height: auto;
     text-align: center;
     color: #fff;
     background-color: #000;
     font-size: 12px;
}

@media (max-width: 1600px) {

     .headerbody,
     .contact-container,
     .map-grid,
     .text,
     .footer-container {
          width: 75%;
     }

}

@media (max-width: 1400px) {

     .map-grid {
          grid-template-columns: repeat(3, 1fr);
     }
}

@media (max-width: 1200px) {

     .headerbody,
     .contact-container,
     .map-grid,
     .text,
     .footer-container {
          width: 90%;
     }

     .text h1 {
          font-size: 90px;
     }

     .text p {
          font-size: 55px;
     }

}

@media (max-width: 992px) {

     .text-container {
          flex-direction: column;
     }

     .text-container a {
          font-size: 16px;
     }

     .links {
          gap: 25px;
     }

}

@media (max-width: 768px) {

     .headerbody {
          height: 100px;
     }

     body {
          padding-top: 100px;
     }

     .headerbody img {
          height: 100px;
     }

     .links {
          gap: 15px;
     }

     .text h1 {
          font-size: 90px;
          line-height: 1.1;
     }

     .text p {
          font-size: 55px;
     }

     .text-container a {
          font-size: 16px;
          height: 58px;
     }

     .footer-container {
          grid-template-columns: 1fr;
     }

     .footer-column p.footer-title {
          justify-content: left;
     }

     .section-start {
          height: 600px;
     }

     .map-grid {
          grid-template-columns: 1fr;
     }

     .footer-container {
          grid-template-columns: 1fr;
     }

     .contact-container {
          width: 90%;
     }
}

@media (max-width: 576px) {

     .text h1 {
          font-size: 58px;
     }

     .links a {
          gap: 20px;
     }

     .links {
          display: flex;
          flex-direction: column;
          align-items: left;
          padding-left: 30px
     }

     .text p {
          font-size: 36px;
     }

     .text-container a {
          height: 50px;
          width: 250px;
          font-size: 12px;
     }

     .contact-container h1 {
          font-size: 22px;
     }
}

@media (max-width: 400px) {

     .text h1 {
          font-size: 42px;
     }

     .text p {
          font-size: 26px;
     }

     .text-container a {
          width: 180px;
          padding: 10px;
          height: 42px;
          font-size: 10px;
          gap: 10px;
     }

          .links {
          padding: 10px;
     }

     .headerbody {
          width: 95%;
     }

     .map-grid{
          width: 95%;
     }

     .contact-container {
          width: 95%;
     }

     .footer-container {
          width: 95%;
     }
}