section.bg-white {
    background-color: #fff;
}
.bg-primary {
    background: #f05d23 !important;
}
a.bg-primary:hover, a.bg-primary:focus, button.bg-primary:hover, button.bg-primary:focus {
    background-color: #4ac7ea !important;
}
.title-font-orange{
    color: #f05d23;
}
button[type=submit] {
    background: #f05d23;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
}
button[type=submit]:hover{
    opacity: 0.8;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    color: rgba(0, 0, 0, 0.6);
    font-family: "Roboto Mono", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 400;
}
span {
    font-weight: 400;
}
.text-black {
}
a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6);
}
a:hover {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6, .font-primary {
    font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #252a2b;
    font-weight: 600;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #1a1814;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #1a1814;
    border-top-color: #f05d23;
    border-bottom-color: #f05d23;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.nav-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    right: -450px;
    width: 450px;
    padding-top: 18px;
    background-color: #111111cf;
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
    transition: all 0.4s;
}
.nav-menu * {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 22px;
    color: #818181;
    display: block;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}
list-style: none;
}
.nav-menu a, .nav-menu a:focus {
    display: block;
    position: relative;
    color: #ffd2b7;
    padding: 10px 20px;
    font-weight: 500;
    transition: 0.3s;
}
.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #a5a5a5;
    text-decoration: none;
}
.nav-menu .drop-down > a:after {
    content: "\ea27";
    font-family: "boxicons";
    padding-left: 10px;
    position: absolute;
    right: 15px;
}
.nav-menu .active.drop-down > a:after {
    content: "\ea27";
}
.nav-menu .drop-down > a {
    padding-right: 35px;
}
.nav-menu .drop-down ul {
    display: none;
    overflow: hidden;
}
.nav-menu ul.drop-down-active {
    display: block;
}
.nav-menu .drop-down li {
    padding-left: 20px;
}
.nav-menu-active {
    left: 0;
}
.nav-toggle {
    position: fixed;
    left: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: unset;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
    padding: 10px 12px;
    border-radius: 2px;
}
.nav-toggle i {
    border-radius: .25rem;
    background: rgba(34, 34, 34, 0.5);
    color: #fff;
    font-size: 34px;
    padding: 5px;
}
.nav-toggle-active {
    left: 495px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.owl-carousel.home-slider {
    position: relative;
    height: 650px;
    z-index: 0;
    background: tertiary;
}
.owl-carousel.home-slider .slider-item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 650px;
    position: relative;
    z-index: 0;
}

@media (max-width: 1199.98px) {
    .owl-carousel.home-slider .slider-item {
        background-position: center center !important;
    }
}
.owl-carousel.home-slider .slider-item .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    opacity: .2;
}
.owl-carousel.home-slider .owl-nav {
    position: absolute;
    top: 100%;
    width: 100%;
}
.owl-carousel.home-slider .owl-nav .owl-prev,  .owl-carousel.home-slider .owl-nav .owl-next {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -10px;
    outline: none !important;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}
.owl-carousel.home-slider .owl-nav .owl-prev span:before,  .owl-carousel.home-slider .owl-nav .owl-next span:before {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.5);
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.owl-carousel.home-slider .owl-nav .owl-prev:hover span:before, .owl-carousel.home-slider .owl-nav .owl-prev:focus span:before,  .owl-carousel.home-slider .owl-nav .owl-next:hover span:before,  .owl-carousel.home-slider .owl-nav .owl-next:focus span:before {
    color: #fff;
}
.owl-carousel.home-slider .owl-nav .owl-prev {
    left: 50%;
    margin-left: -80px;
}
.owl-carousel.home-slider .owl-nav .owl-next {
    right: 50%;
    margin-right: -80px;
}
.owl-carousel.home-slider:hover .owl-nav .owl-prev,  .owl-carousel.home-slider:hover .owl-nav .owl-next {
    opacity: 1;
}
.owl-carousel.home-slider:hover .owl-nav .owl-prev {
    left: 50%;
    margin-left: -80px;
}
.owl-carousel.home-slider:hover .owl-nav .owl-next {
    right: 50%;
    margin-right: -80px;
}
.owl-carousel.home-slider .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    width: 100%;
    text-align: center;
}

