body.Home {
    background-color: rgb(255, 255, 255);
    padding-bottom: 300px;
    position: relative;
	animation: fadeIn 3s;
	animation-delay: 9s;
}


@media screen and (min-width: 800px)
{
.under-development {
	font-size: 26px;
	margin-left: 0%;
	width: 200%;
	top: 50px;
}

/*slide show for home page*/
.fadein {
    position:absolute;
    top: -230px;
	height: auto;
    width: 100%;
}

/*
 * 6 images × 7s each = 42s total cycle
 * Each image: fades in over ~1.4s, stays for ~4.2s, fades out over ~1.4s
 * Offsets: img-1=0s, img-2=-7s, img-3=-14s, img-4=-21s, img-5=-28s, img-6=-35s
 */
.fadein img {
    position:absolute;
	height: 700px;
	width: 100%;
    -webkit-animation-name: fade;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 56s;
    animation-name: fade;
    animation-iteration-count: infinite;
    animation-duration: 56s;
}

@-webkit-keyframes fade {
    0%      { opacity: 0; }
    3.33%   { opacity: 1; }   /* fade in  (~1.4s) */
    13.33%  { opacity: 1; }   /* stay     (~4.2s) */
    16.66%  { opacity: 0; }   /* fade out (~1.4s) */
    100%    { opacity: 0; }
}
@keyframes fade {
    0%      { opacity: 0; }
    3.33%   { opacity: 1; }
    13.33%  { opacity: 1; }
    16.66%  { opacity: 0; }
    100%    { opacity: 0; }
}

#img-1 {
	background-image: url("imgs/home/main-1.jpg");
	background-position: center;
	background-size: contain;
}

#img-2 {
	-webkit-animation-delay: -4s;
	animation-delay: -4s;
	background-image: url("imgs/home/main-2.jpg");
	background-position: center;
	background-size: contain;
}

#img-3 {
	-webkit-animation-delay: -8s;
	animation-delay: -8s;
	background-image: url("imgs/home/main-3.jpg");
	background-position: center;
	background-size: contain;
}

#img-4 {
	-webkit-animation-delay: -12s;
	animation-delay: -12s;
	background-image: url("imgs/home/main-4.jpg");
	background-position: center;
	background-size: contain;
}

#img-5 {
	-webkit-animation-delay: -16s;
	animation-delay: -16s;
	background-image: url("imgs/home/main-5.jpg");
	background-position: center;
	background-size: contain;
}

#img-6 {
	-webkit-animation-delay: -20s;
	animation-delay: -20s;
	background-image: url("imgs/home/main-6.jpg");
	background-position: center;
	background-size: contain;
}

#img-7 {
	-webkit-animation-delay: -24s;
	animation-delay: -24s;
	background-image: url("imgs/home/main-7.jpg");
	background-position: center;
	background-size: contain;
}

#img-8 {
	-webkit-animation-delay: -28s;
	animation-delay: -28s;
	background-image: url("imgs/home/main-8.jpg");
	background-position: center;
	background-size: contain;
}

#img-9 {
	-webkit-animation-delay: -32s;
	animation-delay: -32s;
	background-image: url("imgs/home/main-9.jpg");
	background-position: center;
	background-size: contain;
}

#img-10 {
	-webkit-animation-delay: -36s;
	animation-delay: -36s;
	background-image: url("imgs/home/main-10.jpg");
	background-position: center;
	background-size: contain;
}

#img-11 {
	-webkit-animation-delay: -40s;
	animation-delay: -40s;
	background-image: url("imgs/home/main-11.jpg");
	background-position: center;
	background-size: contain;
}

#img-12 {
	-webkit-animation-delay: -44s;
	animation-delay: -44s;
	background-image: url("imgs/home/main-12.jpg");
	background-position: center;
	background-size: contain;
}

#img-13 {
	-webkit-animation-delay: -48s;
	animation-delay: -48s;
	background-image: url("imgs/home/main-13.jpg");
	background-position: center;
	background-size: contain;
}

