:root{
    --gold: #C5A24A;
    --gold2: #f3d17c;
    --darkblue: #000058;
    --offwhite: #FAFAF7;
    --hovercol: rgb(154, 154, 154);
    --textfont: "Poppins";
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
  cursor: pointer;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--gold); 
  cursor: pointer;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--gold2); 
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

body{
    padding: 0;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--darkblue);
    background-color: var(--offwhite);
    font-family: var(--textfont);
}

nav{
    width: 100%;
    height: 70px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--darkblue);
    color: var(--gold);
    z-index: 1;
}

nav .left{
    display: flex;
    padding: 0;
    margin: 0;
    margin-left: 10px;
}

nav .left img{
    height: 50px;
    display: flex;
    align-self: center;
    margin-left: 10px;
    cursor: pointer;
}

nav ul{
    display: flex;
    list-style-type: none;
    gap: 30px;
    align-items: center;
}

nav ul li{
    text-decoration: none; 
    border: none;
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    transition: all 0.5s;
    background-color: var(--darkblue);
}

nav ul li:hover{
    background-color: var(--gold);
    color: var(--darkblue);
    cursor: pointer;
}

nav ul li a{
    text-decoration: none;
    font-family: var(--textfont);
    padding: 15px;
    color: var(--offwhite);
    align-self: center;
}

nav ul li a span{
    font-size: 0.9rem; 
    align-self: center;
}


nav .right{
    display: flex;
    align-self: center;
    align-content: center;
    margin-right: 20px;
}

nav .right button{
    height: 40px;
    padding: 0 15px;
    margin-left: 30px;
    border-radius: 10px;
    border: none;
    background-color: var(--darkblue);
    color: var(--offwhite);
    font-family: var(--textfont);
    transition: all 0.5s;
    font-size: 1rem;
}

nav .right button:hover{
    cursor: pointer;
    background-color: var(--gold);
    color: var(--offwhite);
    font-size: 1.2rem;
}

nav .services-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px 0px 10px;
    justify-content: center;
}

nav .services-container .dropdown{
    display: flex;
    position: absolute;
    flex-direction: column;
    top: 70px;
    min-width: 90px;
    color: var(--gold);
    background-color: var(--darkblue);
}

nav ul .services-container a{
    text-decoration: none;
    font-family: var(--textfont);
    padding: 0 15px;
    align-self: center;
    color: var(--offwhite);
}

nav .services-container .dropdown p{
    padding: 20px;
}

nav .services-container .dropdown p:hover{
    background-color: var(--gold);
    color: var(--darkblue);
}

#dropdownArrow{
    display: inline-block;
    
    transform-origin: center; 
    transition-property: transform;
    transition-duration: 0.5s; 
    transition-timing-function: ease;
}

.landing{
    
    height: 100%;
    width: 90%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin-left: 5%;
    gap: 5%;
    margin-top: 70px;
    margin-bottom: 45px;
}

.landing .l{
    width: 45%;
    position: relative;
} 

.landing .l img{
    width: 100%;
    top: 100px;
    opacity: 0.1;
    position: absolute;
    z-index: -1;
}

.landing .l h1{
    font-size: 3rem;
}

.landing .l h3{
    font-size: 1.5rem;
}

.landing .l p{
    font-size: 1.3rem;
    font-weight: 500;
}

.landing .l a{
    font-size: 1.3rem;
    color: black;
    transition: all 0.6s;
}

.landing .l a:hover{
    font-size: 1.6rem;
}

.landing .r{
    display: flex;
    width: 55%;
    height: 100%;
}

.landing .r .slide.active{
    width: 100%;
    aspect-ratio: 3 / 2;
    display: flex;
    align-self: center;
    border-radius: 15px;
    background-size: contain;
    transition: all 1s ease;
}

.landing .r .slide{
    width: 100%;
    aspect-ratio: 3 / 2;
    display: flex;
    align-self: center;
    border-radius: 15px;
    background-size: contain;
    transition: all 1s ease;
    display: none;
}

/*.landing .r .slide:hover{
    transform: scale(1.04);
    cursor: pointer;
}*/

.landing .r .slide p{
    background: linear-gradient(to right,var(--gold), var(--gold2));
    height: 15%;
    width: 100%;
    margin-top: auto;
    margin-bottom: 5%;
    font-size: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

#ham{
    display: none;
    height: 22px;
}

#hamdrop{
    position: absolute;
    right: 0px;
    top: 10px;
}

@media (max-width:768px) {
    html,
    body {
        overflow-x: hidden;
    }
    
    body::-webkit-scrollbar{
        overflow-x: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .section-container{
        flex-direction: column;
        justify-content: center;
        width: 90%;
    }

    #ham{
        display: flex;
        position: absolute;
        right: 0px;
        top: 15px;
        padding: 0;
        text-align: center;
    }

    #ham:hover{
        background: none;
    }

    #ham a{
        margin-top: 15px;
        margin-left: 10px;
        margin-right: 25px;
        border-radius: 10px;
        padding: 10px;
        transition: all 0.5s;
        font-size: 1.5rem;
    }

    #ham a:hover{
        background-color: #C5A24A;
    }

    #hamdrop{
        top: 45px;
    }

    #hamdrop p{
        margin: 0;
    }

    #services-container{
        display: none;
    }

    .navlink{
        display: none;
    }

    .l{
        width: 100%;
        align-items: center;
        position: relative;
    }
    
    .landing .l img{
        width: 150%;
        top: 100px;
        left: -75px;
        opacity: 0.4;
        position: absolute;
        z-index: -1;
    }

    .r{
        width: 100%;
        align-items: center;
    }

    .l h1{
        width: 200%;
        margin-left: -45%;
    }

    .l h3{
        width: 200%;
        margin-left: -45%;
    }

    .l p{
        width: 200%;
        margin-left: -45%;
    }

    .l a{
        width: 200%;
        margin-left: -45%;
    }

    .landing{
        flex-wrap: wrap;
        flex-direction: column;
        margin-bottom: 20px;
        height: max-content;
        gap: 20px;
    }

    .landing .l img{
        display: none;
    }

    .landing .r{
        width: 100%;
    }
}