html {
  scroll-behavior: smooth;
}

.left {
    animation: mymoveleft 2s;
}

.right {
    animation: mymoveright 2s;
}

.top {
    animation: mymovetop 2s;
}

.bottom {
    animation: mymovebottom 2s;
}

@keyframes mymoveleft {
  from {
    transform: translatex(130%);
  }
  to {
    transform: translatex(0);
  }
}

@keyframes mymoveright {
  from {
    transform: translatex(-130%);
  }
  to {
    transform: translatex(0);
  }
}

@keyframes mymovetop {
  from {
    transform: translatey(130%);
  }
  to {
    transform: translatey(0);
  }
}

@keyframes mymovebottom {
  from {
    transform: translatey(-130%);
  }
  to {
    transform: translatey(0);
  }
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 5px;
  right: 5px;
  z-index: 99;
  font-size: 12px;
  width: 80px;
  height: auto;
  outline: none;
  background-color: grey;
  color: white;
  cursor: pointer;
  padding: 2px;
  border-radius: 5px;
  border: 2px solid white;
  transition: transform .2s;
}

#myBtn:hover {
  background-color: #3CB371;
  transform: scale(1.2);
}

.preventcopy {
-webkit-touch-callout: none;
-moz-user-select: none;
-webkit-user-select: none;
-khtml-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}

.navbar {
  padding: 0px;
  background-color: #4D95D9;
}

.navbar .nav-item a {
  float: left;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  transition: 0.9s;
  font-family: Raleway;
}

.navbar .nav-item a:hover {
  color: #4D95D9;
  background-color: #FFFFFF;
}

.footeritem {
  text-align: left;
  color: #FFFFFF;
}

#loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url('pageLoader.gif') 50% 50% no-repeat rgb(249,249,249);
  opacity: 0.9;
}

@keyframes mymove {
  from {
    right:-100%;
  }
  to {
    right: 100%;
  }
}


.modal-content {
  width: 100%;
  max-width: 500px;
  background: white;
  text-align:left; 
  font-size: 16px; 
}


.name {
  width: 100%;
  font-size: 16px; 
  font-weight: bold; 
  color: black;
  text-align: left;
  font-family: "Trebuchet MS";
  margin-top: 10px;
}


.name2 {
  width: 100%;
  font-size: 16px; 
  font-weight: bold; 
  color: white;
  text-align: left;
  font-family: "Trebuchet MS";
}


.notavailable{
  font-size: 18px; 
  font-weight: bold; 
  width: 100%;
  background-color: red;
  color: white;
  border-radius: 5px;
  padding: 10px;
  font-style: italic;
  text-align: center;
}

.available{
  font-size: 18px; 
  font-weight: bold; 
  width: 100%;
  background-color: green;
  color: white;
  border-radius: 5px;
  padding: 10px;
  font-style: italic;
  text-align: center;
}


.ref{
  text-decoration:none;
  font-weight: bold;
  color: #A9A9A9;
}
.ref:hover {
  color: #FFCC33;
  text-decoration: underline;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: passy .5s;
  box-shadow: 0 0 30px green;
  z-index: 10;
}

@keyframes passy {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.sticky + .content {
  padding-top: 102px;
}



/* Popup container - can be anything you want */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  color: #FFFFFF;
  width: 160px;
  background-color: #555;
  text-align: left;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  top: 100%;
  right: 10px;
  margin-left: -80px;
  border: 1px solid white;
  padding:5px;
}

.pop {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
  padding-left: 10px;
}

.pop a {
  color: #FFFFFF;
  font-weight: bold;
  text-decoration: none;
}


.pop:hover {
  color: #000000;
  text-decoration: none;
  background-color: #EEE8AA;
  border-radius: 5px;
}

.pop:hover a{
  color: #000000;
  text-decoration: none;
  background-color: #EEE8AA;
  border-radius: 5px;
}

.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