@media (max-width: 767.98px) {
    .owl-carousel.home-slider .owl-dots {
        bottom: 5px;
    }
}
.owl-carousel.home-slider .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}
.owl-carousel.home-slider .owl-dots .owl-dot.active {
    background: #fff;
}
.content {
    height: 100vh;
    position: relative;
    padding: 0;
}
.owl-1 .owl-nav {
    width: 100%;
    position: absolute;
    bottom: 60px;
}
.owl-1 .owl-nav .owl-next,  .owl-1 .owl-nav .owl-prev {
    border: 1px solid red;
    z-index: 92;
    position: absolute;
    top: 50%;
}
.owl-1 .owl-nav .owl-next:active, .owl-1 .owl-nav .owl-next:focus,  .owl-1 .owl-nav .owl-prev:active,  .owl-1 .owl-nav .owl-prev:focus {
    outline: none;
}
.owl-1 .owl-nav .owl-next span,  .owl-1 .owl-nav .owl-prev span {
    color: #fff;
}
.owl-1 .owl-nav .owl-next span:before,  .owl-1 .owl-nav .owl-prev span:before {
    font-size: 40px !important;
}
.owl-1 .owl-nav .owl-next {
    border: 4px solid blue;
    right: 20px;
}
.owl-1 .owl-nav .owl-prev {
    left: 20px;
}
.owl-1 .owl-dots {
    position: absolute;
    top: 50%;
    right: 40px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.owl-1 .owl-dots .owl-dot {
    background: none;
    display: block;
}
.owl-1 .owl-dots .owl-dot > span {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 4px;
}
.owl-1 .owl-dots .owl-dot.active > span {
    background: white;
}
.owl-1 .owl-dots .owl-dot:active, .owl-1 .owl-dots .owl-dot:focus {
    outline: none;
}
.media-29121 {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.media-29121.overlay {
    position: relative;
}
.media-29121.overlay:before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: -moz-linear-gradient(-45deg,  rgba(229,229,229,1) 0%, rgba(235,235,235,0) 24%, rgba(244,244,244,0) 59%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,  rgba(229,229,229,1) 0%,rgba(235,235,235,0) 24%,rgba(244,244,244,0) 59%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg,  rgba(229,229,229,1) 0%,rgba(235,235,235,0) 24%,rgba(244,244,244,0) 59%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e5e5', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

    z-index: 1;
}
.media-29121 .container {
    position: relative;
    z-index: 2;
}
.media-29121 .container, .media-29121 .container > .row {
    height: 100vh;
}
.media-29121 h2 {
    font-size: 38px;
    color: #fff;
}
/**/
#menuToggle
{
    position: fixed;
    display: block;
    top: 50px;
    left: 50px;
    padding: 10px;
    z-index: 11111;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#menuToggle a
{
    text-decoration: none;
    color: #232323;

    transition: color 0.3s ease;
}

#menuToggle a:hover
{
    color: tomato;
}

#menuToggle input
{
    display: block;
    width: 120px;
    height: 80px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */
    -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
    -webkit-box-shadow: 0 1px 5px rgba(255,255,255,0.22);
    -moz-box-shadow: 0 1px 5px rgba(255,255,255,0.22);
    box-shadow: 0 1px 5px rgba(255,255,255,0.22);
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #f05d23;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
        background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
        opacity 0.55s ease;
}

#menuToggle span:first-child
{
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
    transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #fff;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
    transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
    border-radius: 50%;
    position: absolute;
    width: 600px;
    margin: -100px 0 0 -90px;
    padding-left: 250px;
    padding-top: 125px;
    background: rgba(0, 0, 0, 0.4);
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    left: -150px;
    padding-bottom: 150px;
}

#menu li 
{
    padding: 10px 0;
    font-size: 22px;
}
#menu li a
{
    color: #fff;
    padding: 10px 0;
    font-size: 22px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
    transform: none;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background: url("https://cdn.vtour.house/12/site/12/608e238fd4078.jpg") center center;
    background-size: cover;
    position: relative;
    margin-top: -80px;
    z-index: 9;
    opacity: 0.9;
}
#hero .services-line {
    bottom: 0;
    position: absolute;
    border-top: solid #ffffff36 1px;
}
#hero h2.subheading {
    font-size: 26px;
    color: #fff;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 500;
    text-shadow: 0em 0em 0.15em #6c6c6c;
}
#hero .hero-container {
    background: #0000001f;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
}
#hero h1 {
    text-shadow: 0em 0em 0.15em #6c6c6c;
    font-size: 48px;
    color: #fff;
    line-height: 1.2;
    font-weight: 500;
    font-family: "Poppins", Arial, sans-serif;
}
#hero p {
    color: #fff;
}
#hero .btn-custom {
    background: rgba(34, 34, 34, 0.5);
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding: 10px 20px;
}
#hero h3 {
    text-shadow: 0em 0em 0.15em #6c6c6c;
    font-size: 20px;
    color: #fff;
}
.services-section .container-fluid {
    margin-top: -228px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.services a:hover h4 {
    color: #fff;
}
@-webkit-keyframes animate-loading-notify {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes animate-loading-notify {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
#hero .php-email-form input {
    border-radius: 50px;
    box-shadow: none;
    font-size: 14px;
    border: 0;
    padding: 0px 15px 2px 20px;
    width: 250px;
    height: 40px;
    margin: 0 8px;
}
#hero .php-email-form button[type=submit] {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: none;
    color: #fff;
    background: #fd680e;
}
#hero .php-email-form button[type=submit]:hover {
    background: #fd8841;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    .single-hero-item .hero-text .room-features{
        padding: 0;
        margin: 0;
    }
    .single-hero-item .hero-text .room-features li{
        margin-right: 0!important;
        padding: 0 5px;
    }
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    #hero .php-email-form input {
        margin: 0 auto;
    }
}
.single-hero-item .hero-text {
    background: rgba(28, 28, 28, 0.4);
    padding: 48px 0 44px;
    text-align: center;
}
.single-hero-item .hero-text .room-location {
    font-size: 22px;
    color: #dfdfdf;
}
.single-hero-item .hero-text .room-location i {
    color: #2cbdb8;
}
.single-hero-item .hero-text h2 {
    font-size: 44px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
}
.single-hero-item .hero-text .room-price {
    margin-bottom: 45px;
}
.single-hero-item .hero-text .room-price span {
    font-size: 14px;
    color: #aaaab3;
    display: inline-block;
    margin-right: 10px;
}
.single-hero-item .hero-text .room-price p {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 0;
    display: inline-block;
    font-weight: 600;
}
.single-hero-item .hero-text .room-features li {
    text-align: center;
    list-style: none;
    display: inline-block;
    margin-right: 65px;
}
.single-hero-item .hero-text .room-features li:last-child {
    margin-right: 0;
}
.single-hero-item .hero-text .room-features li i {
    font-size: 24px;
    color: #f05d23;
}
.single-hero-item .hero-text .room-features li p {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 0;
    margin-top: 5px;
}
/*---------------------
  Search Form
-----------------------*/

