p {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 0;
	color: #262626;
}

a {
	color:#262626;
	text-decoration: none;
	-webkit-transition: all 0.3s ease !important;
    -o-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
}

a:hover {
	color:#262626;
}

ol, ul {
    list-style: none;
}

body:not(.home) {
    background-image: url("../images/banner-bg.jpg");
}

/* #header a.navbar-brand {
	margin: 0;
} */

#header a.navbar-brand h1 {
	position: relative;
	font-family: 'Meddon', sans-serif;
	font-weight: 700;
	margin: 0;
}

#header:not(.sticky) a.navbar-brand h1 {
	font-size: 28px;
	color: lightgoldenrodyellow;
	text-shadow: 1px 1px 5px #c5a163;
}

#header.sticky a.navbar-brand h1 {
	font-size: 24px;
	color: #c5a163;
	text-shadow: 1px 1px 5px lightgoldenrodyellow;
}

/* #header.sticky .navbar-brand img {
	width: 300px;
} */

#header .header-main {
    position: relative;
	/*position: fixed;*/
	/*top: 0;*/
	/*left: 0;*/
	width: 100%;
	z-index: 99;
	background-color: transparent;
}

#header.sticky .header-main {
    position: fixed;
	top: 0;
	left: 0;
	background-color: #ffffff;
	-webkit-box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%);
}

#header .header-top p {
    font-size: 15px;
}

#header .header-top i {
    /*color: #008000;*/
    color: #262626;
}

#header .header-top {
	display: flex;
	align-items: center;
	/*justify-content: space-between;*/
	justify-content: flex-end;
	padding: 16px 0 16px 0;
}

#header.sticky .header-top {
    display: none;
}

#header .navbars-menu-wrap {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    justify-content: flex-end;
    padding: 16px 16px 16px 16px;
    background-color: #ffffff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

#header.sticky .navbars-menu-wrap {
    box-shadow: none;
}

#header.sticky .navbar {
    padding: 0;
}

#header .navbars-menu-wrap .col-left,
#header .navbars-menu-wrap .col-right {
    display: flex;
    align-items: center;
}

#header .navbars-menu-wrap a {
    position: relative;
    font-family: 'Lora', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #262626;
    padding-right: 0;
    padding-left: 0;
    padding-right: 1rem;
    padding-left: 1rem;
    text-align: center;
    text-transform: uppercase;
}

#header .navbars-menu-wrap a:hover,
#header .navbars-menu-wrap a.active	{
	color: #008000;
	/*text-shadow: 1px 1px 5px #38b000;*/
}

#header .navbars-menu-wrap a.blink-link {
    color: #bf0603;
    animation: BlinkLink 4s linear infinite alternate-reverse;
    -webkit-animation: BlinkLink 4s ease-in-out infinite alternate-reverse;
    
}

@keyframes BlinkLink {
    from { color: #bf0603; text-shadow: 1px 1px 5px #ef233c; } 
    to { color: #ffc300; text-shadow: 1px 1px 5px #ffd700; }
}
  
@-moz-keyframes BlinkLink {
    from { color: #bf0603; text-shadow: 1px 1px 5px #ef233c; } 
    to { color: #ffc300; text-shadow: 1px 1px 5px #ffd700; }
}
  
@-webkit-keyframes BlinkLink {
    from { color: #bf0603; text-shadow: 1px 1px 5px #ef233c; } 
    to { color: #ffc300; text-shadow: 1px 1px 5px #ffd700; }
}

#header .logo-absolute-wrap {
    position: absolute;
    width: 300px;
    height: 200px;
    top: 50%;
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    left: -25px;
    transform: translateY(-50%);
}

#header .logo-absolute-wrap .wrap-child {
    width: calc(300px - 14px);
    height: calc(210px - 14px);
} 

#header .logo-absolute-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#header .logo-header-mobile,
#header .button-header-mobile {
    display: none;
}

/* Remove border from toggler */
.navbar-toggler {
	border: 0 !important;
	border-radius: 0;
	padding: 0.75rem;

}

#header .navbar > .navbar-toggler {
	background-color: #008000;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
	outline: none !important;
	box-shadow: none !important;
	border: 0 !important;
}

/* Lines of the Toggler */
.toggler-icon {
	width: 30px;
	height: 3px;
	display: block;
	transition: all 0.2s;
	background-color: #262626;
}

#header .navbar > .navbar-toggler .toggler-icon {
	width: 25px;
}

#header:not(.sticky) .navbar > .navbar-toggler .toggler-icon {
	background-color: #ffffff;
}

