/* Start All Tabs */
*{
    padding: 0;
    margin: 0;
}
body{
    font-family: sans-serif;
}
header{
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url("../img/bg-bdg.jpg");
    background-position:right;
    background-size: 115%;
    background-position: 98% 50%;
    height: 60vh;
}
a{
    text-decoration: none;
    font-weight: 600;
}
p{
    font-weight: 500;
}
.nav-container{
    display: flex;
    position: fixed;
    justify-content: center;
    height: 80px;
    width: 100%;
}
nav{
    position: fixed;
    display: flex;
    align-items: center;
    width: 85%;
    justify-content: space-between;
    margin-top: 40px;
}
nav .bar{
    display: none;
}
.sticky{
    transition: 0.5s;
    background-color: white;
    padding: 5px;
    box-shadow: 0.5px 0.5px 8px;
}
.nav-sticky{
    transition: 0.3s;
    padding: 5px;
    margin: 0;
}
.logo{
    display: flex;
    align-items: center;
}
.logo-img{
    height: 70px;
    margin-right: 8px;
}
.logo-text1{
    font-size: 20px;
    color: rgb(240, 215, 0 );
    padding-right: 5px;
}
.logo-text2{
    font-size: 20px;
    color: rgb(9, 74, 131);
}
.menu{
    display: flex;
    text-decoration: none;
    list-style: none;
    justify-content: center;
    align-items: center;
}
.menu li{
    padding:18px 20px;
    justify-content: center;
}
.menu li .a-menu{
    position: relative;
    text-decoration: none;
    color: rgb(213, 213, 213);
    font-size: 15px;
    margin-left: 7px;
    padding: 10px 8px;

}
.menu li .a-menu::after{
    content: "";
    position: absolute;
    background-color: rgb(240, 215, 0 );
    height: 3px;
    width: 0;
    left: 0;
    bottom: 0;
    transition: 0.3s;

}
.menu li .a-menu:hover:after{
    width: 100%;
}
.drop{
    position: relative;
    text-decoration: none;
    padding-left: 7px;
    color: rgb(213, 213, 213);
    font-size: 15px;
    margin-right: 15px;
}
i{
    margin-left: 5px;
    font-size: 12px;
}  
.dropdown{
    display: none;
    flex-direction: column;
    position: fixed;
    list-style: none;
    box-shadow: 0.5px 0.5px 5px;
    background: transparent;
    backdrop-filter: blur(8px);
    margin-top:15px;
    padding: 8px;
    border-radius: 7px;
    width: 120px;
}

.dropdown li a{
    position: relative;
    text-align: center;
    color: white;
    font-size: 15px;
    padding: 10px 5px;
}

.dropdown ul li a::after{
    content: "";
    display: flex;
    position: absolute;
    background-color: rgb(240, 215, 0 );
    height: 2.8px;
    margin-bottom: 5px;
    width: 0;
    left: 0;
    bottom: 0;
    transition: 0.3s;
}
.dropdown ul li a:hover:after{
    width: 100%;
}
.stick-drop{
    background-color: white;
    backdrop-filter: none;
}
.dropdown li{
    position: block;
    list-style: none;
    text-decoration: none;
    font-size: 15px;
    padding: 5px 5px;
}
.me:hover .dropdown{
    display: block;
    position: absolute;
}
.nav-sticky .menu li a {
    color: rgb(9, 74, 131);
}
.nav-sticky .menu li .login{
    color: white;
}
.menu .li-login{
    padding-left: 15px;
}
.menu li .login{
    color: white;
    text-align: center;
    padding: 15px 30px;
    background-color: rgb(0, 90, 169);
    border-radius: 5px;
}
.menu li .login:hover{
    color: rgb(236, 236, 236);
    transition: 0.3s ease-in-out;
    background-color: rgb(9, 74, 131);
    border-radius: 5px;
}
nav .close{
    display: none;
}
/* End All Tabs */
.upper{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
    height: 100%;
}
.upper h1{
    font-size: 40px;
    color: white;
}
.about{
    background-color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 33rem;
    padding: 0 100px;
}
.about h1{
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 20px;
}