.error {
  width: 100%;
  font-size: 14px;
  font-family: "Times New Roman";
  color: red;
  font-style: italic;
  text-align: left;
}

.thisbox {
  border: 2px dashed red;
  border-radius: 5px;
}


.thisbox:hover {
  border: 2px dashed red;
}



.spinner {
  margin-right: 20px;
  border: 6px solid #556B2F;
  border-radius: 50%;
  border-top: 6px solid #3498db;
  width: 30px;
  height: 30px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}


/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}


.sent {
  width: 100%;
  font-size: 16px;
  font-family: "Times New Roman";
  color: black;
  font-style: italic;
  font-weight: bold;
  text-align: left;
  border-radius: 5px;
}

.loadtext {
  width: 100%;
  font-size: 16px;
  color: #00FF00;
  font-weight: bold;
  text-align: left;
}


.down {
  display: none;
}


.download {
  display: block;
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 90000;
}


.btnd
{
background-color:grey;
border: 1px solid green;
color: white;
padding:10px;
cursor:pointer;
font-size:18px;
font-weight:bold;
border-radius: 5px;
}

.btnd:hover
{
background-color:RoyalBlue;
}


/* FROM BOOTSTRAP */

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
}
      }




/* ID */
#profilephoto {
    border-radius: 50%;    
    border-width: 1px;
    border-style: solid;          
    width: 50px;
    height: 50px;
}

#profilephoto img {
    border-radius: 50%;            
    width: 50px;
    height: 50px;
}


ul{
  text-align: left;
}

input[type=date], input[type=password], input[type=text] {
    width: 100%;
    padding: .5rem 1rem;
    border-radius: .3rem;
    height: 50px;
    font-family: "Trebuchet MS";
    font-size: 16px;
    font-weight: bold;
    border: 1px solid blue;
    transition: 0.9s;
}

input[type=date]:focus, input[type=password]:focus, input[type=text]:focus, select:focus {
    border-color: blue;
    box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
    box-shadow: 0 0 0 3px -moz-mac-focusring;
    color: #222;
    outline: none;
}


input[type=submit], input[type=reset], button {
    padding: .5rem 1rem;
    border-radius: .3rem;
    color: white;
    min-height: 50px;
    height: auto;
    font-family: "Trebuchet MS";
    font-size: 16px;
    font-weight:bold;
    text-align:center;
    margin-top: 10px;
    white-space: normal;
    word-wrap: break-word;
    border: 0px;
    background-color: #0000FF;
    transition: 0.9s;
}

input[type=file] {
    width: 100%;
    padding: .5rem 1rem;
    border-radius: .3rem;
    color: white;
    height: 50px;
    height: auto;
    font-family: "Trebuchet MS";
    font-size: 16px;
    font-weight:bold;
    text-align:center;
    margin-top: 10px;
    white-space: normal;
    word-wrap: break-word;
    border-bottom: 4px solid black;
    background-color: #98FB98;
    transition: 0.9s;
}


textarea[name=message], select {
    padding: 12px;
    margin: 2px 0px 10px 0px;
    font-family: "Consolas";
    background: white;
    font-size: 14px;
    border-radius: 5px;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 2px solid black;
}


input[type=submit]:hover, input[type=reset]:hover, button:hover{
    background-color: #0000CD;
}


ul {
    text-align: left;
}

hr {
    border: 2px solid white;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}


select {
  font-family: "Trebuchet MS";
  width: 100%;
  height: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  background-color: white;
  border: thin solid blue;
  border-radius: 4px;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;
  transition: 0.9s;
  margin: 0;      
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, blue 50%),
    linear-gradient(135deg, blue 50%, transparent 50%),
    linear-gradient(to right, skyblue, skyblue);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    100% 0;
  background-size:
    6px 7px,
    6px 7px,
    2.5em 3.5em;
  background-repeat: no-repeat;
}

