body {
	padding-top: 90px;
	font-family: 'Work Sans';
}
.main {
	max-width: 100%;
	overflow: hidden;
}
.container {
	max-width: 1170px;
	padding: 0 15px;
	margin: 0 auto;
}
header {
	padding: 10px 0;
	background: #0f1b2d/*#60616a*/;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 5;
	box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, .1);
}
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.site-logo {
    display: inline-block;
    max-width: 100px;
    height: auto;
}
.site-logo img {
	height: 65px;
	width: auto;
}
#menu-main-menu {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    gap: 25px;
}
#menu-main-menu li a {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
}
#menu-main-menu li a:hover {
	text-decoration: underline;
}
.get-quote-btn {
    display: inline-block;
    outline: none;
    color: #fff;
    background-color: transparent;
    background-image: linear-gradient(270deg, #C7890D 0%, #F54A00 100%);
    border-radius: 8px;
    padding: 5px 20px;
    font-weight: 500;
    transition: ease all .3s;
}
.get-quote-btn:hover {
	color: #fff;
	background-image: linear-gradient(270deg, #F54A00 0%, #C7890D 100%);
}
footer {
	background: #0f1b2d;
	padding: 50px 0;
}
.footer-subscribe-form-row {
	display: flex;
	justify-content: space-between;
}
.footer-subscribe-input-wrapper {
	flex: 0 0 100%;
}
.footer-subscribe-input-wrapper.w50 {
	flex: 0 0 48%;
}
.footer-subscribe-form-row input, .footer-subscribe-form-row textarea {
	background: #f8f9fa;
	border: none;
	border-radius: 10px;
	padding: 9px 15px;
	box-sizing: border-box;
	display: block;
	width: 100%;
	font-family: 'Work Sans' !important;
	border: 1px solid #0f1b2d1a;
}
.footer-subscribe-form-row select {
	border: 1px solid #0f1b2d1a;
	padding: 9px 15px;
	border-radius: 10px;
	font-family: 'Work Sans' !important;
}
.footer-subscribe-input-wrapper label {
	display: inline-block;
	margin-bottom: 8px;
	font-family: 'Work Sans' !important;
	font-weight: 600;
}
.footer-subscribe-form-row {
	margin-bottom: 30px;
}
.avva-contact-form button {
	display: flex;
	width: 100%;
	color: #fff;
	background: #e67e22;
	outline: none;
	padding: 9px 15px;
	border-radius: 10px;
	border: none;
	font-family: 'Work Sans' !important;
	justify-content: center;
	gap: 15px;
}
.avva-contact-form button svg {
	display: none;
}
.avva-contact-form.loading button svg {
	display: block;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    color: #cfd6dc;
    font-size: 16px;
    border-bottom: 0.5px solid #e4e4e4;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.footer-col {
	flex: 0 0 25%;
}
.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.footer-socials a {
    display: flex;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #262938;
    transition: ease all .3s;
}
.footer-socials a:hover {
	background: #e67e22;
}
.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: #cfd6dc;
}
.footer-bottom-links {
    display: flex;
    gap: 15px;
}
.footer-bottom-links a {
	color: #cfd6dc;
}
.footer-bottom-links a:hover {
	color: #e67e22;
}
.success-message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 999999;
    display: none;
}
.success-message-holder, .success-message-subscribe {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 500px;
    padding: 20px;
    border-radius: 15px;
    background: #fff;
    z-index: 999999;
    transform: translate(-50%, -50%);
    text-align: center;
    display: none;
}
.success-message-header {
    font-size: 24px;
    text-align: center;
    line-height: 1;
    color: #c50;
    font-weight: 600;
    margin: 0 0 20px;
}
.success-message-text {
    color: #000;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}
.success-message-holder .book-btn, .success-message-subscribe .book-btn {
    padding: 7px 25px;
    line-height: 1.3;
    border: 1px solid #e67e22;
    transition: ease all .3s;
    color: #fff;
    background: #e67e22;
}
.success-message-holder .book-btn:hover, .success-message-subscribe .book-btn:hover {
	color: #e67e22;
	background: transparent;
}
.mobile-hamburger, .mobile-close {
	width: 24px;
	display: none;
}
.contact-info-item a {
	color: #e67e22
}
@media(max-width: 767px) {
	.socials-holder, .header-inner .book-btn,
	.header-menu-holder.opened .mobile-hamburger,
	.get-quote-btn {
		display: none;
	}
	#menu-main-menu {
	    position: absolute;
	    top: 90px;
	    left: 0;
	    display: none;
	    padding: 30px;
	    background: #0f1b2d;
	    width: 100%;
	    display: none;
	}
	#menu-main-menu li:not(:last-child) {
		margin-bottom: 25px;
	}
	.mobile-hamburger, .header-menu-holder.opened .mobile-close {
		display: block;
	}
	.footer-inner {
		flex-direction: column;
		gap: 50px;
	}
	.footer-bottom {
		flex-direction: column-reverse;
		gap: 20px;
	}
}