#header.sticky .navbar > .navbar-toggler .toggler-icon {
	background-color: #ffffff;
}

/* Adds Space between the lines */
.middle-bar {
	margin: 5px auto;
}

/* State when navbar is opened (START) */
.navbar-toggler .top-bar {
	transform: rotate(45deg);
	transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
	opacity: 0;
	filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
	transform: rotate(-45deg);
	transform-origin: 10% 90%;
}

/* State when navbar is opened (END) */

/* State when navbar is collapsed (START) */
.navbar-toggler.collapsed .top-bar {
	transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
	opacity: 1;
	filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
	transform: rotate(0);
}

/* State when navbar is collapsed (END) */

/* Color of Toggler when collapsed */
.navbar-toggler.collapsed .toggler-icon {
	background-color: #262626;
}

.list-social {
    display: flex;
    margin: 0;
}

.list-social li {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    /*background-color: #008000;*/
    background-color: #262626;
    width: 25px;
    height: 25px;
}

.list-social li:not(:last-child) {
    margin-right: 16px;
}

.list-social li i {
    color: #ffffff !important;
}

.banner-slider {
	position: relative;
	width: 100%;
	height: 100vh;
}

.banner-slider .banner-item {
	width: 100%;
	height: 100vh;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
    background-image: url("../images/banner-bg.jpg");
}

/* .banner-slider .banner-item::before {
	content: '';
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgb(255, 255, 255, 0.3);
	z-index: 1;
} */

.banner-slider .flickity-button {
	background: transparent;
}

.banner-item .banner-content {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	margin-top: 70px;
	z-index: 2;
}

.banner-content .banner-text-wrap {
	position: relative;
}

.banner-content .banner-text-wrap .position-relative {
	z-index: 1;
}

.banner-content .banner-text-wrap .icon-absolute {
    position: absolute;
}

.banner-content .banner-text-wrap .icon-absolute.heart {
    width: 150px;
    height: 150px;
    right: 24px;
    top: 50%;
    opacity: 60%;
    transform: translateY(-50%);
}

.banner-content .banner-text-wrap .sub-headline {
	font-family: 'Oleo Script', sans-serif;
    font-weight: 400;
    color: #008000;
    font-size: 48px;
}

.banner-content .banner-text-wrap .headline {
	font-family: 'Lora', sans-serif;
	font-size: 72px;
	font-weight: 400;
	color: #262626;
	margin-bottom: 2rem;
}

.banner-content .banner-text-wrap p {
    font-size: 20px;
    color: #262626;
}

.banner-content .banner-img-wrap {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
}

.banner-content .banner-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 85%;
}

.banner-content .banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.button {
	position: relative;
	overflow: hidden;
	display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #008000;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    padding: 0.375rem 0.75rem;
	font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    background: #ffffff;
	border: 2px solid transparent;
    outline: none;
	-webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	-webkit-box-shadow: 0 1px 3px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 10%);
    z-index: 0;
	/* text-transform: uppercase; */
}

.button.standard {
    color: #ffffff;
    background: #008000;
}

.button.normal:hover {
    color: #ffffff;
    -webkit-box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%);
}

.button.normal:hover:after {
    width: 100%;
}
.button.normal:after {
    content: "";
    position: absolute;
    z-index: -1;
    transition: all 0.3s ease;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #262626;
}

.button.sliding:hover {
	color: #ffffff;
}

.button.button.standard.sliding:hover {
    color: #008000;
}

.button.sliding:hover:after {
    width: 100%;
}
.button.sliding:after {
    content: "";
    position: absolute;
    z-index: -1;
    transition: all 0.3s ease;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #008000;
}

.button.button.standard.sliding:after {
    background: #ffffff;
}

.button.button-lg {
	font-size: 18px;
	padding: 1rem 2rem;
	min-width: 200px;
}

