* {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

html{
    height: 100%;
    margin: 0;
    scroll-behavior: smooth;
}

body {
    background-color: #05253A;
}

/* BACKGROUND */
canvas {
    display: block;
    position: fixed;
    z-index: -1;
    overflow: hidden;
}

#gradient-canvas {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    --gradient-color-1: #05253A;
    --gradient-color-3: #4C8079;
    --gradient-color-4: #63938C;
}

/* NAVIGATION */
nav {
    width: 100%;
    height: 10vh;
    position: sticky;
    z-index: 1;
}

.nav-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 1rem 7%;
}

.logo {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.5s ease;
    display: flex;
    align-items: center;
}

.logo span {
    padding-left: 7px;
    font-size: 24px;
    color: white;
    font-weight: 800;
}

.hamburg, .cancel {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
    color: white;
    display: none;
    font-size: clamp(2.5rem, 0.5rem + 5vw, 3rem);
}

.nav-container .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.nav-container .links a {
    font-size: 1.2rem;
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-weight: 550;
    transition: 0.3s linear;
}

.nav-container .links a:hover {
    color: #63938C;
    border-bottom: 2px solid #63938C;
}

.dropdown {
    position: absolute;
    top: 0;
    transform: translateY(-500px);
    width: 100%;
    height: auto;
    backdrop-filter: blur(10px) brightness(40%);
    box-shadow: 0 0 20px black;
    transition: transform 0.2s linear;
    z-index: 1;
}

.dropdown .links a {
    display: flex;
    color: white;
    text-decoration: none;
    padding: 15px 0;
    justify-content: center;
    align-items: center;
    transition: 0.2s linear;
    z-index: 101;
}

.dropdown .links a:hover {
    background-color: #63938C;
}

/* SECTION 1 */
.slideshow {
    position: relative;
    max-width: 100%;
    margin: auto;
    height: 90vh;
}

.slide {
    display: none;
    height: 100vh;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
}

.content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1.2rem;
}

p span {
    font-weight: bold;
    font-style: italic;
}

section {
    padding: 60px 20px;
    text-align: center;
    width: 100%;
}


#section2 {
    background: #0a2538;
    color: white;
}

#section3 {
    background: #0a2538;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#section4 {
    background: transparent;
    overflow: hidden;
}

/* SLIDE CONTENT */
.slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-top: -100px;
    margin-left: 50px;
}
 
.dadiz img {
    width: 30%;
}

/* SLIDE 1 */
.slide-image {
    max-width: 20%;
    height: auto;
    margin-right: 20px;
    padding-right: 3%;
}

.vertical-line {
    width: 5px;
    background-color: white;
    height: 32%;
    border-radius: 10px;
}

.text-content {
    padding-left: 5%;
    max-width: 50%;
    color: white;
    text-align: left;
}

.text-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.text-content p {
    font-size: 1.2rem;
}

/* SLIDE 2 */
.image {
    max-width: 30vw;
    height: auto;
    margin-right: 20px;
    padding-right: 3%;
}

.dadiz {
    gap: 15%;
}

.serrano {
    gap: 3%;
}

.slide-1-2-content {
    padding-left: 5%;
    max-width: 50%;
    color: white;
    text-align: left;
}

.slide-1-2-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    margin-bottom: -10px;
}

.slide-1-2-content h2 {
    color: #dfdcbe;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-size: 30px;
    margin-bottom: 0.5rem;
    font-weight: 100;
}

.social-links i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: transparent;
    border: 0.2rem solid white;
    font-size: 1.2rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    margin-right: 20px;
    transition: 0.3s ease;
    color: white;
}

.social-links i:hover {
    color: #3a6862;
    transform: scale(1.3) translateY(-5px);
    background-color: white;
    box-shadow: 0 0 5px white;
}

/* SECTION 2 */
#section2 h1 {
    padding-bottom: 50px;
    font-size: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
}

.quote {
    border-top: 2px solid #dfdcbe;
    width: 13%;
    margin: 0 auto 20px;
}

.section2 {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
}
  
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
    padding-bottom: 40px;
}
  
.service {
    padding: 20px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 4px 6px #3a6862;
    cursor: pointer;
    transition: 0.5s ease;
}
  
.service h2 {
    font-size: 1.2em;
    color: #3a6862;
    margin-bottom: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.service h2 img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
  
.service p {
    color: #3a6862;
    font-size: 1em;
    line-height: 1.5;
}

/* SECTION 3 */
#section3 h1 {
    padding-bottom: 50px;
    font-size: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
}

.swiper {
    width: 100%;
    height: 100%;
    
  }

  .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 35%;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    -webkit-box-reflect: below 1px linear-gradient(transparent, transparent , #0002 , #0004);
  }



/* SECTION 4 */
.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100vw;
    margin: -20px 10px 10px 10px;
}

.footer-text {
    max-width: 80%;
    color: white;
}

.footer-text h2 {
    font-size: 5vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    text-align: right; 
    padding: 0 10vw; 
}

