@import url("vazir-font-face.css");
@import url("sahel-font-face.css");

body {
    padding: 0px;
    margin: 0px;
    font-family: Vazir, sans-serif;
    font-size: 16px;
}

a {
    text-decoration: none;
    transition: all 0.6s ease 0s;
    color: rgb(32, 28, 45);
    display: inline-block;
}

    a:hover, a:focus {
        color: rgb(0 147 170);
        text-decoration: none;
    }

button {
    outline: 0px !important;
}

p {
    margin-bottom: 0px;
    line-height: 1.8;
    color: rgb(98, 96, 108);
    font-weight: 400;
    font-family: Vazir, sans-serif;
    font-size: 16px;
}

    p:last-child {
        margin-bottom: 0px;
    }

i {
    line-height: normal;
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-70 {
    padding-bottom: 70px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: rgb(32, 28, 45);
    font-family: Sahel, sans-serif;
    font-weight: bold;
}

    .h1:last-child, .h2:last-child, .h3:last-child, .h4:last-child, .h5:last-child, .h6:last-child, h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
        margin-bottom: 0px;
    }

.default-btn {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    color: rgb(255, 255, 255);
    background-color: rgb(0 147 170);
    transition: all 0.6s ease 0s;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: -6px;
    letter-spacing: 0px;
    padding: 15px 25px !important;
}

    .default-btn span {
        position: absolute;
        display: block;
        width: 0px;
        height: 0px;
        background-color: rgb(29 164 194);
        transition: width 0.5s ease-in-out 0s, height 0.5s ease-in-out 0s;
        transform: translate(-50%, -50%);
        z-index: -1;
        border-radius: 5px;
    }

    .default-btn:hover {
        color: rgb(255, 255, 255);
    }

        .default-btn:hover span {
            width: 225%;
            height: 562.5px;
        }

.section-title {
    margin-bottom: 45px;
    text-align: center;
}

    .section-title h3 {
        font-size: 35px;
        margin-bottom: 20px;
    }

    .section-title p {
        max-width: 700px;
        margin: auto;
    }

.preloader {
    position: fixed;
    left: 0px;
    height: 100%;
    width: 100%;
    text-align: center;
    z-index: 9999999;
    transition: all 0.9s ease 0s;
    background-color: rgb(0 147 170);
}

    .preloader .loader {
        position: absolute;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: inline-block;
        left: 0px;
        right: 0px;
        margin: 0px auto;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.6s ease 0s;
    }

        .preloader .loader .loader-outter {
            position: absolute;
            border-width: 4px 4px 0px;
            border-top-style: solid;
            border-right-style: solid;
            border-left-style: solid;
            border-top-color: rgb(255, 255, 255);
            border-right-color: rgb(255, 255, 255);
            border-image: initial;
            border-left-color: transparent;
            border-bottom-style: initial;
            border-bottom-color: initial;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            animation: 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) 0s infinite normal none running loader-outter;
        }

        .preloader .loader .loader-inner {
            position: absolute;
            border-width: 4px 0px 4px 4px;
            border-top-style: solid;
            border-bottom-style: solid;
            border-left-style: solid;
            border-bottom-color: rgb(255, 255, 255);
            border-left-color: rgb(255, 255, 255);
            border-image: initial;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            left: calc(50% - 20px);
            top: calc(50% - 20px);
            border-right-style: initial;
            border-right-color: initial;
            border-top-color: transparent;
            animation: 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) 0s infinite normal none running loader-inner;
        }

    .preloader.preloader-deactivate {
        visibility: hidden;
    }

        .preloader.preloader-deactivate .loader {
            opacity: 0;
            visibility: hidden;
        }

@-webkit-keyframes loader-outter {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-outter {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-inner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes loader-inner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.main-responsive-nav {
    display: none;
}

.main-navbar {
    padding: 5px 0px;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(108, 118, 134, 0.1) 0px 0px 1.25rem;
}

    .main-navbar .navbar {
        transition: all 0.6s ease 0s;
        padding: 0px;
    }

        .main-navbar .navbar .navbar-brand {
            padding: 0px;
        }

        .main-navbar .navbar ul {
            padding-left: 25px;
            padding-right: 25px;
            list-style-type: none;
            margin-bottom: 0px;
        }

        .main-navbar .navbar .navbar-nav .nav-item {
            position: relative;
            margin-left: 15px;
            margin-right: 15px;
        }

            .main-navbar .navbar .navbar-nav .nav-item a {
                color: rgb(32, 28, 45);
                font-size: 16px;
                font-weight: 500;
                padding: 15px 0px;
                transition: all 0.6s ease 0s;
            }

                .main-navbar .navbar .navbar-nav .nav-item a i {
                    font-size: 16px;
                    position: relative;
                    top: 2px;
                    display: inline-block;
                    margin-left: -2px;
                    margin-right: -2px;
                }

                .main-navbar .navbar .navbar-nav .nav-item a:hover, .main-navbar .navbar .navbar-nav .nav-item a:focus, .main-navbar .navbar .navbar-nav .nav-item a.active {
                    color: rgb(0 147 170);
                }

            .main-navbar .navbar .navbar-nav .nav-item:last-child {
                margin-right: 0px;
            }

            .main-navbar .navbar .navbar-nav .nav-item:first-child {
                margin-left: 0px;
            }

            .main-navbar .navbar .navbar-nav .nav-item:hover a, .main-navbar .navbar .navbar-nav .nav-item.active a {
                color: rgb(0 147 170);
            }

            .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu {
                border: none;
                top: 55px;
                left: 0px;
                z-index: 99;
                opacity: 0;
                width: 250px;
                display: block;
                border-radius: 8px;
                padding: 10px 0px;
                margin-top: 15px;
                position: absolute;
                visibility: hidden;
                background: rgb(255, 255, 255);
                transition: all 0.2s ease-in-out 0s;
                box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 15px 0px;
            }

                .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li {
                    margin: 0px;
                }

                    .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a {
                        padding: 10px 20px;
                        position: relative;
                        display: block;
                        color: rgb(32, 28, 45);
                        font-size: 15px;
                        font-weight: 500;
                    }

                        .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a i {
                            margin: 0px;
                            position: absolute;
                            top: 50%;
                            font-size: 15px;
                            transform: translateY(-50%);
                            right: 15px;
                        }

                        .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
                            color: rgb(0 147 170);
                            letter-spacing: 0px;
                        }

                            .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover::before, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:focus::before, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a.active::before {
                                opacity: 1;
                                visibility: visible;
                            }

                    .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
                        top: 0px;
                        opacity: 0;
                        left: -250px;
                        margin-top: 15px;
                        visibility: hidden;
                    }

                        .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
                            color: rgb(98, 96, 108);
                        }

                            .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
                                color: rgb(0 147 170);
                            }

                        .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
                            top: 0px;
                            opacity: 0;
                            left: 250px;
                            visibility: hidden;
                        }

                            .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
                                color: rgb(98, 96, 108);
                            }

                                .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
                                    color: rgb(0 147 170);
                                }

                            .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
                                top: 0px;
                                opacity: 0;
                                left: -250px;
                                visibility: hidden;
                            }

                                .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
                                    color: rgb(98, 96, 108);
                                }

                                    .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
                                        color: rgb(0 147 170);
                                    }

                                .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
                                    top: 0px;
                                    opacity: 0;
                                    left: 250px;
                                    visibility: hidden;
                                }

                                    .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
                                        color: rgb(98, 96, 108);
                                    }

                                        .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
                                            color: rgb(0 147 170);
                                        }

                                    .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
                                        top: 0px;
                                        opacity: 0;
                                        left: -250px;
                                        visibility: hidden;
                                    }

                                        .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
                                            color: rgb(98, 96, 108);
                                        }

                                            .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
                                                color: rgb(0 147 170);
                                            }

                                        .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
                                            top: 0px;
                                            opacity: 0;
                                            left: 250px;
                                            visibility: hidden;
                                        }

                                            .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
                                                color: rgb(98, 96, 108);
                                            }

                                                .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
                                                    color: rgb(0 147 170);
                                                }

                                        .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
                                            color: rgb(0 147 170);
                                        }

                                        .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
                                            opacity: 1;
                                            visibility: visible;
                                        }

                                    .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
                                        color: rgb(0 147 170);
                                    }

                                    .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
                                        opacity: 1;
                                        visibility: visible;
                                    }

                                .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
                                    color: rgb(0 147 170);
                                }

                                .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
                                    opacity: 1;
                                    visibility: visible;
                                }

                            .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
                                color: rgb(0 147 170);
                            }

                            .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
                                opacity: 1;
                                visibility: visible;
                            }

                        .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
                            color: rgb(0 147 170);
                        }

                        .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
                            opacity: 1;
                            visibility: visible;
                        }

                    .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
                        color: rgb(0 147 170);
                    }

                    .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
                        opacity: 1;
                        visibility: visible;
                        margin-top: 0px;
                    }

            .main-navbar .navbar .navbar-nav .nav-item:hover .dropdown-menu {
                opacity: 1;
                visibility: visible;
                margin-top: 0px;
            }

        .main-navbar .navbar .others-options .option-item {
            position: relative;
            margin-right: 25px;
        }

            .main-navbar .navbar .others-options .option-item:last-child {
                margin-right: 0px;
            }

            .main-navbar .navbar .others-options .option-item .user-box a i {
                display: inline-block;
                height: 50px;
                width: 50px;
                line-height: 50px;
                background-color: transparent;
                border: 1px solid rgb(168, 166, 173);
                color: rgb(32, 28, 45);
                font-size: 25px;
                border-radius: 50px;
                text-align: center;
                transition: all 0.6s ease 0s;
            }

                .main-navbar .navbar .others-options .option-item .user-box a i:hover {
                    background-color: rgb(0 147 170);
                    color: rgb(255, 255, 255);
                    border: 1px solid rgb(0 147 170);
                }

        .main-navbar .navbar .others-options-with-search {
            border-left: 1px solid rgb(232, 232, 234);
            padding-left: 25px;
            margin-left: 15px;
        }

            .main-navbar .navbar .others-options-with-search .option-item {
                margin-right: 25px;
            }

                .main-navbar .navbar .others-options-with-search .option-item:last-child {
                    margin-right: 0px;
                }

                .main-navbar .navbar .others-options-with-search .option-item p {
                    font-size: 15px;
                }

                .main-navbar .navbar .others-options-with-search .option-item .search-box {
                    position: relative;
                    width: 200px;
                    border-radius: 50px;
                }

                    .main-navbar .navbar .others-options-with-search .option-item .search-box .input-search {
                        display: block;
                        width: 100%;
                        height: 50px;
                        border-radius: 50px;
                        background-color: rgb(247, 247, 247);
                        border: 1px solid rgb(247, 247, 247);
                        transition: all 0.6s ease 0s;
                        color: rgb(32, 28, 45);
                        font-size: 15px;
                        font-weight: 400;
                        padding: 15px;
                    }

                        .main-navbar .navbar .others-options-with-search .option-item .search-box .input-search::-webkit-input-placeholder {
                            color: rgb(132, 132, 132);
                            transition: all 0.6s ease 0s;
                        }

                        .main-navbar .navbar .others-options-with-search .option-item .search-box .input-search::placeholder {
                            color: rgb(132, 132, 132);
                            transition: all 0.6s ease 0s;
                        }

                        .main-navbar .navbar .others-options-with-search .option-item .search-box .input-search:focus {
                            border: 1px solid rgb(0 147 170);
                            background-color: transparent;
                            outline: 0px;
                        }

                            .main-navbar .navbar .others-options-with-search .option-item .search-box .input-search:focus::-webkit-input-placeholder {
                                color: transparent;
                            }

                            .main-navbar .navbar .others-options-with-search .option-item .search-box .input-search:focus::placeholder {
                                color: transparent;
                            }

                    .main-navbar .navbar .others-options-with-search .option-item .search-box button {
                        position: absolute;
                        right: 0px;
                        top: 0px;
                        height: 50px;
                        background-color: transparent;
                        border: none;
                        color: rgb(0 147 170);
                        border-radius: 5px;
                        font-size: 22px;
                        padding: 0px 15px;
                    }

.navbar-with-black-color .main-navbar {
    padding: 15px 0px;
    background-color: rgb(32, 28, 45);
}

    .navbar-with-black-color .main-navbar .navbar .navbar-nav .nav-item a {
        color: rgb(255, 255, 255);
    }

        .navbar-with-black-color .main-navbar .navbar .navbar-nav .nav-item a:hover, .navbar-with-black-color .main-navbar .navbar .navbar-nav .nav-item a:focus, .navbar-with-black-color .main-navbar .navbar .navbar-nav .nav-item a.active {
            color: rgb(0 147 170);
        }

    .navbar-with-black-color .main-navbar .navbar .navbar-nav .nav-item:hover a, .navbar-with-black-color .main-navbar .navbar .navbar-nav .nav-item.active a {
        color: rgb(0 147 170);
    }

    .navbar-with-black-color .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a {
        color: rgb(32, 28, 45);
    }

        .navbar-with-black-color .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .navbar-with-black-color .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .navbar-with-black-color .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
            color: rgb(0 147 170);
            letter-spacing: 0px;
        }

    .navbar-with-black-color .main-navbar .navbar .others-options .option-item .user-box a i {
        border: 1px solid rgb(255, 255, 255);
        color: rgb(255, 255, 255);
    }

        .navbar-with-black-color .main-navbar .navbar .others-options .option-item .user-box a i:hover {
            background-color: rgb(0 147 170);
            color: rgb(255, 255, 255);
            border: 1px solid rgb(0 147 170);
        }

    .navbar-with-black-color .main-navbar .navbar .others-options-with-search {
        border-left: 1px solid rgb(55, 51, 66);
    }

        .navbar-with-black-color .main-navbar .navbar .others-options-with-search .option-item .search-box .input-search {
            color: rgb(255, 255, 255);
        }

            .navbar-with-black-color .main-navbar .navbar .others-options-with-search .option-item .search-box .input-search::-webkit-input-placeholder {
                color: rgb(32, 28, 45);
            }

            .navbar-with-black-color .main-navbar .navbar .others-options-with-search .option-item .search-box .input-search::placeholder {
                color: rgb(32, 28, 45);
            }

        .navbar-with-black-color .main-navbar .navbar .others-options-with-search .option-item p {
            color: rgb(255, 255, 255);
        }

.navbar-area.is-sticky {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 999;
    background: rgb(255, 255, 255);
    box-shadow: rgba(108, 118, 134, 0.1) 0px 0px 1.25rem;
    animation: 500ms ease-in-out 0s 1 normal none running fadeInDown;
    transition: all 0.6s ease 0s;
}

    .navbar-area.is-sticky.navbar-box-style .main-navbar {
        padding: 10px 0px;
    }

        .navbar-area.is-sticky.navbar-box-style .main-navbar .navbar {
            padding: 0px;
        }

    .navbar-area.is-sticky.navbar-with-white-color .main-navbar {
        padding: 20px 0px;
    }

.others-option-for-responsive {
    display: none;
}

    .others-option-for-responsive .dot-menu {
        padding: 0px 10px;
        height: 30px;
        cursor: pointer;
        z-index: 9991;
        position: absolute;
        right: 60px;
        top: -28px;
    }

        .others-option-for-responsive .dot-menu .inner {
            display: flex;
            -webkit-box-align: center;
            align-items: center;
            height: 30px;
        }

            .others-option-for-responsive .dot-menu .inner .circle {
                height: 5px;
                width: 5px;
                border-radius: 100%;
                margin: 0px 2px;
                transition: all 0.6s ease 0s;
                background-color: rgb(32, 28, 45);
            }

        .others-option-for-responsive .dot-menu:hover .inner .circle {
            background-color: rgb(0 147 170);
        }

    .others-option-for-responsive .container {
        position: relative;
    }

        .others-option-for-responsive .container .container {
            position: absolute;
            right: 0px;
            top: 10px;
            max-width: 260px;
            background-color: rgb(255, 255, 255);
            box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 15px 0px;
            margin-left: auto;
            opacity: 0;
            visibility: hidden;
            transition: all 0.6s ease 0s;
            transform: scaleX(0);
            z-index: 2;
            padding-left: 15px;
            padding-right: 15px;
        }

            .others-option-for-responsive .container .container.active {
                opacity: 1;
                visibility: visible;
                transform: scaleX(1);
            }

    .others-option-for-responsive .option-inner .others-options .option-item {
        position: relative;
        margin-right: 25px;
    }

        .others-option-for-responsive .option-inner .others-options .option-item:last-child {
            margin-right: 0px;
        }

        .others-option-for-responsive .option-inner .others-options .option-item .user-box a i {
            display: inline-block;
            height: 50px;
            width: 50px;
            line-height: 50px;
            background-color: transparent;
            border: 1px solid rgb(168, 166, 173);
            color: rgb(32, 28, 45);
            font-size: 25px;
            border-radius: 50px;
            text-align: center;
            transition: all 0.6s ease 0s;
        }

            .others-option-for-responsive .option-inner .others-options .option-item .user-box a i:hover {
                background-color: rgb(0 147 170);
                color: rgb(255, 255, 255);
                border: 1px solid rgb(0 147 170);
            }

@media only screen and (max-width: 1199px) {
    .main-responsive-nav {
        display: block;
    }

        .main-responsive-nav .main-responsive-menu {
            position: relative;
        }

            .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul {
                font-size: 15px;
            }

                .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a.active {
                    color: rgb(0 147 170);
                }

                .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a i {
                    display: none;
                }

                .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li li a {
                    font-size: 14px;
                }

            .main-responsive-nav .main-responsive-menu.mean-container .others-options {
                display: block !important;
            }

                .main-responsive-nav .main-responsive-menu.mean-container .others-options .option-item .default-btn {
                    display: none;
                }

                .main-responsive-nav .main-responsive-menu.mean-container .others-options .option-item .user-box {
                    position: absolute;
                    top: 4px;
                    right: 92px;
                }

                    .main-responsive-nav .main-responsive-menu.mean-container .others-options .option-item .user-box a i {
                        display: inline-block;
                        height: 30px;
                        width: 30px;
                        line-height: 30px;
                        background-color: rgb(0 147 170);
                        border: 1px solid rgb(0 147 170);
                        color: rgb(255, 255, 255);
                        font-size: 16px;
                        border-radius: 50px;
                        text-align: center;
                        transition: all 0.6s ease 0s;
                    }

                        .main-responsive-nav .main-responsive-menu.mean-container .others-options .option-item .user-box a i:hover {
                            background-color: rgb(29 164 194);
                            color: rgb(255, 255, 255);
                            border: 1px solid rgb(29 164 194);
                        }

            .main-responsive-nav .main-responsive-menu.mean-container .others-options-with-search {
                display: none !important;
            }

            .main-responsive-nav .main-responsive-menu.mean-container .navbar-nav {
                overflow-y: scroll;
                max-height: 300px;
                box-shadow: rgba(0, 0, 0, 0.1) 0px 7px 13px 0px;
                background-color: rgb(255, 255, 255);
            }

        .main-responsive-nav .mean-container a.meanmenu-reveal {
            color: rgb(32, 28, 45);
        }

            .main-responsive-nav .mean-container a.meanmenu-reveal span {
                background: rgb(32, 28, 45);
                position: relative;
            }

        .main-responsive-nav .logo {
            position: relative;
        }

            .main-responsive-nav .logo img {
                max-width: 100px !important;
            }

    .navbar-area {
        background-color: rgb(255, 255, 255);
        padding-top: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgb(225, 225, 225);
    }

    .main-navbar {
        display: none;
    }

    .others-option-for-responsive {
        display: block;
    }
}

.main-banner-area {
    padding-top: 65px;
    padding-bottom: 65px;
    position: relative;
    z-index: 1;
}

    .main-banner-area .container {
        position: relative;
    }

.main-banner-content {
    margin-top: 55px;
}

    .main-banner-content h1 {
        font-size: 70px;
        margin-bottom: 25px;
    }

    .main-banner-content p {
        margin-bottom: 0px;
    }

.main-banner-image img {
    border-radius: 10px;
}

