html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Open Sans', serif;
	color: rgb(67, 71, 77);
	background-color: rgb(249, 249, 249);
	margin: 0;
}



nav {
	background-color: rgb(253, 183, 19);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1;
}

nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

nav li {
  float: left;
}

nav li a {
	display: block;
	padding: 8px 16px 8px 16px;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
}
nav li a:hover {
	color: #4698dd;
}

#divContent {
	margin-top: 50px;
	margin-left: 10%;
	margin-right: 10%;
}


 a {
	color: #000;
	text-decoration: underline;
	font-weight: bold;
}
a:hover {
	color: #4698dd;
}

div.section {
	margin-top: 50px;
}

#contactTable td {
	padding-right: 50px;
}


#logoImage {
	height: 130px;
	border: 1px solid #ccc;
	border-radius: 10px;
	margin-right: 20px;
	
/*	-webkit-animation:spin 4s linear infinite;
	-moz-animation:spin 4s linear infinite;
	animation:spin 4s linear infinite;*/
}

@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}



.success-message {
    color: #fff;
    background-color: #524fff;
    border-radius: 12px;
    padding: 24px;
    font-weight: 500
}

.success-message.contact {
    color: #5e5b8a;
    background-color: #0000;
    padding: 0
}

.error-message {
    color: #fff;
    text-align: center;
    background-color: #0f086a;
    border-radius: 16px;
    margin-top: 24px;
    padding: 24px
}


.contact-main-wrapper {
	position:fixed;
	top: 10%;
	left: 30%;
	border: 1px solid #ccc;
	border-radius: 10px;
	background-color: #fff;
	z-index: 3;
}

.contact-main-wrapper div {
	padding-top: 10px;
}

.contact-main-wrapper input[type="text"],
.contact-main-wrapper input[type="email"],
.contact-main-wrapper input[type="tel"]
 {
	height: 24px;
	display: block;
	width: 250px;
	border: 1px solid #ccc;
	border-radius: 4px;
	
}

.contact-main-wrapper textarea {
	height: 100px;
	display: block;
	width: 400px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.contact-main-wrapper input[type="submit"],
.contact-main-wrapper input[type="button"]
 {
	height: 40px;
	display: inline;
	width: 200px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: rgb(253, 183, 19);
	color: #fff;
	cursor:pointer;
	font-size: 14px;
	
}

.contact-form-wrapper {
	padding: 40px;
}

.contact-form-header {
	background-color: rgb(253, 183, 19);
	color: #fff;
	border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px;
    font-weight: bold;
}

div.overlay {
	width:100%;
	height:100%;
	position:fixed;
	top: 0;
	left: 0;
	background-color: #333;
	opacity: 0.2;
	z-index: 2;
}

.image_in_text {
	width: 50%;
	margin: 30px;
}