@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 {
	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;
  }
}
/* ============================================ CONTENT ==============================*/
.coomingSoon {
	text-align: center;
   font-family: 'Courier New', Courier, monospace;
	font-size: 50px;
	font-family: Segoe UI;
	color: #0077b6;
}

/* =================================== 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%;
	}
}