h2 {
	background-color:#CF857C;
	border-radius:50px;
}
.image-container {
  width: 1200px;
  margin-bottom: 25px;
}
.image-container img {
  width: 30%;
  margin: -10px;
  object-fit: contain;
}

ul {
	text-align: center;
	list-style-position: inside;
	font-size: 30px;
	list-style-image: url('round-star.svg');
	marker-offset: calc(8em + 1.5vw);
	padding-bottom: 40px;
}
.ul1 {
	text-align: left;
	list-style-position: inside;
	list-style-image: url('round-star.svg');
	marker-offset: calc(8em + 1.5vw);
	margin-top:-2vw;
	margin-left:30px;
}
li {
	margin-bottom:0px;
	margin-top:0px;
	
}
.ul1 li {
	padding-bottom:20px;
	margin-top:20px;
	
}
ul ::marker{
	font-size: calc(1.5em + 1.5vw);
	filter:invert(100%);
}
.ul1 ::marker{
	font-size: calc(1.5em + 1vw);
	filter:invert(100%);
}
.button1 {
	background-color: #208BFE;
	border: none;
	color: white;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	border-radius:50px; 
	padding:2%; 
	padding-left:4%; 
	padding-right:4%;
	font-size: calc(10px + 1.6vw);
	cursor: pointer;
	transition-duration: .3s;
  
}
.button2 {
	background-color: #CF857C;
	border: none;
	color: white;
	text-align: center;
	text-decoration: none;
	font-size: calc(10px + 1.8vw);
	display:block; 
	border-radius:50px; 
	border:5px solid #61C9A8; 
	padding:2%; 
	padding-left:5%; 
	padding-right:5%; 
	padding-top:3%;
	cursor: pointer;
	transition-duration: .3s;
	transform: scale(.95);
}
.button3 {
	background-color: #CF857C;
	border: none;
	color: white;
	text-align: center;
	text-decoration: none;
	font-size: calc(5px + 1.8vw);
	margin:1vw;
	display:block; 
	border-radius:50px; 
	border:3px solid #61C9A8; 
	padding:2%; 
	cursor: pointer;
	transition-duration: .3s;
}

.button1:hover {background-color: #1867BD;}
.button2:hover {
	box-shadow:0 8px 16px 0 rgba(0,0,0,0.6);
	transform: scale(1);
}
.button3:hover {
	box-shadow:0 8px 16px 0 rgba(0,0,0,0.6);
	transform: scale(1);
}

.fade-in {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 2s;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}





.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 20px;
  left: 0;
  top: 0;
  width:100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  align-content:center;
  justify-content:center;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width:90%;
  max-width:800px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  z-index:3;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}


/* Hide the slides by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-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);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}