:root {
 /* --mainColor: #f7ed96; */
	 --mainColor: #adc7f9;
}


/* Slideshow container */
.slideshow-container {
  max-width: 750px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: black;
  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;
}

.prev {
	left:0;
}

/* 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);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* 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 {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}





body {
  margin: 0;
  padding: 0;
	
	text-align: center;
  
  /* make it look decent enough */
  background: #57abe0;
  color: #57abe0;
  font-family: "Avenir Next", "Avenir", sans-serif;
}

.page-content {
  margin: 0 2em;
  max-width: 900px;
  display: inline-block;
  background:#cee6ff;
  height: 100%;
  width: 77%;
}

.page-content p {
    padding: 0 12px;
}

.our-journey-photos{
    max-width: 300px;

}
.about-us-photos{
    max-width: 300px;

}
}
nav {
  text-align: left;
}

main {
  width: calc(100% - 240px);
  max-width: 680px;
  margin: 100px auto;
}

p {
  font-size: 18px;
  line-height: 28px;
}

* {
  scroll-behavior: smooth;
}

/* lang switch */

.langwrap {
  position: fixed;
  left: 30px;
  top: 20px;
	 user-select: none;
}

.lang {
  padding: 0px 5px;
  display: inline-block;
  margin-right: 2px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5em;
  border-radius: 4px;
}

.lang.inactive {
  pointer-events: none;
  opacity: .6;
  border: solid 1px #000;
}

/* Menu code starts here */

#menuToggle {
  display: block;
  /* You can also use absolute here if you want to stay on the top */
  position: fixed;
  top: 30px;
  right: 30px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #232323;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: #398aaa;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */


.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.15);
  pointer-events: none;
	 opacity: 0;
	 transition: opacity 0.5s;
}

#menuToggle input:checked ~ .nav-overlay {
  pointer-events: all;
	 opacity: 1;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #000;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2) {
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
  position: absolute;
  max-width: 400px;
  width: 100vw;
  height: calc(100vh + 45px);
  margin: -100px 0 0 0;
  padding: 50px;
  padding-top: 125px;
  right: -100px;
  text-align:left;
  
  box-sizing: border-box;
  overflow-y: auto;
  background: var(--mainColor);
  list-style-type: none;
  
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

#menu li label
{
  cursor: pointer;
}

/*
 * And let's fade it in from the right
 */
#menuToggle input:checked ~ ul {
  transform: none;
  opacity: 1;
}

/*body{
    background-color: #f7ed96  ;
    }
*/






h1{
    text-align: center;
    font-style: oblique;
    color:#063f97; 
    
    }
p{
    color:#063f97;
    text-align:center;
      font-style: italic;
    font-size:larger;
   }

h3 {
    color:#063f97;
}
h4 {
    color:#063f97;
    text-align: center;
    font-size: 13px;
  font-style: italic;
}
}
button {
    background-color:#e47298;
    color:#eee9eb;
    padding: 15px 32px;
    text-decoration: none;
    flex-direction:column;
    font-size: 16px;
    
  }

 /* iframe{
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translate(-50%, -50%);
    }
*/
  select{
    background-color:#e47298;
    position: absolute;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
  }
.logo {
    max-width: 160px;
    position: relative;
    top: 25px;
    padding-bottom: 20px;
}
h5{
    text-align: center;
    color:#063f97;
    font-style: italic;
  font-size: 18px;
  padding-left: 35px;
  padding-right: 35px;
    text-indent: 43px;
}