.search-form {
    margin-top: -50px;
    z-index: 99;
    position: relative;
}
.search-form-text {
    background: rgba(28, 28, 28, 0.4);
}
.search-form-text .search-text {
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
    background: #f05d23d4;
    padding: 13px 30px;
    font-weight: 500;
}
.search-form-text .search-text i {
    margin-right: 4px;
}
.search-form-text .home-text {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
    padding-left: 30px;
}
.search-form-text .home-text i {
    margin-right: 4px;
}
@media (max-width: 768px) {
    .search-form-text .home-text {
        padding: 10px;
    }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 80px 0;
}
section.section-pad-top-0 {
    padding-top: 0;
}
.section-bg {
    background-color: #f8f8f8;
}
.section-title {
    text-align: center;
    padding-bottom: 30px;
}
.section-title h2 {
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}
.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}
.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #f05d23;
    bottom: 0;
    left: calc(50% - 20px);
}
.section-title p {
    margin-bottom: 0;
    color: #666666;
}
/*--------------------------------------------------------------
# Property
--------------------------------------------------------------*/
.property{
    width: 100%;
    background-image: url(../img/hero-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left top;
    padding: 60px 0;
    background-color: #f8f8f8;
}
.practice-area.border-b {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.property ul {
    list-style: none;
    padding: 0;
}
.property ul li {
    padding-bottom: 10px;
}
.property ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #000;
}
.property p:last-child {
    margin-bottom: 0;
}
.list-a li {
    font-weight: 400;
    position: relative;
    width: 50%;
    float: left;
    padding-left: 25px;
    padding-right: 5px;
}
.list-a li:before {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    top: 10px;
    left: 0;
    background: #000;
}

@media (max-width: 768px) {
    .property {
        background-image: unset;
        margin: 0;
    }
    .property .mt-20{
        margin-top: 20px;
    }
}
/*--------------------------------------------------------------
# Agency
--------------------------------------------------------------*/
.ts-item {
    background: #ffffff;
    text-align: center;
    padding: 35px 25px 30px 25px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.ts-item:hover {
    background: #fff;
}
.ts-item:hover .ts-text img.eachanency {
    height: 150px;
    width: 150px;
}
.ts-item:hover .ts-text h5 {
    color: rgba(0, 0, 0, 0.6);
}
.ts-item .ts-text  img.eachanency {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.ts-item .ts-text h5 {

    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    margin-top: 25px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.ts-item .ts-text span {
    font-size: 14px;

    display: block;
    font-weight: 600;
    margin-bottom: 0px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.ts-item .ts-text p {
    margin-top: 32px;
    margin-bottom: 8px;
}
.ts-item .ts-text p.company {
    font-size: 14px;
    margin-top: 0;
    font-weight: bold;
}
/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.gallery .gallery-item {
    background-color: #000;
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}
.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}
.gallery .gallery-item:hover img {
    transform: scale(1.1);
    opacity: 0.5;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services { background-color: #fff; }
.services .icon-box {
    width: 100%;
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}
.services .icon-box::before {
    content: "";
    position: absolute;
    background: #f05d23;
    right: -60px;
    top: -40px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    transition: all 0.3s;
    z-index: -1;
}
.services .icon-box:hover::before {
    background: #f05d23;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0px;
}
.services .icon {
    margin: 0 auto 20px auto;
    padding-top: 10px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background: #f05d23;
    transition: all 0.3s ease-in-out;
}
.services .icon i {
    font-size: 36px;
    line-height: 1;
    color: #fff;
}
.services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}
.services .title a {
    color: #425451;
}
.services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}
.services .icon-box:hover .title a, .services .icon-box:hover .description {
    color: #fff;
}
.services .icon-box:hover .icon {
    background: #fff;
}
.services .icon-box:hover a {
    color: #fff;
}
.services .icon-box:hover .icon i {
    color: #f05d23;
}
/*--------------------------------------------------------------
# Fplan
--------------------------------------------------------------*/
#fplan { background-color: #f3f5f7; }
#fplan h2 { color: #252a2b; }
.Fplan .owl-nav, .Fplan .owl-dots {
    margin-top: 5px;
    text-align: center;
}
.Fplan .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}
.Fplan .owl-dot.active {
    background-color: #999 !important;
}
.Fplan .owl-carousel .nav-btn {
    height: 47px;
    position: absolute;
    width: 26px;
    cursor: pointer;
    top: 50%;
    margin-top: -100px;
}
.Fplan .owl-carousel .owl-prev.disabled, .Fplan .owl-carousel .owl-next.disabled {
    pointer-events: none;
    opacity: 0.2;
}
.Fplan .owl-carousel .prev-slide {
    background: url(../img/nav-icon.png) no-repeat scroll 0 0;
    left: -45px;
}
.Fplan .owl-carousel .next-slide {
    background: url(../img/nav-icon.png) no-repeat scroll -24px 0px;
    right: -45px;
}
.Fplan .owl-carousel .prev-slide:hover {
    background-position: 0px -53px;
}
.Fplan .owl-carousel .next-slide:hover {
    background-position: -24px -53px;
}
.Fplan h3 {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

@media (max-width: 768px) {
    .Fplan {
        margin: 30px 10px;
    }
    .Fplan .Fplan-item img {
        width: 100%;
        margin: 0 auto;
    }
}
/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info {
    color: #444444;
}
.contact .info i {
    font-size: 32px;
    color: #fd680e;
    float: left;
}
.contact .info p {
    padding: 0 0 10px 50px;
    margin-bottom: 20px;
    line-height: 22px;
    font-size: 14px;
}
.contact .info .email p {
    padding-top: 5px;
}
.contact .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #5a2c10;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}
.contact .social-links a:hover {
    background: #fd680e;
    color: #fff;
}
.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}
.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}
.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}
.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}
.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    height: calc(2.5em + .75rem + 2px);
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
    border-color: #f05d23;
}
.contact .php-email-form button[type=submit] {
    background: #f05d23;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
}
.contact .php-email-form button[type=submit]:hover {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .contact .social-links {
        text-align: center;
    }
}
@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #fff;
    font-size: 14px;
    position: relative;
}

#footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(167 167 167);
    z-index: 1;
}
#footer .socials-media {
    width: 100%;
}

#footer .socials-media ul {
    display: inline-block;
    float: none;
    margin: 0 0 20px 0;
}

#footer .socials-media ul li {
    float: left;
    margin-left: 10px;
    margin-right: 10px;
}

#footer .socials-media ul li a {
    font-size: 24px;
    color: #fff;
    letter-spacing: 0.1em;
    font-weight: 500;
    background: transparent;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out 0s;
}

#footer .socials-media ul li a:hover {
    transition: all 0.5s ease-in-out 0s;
}

#footer .footer-bottom {
    z-index: 2;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}

#footer .copyright {
    text-align: center;
}

@media (max-width: 768px) {
    .services .icon-box h4 {
        font-size: 14px;
        margin-bottom: 0;
    }
    .services .icon-box {
        padding: 10px;
    }
    .services .icon-box .icon {
        margin-top: 10px;
        width: 54px;
        height: 54px;
    }
    .services .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
        font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    }
}
#gallery { margin: 0 auto; }

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  color: #fff;
  transition: all 0.4s;
  background: #474747;
}

.back-to-top i:hover {
  color: #fff;
}