@charset "UTF-8";
/* CSS Document */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	
}

body{
	width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
}

html{scroll-behavior: smooth}
.navbar-custom{
	background-color: #3F5474;
}

.nav-link {
	color: #F7F6F4;
	font-weight:400;
}

.nav-link:hover {
	color: #F5D0CC;
}

.navbar-brand{
	margin-left: 20px;
	color: #F7F6F4;
}
.navbar-brand:hover{
	color: #F5D0CC;
	
}


/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */

}

textarea{
	background-color: #F7F6F4;
}


/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #3F5474;
  color: #F5D0CC;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #F7F6F4;
}

.post-title {
    font-weight: bold;
	font-family: 'Crimson Text', serif;
    font-size: 200%;
}

.thecontact{
	background-color: #F5D0CC;
}
.forms{
	background-color: #F5D0CC;
	
}

.page-footer{
	
	width: 100%;
	min-height: 35vh;
	background: #2D5071;
}
	
.foottext{
	margin-top: 20px;
}

.footer-copyright{
	margin-top: 3px;
	margin-left: 0;
	font-size: 11px;
	color: #F7F6F4;
}

.white-text{
	color: #F3D0CC;
}

.follow{
	margin-left: 35px;
}
.grey-text{
	color: #F7F6F4;
	font-size: 14px;
}

.social{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display:-o-flex;
	justify-content: center;
}

.wrapper{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display:-o-flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	width: 600px;
}