select:focus {
  background-image:
    linear-gradient(45deg, white 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, white 50%),
    linear-gradient(to right, #FF69B4, #FF69B4);
  background-position:
    calc(100% - 15px) 1em,
    calc(100% - 20px) 1em,
    100% 0;
  background-size:
    6px 7px,
    6px 7px,
    2.5em 3.5em;
  background-repeat: no-repeat;
  border-color: grey;
  outline: 0;
}

select option:hover {
  cursor: pointer;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}



/* others */
.btnclose {
  width:120px; 
  height:40px; 
  background-color: #FA8072; 
  padding:2px;
  border: 1px solid #191970;
}

.btnclose:hover {
  background-color: #FF0000; 
  color: #000000;
}


.btn-close{
  cursor: pointer;
  font-size: 16px;
  background-color: white;
}


.btn-close:hover{
  background-color: red;
}


.modal-header{
  background-color: #000000;
}


.modalfooter {
  width: 100%; 
  text-align: center; 
  padding: 5px 0px 5px 0px;
  background-color: #FA8072;
}
.modaldisplay{
  display: block;
}

.modalalertsuc{
  width: 100%;
  max-width: 500px;
  background: linear-gradient(135deg, orange 60%, cyan);
  text-align:left; 
  color: white; 
  font-size: 24px; 

}

.modalalertsuc .btn-close{
  padding:.5rem .5rem;
  margin:-.5rem -.5rem -.5rem auto
}

.modalalertfail{
  width: 100%;
  max-width: 400px;
  text-align: center;
  padding:1rem 1rem;
  border-radius:calc(.3rem - 1px);
  background-color: red;
  color: white;
}

.modalalertfail .btn-close{
  padding:.5rem .5rem;
  margin:-.5rem -.5rem -.5rem auto
}

.contact input {
    padding: 12px;
    font-family: "Consolas";
    background: white;
    font-size: 14px;
    border-radius: 0px;
    border-radius: 5px;
    margin: 10px 0px 10px 0px;
}

.modal-title{
  color: white;
  font-weight: bold;
}



body {
  background-size: 100%;
  background-color: #6495ED;
  color: white;
}

.title{
  font-family: "Copperplate Gothic";
  color: white;
  font-weight: bold;
  font-size: 40px;
  text-shadow: 2px 2px 4px #000000;
  text-align: center;
}

.title img {
  width: 70%;
  transition: 0.9s;
  border-radius: 5px;
}

.title img:hover {
  -ms-transform: scale(1.1); 
  -webkit-transform: scale(1.1); 
  transform: scale(1.1); 
}

.box1 {
  background-color: blue;
  padding: 10px;
  text-align: center;
}

.box2 {
  text-align: justify;
  padding: 10px 20px 10px 20px;
  font-size: 25px;
}

.title1 {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-weight:bold;
  color: yellow;
  background-color: grey;
  padding: 12px;
  border: 2px solid black;
  border-radius: 5px;
}


.myimage img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 0 10px;
  border: 2px solid grey;
}

.myimage {
  margin: 20px 0px 20px 0px;
}

.form2{
  width: 100%;
  text-align: center;
  background-color: #E9967A;
  border: 2px solid white;
  border-radius: 10px;
  margin-bottom: 20px; 
  padding: 10px;
  align-content: center;
  transition: 0.9s;
  padding: 20px;
  
}


.form2:hover {
  background-color: #20B2AA;
  transition: 0.9s;
}

.title21 {
  width: 100%;
  color: #DC143C;
  font-family: "Trebuchet MS";
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  border-bottom: 2px solid blue;
  margin-bottom: 10px;
}


