@import url('https://fonts.google.com/specimen/Raleway#standard-styles');

body {
	font-family: 'Raleway', sans-serif;
}

h1 {
	font-weight: 500;
	margin-left: 50px;
	margin-right: 50px;
	margin-top: 40px;
}

h2 {
	font-weight: 300;
	margin-left: 50px;
	margin-right: 50px;
}

.bg-dark {
	background-color: #edacb4 !important;
}

#logo {
	position: relative;
	width: 400px;
	height: 300px;
	margin: 0 auto;
	top: 40px;
	z-index: 10;
}

#logo img {
	width: 300px;
	margin-top: 60px;
}

.main {
	height: 100vh;
	width: 100%;
	background-image: url('./images/bg-image.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.content {
	position: absolute;
	left: 0;
	right: 0;
	top: 40%;
	bottom: 0;
	z-index: 2;
}

.main .overlay {
	position: absolute;
	width: 100%;
	height: 100vh;
	background: rgba(21, 21, 21, 0.75);
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
}

.btn-primary {
	background-color: #3b535d !important;
	border-color: #3b535d !important;
	border-width: 2px;
	border-radius: 8px !important;
	width: 200px;
	padding: 12px !important;
	font-size: 22px;
	letter-spacing: 0.5px;
}

.btn-primary:hover {
	background-color: transparent !important;
	border-color: #edacb4 !important;
	border-width: 2px;
	color: #edacb4;
}

@media (max-width:  991px) {
	#logo {
		top: 0;
		height: 260px;
	}
}

.sticky-cta {
	position: fixed;
	border: 5px solid #3069af;
	background: white;
	width: 400px;
	right: 0;
	top: 70%;
    z-index: 10;
}

.sticky-cta.closed {
	right: -400px;
}

.sticky-cta .inner {
	background: white;
	padding: 30px;
}

.sticky-cta .outer {
	background: #3069af;
	width: 50px;
	height: 150px;
	position: absolute;
	left: -50px;
	top: -5px;
}

.sticky-cta .outer::after {
	content: 'enquiry form';
    position: absolute;
    transform: rotate(270deg);
    bottom: 0;
    width: 150px;
    height: 100%;
    top: -15px;
    left: 0;
    right: 0;
    padding: 10px;
    color: white;
    font-weight: 100;
    font-size: 18px;
}