#img-14 {
	-webkit-animation-delay: -52s;
	animation-delay: -52s;
	background-image: url("imgs/home/main-14.jpg");
	background-position: center;
	background-size: contain;
}

/* Overlaying Part for home page photos */
.overlay{
	position: relative;
	margin-top: 300px;
	margin-left: 25%;
	margin-right: 25%;
	background-color: rgba(255, 255, 255, 0.562);
	border: 10px solid rgb(255, 255, 255);
	padding: 5px;
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 10px;
	padding-right: 10px;
	width: 50%;
}
.overlay img{
	position: relative;
	width: 100%;
	margin-top: 20px;
}

/* Intro Text */
.grid-container {
	display: grid;
	grid-template-areas: 
	'header header header'
	'grid-title-1 grid-title-2 grid-title-3'
	'grid-library-1 grid-library-2 grid-library-3'
	'grid-item-1 grid-item-2 grid-item-3';
	justify-content: center;
	padding: 10px;
	margin-top: 250px;
	grid-gap: 10px;
}

/* Library-Button Img */
.grid-container img {
    transition: 1s;
    padding: 15px;
    width: 200px;
}

.grid-container img:hover{
	transform: scale(1.08);
}

/* Photo Library */
.grid-library .lib{
	float: none;
	display: flex;
	position: relative;
	margin: auto;
	justify-content: center;
	width: 456.703px;
}

.grid-library .btn{
	position: relative;
	border: 1px solid black;
}

.grid-main {
	grid-area: header;
	font-size: 36px;
	text-align: center;
	font-weight: 700;
	padding-top: 10px;
}

.grid-title {
	background-color: rgba(255, 255, 255, 0.8);
	padding: 25px;
	margin-top: 10px;
	font-size: 30px;
	text-align: center;
}

.grid-item {
	background-color: rgba(255, 255, 255, 0.8);
	padding: 20px;
	font-size: 22px;
	text-align: center;
	width: 50%;
	margin-left: auto;
	margin-right: auto;
	width: 456.703px;
}

/* Icon Section */
.icon-container {
	display: grid;
	grid-template-areas: 
	'header header header header header'
	'icon-img-1 icon-img-2 icon-img-3 icon-img-4 icon-img-5'
	'icon-title-1 icon-title-2 icon-title-3 icon-title-4 icon-title-5';
	justify-content: center;
	padding: 0px;
	margin-top: 0px;
	grid-gap: 0px;
}

/* Icon-Img */
.icon-container img {
    transition: 1s;
    padding: 15px;
    width: 100px;
}

.icon-container img:hover{
	transform: scale(1.08);
}

/* Icon Picture */
.icon-img .picture{
	float: none;
	display: flex;
	position: relative;
	margin: auto;
	justify-content: center;
	width: 300px;
}

.icon-main {
	grid-area: header;
	font-size: 36px;
	text-align: center;
	font-weight: 700;
	padding-top: 10px;
	padding-bottom: 50px;
}

.icon-title {
	background-color: rgba(255, 255, 255, 0.8);
	padding: 25px;
	margin-top: 10px;
	font-size: 24px;
	text-align: center;
}



/* Contact Button */
.contact-button{
	position: relative;
	transition: 0.5s;
	margin-top: 5%;
	width: 20%;
	margin-left: 40%;
	margin-right: 40%;
	padding: 15px;
	margin-bottom: 0px;
	background-color: rgb(62, 139, 228);
	border-radius: 0%;
	font-size: 20px;
	box-shadow: none;
	border: none;
	color: white;
	transition: 0.5s;
}
.contact-button:hover{
	color: #111;
	transition: 0.5s;
	background-color: transparent;
	border: 2px solid black;
}

/* Footer */
.footer_index{
	position: absolute;
	bottom: -300px;
	width: 100%;
	height: 20%;
	background: #111;
}

}