.section-wrap {
    position: relative;
    padding: 50px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section-wrap.section-banner {
    padding: 0;
}

.section-wrap.section-1 {
    background-color: #3da35d;
    padding: 60px 0;
}

.section-wrap.section-2 {
    padding-top: 100px;
}

/*.section-wrap.page.section-3 {*/
/*    padding-top: 100px;*/
/*}*/

.section-wrap.section-3 {
    /*padding-bottom: 150px;*/
    padding-bottom: 100px;
}

.section-wrap.section-4 {
    padding: 0;
}

.section-wrap.section-5 {
    padding-bottom: 100px;
}

.section-wrap.section-6 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-wrap.section-1 .sub-headline {
    font-family: 'Lora', sans-serif;
    color: #ffffff;
    font-size: 18px;
}

.section-wrap.section-1 .headline {
    font-family: 'Oleo Script', sans-serif;
    color: #ffffff;
    font-size: 48px;
}

.section-wrap.section-2 .service-item {
    cursor: pointer;
}

.section-wrap.section-2 .service-item .service-img {
    position: relative;
    width: 100%;
}

.section-wrap.section-2 .service-item .service-img::before {
    display: block;
    padding-top: 100%;
    content: "";
}

.section-wrap.section-2 .service-item .service-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-wrap.section-2 .service-item .service-img button {
    position: absolute;
    right: 50px;
    width: 50px;
    height: 50px;
    bottom: 0;
    transform: translateY(50%);
    background: #008000;
    color: #ffffff;
    z-index: 10;
}
.section-wrap.section-2 .service-item:hover .service-img button {
	color: #008000;
}
.section-wrap.section-2 .service-item:hover .service-img button:after {
    width: 100%;
}
.section-wrap.section-2 .service-item .service-img button:after {
    content: "";
    position: absolute;
    z-index: -1;
    transition: all 0.3s ease;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #ffffff;
}

.section-wrap.section-2 .service-item .service-name {
    position: relative;
    width: 100%;
    font-size: 24px;
    font-family: 'Lora', sans-serif;
    color: #262626;
    background: #ffffff;
    font-weight: 500;
    padding: 24px;
    z-index: 1;
}
.section-wrap.section-2 .service-item:hover .service-name {
    color: #fff;
}
.section-wrap.section-2 .service-item:hover .service-name:after {
    width: 100%;
}
.section-wrap.section-2 .service-item .service-name:after {
    content: "";
    position: absolute;
    z-index: -1;
    transition: all 0.3s ease;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #008000;
}

.section-wrap.section-2 .sub-headline,
.section-wrap.section-4 .sub-headline,
.section-wrap.section-5 .sub-headline,
.section-wrap.section-6 .sub-headline{
    font-family: 'Oleo Script', sans-serif;
    color: #008000;
    font-size: 24px;
}

.section-wrap.section-2 .headline,
.section-wrap.section-3 .headline,
.section-wrap.section-4 .headline,
.section-wrap.section-5 .headline,
.section-wrap.section-6 .headline {
    position: relative;
    font-family: 'Lora', sans-serif;
    color: #262626;
    font-size: 48px;
    line-height: 1.3;
}

.section-wrap.section-3 .box-about-wrap {
    position: relative;
    padding-top: 50px;
    padding-right: 200px;
}

.section-wrap.section-3 .box-about {
    position: relative;
    padding: 80px 380px 80px 80px;
}

.section-wrap.section-3 .about-header {
    position: relative;
}

.section-wrap.section-3 .about-header .text-absolute {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-50%);
    font-family: 'Dancing Script', sans-serif;
    font-weight: bolder;
    font-size: 100px;
    z-index: -1;
    color: #008000;
    opacity: 0.2;
}

.section-wrap.section-3 .sub-headline {
    position: relative;
    font-family: 'Lora', sans-serif;
    color: #262626;
    font-size: 24px;
}

.section-wrap.section-3 .box-about-wrap .img-absolute-1 {
    position: absolute;
    top: 0;
    width: 400px;
    height: 400px;
    right: 0;
    object-fit: cover;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    z-index: 1;
}

.section-wrap.section-3 .box-about-wrap .img-absolute-2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    right: 50px;
    object-fit: cover;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    z-index: 1;
}

.section-wrap.section-3 .box-about-wrap .img-absolute-3 {
    position: absolute;
    width: 400px;
    height: 400px;
    right: 100px;
    bottom: -50px;
    object-fit: cover;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    z-index: 1;
}

.section-wrap.section-4 .img-testimonials {
    position: relative;
    height: 100%;
}

.section-wrap.section-4 .img-testimonials img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.section-wrap.section-4 .testimonials-box-wrap {
    padding: 100px 0 100px 50px;
}

.testimonial-slider .flickity-page-dots {
    text-align: left;
}

