@charset "utf-8";
/* CSS Document */
@font-face {
   font-family: Trebuchet;
   src: url("file/Font/Trebuchet.ttf");
}
@font-face {
   font-family:Bahnschrift;
   src: url("file/Font/Bahnschrift.ttf");
}
@font-face {
   font-family: BebasNeue;
   src: url("file/Font/BebasNeue.otf");
}
@font-face {
   font-family: Raleway-Light;
   src: url("file/Font/Raleway-Light.ttf");
}
@font-face {
   font-family: Raleway-Medium;
   src: url("file/Font/Raleway-Medium.ttf");
}
@font-face {
   font-family: FreeHand;
   src: url("file/Font/FreeHand.ttf");
}
@font-face {
   font-family: SegoeUI;
   src: url("file/Font/segoeui.ttf");
}

body {
    font-family: Arial, sans-serif;
    margin:0;
}
/* =================================== TOP NAV =========================================*/
.header {

}
.topnav {
  position: sticky;
  top: 0;
  background-color: #0077b6;
  height: 65px;
  box-shadow: 0px 2px 10px 0px black;
  font-family: Trebuchet;
}
.navLogo{
	float: left;
}
.navLogo #bkpsdmdLogo {
	height: 45px;
	padding-top: 15px;
	padding-left: 20px;
	padding-right: 20px;
}

.navRight {
  float: right;
	padding-top: 0px;
	padding-bottom: 0px;
	background-color: #0077b6;
	
}
.navRight a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 25px 20px 20px 20px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a.active {
  background-color: white;
  color: black;
}

.topnav .icon {
	display: none;
}

.dropdown {
  float: left;
}

.dropdown .dropbtn {
  cursor: pointer;
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  padding: 24px 20px 20px 20px;
  background-color: inherit;
  font-family: inherit;
  transition: all 0.5s ease-in-out;
}

.dropdown-content {
  
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 5px 10px 0px black;
  z-index: 1;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 15px; 
  min-width: 160px;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 1050px) {
    .dropdown:hover > .dropdown-content {
        display: block;
        transition: all 0.5s ease-in-out;
      }
}
.navRight a:hover, .dropdown:hover .dropbtn {
  background-color: rgb(255, 255, 255);
  color: black;
  transition: all 0.5s ease-in-out;
  
}

.dropdown .dropdown-content a:hover {
  background-color: #ddd;
  color: black;
  transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 1050px) {
  .navLogo #bkpsdmdLogo {
    height: 30px;
    margin-top: 15px;
    margin-left: 10px;
    padding: 0;
    position: relative;
    z-index: -1;
  }
  
  .navRight a:not(:empty), .dropdown .dropbtn { 
	  display: none;
	}
  .navRight {
  float: right;
  }
  .navRight a{
    width: 100%;
  }
  .topnav a.icon {
  width: 50px;
	float: right;
  display: inline;
  padding: 21px 21px;
  }  
}

@media screen and (max-width: 1050px) {
  .topnav.responsive {
	  position: sticky;
	  float: left;
	  width: 100%;
    margin-top: -10px;
	}
  .topnav.responsive .icon {
	position: absolute;
  float: right;
	right: 0;
	top:0;
  }
	.topnav.responsive .navRight {
		width: 100%;
  margin-top: -50px;
    margin-top: 20px;
	}
  .topnav.responsive a {
    
    display: flex;
    text-align: left;
  }
  .topnav.responsive .dropdown {
	  float: none;
	}
  .topnav.responsive .dropdown-content {
	  position: relative;
	}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
  .dropdown-content.show {
  display: block;
  }
}

header {
    background:#023e8a;
    color:white;
    padding:10px;
    text-align:center;
}
.container {
    display:flex;
    gap:20px;
    max-width:1200px;
    margin:auto;
    padding:20px;
}
.news-list {
    flex:3;
}
.news-item {
    background:white;
    margin-bottom:20px;
    padding:15px;
    border-radius:8px; 
    box-shadow:0 2px 6px rgba(0,0,0,0.1);
    display:flex;
    gap:15px;
}
.news-item img {
    width:200px;
    height:120px;
    object-fit:cover;
    border-radius:6px;
}
.news-content h2 {
    margin:0;
    font-size:18px;
    color:#003366;
}
.news-content p {
    font-size:14px;
    color:#555;
}
.news-content a {
    display:inline-block;
    margin-top:10px;
    text-decoration:none; 
    color:#003366; font-weight:bold;
}
.sidebar {
    flex:1;
}
.sidebar h3 {
    margin-bottom:10px;
    border-bottom:2px solid #003366;
    padding-bottom:5px;
}
.sidebar ul {
    list-style:none;
    padding:0;
}
.sidebar ul li {
    margin:8px 0;
}
.sidebar ul li a {
    text-decoration:none;
    color:#333;
}
@media(max-width:768px){
    .container{
        flex-direction:column;
    }
    .news-item{
        flex-direction:column;
    } 
    .news-item img{
        width:100%;
        height:auto;
    }
}

/* =================================== FOOTER =========================================*/
* {
	box-sizing: border-box;
}
.row{
   margin: auto;
   justify-items: center;
   align-items: center;   
}
.column {
	overflow: hidden;
	float: left;
	padding: 10px;
	color: white;
	height: 260px;
	font-family: Raleway-Medium;
	font-size: 15px;
}
.first{
	width: 22.5%;
   background-color: #0096c7;
} 
.first img {
   width: 100%;
	margin: auto;
    display: block;
}

.second {
 	width: 35%;
	text-align: left;
	background-color: #00b4d8;
	color: white;
}
.second img{
	width: 40px;
	margin-right: 10px;
}

.third {
  width: 20%;
  background-color: #0096c7;
}
.third img {
	width: 40px;
	margin-left: 5px;
	padding-bottom: 20px;
}

.fourth {
	width: 22.5%;
	background-color: #00b4d8;
	padding-bottom: 20px;
	padding-top: 10px;
}
.fourth p {
	text-align: left;
	padding-top: 10px;
	padding-bottom: 10px;
}
.fourth img{
	margin: auto;
   display: block;
	width: 100%;
}
/* On smaller screens, decrease text size */
@media only screen and (max-width: 800px) {
  .first, .second, .third, .fourth {
	  width: 100%;
	  height: auto;
	}
	.first img{
		width: 70%;
	} .fourth img 
	{
		width: 70%;
	}
}