/*------------------------------------------------------ PHONE VIEW ------------------------------------------------------ */
@media screen and (max-width: 800px){
/* Change logo size for header */
.logo{
	height: 61px;
	width: 197px;
}

/*
 * 3 images × 7s each = 21s total cycle
 * Offsets: img-1=0s, img-2=-7s, img-3=-14s
 */
.fadein {
    position:absolute;
    top: -190px;
	height: auto;
    width: 100%;
}
.fadein img {
    position:absolute;
	height: 200px;
	width: 100%;
    -webkit-animation-name: fade;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 56s;
    animation-name: fade;
    animation-iteration-count: infinite;
    animation-duration: 56s;
}

@-webkit-keyframes fade {
    0%      { opacity: 0; }
    1.5%    { opacity: 1; }   /* quick fade in */
    7.14%   { opacity: 1; }   /* stay (4s total window) */
    8.5%    { opacity: 0; }   /* fade out */
    100%    { opacity: 0; }
}

@keyframes fade {
    0%      { opacity: 0; }
    1.5%    { opacity: 1; }
    7.14%   { opacity: 1; }
    8.5%    { opacity: 0; }
    100%    { opacity: 0; }
}

#img-1 {
	background-image: url("imgs/home/main-1.jpg");
	background-position: center;
	background-size: contain;
}

#img-2 {
	-webkit-animation-delay: -4s;
	animation-delay: -4s;
	background-image: url("imgs/home/main-2.jpg");
	background-position: center;
	background-size: contain;
}

#img-3 {
	-webkit-animation-delay: -8s;
	animation-delay: -8s;
	background-image: url("imgs/home/main-3.jpg");
	background-position: center;
	background-size: contain;
}

#img-4 {
	-webkit-animation-delay: -12s;
	animation-delay: -12s;
	background-image: url("imgs/home/main-4.jpg");
	background-position: center;
	background-size: contain;
}

#img-5 {
	-webkit-animation-delay: -16s;
	animation-delay: -16s;
	background-image: url("imgs/home/main-5.jpg");
	background-position: center;
	background-size: contain;
}

#img-6 {
	-webkit-animation-delay: -20s;
	animation-delay: -20s;
	background-image: url("imgs/home/main-6.jpg");
	background-position: center;
	background-size: contain;
}

#img-7 {
	-webkit-animation-delay: -24s;
	animation-delay: -24s;
	background-image: url("imgs/home/main-7.jpg");
	background-position: center;
	background-size: contain;
}

#img-8 {
	-webkit-animation-delay: -28s;
	animation-delay: -28s;
	background-image: url("imgs/home/main-8.jpg");
	background-position: center;
	background-size: contain;
}

#img-9 {
	-webkit-animation-delay: -32s;
	animation-delay: -32s;
	background-image: url("imgs/home/main-9.jpg");
	background-position: center;
	background-size: contain;
}

#img-10 {
	-webkit-animation-delay: -36s;
	animation-delay: -36s;
	background-image: url("imgs/home/main-10.jpg");
	background-position: center;
	background-size: contain;
}

#img-11 {
	-webkit-animation-delay: -40s;
	animation-delay: -40s;
	background-image: url("imgs/home/main-11.jpg");
	background-position: center;
	background-size: contain;
}

#img-12 {
	-webkit-animation-delay: -44s;
	animation-delay: -44s;
	background-image: url("imgs/home/main-12.jpg");
	background-position: center;
	background-size: contain;
}

#img-13 {
	-webkit-animation-delay: -48s;
	animation-delay: -48s;
	background-image: url("imgs/home/main-13.jpg");
	background-position: center;
	background-size: contain;
}

#img-14 {
	-webkit-animation-delay: -52s;
	animation-delay: -52s;
	background-image: url("imgs/home/main-14.jpg");
	background-position: center;
	background-size: contain;
}


/* Overlaying Part for home page photos */
.overlay{
	display: none;
}