.main-banner-list-tab {
    position: absolute;
    bottom: 5px;
}

    .main-banner-list-tab .tabs {
        padding-left: 0px;
        list-style-type: none;
        margin-bottom: 0px;
    }

        .main-banner-list-tab .tabs li {
            display: inline-block;
            font-size: 15px;
            background-color: rgb(255, 255, 255);
            box-shadow: rgba(108, 118, 134, 0.1) 0px 0px 1.25rem;
            color: rgb(32, 28, 45);
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 10px;
            margin-right: 10px;
            transition: all 0.6s ease 0s;
            position: relative;
            cursor: pointer;
        }

            .main-banner-list-tab .tabs li::before {
                content: "";
                position: absolute;
                left: 0px;
                right: 0px;
                margin: auto;
                bottom: -10px;
                width: 22px;
                height: 22px;
                background: rgb(0 147 170);
                z-index: -1;
                transform: rotate(45deg);
                box-shadow: rgba(0, 0, 0, 0.06) 1px 1px 2px 0px;
                transition: all 0.6s ease 0s;
                opacity: 0;
                visibility: hidden;
            }

            .main-banner-list-tab .tabs li:last-child {
                margin-right: 0px;
            }

            .main-banner-list-tab .tabs li.current {
                background-color: rgb(0 147 170);
                color: rgb(255, 255, 255);
            }

                .main-banner-list-tab .tabs li.current::before {
                    opacity: 1;
                    visibility: visible;
                }

    .main-banner-list-tab .main-banner-search-form {
        margin-top: 25px;
    }

        .main-banner-list-tab .main-banner-search-form form {
            position: relative;
            border-radius: 10px;
            background-color: rgb(255, 255, 255);
            box-shadow: rgba(108, 118, 134, 0.1) 0px 0px 1.25rem;
            padding: 25px 130px 25px 25px;
        }

            .main-banner-list-tab .main-banner-search-form form .form-group {
                position: relative;
            }

                .main-banner-list-tab .main-banner-search-form form .form-group label {
                    z-index: 1;
                    display: block;
                    margin-bottom: 0px;
                    position: absolute;
                    left: 20px;
                    color: rgb(98, 96, 108);
                    font-size: 20px;
                    top: 18px;
                }

                .main-banner-list-tab .main-banner-search-form form .form-group .form-control {
                    height: 60px;
                    display: block;
                    padding-left: 45px;
                    padding-right: 20px;
                    width: 100%;
                    border: 1px solid rgb(225, 225, 225);
                    background-color: rgb(255, 255, 255);
                    border-radius: 5px;
                    color: rgb(98, 96, 108);
                    font-size: 15px;
                    font-weight: 500;
                }

                    .main-banner-list-tab .main-banner-search-form form .form-group .form-control::-webkit-input-placeholder {
                        transition: all 0.6s ease 0s;
                        color: rgb(98, 96, 108);
                    }

                    .main-banner-list-tab .main-banner-search-form form .form-group .form-control::placeholder {
                        transition: all 0.6s ease 0s;
                        color: rgb(98, 96, 108);
                    }

                    .main-banner-list-tab .main-banner-search-form form .form-group .form-control:focus {
                        box-shadow: none;
                    }

                        .main-banner-list-tab .main-banner-search-form form .form-group .form-control:focus::-webkit-input-placeholder {
                            color: transparent;
                        }

                        .main-banner-list-tab .main-banner-search-form form .form-group .form-control:focus::placeholder {
                            color: transparent;
                        }

                    .main-banner-list-tab .main-banner-search-form form .form-group .form-control:hover {
                        border: 1px solid rgb(0 147 170);
                    }

                .main-banner-list-tab .main-banner-search-form form .form-group .nice-select {
                    width: 100%;
                    background-color: rgb(255, 255, 255);
                    border: 1px solid rgb(225, 225, 225);
                    color: rgb(98, 96, 108);
                    transition: all 0.6s ease 0s;
                    border-radius: 5px;
                    height: 60px;
                    line-height: 60px;
                    font-size: 15px;
                    font-weight: 500;
                    padding-left: 45px;
                }

                    .main-banner-list-tab .main-banner-search-form form .form-group .nice-select .list {
                        background-color: rgb(255, 255, 255);
                        border-radius: 5px;
                        box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 30px;
                        list-style-type: none;
                        border: none;
                        width: 100%;
                        height: 250px;
                        overflow-y: scroll;
                        margin-bottom: 0px;
                        margin-top: 0px;
                        padding-left: 0px;
                        padding-top: 10px;
                        padding-bottom: 10px;
                    }

                        .main-banner-list-tab .main-banner-search-form form .form-group .nice-select .list .option {
                            line-height: 38px;
                            min-height: 38px;
                            color: rgb(32, 28, 45);
                            position: relative;
                            transition: all 0.6s ease 0s;
                            padding-left: 32px;
                            padding-right: 25px;
                            font-size: 15px;
                            font-weight: 400;
                        }

                            .main-banner-list-tab .main-banner-search-form form .form-group .nice-select .list .option:hover {
                                color: rgb(255, 255, 255);
                                background-color: rgb(0 147 170) !important;
                            }

                                .main-banner-list-tab .main-banner-search-form form .form-group .nice-select .list .option:hover::before {
                                    color: rgb(255, 255, 255);
                                }

                            .main-banner-list-tab .main-banner-search-form form .form-group .nice-select .list .option.focus, .main-banner-list-tab .main-banner-search-form form .form-group .nice-select .list .option.selected.focus {
                                color: rgb(32, 28, 45);
                                background-color: transparent !important;
                            }

                            .main-banner-list-tab .main-banner-search-form form .form-group .nice-select .list .option::before {
                                content: "\e9a4";
                                position: absolute;
                                left: 10px;
                                top: 0px;
                                opacity: 0;
                                visibility: hidden;
                                transition: all 0.6s ease 0s;
                                color: rgb(0 147 170);
                                font-family: boxicons;
                                font-size: 18px;
                            }

                            .main-banner-list-tab .main-banner-search-form form .form-group .nice-select .list .option.selected::before {
                                opacity: 1;
                                visibility: visible;
                            }

                            .main-banner-list-tab .main-banner-search-form form .form-group .nice-select .list .option.selected:hover {
                                color: rgb(255, 255, 255);
                                background-color: rgb(0 147 170) !important;
                            }

                                .main-banner-list-tab .main-banner-search-form form .form-group .nice-select .list .option.selected:hover::before {
                                    color: rgb(255, 255, 255);
                                }

                        .main-banner-list-tab .main-banner-search-form form .form-group .nice-select .list::-webkit-scrollbar {
                            width: 5px;
                        }

                        .main-banner-list-tab .main-banner-search-form form .form-group .nice-select .list::-webkit-scrollbar-track {
                            background: rgb(241, 241, 241);
                        }

                        .main-banner-list-tab .main-banner-search-form form .form-group .nice-select .list::-webkit-scrollbar-thumb {
                            background: rgb(136, 136, 136);
                        }

                            .main-banner-list-tab .main-banner-search-form form .form-group .nice-select .list::-webkit-scrollbar-thumb:hover {
                                background: rgb(85, 85, 85);
                            }

                    .main-banner-list-tab .main-banner-search-form form .form-group .nice-select::after {
                        border-bottom: 1px solid rgb(98, 96, 108);
                        border-right: 1px solid rgb(98, 96, 108);
                        height: 8px;
                        width: 8px;
                        right: 20px;
                        margin-top: -5px;
                    }

                    .main-banner-list-tab .main-banner-search-form form .form-group .nice-select:hover {
                        border-color: rgb(0 147 170);
                        background-color: transparent;
                    }

            .main-banner-list-tab .main-banner-search-form form .submit-btn {
                text-align: right;
                position: absolute;
                right: 25px;
                top: 50%;
                transform: translateY(-50%);
            }

                .main-banner-list-tab .main-banner-search-form form .submit-btn button {
                    display: inline-block;
                    height: 65px;
                    width: 65px;
                    line-height: 70px;
                    background-color: rgb(0 147 170);
                    border: none;
                    color: rgb(255, 255, 255);
                    font-size: 30px;
                    border-radius: 10px;
                    transition: all 0.6s ease 0s;
                }

                    .main-banner-list-tab .main-banner-search-form form .submit-btn button:hover {
                        background-color: rgb(29 164 194);
                        color: rgb(255, 255, 255);
                    }

            .main-banner-list-tab .main-banner-search-form form .price-range-content .price-range-filter {
                margin-bottom: 10px;
                margin-top: -10px;
            }

                .main-banner-list-tab .main-banner-search-form form .price-range-content .price-range-filter p {
                    font-size: 16px;
                    color: rgb(98, 96, 108);
                    margin-bottom: 0px;
                    position: relative;
                    padding-right: 20px;
                    margin-left: 5px;
                }

                    .main-banner-list-tab .main-banner-search-form form .price-range-content .price-range-filter p i {
                        position: absolute;
                        right: 0px;
                        top: 50%;
                        transform: translateY(-50%);
                    }

                .main-banner-list-tab .main-banner-search-form form .price-range-content .price-range-filter input {
                    width: 100%;
                    border: 0px;
                    border-radius: 0px;
                    font-size: 16px;
                    font-weight: 400;
                    color: rgb(0 147 170);
                    background-color: transparent;
                }

                    .main-banner-list-tab .main-banner-search-form form .price-range-content .price-range-filter input:focus {
                        outline: 0px;
                    }

            .main-banner-list-tab .main-banner-search-form form .price-range-content .price-range-bar {
                border: none;
                background: rgb(0 147 170);
                height: 5px;
                width: 100%;
                margin-right: 0px;
                margin-bottom: 0px;
                position: relative;
            }

                .main-banner-list-tab .main-banner-search-form form .price-range-content .price-range-bar .ui-slider-range {
                    background: rgb(0 147 170);
                }

                .main-banner-list-tab .main-banner-search-form form .price-range-content .price-range-bar .ui-slider-handle {
                    border-radius: 50%;
                    border: 2px solid rgb(0 147 170);
                    height: 15px;
                    width: 15px;
                    top: -5px;
                    cursor: pointer;
                    background: rgb(0 147 170);
                    position: absolute;
                }

                    .main-banner-list-tab .main-banner-search-form form .price-range-content .price-range-bar .ui-slider-handle:focus {
                        outline: 0px;
                    }

.tab .tabs_item {
    display: none;
}

    .tab .tabs_item:first-child {
        display: block;
    }

.main-banner-shape-1 {
    position: absolute;
    right: 10px;
    bottom: 0px;
    z-index: -1;
}

    .main-banner-shape-1 img {
        border-radius: 15px;
    }

.main-slides-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.single-slides-item {
    background-image: url("../images/main-slides/bg-1.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 800px;
}

    .single-slides-item.item-bg2 {
        background-image: url("../images/main-slides/bg-2.jpg");
    }

    .single-slides-item.item-bg4 {
        background-image: url("../images/main-slides/bg-4.jpg");
    }
 
    .single-slides-item.item-bg6 {
        background-image: url("../images/main-slides/bg-6.jpg");
    }

    .single-slides-item.item-bg7 {
        background-image: url("../images/main-slides/bg-7.jpg");
    }

    .single-slides-item.item-bg3 {
        background-image: url("../images/main-slides/bg-3.jpg");
    }

.main-slides-content {
    position: absolute;
    top: 40%;
    transform: translateY(-40%);
    left: 0px;
    right: 0px;
    margin: auto;
    z-index: 1; /* max-width: 1150px; */
    text-align: center;
}

.search-estate {
    position: relative;
    top: 125px;
    transform: translateY(-40%);
    margin: auto;
    z-index: 1;
    /* max-width: 1150px; */
    text-align: center;
    /* margin-top: 80px; */
}

.main-slides-content .content h1 {
    font-size: 70px;
    margin-bottom: 0px;
    color: rgb(255, 255, 255);
    line-height: 1.4;
}

.slides-list-tab {
    margin-top: 115px;
}

    .slides-list-tab .tabs {
        padding-left: 0px;
        list-style-type: none;
        margin-bottom: 0px;
    }

        .slides-list-tab .tabs li {
            display: inline-block;
            font-size: 15px;
            background-color: rgb(255, 255, 255);
            box-shadow: rgba(108, 118, 134, 0.1) 0px 0px 1.25rem;
            color: rgb(32, 28, 45);
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 10px;
            margin-right: 10px;
            transition: all 0.6s ease 0s;
            position: relative;
            cursor: pointer;
        }

            .slides-list-tab .tabs li::before {
                content: "";
                position: absolute;
                left: 0px;
                right: 0px;
                margin: auto;
                bottom: -10px;
                width: 22px;
                height: 22px;
                background: rgb(0 147 170);
                z-index: -1;
                transform: rotate(45deg);
                box-shadow: rgba(0, 0, 0, 0.06) 1px 1px 2px 0px;
                transition: all 0.6s ease 0s;
                opacity: 0;
                visibility: hidden;
            }

            .slides-list-tab .tabs li:last-child {
                margin-right: 0px;
            }

            .slides-list-tab .tabs li.current {
                background-color: rgb(0 147 170);
                color: rgb(255, 255, 255);
            }

                .slides-list-tab .tabs li.current::before {
                    opacity: 1;
                    visibility: visible;
                }

    .slides-list-tab .main-slides-search-form {
        margin-top: 25px;
    }

        .slides-list-tab .main-slides-search-form form {
            position: relative;
            border-radius: 10px;
            background-color: rgb(255, 255, 255);
            box-shadow: rgba(108, 118, 134, 0.1) 0px 0px 1.25rem;
            padding: 25px 130px 25px 25px;
        }

            .slides-list-tab .main-slides-search-form form .form-group {
                position: relative;
            }

                .slides-list-tab .main-slides-search-form form .form-group label { /* z-index: 1; */ /* display: block; */ /* margin-bottom: 0px; */ /* position: absolute; */ /* left: 20px; */ /* color: rgb(98, 96, 108); */ /* font-size: 20px; */ /* top: 18px; */
                }

                .slides-list-tab .main-slides-search-form form .form-group .form-control {
                    height: 60px !important;
                    display: block !important; /* padding-left: 45px; */ /* padding-right: 20px; */
                    width: 100% !important;
                    border: 1px solid rgb(225, 225, 225) !important;
                    background-color: rgb(255, 255, 255) !important;
                    border-radius: 5px !important;
                    color: rgb(98, 96, 108) !important;
                    font-size: 15px !important;
                    font-weight: 500 !important;
                }

                    .slides-list-tab .main-slides-search-form form .form-group .form-control::-webkit-input-placeholder {
                        transition: all 0.6s ease 0s;
                        color: rgb(98, 96, 108);
                    }

                    .slides-list-tab .main-slides-search-form form .form-group .form-control::placeholder {
                        transition: all 0.6s ease 0s;
                        color: rgb(98, 96, 108);
                    }

                    .slides-list-tab .main-slides-search-form form .form-group .form-control:focus {
                        box-shadow: none;
                    }

                        .slides-list-tab .main-slides-search-form form .form-group .form-control:focus::-webkit-input-placeholder {
                            color: transparent;
                        }

                        .slides-list-tab .main-slides-search-form form .form-group .form-control:focus::placeholder {
                            color: transparent;
                        }

                    .slides-list-tab .main-slides-search-form form .form-group .form-control:hover {
                        border: 1px solid rgb(0 147 170) !important;
                    }

                .slides-list-tab .main-slides-search-form form .form-group .nice-select {
                    width: 100%;
                    background-color: rgb(255, 255, 255);
                    border: 1px solid rgb(225, 225, 225);
                    color: rgb(98, 96, 108);
                    transition: all 0.6s ease 0s;
                    border-radius: 5px;
                    height: 60px;
                    line-height: 60px;
                    font-size: 15px;
                    font-weight: 500;
                    padding-left: 45px;
                }

                    .slides-list-tab .main-slides-search-form form .form-group .nice-select .list {
                        background-color: rgb(255, 255, 255);
                        border-radius: 5px;
                        box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 30px;
                        list-style-type: none;
                        border: none;
                        width: 100%;
                        height: 195px;
                        overflow-y: scroll;
                        margin-bottom: 0px;
                        margin-top: 0px;
                        padding-left: 0px;
                        padding-top: 10px;
                        padding-bottom: 10px;
                    }

                        .slides-list-tab .main-slides-search-form form .form-group .nice-select .list .option {
                            line-height: 38px;
                            min-height: 38px;
                            color: rgb(32, 28, 45);
                            position: relative;
                            transition: all 0.6s ease 0s;
                            padding-left: 32px;
                            padding-right: 25px;
                            font-size: 15px;
                            font-weight: 400;
                        }

                            .slides-list-tab .main-slides-search-form form .form-group .nice-select .list .option:hover {
                                color: rgb(255, 255, 255);
                                background-color: rgb(0 147 170) !important;
                            }

                                .slides-list-tab .main-slides-search-form form .form-group .nice-select .list .option:hover::before {
                                    color: rgb(255, 255, 255);
                                }

                            .slides-list-tab .main-slides-search-form form .form-group .nice-select .list .option.focus, .slides-list-tab .main-slides-search-form form .form-group .nice-select .list .option.selected.focus {
                                color: rgb(32, 28, 45);
                                background-color: transparent !important;
                            }

                            .slides-list-tab .main-slides-search-form form .form-group .nice-select .list .option::before {
                                content: "\e9a4";
                                position: absolute;
                                left: 10px;
                                top: 0px;
                                opacity: 0;
                                visibility: hidden;
                                transition: all 0.6s ease 0s;
                                color: rgb(0 147 170);
                                font-family: boxicons;
                                font-size: 18px;
                            }

                            .slides-list-tab .main-slides-search-form form .form-group .nice-select .list .option.selected::before {
                                opacity: 1;
                                visibility: visible;
                            }

                            .slides-list-tab .main-slides-search-form form .form-group .nice-select .list .option.selected:hover {
                                color: rgb(255, 255, 255);
                                background-color: rgb(0 147 170) !important;
                            }

                                .slides-list-tab .main-slides-search-form form .form-group .nice-select .list .option.selected:hover::before {
                                    color: rgb(255, 255, 255);
                                }

                        .slides-list-tab .main-slides-search-form form .form-group .nice-select .list::-webkit-scrollbar {
                            width: 5px;
                        }

                        .slides-list-tab .main-slides-search-form form .form-group .nice-select .list::-webkit-scrollbar-track {
                            background: rgb(241, 241, 241);
                        }

                        .slides-list-tab .main-slides-search-form form .form-group .nice-select .list::-webkit-scrollbar-thumb {
                            background: rgb(136, 136, 136);
                        }

                            .slides-list-tab .main-slides-search-form form .form-group .nice-select .list::-webkit-scrollbar-thumb:hover {
                                background: rgb(85, 85, 85);
                            }

                    .slides-list-tab .main-slides-search-form form .form-group .nice-select::after {
                        border-bottom: 1px solid rgb(98, 96, 108);
                        border-right: 1px solid rgb(98, 96, 108);
                        height: 8px;
                        width: 8px;
                        right: 20px;
                        margin-top: -5px;
                    }

                    .slides-list-tab .main-slides-search-form form .form-group .nice-select:hover {
                        border-color: rgb(0 147 170);
                        background-color: transparent;
                    }

            .slides-list-tab .main-slides-search-form form .submit-btn {
                text-align: right;
                position: absolute;
                right: 25px;
                top: 50%;
                transform: translateY(-50%);
                display: inline-grid;
            }

                .slides-list-tab .main-slides-search-form form .submit-btn button {
                    display: inline-block;
                    height: 65px;
                    width: 65px;
                    line-height: 70px;
                    background-color: rgb(0 147 170);
                    border: none;
                    color: rgb(255, 255, 255);
                    font-size: 30px;
                    border-radius: 10px;
                    transition: all 0.6s ease 0s;
                    margin: 3px;
                }

                    .slides-list-tab .main-slides-search-form form .submit-btn button:hover {
                        background-color: rgb(29 164 194);
                        color: rgb(255, 255, 255);
                    }

            .slides-list-tab .main-slides-search-form form .price-range-content .price-range-filter { /* margin-bottom: 10px; */ /* margin-top: -10px; */
            }

                .slides-list-tab .main-slides-search-form form .price-range-content .price-range-filter p {
                    font-size: 16px;
                    color: rgb(98, 96, 108);
                    margin-bottom: 0px;
                    position: relative;
                    padding-right: 20px;
                    margin-left: 5px;
                }

                    .slides-list-tab .main-slides-search-form form .price-range-content .price-range-filter p i {
                        position: absolute;
                        right: 0px;
                        top: 50%;
                        transform: translateY(-50%);
                    }

                .slides-list-tab .main-slides-search-form form .price-range-content .price-range-filter input { /* width: 100%; */
                    border: 0px;
                    border-radius: 0px;
                    font-size: 16px;
                    font-weight: 400;
                    color: rgb(0 147 170);
                    background-color: transparent;
                }

                    .slides-list-tab .main-slides-search-form form .price-range-content .price-range-filter input:focus {
                        outline: 0px;
                    }

            .slides-list-tab .main-slides-search-form form .price-range-content .price-range-bar {
                border: none;
                background: rgb(0 147 170);
                height: 5px;
                width: 100%;
                margin-right: 0px;
                margin-bottom: 0px;
                position: relative;
            }

                .slides-list-tab .main-slides-search-form form .price-range-content .price-range-bar .ui-slider-range {
                    background: rgb(0 147 170);
                }

                .slides-list-tab .main-slides-search-form form .price-range-content .price-range-bar .ui-slider-handle {
                    border-radius: 50%;
                    border: 2px solid rgb(0 147 170);
                    height: 15px;
                    width: 15px;
                    top: -5px;
                    cursor: pointer;
                    background: rgb(0 147 170);
                    position: absolute;
                }

                    .slides-list-tab .main-slides-search-form form .price-range-content .price-range-bar .ui-slider-handle:focus {
                        outline: 0px;
                    }

.home-slides.owl-theme .owl-nav {
    margin-top: 0px;
}

    .home-slides.owl-theme .owl-nav [class*="owl-"] {
        position: absolute;
        left: 5%;
        top: 45%;
        transform: translateY(-45%);
        margin: 0px;
        outline: 0px;
        width: 45px;
        height: 45px;
        line-height: 52px;
        transition: all 0.6s ease 0s;
        background-color: rgb(255, 255, 255);
        box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 28px 0px;
        color: rgb(0 147 170);
        border-radius: 50%;
    }

        .home-slides.owl-theme .owl-nav [class*="owl-"]:hover, .home-slides.owl-theme .owl-nav [class*="owl-"]:focus {
            background-color: rgb(0 147 170);
            color: rgb(255, 255, 255);
        }

        .home-slides.owl-theme .owl-nav [class*="owl-"].owl-next {
            left: auto;
            right: 5%;
        }

        .home-slides.owl-theme .owl-nav [class*="owl-"] i {
            font-size: 20px;
            font-weight: bold;
        }

.slides-item-box {
    background-image: url("../images/main-slides/bg-4.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 200px;
    padding-bottom: 200px;
}

    .slides-item-box.item-two {
        background-image: url("../images/main-slides/bg-5.jpg");
    }

    .slides-item-box.item-three {
        background-image: url("../images/main-slides/bg-1.jpg");
    }

    .slides-item-box.item-four {
        background-image: url("../images/main-slides/bg-2.jpg");
    }

    .slides-item-box.item-five {
        background-image: url("../images/main-slides/bg-3.jpg");
    }

.slides-content-box {
    max-width: 550px;
    background-color: rgb(255, 255, 255);
    border: 10px solid rgb(112, 111, 116);
    border-radius: 20px;
}

    .slides-content-box .top-content {
        padding: 20px 20px 0px;
        position: relative;
    }

        .slides-content-box .top-content .tag-list {
            padding-left: 0px;
            margin-bottom: 20px;
            list-style-type: none;
        }

            .slides-content-box .top-content .tag-list .featured {
                display: inline-block;
                background-color: rgb(29 164 194);
                font-size: 14px;
                font-weight: 400;
                padding: 10px 20px;
                border-radius: 5px;
                text-transform: uppercase;
                transition: all 0.6s ease 0s;
                margin-right: 10px;
            }

                .slides-content-box .top-content .tag-list .featured a {
                    color: rgb(255, 255, 255);
                }

                .slides-content-box .top-content .tag-list .featured:hover {
                    background-color: rgb(0 147 170);
                }

            .slides-content-box .top-content .tag-list .rent {
                display: inline-block;
                background-color: rgb(0 147 170);
                font-size: 14px;
                font-weight: 400;
                padding: 10px 20px;
                border-radius: 5px;
                text-transform: uppercase;
                transition: all 0.6s ease 0s;
            }

                .slides-content-box .top-content .tag-list .rent a {
                    color: rgb(255, 255, 255);
                }

                .slides-content-box .top-content .tag-list .rent:hover {
                    background-color: rgb(29 164 194);
                }

.tag a {
    color: rgb(255, 255, 255);
}

.slides-content-box .top-content span {
    font-size: 15px;
    color: rgb(0 147 170);
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
}

.slides-content-box .top-content h3 {
    font-size: 25px;
    margin-bottom: 15px;
}

    .slides-content-box .top-content h3 a {
        color: rgb(32, 28, 45);
    }

        .slides-content-box .top-content h3 a:hover {
            color: rgb(0 147 170);
        }

.slides-content-box .top-content p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 15px;
}

    .slides-content-box .top-content p span {
        color: rgb(32, 28, 45);
        margin-bottom: 0px;
    }

.slides-content-box .top-content .featured-list {
    padding: 0px;
    margin-bottom: 0px;
}

    .slides-content-box .top-content .featured-list li {
        list-style-type: none;
        display: inline-block;
        position: relative;
        padding-right: 22px;
        color: rgb(98, 96, 108);
        font-size: 16px;
        font-weight: 400;
        margin-left: 10px;
    }

        .slides-content-box .top-content .featured-list li:last-child {
            margin-left: 0px;
        }

        .slides-content-box .top-content .featured-list li i {
            position: absolute;
            right: 0px;
            top: 50%;
            transform: translateY(-50%);
        }

.slides-content-box .top-content .price {
    display: inline-block;
    background-color: rgb(255, 255, 255);
    color: rgb(0 147 170);
    box-shadow: rgba(0, 89, 255, 0.1) 0px 0px 1.25rem;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    position: absolute;
    right: 20px;
    top: -35.5px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.6s ease 0s;
}

.slides-content-box .bottom-content {
    border-top: 1px solid rgb(225, 225, 225);
    margin-top: 20px;
    padding: 30px 20px;
    position: relative;
}

    .slides-content-box .bottom-content .rating-list {
        padding: 0px;
        margin-bottom: 0px;
    }

        .slides-content-box .bottom-content .rating-list li {
            list-style-type: none;
            display: inline-block;
            color: rgb(132, 132, 132);
            font-weight: 500;
        }

            .slides-content-box .bottom-content .rating-list li i {
                font-size: 16px;
                color: rgb(248, 180, 42);
            }

            .slides-content-box .bottom-content .rating-list li.color-gray i {
                color: rgb(196, 196, 196);
            }

            .slides-content-box .bottom-content .rating-list li:last-child {
                margin-left: 5px;
            }

    .slides-content-box .bottom-content .slides-btn {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

        .slides-content-box .bottom-content .slides-btn .default-btn {
            background-color: rgb(32, 28, 45);
        }

.home-slides-two.owl-theme .owl-nav {
    margin-top: 0px;
}

    .home-slides-two.owl-theme .owl-nav [class*="owl-"] {
        position: absolute;
        left: 0px;
        top: 45%;
        transform: translateY(-45%);
        margin: 0px;
        outline: 0px;
        width: 45px;
        height: 45px;
        line-height: 52px;
        transition: all 0.6s ease 0s;
        background-color: rgb(255, 255, 255);
        box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 28px 0px;
        color: rgb(0 147 170);
        border-radius: 0px 5px 5px 0px;
    }

        .home-slides-two.owl-theme .owl-nav [class*="owl-"]:hover, .home-slides-two.owl-theme .owl-nav [class*="owl-"]:focus {
            background-color: rgb(0 147 170);
            color: rgb(255, 255, 255);
        }

        .home-slides-two.owl-theme .owl-nav [class*="owl-"].owl-next {
            left: auto;
            right: 0px;
            border-radius: 5px 0px 0px 5px;
        }

        .home-slides-two.owl-theme .owl-nav [class*="owl-"] i {
            font-size: 20px;
            font-weight: bold;
        }

.home-slides-two.owl-theme .owl-dots {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 20px;
}

    .home-slides-two.owl-theme .owl-dots .owl-dot span {
        width: 15px;
        height: 15px;
        background-color: rgb(188, 140, 102);
        box-shadow: rgba(0, 0, 0, 0.1) 0px 15px 35px;
        transition: all 0.6s ease 0s;
        border-radius: 50%;
    }

    .home-slides-two.owl-theme .owl-dots .owl-dot:hover span, .home-slides-two.owl-theme .owl-dots .owl-dot.active span {
        background-color: rgb(255, 255, 255);
        transform: scale(1.2);
    }

.home-slides-two.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0px;
}

.partner-title {
    text-align: center;
    margin-bottom: 45px;
}

    .partner-title h3 {
        font-size: 35px;
        margin-bottom: 0px;
    }

.partner-custom-row {
    padding: 0px;
    margin-bottom: 0px;
    display: flex;
    flex-wrap: wrap;
}

    .partner-custom-row li {
        display: inline-block;
        flex: 1 1 20%;
        max-width: 20%;
    }

        .partner-custom-row li img {
            background-color: rgb(255, 255, 255);
            box-shadow: rgba(108, 118, 134, 0.1) 0px 0px 1.25rem;
            padding: 30px 36px;
        }

.overview-area {
    background-color: rgb(242, 251, 252);
}

.single-overview {
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    padding: 30px;
    transition: all 0.6s ease 0s;
    margin-bottom: 30px;
}

    .single-overview img {
        margin-bottom: 25px;
        width: 100%;
    }

    .single-overview h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

        .single-overview h3 a {
            color: rgb(32, 28, 45);
        }

    .single-overview p {
        margin-bottom: 0px;
    }

    .single-overview .overview-btn {
        margin-top: 20px;
    }

    .single-overview:hover {
        transform: translateY(-10px);
    }

.single-overview-box {
    border: 1px solid rgb(225, 225, 225);
    border-radius: 5px;
    padding: 30px;
    transition: all 0.6s ease 0s;
    margin-bottom: 30px;
}

    .single-overview-box img {
        margin-bottom: 25px;
        width: 100%;
    }

    .single-overview-box h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

        .single-overview-box h3 a {
            color: rgb(32, 28, 45);
        }

    .single-overview-box p {
        margin-bottom: 0px;
    }

    .single-overview-box .overview-btn {
        margin-top: 20px;
    }

    .single-overview-box:hover {
        transform: translateY(-10px);
    }

.featured-area-two {
    position: relative;
    z-index: 1;
}

    .featured-area-two::before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        background-color: rgb(32, 28, 45);
        z-index: -1;
        width: 100%;
        height: 55%;
    }

    .featured-area-two .section-title h3 {
        color: rgb(255, 255, 255);
    }

    .featured-area-two .section-title p {
        color: rgb(255, 255, 255);
    }

