* {
     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;
}

.left {
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: white;
     font-size: 32px;
     font-family: "Michroma", sans-serif;
     font-weight: 400;
     font-style: normal;
}

.section {
     width: 100%;
     background: #000;
     padding: 50px 0;
     display: flex;
     justify-content: center;
}

.wrapper {
     width: 60%;
     display: grid;
     align-items: center;
}

.title {
     text-align: center;
     color: #fff;
}

.title p {
     font-size: 22px;
     padding: 10px 0px;
}

.title a {
     color: #fff;
     text-decoration: none;
}

.cards-section {
     width: 100%;
     background: #000;
     display: flex;
     justify-content: center;
     padding: 50px 0;
}

.cards-grid {
     width: 60%;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 25px;
}

.card-item {
     position: relative;
     height: 320px;
     border-radius: 18px;
     overflow: hidden;
     text-decoration: none;
     display: block;
     cursor: pointer;
}

.card-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     filter: brightness(0.4);
     transition: 0.8s;
}

.card-item:hover img {
     transform: scale(1.08);
}

.card-overlay {
     position: absolute;
     left: 20px;
     bottom: 20px;
     color: #fff;
     z-index: 2;
}

.small-text {
     display: block;
     font-size: 12px;
     letter-spacing: 1px;
     opacity: .8;
     margin-bottom: 6px;
}

.card-overlay h3 {
     font-size: 24px;
     margin: 6px 0px;
}

.card-overlay p {
     font-size: 14px;
     color: #ddd;
}

.card-item {
     position: relative;
     height: 320px;
     border-radius: 18px;
     overflow: hidden;
     text-decoration: none;
     display: block;
}

.card-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
}

.card-item::after {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(212, 176, 35, 0);
     transition: .8s;
     z-index: 1;
}

.card-item:hover::after {
     background: #111;
}

.card-item:hover img {
     transform: scale(1.05);
}

.card-overlay {
     position: absolute;
     left: 20px;
     bottom: 20px;
     color: #fff;
     z-index: 2;
}

.feature-section {
     width: 100%;
     background: #000;
     display: flex;
     justify-content: center;
     padding: 50px 0;
}

.feature-grid {
     width: 60%;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 25px;
}

.feature-card {
     background: #111;
     border-radius: 18px;
     padding: 35px 25px;
     height: 400px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
}

.feature-card h3 {
     font-size: 26px;
     margin-bottom: 18px;
     color: #fff;
}

.feature-card p {
     font-size: 18px;
     line-height: 1.7;
     color: #fff;
}

.video-section {
     width: 100%;
     background: #000;
     display: flex;
     justify-content: center;
     padding: 50px 0;
}

.video-grid {
     width: 60%;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 25px;
}

.video-card {
     background: #111;
     border-radius: 18px;
     overflow: hidden;
     text-decoration: none;
     height: 340px;
     transition: .3s;
     display: flex;
     flex-direction: column;
}

.video-card:hover {
     transform: translateY(-8px);
}

.video-card img {
     width: 100%;
     height: 190px;
     object-fit: cover;
}

.video-content {
     padding: 20px;
     color: #fff;
     flex: 1;
}

.video-content h3 {
     font-size: 22px;
     margin-bottom: 12px;
}

.video-content p {
     font-size: 15px;
     color: #ccc;
     line-height: 1.6;
}


.edu-section {
     width: 100%;
     background: #000;
     display: flex;
     justify-content: center;
     padding: 60px 0;
}

.edu-layout {
     width: 60%;
     height: 750px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px;
}

.edu-left {
     height: 750px;
     border-radius: 18px;
     overflow: hidden;
}

.edu-left img {
     width: 100%;
     height: 100%;
     object-fit: cover;
}

.edu-right {
     height: 750px;
     display: grid;
     grid-template-columns: 1fr;
     gap: 12px;
}

.edu-box {
     background: #111;
     border-radius: 14px;
     padding: 18px 22px;
     display: flex;
     flex-direction: column;
     justify-content: center;
}

.edu-box h3 {
     color: #fff;
     font-size: 20px;
     margin-bottom: 8px;
}

.edu-box p {
     color: #ccc;
     font-size: 14px;
     line-height: 1.5;
     margin-bottom: 12px;
}

.edu-box a {
     width: fit-content;
     padding: 8px 14px;
     background: gray;
     color: #fff;
     text-decoration: none;
     border-radius: 8px;
     font-size: 13px;
}