.footer-text h3 {
    font-size: 5vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    text-align: left; 
    padding: 0 5vw; 
}

.footer-image {
    max-width: 30vw;
    height: auto;
}

.footer-line {
    border-top: 2px solid white;
    width: 90%;
    margin: -10px auto 20px;
    z-index: 5;
}

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 40px 10px 0 10px;
    overflow: hidden;
}

.contact-text {
    max-width: 30%;
    color: white;
    border: 1px solid white;
    border-radius: 100px;
    padding: 10px 50px;
}

.contact-text h2 {
    font-size: 1vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
}

.contact-text h3 {
    font-size: 1vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
}


/* WORK */
#work {
    background: transparent;
    overflow: hidden;
}
.work-section {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100vw;
    margin: -30px 10px 10px 10px;
}

.work-text {
    max-width: 80%;
    color: white;
}

.work-text h2 {
    font-size: 5vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    text-align: right; 
    padding: 0 15vw; 
}

.work-text h3 {
    font-size: 5vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    text-align: left; 
    padding: 0 5vw; 
}

.work-line {
    border-top: 2px solid white;
    width: 90%;
    margin: 2% auto 20px;
    z-index: 5;
}

.out-line {
    border-top: 2px solid white;
    width: 90%;
    margin: 2% auto -60px;
    z-index: 5;
}

.row {
    margin: 8px 55px;
  }
  
  .row,
  .row > .column {
    padding: 8px;
  }

  .column {
    float: left;
    width: 25%;
    display: none;
  }

  .row:after {
    content: "";
    display: table;
    clear: both;
  }

  .show {
    display: block;
  }

  .btn {
    background: none;
    padding: 12px 40px;
    border: 1px solid white;
    margin: 10px 5px;
    color: white;
    border-radius: 50px;
    cursor: pointer;
}

  .btn:hover {
    background-color: #3a6862;
}

.video-wrapper {
    cursor: pointer;
    transition: transform 0.2s;
    ;
}

.video-wrapper:hover {
    transform: scale(1.05);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: auto;
    display: block;
    width: 25%;
    max-width: 700px;
}
  
/* ABOUT US */
#about-us {
    background: transparent;
    overflow: hidden;
}
.about-section {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100vw;
    margin: -30px 10px 10px 10px;
}

.about-text {
    max-width: 80%;
    color: white;
}

.about-text h2 {
    font-size: 5vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    padding: 3% 6%; 
    text-align: left;
}

.we {
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    margin: 10% 21.5% -16% 0;
    text-align: right;
    color: white;

}

.about-line {
    border-top: 2px solid white;
    width: 90%;
    margin: 2% auto 5%;
    z-index: 5;
}

.container-about {
    display: grid;
    grid-template-columns: 2fr 2fr; /* 1 part for left, 2 parts for right */
    gap: 20px; /* Spacing between sections */
    padding: 5% 5% 0 5%;
}

.left-about {
    padding: 20px;
}

.right-about {
    padding: 100px 40px;
    text-align: left;
    color: white;
} 

.right-about h2{
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 100;
}

.right-about p{
    font-size: 13px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

#top {
    padding-top: 200px;
    padding-bottom: 20px;
}

#bot {
    padding-top: 20px;
    padding-bottom: 200px;
}

.inside-line {
    border-top: 2px solid #dfdcbe;
    width: 50%;
    margin: 5% 0;
    z-index: 5;
}
.right-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for right sections */
    gap: 20px; /* Spacing between right sections */
}

.sceptre {
    display: flex;
    flex-wrap: wrap;
    padding: -5% 5% 0 5%;
}

.image-sceptre {
    flex: 1; /* Takes up 1 part of the available space */
    min-width: 300px; /* Minimum width for responsiveness */
}

.image-sceptre img {
    width: 60%; /* Make image responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: rounded corners */
}

.text-sceptre {
    flex: 1; /* Takes up 1 part of the available space */
    min-width: 300px; /* Minimum width for responsiveness */
    padding: 12% 10px;
    text-align: left;
    color: #dfdcbe;
}

.text-sceptre h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 70px;
    color: white;
}

.text-sceptre ul {
    padding: 0 20% 0 20px;
}

.text-sceptre li {
    padding-bottom: 20px;
}

.text-sceptre1 {
    flex: 1; /* Takes up 1 part of the available space */
    min-width: 300px; /* Minimum width for responsiveness */
    padding: 8% 0 0 15%;
    text-align: left;
    color: #dfdcbe;
}

.text-sceptre1 h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 70px;
    color: white;
}

.text-sceptre1 ul {
    padding: 0 15% 0 20px;
}

.text-sceptre1 li {
    padding-bottom: 20px;
}

.sceptre-line {
    border-top: 2px solid #dfdcbe;
    width: 20%;
    margin: 3% 0;
    z-index: 5;
}

.last-line {
    border-top: 2px solid white;
    width: 90%;
    margin: 2% auto -50px;
    z-index: 5;
}