.featured-item {
    border: 1px solid rgb(225, 225, 225);
    border-radius: 10px;
}

    .featured-item.with-white-color {
        background-color: rgb(255, 255, 255);
    }

    .featured-item.bottom-30 {
        margin-bottom: 30px;
    }

    .featured-item .featured-image {
        position: relative;
    }

        .featured-item .featured-image a {
            display: block;
        }

        .featured-item .featured-image img {
            border-radius: 20px;
            padding-top: 10px;
            padding-left: 10px;
            padding-right: 10px;
            margin-bottom: 10px;
        }

        .featured-item .featured-image .tag {
            position: absolute;
            left: 16px;
            top: 17px;
        }

            .featured-item .featured-image .tag a {
                display: inline-block;
                background-color: rgb(29 164 194);
                color: rgb(255, 255, 255);
                font-size: 14px;
                font-weight: 400;
                padding: 5px 10px;
                border-radius: 5px;
                transition: all 0.6s ease 0s;
                letter-spacing: 0px;
            }

        .featured-item .featured-image .price {
            display: inline-block;
            background-color: rgb(210, 31, 31);
            color: rgb(255, 255, 255);
            width: 210px;
            height: 35px;
            line-height: 35px;
            position: absolute;
            left: 10px;
            bottom: 0.5px;
            text-align: center;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.6s ease 0s;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
        }

    .featured-item .featured-top-content span {
        font-size: 15px;
        color: rgb(0 147 170);
        font-weight: 500;
        display: inline-block;
        margin-bottom: 0px;
    }

    .featured-item .featured-top-content h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

        .featured-item .featured-top-content h3 a {
            color: rgb(32, 28, 45);
        }

            .featured-item .featured-top-content h3 a:hover {
                color: rgb(0 147 170);
            }

    .featured-item .featured-top-content p {
        font-size: 15px;
        font-weight: 400;
        margin-bottom: 20px;
    }

        .featured-item .featured-top-content p span {
            color: rgb(32, 28, 45);
            margin-bottom: 0px;
        }

    .featured-item .featured-top-content .featured-list {
        padding: 3px 7px;
        margin-bottom: 0px;
        background: rgb(242, 242, 242);
        position: relative;
        text-align: center;
    }