.about img{
    height: 360px;
    margin-left: 60px;
}
.about p{
    font-size: 20px;
    text-align: justify;
}
.brosur{
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
    padding: 0 100px;
    margin-bottom: 100px;
}
.brosur h1{
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 20px;
}
.brosur img{
    width: 400px;
}
.gallery{
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
    padding: 0 100px;
    margin-bottom: 100px;
}
.gallery h1{
    padding-bottom: 20px;
}
.gallery .content-gallery{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
}
.gallery .content-gallery .slide{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.gallery .content-gallery .slide img{
    width: 350px;
}

.gallery h1{
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 20px;
}
/* Start footer */
footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: rgb(17, 17, 17);
    height: 200px;
    gap: 12px;
}
footer h1{
    font-weight: 400;
}
footer .contact{
    display: flex;
    gap: 12px;
}
footer .contact a{
    position: relative;
    text-decoration: none;
    color: white;
}
footer .contact a img{
    height: 22px;
}
footer hr{
    width: 50%;
}
@media screen and (min-width: 1398px) {
    header .home p{
        padding: 0 350px;
        font-size: 16px;
        color: white;
        text-align: center;
    }
}
@media screen and (max-width: 1295px){
    header .home p{
        padding: 0 250px;
        font-size: 16px;
        color: white;
        text-align: center;
    }
    main h1{
        font-size: 30px;
        margin-bottom: 10px;
    }
    .about img{
        height: 250px;
        margin-right: 40px;
    }
    main p{
        font-size: 15px;
    }
}
@media screen and (max-width: 1010px){
    header .home p{
        padding: 0 150px;
        font-size: 16px;
        color: white;
        text-align: center;
    }
    main h1{
        font-size: 30px;
        margin-bottom: 10px;
    }
    .about img{
        height: 200px;
        margin-right: 40px;
    }
    main p{
        font-size: 13px;
    }
}
@media screen and (max-width:878px) {  
    nav{
        align-items: normal;
        margin: 0;
    }
    nav .bar{
        position: absolute;
        display: block;
        margin-left: 100%;
        margin-top: 13vh;
        color: white;
    }
    .sticky nav .bar{
        margin-top: 8vh;
        color: rgb(9, 74, 131);
    }
    .logo{
        margin-top: 40px;
    }
    /* .logo-img{
        height: 55px;
    }
    .logo-text1{
        font-size: 15px;
    }
    .logo-text2{
        font-size: 15px;
    } */
    .nav-sticky .logo{
        padding-top: 5px;
    }
    .sticky{
        padding: 0;
    }
    .sticky nav .logo{
        margin-top: 0;
    }
    .nav-sticky{
        padding: 0;
    }
    .sticky nav .me .dropdown ul li{
        color: rgb(0, 90, 169);
    }
    nav .menu{
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: start;
        background: transparent;
        backdrop-filter: blur(10px);
        height: 100vh;
        margin-left:150%;
        padding: 0 40vw 0% 50px;
    }
    .sticky nav .menu{
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: start;
        background-color: white;
        box-shadow: rgba(0, 0, 0, 0.7), 8px 8px 8px;
        height: 100vh;
        margin-left:150%;
        padding: 0 40% 0% 50px;
    }
    .barOP .menu{
        transition: 0.3s;
        margin-left: 46%;
    }
    .sticky .barOP .menu{
        transition: 0.3s;
        margin-left: 46%;
    }

    nav .close{
        color:white;
        position: absolute;
        margin-left: 30vw;
        margin-bottom: 75vh;
    }
    .sticky .close{
        color:rgb(0, 90, 169);
        position: absolute;
    }
    nav .menu li{
        display: flex;
        justify-content: baseline;
        padding-top: 0;
        padding: 0;
        padding-bottom: 30px;
    }
    nav .menu li a{
        text-align:start;
        padding: 0;
        margin-left: 0;
    }
    .menu li .a-menu {
        position: relative;
        text-decoration: none;
        color: rgb(213, 213, 213);
        font-size: 15px;
        margin-left: 0;
        padding: 10px 0px;
    }
    .drop{
        padding-bottom: 50px;
        padding: 0;
    }
    .drop i{
        display: none;
    }
    .me{
        display: flex;
        justify-content: baseline;
        padding: 0;
        padding-bottom: 50px;
    }
    .dropdown{
        margin-top: 40px;
        margin-left: 50px;
        position: absolute;
        display: block;
        box-shadow: none;
        backdrop-filter: blur(0px);
    }
    .dropdown ul li{
        color: white;
        display: flex;
        justify-content: start;
        padding-bottom: 20px;
    }
    .dropdown ul li a{
        font-weight: 100;
        margin-left: 5px;
    }
    .dropdown ul li a::after{
        margin-bottom: -10px;
    }
    .menu .li-login {
        padding: 0;
        padding-top: 40vh;
    }
    header .home h1{
        font-size: 45px;
    }
    header .home p{
        font-size: 14px;
    }
    .about{
        padding: 0 50px;
    }
    .about img{
        height: auto;
        width: 50%;
        margin-right: 20px;
    }
    .about h1{
        text-align: start;
        font-size: 23px;
    }
    .about p{
        font-size: 12px;
        padding: 0;
    }
    footer h1{
        font-size: 28px;
    }
    footer p{
        font-size: 12px;
    }
}
@media screen and (max-width:375px) {
    .logo-img{
        height: 50px;

    }
    nav .bar{
        position: absolute;
        display: block;
        margin-left: 90%;
        margin-top: 12vh;
    }
    .sticky nav .bar{
        margin-top: 8vh;
        color: rgb(9, 74, 131);
    }
    .sticky .logo-img{
        margin-top: 10px;
    }
    .logo-text1, .logo-text2{
        font-size: 13px;
        font-weight: 600;
    }
    .sticky .logo-text1, .sticky .logo-text2{
        margin-top: 10px;
    }
    header .home h1{
        font-size: 35px;
    }
    header .home p{
        padding: 0 30px;
    }
    .about{
        padding: 0 30px;
        flex-direction: column;
    }
    .about img{
        width: 100%;
        margin: 0;
    }
    .about .content{
        margin: 0;
        margin-top: 10px;
    }
    .about h1{
        margin-bottom: 5px;
    }
    nav .menu, .sticky nav .menu{
        padding: 0 20vw 0 10px;
    }
}