@charset "UTF-8";

/* https://www.w3schools.com/css/css3_variables.asp */
:root {
	--dark-blue: #355070;
	--light-blue: #98c1d9;
	--cyanish: #E0FBFC;
}

* {
  box-sizing: border-box;
}
.welcome {
	font-size:80px;
}

.welcome-title {
	width: 60%;
	display: block;
	padding-left: 3rem;
}

.stayTuned {
	margin: auto;
	margin-top: 50px;
	width: 50%;
}

.stay {
	display: flex;
  	justify-content: center;
  	align-items: center;
  	
}

.head {
	padding-top: 35px;
    display: flex;
	align-items: center;
}

.welcomePg {
	background-image: url('Images/bg1.jpg'); /* https://pin.it/9xC0Dlyqe */
	height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
	
}

p {
	font-size: 25px;
}

html, body {
  	margin: 0;
	padding: 0;
 	width: 100%;
  	height: 100%;
  	font-family: 'Raleway';
}

ul li {
	float: left;
}

li a {
	display: block;
	padding: 8px 16px;
	text-decoration: none;
	color:white;
}

ul {
	list-style-type: none; 
  	margin: 0; 
  	padding: 0;
  	overflow: hidden;
}
nav a {
 		margin-top: 1rem;
		font-weight: bold;
		transition: opacity 0.3s ease;
		opacity: 1;
}

nav:hover a {
	opacity: 0.3; 
}

nav a:hover {
	opacity: 1; 
	color: white;
}

h1, h2, h3{
	color: var(--dark-blue);
	text-align: center;
	font-family: 'Playfair';
}

h1 {
	font-size: 80px;
}

h2 {
	font-size:60px;
}

body {
	background-color: var(--light-blue);
	font-family: 'Raleway';
	font-size: 25px;
	color: var(--dark-blue);
}

a {
	color: var(--dark-blue);
}
.column {
  	flex: 1;
  	padding: 10px;
}

.column.right {
  	width: 50%;
}

.column.left {
 	width: 50%;
}

.row {
	display: flex;
	align-items: center;
	padding-bottom: 10px;
}

.comServe {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.section-row {
  display: flex;
  gap: 20px;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
}

.section-row img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 0 !important;
  float: none !important;
  border-radius: 8px;
}

.section-row .content {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  box-sizing: border-box;
}

.section-row .content.center {
	justify-content: center;
}

.section-row .content.top {
	justify-content: flex-start;
}

.section-head {
  margin: 0 0 0.6rem 0;
  text-align: center;
  line-height: 1.05;
}

.s1 {
    padding-top: 20px;
    width: 100%;
    padding-right: 1.2rem;
    padding-left: 2.9rem;
    margin-right: 0.9rem;
}

.s2 {
    padding-top: 20px;
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    margin-right: 0.9rem;
}

.intro {
    margin-top: 15px;
    padding-top: 0;
    min-height: 60%;
    max-width: 100%;
}
img {
	vertical-align: middle;
	}


.music {
	padding-top: 20px;
    width: 40%;
    padding-left: 1.2rem;
    padding-right: 2.9rem;
    margin-left: 0.9rem;
}

.slideshow-container1 {
  width: 80%;        
  max-width: 1000px;  
  position: relative;
  margin: auto;        
 }

/* Slideshow container */
.slideshow-container1, .slideshow-container2 {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
 .prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%); 
  width: 40px;   
  height: 40px;
  line-height: 40px; 
  text-align: center;
  
  color: var(--dark-blue);
  font-weight: bold;
  font-size: 20px;
 }
 
.next {
  right: 0;
}

.prev:hover, .next:hover {
  background-color: rgba(224, 251, 252, 0.5);
} 


.dot1, .dot2 {
	cursor: pointer;
	height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: var(--cyanish);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot1.active, .dot2.active, .dot1:hover, .dot2:hover{
	background-color: var(--dark-blue);
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.slideshow-container1 .next {
  right: -30px;
}

.dots1, .dots2 {
  position: static;
  margin-top: 20px;
  text-align: center;
}


@media only screen and (max-width: 300px) {
  .prev, .next {font-size: 11px}
}