* {
     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 {
     width: 100%;
     display: flex;
     justify-content: center;
     padding: 60px 0 60px 0;
     background: #000;
}

.wrapper {
     width: 60%;
     color: #fff;
}

.image {
     width: 500px;
     height: 500px;
     float: left;
     margin-right: 35px;
     margin-bottom: 20px;
     border-radius: 18px;
     overflow: hidden;
}

.image video {
     width: 100%;
     height: 100%;
     object-fit: cover;
}

.content h2 {
     font-size: 38px;
     margin-bottom: 20px;
     text-align: left;
}

.content p {
     font-size: 16px;
     line-height: 1.8;
     color: #ccc;
     margin-bottom: 18px;
     text-align: left;
}

.wrapper::after {
     content: "";
     display: block;
     clear: both;
}

.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) {

     .wrapper,
     .headerbody,
     .footer-container {
          width: 75%;
     }
}

@media (max-width: 1200px) {

     .wrapper,
     .headerbody,
     .footer-container {
          width: 90%;
     }
}

@media (max-width: 992px) {

     .wrapper {
          flex-direction: column;
          align-items: center;
     }

     .image {
          width: 100%;
          height: 350px;
     }

     .content {
          text-align: center;
     }

     .links {
          gap: 25px;
     }
}

@media (max-width: 768px) {

     .content h2 {
          font-size: 30px;
     }

     .content p {
          font-size: 15px;
     }

     .footer-container {
          grid-template-columns: 1fr;
     }

     .footer-column p.footer-title {
          justify-content: left;
     }

     .links {
          gap: 15px;
     }

     .headerbody {
          height: 100px;
     }

     .logo-1 img {
          height: 100px;
     }

     body {
          padding-top: 100px;
     }
}

@media (max-width: 576px) {

     .image {
          height: 280px;
     }

     .content h2 {
          font-size: 26px;
     }

     .content p {
          font-size: 14px;
     }

     .links {
          display: flex;
          flex-direction: column;
          align-items: left;
          padding-left: 30px
     }

     .links a {
          gap: 20px;
     }
}

@media (max-width: 400px) {

     .wrapper {
          width: 95%;
     }

     .headerbody {
          width: 95%;
     }

     .footer-container {
          width: 95%;
     }

     .image {
          height: 220px;
     }

     .content h2 {
          font-size: 22px;
     }

     .content p {
          font-size: 13px;
     }

     .links {
          padding: 10px;
     }
}