.title22 {
  color: royalblue;
  font-family: "Trebuchet MS";
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  border-bottom: 2px solid white;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.style13{
  font-size: 20px;
  color: black;
  text-align: justify;
}
.title2{
  font-weight: bold;
  color: green;
}

.style10{
  color: #000000;
  font-weight: bold;
}


.contact {
  background-color: grey;
  border-radius: 5px;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}



  .mytable {
    width: 100%;
    font-size: 18px;
  }

  .mytable th {
    text-align: center;
    padding: 6px;
    background-color: grey;
    color: white;
  }

  .mytable tr {
    border-bottom: 2px solid grey;
    background-color: #FFFFFF;
  }

  .mytable td {
    color: black;
    font-weight: bold;
  }

  .mytable tr:nth-child(odd){
      background: #b8d1f3;
  }

  .mytable tr:nth-child(even){
      background: #dae5f4;
  }

  .mytable tr:hover{
      background: #66CDAA;
  }


  .mytable2 {
    width: 100%;
    font-size: 18px;
  }

  .mytable2 th {
    text-align: center;
    padding: 6px;
    background-color: grey;
    color: white;
    border: 1px solid white;
  }

  .mytable2 tr {
    border-bottom: 2px solid grey;
    background-color: #FFFFFF;
  }

  .mytable2 td {
    color: black;
    font-weight: bold;
  }

  .mytable2 tr:nth-child(odd){
      background: #b8d1f3;
  }

  .mytable2 tr:nth-child(even){
      background: #dae5f4;
  }

  .mytable2 tr:hover{
      background: #66CDAA;
  }


#tablebox {
  width: 100%;
  border-radius: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  overflow: auto;
  max-height: 400px;
}


.lastrow {
  background-color: grey;
  color: white;
}


.motto {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-weight:bold;
  color: yellow;
  font-size: 14px;
}

.commite{
  background-color: green;
  text-align: left;
  font-weight: bold;
  border-radius: 5px;
  border: 2px solid black;
  padding: 20px;
  margin: 20px 20px 0px 20px;
}

.commite:hover{
  background-color: grey;
}


.mytitle{
  width: 100%;
  max-width: 600px;
  color: white;
  font-weight: bold;
  text-align: left;
  background-color: grey;
  border-radius: 5px;
  margin: 10px auto 10px auto;
  padding: 10px;
  text-shadow: 2px 2px 4px #000000;
}



.mytitle2{
  width: 100%;
  color: white;
  font-weight: bold;
  text-align: left;
  background-color: grey;
  border-radius: 5px;
  margin: 10px auto 10px auto;
  padding: 10px;
  text-shadow: 2px 2px 4px #000000;
}


.heading1 {
  width: 100%;
  font-size: 24px;
  color: green;
  font-weight: bold;
  text-shadow: 2px 2px 4px #000000;
  text-align: center;
}

.heading2 {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}


.comment{
  background-color: grey;
  color: white;
  border: 2px solid white;
  border-radius: 5px;
  width: 100%;
  max-width: 500px;
  padding: 10px;
  overflow-wrap: break-word;
  text-align: left;
}

#mybody {
  padding: 0px 10px 0px 10px;
}


/*Stick footer from bottom for few content*/

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  background: #87CEFA;
  font-family: "Trebuchet MS";
  text-align: center;
  font-size: 18px;
}

main {
  flex: 1 0 auto;
}

.footer {
  flex-shrink: 0;
}



#mybody2 {
  width: 100%;
  background-color: #C0C0C0;
  border-radius: 5px;
  border: 1px solid black;
  padding: 0px 20px 20px 20px;
  margin: 10px 0 10px 0;
  text-align: left;
}


.modal-body {
  padding-top: 2px;
}

.umutwe {
  width: 100%;
  border-bottom: 2px solid red;
  font-weight: bold;
  color: green;
  text-align: left;
  margin-top: 20px;
}

.ingingo {
  width: 100%;
  font-weight: bold;
  color: white;
  text-align: left;
  font-style: italic;
  margin: 20px 0 10px 0;
}

.ingingobody {
  width: 100%;
  color: black;
  text-align: justify;
  padding-left: 20px;
}

.amategeko {
  width: 100%;
  border-radius: 5px;
  border: 2px solid grey;
  background-color: #8FBC8F;
  padding: 15px;
  font-size: 20px;
}