.top-feature {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.bottom-feature {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.featured-item .featured-top-content .featured-list li {
    list-style-type: none;
    display: inline-block;
    position: relative;
    padding-right: 21px;
    color: rgb(98, 96, 108);
    font-size: 16px;
    font-weight: 400;
    margin-left: 40px;
}

    .featured-item .featured-top-content .featured-list li:last-child {
        margin-left: 0px;
    }

    .featured-item .featured-top-content .featured-list li i {
        position: absolute;
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
    }

.featured-item .featured-bottom-content {
    border-top: 1px solid rgb(225, 225, 225);
    margin-top: 20px;
    padding: 25px 20px;
    position: relative;
}

    .featured-item .featured-bottom-content .rating-list {
        padding: 0px;
        margin-bottom: 0px;
    }

        .featured-item .featured-bottom-content .rating-list li {
            list-style-type: none;
            display: inline-block;
            color: rgb(132, 132, 132);
            font-weight: 500;
        }

            .featured-item .featured-bottom-content .rating-list li i {
                font-size: 16px;
                color: rgb(248, 180, 42);
            }

            .featured-item .featured-bottom-content .rating-list li.color-gray i {
                color: rgb(196, 196, 196);
            }

            .featured-item .featured-bottom-content .rating-list li:last-child {
                margin-right: 5px;
            }

    .featured-item .featured-bottom-content .featured-btn {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

        .featured-item .featured-bottom-content .featured-btn .default-btn {
            background-color: rgb(32, 28, 45);
        }

.featured-item:hover .featured-image .tag a {
    background-color: rgb(0 147 170);
}

.featured-item:hover .featured-image .price {
    background-color: rgb(0 147 170);
    color: rgb(255, 255, 255);
}

.featured-item-box {
    border: 1px solid rgb(225, 225, 225);
    border-radius: 10px;
    padding: 10px 10px 0px;
}

    .featured-item-box .featured-image {
        position: relative;
    }

        .featured-item-box .featured-image::before {
            content: "";
            background: linear-gradient(rgba(0, 0, 0, 0), black);
            width: 100%;
            height: 90%;
            right: 0px;
            bottom: 0px;
            position: absolute;
            transition: all 0.6s ease 0s;
            z-index: 1;
            border-radius: 10px;
            opacity: 0.9;
        }

        .featured-item-box .featured-image a {
            display: block;
        }

        .featured-item-box .featured-image img {
            border-radius: 10px;
        }

        .featured-item-box .featured-image .tag {
            position: absolute;
            right: 20px;
            top: 20px;
        }

            .featured-item-box .featured-image .tag a {
                display: inline-block;
                background-color: rgb(29 164 194);
                color: rgb(255, 255, 255);
                font-size: 14px;
                font-weight: 400;
                padding: 5px 10px;
                border-radius: 5px;
                transition: all 0.6s ease 0s;
            }

        .featured-item-box .featured-image .featured-top-content {
            padding: 20px;
            position: absolute;
            bottom: 0px;
            z-index: 1;
            transition: all 0.6s ease 0s;
        }

            .featured-item-box .featured-image .featured-top-content span {
                font-size: 15px;
                color: rgb(255, 255, 255);
                font-weight: 500;
                display: inline-block;
                margin-bottom: 15px;
            }

            .featured-item-box .featured-image .featured-top-content h3 {
                font-size: 25px;
                margin-bottom: 15px;
            }

                .featured-item-box .featured-image .featured-top-content h3 a {
                    color: rgb(255, 255, 255);
                }

                    .featured-item-box .featured-image .featured-top-content h3 a:hover {
                        color: rgb(0 147 170);
                    }

            .featured-item-box .featured-image .featured-top-content p {
                font-size: 15px;
                font-weight: bold;
                margin-bottom: 15px;
                color: rgb(255, 255, 255);
            }

            .featured-item-box .featured-image .featured-top-content .featured-list {
                padding: 0px;
                margin-bottom: 0px;
            }

                .featured-item-box .featured-image .featured-top-content .featured-list li {
                    list-style-type: none;
                    display: inline-block;
                    position: relative;
                    padding-right: 22px;
                    color: rgb(255, 255, 255);
                    font-size: 16px;
                    font-weight: 400;
                    margin-left: 10px;
                }

                    .featured-item-box .featured-image .featured-top-content .featured-list li:last-child {
                        margin-left: 0px;
                    }

                    .featured-item-box .featured-image .featured-top-content .featured-list li i {
                        position: absolute;
                        right: 0px;
                        top: 50%;
                        transform: translateY(-50%);
                    }

    .featured-item-box .featured-bottom-content {
        padding: 30px 20px;
        position: relative;
        margin-left: -10px;
        margin-right: -10px;
    }

        .featured-item-box .featured-bottom-content .rating-list {
            padding: 0px;
            margin-bottom: 0px;
        }

            .featured-item-box .featured-bottom-content .rating-list li {
                list-style-type: none;
                display: inline-block;
                color: rgb(132, 132, 132);
                font-weight: 500;
            }

                .featured-item-box .featured-bottom-content .rating-list li i {
                    font-size: 16px;
                    color: rgb(248, 180, 42);
                }

                .featured-item-box .featured-bottom-content .rating-list li.color-gray i {
                    color: rgb(196, 196, 196);
                }

                .featured-item-box .featured-bottom-content .rating-list li:last-child {
                    margin-right: 5px;
                }

        .featured-item-box .featured-bottom-content .featured-btn {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
        }

            .featured-item-box .featured-bottom-content .featured-btn .default-btn {
                background-color: rgb(32, 28, 45);
            }

    .featured-item-box:hover .featured-image .tag a {
        background-color: rgb(0 147 170);
    }

    .featured-item-box:hover .featured-image .featured-top-content {
        bottom: 5px;
    }

.view-featured-btn {
    text-align: center;
    margin-top: 30px;
}

.featured-slides.owl-theme .owl-nav {
    margin-top: 0px;
}

    .featured-slides.owl-theme .owl-nav [class*="owl-"] {
        position: absolute;
        right: 0px;
        top: 38%;
        transform: translateY(-38%);
        margin: 0px;
        outline: 0px;
        width: 45px;
        height: 45px;
        line-height: 52px;
        transition: all 0.6s ease 0s;
        background-color: rgb(255, 255, 255);
        box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 28px 0px;
        color: rgb(0 147 170);
        border-radius: 50%;
        opacity: 0;
        visibility: hidden;
    }

        .featured-slides.owl-theme .owl-nav [class*="owl-"]:hover, .featured-slides.owl-theme .owl-nav [class*="owl-"]:focus {
            background-color: rgb(0 147 170);
            color: rgb(255, 255, 255);
        }

        .featured-slides.owl-theme .owl-nav [class*="owl-"].owl-next {
            right: auto;
            left: 0px;
        }

        .featured-slides.owl-theme .owl-nav [class*="owl-"] i {
            font-size: 20px;
            font-weight: bold;
        }

.featured-slides.owl-theme:hover .owl-nav [class*="owl-"] {
    opacity: 1;
    visibility: visible;
    right: -25px;
    transition: all 0.6s ease 0s;
}

    .featured-slides.owl-theme:hover .owl-nav [class*="owl-"].owl-next {
        right: auto;
        left: -25px;
    }

.solution-area {
    background-color: rgb(247, 247, 247);
}

    .solution-area.bg-f2fbfc {
        background-color: rgb(242, 251, 252);
    }

.solution-content {
    padding-left: 20px;
}

    .solution-content h3 {
        font-size: 35px;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .solution-content .solution-btn {
        margin-top: 25px;
    }

.new-added-properties-area.bg-201c2d {
    background-color: rgb(32, 28, 45);
}

    .new-added-properties-area.bg-201c2d .section-title h3 {
        color: rgb(255, 255, 255);
    }

    .new-added-properties-area.bg-201c2d .section-title p {
        color: rgb(255, 255, 255);
    }

.single-new-added-properties {
    border: 1px solid rgb(225, 225, 225);
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 25px;
    transition: all 0.6s ease 0s;
}

    .single-new-added-properties.with-white-color {
        background-color: rgb(255, 255, 255);
        border: 1px solid rgb(255, 255, 255);
    }

    .single-new-added-properties .properties-image {
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        height: 100%;
        position: relative;
        z-index: 1;
        border-radius: 5px;
    }

        .single-new-added-properties .properties-image::before {
            content: "";
            background: linear-gradient(rgba(0, 0, 0, 0), black);
            width: 100%;
            height: 80%;
            left: 0px;
            bottom: 0px;
            position: absolute;
            transition: all 0.6s ease 0s;
            z-index: -1;
            border-radius: 5px;
            opacity: 0.7;
        }

        .single-new-added-properties .properties-image.bg-1 {
            background-image: url("../images/new-added-properties/properties-1.jpg");
        }

        .single-new-added-properties .properties-image.bg-2 {
            background-image: url("../images/new-added-properties/properties-2.jpg");
        }

        .single-new-added-properties .properties-image.bg-3 {
            background-image: url("../images/new-added-properties/properties-3.jpg");
        }

        .single-new-added-properties .properties-image.bg-4 {
            background-image: url("../images/new-added-properties/properties-4.jpg");
        }

        .single-new-added-properties .properties-image.bg-5 {
            background-image: url("../images/new-added-properties/properties-5.jpg");
        }

        .single-new-added-properties .properties-image.bg-6 {
            background-image: url("../images/new-added-properties/properties-6.jpg");
        }

        .single-new-added-properties .properties-image.bg-7 {
            background-image: url("../images/new-added-properties/properties-7.jpg");
        }

        .single-new-added-properties .properties-image.bg-8 {
            background-image: url("../images/new-added-properties/properties-8.jpg");
        }

        .single-new-added-properties .properties-image img {
            display: none;
        }

        .single-new-added-properties .properties-image .tag {
            position: absolute;
            left: 25px;
            top: 25px;
        }

            .single-new-added-properties .properties-image .tag a {
                display: inline-block;
                background-color: rgb(29 164 194);
                color: rgb(255, 255, 255);
                font-size: 14px;
                font-weight: 400;
                padding: 5px 10px;
                border-radius: 5px;
                transition: all 0.6s ease 0s;
                letter-spacing: 0px;
            }

        .single-new-added-properties .properties-image .price {
            position: absolute;
            left: 25px;
            bottom: 25px;
            font-size: 22px;
            font-weight: 600;
            color: rgb(255, 255, 255);
        }

            .single-new-added-properties .properties-image .price span {
                font-size: 16px;
                font-weight: 500;
            }

    .single-new-added-properties .properties-content {
        padding: 30px 10px 30px 0px;
    }

        .single-new-added-properties .properties-content span {
            font-size: 15px;
            color: rgb(0 147 170);
            font-weight: 500;
            display: inline-block;
            margin-bottom: 20px;
        }

        .single-new-added-properties .properties-content h3 {
            font-size: 22px;
            margin-bottom: 20px;
        }

            .single-new-added-properties .properties-content h3 a {
                color: rgb(32, 28, 45);
            }

                .single-new-added-properties .properties-content h3 a:hover {
                    color: rgb(0 147 170);
                }

        .single-new-added-properties .properties-content .list {
            padding: 0px;
            margin-bottom: 0px;
        }

            .single-new-added-properties .properties-content .list li {
                list-style-type: none;
                display: inline-block;
                position: relative;
                padding-left: 22px;
                color: rgb(98, 96, 108);
                font-size: 16px;
                font-weight: 400;
                margin-right: 10px;
                margin-bottom: 10px;
            }

                .single-new-added-properties .properties-content .list li:last-child {
                    margin-right: 0px;
                    margin-bottom: 0px;
                }

                .single-new-added-properties .properties-content .list li i {
                    position: absolute;
                    left: 0px;
                    top: 50%;
                    transform: translateY(-50%);
                }

        .single-new-added-properties .properties-content .rating-list {
            border-top: 1px solid rgb(225, 225, 225);
            padding-top: 20px;
            padding-left: 0px;
            margin-top: 20px;
            margin-bottom: 0px;
        }

            .single-new-added-properties .properties-content .rating-list li {
                list-style-type: none;
                display: inline-block;
                color: rgb(132, 132, 132);
                font-weight: 500;
            }

                .single-new-added-properties .properties-content .rating-list li i {
                    font-size: 16px;
                    color: rgb(248, 180, 42);
                }

                .single-new-added-properties .properties-content .rating-list li.color-gray i {
                    color: rgb(196, 196, 196);
                }

                .single-new-added-properties .properties-content .rating-list li:last-child {
                    margin-left: 5px;
                }

    .single-new-added-properties:hover {
        transform: translateY(-5px);
    }

        .single-new-added-properties:hover .properties-image .tag a {
            background-color: rgb(0 147 170);
        }

.view-properties-btn {
    text-align: center;
}

.properties-list-tab {
    max-width: 1168px;
    margin: 0px auto 50px;
    text-align: center;
}

    .properties-list-tab .tabs {
        padding-left: 0px;
        list-style-type: none;
        margin-bottom: 0px;
    }

        .properties-list-tab .tabs li {
            display: inline-block;
            font-size: 15px;
            background-color: rgb(255, 255, 255);
            box-shadow: rgba(108, 118, 134, 0.1) 0px 0px 1.25rem;
            color: rgb(32, 28, 45);
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 10px;
            margin-right: 10px;
            transition: all 0.6s ease 0s;
            position: relative;
            cursor: pointer;
        }

            .properties-list-tab .tabs li::before {
                content: "";
                position: absolute;
                left: 0px;
                right: 0px;
                margin: auto;
                bottom: -10px;
                width: 22px;
                height: 22px;
                background: rgb(0 147 170);
                z-index: -1;
                transform: rotate(45deg);
                box-shadow: rgba(0, 0, 0, 0.06) 1px 1px 2px 0px;
                transition: all 0.6s ease 0s;
                opacity: 0;
                visibility: hidden;
            }

            .properties-list-tab .tabs li:last-child {
                margin-right: 0px;
            }

            .properties-list-tab .tabs li.current {
                background-color: rgb(0 147 170);
                color: rgb(255, 255, 255);
            }

                .properties-list-tab .tabs li.current::before {
                    opacity: 1;
                    visibility: visible;
                }

    .properties-list-tab .properties-search-form {
        margin-top: 25px;
    }

        .properties-list-tab .properties-search-form form {
            position: relative;
            border-radius: 10px;
            background-color: rgb(255, 255, 255);
            box-shadow: rgba(108, 118, 134, 0.1) 0px 0px 1.25rem;
            padding: 25px 130px 25px 25px;
        }

            .properties-list-tab .properties-search-form form .form-group {
                position: relative;
            }

                .properties-list-tab .properties-search-form form .form-group label {
                    z-index: 1;
                    display: block;
                    margin-bottom: 0px;
                    position: absolute;
                    left: 20px;
                    color: rgb(98, 96, 108);
                    font-size: 20px;
                    top: 18px;
                }

                .properties-list-tab .properties-search-form form .form-group .form-control {
                    height: 60px;
                    display: block;
                    padding-left: 45px;
                    padding-right: 20px;
                    width: 100%;
                    border: 1px solid rgb(225, 225, 225);
                    background-color: rgb(255, 255, 255);
                    border-radius: 5px;
                    color: rgb(98, 96, 108);
                    font-size: 15px;
                    font-weight: 500;
                }

                    .properties-list-tab .properties-search-form form .form-group .form-control::-webkit-input-placeholder {
                        transition: all 0.6s ease 0s;
                        color: rgb(98, 96, 108);
                    }

                    .properties-list-tab .properties-search-form form .form-group .form-control::placeholder {
                        transition: all 0.6s ease 0s;
                        color: rgb(98, 96, 108);
                    }

                    .properties-list-tab .properties-search-form form .form-group .form-control:focus {
                        box-shadow: none;
                    }

                        .properties-list-tab .properties-search-form form .form-group .form-control:focus::-webkit-input-placeholder {
                            color: transparent;
                        }

                        .properties-list-tab .properties-search-form form .form-group .form-control:focus::placeholder {
                            color: transparent;
                        }

                    .properties-list-tab .properties-search-form form .form-group .form-control:hover {
                        border: 1px solid rgb(0 147 170);
                    }

                .properties-list-tab .properties-search-form form .form-group .nice-select {
                    width: 100%;
                    background-color: rgb(255, 255, 255);
                    border: 1px solid rgb(225, 225, 225);
                    color: rgb(98, 96, 108);
                    transition: all 0.6s ease 0s;
                    border-radius: 5px;
                    height: 60px;
                    line-height: 60px;
                    font-size: 15px;
                    font-weight: 500;
                    padding-left: 45px;
                }

                    .properties-list-tab .properties-search-form form .form-group .nice-select .list {
                        background-color: rgb(255, 255, 255);
                        border-radius: 5px;
                        box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 30px;
                        list-style-type: none;
                        border: none;
                        width: 100%;
                        height: 250px;
                        overflow-y: scroll;
                        margin-bottom: 0px;
                        margin-top: 0px;
                        padding-left: 0px;
                        padding-top: 10px;
                        padding-bottom: 10px;
                    }

                        .properties-list-tab .properties-search-form form .form-group .nice-select .list .option {
                            line-height: 38px;
                            min-height: 38px;
                            color: rgb(32, 28, 45);
                            position: relative;
                            transition: all 0.6s ease 0s;
                            padding-left: 32px;
                            padding-right: 25px;
                            font-size: 15px;
                            font-weight: 400;
                        }

                            .properties-list-tab .properties-search-form form .form-group .nice-select .list .option:hover {
                                color: rgb(255, 255, 255);
                                background-color: rgb(0 147 170) !important;
                            }

                                .properties-list-tab .properties-search-form form .form-group .nice-select .list .option:hover::before {
                                    color: rgb(255, 255, 255);
                                }

                            .properties-list-tab .properties-search-form form .form-group .nice-select .list .option.focus, .properties-list-tab .properties-search-form form .form-group .nice-select .list .option.selected.focus {
                                color: rgb(32, 28, 45);
                                background-color: transparent !important;
                            }

                            .properties-list-tab .properties-search-form form .form-group .nice-select .list .option::before {
                                content: "\e9a4";
                                position: absolute;
                                left: 10px;
                                top: 0px;
                                opacity: 0;
                                visibility: hidden;
                                transition: all 0.6s ease 0s;
                                color: rgb(0 147 170);
                                font-family: boxicons;
                                font-size: 18px;
                            }

                            .properties-list-tab .properties-search-form form .form-group .nice-select .list .option.selected::before {
                                opacity: 1;
                                visibility: visible;
                            }

                            .properties-list-tab .properties-search-form form .form-group .nice-select .list .option.selected:hover {
                                color: rgb(255, 255, 255);
                                background-color: rgb(0 147 170) !important;
                            }

                                .properties-list-tab .properties-search-form form .form-group .nice-select .list .option.selected:hover::before {
                                    color: rgb(255, 255, 255);
                                }

                        .properties-list-tab .properties-search-form form .form-group .nice-select .list::-webkit-scrollbar {
                            width: 7px;
                        }

                        .properties-list-tab .properties-search-form form .form-group .nice-select .list::-webkit-scrollbar-track {
                            background: rgb(241, 241, 241);
                        }

                        .properties-list-tab .properties-search-form form .form-group .nice-select .list::-webkit-scrollbar-thumb {
                            background: rgb(136, 136, 136);
                        }

                            .properties-list-tab .properties-search-form form .form-group .nice-select .list::-webkit-scrollbar-thumb:hover {
                                background: rgb(85, 85, 85);
                            }

                    .properties-list-tab .properties-search-form form .form-group .nice-select::after {
                        border-bottom: 1px solid rgb(98, 96, 108);
                        border-right: 1px solid rgb(98, 96, 108);
                        height: 8px;
                        width: 8px;
                        right: 20px;
                        margin-top: -5px;
                    }

                    .properties-list-tab .properties-search-form form .form-group .nice-select:hover {
                        border-color: rgb(0 147 170);
                        background-color: transparent;
                    }

            .properties-list-tab .properties-search-form form .submit-btn {
                text-align: right;
                position: absolute;
                right: 25px;
                top: 50%;
                transform: translateY(-50%);
            }

                .properties-list-tab .properties-search-form form .submit-btn button {
                    display: inline-block;
                    height: 65px;
                    width: 65px;
                    line-height: 70px;
                    background-color: rgb(0 147 170);
                    border: none;
                    color: rgb(255, 255, 255);
                    font-size: 30px;
                    border-radius: 10px;
                    transition: all 0.6s ease 0s;
                }

                    .properties-list-tab .properties-search-form form .submit-btn button:hover {
                        background-color: rgb(29 164 194);
                        color: rgb(255, 255, 255);
                    }

            .properties-list-tab .properties-search-form form .price-range-content .price-range-filter {
                margin-bottom: 10px;
                margin-top: -10px;
            }

                .properties-list-tab .properties-search-form form .price-range-content .price-range-filter p {
                    font-size: 16px;
                    color: rgb(98, 96, 108);
                    margin-bottom: 0px;
                    position: relative;
                    padding-right: 20px;
                    margin-left: 5px;
                }

                    .properties-list-tab .properties-search-form form .price-range-content .price-range-filter p i {
                        position: absolute;
                        right: 0px;
                        top: 50%;
                        transform: translateY(-50%);
                    }

                .properties-list-tab .properties-search-form form .price-range-content .price-range-filter input {
                    width: 100%;
                    border: 0px;
                    border-radius: 0px;
                    font-size: 16px;
                    font-weight: 400;
                    color: rgb(0 147 170);
                    background-color: transparent;
                }

                    .properties-list-tab .properties-search-form form .price-range-content .price-range-filter input:focus {
                        outline: 0px;
                    }

            .properties-list-tab .properties-search-form form .price-range-content .price-range-bar {
                border: none;
                background: rgb(0 147 170);
                height: 5px;
                width: 100%;
                margin-right: 0px;
                margin-bottom: 0px;
                position: relative;
            }

                .properties-list-tab .properties-search-form form .price-range-content .price-range-bar .ui-slider-range {
                    background: rgb(0 147 170);
                }

                .properties-list-tab .properties-search-form form .price-range-content .price-range-bar .ui-slider-handle {
                    border-radius: 50%;
                    border: 2px solid rgb(0 147 170);
                    height: 15px;
                    width: 15px;
                    top: -5px;
                    cursor: pointer;
                    background: rgb(0 147 170);
                    position: absolute;
                }

                    .properties-list-tab .properties-search-form form .price-range-content .price-range-bar .ui-slider-handle:focus {
                        outline: 0px;
                    }

.case-study-area {
    background-image: url("../images/case-study/bg-1.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

    .case-study-area .section-title h3 {
        color: rgb(255, 255, 255);
    }

    .case-study-area .section-title p {
        color: rgb(255, 255, 255);
    }

.case-study-item .image a img {
    display: inline-block;
    border-radius: 10px;
    border: 5px solid rgb(255, 255, 255);
}

.case-study-item .content {
    background-color: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 5px;
    max-width: 370px;
    margin: -45px auto auto;
    text-align: center;
    position: relative;
    transition: all 0.6s ease 0s;
    box-shadow: rgba(108, 118, 134, 0.1) 0px 0px 1.25rem;
}

    .case-study-item .content h3 {
        font-size: 22px;
        margin-bottom: 0px;
        transition: all 0.6s ease 0s;
    }

        .case-study-item .content h3 a {
            color: rgb(32, 28, 45);
        }

.case-study-item:hover .content {
    background-color: rgb(0 147 170);
}

    .case-study-item:hover .content h3 a {
        color: rgb(255, 255, 255);
    }

.case-study-item.bottom-30 {
    margin-bottom: 30px;
}

.case-study-slides.owl-theme .owl-nav {
    margin-top: 0px;
}

    .case-study-slides.owl-theme .owl-nav [class*="owl-"] {
        position: absolute;
        left: 0px;
        top: 38%;
        transform: translateY(-38%);
        margin: 0px;
        outline: 0px;
        width: 45px;
        height: 45px;
        line-height: 52px;
        transition: all 0.6s ease 0s;
        background-color: rgb(255, 255, 255);
        box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 28px 0px;
        color: rgb(0 147 170);
        border-radius: 50%;
        opacity: 0;
        visibility: hidden;
    }

        .case-study-slides.owl-theme .owl-nav [class*="owl-"]:hover, .case-study-slides.owl-theme .owl-nav [class*="owl-"]:focus {
            background-color: rgb(0 147 170);
            color: rgb(255, 255, 255);
        }

        .case-study-slides.owl-theme .owl-nav [class*="owl-"].owl-next {
            left: auto;
            right: 0px;
        }

        .case-study-slides.owl-theme .owl-nav [class*="owl-"] i {
            font-size: 20px;
            font-weight: bold;
        }

.case-study-slides.owl-theme:hover .owl-nav [class*="owl-"] {
    opacity: 1;
    visibility: visible;
    left: -25px;
    transition: all 0.6s ease 0s;
}

    .case-study-slides.owl-theme:hover .owl-nav [class*="owl-"].owl-next {
        left: auto;
        right: -25px;
    }

.neighborhood-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.single-neighborhood {
    position: relative;
    margin-bottom: 30px;
    transition: all 0.6s ease 0s;
}

    .single-neighborhood::before {
        content: "";
        background: linear-gradient(rgba(0, 0, 0, 0), black);
        width: 100%;
        height: 70%;
        left: 0px;
        bottom: 0px;
        position: absolute;
        transition: all 0.6s ease 0s;
        z-index: 1;
        border-radius: 5px;
        opacity: 0.9;
    }

    .single-neighborhood img {
        border-radius: 5px;
    }

    .single-neighborhood .content {
        position: absolute;
        left: 25px;
        bottom: 25px;
        transition: all 0.6s ease 0s;
        z-index: 1;
        width: 100%;
    }

        .single-neighborhood .content h3 {
            font-size: 22px;
            margin-bottom: 0px;
            transition: all 0.6s ease 0s;
        }

            .single-neighborhood .content h3 a {
                color: rgb(255, 255, 255);
            }

        .single-neighborhood .content span {
            color: rgb(255, 255, 255);
            font-size: 15px;
            position: absolute;
            bottom: 0px;
            transition: all 0.6s ease 0s;
            opacity: 0;
            visibility: hidden;
        }

    .single-neighborhood:hover {
        transform: translateY(-5px);
    }

        .single-neighborhood:hover .content h3 {
            transform: translateY(-35px);
        }

        .single-neighborhood:hover .content span {
            opacity: 1;
            visibility: visible;
        }

.single-neighborhood-box {
    margin-bottom: 30px;
    transition: all 0.6s ease 0s;
    padding: 10px 10px 0px;
    border: 1px solid rgb(225, 225, 225);
    border-radius: 5px;
}

    .single-neighborhood-box img {
        border-radius: 8px;
    }

    .single-neighborhood-box .content {
        padding: 30px;
        margin-left: -10px;
        margin-right: -10px;
    }

        .single-neighborhood-box .content h3 {
            font-size: 22px;
            margin-bottom: 5px;
            transition: all 0.6s ease 0s;
        }

            .single-neighborhood-box .content h3 a {
                color: rgb(32, 28, 45);
            }

        .single-neighborhood-box .content span {
            color: rgb(98, 96, 108);
            font-size: 15px;
        }

    .single-neighborhood-box:hover {
        transform: translateY(-5px);
    }

        .single-neighborhood-box:hover .content h3 a {
            color: rgb(0 147 170);
        }

.view-neighborhood-btn {
    text-align: center;
}

.neighborhood-map-shape {
    position: absolute;
    bottom: 5%;
    left: 25%;
    transform: translateY(-5%) translateX(-25%);
    z-index: -1;
    opacity: 0.45;
}

.category-area {
    background-color: rgb(247, 247, 247);
}

.category-inner-box {
    position: relative;
    z-index: 1;
    margin-top: -50px;
}

.single-category {
    text-align: center;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(108, 118, 134, 0.1) 0px 0px 1.25rem;
    padding: 25px 10px;
    margin-bottom: 30px;
    border-radius: 5px;
    transition: all 0.6s ease 0s;
}

    .single-category img {
        margin-bottom: 20px;
    }

    .single-category h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 0px;
    }

    .single-category:hover {
        transform: translateY(-5px);
    }

.testimonial-slides {
    background-image: url("../images/testimonial/bg-1.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 50px;
    border-radius: 10px;
}

    .testimonial-slides.owl-theme .owl-nav {
        margin-top: 0px;
    }

        .testimonial-slides.owl-theme .owl-nav [class*="owl-"] {
            position: absolute;
            left: 0px;
            top: 50%;
            transform: translateY(-50%);
            margin: 0px;
            outline: 0px;
            width: 45px;
            height: 45px;
            line-height: 52px;
            transition: all 0.6s ease 0s;
            background-color: rgb(255, 255, 255);
            box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 28px 0px;
            color: rgb(0 147 170);
            border-radius: 50%;
            opacity: 0;
            visibility: hidden;
        }

            .testimonial-slides.owl-theme .owl-nav [class*="owl-"]:hover, .testimonial-slides.owl-theme .owl-nav [class*="owl-"]:focus {
                background-color: rgb(0 147 170);
                color: rgb(255, 255, 255);
            }

            .testimonial-slides.owl-theme .owl-nav [class*="owl-"].owl-next {
                left: auto;
                right: 0px;
            }

            .testimonial-slides.owl-theme .owl-nav [class*="owl-"] i {
                font-size: 20px;
                font-weight: bold;
            }

    .testimonial-slides.owl-theme:hover .owl-nav [class*="owl-"] {
        opacity: 1;
        visibility: visible;
        left: -25px;
        transition: all 0.6s ease 0s;
    }

        .testimonial-slides.owl-theme:hover .owl-nav [class*="owl-"].owl-next {
            left: auto;
            right: -25px;
        }

.testimonial-item .icon {
    margin-bottom: 15px;
}

    .testimonial-item .icon i {
        color: rgb(255, 255, 255);
        font-size: 45px;
    }

.testimonial-item p {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 0px;
    color: rgb(255, 255, 255);
}

.testimonial-item .info {
    position: relative;
    margin-top: 30px;
    padding-left: 80px;
    animation-delay: 1.1s;
}

    .testimonial-item .info img {
        display: inline-block;
        height: 65px;
        width: 65px;
        border-radius: 50%;
        position: absolute;
        left: 0px;
        top: 50%;
        transform: translateY(-50%);
    }

    .testimonial-item .info h3 {
        font-size: 22px;
        margin-bottom: 0px;
        color: rgb(255, 255, 255);
        font-weight: 500;
    }

    .testimonial-item .info span {
        color: rgb(255, 255, 255);
        display: inline-block;
        font-size: 14px;
        font-weight: 500;
        margin-top: 10px;
    }

.testimonial-image {
    animation-delay: 1.8s;
}

    .testimonial-image img {
        border-radius: 20px;
    }

.blog-area {
    background-color: rgb(247, 247, 247);
}

.blog-item {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(225, 225, 225);
    border-radius: 10px;
    padding: 10px 10px 0px;
}

    .blog-item.bottom-30 {
        margin-bottom: 30px;
    }

    .blog-item a {
        display: block;
    }

        .blog-item a img {
            border-radius: 8px;
        }

    .blog-item .blog-content {
        padding: 15px 10px;
        margin-left: -10px;
        margin-right: -10px;
    }

        .blog-item .blog-content span a {
            display: inline-block;
            background-color: rgb(29 164 194);
            color: rgb(255, 255, 255);
            font-size: 14px;
            font-weight: 400;
            padding: 5px 10px;
            border-radius: 5px;
            transition: all 0.6s ease 0s;
        }

        .blog-item .blog-content h3 {
            font-size: 20px;
            margin-bottom: 0px;
            line-height: 1.4;
            height: 45px;
        }

            .blog-item .blog-content h3 a {
                color: rgb(32, 28, 45);
            }

    .blog-item .blog-bottom-content {
        padding: 20px;
        border-top: 1px solid rgb(225, 225, 225);
        margin-left: -10px;
        margin-right: -10px;
    }

        .blog-item .blog-bottom-content .blog-author img {
            width: 45px;
            height: 45px;
            margin-right: 10px;
        }

        .blog-item .blog-bottom-content .blog-author span {
            color: rgb(98, 96, 108);
            font-size: 16px;
        }

        .blog-item .blog-bottom-content p {
            color: rgb(98, 96, 108);
            font-size: 16px;
        }

            .blog-item .blog-bottom-content p i {
                color: rgb(0 147 170);
                font-size: 16px;
                margin-right: 5px;
            }

    .blog-item:hover .blog-content span a {
        background-color: rgb(0 147 170);
    }

.blog-slides.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    background-color: rgb(250, 183, 168);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 15px 35px;
    transition: all 0.6s ease 0s;
    border-radius: 50%;
}

.blog-slides.owl-theme .owl-dots .owl-dot:hover span, .blog-slides.owl-theme .owl-dots .owl-dot.active span {
    background-color: rgb(0 147 170);
    transform: scale(1.2);
}

.blog-slides.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 30px;
}

.single-blog-item {
    position: relative;
    margin-bottom: 30px;
}

    .single-blog-item::before {
        content: "";
        background: linear-gradient(rgba(0, 0, 0, 0), black);
        width: 100%;
        height: 90%;
        left: 0px;
        bottom: 0px;
        position: absolute;
        transition: all 0.6s ease 0s;
        z-index: 1;
        border-radius: 5px;
        opacity: 0.9;
    }

    .single-blog-item a {
        display: block;
    }

        .single-blog-item a img {
            border-radius: 8px;
        }

    .single-blog-item .blog-content {
        padding: 25px 20px 20px;
        position: absolute;
        bottom: 0px;
        z-index: 1;
    }

        .single-blog-item .blog-content .tag a {
            display: inline-block;
            background-color: rgb(29 164 194);
            color: rgb(255, 255, 255);
            font-size: 14px;
            font-weight: 400;
            padding: 5px 12px;
            border-radius: 5px;
            transition: all 0.6s ease 0s;
        }

        .single-blog-item .blog-content h3 {
            font-size: 22px;
            margin-top: 20px;
            margin-bottom: 0px;
            line-height: 1.5;
        }

            .single-blog-item .blog-content h3 a {
                color: rgb(255, 255, 255);
            }

        .single-blog-item .blog-content .bottom-content {
            margin-top: 25px;
        }

            .single-blog-item .blog-content .bottom-content .blog-author img {
                width: 45px;
                height: 45px;
                margin-right: 10px;
            }

            .single-blog-item .blog-content .bottom-content .blog-author span {
                font-size: 16px;
            }

                .single-blog-item .blog-content .bottom-content .blog-author span a {
                    color: rgb(255, 255, 255);
                }

            .single-blog-item .blog-content .bottom-content p {
                color: rgb(255, 255, 255);
                font-size: 16px;
            }

                .single-blog-item .blog-content .bottom-content p i {
                    color: rgb(255, 255, 255);
                    font-size: 16px;
                    margin-right: 5px;
                }

    .single-blog-item:hover .blog-content .tag {
        background-color: rgb(0 147 170);
    }

.blog-side-item {
    background-color: rgb(255, 255, 255);
    padding: 10px;
    border: 1px solid rgb(225, 225, 225);
    border-radius: 10px;
    margin-bottom: 30px;
}

    .blog-side-item .left {
        position: relative;
    }

        .blog-side-item .left .tag a {
            display: inline-block;
            background-color: rgb(29 164 194);
            color: rgb(255, 255, 255);
            font-size: 14px;
            font-weight: 400;
            padding: 5px 12px;
            border-radius: 5px;
            transition: all 0.6s ease 0s;
            position: absolute;
            top: 10px;
            left: 10px;
        }

        .blog-side-item .left a {
            display: block;
        }

            .blog-side-item .left a img {
                border-radius: 5px;
            }

    .blog-side-item .blog-content {
        padding-right: 15px;
    }

        .blog-side-item .blog-content h3 {
            font-size: 22px;
            margin-bottom: 0px;
            line-height: 1.5;
        }

            .blog-side-item .blog-content h3 a {
                color: rgb(32, 28, 45);
            }

        .blog-side-item .blog-content .bottom-content {
            margin-top: 15px;
        }

            .blog-side-item .blog-content .bottom-content .blog-author img {
                width: 45px;
                height: 45px;
                margin-right: 10px;
            }

            .blog-side-item .blog-content .bottom-content .blog-author span {
                font-size: 16px;
            }

                .blog-side-item .blog-content .bottom-content .blog-author span a {
                    color: rgb(98, 96, 108);
                }

            .blog-side-item .blog-content .bottom-content p {
                color: rgb(98, 96, 108);
                font-size: 16px;
            }

                .blog-side-item .blog-content .bottom-content p i {
                    color: rgb(0 147 170);
                    font-size: 16px;
                    margin-right: 5px;
                }

    .blog-side-item:hover .left .tag {
        background-color: rgb(0 147 170);
    }

.blog-slides-two.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    background-color: rgb(250, 183, 168);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 15px 35px;
    transition: all 0.6s ease 0s;
    border-radius: 50%;
}

.blog-slides-two.owl-theme .owl-dots .owl-dot:hover span, .blog-slides-two.owl-theme .owl-dots .owl-dot.active span {
    background-color: rgb(0 147 170);
    transform: scale(1.2);
}

.blog-slides-two.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0px;
}

.fun-facts-area {
    background-image: url("../images/fun-facts-bg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.single-fun-fact {
    margin-bottom: 30px;
    text-align: center;
}

    .single-fun-fact h3 {
        margin-bottom: 10px;
        line-height: 1;
        font-size: 35px;
        transition: all 0.6s ease 0s;
    }

        .single-fun-fact h3 .sign-icon {
            display: inline-block;
            font-size: 28px;
            margin-left: -5px;
            position: relative;
            top: -1px;
            font-weight: 600;
        }

    .single-fun-fact p {
        font-size: 15px;
        font-weight: 500;
    }

.fun-text {
    text-align: center;
}

    .fun-text p {
        font-size: 16px;
    }

        .fun-text p a {
            color: rgb(0 147 170);
        }

.facilities-area {
    background: rgb(247, 247, 247);
}

    .facilities-area.bg-f7fefe {
        background-color: rgb(247, 254, 254);
    }

.single-facilities {
    background: rgb(255, 255, 255);
    box-shadow: rgba(108, 118, 134, 0.1) 0px 0px 1.25rem;
    border-radius: 8px;
    position: relative;
    padding: 50px 30px 50px 115px;
    transition: all 0.6s ease 0s;
    margin-bottom: 30px;
}

    .single-facilities .image {
        position: absolute;
        left: 30px;
        top: 50%;
        transform: translateY(-50%);
        display: inline-block;
        height: 70px;
        width: 70px;
        line-height: 70px;
        background-color: rgb(247, 247, 247);
        text-align: center;
        border-radius: 50px;
        transition: all 0.6s ease 0s;
    }

        .single-facilities .image img {
            max-width: 35px;
        }

    .single-facilities h3 {
        font-size: 22px;
        margin-bottom: 0px;
    }

    .single-facilities:hover {
        transform: translateY(-5px);
    }

.agents-area {
    background-color: rgb(247, 247, 247);
}

.agents-item {
    padding: 5px 5px 0px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(225, 225, 225);
    border-radius: 5px;
}

    .agents-item.bottom-30 {
        margin-bottom: 30px;
    }

    .agents-item .agents-image {
        position: relative;
    }

        .agents-item .agents-image a {
            display: block;
        }

            .agents-item .agents-image a img {
                border-radius: 8px;
            }

        .agents-item .agents-image .social {
            padding-left: 0px;
            list-style-type: none;
            position: absolute;
            left: 25px;
            bottom: 25px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 0px;
        }

            .agents-item .agents-image .social li {
                display: inline-block;
                transform: translateY(30px);
                transition: all 0.3s ease-in-out 0s;
                opacity: 0;
                visibility: hidden;
                margin-left: 2px;
                margin-right: 2px;
            }

                .agents-item .agents-image .social li a i {
                    display: inline-block;
                    width: 45px;
                    height: 45px;
                    line-height: 45px;
                    background-color: rgb(32, 28, 45);
                    text-align: center;
                    position: relative;
                    font-size: 20px;
                    color: rgb(255, 255, 255);
                    border-radius: 50px;
                    transition: all 0.6s ease 0s;
                }

                    .agents-item .agents-image .social li a i:hover {
                        color: rgb(0 147 170);
                        background-color: rgb(255, 255, 255);
                        transform: translateY(-5px);
                    }

                .agents-item .agents-image .social li:nth-child(1) {
                    transition-delay: 0.1s;
                }

                .agents-item .agents-image .social li:nth-child(2) {
                    transition-delay: 0.2s;
                }

                .agents-item .agents-image .social li:nth-child(3) {
                    transition-delay: 0.3s;
                }

                .agents-item .agents-image .social li:nth-child(4) {
                    transition-delay: 0.4s;
                }

    .agents-item .agents-content {
        padding: 20px 80px 0px 20px;
        margin-left: -5px;
        margin-right: -5px;
        position: relative;
    }

        .agents-item .agents-content span {
            font-size: 15px;
            color: rgb(0 147 170);
            font-weight: 500;
            display: inline-block;
            margin-bottom: 15px;
        }

        .agents-item .agents-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }

            .agents-item .agents-content h3 a {
                color: rgb(32, 28, 45);
            }

                .agents-item .agents-content h3 a:hover {
                    color: rgb(0 147 170);
                }

        .agents-item .agents-content p {
            font-size: 15px;
            font-weight: 400;
            margin-bottom: 0px;
        }

        .agents-item .agents-content .rating-list {
            padding: 0px;
            margin-top: 15px;
            margin-bottom: 0px;
        }

            .agents-item .agents-content .rating-list li {
                list-style-type: none;
                display: inline-block;
                color: rgb(132, 132, 132);
                font-weight: 500;
            }

                .agents-item .agents-content .rating-list li i {
                    font-size: 16px;
                    color: rgb(248, 180, 42);
                }

                .agents-item .agents-content .rating-list li.color-gray i {
                    color: rgb(196, 196, 196);
                }

                .agents-item .agents-content .rating-list li:last-child {
                    margin-left: 5px;
                }

        .agents-item .agents-content .message-icon {
            position: absolute;
            right: 20px;
            top: 20px;
        }

            .agents-item .agents-content .message-icon a i {
                display: inline-block;
                height: 45px;
                width: 45px;
                line-height: 45px;
                background-color: rgb(255, 234, 229);
                color: rgb(0 147 170);
                font-size: 20px;
                text-align: center;
                border-radius: 50px;
                transition: all 0.6s ease 0s;
            }

                .agents-item .agents-content .message-icon a i:hover {
                    background-color: rgb(0 147 170);
                    color: rgb(255, 255, 255);
                }

    .agents-item .agents-bottom-content {
        border-top: 1px solid rgb(225, 225, 225);
        margin-top: 20px;
        padding: 30px 20px;
        position: relative;
        margin-left: -5px;
        margin-right: -5px;
    }

        .agents-item .agents-bottom-content p {
            margin-bottom: 0px;
            position: relative;
            padding-left: 22px;
        }

            .agents-item .agents-bottom-content p span {
                font-weight: 500;
            }

            .agents-item .agents-bottom-content p i {
                position: absolute;
                left: 0px;
                top: 50%;
                transform: translateY(-50%);
            }

        .agents-item .agents-bottom-content .agents-btn {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }

            .agents-item .agents-bottom-content .agents-btn .default-btn {
                background-color: rgb(32, 28, 45);
            }

    .agents-item:hover .agents-image .social li {
        transform: translateY(0px);
        opacity: 1;
        visibility: visible;
    }

.view-agents-btn {
    text-align: center;
    margin-top: 30px;
}

.agents-slides.owl-theme .owl-nav {
    margin-top: 0px;
}

    .agents-slides.owl-theme .owl-nav [class*="owl-"] {
        position: absolute;
        left: 0px;
        top: 38%;
        transform: translateY(-38%);
        margin: 0px;
        outline: 0px;
        width: 45px;
        height: 45px;
        line-height: 52px;
        transition: all 0.6s ease 0s;
        background-color: rgb(255, 255, 255);
        box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 28px 0px;
        color: rgb(0 147 170);
        border-radius: 50%;
        opacity: 0;
        visibility: hidden;
    }

        .agents-slides.owl-theme .owl-nav [class*="owl-"]:hover, .agents-slides.owl-theme .owl-nav [class*="owl-"]:focus {
            background-color: rgb(0 147 170);
            color: rgb(255, 255, 255);
        }

        .agents-slides.owl-theme .owl-nav [class*="owl-"].owl-next {
            left: auto;
            right: 0px;
        }

        .agents-slides.owl-theme .owl-nav [class*="owl-"] i {
            font-size: 20px;
            font-weight: bold;
        }

.agents-slides.owl-theme:hover .owl-nav [class*="owl-"] {
    opacity: 1;
    visibility: visible;
    left: -25px;
    transition: all 0.6s ease 0s;
}

    .agents-slides.owl-theme:hover .owl-nav [class*="owl-"].owl-next {
        left: auto;
        right: -25px;
    }

.customers-area {
    background-image: url("../images/customers-bg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.customers-item {
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(108, 118, 134, 0.1) 0px 0px 1.25rem;
    padding: 35px;
    margin: 5px;
    border-radius: 5px;
}

    .customers-item .customers-info {
        margin-bottom: 15px;
    }

        .customers-item .customers-info .image {
            position: relative;
        }

            .customers-item .customers-info .image img {
                display: inline-block;
                height: 80px;
                width: 80px;
                border-radius: 50%;
                margin-bottom: 20px;
            }

        .customers-item .customers-info h4 {
            font-size: 20px;
            margin-bottom: 8px;
        }

        .customers-item .customers-info span {
            font-size: 15px;
        }

    .customers-item .rating-list {
        padding: 0px;
        margin-bottom: 0px;
    }

        .customers-item .rating-list li {
            list-style-type: none;
            display: inline-block;
            color: rgb(132, 132, 132);
            font-weight: 500;
        }

            .customers-item .rating-list li i {
                font-size: 16px;
                color: rgb(248, 180, 42);
            }

            .customers-item .rating-list li.color-gray i {
                color: rgb(196, 196, 196);
            }

            .customers-item .rating-list li:last-child {
                margin-left: 5px;
            }

.customers-slides.owl-theme .owl-nav {
    margin-top: 0px;
}

    .customers-slides.owl-theme .owl-nav [class*="owl-"] {
        position: absolute;
        left: 0px;
        top: 45%;
        transform: translateY(-45%);
        margin: 0px;
        outline: 0px;
        width: 45px;
        height: 45px;
        line-height: 52px;
        transition: all 0.6s ease 0s;
        background-color: rgb(255, 255, 255);
        box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 28px 0px;
        color: rgb(0 147 170);
        border-radius: 50%;
        opacity: 0;
        visibility: hidden;
    }

        .customers-slides.owl-theme .owl-nav [class*="owl-"]:hover, .customers-slides.owl-theme .owl-nav [class*="owl-"]:focus {
            background-color: rgb(0 147 170);
            color: rgb(255, 255, 255);
        }

        .customers-slides.owl-theme .owl-nav [class*="owl-"].owl-next {
            left: auto;
            right: 0px;
        }

        .customers-slides.owl-theme .owl-nav [class*="owl-"] i {
            font-size: 20px;
            font-weight: bold;
        }

.customers-slides.owl-theme:hover .owl-nav [class*="owl-"] {
    opacity: 1;
    visibility: visible;
    left: -25px;
    transition: all 0.6s ease 0s;
}

    .customers-slides.owl-theme:hover .owl-nav [class*="owl-"].owl-next {
        left: auto;
        right: -25px;
    }

.page-banner-area {
    background-color: rgb(247, 247, 247);
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.page-banner-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.page-banner-content ul {
    padding-left: 0px;
    margin-bottom: 0px;
}

    .page-banner-content ul li {
        display: inline-block;
        list-style-type: none;
        font-size: 14px;
        font-weight: 500;
        color: rgb(32, 28, 45);
        position: relative;
        margin-left: 25px;
    }

        .page-banner-content ul li::before {
            content: "";
            position: absolute;
            left: -18px;
            top: 8px;
            height: 5px;
            width: 5px;
            background: rgb(32, 28, 45);
            border-radius: 50%;
        }

        .page-banner-content ul li:first-child {
            margin-left: 0px;
        }

            .page-banner-content ul li:first-child::before {
                display: none;
            }

        .page-banner-content ul li a {
            display: block;
            color: rgb(32, 28, 45);
        }

            .page-banner-content ul li a:hover {
                color: rgb(0 147 170);
            }

.page-banner-image {
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.about-image .row .col-lg-6:nth-child(2) .image {
    margin-bottom: 25px;
}

.about-image .image img {
    border-radius: 10px;
}

.about-content {
    padding-left: 30px;
}

    .about-content h3 {
        font-size: 35px;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .about-content p {
        margin-bottom: 0px;
    }

    .about-content .about-quote {
        padding: 50px;
        border-left: 2px solid rgb(0 147 170);
        border-radius: 15px;
        background-color: rgb(255, 255, 255);
        box-shadow: rgba(108, 118, 134, 0.1) 0px 0px 1.25rem;
        margin-top: 30px;
    }

        .about-content .about-quote p {
            margin-bottom: 25px;
            font-style: italic;
        }

        .about-content .about-quote span {
            color: rgb(98, 96, 108);
            font-style: italic;
            font-weight: 500;
        }

            .about-content .about-quote span b {
                font-weight: 500;
                color: rgb(0 147 170);
            }

.pricing-list-tab .tabs {
    text-align: center;
    padding-left: 0px;
    list-style-type: none;
    margin-bottom: 40px;
}

    .pricing-list-tab .tabs li {
        display: inline-block;
    }

        .pricing-list-tab .tabs li a {
            display: block;
            background-color: rgb(242, 242, 242);
            color: rgb(32, 28, 45);
            padding: 10px 30px 10px 35px;
            position: relative;
            border-radius: 5px;
            margin-left: -5px;
            margin-right: -5px;
            font-size: 16px;
            font-weight: 400;
        }

        .pricing-list-tab .tabs li.current a {
            color: rgb(255, 255, 255);
            background-color: rgb(29 164 194);
        }

        .pricing-list-tab .tabs li:nth-child(1) a {
            border-radius: 30px 0px 0px 30px;
        }

        .pricing-list-tab .tabs li:nth-child(2) a {
            border-radius: 0px 30px 30px 0px;
        }

.single-pricing-table {
    margin-bottom: 30px;
    border: 1px solid rgb(225, 225, 225);
    padding: 45px;
    transition: all 0.6s ease 0s;
    border-radius: 10px;
}

    .single-pricing-table .pricing-header h3 {
        font-size: 25px;
        margin-bottom: 0px;
    }

    .single-pricing-table .price {
        font-size: 50px;
        color: rgb(0 147 170);
        margin-top: 25px;
        margin-bottom: 30px;
        line-height: 1;
        font-weight: 600;
    }

    .single-pricing-table .pricing-features {
        padding-left: 0px;
        margin-bottom: 0px;
    }

        .single-pricing-table .pricing-features li {
            list-style-type: none;
            margin-bottom: 15px;
            font-size: 16px;
            font-weight: 500;
            position: relative;
            padding-left: 22px;
        }

            .single-pricing-table .pricing-features li:last-child {
                margin-bottom: 0px;
            }

            .single-pricing-table .pricing-features li i {
                color: rgb(0 147 170);
                position: absolute;
                left: 0px;
                top: 50%;
                transform: translateY(-50%);
            }

            .single-pricing-table .pricing-features li.color-gray {
                color: rgb(180, 180, 180);
            }

    .single-pricing-table .pricing-btn {
        margin-top: 30px;
        text-align: center;
    }

        .single-pricing-table .pricing-btn .default-btn {
            padding: 18px 35px;
            border-radius: 5px;
            width: 100%;
        }

    .single-pricing-table:hover {
        border: 1px solid rgb(0 147 170);
    }

.single-gallery-item {
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
    cursor: zoom-in;
}

    .single-gallery-item a {
        display: block;
        border-radius: 5px;
    }

        .single-gallery-item a img {
            transition: all 0.6s ease 0s;
        }

    .single-gallery-item:hover a img {
        transform: scale(1.1);
    }

.submit-property-form {
    max-width: 1168px;
    margin: auto;
    background-color: rgb(255, 255, 255);
    padding: 30px;
    border-radius: 10px;
    box-shadow: rgba(108, 118, 134, 0.1) 0px 0px 1.25rem;
}

    .submit-property-form form .form-group {
        margin-bottom: 20px;
    }

        .submit-property-form form .form-group label {
            display: block;
            margin-bottom: 5px;
            color: rgb(32, 28, 45);
            font-size: 16px;
            font-weight: 500;
        }

        .submit-property-form form .form-group .form-control {
            height: 60px;
            padding: 15px;
            line-height: initial;
            color: rgb(32, 28, 45);
            background-color: rgb(247, 247, 247);
            border: 1px solid rgb(247, 247, 247);
            border-radius: 5px;
            box-shadow: unset;
            transition: all 0.6s ease 0s;
        }

            .submit-property-form form .form-group .form-control:focus {
                border: 1px solid rgb(0 147 170);
                background-color: transparent;
            }

        .submit-property-form form .form-group textarea.form-control {
            height: 120px !important;
        }

        .submit-property-form form .form-group .nice-select {
            background-color: rgb(247, 247, 247);
            border: 1px solid rgb(247, 247, 247);
            height: 60px;
            line-height: 58px;
            color: rgb(98, 96, 108);
            padding: 0px 20px;
            font-size: 15px;
            font-weight: 400;
            border-radius: 5px;
        }

            .submit-property-form form .form-group .nice-select::after {
                border-color: rgb(0 147 170);
                height: 8px;
                width: 8px;
                right: 20px;
            }

            .submit-property-form form .form-group .nice-select .list {
                background-color: rgb(255, 255, 255);
                box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 28px 0px;
                border-radius: 0px;
                width: 100%;
                height: 200px;
                overflow-y: scroll;
                margin-top: 0px;
                margin-bottom: 0px;
            }

                .submit-property-form form .form-group .nice-select .list .option {
                    line-height: 40px;
                    min-height: 40px;
                    color: rgb(98, 96, 108);
                    padding-left: 15px;
                    padding-top: 5px;
                    padding-right: 15px;
                }

                    .submit-property-form form .form-group .nice-select .list .option.selected {
                        color: rgb(255, 255, 255);
                        font-weight: normal;
                        background-color: rgb(0 147 170) !important;
                    }

                .submit-property-form form .form-group .nice-select .list::-webkit-scrollbar {
                    width: 5px;
                }

                .submit-property-form form .form-group .nice-select .list::-webkit-scrollbar-track {
                    background: rgb(241, 241, 241);
                }

                .submit-property-form form .form-group .nice-select .list::-webkit-scrollbar-thumb {
                    background: rgb(136, 136, 136);
                }

                    .submit-property-form form .form-group .nice-select .list::-webkit-scrollbar-thumb:hover {
                        background: rgb(85, 85, 85);
                    }

        .submit-property-form form .form-group .form-control-file {
            height: 150px;
            padding: 15px;
            line-height: initial;
            color: rgb(32, 28, 45);
            background-color: rgb(247, 247, 247);
            border: 1px solid rgb(247, 247, 247);
            border-radius: 5px;
            box-shadow: unset;
            transition: all 0.6s ease 0s;
            font-size: 15px;
            font-weight: 400;
            width: 100%;
            cursor: pointer;
            outline: 0px;
        }

            .submit-property-form form .form-group .form-control-file:focus {
                border: 1px solid rgb(0 147 170);
                background-color: transparent;
            }

    .submit-property-form form h4 {
        font-size: 22px;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .submit-property-form form .map {
        margin-bottom: 20px;
    }

        .submit-property-form form .map iframe {
            border: none;
            width: 100%;
            height: 250px;
        }

    .submit-property-form form .default-btn {
        padding: 15px 50px;
        margin-bottom: 0px;
    }

.compare-table table {
    margin-bottom: 0px;
}

    .compare-table table tr td {
        color: rgb(98, 96, 108);
        vertical-align: middle;
        padding: 20px;
        font-size: 15px;
    }

        .compare-table table tr td:first-child {
            color: rgb(32, 28, 45);
            font-weight: 500;
            font-size: 16px;
            width: 220px;
        }

        .compare-table table tr td .remove-btn {
            margin-bottom: 15px;
        }

            .compare-table table tr td .remove-btn a {
                color: red;
                display: inline-block;
            }

    .compare-table table tr:first-child {
        background-color: transparent !important;
    }

        .compare-table table tr:first-child td {
            border-bottom: 1px solid rgb(238, 238, 238);
        }

    .compare-table table .featured-item .featured-top-content {
        padding: 20px;
    }

        .compare-table table .featured-item .featured-top-content span {
            font-size: 14px;
            margin-bottom: 12px;
        }

        .compare-table table .featured-item .featured-top-content h3 {
            margin-bottom: 0px;
            font-size: 20px;
        }

    .compare-table table .featured-item .featured-image .price {
        left: 20px;
        bottom: 10px;
    }

.login-form {
    padding: 35px 30px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(51, 51, 51, 0.1) 0px 0px 10px;
    max-width: 650px;
    margin: auto;
}

    .login-form h2 {
        margin-bottom: 30px;
        font-size: 25px;
    }

    .login-form form .form-group {
        margin-bottom: 25px;
    }

        .login-form form .form-group .form-control {
            height: 60px;
            padding: 20px;
            line-height: initial;
            color: rgb(32, 28, 45);
            background-color: transparent;
            border: 1px solid rgb(238, 238, 238);
            border-radius: 5px;
            box-shadow: unset;
            transition: all 0.6s ease 0s;
            font-size: 15px;
            font-weight: 500;
        }

            .login-form form .form-group .form-control:focus {
                border: 1px solid rgb(0 147 170);
                background-color: transparent;
            }

                .login-form form .form-group .form-control:focus::-webkit-input-placeholder {
                    color: transparent;
                    transition: all 0.6s ease 0s;
                }

                .login-form form .form-group .form-control:focus::placeholder {
                    color: transparent;
                    transition: all 0.6s ease 0s;
                }

    .login-form form .remember-me-wrap {
        margin-bottom: 0px;
    }

[type="checkbox"]:checked, [type="checkbox"]:not(:checked) {
    display: none;
}

    [type="checkbox"]:checked + label, [type="checkbox"]:not(:checked) + label {
        position: relative;
        padding-right: 28px;
        cursor: pointer;
        line-height: 20px;
        display: inline-block;
        margin-bottom: 0px;
        color: rgb(98, 96, 108);
        font-weight: 500;
        font-size: 15px;
    }

        [type="checkbox"]:checked + label::before, [type="checkbox"]:not(:checked) + label::before {
            content: "";
            position: absolute;
            right: 0px;
            top: 0px;
            width: 19px;
            height: 19px;
            transition: all 0.2s ease 0s;
            border: 1px solid rgb(245, 245, 245);
            border-radius: 3px;
            background: rgb(245, 245, 245);
        }

        [type="checkbox"]:checked + label::after, [type="checkbox"]:not(:checked) + label::after {
            content: "";
            width: 8px;
            height: 8px;
            background: rgb(0 147 170);
            position: absolute;
            top: 5.5px;
            right: 6px;
            transition: all 0.2s ease 0s;
        }

        [type="checkbox"]:not(:checked) + label::after {
            opacity: 0;
            transform: scale(0);
        }

        [type="checkbox"]:checked + label::after {
            opacity: 1;
            transform: scale(1);
        }

[type="checkbox"]:hover + label::before {
    border-color: rgb(0 147 170);
}

[type="checkbox"]:checked + label::before {
    border-color: rgb(0 147 170);
}

.login-form form .lost-your-password-wrap {
    text-align: right;
}

    .login-form form .lost-your-password-wrap a {
        display: inline-block;
        position: relative;
        font-weight: 500;
        line-height: 1.3;
        font-size: 15px;
        color: rgb(98, 96, 108);
        cursor: pointer;
    }

        .login-form form .lost-your-password-wrap a::before {
            width: 100%;
            height: 1px;
            position: absolute;
            left: 0px;
            bottom: 0px;
            content: "";
            transition: all 0.6s ease 0s;
            background-color: rgb(238, 238, 238);
        }

        .login-form form .lost-your-password-wrap a::after {
            width: 0px;
            height: 1px;
            position: absolute;
            left: 0px;
            transition: all 0.6s ease 0s;
            bottom: 0px;
            content: "";
            background-color: rgb(0 147 170);
        }

        .login-form form .lost-your-password-wrap a:hover::before {
            width: 0px;
        }

        .login-form form .lost-your-password-wrap a:hover::after {
            width: 100%;
        }

.login-form form .default-btn {
    margin-top: 22px;
    width: 100%;
    border: none;
    padding: 15px !important;
}

.register-form {
    padding: 35px 30px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(51, 51, 51, 0.1) 0px 0px 10px;
    max-width: 650px;
    margin: auto;
}

    .register-form h2 {
        margin-bottom: 30px;
        font-size: 25px;
    }

    .register-form form .form-group {
        margin-bottom: 25px;
    }

        .register-form form .form-group .form-control {
            height: 60px;
            padding: 20px;
            line-height: initial;
            color: rgb(32, 28, 45);
            background-color: transparent;
            border: 1px solid rgb(238, 238, 238);
            border-radius: 5px;
            box-shadow: unset;
            transition: all 0.6s ease 0s;
            font-size: 15px;
            font-weight: 500;
        }

            .register-form form .form-group .form-control:focus {
                border: 1px solid rgb(0 147 170);
                background-color: transparent;
            }

                .register-form form .form-group .form-control:focus::-webkit-input-placeholder {
                    color: transparent;
                    transition: all 0.6s ease 0s;
                }

                .register-form form .form-group .form-control:focus::placeholder {
                    color: transparent;
                    transition: all 0.6s ease 0s;
                }

    .register-form form .description {
        font-style: italic;
        font-size: 13.5px;
        margin-top: -10px;
        margin-bottom: 0px;
    }

    .register-form form .default-btn {
        margin-top: 20px;
        width: 100%;
        border: none;
        padding: 15px !important;
    }

.error-content {
    text-align: center;
    margin: 0px auto;
    max-width: 750px;
}

    .error-content h3 {
        font-size: 32px;
        margin-top: 45px;
        margin-bottom: 20px;
    }

    .error-content p {
        max-width: 520px;
        margin: 0px auto 25px;
        font-size: 15px;
    }

.coming-soon-area {
    height: 100vh;
    background-image: url("../images/coming-soon-bg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.coming-soon-content {
    max-width: 750px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 45px 30px;
    box-shadow: rgba(0, 13, 81, 0.1) 0px 15px 50px;
    margin: auto;
}

    .coming-soon-content h1 {
        font-size: 45px;
        margin-bottom: 30px;
    }

        .coming-soon-content h1 a {
            color: rgb(32, 28, 45);
        }

            .coming-soon-content h1 a:hover {
                color: rgb(0 147 170);
            }

    .coming-soon-content h2 {
        font-size: 30px;
        margin-bottom: 0px;
    }

    .coming-soon-content #timer {
        margin-top: 45px;
    }

        .coming-soon-content #timer div {
            background-color: rgb(0 147 170);
            color: rgb(255, 255, 255);
            width: 130px;
            height: 130px;
            border-radius: 50%;
            font-size: 40px;
            font-weight: bold;
            margin-left: 5px;
            margin-right: 5px;
        }

            .coming-soon-content #timer div span {
                display: block;
                margin-top: -2px;
                font-size: 15px;
                font-weight: 500;
            }

    .coming-soon-content .newsletter-form {
        margin-top: 45px;
        background-color: rgb(255, 255, 255);
        box-shadow: rgba(0, 13, 81, 0.1) 0px 15px 50px;
        padding: 30px;
    }

        .coming-soon-content .newsletter-form .form-group {
            margin-bottom: 15px;
            width: 100%;
        }

            .coming-soon-content .newsletter-form .form-group .input-newsletter {
                border: 1px solid rgb(238, 238, 238);
                background-color: rgb(238, 238, 238);
                padding: 20px;
                color: rgb(32, 28, 45);
                height: 60px;
                display: block;
                width: 100%;
                transition: all 0.6s ease 0s;
                font-size: 15px;
                font-weight: 500;
                border-radius: 15px;
            }

                .coming-soon-content .newsletter-form .form-group .input-newsletter::-webkit-input-placeholder {
                    color: rgb(98, 96, 108);
                    transition: all 0.6s ease 0s;
                }

                .coming-soon-content .newsletter-form .form-group .input-newsletter::placeholder {
                    color: rgb(98, 96, 108);
                    transition: all 0.6s ease 0s;
                }

                .coming-soon-content .newsletter-form .form-group .input-newsletter:focus {
                    box-shadow: none;
                    outline: 0px;
                    background-color: transparent;
                    border: 1px solid rgb(0 147 170);
                }

                    .coming-soon-content .newsletter-form .form-group .input-newsletter:focus::-webkit-input-placeholder {
                        color: transparent;
                    }

                    .coming-soon-content .newsletter-form .form-group .input-newsletter:focus::placeholder {
                        color: transparent;
                    }

        .coming-soon-content .newsletter-form .default-btn {
            width: 100%;
            border: none;
            padding: 20px;
            border-radius: 15px;
        }

        .coming-soon-content .newsletter-form .validation-danger {
            margin-top: 15px;
            color: red;
        }

.single-terms-of-service h3 {
    font-size: 25px;
    margin: 0px 0px 15px;
}

.single-terms-of-service p {
    font-size: 15px;
}

.single-privacy-policy h3 {
    font-size: 25px;
    margin: 0px 0px 15px;
}

.single-privacy-policy p {
    font-size: 15px;
}

.contact-form .title {
    margin-bottom: 30px;
}

    .contact-form .title h3 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .contact-form .title p {
        margin-bottom: 0px;
    }

.contact-form .form-group {
    margin-bottom: 20px;
}

    .contact-form .form-group label {
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .contact-form .form-group .form-control {
        display: block;
        width: 100%;
        height: 60px;
        outline: 0px;
        background-color: rgb(242, 243, 245);
        border: 1px solid rgb(242, 243, 245);
        border-radius: 5px;
        box-shadow: none;
        padding: 15px;
        transition: all 0.6s ease 0s;
        font-size: 15px;
    }

        .contact-form .form-group .form-control::-webkit-input-placeholder {
            transition: all 0.6s ease 0s;
            color: rgb(98, 96, 108);
        }

        .contact-form .form-group .form-control::placeholder {
            transition: all 0.6s ease 0s;
            color: rgb(98, 96, 108);
        }

        .contact-form .form-group .form-control:focus {
            outline: 0px;
            background-color: rgb(255, 255, 255);
            border-color: rgb(0 147 170);
            box-shadow: none;
        }

            .contact-form .form-group .form-control:focus::-webkit-input-placeholder {
                color: transparent;
            }

            .contact-form .form-group .form-control:focus::placeholder {
                color: transparent;
            }

    .contact-form .form-group textarea.form-control {
        height: auto;
        padding: 15px;
        line-height: 1.5rem;
    }

    .contact-form .form-group .help-block.with-errors ul {
        color: red;
        margin-bottom: 0px;
        margin-top: 10px;
        text-align: left;
    }

        .contact-form .form-group .help-block.with-errors ul li {
            font-size: 14px;
        }

.contact-form #msgSubmit {
    margin: 0px;
    font-size: 1.3rem;
}

    .contact-form #msgSubmit.text-danger, .contact-form #msgSubmit.text-success {
        margin-top: 25px;
        font-size: 18px;
        font-weight: 500;
    }

.contact-form .default-btn {
    border: none;
}

.contact-address {
    padding-left: 25px;
}

    .contact-address h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .contact-address p {
        font-size: 15px;
    }

    .contact-address .address-info {
        padding-left: 0px;
        margin-top: 30px;
        margin-bottom: 0px;
    }

        .contact-address .address-info li {
            list-style-type: none;
            margin-bottom: 30px;
            font-size: 15px;
            font-weight: 500;
            color: rgb(75, 75, 97);
            position: relative;
            padding-left: 40px;
        }

            .contact-address .address-info li a {
                font-size: 15px;
                font-weight: 500;
                color: rgb(75, 75, 97);
            }

                .contact-address .address-info li a:hover {
                    color: rgb(0 147 170);
                }

            .contact-address .address-info li i {
                position: absolute;
                left: 0px;
                top: 50%;
                transform: translateY(-50%);
                color: rgb(0 147 170);
                font-size: 30px;
            }

            .contact-address .address-info li:last-child {
                margin-bottom: 0px;
            }

.case-study-details-image {
    margin-bottom: 45px;
}

    .case-study-details-image img {
        border-radius: 5px;
    }

.case-study-details-desc h3 {
    margin-bottom: 18px;
    font-size: 25px;
    font-weight: 600;
}

.case-study-details-desc p {
    font-size: 15px;
}

.case-study-details-desc .features-text {
    margin-top: 20px;
    margin-bottom: 20px;
}

    .case-study-details-desc .features-text h4 {
        margin-bottom: 12px;
        font-size: 18px;
        font-weight: 600;
    }

        .case-study-details-desc .features-text h4 i {
            font-size: 16px;
            margin-right: 4px;
            color: rgb(29 164 194);
        }

.case-study-details-desc h4 {
    margin-top: 20px;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 18px;
}

.case-study-details-information {
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px -10px 30px;
    border-radius: 5px;
    border-top: 3px solid rgb(29 164 194);
    padding: 40px 30px;
    margin-left: 30px;
}

    .case-study-details-information ul {
        padding-left: 0px;
        margin-bottom: 0px;
        list-style-type: none;
    }

        .case-study-details-information ul li {
            margin-bottom: 20px;
            border-bottom: 1px solid rgb(238, 238, 238);
            position: relative;
            color: rgb(98, 96, 108);
            font-weight: 500;
            font-size: 15px;
            padding-left: 35px;
            padding-bottom: 20px;
        }

            .case-study-details-information ul li span {
                color: rgb(32, 28, 45);
                display: block;
                margin-bottom: 8px;
                font-size: 20px;
                font-weight: 600;
            }

            .case-study-details-information ul li a {
                display: block;
                color: rgb(98, 96, 108);
                margin-bottom: 8px;
                font-size: 15px;
                font-weight: 400;
            }

                .case-study-details-information ul li a:last-child {
                    margin-bottom: 0px;
                }

                .case-study-details-information ul li a:hover {
                    color: rgb(29 164 194);
                }

            .case-study-details-information ul li .icon {
                position: absolute;
                left: 0px;
                top: 2px;
                color: rgb(29 164 194);
                font-size: 25px;
            }

            .case-study-details-information ul li:last-child {
                padding-bottom: 0px;
                margin-bottom: 0px;
                border-bottom: none;
            }

.single-services-box {
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 40px 3px;
    margin-bottom: 30px;
    padding: 30px 25px;
    transition: all 0.6s ease 0s;
    position: relative;
    border-radius: 5px;
}

    .single-services-box .icon {
        margin-bottom: 25px;
    }

        .single-services-box .icon i {
            display: inline-block;
            background-color: rgb(255, 228, 217);
            border-radius: 5px;
            width: 75px;
            height: 75px;
            line-height: 75px;
            transition: all 0.6s ease 0s;
            text-align: center;
            color: rgb(0 147 170);
            font-size: 38px;
        }

    .single-services-box h3 {
        margin-bottom: 0px;
        font-size: 22px;
    }

    .single-services-box p {
        margin-top: 15px;
        margin-bottom: 0px;
    }

    .single-services-box::before {
        content: "";
        height: 3px;
        width: 20px;
        position: absolute;
        left: 0px;
        bottom: 0px;
        background-color: rgb(0 147 170);
        transition: all 0.6s ease 0s;
        border-radius: 5px;
    }

    .single-services-box:hover {
        transform: translateY(-10px);
    }

        .single-services-box:hover .icon i {
            background-color: rgb(0 147 170);
            color: rgb(255, 255, 255);
        }

        .single-services-box:hover::before {
            width: 100%;
            height: 4px;
        }

.services-details-header .content h3 {
    margin-bottom: 15px;
    font-size: 25px;
}

.services-details-header .services-details-image img {
    border-radius: 5px;
}

.services-details-desc {
    margin-top: 30px;
}

    .services-details-desc h3 {
        margin-top: 25px;
        margin-bottom: 15px;
        font-size: 25px;
    }

    .services-details-desc .wp-block-gallery.columns-3 {
        padding-left: 0px;
        list-style-type: none;
        display: flex;
        flex-wrap: wrap;
        margin: 20px -10px 25px;
    }

        .services-details-desc .wp-block-gallery.columns-3 li {
            -webkit-box-flex: 0;
            flex: 0 0 33.3333%;
            max-width: 33.3333%;
            padding-right: 10px;
            padding-left: 10px;
        }

            .services-details-desc .wp-block-gallery.columns-3 li figure {
                margin-bottom: 0px;
            }

                .services-details-desc .wp-block-gallery.columns-3 li figure img {
                    border-radius: 5px;
                }

    .services-details-desc .features-list {
        padding-left: 0px;
        list-style-type: none;
        margin-top: 10px;
        margin-bottom: 10px;
    }

        .services-details-desc .features-list li {
            margin-bottom: 16px;
            position: relative;
            padding-left: 34px;
            color: rgb(98, 96, 108);
        }

            .services-details-desc .features-list li i {
                width: 25px;
                height: 25px;
                line-height: 25px;
                text-align: center;
                border-radius: 70% 30% 30% 70% / 60% 40%;
                background-color: rgb(250, 245, 245);
                color: rgb(0 147 170);
                transition: all 0.6s ease 0s;
                display: inline-block;
                font-size: 16px;
                position: absolute;
                left: 0px;
                top: -2px;
            }

            .services-details-desc .features-list li:hover i {
                background-color: rgb(0 147 170);
                color: rgb(255, 255, 255);
            }

            .services-details-desc .features-list li:last-child {
                margin-bottom: 0px;
            }

.widget-area {
    padding-left: 20px;
}

    .widget-area .widget {
        margin-bottom: 30px;
    }

        .widget-area .widget:last-child {
            margin-bottom: 0px;
        }

        .widget-area .widget .widget-title {
            margin-bottom: 30px;
            font-size: 20px;
        }

    .widget-area .widget_search {
        background-color: rgb(243, 247, 253);
        padding: 25px;
        border: 1px solid rgb(225, 225, 225);
        border-radius: 5px;
    }

        .widget-area .widget_search form {
            position: relative;
        }

            .widget-area .widget_search form .search-field {
                height: 60px;
                color: rgb(32, 28, 45);
                border: 1px solid rgb(225, 225, 225);
                display: block;
                width: 100%;
                border-radius: 5px;
                padding: 0px 0px 0px 15px;
                transition: all 0.6s ease 0s;
                font-size: 15px;
                font-weight: 400;
                outline: 0px;
            }

                .widget-area .widget_search form .search-field::-webkit-input-placeholder {
                    color: rgb(98, 96, 108);
                    transition: all 0.6s ease 0s;
                }

                .widget-area .widget_search form .search-field::placeholder {
                    color: rgb(98, 96, 108);
                    transition: all 0.6s ease 0s;
                }

                .widget-area .widget_search form .search-field:focus::-webkit-input-placeholder {
                    color: transparent;
                }

                .widget-area .widget_search form .search-field:focus::placeholder {
                    color: transparent;
                }

            .widget-area .widget_search form button {
                border: none;
                background-color: rgb(0 147 170);
                color: rgb(255, 255, 255);
                height: 50px;
                width: 50px;
                position: absolute;
                right: 5px;
                padding: 0px;
                transition: all 0.6s ease 0s;
                top: 50%;
                transform: translateY(-50%);
                font-size: 20px;
                border-radius: 5px;
            }

                .widget-area .widget_search form button i {
                    position: absolute;
                    left: 0px;
                    right: 0px;
                    top: 50%;
                    transform: translateY(-50%);
                }

                .widget-area .widget_search form button:hover, .widget-area .widget_search form button:focus {
                    background-color: rgb(29 164 194);
                    color: rgb(255, 255, 255);
                }

    .widget-area .widget_categories {
        padding: 25px;
        border: 1px solid rgb(225, 225, 225);
        border-radius: 5px;
    }

        .widget-area .widget_categories ul {
            padding-left: 0px;
            margin-bottom: 0px;
            list-style-type: none;
        }

            .widget-area .widget_categories ul li {
                margin-bottom: 18px;
                color: rgb(98, 96, 108);
                font-weight: 500;
                font-size: 15px;
                text-transform: uppercase;
                border-bottom: 1px solid rgb(225, 225, 225);
                padding-bottom: 15px;
                position: relative;
                padding-left: 18px;
            }

                .widget-area .widget_categories ul li::before {
                    position: absolute;
                    content: "";
                    height: 10px;
                    width: 10px;
                    background-color: rgb(0 147 170);
                    left: 0px;
                    top: 6px;
                    border-radius: 30px;
                }

                .widget-area .widget_categories ul li:last-child {
                    margin-bottom: 0px;
                    border-bottom: none;
                    padding-bottom: 0px;
                }

                .widget-area .widget_categories ul li a {
                    color: rgb(121, 121, 141);
                    display: inline-block;
                }

                    .widget-area .widget_categories ul li a:hover {
                        color: rgb(0 147 170);
                    }

                .widget-area .widget_categories ul li span {
                    float: right;
                }

    .widget-area .widget_fido_posts_thumb {
        position: relative;
        overflow: hidden;
        padding: 25px;
        border: 1px solid rgb(225, 225, 225);
        border-radius: 5px;
    }

        .widget-area .widget_fido_posts_thumb .item {
            overflow: hidden;
            margin-bottom: 15px;
        }

            .widget-area .widget_fido_posts_thumb .item:last-child {
                margin-bottom: 0px;
            }

            .widget-area .widget_fido_posts_thumb .item .thumb {
                float: left;
                height: 80px;
                overflow: hidden;
                display: block;
                position: relative;
                width: 80px;
                margin-right: 15px;
                z-index: 1;
            }

                .widget-area .widget_fido_posts_thumb .item .thumb .fullimage {
                    width: 80px;
                    height: 80px;
                    display: inline-block;
                    border-radius: 5px;
                    background-repeat: no-repeat;
                    background-size: cover !important;
                    background-position: center center !important;
                }

                    .widget-area .widget_fido_posts_thumb .item .thumb .fullimage.bg1 {
                        background-image: url("../images/blog/blog-1.jpg");
                    }

                    .widget-area .widget_fido_posts_thumb .item .thumb .fullimage.bg2 {
                        background-image: url("../images/blog/blog-2.jpg");
                    }

                    .widget-area .widget_fido_posts_thumb .item .thumb .fullimage.bg3 {
                        background-image: url("../images/blog/blog-3.jpg");
                    }

                    .widget-area .widget_fido_posts_thumb .item .thumb .fullimage.bg4 {
                        background-image: url("../images/blog/blog-4.jpg");
                    }

                    .widget-area .widget_fido_posts_thumb .item .thumb .fullimage.bg5 {
                        background-image: url("../images/blog/blog-5.jpg");
                    }

                .widget-area .widget_fido_posts_thumb .item .thumb::before, .widget-area .widget_fido_posts_thumb .item .thumb::after {
                    transition: all 0.8s cubic-bezier(0.2, 1, 0.22, 1) 0s;
                    content: "";
                    background-color: rgb(255, 255, 255);
                    position: absolute;
                    z-index: 1;
                    top: 50%;
                    left: 50%;
                    opacity: 0;
                    transform: translate(-50%, -50%);
                }

                .widget-area .widget_fido_posts_thumb .item .thumb::before {
                    width: 40px;
                    height: 1px;
                    left: 100%;
                }

                .widget-area .widget_fido_posts_thumb .item .thumb::after {
                    height: 40px;
                    width: 1px;
                    top: 0px;
                }

            .widget-area .widget_fido_posts_thumb .item .info {
                overflow: hidden;
            }

                .widget-area .widget_fido_posts_thumb .item .info span {
                    display: block;
                    color: rgb(121, 121, 141);
                    margin-top: 8px;
                    font-size: 15px;
                    position: relative;
                    padding-left: 20px;
                }

                    .widget-area .widget_fido_posts_thumb .item .info span i {
                        color: rgb(0 147 170);
                        position: absolute;
                        top: 50%;
                        transform: translateY(-50%);
                        left: 0px;
                    }

                .widget-area .widget_fido_posts_thumb .item .info .title {
                    margin-bottom: 0px;
                    line-height: 1.5;
                    font-size: 16px;
                    font-weight: bold;
                }

                    .widget-area .widget_fido_posts_thumb .item .info .title a {
                        display: inline-block;
                    }

            .widget-area .widget_fido_posts_thumb .item:hover .thumb::before, .widget-area .widget_fido_posts_thumb .item:hover .thumb::after {
                opacity: 1;
                top: 50%;
                left: 50%;
            }

    .widget-area .widget_tag_cloud {
        border: 1px solid rgb(230, 237, 246);
        padding: 35px 30px;
        border-radius: 5px;
    }

        .widget-area .widget_tag_cloud .widget-title {
            margin-bottom: 18px;
        }

    .widget-area .tagcloud a {
        display: inline-block;
        background: rgb(29 164 194);
        color: rgb(255, 255, 255);
        padding: 8px 15px;
        border: none;
        border-radius: 3px;
        font-size: 15px;
        font-weight: 400;
        margin-top: 8px;
        margin-right: 5px;
    }

        .widget-area .tagcloud a:hover, .widget-area .tagcloud a:focus {
            color: rgb(255, 255, 255);
            background-color: rgb(0 147 170);
        }

    .widget-area .widget_box {
        background-color: rgb(243, 247, 253);
        border: 1px solid rgb(225, 225, 225);
        padding: 25px;
        border-radius: 5px;
    }

        .widget-area .widget_box .box-list {
            padding-left: 0px;
            margin-bottom: 0px;
            text-align: center;
        }

            .widget-area .widget_box .box-list li {
                display: inline-block;
                margin-right: 15px;
            }

                .widget-area .widget_box .box-list li:last-child {
                    margin-right: 0px;
                }

                .widget-area .widget_box .box-list li .share-btn {
                    border: none;
                    position: relative;
                    display: inline-block;
                    text-align: center;
                    overflow: hidden;
                    z-index: 1;
                    color: rgb(255, 255, 255);
                    background-color: rgb(32, 28, 45);
                    transition: all 0.6s ease 0s;
                    border-radius: 5px;
                    padding: 15px 50px;
                    font-weight: 500;
                    font-size: 15px;
                    margin-bottom: -6px;
                    text-transform: uppercase;
                }

                    .widget-area .widget_box .box-list li .share-btn span {
                        position: absolute;
                        display: block;
                        width: 0px;
                        height: 0px;
                        background-color: rgb(0 147 170);
                        transition: width 0.5s ease-in-out 0s, height 0.5s ease-in-out 0s;
                        transform: translate(-50%, -50%);
                        z-index: -1;
                        border-radius: 5px;
                    }

                    .widget-area .widget_box .box-list li .share-btn:hover {
                        color: rgb(255, 255, 255);
                    }

                        .widget-area .widget_box .box-list li .share-btn:hover span {
                            width: 225%;
                            height: 562.5px;
                        }

    .widget-area .widget_info {
        border: 1px solid rgb(225, 225, 225);
        padding: 25px;
        border-radius: 5px;
        position: relative;
    }

        .widget-area .widget_info .info-box-one {
            background-color: rgb(32, 28, 45);
            position: relative;
            padding: 30px 30px 30px 120px;
            margin-left: -25px;
            margin-right: -25px;
            margin-top: -25px;
            border-radius: 5px 5px 0px 0px;
        }

            .widget-area .widget_info .info-box-one img {
                display: inline-block;
                height: 80px;
                width: 80px;
                border-radius: 50%;
                position: absolute;
                left: 25px;
                top: 50%;
                transform: translateY(-50%);
            }

            .widget-area .widget_info .info-box-one h3 {
                color: rgb(255, 255, 255);
                font-size: 18px;
                margin-bottom: 15px;
            }

            .widget-area .widget_info .info-box-one span i {
                color: rgb(0 147 170);
                font-size: 20px;
            }

            .widget-area .widget_info .info-box-one span a {
                color: rgb(255, 255, 255);
            }

        .widget-area .widget_info form {
            margin-top: 30px;
        }

            .widget-area .widget_info form .form-group label {
                font-size: 16px;
                font-weight: 500;
                margin-bottom: 8px;
            }

            .widget-area .widget_info form .form-group .form-control {
                height: 60px;
                color: rgb(121, 121, 141);
                border: 1px solid rgb(242, 243, 245);
                background-color: rgb(242, 243, 245);
                display: block;
                width: 100%;
                border-radius: 10px;
                padding: 15px;
                transition: all 0.6s ease 0s;
                font-size: 15px;
                font-weight: 400;
                outline: 0px;
            }

                .widget-area .widget_info form .form-group .form-control::-webkit-input-placeholder {
                    color: rgb(98, 96, 108);
                    transition: all 0.6s ease 0s;
                }

                .widget-area .widget_info form .form-group .form-control::placeholder {
                    color: rgb(98, 96, 108);
                    transition: all 0.6s ease 0s;
                }

                .widget-area .widget_info form .form-group .form-control:focus {
                    box-shadow: none;
                    background-color: transparent;
                    border: 1px solid rgb(0 147 170);
                }

                    .widget-area .widget_info form .form-group .form-control:focus::-webkit-input-placeholder {
                        color: transparent;
                    }

                    .widget-area .widget_info form .form-group .form-control:focus::placeholder {
                        color: transparent;
                    }

            .widget-area .widget_info form .form-group textarea.form-control {
                min-height: 135px;
            }

            .widget-area .widget_info form .default-btn {
                margin-bottom: 0px;
            }

    .widget-area .widget_fido_property {
        position: relative;
        overflow: hidden;
        padding: 25px;
        background-color: rgb(243, 247, 253);
        border: 1px solid rgb(225, 225, 225);
        border-radius: 5px;
    }

        .widget-area .widget_fido_property .item {
            overflow: hidden;
            margin-bottom: 15px;
            background-color: rgb(255, 255, 255);
            border: 1px solid rgb(225, 225, 225);
            padding: 15px;
            border-radius: 10px;
        }

            .widget-area .widget_fido_property .item:last-child {
                margin-bottom: 0px;
            }

            .widget-area .widget_fido_property .item .thumb {
                float: left;
                height: 80px;
                overflow: hidden;
                display: block;
                position: relative;
                width: 80px;
                margin-right: 15px;
                z-index: 1;
            }

                .widget-area .widget_fido_property .item .thumb .fullimage {
                    width: 80px;
                    height: 80px;
                    display: inline-block;
                    border-radius: 5px;
                    background-repeat: no-repeat;
                    background-size: cover !important;
                    background-position: center center !important;
                }

                    .widget-area .widget_fido_property .item .thumb .fullimage.bg1 {
                        background-image: url("../images/featured/featured-1.jpg");
                    }

                    .widget-area .widget_fido_property .item .thumb .fullimage.bg2 {
                        background-image: url("../images/featured/featured-2.jpg");
                    }

                    .widget-area .widget_fido_property .item .thumb .fullimage.bg3 {
                        background-image: url("../images/featured/featured-3.jpg");
                    }

                    .widget-area .widget_fido_property .item .thumb .fullimage.bg4 {
                        background-image: url("../images/featured/featured-4.jpg");
                    }

                .widget-area .widget_fido_property .item .thumb::before, .widget-area .widget_fido_property .item .thumb::after {
                    transition: all 0.8s cubic-bezier(0.2, 1, 0.22, 1) 0s;
                    content: "";
                    background-color: rgb(255, 255, 255);
                    position: absolute;
                    z-index: 1;
                    top: 50%;
                    left: 50%;
                    opacity: 0;
                    transform: translate(-50%, -50%);
                }

                .widget-area .widget_fido_property .item .thumb::before {
                    width: 40px;
                    height: 1px;
                    left: 100%;
                }

                .widget-area .widget_fido_property .item .thumb::after {
                    height: 40px;
                    width: 1px;
                    top: 0px;
                }

            .widget-area .widget_fido_property .item .info {
                overflow: hidden;
                position: relative;
            }

                .widget-area .widget_fido_property .item .info span {
                    display: block;
                    color: rgb(121, 121, 141);
                    margin-top: 5px;
                    margin-bottom: 10px;
                    font-size: 15px;
                    position: relative;
                    padding-left: 18px;
                }

                    .widget-area .widget_fido_property .item .info span i {
                        color: rgb(0 147 170);
                        position: absolute;
                        top: 48%;
                        transform: translateY(-48%);
                        left: 0px;
                    }

                .widget-area .widget_fido_property .item .info .title {
                    margin-bottom: 0px;
                    line-height: 1.5;
                    font-size: 16px;
                    font-weight: bold;
                }

                    .widget-area .widget_fido_property .item .info .title a {
                        display: inline-block;
                    }

                .widget-area .widget_fido_property .item .info .tag {
                    background-color: rgb(229, 255, 248);
                    color: rgb(29 164 194);
                    padding: 5px 15px;
                    border-radius: 5px;
                    text-transform: uppercase;
                    display: inline-block;
                    font-size: 12px;
                    transition: all 0.6s ease 0s;
                }

                    .widget-area .widget_fido_property .item .info .tag:hover {
                        background-color: rgb(0 147 170);
                        color: rgb(255, 255, 255);
                    }

                .widget-area .widget_fido_property .item .info .price {
                    font-size: 16px;
                    font-weight: bold;
                    position: absolute;
                    right: 0px;
                    bottom: 0px;
                }

            .widget-area .widget_fido_property .item:hover .thumb::before, .widget-area .widget_fido_property .item:hover .thumb::after {
                opacity: 1;
                top: 50%;
                left: 50%;
            }

    .widget-area .widget_top-properties {
        border: 1px solid rgb(225, 225, 225);
        padding: 25px;
        border-radius: 5px;
    }

        .widget-area .widget_top-properties .properties-item-box .properties-content {
            position: relative;
            z-index: 1;
        }

            .widget-area .widget_top-properties .properties-item-box .properties-content::before {
                content: "";
                background: linear-gradient(rgba(0, 0, 0, 0), black);
                width: 100%;
                height: 90%;
                left: 0px;
                bottom: 0px;
                position: absolute;
                transition: all 0.6s ease 0s;
                border-radius: 10px;
                opacity: 0.9;
            }

            .widget-area .widget_top-properties .properties-item-box .properties-content a {
                display: block;
            }

            .widget-area .widget_top-properties .properties-item-box .properties-content img {
                border-radius: 10px;
            }

            .widget-area .widget_top-properties .properties-item-box .properties-content .tag {
                position: absolute;
                left: 20px;
                top: 20px;
                background-color: rgb(29 164 194);
                color: rgb(255, 255, 255);
                font-size: 14px;
                font-weight: 400;
                padding: 10px 20px;
                border-radius: 5px;
                text-transform: uppercase;
                transition: all 0.6s ease 0s;
            }

            .widget-area .widget_top-properties .properties-item-box .properties-content .content-box {
                padding: 20px;
                position: absolute;
                bottom: 0px;
                z-index: 1;
                transition: all 0.6s ease 0s;
            }

                .widget-area .widget_top-properties .properties-item-box .properties-content .content-box span {
                    font-size: 15px;
                    color: rgb(255, 255, 255);
                    font-weight: 500;
                    display: inline-block;
                    margin-bottom: 15px;
                }

                .widget-area .widget_top-properties .properties-item-box .properties-content .content-box h3 {
                    font-size: 22px;
                    margin-bottom: 15px;
                }

                    .widget-area .widget_top-properties .properties-item-box .properties-content .content-box h3 a {
                        color: rgb(255, 255, 255);
                    }

                        .widget-area .widget_top-properties .properties-item-box .properties-content .content-box h3 a:hover {
                            color: rgb(0 147 170);
                        }

                .widget-area .widget_top-properties .properties-item-box .properties-content .content-box p {
                    font-size: 15px;
                    font-weight: bold;
                    margin-bottom: 15px;
                    color: rgb(255, 255, 255);
                }

                .widget-area .widget_top-properties .properties-item-box .properties-content .content-box .featured-list {
                    padding: 0px;
                    margin-bottom: 0px;
                }

                    .widget-area .widget_top-properties .properties-item-box .properties-content .content-box .featured-list li {
                        list-style-type: none;
                        display: inline-block;
                        position: relative;
                        padding-right: 22px;
                        color: rgb(255, 255, 255);
                        font-size: 15px;
                        font-weight: 400;
                        margin-left: 10px;
                    }

                        .widget-area .widget_top-properties .properties-item-box .properties-content .content-box .featured-list li:last-child {
                            margin-left: 0px;
                        }

                        .widget-area .widget_top-properties .properties-item-box .properties-content .content-box .featured-list li i {
                            position: absolute;
                            right: 0px;
                            top: 50%;
                            transform: translateY(-50%);
                        }

        .widget-area .widget_top-properties .top-properties-slides.owl-theme .owl-dots {
            position: absolute;
            right: 0px;
            top: -52px;
        }

            .widget-area .widget_top-properties .top-properties-slides.owl-theme .owl-dots .owl-dot span {
                width: 15px;
                height: 15px;
                background-color: rgb(255, 187, 173);
                box-shadow: rgba(0, 0, 0, 0.1) 0px 15px 35px;
                transition: all 0.6s ease 0s;
                border-radius: 50%;
            }

            .widget-area .widget_top-properties .top-properties-slides.owl-theme .owl-dots .owl-dot:hover span, .widget-area .widget_top-properties .top-properties-slides.owl-theme .owl-dots .owl-dot.active span {
                background-color: rgb(0 147 170);
                transform: scale(1.2);
            }

        .widget-area .widget_top-properties .top-properties-slides.owl-theme .owl-nav.disabled + .owl-dots {
            margin-top: 0px;
        }

.blog-details-desc .article-content {
    border: 1px solid rgb(225, 225, 225);
    padding: 30px;
    border-radius: 10px;
}

    .blog-details-desc .article-content .article-image {
        margin-bottom: 30px;
    }

        .blog-details-desc .article-content .article-image img {
            border-radius: 10px;
        }

    .blog-details-desc .article-content .entry-meta {
        padding-left: 0px;
        margin-bottom: 20px;
    }

        .blog-details-desc .article-content .entry-meta li {
            list-style-type: none;
            display: inline-block;
            color: rgb(121, 121, 141);
            font-size: 14px;
            font-weight: 400;
            margin-right: 20px;
            position: relative;
            padding-left: 20px;
        }

            .blog-details-desc .article-content .entry-meta li:last-child {
                margin-right: 0px;
            }

            .blog-details-desc .article-content .entry-meta li:first-child {
                padding-left: 0px;
            }

            .blog-details-desc .article-content .entry-meta li a {
                color: rgb(121, 121, 141);
            }

            .blog-details-desc .article-content .entry-meta li i {
                position: absolute;
                left: 0px;
                top: 50%;
                transform: translateY(-50%);
                color: rgb(0 147 170);
                font-size: 14px;
            }

            .blog-details-desc .article-content .entry-meta li img {
                display: inline-block;
                height: 50px;
                width: 50px;
                border-radius: 50%;
                margin-right: 5px;
            }

    .blog-details-desc .article-content h3 {
        font-size: 32px;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .blog-details-desc .article-content .quote {
        padding: 50px;
        border-left: 2px solid rgb(0 147 170);
        border-radius: 15px;
        background-color: rgb(255, 255, 255);
        box-shadow: rgba(108, 118, 134, 0.1) 0px 0px 1.25rem;
        margin-top: 30px;
        margin-bottom: 30px;
    }

        .blog-details-desc .article-content .quote p {
            margin-bottom: 20px;
            font-style: italic;
            color: rgb(32, 28, 45);
        }

        .blog-details-desc .article-content .quote span {
            color: rgb(98, 96, 108);
            font-style: italic;
            font-weight: 500;
        }

            .blog-details-desc .article-content .quote span b {
                font-weight: 500;
                color: rgb(0 147 170);
            }

    .blog-details-desc .article-content .wp-block-gallery.columns-3 {
        padding-left: 0px;
        list-style-type: none;
        display: flex;
        flex-wrap: wrap;
        margin: 35px -10px 30px;
    }

        .blog-details-desc .article-content .wp-block-gallery.columns-3 li {
            flex: 1 1 50%;
            max-width: 50%;
            padding-right: 10px;
            padding-left: 10px;
        }

            .blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
                margin-bottom: 0px;
            }

                .blog-details-desc .article-content .wp-block-gallery.columns-3 li figure img {
                    border-radius: 10px;
                }

    .blog-details-desc .article-content .article-footer {
        display: flex;
        flex-wrap: wrap;
        margin-top: 30px;
    }

        .blog-details-desc .article-content .article-footer .article-tags {
            -webkit-box-flex: 0;
            flex: 0 0 50%;
            max-width: 50%;
            color: rgb(29 164 194);
        }

            .blog-details-desc .article-content .article-footer .article-tags h3 {
                font-size: 22px;
                margin-bottom: 20px;
            }

            .blog-details-desc .article-content .article-footer .article-tags .tags {
                padding-left: 0px;
                margin-bottom: 0px;
            }

                .blog-details-desc .article-content .article-footer .article-tags .tags li {
                    display: inline-block;
                    list-style-type: none;
                }

                    .blog-details-desc .article-content .article-footer .article-tags .tags li a {
                        display: inline-block;
                        background-color: rgb(29 164 194);
                        color: rgb(255, 255, 255);
                        padding: 5px 15px;
                        margin-right: 5px;
                        font-size: 14px;
                        border-radius: 5px;
                    }

                        .blog-details-desc .article-content .article-footer .article-tags .tags li a:last-child {
                            margin-right: 0px;
                        }

                        .blog-details-desc .article-content .article-footer .article-tags .tags li a:hover {
                            background-color: rgb(0 147 170);
                            color: rgb(255, 255, 255);
                        }

        .blog-details-desc .article-content .article-footer .article-share {
            -webkit-box-flex: 0;
            flex: 0 0 50%;
            max-width: 50%;
            text-align: right;
        }

            .blog-details-desc .article-content .article-footer .article-share h3 {
                font-size: 22px;
                margin-bottom: 20px;
            }

            .blog-details-desc .article-content .article-footer .article-share .social {
                padding-left: 0px;
                list-style-type: none;
                margin-bottom: 0px;
            }

                .blog-details-desc .article-content .article-footer .article-share .social li {
                    display: inline-block;
                }

                    .blog-details-desc .article-content .article-footer .article-share .social li span {
                        display: inline-block;
                        font-size: 15px;
                        font-weight: 500;
                        position: relative;
                        top: -1px;
                    }

                    .blog-details-desc .article-content .article-footer .article-share .social li a i {
                        display: inline-block;
                        height: 35px;
                        width: 35px;
                        line-height: 35px;
                        background-color: rgb(121, 119, 129);
                        color: rgb(255, 255, 255);
                        border-radius: 50px;
                        text-align: center;
                        font-size: 16px;
                        transition: all 0.6s ease 0s;
                    }

                        .blog-details-desc .article-content .article-footer .article-share .social li a i:hover {
                            background-color: rgb(32, 28, 45);
                            color: rgb(255, 255, 255);
                            transform: translateY(-5px);
                        }

.blog-details-desc .article-comments {
    margin-top: 35px;
    border: 1px solid rgb(225, 225, 225);
    padding: 30px;
    border-radius: 10px;
}

    .blog-details-desc .article-comments h4 {
        margin-bottom: 35px;
        font-size: 30px;
    }

    .blog-details-desc .article-comments .comments-list {
        position: relative;
        padding-left: 118px;
        margin-bottom: 35px;
        border-bottom: 1px solid rgb(225, 225, 225);
        padding-bottom: 25px;
    }

        .blog-details-desc .article-comments .comments-list:last-child {
            margin-bottom: 0px;
        }

        .blog-details-desc .article-comments .comments-list img {
            position: absolute;
            left: 0px;
            top: 0px;
            display: inline-block;
            height: 100px;
            width: 100px;
            border-radius: 50%;
        }

        .blog-details-desc .article-comments .comments-list h5 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .blog-details-desc .article-comments .comments-list span {
            display: inline-block;
            margin-bottom: 10px;
            font-size: 14px;
            color: rgb(0 147 170);
        }

        .blog-details-desc .article-comments .comments-list p {
            margin-bottom: 0px;
        }

        .blog-details-desc .article-comments .comments-list .reply-btn {
            font-size: 16px;
            color: rgb(98, 96, 108);
            position: absolute;
            right: 0px;
            top: 0px;
            transition: all 0.6s ease 0s;
            font-weight: 500;
        }

            .blog-details-desc .article-comments .comments-list .reply-btn:hover {
                color: rgb(0 147 170);
                transform: translateY(-5px);
            }

        .blog-details-desc .article-comments .comments-list.children {
            margin-left: 50px;
        }

        .blog-details-desc .article-comments .comments-list.border-none {
            border-bottom: none;
            padding-bottom: 0px;
        }

.blog-details-desc .article-leave-comment {
    margin-top: 35px;
    border: 1px solid rgb(225, 225, 225);
    padding: 30px;
    border-radius: 10px;
}

    .blog-details-desc .article-leave-comment h4 {
        margin-bottom: 35px;
        font-size: 30px;
    }

    .blog-details-desc .article-leave-comment form .form-group label {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .blog-details-desc .article-leave-comment form .form-group .form-control {
        height: 60px;
        color: rgb(121, 121, 141);
        border: 1px solid rgb(242, 243, 245);
        background-color: rgb(242, 243, 245);
        display: block;
        width: 100%;
        border-radius: 10px;
        padding: 15px;
        transition: all 0.6s ease 0s;
        font-size: 15px;
        font-weight: 400;
        outline: 0px;
    }

        .blog-details-desc .article-leave-comment form .form-group .form-control::-webkit-input-placeholder {
            color: rgb(98, 96, 108);
            transition: all 0.6s ease 0s;
        }

        .blog-details-desc .article-leave-comment form .form-group .form-control::placeholder {
            color: rgb(98, 96, 108);
            transition: all 0.6s ease 0s;
        }

        .blog-details-desc .article-leave-comment form .form-group .form-control:focus {
            box-shadow: none;
            background-color: transparent;
            border: 1px solid rgb(0 147 170);
        }

            .blog-details-desc .article-leave-comment form .form-group .form-control:focus::-webkit-input-placeholder {
                color: transparent;
            }

            .blog-details-desc .article-leave-comment form .form-group .form-control:focus::placeholder {
                color: transparent;
            }

    .blog-details-desc .article-leave-comment form .form-group textarea.form-control {
        min-height: 135px;
    }

    .blog-details-desc .article-leave-comment form .default-btn {
        margin-top: 20px;
        transform: unset;
    }

.property-details-image img {
    border-radius: 5px;
}

.property-details-slides {
    margin-bottom: 35px;
}

    .property-details-slides.owl-theme .owl-nav {
        margin-top: 0px;
    }

        .property-details-slides.owl-theme .owl-nav [class*="owl-"] {
            position: absolute;
            right: 0px;
            top: 45%;
            transform: translateY(-45%);
            margin: 0px;
            outline: 0px;
            width: 45px;
            height: 45px;
            line-height: 52px;
            transition: all 0.6s ease 0s;
            background-color: rgb(255, 255, 255);
            box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 28px 0px;
            color: rgb(0 147 170);
            border-radius: 50%;
            opacity: 0;
            visibility: hidden;
        }

            .property-details-slides.owl-theme .owl-nav [class*="owl-"]:hover, .property-details-slides.owl-theme .owl-nav [class*="owl-"]:focus {
                background-color: rgb(0 147 170);
                color: rgb(255, 255, 255);
            }

            .property-details-slides.owl-theme .owl-nav [class*="owl-"].owl-next {
                right: auto;
                left: 0px;
            }

            .property-details-slides.owl-theme .owl-nav [class*="owl-"] i {
                font-size: 20px;
                font-weight: bold;
            }

    .property-details-slides.owl-theme:hover .owl-nav [class*="owl-"] {
        opacity: 1;
        visibility: visible;
        right: -20px;
        transition: all 0.6s ease 0s;
    }

        .property-details-slides.owl-theme:hover .owl-nav [class*="owl-"].owl-next {
            right: auto;
            left: -20px;
        }

.property-details-desc .details-content {
    border: 1px solid #0093aa;
    padding: 10px;
    border-radius: 25px;
    position: relative;
    margin-bottom: 30px;
    background-color: #fafaf9;
    background-image: url(/images/estate-info.png);
    background-repeat: round;
    background-clip: content-box;
    color: #5d5a57;
}

    .property-details-desc .details-content .tag-list {
    }

        .property-details-desc .details-content .tag-list .tag {
            display: inline-block;
            padding: 0 1%;
        }

        .property-details-desc .details-content .tag-list .tag-2 {
            display: inline-block;
            background-color: #0093aa;
            color: rgb(255, 255, 255);
            font-size: 78%;
            font-weight: 400;
            padding: 10px 20px;
            border-radius: 20px;
            text-transform: uppercase;
            transition: all 0.6s ease 0s;
        }
    /*.property-details-desc .details-content .price { display: inline-block; background-color: rgb(0 147 170); color: rgb(255, 255, 255); box-shadow: rgba(108, 118, 134, 0.1) 0px 0px 1.25rem; width: 80px; height: 80px; line-height: 80px; border-radius: 50%; position: absolute; left: 20px; top: 20px; text-align: center; font-size: 16px; font-weight: 500; transition: all 0.6s ease 0s; }*/
    .property-details-desc .details-content .content {
        position: relative;
    }

        .property-details-desc .details-content .content span {
            font-size: 15px;
            color: rgb(0 147 170);
            font-weight: 500;
            display: inline-block;
            margin-bottom: 15px;
        }

        .property-details-desc .details-content .content h3 {
            font-size: 25px;
            margin-bottom: 10px;
        }

            .property-details-desc .details-content .content h3 a {
                color: rgb(32, 28, 45);
            }

                .property-details-desc .details-content .content h3 a:hover {
                    color: rgb(0 147 170);
                }

        .property-details-desc .details-content .content p {
            font-size: 15px;
            font-weight: 400;
            margin-bottom: 15px;
        }

            .property-details-desc .details-content .content p span {
                color: rgb(32, 28, 45);
                margin-bottom: 0px;
            }

        .property-details-desc .details-content .content .list {
            padding: 0px;
            margin-bottom: 0px;
        }

            .property-details-desc .details-content .content .list li {
                list-style-type: none;
                display: inline-block;
                position: relative;
                padding-right: 22px;
                color: rgb(98, 96, 108);
                font-size: 16px;
                font-weight: 400;
                margin-left: 10px;
            }

                .property-details-desc .details-content .content .list li:last-child {
                    margin-left: 0px;
                }

                .property-details-desc .details-content .content .list li i {
                    position: absolute;
                    right: 0px;
                    top: 50%;
                    transform: translateY(-50%);
                }

        .property-details-desc .details-content .content .rating-list {
            padding: 0px;
            margin-bottom: 0px;
            position: absolute;
            bottom: 0px;
            left: 0px;
        }

            .property-details-desc .details-content .content .rating-list li {
                list-style-type: none;
                display: inline-block;
                color: rgb(132, 132, 132);
                font-weight: 500;
            }

                .property-details-desc .details-content .content .rating-list li i {
                    font-size: 16px;
                    color: rgb(248, 180, 42);
                }

                .property-details-desc .details-content .content .rating-list li.color-gray i {
                    color: rgb(196, 196, 196);
                }

                .property-details-desc .details-content .content .rating-list li:last-child {
                    margin-right: 5px;
                }

.property-details-desc .details-description {
    border: 1px solid rgb(225, 225, 225);
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
}

    .property-details-desc .details-description h3 {
        font-size: 25px;
        margin-bottom: 15px;
    }

.property-details-desc .details-overview {
    border: 1px solid rgb(225, 225, 225);
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
}

    .property-details-desc .details-overview h3 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .property-details-desc .details-overview .overview-list {
        padding-right: 0px;
        margin-bottom: 0px;
        display: flex;
        flex-wrap: wrap;
    }

        .property-details-desc .details-overview .overview-list li {
            list-style-type: none;
            display: inline-block;
            background-color: rgb(255, 255, 255);
            box-shadow: rgba(108, 118, 134, 0.1) 0px 0px 1.25rem;
            padding: 15px;
            text-align: center;
            border-radius: 5px;
            flex: 1 1 20%;
            max-width: 20%;
        }

            .property-details-desc .details-overview .overview-list li i {
                font-size: 35px;
                color: rgb(196, 196, 196);
                margin-bottom: 10px;
            }

            .property-details-desc .details-overview .overview-list li p {
                margin-bottom: 5px;
                color: rgb(98, 96, 108);
            }

            .property-details-desc .details-overview .overview-list li span {
                font-size: 16px;
                font-weight: 500;
            }

.property-details-desc .details-address {
    border: 1px solid rgb(225, 225, 225);
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
}

    .property-details-desc .details-address h3 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .property-details-desc .details-address .address-list {
        padding-right: 0px;
        margin-bottom: 0px;
    }

        .property-details-desc .details-address .address-list li {
            list-style-type: none;
            font-size: 16px;
            color: rgb(98, 96, 108);
            margin-bottom: 10px;
        }

            .property-details-desc .details-address .address-list li:last-child {
                margin-bottom: 0px;
            }

            .property-details-desc .details-address .address-list li span {
                font-size: 16px;
                font-weight: 500;
                color: rgb(32, 28, 45);
            }

    .property-details-desc .details-address .address-btn {
        margin-top: 25px;
    }

.property-details-desc .details-features {
    border: 1px solid rgb(225, 225, 225);
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
}

    .property-details-desc .details-features h3 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .property-details-desc .details-features .features-list {
        padding-right: 0px;
        margin-bottom: 0px;
    }

        .property-details-desc .details-features .features-list li {
            list-style-type: none;
            font-size: 16px;
            color: rgb(98, 96, 108);
            margin-bottom: 25px;
            position: relative;
            padding-right: 38px;
        }

            .property-details-desc .details-features .features-list li:last-child {
                margin-bottom: 0px;
            }

            .property-details-desc .details-features .features-list li i {
                position: absolute;
                right: 0px;
                top: 50%;
                transform: translateY(-50%);
                display: inline-block;
                background-color: rgb(229, 255, 248);
                color: rgb(29 164 194);
                height: 30px;
                width: 30px;
                line-height: 30px;
                border-radius: 50px;
                text-align: center;
                font-size: 18px;
                transition: all 0.6s ease 0s;
            }

            .property-details-desc .details-features .features-list li:hover i {
                background-color: rgb(0 147 170);
                color: rgb(255, 255, 255);
            }

.property-details-desc .details-floor {
    border: 1px solid rgb(225, 225, 225);
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
    position: relative;
}

    .property-details-desc .details-floor h3 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .property-details-desc .details-floor .list {
        padding: 0px;
        margin-bottom: 0px;
        position: absolute;
        left: 30px;
        top: 30px;
    }

        .property-details-desc .details-floor .list li {
            list-style-type: none;
            display: inline-block;
            position: relative;
            padding-right: 22px;
            color: rgb(98, 96, 108);
            font-size: 16px;
            font-weight: 400;
            margin-left: 10px;
        }

            .property-details-desc .details-floor .list li:last-child {
                margin-left: 0px;
            }

            .property-details-desc .details-floor .list li i {
                position: absolute;
                right: 0px;
                top: 50%;
                transform: translateY(-50%);
            }

    .property-details-desc .details-floor .floor-image {
        background-color: rgb(243, 247, 253);
        text-align: center;
        padding: 30px;
        border-radius: 5px;
    }

.property-details-desc .details-video {
    border: 1px solid rgb(225, 225, 225);
    padding: 30px;
    border-radius: 5px;
    position: relative;
}

    .property-details-desc .details-video h3 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .property-details-desc .details-video .video-image {
        position: relative;
    }

        .property-details-desc .details-video .video-image img {
            border-radius: 5px;
        }

        .property-details-desc .details-video .video-image .video-btn {
            display: inline-block;
            width: 70px;
            height: 70px;
            line-height: 80px;
            background-color: rgb(255, 255, 255);
            border-radius: 50%;
            color: rgb(0 147 170);
            position: absolute;
            z-index: 1;
            top: 50%;
            transform: translateY(-50%);
            left: 0px;
            right: 0px;
            margin: auto;
            text-align: center;
            font-size: 50px;
            transition: all 0.6s ease 0s;
        }

            .property-details-desc .details-video .video-image .video-btn i {
                transition: all 0.6s ease 0s;
                left: 2px;
                top: 4px;
            }

            .property-details-desc .details-video .video-image .video-btn::before {
                content: "";
                display: block;
                position: absolute;
                inset: 0px;
                z-index: -1;
                border-radius: 50%;
                border: 1px solid rgb(255, 255, 255);
                animation: 1s linear 0s infinite normal none running ripple;
            }

            .property-details-desc .details-video .video-image .video-btn:hover {
                background-color: rgb(29 164 194);
            }

                .property-details-desc .details-video .video-image .video-btn:hover i {
                    color: rgb(255, 255, 255);
                }

.estate-info-holder {
    padding: 3px 17px;
}

@-webkit-keyframes ripple {
    0% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.75);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.75);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.pagination-area {
    margin: 15px;
    text-align: center;
}

    .pagination-area .page-numbers {
        width: 55px;
        height: 55px;
        line-height: 55px;
        background-color: rgb(255, 255, 255);
        box-shadow: rgb(228, 228, 238) 0px 0px 30px 5px;
        color: rgb(32, 28, 45);
        text-align: center;
        display: inline-block;
        border-radius: 50%;
        position: relative;
        margin: 0px 5px;
        font-size: 16px;
        font-weight: 600;
    }

        .pagination-area .page-numbers:hover, .pagination-area .page-numbers.current {
            color: rgb(255, 255, 255);
            background-color: rgb(0 147 170);
        }

        .pagination-area .page-numbers i {
            position: relative;
            top: 5.4px;
            font-size: 25px;
        }

.footer-area {
    background-image: url("../images/footer-bg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.single-footer-widget {
    margin-bottom: 30px;
}

    .single-footer-widget .widget-logo {
        margin-bottom: 25px;
    }

    .single-footer-widget h3 {
        margin-bottom: 25px;
        font-size: 25px;
        color: rgb(255, 255, 255);
    }

    .single-footer-widget p {
        margin-bottom: 0px;
        color: rgb(255, 255, 255);
        font-size: 14px;
    }

    .single-footer-widget .widget-social {
        padding-left: 0px;
        margin-top: 30px;
        margin-bottom: 0px;
    }

        .single-footer-widget .widget-social li {
            display: inline-block;
            list-style-type: none;
            margin-right: 10px;
        }

            .single-footer-widget .widget-social li:last-child {
                margin-right: 0px;
            }

            .single-footer-widget .widget-social li a i {
                display: inline-block;
                height: 45px;
                width: 45px;
                line-height: 45px;
                background-color: rgb(90, 87, 100);
                color: rgb(255, 255, 255);
                text-align: center;
                border-radius: 50%;
                font-size: 20px;
                transition: all 0.6s ease 0s;
            }

                .single-footer-widget .widget-social li a i:hover {
                    background-color: rgb(255, 255, 255);
                    color: rgb(0 147 170);
                    transform: translateY(-5px);
                }

    .single-footer-widget .footer-quick-links {
        padding-left: 0px;
        list-style-type: none;
        display: flex;
        flex-wrap: wrap;
        margin: -15px -15px 0px;
    }

        .single-footer-widget .footer-quick-links li {
            -webkit-box-flex: 0;
            flex: 0 0 45%;
            max-width: 45%;
            font-size: 14px;
            padding-left: 15px;
            padding-right: 15px;
            padding-top: 20px;
        }

            .single-footer-widget .footer-quick-links li a {
                display: inline-block;
                color: rgb(255, 255, 255);
            }

                .single-footer-widget .footer-quick-links li a:hover {
                    color: rgb(0 147 170);
                }

    .single-footer-widget .widget-info {
        padding-left: 0px;
        margin-top: 20px;
        margin-bottom: 0px;
    }

        .single-footer-widget .widget-info li {
            list-style-type: none;
            margin-bottom: 22px;
            position: relative;
            padding-left: 28px;
            color: rgb(255, 255, 255);
            font-size: 16px;
        }

            .single-footer-widget .widget-info li i {
                position: absolute;
                left: 0px;
                top: 0px;
                color: rgb(0 147 170);
                font-size: 22px;
            }

            .single-footer-widget .widget-info li a {
                color: rgb(255, 255, 255);
            }

                .single-footer-widget .widget-info li a:hover {
                    color: rgb(0 147 170);
                }

            .single-footer-widget .widget-info li:first-child i {
                top: 5px;
            }

            .single-footer-widget .widget-info li:last-child {
                margin-bottom: 0px;
            }

    .single-footer-widget .widget-newsletter .newsletter-content {
        margin-top: 20px;
    }

        .single-footer-widget .widget-newsletter .newsletter-content p {
            font-size: 15px;
            margin-bottom: 0px;
        }

    .single-footer-widget .widget-newsletter .newsletter-form {
        margin-top: 30px;
        position: relative;
    }

        .single-footer-widget .widget-newsletter .newsletter-form .input-newsletter {
            display: block;
            width: 100%;
            background-color: rgb(90, 87, 100);
            border: none;
            height: 80px;
            padding: 15px;
            border-radius: 10px;
            outline: 0px;
            color: rgb(255, 255, 255);
        }

            .single-footer-widget .widget-newsletter .newsletter-form .input-newsletter::-webkit-input-placeholder {
                color: rgb(255, 255, 255);
                transition: all 0.6s ease 0s;
            }

            .single-footer-widget .widget-newsletter .newsletter-form .input-newsletter::placeholder {
                color: rgb(255, 255, 255);
                transition: all 0.6s ease 0s;
            }

            .single-footer-widget .widget-newsletter .newsletter-form .input-newsletter:focus::-webkit-input-placeholder {
                color: transparent;
                transition: all 0.6s ease 0s;
            }

            .single-footer-widget .widget-newsletter .newsletter-form .input-newsletter:focus::placeholder {
                color: transparent;
                transition: all 0.6s ease 0s;
            }

        .single-footer-widget .widget-newsletter .newsletter-form button {
            position: absolute;
            right: 10px;
            top: 10px;
            height: 60px;
            width: 60px;
            line-height: 60px;
            background-color: rgb(0 147 170);
            border: none;
            transition: all 0.6s ease 0s;
            color: rgb(255, 255, 255);
            border-radius: 50%;
            font-size: 25px;
        }

            .single-footer-widget .widget-newsletter .newsletter-form button:hover, .single-footer-widget .widget-newsletter .newsletter-form button:focus {
                background-color: rgb(29 164 194);
                color: rgb(255, 255, 255);
            }

        .single-footer-widget .widget-newsletter .newsletter-form #validator-newsletter {
            color: red;
            margin-top: 10px;
            font-weight: 400;
            font-size: 15px;
        }

.copyright-area {
    margin-top: 70px;
    padding-bottom: 35px;
}

    .copyright-area .copyright-area-content {
        text-align: center;
        padding-top: 35px;
        border-top: 1px solid rgb(57, 54, 69);
    }

        .copyright-area .copyright-area-content p {
            color: rgb(255, 255, 255);
            font-size: 15px;
            font-weight: 500;
        }

            .copyright-area .copyright-area-content p a {
                display: inline-block;
                font-weight: 500;
                color: rgb(0 147 170);
            }

                .copyright-area .copyright-area-content p a:hover {
                    color: rgb(29 164 194);
                }

.go-top {
    position: fixed;
    cursor: pointer;
    bottom: -100px;
    right: 20px;
    color: rgb(255, 255, 255);
    background-color: rgb(32, 28, 45);
    z-index: 4;
    width: 45px;
    text-align: center;
    height: 45px;
    opacity: 0;
    visibility: hidden;
    border-radius: 50%;
    font-size: 22px;
    transition: all 0.6s ease 0s;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 10px;
}

    .go-top i {
        position: absolute;
        right: 0px;
        left: 0px;
        top: 45%;
        transform: translateY(-45%);
        text-align: center;
        font-size: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    .go-top.active {
        opacity: 1;
        visibility: visible;
        bottom: 50px;
    }

    .go-top:hover {
        background-color: rgb(0 147 170);
        color: rgb(255, 255, 255);
        transition: all 0.6s ease 0s;
        box-shadow: rgba(50, 50, 93, 0.11) 0px 4px 6px, rgba(0, 0, 0, 0.08) 0px 1px 3px;
        transform: translateY(-5px);
    }

.SendRequest[disabled="disabled"] {
    background: rgb(68 115 118);
}

.logo-gif {
    width: 50px;
}

.seprator::after {
    content: " تومان";
}

.p-30 {
    margin: auto;
    padding: 10px 30px !important;
}

.estate-hBottom {
    padding: 4px 30px;
    background: rgb(0 147 170);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    color: rgb(255, 255, 255) !important;
    font-size: 20px !important;
    font-weight: bolder !important;
}

.estate-hTop {
    border: 1px solid rgb(0 147 170);
    padding: 5px 30px;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    font-size: 18px !important;
}

.estate-hRight {
    border: 1px solid rgb(0 147 170);
    padding: 5px 20px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    font-size: 13.5px !important;
    height: 37px !important;
    color: rgb(0 147 170);
    font-weight: bold !important;
}

.estate-hLeft {
    background: rgb(0 147 170);
    padding: 6.2px 12px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    color: rgb(255, 255, 255) !important;
    font-size: 15px !important;
    font-weight: bolder !important;
    height: 37px !important;
}

.estate-holder {
    position: relative;
    display: inline-grid;
    text-align: center;
}

.estate-logo {
    opacity: 0.2;
    margin-top: 5px;
    width: 60%;
}

.featured-item .featured-top-content .featured-list li {
    margin-bottom: 0px !important;
}

.fav-estate {
/*    right: 5px;
    top: 50%;
    position: absolute !important;*/
    cursor: pointer;
}

    .fav-estate i {
        color: rgb(0 147 170);
        font-size: 25px;
    }

.justify-content-center {
    margin: auto;
}

div#advance-search {
    background: #e4e4e4;
    padding: 12px;
    cursor: pointer;
}

.bg-estate {
    background: url(/images/bg-estate.svg);
}

.bg-search, .bg-common {
    background: url(/images/bg-search.svg);
}

.bg-common, .bg-estate {
    background-repeat: repeat-y;
    background-size: contain;
    background-position: center;
    position: relative
}

.show-pass {
    cursor: pointer;
    position: absolute;
    top: 17px;
    left: 14px;
}

    .show-pass .fa-eye {
        display: none;
    }

    .show-pass.active .fa-eye-slash {
        display: none;
    }

    .show-pass.active .fa-eye {
        display: inline-block;
    }

.property-details-image img {
    max-height: 329px;
}

@media only screen and (max-width: 767px) {
    .custom-modal .modal-dialog {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0.1rem !important;
    }

    .holder-button.next {
        right: 0px !important
    }

    .holder-button.left {
        left: 0px !important
    }

    .estate-info-holder b {
        font-size: 2.8vh !important;
    }

    .estate-holder {
        width: 100%;
        margin: 6px 0;
    }
    .tag.tag-2 {
        display: none !important;
    }
    .property-details-desc .details-content .price {
        font-size: 2.1vh !important;
    }
}

.brown-bgcolor {
    background: #b08e1f;
}
.brown-color {
    color: #b08e1f !important;
    border: 1px solid rgb(176 142 31);
}

.brown-color-none-border {
    color: #b08e1f !important;
}