:root {
  --title-span-color: rgb(24, 78, 129);
  --font-small: 0.5em;
  --font-medium: 1em;
  --font-medium-large: 1.25em;
  --font-large: 1.5rem;
  --font-x-large: 2rem;
  --font-2x-large: 3rem;
  --font-3x-large: 3.5rem;
  --transition-fast: 0.2s;
}

/*Large Desktop*/

/*General CSS*/
html {
  scroll-behavior: smooth;
}


/* About */
.about {
  width: 100%;
  /* min-height: 300px; */
}

body {
  font-family: "Roboto", sans-serif;
  
}

* {
  margin: 0;
  padding: 0;
} 

.container {
  width: 100%;
  margin: 0 auto;
  border: 2px;
}

.float-right {
  float: right;
}

.text-inline {
  display: inline;
}

.text-centered {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-indented {
  text-indent: 10px;
}

.content {
  padding: 50px;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75);
}

.content h3 {
  margin-top: 30px !important;
}

.content p {
  margin-top: 15px !important;
}

.icons {
  font-size: var(--font-x-large);
}

.text-inline {
  display: inline;
}


.text-centered {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-indented {
  text-indent: 10px;
}
/* End General CSS */

/* Navigation bar and button */
#back-to-top {
  display: none;  
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 24px;
  border: none;
  background: #29323c;
  color: white;
  cursor: pointer;
  padding: 15px 20px;
  border-radius: 50%;

}

.navigation {
  width: 100%;
  height: 80px;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75);
}

.nav-container {
  margin: 0 auto;
  height: 100%;
  display: flex;
}

