/* General Styles */
body {
    margin: 0;
    font-family: "League Spartan", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
}
.contactBody {
background-color: #f1b928;
color: white;
}

p { 
    font-size: 26px;
	
}
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }

div {
    font-size: 22px;
    margin: 0;
}

h1 {
    margin: 0;
}
h2 {
    margin: 0;
}

.button {
    background-color: white;
    color: #f1b928;
    border: 3px solid white;
    padding: 15px 20px;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 30px;
	text-decoration: none;
}

.button:hover {
    background-color: #f1b928;
    color: white;
}

.header {
    background-image: url("images/coverMobile.png");
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
}


@media only screen and (min-width: 800px) {
.header {
    background-image: url("images/cover.png");
}
}

.navigationBar {
	background-color: #1c243b;
padding: 40px 70px;
}
.navigationBar a {
color: white;
margin-right: 30px;
transition: 0.3s;
}
.navigationBar a:hover {
color: #f1b928;
}
.active {
	color: #f1b928 !important;
}
.banner {
    background-color: #f1b928;
    color: white;
    text-align: center;
    padding: 50px;
}
.fbNav {
font-size: 60px;
text-align: right;
position: absolute;
right: 50px;
top: 20px;
}



.inlineBlock { 
    display: inline-block;
}

.about {
    background-color: #1c243b;
    color: white;
    padding: 100px 50px;
}

@media only screen and (min-width: 908px) {
    .about {
        padding: 100px 200px;
    }
}

.services {
    color: #1c243b;
    padding: 100px 20px;
background-image: url("images/background.png");
}

@media only screen and (min-width: 908px) {
    .services {
        padding: 100px 200px;
    }
}

/* Service Box Styling */
.service {
    background-color: #f1b928;
    color: white;
    padding: 30px 40px;
    margin: 50px;
    border-radius: 50px;
    transition: background-color 0.3s;
    cursor: pointer;
font-size: 24px

}

.service:hover {
    background-color: #dc9614;
}
.service p {
margin: 0;
padding-top: 10px;
}
/* Hidden Description */
.description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    font-size: 22px;
    margin-top: 10px;


}

.contact {


height: 100vh;
background-size: cover;
padding: 0;

}

.contactInner {
	background-color: white;
	padding: 50px;

filter: drop-shadow(4px 4px 4px #1c243b);
border-radius: 50px;
transition: 0.3s;
}

input {
border-top: none;
border-left: none;
border-right: none;
	border-bottom: solid 3px white;
    font-family: "League Spartan", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
	font-size: 22px;
margin: 15px 0;
width: 100%;
}
input:hover {
	border-bottom: solid 3px #f1b928;
}
input:focus-visible {
border-top: none;
border-left: none;
border-right: none;
outline: none;
border-bottom: solid 3px #f1b928;
}
textarea  {
border-top: none;
border-left: none;
border-right: none;
	border-bottom: solid 3px white;
resize: none;
font-family: "League Spartan", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
	font-size: 22px;
	width: 100%;
}
textarea:hover {
border-top: none;
border-left: none;
border-right: none;
	border-bottom: solid 3px #f1b928;
}
textarea:focus-visible {
border-top: none;
border-left: none;
border-right: none;
outline: none;
	border-bottom: solid 3px #f1b928;
}

@media only screen and (min-width: 908px) {
input {
	width: 50%;
}
textarea {

width: 50%;
}
.contact {
	padding: 200px;
background-image: url("images/bulb.jpg");
}
}

.contactInner:hover {


}


.submit {
	padding:15px;

cursor: pointer;
border-radius: 30px;
background-color: #f1b928;
    transition: 0.3s;
    border: 3px solid #f1b928;
    padding: 15px 20px;
	color: white;
}
.submit:hover {
	background-color: white;
color: #f1b928;
}
.phonePopup {
	background-color: #f1b928;
	color: white;
	font-size:30px;
	padding: 25px;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	border-radius: 50px;
position: fixed;
bottom: 20px;
right: 20px;
transtition: 0.3s;

filter: drop-shadow(4px 4px 4px #1c243b);


}
.phonePopup:hover {
	background-color: #dc9614;
}



.phoneNumber {
    padding-left: 15px;
    padding-right: 15px;
display:none;

font-size: 25px;

}

.phonePopup:hover .phoneNumber {
	display:inline-block;


}

.footer {
	background-color: #1c243b;
color: white;
padding: 30px;
}
.footer div {
display: inline-block;
}
.footerLogo {
	max-width: 200px;
margin: 0;
} 
.confirmationModal {
display: none; 
position: fixed; 
left: 50%; top: 50%; 
transform: translate(-50%, -50%); 
background-color: #f9f9f9; 
padding: 20px; 
border: 1px solid #ddd; 
z-index: 1000;
filter: drop-shadow(4px 4px 4px #1c243b);
border-radius: 50px;
}
.modalOverlay {
display: none;
position: fixed; 
left: 0; 
top: 0; 
width: 100%; 
height: 100%; 
background-color: rgba(0,0,0,0.5); 
z-index: 999;
}
.contactDetails {
	min-height: 100vh;
	vertical-align: center;
text-align:center;
position: relative;
}
.ugh {
	margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.ugh img {
max-height: 220px;
}