@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Baloo+Thambi+2&family=Raleway&family=Rubik&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

/*  Typography Classes  */

.font-baloo {
  font-family: "Baloo Thambi 2", cursive;
}

.font-rale {
  font-family: "Raleway", cursive;
}

.font-rubik {
  font-family: "Rubik", cursive;
}

.font-poppins {
  font-family: "Poppins", sans-serif;
}

.font-size-12 {
  font-size: 12px;
}

.font-size-14 {
  font-size: 14px;
}

.font-size-16 {
  font-size: 16px;
}

.font-size-20 {
  font-size: 20px;
}

.font-normal {
  font-weight: normal;
}

.font-bold {
  font-weight: bold;
}

.btn-default { 
  background: #513ae8;
  border: 2px solid black;
  border-radius: 10px;
  color: white;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  box-shadow: 8px 6px 2px 1px rgba(0, 0, 255, .2);
}
.btn-default:hover {
    background: #412fb5;
}

body {
  font-family: "Poppins", sans-serif;
}

button {
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}
a:visited {
    text-decoration: none; 
}

header {
  display: flex;
  width: 100%;
  height: auto;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}

.logo-container,
.nav-links {
  display: flex;
}

.logo-container {
    flex: 3;
}
.logo-container a h3 {
  color: #5f5f79;
}


#logo-Header {
  height: 100%;
  width: 100%;
}
#logo-BBHeader {
  height: 100%;
  width: 100%;
}

.nav-items {
  display: flex;
  width: 100%;
  height: auto;
  margin: auto;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex: 1;
  margin-right: 2vw;
}

.nav-links {
  justify-content: space-around;
  list-style: none;
  width: 100px;
}
.nav-link {
  color: #5f5f79;
  font-size: 16px;
  text-decoration: none;
}


/* BODY */

.presentation {
  display: flex;
  margin: auto;
  margin-bottom: 50px;
  min-height: 80vh;
  justify-content: space-evenly;
  flex-direction: column;
  align-items: center;
  background-color: rgb(255, 255, 255);
  width: 100%;
  padding-top: 10px;
  padding-left: 100px;
  padding-right: 100px;
}
.presentation p {
  font-size: 20px;
}
.presentation ul {
  font-size: 20px;
  margin: 30px;
  margin-left: 50px;
  margin-right: 0px;
}
.presentation_PageHeader {
  color: #1919c7;
  font-size: 30px;
  margin-top: 30px;
  text-align: center;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  
}

.slider {
  margin: 20px;
  margin-top: 40px;
}

.info {
  text-align: center;
  margin: 1px;
  margin-top: 1.0rem;
}

.visitImg {
	width: 250px;
	height: 139px;
  margin-bottom: 1.5rem;
}

.contents {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px;
  margin-bottom: 1.5rem;
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1.5rem;
  color: blue;
}

.btn {
  line-height: 50px;
  height: 50px;
  text-align: center;
  width: 250px;
  cursor: pointer;
}

/* FOOTER */

.foot {
  text-align: center;
  margin: 1rem;
}

.footer {
  display: flex;
  background: rgb(0, 0, 0);
  height: 275px;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
.footer-items {
  height: 200px;
  color: #fff;
  margin: 1px;
}
.footer-items a {
  text-decoration: none;
  color: #fff;
}
.footer-items h3 {
  margin-bottom: 10px;
}

/* BUTTON */
.btn-one {
  color: black;
  transition: all 0.3s;
  position: relative;
}
.btn-one span {
  transition: all 0.3s;
}
.btn-one::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(0, 0, 0, 0.5);
  transform: scale(0.1, 1);
}
.btn-one:hover span {
  letter-spacing: 2px;
}
.btn-one:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}
.btn-one::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.1);
}
.btn-one:hover::after {
  opacity: 0;
  transform: scale(0.1, 1);
}

/* STAFF PAGE */

.staff {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin-left: 110px;
}
.staffInner img {
  display: block
}
.staffInner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0px;
  width: 430px;
}

/* CONTACT US PAGE */

.contact-items {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.contact-info {
  font-family: "Poppins", sans-serif;
  width: 700px;
  display: flex;
  justify-content: center;
  margin: 30px;
  padding: 50px;
}
.contact-form {
  font-family: "Poppins", sans-serif;
  width: 700px;
  margin: 30px;
  padding: 50px;
  font-style: center;
  border: solid black;
}

.form-control {
  font-family: "Poppins", sans-serif;
  width: 600px;
  max-width: 600px;
  min-width: 600px;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid black;
  color: black;
  font-size: 18px;
  margin-bottom: 16px;
}

input {
  height: 45px;
}

form .submit {
  background: #ff5722;
  border-color: transparent;
  color: white;
  font-size: 20px;
  font-weight: 500;
  height: 50px;
  margin-top: 30px;
}
form .submit:hover {
  cursor: pointer;
  background-color: rgb(221, 130, 55);
}

/*  Submit Testimonials  */

.testimonial-table {
  border: 2px solid;
  border-style: groove;
  border-radius: 5px;
  border-color: darkgrey;
  padding: 5px;
  background: skyblue;
}

.testimonial-form {
    display: flex;
    justify-content: center;
}

#testimonial-letter {
    width: 50vw;
    text-align: center;
}
/* BigBox SlideShow on Main Page */

* {box-sizing:border-box}

/* SlideShow Container */
.slideshow-container {
  max-width: 1500px;
  position: relative;
  margin: auto;
}

/* Hide the Images by default */
.mySlides {
  display: none;
}

/* Next & Previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active, .dot:hover {
  background-color: #717171;
}

/* Fading Animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