.testimonial-slider .testimonial-item p {
    font-family: 'Lora', sans-serif;
    font-size: 20px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.testimonial-slider .testimonial-item h5 {
    font-family: 'Oleo Script', sans-serif;
    font-style: italic;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 0;
    padding-bottom: 1rem;
}

.testimonial-slider-2 .testimonial-item {
    margin-right: 20px;
    width: calc((100% - 60px) / 4);
    text-align: center;
}

.testimonial-slider-2 .testimonial-item .img-testimonials {
    position: relative;
    width: 100%;
    height: 400px;
}

.testimonial-slider-2 .testimonial-item .img-testimonials img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.testimonial-slider-2 .testimonial-item h5 {
    font-family: 'Lora', sans-serif;
    font-weight: 600;
    font-size: 24px;
    margin-top: 16px;
    margin-bottom: 0;
}

#modalReview .reviewer-name {
    font-family: 'Lora', sans-serif;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 4px;
}

#modalReview .review-rating {
    padding: 0;
    background: 0 0;
    color: #ffffff;
    margin-bottom: 16px;
}

#modalReview .review-rating span {
    width: 20px;
    display: inline-flex;
    height: 20px;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    background-color: #f43a3c;
    border-radius: 4px;
}

.section-wrap.section-5 .gallery-name {
    font-family: 'Lora', sans-serif;
    font-weight: 600;
    margin-bottom: 0;
}

.section-wrap.section-5 .gallery-item {
    /*position: relative;*/
    /*height: 100%;*/
    /*width: 100%;*/
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    overflow: hidden;
    visibility: visible;
    margin-bottom: 10px;
    /*box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);*/
}

.section-wrap.section-5 .gallery-item .item-img {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
}

/*.section-wrap.section-5 .gallery-item:not(.item-modal) {*/
/*    border: 5px solid #008000;*/
/*}*/

.section-wrap.section-5 .gallery-item .item-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    background-color: transparent;
}

.section-wrap.section-5 .gallery-item:hover .item-img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/* .section-wrap.section-5 .gallery-item:hover .item-img::before {
    background-color: rgba(255, 255, 255, 0.3);
} */

.section-wrap.section-5 .gallery-item .item-img img {
    height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

#btnScrollTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: 1px solid;
    border-color: #008000;
    outline: none;
    background-color: #008000;
    color: #ffffff;
    cursor: pointer;
    padding: 0;
    border-radius: 50rem;
    width: 40px;
    height: 40px;
    line-height: inherit;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.btn-phone {
	transition: .3s all;
}

.phone-group.phone-show {
	visibility: visible;
}

.phone-group {
	position: fixed;
	visibility: hidden;
	cursor: pointer;
	z-index: 99;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	-webkit-transition: visibility .5s;
	-moz-transition: visibility .5s;
	-o-transition: visibility .5s;
	transition: visibility .5s;
	right: -10px;
	bottom: 60px;
}

.phone-ph-circle,
.phone-group {
	width: 100px;
	height: 100px;
	background-color: transparent;
}

.phone-group.phone-green .phone-ph-circle {
	border-color: #39a429;
	opacity: .5;
}

.phone-ph-circle {
	top: 0;
	left: 0;
	position: absolute;
	-webkit-border-radius: 100% !important;
	-moz-border-radius: 100% !important;
	border-radius: 100% !important;
	border: 2px solid var(--color-light-yellow);
	opacity: .1;
	-webkit-animation: phone-circle-anim 1.2s infinite ease-in-out;
	-moz-animation: phone-circle-anim 1.2s infinite ease-in-out;
	-ms-animation: phone-circle-anim 1.2s infinite ease-in-out;
	-o-animation: phone-circle-anim 1.2s infinite ease-in-out;
	animation: phone-circle-anim 1.2s infinite ease-in-out;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	transform-origin: 50% 50%;
}

.phone-ph-circle,
.phone-ph-img-circle {
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
}

.phone-group.phone-green .phone-ph-circle-fill {
	background-color: #ff5350;
	opacity: 0.5 !important;
}

.phone-ph-circle-fill {
	width: 60px;
	height: 60px;
	top: 20px;
	left: 20px;
	position: absolute;
	background-color: #000;
	-webkit-border-radius: 100% !important;
	-moz-border-radius: 100% !important;
	border-radius: 100% !important;
	border: 2px solid transparent;
	opacity: .1;
	-webkit-animation: phone-circle-fill-anim 2.3s infinite ease-in-out;
	-moz-animation: phone-circle-fill-anim 2.3s infinite ease-in-out;
	-ms-animation: phone-circle-fill-anim 2.3s infinite ease-in-out;
	-o-animation: phone-circle-fill-anim 2.3s infinite ease-in-out;
	animation: phone-circle-fill-anim 2.3s infinite ease-in-out;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

.phone-group.phone-green .phone-ph-img-circle {
	background-color: #ef233c;
	box-shadow: 0 0 20px 6px #ef233c;
}

.phone-ph-img-circle {
	width: 30px;
	height: 30px;
	top: 35px;
	left: 35px;
	position: absolute;
	background: url(../images/phone-ico.png) center center no-repeat rgba(30, 30, 30, 1);
	background-size: contain;
	-webkit-border-radius: 100% !important;
	-moz-border-radius: 100% !important;
	border-radius: 100% !important;
	border: 2px solid transparent;
	opacity: 1;
	-webkit-animation: phone-circle-img-anim 1s infinite ease-in-out;
	-moz-animation: phone-circle-img-anim 1s infinite ease-in-out;
	-ms-animation: phone-circle-img-anim 1s infinite ease-in-out;
	-o-animation: phone-circle-img-anim 1s infinite ease-in-out;
	animation: phone-circle-img-anim 1s infinite ease-in-out;
	transform-origin: 50% 50%;
}

@-moz-keyframes phone-circle-anim {
	0% {
		transform: rotate(0) scale(.5) skew(1deg);
		opacity: .1
	}

	30% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .5
	}

	100% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .1
	}
}