/* CONTACTS */
#contacts {
    background: transparent;
    overflow: hidden;
}
.contacts-section {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100vw;
    margin: -30px 10px 10px 10px;
}

.contacts-text {
    max-width: 80%;
    color: white;
}

.contacts-text h2 {
    font-size: 5vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    text-align: right; 
    padding: 0 15vw; 
}

.contacts-text h3 {
    font-size: 5vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    text-align: left; 
    padding: 0 5vw; 
}

.contacts-line {
    border-top: 2px solid white;
    width: 90%;
    margin: -10px auto 20px;
    z-index: 5;
}

.form {
    font-size: 25px;
    text-align: left;
    margin-left: 51px;
    color: #FFFFFF;
}

.form .field {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    width: 100%;
    padding: 0 0 1em 0;
    border: 0;
    background: transparent;
    border-radius: 0;
    font-weight: 450;
    font-size: 1em;
    color: var(--color-white);
    display: block;
    margin-top: -.33em;
    background: transparent !important;
}

.form .label {
    width: 100%;
    display: block;
    margin-bottom: 0;
    color: var(--color-white);
    font-weight: 450;
    padding-top: 1.66em;
    transition: all .2s ease-in-out;
}

.form .field:focus {
    outline: 0;
    outline-width: 1px !important;
    outline-offset: 0px;
    border-radius: 0;
    border: 0;
}

.form-line {
    border-top: 2px solid white;
    width: 50%;
}



@media (max-width: 768px) {
    .sceptre {
        flex-direction: column; /* Stack sections on smaller screens */
    }

    .john {
        flex-direction: column-reverse;
    }

    .text-sceptre {
        padding: 5% 0 0 15%;
    }

    .text-sceptre1 {
        padding-bottom: 15%;
    }

    .last-line {
        margin-top: 15%;
    }

    .about-section {
        padding: 0;
    }

    .form {
        margin: 10px;
        
    }
}

@media (max-width: 768px) {
    .container-about {
        grid-template-columns: 1fr; /* Stack sections on smaller screens */
    }
    .right-container {
        grid-template-columns: 1fr; /* Stack right sections on smaller screens */
    }

    #top, 
    #bot {
        padding-top: 0;
        padding-bottom: 0;
    }
}

/* MEDIA QUERIES */
@media (max-width: 885px) {
    nav .logo {
        position: absolute;
        top: 16px;
        left: 15px;
        font-size: 1.5rem;
    }

    .nav-container .links {
        display: none;
    }

    .hamburg, .cancel {
        display: block;
    }

    .slide-content {
        flex-direction: column;
        align-items: center;
        margin-top: -40%;
        margin-left: 0;
    }

    .dadiz {
        flex-direction: column-reverse;
    }

    .slide-image {
        max-width: 40%;
        margin-left: 13%;
        margin-bottom: 30px;
    }

    .vertical-line {
        display: none;
    }

    .text-content {
        max-width: 100%;
        text-align: center;
        margin-left: -20px;
    }

    .quote {
        width: 30%;
    }

}

@media (max-width: 1200px) {
    .image {
        max-width: 40vw;
    }

    .slide-1-2-content {
        max-width: 60%;
    }

    .slide-1-2-content h1 {
        font-size: 50px;
        padding-bottom: 10px;
    }

    .slide-1-2-content h2 {
        font-size: 25px;
    }
}

@media (max-width: 992px) {
    .image {
        max-width: 50vw;
        margin-right: 10px;
    }

    .slide-1-2-content {
        max-width: 80%;
        padding-left: 3%;
    }

    .slide-1-2-content h1 {
        font-size: 40px;
    }

    .slide-1-2-content h2 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .image {
        max-width: 80vw;
        margin-right: 0;
        padding-right: 0;
    }
    
    .slide-content {
        margin-top: -30%;
    }

    .dadiz {
        gap: 5%;
    }
    
    .serrano {
        gap: 5%;
    }

    .dadiz img {
        width: 90%;
    }

    .slide-1-2-content {
        max-width: 90%;
        padding-left: 0;
    }

    .slide-1-2-content h1 {
        font-size: 40px;
    }

    .slide-1-2-content h2 {
        font-size: 28px;
    }

    .footer-image {
        max-width: 40vw;
        height: auto;
        padding-right: 50px;
    }

    .swiper-slide {
        width: 80%;
      }
}

@media (max-width: 576px) {
    .slide-1-2-content h1 {
        font-size: 40px;
    }

    .slide-1-2-content h2 {
        font-size: 25px;
    }

    .social-links i {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
        margin-right: 10px;
    }
}

@media screen and (max-width: 900px) {
    .column {
      width: 50%;
    }
  }
  
@media screen and (max-width: 600px) {
    .work-text h2 {
        font-size: 25px;
        padding-left: 65px;
    }
    
    .work-text h3 {
        font-size: 25px;
    }
    .column {
      width: 100%;
    }

    .btn {
        font-size: 10px;
        padding: 12px 20px;
    }

    .row {
        margin: 8px 5px;
    }

}