.nav-container .links {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.nav-container .logo {
  display: flex;
  align-items: center;
}

.nav-container .links a,
.nav-container .logo a {
  text-decoration: none;
  transition: var(--transition-fast);
  font-family: "Roboto", sans-serif;
}

.nav-container .links a {
  font-size: var(--font-medium);
}

.nav-container .logo p {
  font-size: var(--font-large);
}

.nav-container .links a:hover,
.nav-container .logo p:hover {
  font-size: var(--font-large);
}
/* End Navigation bar and button */

/* Mobile Navigation and Links  */
.mobile-button {
  /* mobile nav hamburger button should not display except for mobile screens*/
    display: none;        
}


.mobile-links {
  background: #485563;
  background: -webkit-linear-gradient(to right, #29323c, #485563);
  background: linear-gradient(to right, #29323c, #485563);
  height: 100%;
  width: 0;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  top: 0;
  left: 0;
  overflow-x: scroll;
  transition: var(--transition-fast);
  padding-top: 20px;
}

.mobile-links a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  display: block;
  transition: 0.3s;
  text-align: center;
  color: rgb(153, 255, 187);
}

.mobile-links .closebtn {
  font-size: var(--font-2x-large);
  color: rgb(153, 255, 187);
  padding: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
  border: 5px solid rgb(153, 255, 187);
  position: absolute;
  right: 0;
  top: 0;
}
/* End Mobile Navigation and Links */


/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  /* min-height: 300px;
  height: 800px; */
  background: #485563;
  background: -webkit-linear-gradient(to right, #29323c, #485563);
  background: linear-gradient(to right, #29323c, #485563);
}

.hero a {
  border: 3px double rgb(153, 255, 187);
  text-decoration: none;
  color: rgb(153, 255, 187);
  transition: var(--transition-fast);
}

.hero a:hover {
  background-color: rgba(153, 255, 187, 0.7);
  color: black;
}

.hero h1 {
  font-size: var(--font-3x-large);
  font-weight: bold;
  color: rgb(153, 255, 187);
}

.hero i {
  font-size: var(--font-large) !important;
  color: rgb(153, 255, 187);
}

.hero p {
  font-size: var(--font-x-large);
  font-weight: bold;
  color: rgb(153, 255, 187);
}
/* End Hero */


.hidden { 
  display:none !important; 
} 

.required {
  color: red;
}

.required::after {
  content: " *";
  color: red;
}


.success, .error { 
  margin-top:1rem; 
}    

.success { 
  color:lightgreen; 
}    
.error { 
  color:red; 
}    



/* Leadership Section and Cards */
.leadership {
  margin-top: 50px;
}

.leadership-container {
  width: 90%;
  margin: 0 auto;
  border: 5px;
}


.leadership.content h3 {
  margin-top: 0 !important;
}

.leadership-cards {
  display: flex;
  /* flex: 35%; */
  /* min-height: 100px; */
  flex-wrap: wrap;  
  background: white;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: var(--font-medium); 
  padding: 10px;  
}

.leadership-card {
  width: 50%;
  margin-top: 50px !important;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  justify-content: left;
}

.circular-portrait {
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  align-items: center;
}

.circular-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  align-items: center;
}
/* End Leadership Section and Cards */


/* Testimonials and Slides */
.testimonials {
  min-height: 300px;
  height: auto;
  background: #485563;
  background: -webkit-linear-gradient(to right, #29323c, #485563);
  background: linear-gradient(to right, #29323c, #485563);
}

.testimonials h2 {
  color: white;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  background: white;
}

/* Slides */
.mySlides {
  display: none;
  padding: 80px;
  text-align: center;
}

.mySlides p {
  width: 50%;
  text-align: center;
  margin: 0 auto;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* The dot/bullet/indicator container */
.dot-container {
  text-align: center;
  padding: 20px;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: rgba(153, 255, 187, 0.2);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active,
.dot:hover {
  background-color: rgba(153, 255, 187, 1);
}
/* End Testimonials and Slides */

/* Consulting and Consulting Cards */
.consulting-container {
  width: 80%;
  margin: 0 auto;
}

.consulting.content {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.consulting-card {
  /* min-height: 100px; */
  width: 60%;
  float: left;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-medium-large);
  padding: 15px;
}

.consulting-card p {
  text-align: center;
}

.consulting-card-right {
  float: right;
}
/* End Consulting and Consulting Cards */

/* Why Us*/
.why-us {
  /* min-height: 300px; */
  height: auto;
  background: #485563;
  background: -webkit-linear-gradient(to right, #29323c, #485563);
  background: linear-gradient(to right, #29323c, #485563);
}

.why-us h2 {
  color: white;
}

.why-us .container {
  width: 40%;
}
/* End Why Us*/

/* Boxes and Box */
.boxes {
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
  
}

.box {
  flex: 1 1 35%;
  /* min-height: 100px; */
  flex-wrap: wrap;  
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: var(--font-medium);
  padding: 15px;
}
/* End Boxes and Box */

/* Contact Us */
.contact {
  min-height: 400px;
  display: flex;
  justify-content: center;
  padding: 40px;
  border: 2px;
}

/* Follow */
.follow {
  display: flex;
  justify-content: center;
  padding: 25px;
}

/* Contact */
.contact {  
  display: flex;
  justify-content: center;
  padding: 25px;
  width: 100%;
}

.contact span {
  color: var(--title-span-color);
}

.contact-info{
  margin-top: 15px;
  /* width: 50%;
  text-indent: 25%; */
}


.contact .short-contact {
  display: flex;
  flex-direction: column;
  align-items: left;
  min-height: 400px;
}

.contact span {
  color: var(--title-span-color);
}
/* End Contact Us */

/* Contact Us Form */
.contact form {
  background: #485563;
  background: -webkit-linear-gradient(to right, #29323c, #485563);
  background: linear-gradient(to right, #29323c, #485563);
}

.contact .form .container {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.contact .form .container form {
  width: 80%;
}

.contact .form input[type="email"],
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}



.contact .form input[type="text"],
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

.contact .form input[type="tel"],
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

.contact .form input[type="submit"] {
  border: 3px solid rgb(153, 255, 187);
  text-decoration: none;
  color: rgb(153, 255, 187);
  transition: var(--transition-fast);
  background-color: transparent;
  padding: 10px 25px;
}


.contact .form input[type="submit"]:hover {
  background-color: rgba(153, 255, 187, 0.7);
  color: black;
}

.contact .form textarea{
  height: 300px;
  width: 100%;
}
/* End Contact Us Form */

/* Footer */
.footer {
  /* min-height: 80px; */
  background: #485563;
  background: -webkit-linear-gradient(to right, #29323c, #485563);
  background: linear-gradient(to right, #29323c, #485563);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;  
  font-size: var(--font-medium);
}
/* End Footer */

/* Max Width of 1200 px */
@media screen and (max-width: 1200px) {
  .container {
    width: 80%;
  }

  #back-to-top {
    display: none !important;
  }

  .navigation {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(252, 252, 252, 1) !important;
  }

  .mobile-links .closebtn {
    margin-right: 0;
  }

  .hero {
    /* min-height: 200px; */
    height: auto;
  }

  .hero h1 {
    font-size: var(--font-x-large);
  }

  .l-card {
    padding: 0;
  }

  .contact {
    padding: 10px;
  }

  .contact p {
    font-size: var(--font-medium-large) !important;
  }

  .contact .container {
    width: 100%;
    border: 2px;
  }

  .why-us .container {
    width: 60%;
    border: 2px;
  }

  .box {
    font-size: var(--font-medium);
  }
}
/* End Max Width of 1200 px */

/* Max Width of 1024 px */
@media screen and (max-width: 1024px) {

  .box {
    flex: 45%;
    font-size: var(--font-medium-large);
    min-height: 0;
    height: auto;
  }

  .consulting-card {
    width: 90%;
  }

  .container {
    width: 90%;
  }
  
  /* .mobile-button {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
  } */

  /* .mobile-button span {
    font-size: var(--font-x-large);
  } */

  .mobile-links-active {
    width: 100%;
  }

  .hero h1 {
    text-align: center;
  }

  .mySlides {
    padding: 50px !important;
  }

  .mySlides p {
    width: 60%;
  }
  .nav-container {
    width: 100%;
  }

  .nav-container .links {
    display: none;
  }

}/* End Max Width of 1024 px */

/* Max Width of 768 px */
@media screen and (max-width: 768px) {
  .box {
    flex: 100%;
  }

  .container {
    width: 80%;
  }

  .contact {
    flex-direction: column;
    justify-content: center;
  }

  .contact .container {
    width: 90%;
  }

  .contact .form .container form {
    width: 100%;
  }

  .contact .short-contact {
    width: 100%;
    min-height: 0;
    justify-content: center;
  }

  .contact .short-contact h2 {
    width: fit-content;
  }

  .consulting-card {
    width: 100%;
    float: none;
  }
  .consulting-card-right {
    float: none;
  }

  .content.container,
  .leadership-content.container {
    width: 100%;
  }

  .leadership-cards {
    flex-direction: column;
  }

  .leadership-card {
    width: 100%;
  }

  .mySlides {
    padding: 30px !important;
  }

  .mySlides p {
    width: 70%;
  }

  .testimonials {
    padding: 15px !important;
  }

  .why-us .container {
    width: 80%;
  }
}/* End Max Width of 768 px */

/* Max Width of 480 px */
@media screen and (max-width: 480px) {
  #back-to-top {
    display: none !important;
  }

  .box {
    font-size: var(--font-medium);
  }

  html,
  body {
    overflow-x: none;
  }

  .contact {
    padding: 10px;
  }

  .contact .container {
    width: 100%;
  }

  .contact p {
    font-size: var(--font-medium-large) !important;
  }

  .content {
    padding: 10px;
    box-shadow: none;
    border: none;
  }

  .hero {
    min-height: 400px;
    height: auto;
  }

  .mobile-links .closebtn {
    margin-right: 0;
  }

  .hero h1 {
    font-size: var(--font-x-large);
  }

  .hero p {
    font-size: var(--font-medium);
  }

  .leadership-card {
    padding: 0;
  }

  .mobile-button {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
  }

  .mobile-button span {
    font-size: var(--font-x-large);
  }

  .mySlides {
    font-size: 0.85rem;
  }

  .mySlides p {
    width: 70%;
  }

  .navigation {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(252, 252, 252, 1) !important;
  }

  .nav-container .links {
    display: none;
  }

  .testimonials {
    padding: 0 !important;
  }

  .why-us .container {
    width: 100%;
  }
}
/* End Max Width of 480 px */