@-webkit-keyframes phone-circle-anim {
	0% {
		transform: rotate(0) scale(.5) skew(1deg);
		opacity: .1
	}

	30% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .5
	}

	100% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .1
	}
}

@-o-keyframes phone-circle-anim {
	0% {
		transform: rotate(0) scale(.5) skew(1deg);
		opacity: .1
	}

	30% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .5
	}

	100% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .1
	}
}

@keyframes phone-circle-anim {
	0% {
		transform: rotate(0) scale(.5) skew(1deg);
		opacity: .1
	}

	30% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .5
	}

	100% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .1
	}
}

@-moz-keyframes phone-circle-fill-anim {

	0%,
	100% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .2
	}

	50% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .2
	}
}

@-webkit-keyframes phone-circle-fill-anim {

	0%,
	100% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .2
	}

	50% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .2
	}
}

@-o-keyframes phone-circle-fill-anim {

	0%,
	100% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .2
	}

	50% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .2
	}
}

@keyframes phone-circle-fill-anim {

	0%,
	100% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .2
	}

	50% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .2
	}
}

@-moz-keyframes phone-circle-img-anim {

	0%,
	100%,
	50% {
		transform: rotate(0) scale(1) skew(1deg)
	}

	10%,
	30% {
		transform: rotate(-25deg) scale(1) skew(1deg)
	}

	20%,
	40% {
		transform: rotate(25deg) scale(1) skew(1deg)
	}
}

@-webkit-keyframes phone-circle-img-anim {

	0%,
	100%,
	50% {
		transform: rotate(0) scale(1) skew(1deg)
	}

	10%,
	30% {
		transform: rotate(-25deg) scale(1) skew(1deg)
	}

	20%,
	40% {
		transform: rotate(25deg) scale(1) skew(1deg)
	}
}

@-o-keyframes phone-circle-img-anim {

	0%,
	100%,
	50% {
		transform: rotate(0) scale(1) skew(1deg)
	}

	10%,
	30% {
		transform: rotate(-25deg) scale(1) skew(1deg)
	}

	20%,
	40% {
		transform: rotate(25deg) scale(1) skew(1deg)
	}
}

@keyframes phone-circle-img-anim {

	0%,
	100%,
	50% {
		transform: rotate(0) scale(1) skew(1deg)
	}

	10%,
	30% {
		transform: rotate(-25deg) scale(1) skew(1deg)
	}

	20%,
	40% {
		transform: rotate(25deg) scale(1) skew(1deg)
	}
}

#btnScrollTop:hover {
    color: #008000;
    background-color: #ffffff;
}

.map-wrapper > iframe {
    margin-bottom: -10px;
}

#footer {
    position: relative;
    width: 100%;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../images/footer-bg.jpg');
}

#footer .footer-main {
    position: relative;
    padding: 100px 0;
    width: 100%;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
}

#footer .footer-main .footer-box-info h5{
    font-family: 'Lora', sans-serif;
    font-size: 20px;
    color: #262626;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

#footer .footer-absolute {
    padding: 16px 0;
    text-align: center;
    border-top: 1px solid #ffffff;
}

#footer .footer-absolute .copyright p,
#footer .footer-absolute .copyright a {
    font-size: 11px;
    line-height: 1.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-main .footer-box-info i {
    color: #008000;
}

