/* CSS Document */
/*navigation bar styling*/
html,body{
	height: 100%;
	width: 100%;
	background-image: url(../company_img/background.PNG);
	background-repeat: no-repeat;
	overflow-x: hidden;
	background-size: 105% 105%;}
.navigationbar {
  overflow: hidden;
  background-color: #000347;
  
}

.navigationbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  font-weight: bold;
  text-decoration: none;
  font-size: 17px;
}

.navigationbar a:hover {
  background-color: #44e319;
  color: black;
}

.navigationbar .icon {
  display: none;
}

@media screen and (max-width: 800px) {
  .navigationbar a:not(:first-child) {display: none;}
  .navigationbar a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .navigationbar.responsive {position: relative;}
  .navigationbar.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .navigationbar.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
	/*.indexImg.responsive{

		width: 40%;
		height: 40%;
	}*/

}
/*End of navigation bar styling*/
/*index styling*/
.mybox{
	display: block;
	width: 100%;
	height: 80%;
	text-align: center;
}
.indexImg{
	
	width: 100%;
	height: 100%;
}
.myBtns{
	background-color: #000347;
	color: #f2f2f2;
}
.myBtns:visited{
	color: #f2f2f2;
}
.myBtns:active{
	color: #f2f2f2;
}
.myBtns:hover{
	background-color: #44e319;
	color: #000;
}
.card {
    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
}

/* On mouse-over, add a deeper shadow */
.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.card_a{
	color: black;
}
.card_a:hover{
	color: #44e319;
}

/*end of index styling*/
/*contact styling*/

/*end of contact styling*/

/*about styling*/
button.aboutItem {
    background-color: #000347;
	color: #f2f2f2;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
	font-weight: bold;
    font-size: 19px;
    transition: 0.4s;
}

button.aboutItem.active, button.aboutItem:hover {
    background-color: #44e319;
	color: #000;
}

div.info {
    padding: 0 18px;
    background-color: white;
    max-height: 35%;
	font-size: 16px;
    overflow-y: auto;
	
    transition: max-height 0.2s ease-out;
}
/*end of about styling*/
/*gallery styling*/
.myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.picture {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.picture-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content, #caption {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}
button.accordion {
    background-color: #000347;
	color: #f2f2f2;
	
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
	font-weight: bold;
    font-size: 19px;
    transition: 0.4s;
}

button.accordion.active, button.accordion:hover {
    background-color: #44e319;
	color: #000;
}

button.accordion:after {
    content: '\002B';
    color: #f2f2f2;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

button.accordion.active:after {
    content: "\2212";
}

div.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow-y: auto;
    transition: max-height 0.2s ease-out;
}
/*end of gallery styling*/
/*services styling*/

/*end of services styling*/