/* =========================
   RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Open Sans',sans-serif;
line-height:1.6;
background:#fff;
color:#333;
overflow-x:hidden;
}

.container{
width:95%;
max-width:1300px;
margin:auto;
}

/* =========================
   HEADER
========================= */

.header{
background:#fff;
position:sticky;
top:0;
z-index:9999;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
min-height:110px;
}

.logo img{
height:95px;
display:block;
}

/* =========================
   MENU
========================= */

.menu{
flex:1;
display:flex;
justify-content:flex-end;
}

.menu ul{
list-style:none;
display:flex;
flex-wrap:wrap;
justify-content:flex-end;
align-items:center;
}

.menu ul li{
position:relative;
}

.menu ul li a{
display:block;
padding:15px 10px;
text-decoration:none;
font-size:14px;
font-weight:600;
color:#003366;
transition:.3s;
}

.menu ul li:hover > a{
background:#0056b3;
color:#fff;
border-radius:4px;
}

/* =========================
   DROPDOWN
========================= */

.dropdown{
display:none;
position:absolute;
top:100%;
left:0;
width:280px;
background:#fff;
border-top:4px solid #0077cc;
box-shadow:0 5px 25px rgba(0,0,0,.15);
z-index:999;
}

.menu ul li:hover .dropdown{
display:block;
}

.dropdown ul{
display:block;
}

.dropdown ul li{
width:100%;
border-bottom:1px solid #eee;
}

.dropdown ul li:last-child{
border-bottom:none;
}

.dropdown ul li a{
padding:12px;
font-size:14px;
font-weight:400;
color:#444;
}

.dropdown ul li a:hover{
background:#0056b3;
color:#fff;
padding-left:18px;
}

/* =========================
   HERO
========================= */

.hero{

min-height:550px;

background:
linear-gradient(
rgba(0,51,102,.60),
rgba(0,51,102,.60)
),
url('../gallery/banner.jpg');

background-size:cover;
background-position:center center;
background-repeat:no-repeat;

display:flex;
justify-content:center;
align-items:center;
text-align:center;

color:#fff;
}

.hero-content{
max-width:900px;
padding:20px;
}

.hero-content h1{
font-size:54px;
margin-bottom:15px;
}

.hero-content p{
font-size:22px;
margin-bottom:25px;
}

.btn{
display:inline-block;
padding:14px 35px;
background:#0077cc;
color:#fff;
text-decoration:none;
border-radius:4px;
font-weight:600;
transition:.3s;
}

.btn:hover{
background:#005daa;
}

/* =========================
   WELCOME
========================= */

.welcome-section{
padding:80px 0;
text-align:center;
}

.welcome-section h2{
font-size:36px;
color:#003366;
margin-bottom:20px;
}

.welcome-section p{
max-width:900px;
margin:auto;
font-size:17px;
}

/* =========================
   FOOTER
========================= */

.footer{
background:#003366;
color:#fff;
padding:25px 0;
text-align:center;
margin-top:40px;
}

/* =========================
   TABLET
========================= */

@media(max-width:1024px){

.logo img{
height:80px;
}

.menu ul li a{
font-size:13px;
padding:12px 8px;
}

.hero{
min-height:450px;
}

.hero-content h1{
font-size:40px;
}

.hero-content p{
font-size:18px;
}

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

.navbar{
flex-direction:column;
padding:15px 0;
}

.logo{
margin-bottom:10px;
}

.logo img{
height:70px;
}

.menu{
width:100%;
justify-content:center;
}

.menu ul{
justify-content:center;
}

.menu ul li a{
font-size:12px;
padding:8px;
}

.hero{
min-height:380px;
padding:20px;
}

.hero-content h1{
font-size:28px;
line-height:1.3;
}

.hero-content p{
font-size:16px;
}

.welcome-section{
padding:50px 15px;
}

.welcome-section h2{
font-size:28px;
}

.welcome-section p{
font-size:16px;
text-align:justify;
}

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

.logo img{
height:60px;
}

.menu ul li a{
font-size:11px;
padding:6px;
}

.hero{
min-height:320px;
}

.hero-content h1{
font-size:24px;
}

.hero-content p{
font-size:15px;
}

.btn{
padding:10px 25px;
font-size:13px;
}

.welcome-section h2{
font-size:24px;
}

.welcome-section p{
font-size:15px;
}

.footer{
font-size:14px;
}

}