.footer-main .list-social {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	margin-top: 16px;
}

.footer-main .list-social li {
	width: 35px;
	height: 35px;
	margin-right: 12px;
	background-color: #008000;
	border-radius: 4px;
	display: flex;
    align-items: center;
    justify-content: center;
	font-size: 18px;
}

.footer-main .list-social li a {
	color: #ffffff;
}

.footer-main .list-social li a {
	width: 100%;
	height: 100%;
	display: flex;
    align-items: center;
    justify-content: center;
}

.footer-main .footer-box-info p:not(:last-child) {
    margin-bottom: 8px;
}

.page-title {
	position: relative;
	width: 100%;
	/*padding: 200px 0 50px 0;*/
	padding: 100px 0 50px 0;
	background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    /*background-image: url("../images/banner-bg.jpg");*/
}

.page-title h2 {
    position: relative;
    z-index: 1;
    /*padding-left: 6rem;*/
    font-family: 'Dancing Script', sans-serif;
    font-weight: bolder;
    font-size: 72px;
    /*color: #008000;*/
    color: #262626;
}

.page-title .icon-absolute.heart {
    position: absolute;
    width: 150px;
    height: 150px;
    left: 0;
    top: 50%;
    opacity: 60%;
    transform: translateY(-50%);
    display: none;
}

.page-title .breadcrumb {
    font-family: 'Lora', sans-serif;
    font-size: 24px;
    margin-bottom: 0;
    /*padding-right: 6rem;*/
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #262626;
}

.page-title .breadcrumb-item.active {
    /*color: #008000;*/
    color: #262626;
}

.section-page-wrap {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.img-about-3 {
    position: relative;
    height: 100%;
    width: 100%;
}

.img-about-3 img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
}


.page-item.active .page-link {
    background-color: #008000;
    border-color: #008000;
}

.field-group .field-control {
    padding: 12px 20px;
    display: block;
    width: 100%;
    border: 1px solid;
    border-color: #ddd;
    border-radius: 0;
    background-color: #ffffff;
    font-family: 'Lora', sans-serif;
    font-size: 16px;
    color: #262626;
    line-height: 1.5;
    font-weight: 400;
    outline: none;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0/8%);
}

#contactForm button[type="submit"] {
    padding: 12px 20px;
}

#servicesPage .service-list-thumb {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
}

#servicesPage .service-list-name {
    position: relative;
    width: 100%;
    font-size: 36px;
    font-family: 'Lora', sans-serif;
    color: #262626;
    /*background: #ffffff;*/
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 16px;
    z-index: 1;
}

#servicesPage .diviner {
    clear: both;
    display: inline-block;
    height: 1px;
    margin-bottom: 16px;
    text-align: center;
    width: 45px;
    background-color: #008000;
}

ul.list-service-details {
	padding: 0;
	margin: 0 auto;
	width: 100%;
	margin-top: 0;
	line-height: 2rem;
}

ul.list-service-details li {
	margin-bottom: 12px;
}

ul.list-service-details li div {
	display: table;
}

ul.list-service-details li div span {
	display: table-cell;
	color: #262626;
	font-family: 'Lora', sans-serif;
	/* text-transform: uppercase; */
	line-height: 1.8;
	font-weight: 600;
}

ul.list-service-details li div span:first-child {
	position: relative;
	font-weight: 500;
	font-size: 20px;
	color: #262626;
	overflow: hidden;
}

ul.list-service-details li div span:first-child:after {
	content: "";
	position: absolute;
	bottom: 0.5em;
	margin-left: 0.5em;
	width: 100%;
	border-bottom: 1px dashed gray;
}

ul.list-service-details li div span+span {
	text-align: right;
	font-size: 20px;
	width: 1%;
	vertical-align: bottom;
	padding-left: 0.5em;
	white-space: nowrap;
}

ul.list-service-details p.description {
	font-size: 15px;
	color: gray;
    margin-top: 4px;
}

ul.list-service-details span.name {
	font-family: 'Lora', sans-serif;
	/* text-transform: uppercase; */
	line-height: 1.86;
}

.order-services {
    text-align: center;
}

.order-services h2 {
    margin-bottom: 1.5rem;
    font-family: 'Lora', sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.order-services h4 {
    font-family: 'Lora', sans-serif;
    font-size: 22px;
}

.order-services p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.order-services > div:not(:last-child) {
    margin-bottom: 16px;
}