/*** Animated Menu Icon ***/
#mobile-nav {
    height: 18px;
    width: 30px;
    right: 0;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    cursor: pointer;
}
#mobile-nav span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #FF9933;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
#mobile-nav span:nth-child(1) {
    top: 0px;
}
#mobile-nav span:nth-child(2) {
    top: 8px;
    width: 70%;
}
#mobile-nav span:nth-child(3) {
    top: 16px;
}
#mobile-nav.open span:nth-child(1) {
    top: 8px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
#mobile-nav.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
#mobile-nav.open span:nth-child(3) {
    top: 8px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

/*** Gallery ***/
.gallery .gallery-item img {
    height: 26vw;
    object-fit: cover;
    object-position: center;
}

/*** Gravity Forms ***/
.gform_wrapper .gform_required_legend {
	display: none !important;
}
body .gform_wrapper .gfield_label {
	font-weight: 500 !important;
	text-transform: lowercase;
	margin-bottom: 15px !important;
}
body .gform_wrapper .textarea {
	height: 120px !important;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
	outline: none !important;
	border-radius: 0 !important;
	padding: 12px !important;
}
body .gform_wrapper .gform_footer {
	justify-content: flex-end;
}
body .gform_wrapper .gform_button {
	background-color: #FF9933 !important;
	border: 0 !important;
	color: #212121 !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	text-transform: lowercase;
	line-height: 1.2em !important;
	margin-bottom: 0 !important;
}
body .gform_wrapper .gform_button:hover {
	background-color: #fff !important;
}

/*** Responsive ***/
@media only screen and (max-width: 1024px) {
	.elementor-menu-toggle {
		display: none !important;
	}
}

@media only screen and (max-width: 767px) {
    .gallery .gallery-item img {
        height: 35vw;
    }
}

@media only screen and (max-width: 520px) {
    .fw-mobile .elementor-button,
	body .gform_wrapper .gform_button {
		text-align: center;
		width: 100% !important;
	}
}

@media only screen and (max-width: 479px) {
    .gallery .gallery-item img {
        height: 65vw;
    }
}