.edu-more a {
     display: block;
     text-align: center;
     padding: 14px;
     background: gray;
     color: #fff;
     text-decoration: none;
     font-weight: 700;
     border-radius: 12px;
}

.info-section {
     width: 100%;
     background: #000;
     display: flex;
     justify-content: center;
     padding: 60px 0;
}

.info-layout {
     width: 60%;
     height: 600px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px;
}

.info-left {
     height: 600px;
}

.info-box {
     height: 100%;
     background: #111;
     border-radius: 20px;
     padding: 40px;
     display: flex;
     flex-direction: column;
     justify-content: center;
}

.info-box h2 {
     color: #fff;
     font-size: 34px;
     margin-bottom: 20px;
}

.info-box p {
     color: #ccc;
     font-size: 16px;
     line-height: 1.7;
     margin-bottom: 18px;
}

.info-box a {
     margin-top: auto;
     width: fit-content;
     padding: 14px 24px;
     background: gray;
     color: #fff;
     text-decoration: none;
     font-weight: 700;
     border-radius: 10px;
}

.info-right {
     height: 100%;
     border-radius: 20px;
     overflow: hidden;
}

.info-right img {
     width: 100%;
     height: 100%;
     object-fit: cover;
}

.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,
     .wrapper,
     .text,
     .cards-grid,
     .feature-grid,
     .video-grid,
     .edu-layout,
     .info-layout,
     .map-grid,
     .footer-container {
          width: 75%;
     }

}

@media (max-width: 1400px) {

     .info-box p {
          font-size: 14px;
     }

}

@media (max-width: 1200px) {

     .headerbody,
     .wrapper,
     .text,
     .cards-grid,
     .feature-grid,
     .video-grid,
     .edu-layout,
     .info-layout,
     .map-grid,
     .footer-container {
          width: 90%;
     }

     .cards-grid {
          grid-template-columns: repeat(2, 1fr);
     }

     .video-grid {
          grid-template-columns: repeat(2, 1fr);
     }

     .text h1 {
          font-size: 90px;
     }

     .text p {
          font-size: 55px;
     }

}

@media (max-width: 992px) {

     .info-layout {
          font-size: 16px;
     }

     .text-container a {
          font-size: 16px;
     }

     .feature-card p {
          font-size: 16px;
     }

     .links {
          gap: 25px;
     }

}

@media (max-width: 768px) {

     .cards-grid,
     .feature-grid,
     .video-grid,
     .map-grid,
     .footer-container {
          grid-template-columns: 1fr;
     }

     .footer-column p.footer-title {
          justify-content: left;
     }

     .edu-layout,
     .info-layout {
          grid-template-columns: 1fr;
          height: auto;
     }

     .links {
          gap: 15px;
     }

     .edu-left,
     .edu-right,
     .info-left,
     .info-right {
          height: auto;
     }

     .info-right img {
          height: 500px;
     }

     .info-left img {
          height: 500px;
     }

     .text h1 {
          font-size: 90px;
          line-height: 1.1;
     }

     .text p {
          font-size: 55px;
     }

     .text-container a {
          font-size: 16px;
          height: 58px;
     }

     .headerbody {
          height: 100px;
     }

     .logo-1 img {
          height: 100px;
     }

     body {
          padding-top: 100px;
     }

     .section-start {
          height: 600px;
     }

     .feature-card {
          height: auto;
     }

}

@media (max-width: 576px) {

     .text h1 {
          font-size: 58px;
     }

     .links {
          display: flex;
          flex-direction: column;
          align-items: left;
          padding-left: 30px
     }

     .links a {
          gap: 20px;
     }

     .text p {
          font-size: 36px;
     }

     .text-container a {
          height: 50px;
          width: 250px;
          font-size: 12px;
     }

     .edu-section img {
          height: 450px;
     }

     .card-overlay h3 {
          font-size: 20px;
     }

     .video-content h3 {
          font-size: 18px;
     }

     .info-box {
          padding: 25px;
     }

     .info-box h2 {
          font-size: 28px;
     }

     .feature-card h3 {
          font-size: 22px;
     }

     .feature-card p {
          font-size: 16px;
     }

}

@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%;
     }

     .wrapper,
     .cards-grid,
     .feature-grid,
     .video-grid,
     .edu-layout,
     .info-layout,
     .map-grid,
     .footer-container {
          width: 95%;
     }

}