/* Intro Text */
.grid-container {
	display: grid;
	grid-template-areas: 
	'header'
	'grid-title-1 '
	'grid-library-1 '
	'grid-item-1 '
	'grid-title-2 '
	'grid-library-2 '
	'grid-item-2';
	padding: 10px;
	margin-top: 350px;
	grid-gap: 10px;
}

/* Library-Button Img */
.grid-container img {
    transition: 1s;
    padding: 15px;
    width: 250px;
}

.grid-container img:hover{
	transform: scale(1.08);
}

/* Photo Library */
.grid-library .lib{
	float: none;
	display: flex;
	position: relative;
	margin: auto;
	justify-content: center;
}

.grid-library .btn{
	position: relative;
	border: 2px solid black;
}

.grid-main {
	grid-area: header;
	font-size: 24px;
	text-align: center;
	font-weight: 700;
	padding-top: 10px;
}

.grid-title {
	background-color: rgba(255, 255, 255, 0.8);
	padding: 25px;
	margin-top: 10px;
	font-size: 30px;
	text-align: center;
}

.grid-item {
	background-color: rgba(255, 255, 255, 0.8);
	padding: 20px;
	font-size: 20px;
	text-align: center;
}

/* Icon Section */
.icon-container {
	display: grid;
	grid-template-areas: 
	'header header'
	'icon-img-1 icon-img-2'
	'icon-title-1 icon-title-2'
	'icon-img-3 icon-img-4'
	'icon-title-3 icon-title-4'
	'icon-img-5 icon-img-5'
	'icon-title-5 icon-title-5';
	padding: 10px;
	margin-top: 50px;
	grid-gap: 10px;
}

/* Library-Button Img */
.icon-container img {
    transition: 1s;
    padding: 15px;
    width: 100px;
}

.icon-container img:hover{
	transform: scale(1.08);
}

/* Icon Picture */
.icon-img .picture{
	float: none;
	display: flex;
	position: relative;
	margin: auto;
	justify-content: center;
}

.icon-main {
	grid-area: header;
	font-size: 24px;
	text-align: center;
	font-weight: 700;
	padding-top: 10px;
	padding-bottom: 10px;
}

.icon-title {
	background-color: rgba(255, 255, 255, 0.8);
	padding: 5px;
	margin-top: 10px;
	font-size: 20px;
	text-align: center;
}


/* Contact Button */
.contact-button{
	position: relative;
	transition: 0.5s;
	width: 60%;
	margin-top: 50px;
	margin-left: 20%;
	margin-right: 20%;
	padding: 15px;
	margin-bottom: 45px;
	background-color: rgb(62, 139, 228);
	border-radius: 0%;
	font-size: 20px;
	box-shadow: none;
	border: none;
	-webkit-tap-highlight-color: transparent;
}
.contact-button:hover{
	color: #111;
	transition: 0.5s;
	background-color: transparent;
	border: 2px solid black;
}


/* ----- FOOTER ----- */
/* Hide desktop footer completely */
/* ----- FOOTER ----- */
.footer_index {
    display: none !important;
}

.footer_phone {
    display: block;
    position: relative;
    width: 100%;
    background: #111;
    padding: 28px 20px 40px;
    color: #ccc;
}

.footer_phone .phone-main-content {
    width: 100%;
}

.footer_phone .center {
    text-align: center;
}

.footer_phone h3 {
    color: #ffffff;
    font-size: 16px;
    margin: 16px 0 6px;
    border-bottom: 1px solid #333;
    padding-bottom: 6px;
}

.footer_phone h4 {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 6px;
}

.footer_phone h5 {
    color: #bbbbbb;
    font-size: 13px;
    margin-bottom: 4px;
}

.footer_phone a {
    color: #7cb9f5;
    text-decoration: none;
}

.footer_phone a:hover {
    color: #fff;
}
.footer_phone {
	background: #111;
	width: 100%;
	display: block;
	clear: both;
}
.footer_phone .phone-social-menu ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 12px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer_phone .phone-social-menu ul li a {
    color: #ffffff;
    font-size: 22px;
}