/*------------------------------------------------------------------

Project:        Realock- Smart Real Estate
Last change:    
Assigned to:    
Primary use:    Real Estate property Website 

-------------------------------------------------------------------*/

/*------------------------------------------------------------------

				    	[Table of contents]

- Default css
- Button
- Animation
- Realock Slider Section
- Heading and Title
- Search form
- Header Top
- Header 
- Header Drop-Down Menu
- Desktop Sidebar
- Fixed header
- Mobile Sidebar
- Mobile Sidebar Drop-Down Menu
- About
- Property Listings
- Buyers and Sellers
- Categories
- Testimonials
- Agents
- Estimates
- Footer

-------------------------------------------------------------------*/

/*------------------------ [Color codes] ------------------------
						
Background:     #ffffff 
Content:        #888888 
Heading h1:     #1d44f9
Header h2:      #000000
paragraph p:    #888888    

a (standard):   #000000
a (visited):    #1d44f9
a (hover):      #1d44f9
a (active):     #1d44f9

-------------------------------------------------------------------*/

/************************ Default css ***************************/

.realock-template {
    scroll-behavior: smooth;
}

.realock-template {
    margin: 0;
    padding: 0;
    color: #888;
    background-color: #0c0c0c;
    overflow: visible !important;
}

.realock-template h1,
.realock-template h2,
.realock-template h3,
.realock-template h4,
.realock-template h5,
.realock-template h6,
.realock-template p {
    margin: 0;
    padding: 0;
}

.realock-template h1 {
    font-size: 60px;
    font-family: proxima-nova-extra-bold;
    color: #1d44f9;
}

.realock-template h2 {
    font-size: 48px;
    font-family: proxima-nova-extra-bold;
    color: #000000;
}

.realock-template h3 {
    font-size: 30px;
    font-family: proxima-nova-bold;
    color: #000000;
}

.realock-template h4 {
    font-size: 24px;
    font-family: lato-regular;
    color: #ffffff;
}

.realock-template h5 {
    font-size: 18px;
    font-family: lato-semi-bold;
    color: #ffffff;
}

.realock-template h6 {
    font-size: 14px;
    font-family: lato-semi-bold;
    color: #888888;
}

.realock-template p {
    font-size: 18px;
    font-family: lato-semi-bold;
    color: #888;
}

.realock-template a {
    text-decoration: none;
}

.realock-template ul {
    margin: 0;
    padding: 0;
}

.realock-template li {
    list-style-type: none;
}

.realock-template .mt-100 {
    margin-top: 100px;
}

.realock-template .mt-15 {
    margin-top: 15px;
}

.realock-template .pt-80 {
    padding-top: 80px;
}

.realock-template .icon {
    font-size: 16px;
    vertical-align: middle;
    margin-left: 10px;
}

.realock-template .nav-link {
    display: block;
    font-family: proxima-nova-bold;
    text-transform: capitalize;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

/********************************* Button ***********************/

.realock-template .btn {
    font-family: proxima-nova-bold;
    font-size: 16px;
    font-weight: normal;
    color: #ffffff;
    background-color: #1d44f9;
    border: 3px solid #1d44f9;
    border-radius: 10px;
    text-transform: capitalize;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.realock-template .btn:hover {
    color: #1d44f9;
    background-color: #ffffff;
}

.realock-template .theme_button {
    text-align: right;
}

/****************************** Animation ***********************/

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
    }

    100% {
        opacity: 0.9;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
    }
}

@keyframes cssAnimation {
    from {
        -webkit-transform: scale(1) translate(0px);
    }

    to {
        -webkit-transform: scale(1.3) translate(0px);
    }
}

@-webkit-keyframes cssAnimation {
    from {
        -webkit-transform: scale(1) translate(0px);
    }

    to {
        -webkit-transform: scale(1.3) translate(0px);
    }
}

/************************ Realock Slider Section ******************/

.realock-template #realock_slider_section {
    margin: 0;
    position: relative;
}

.realock-template .about_slider {
    position: relative;
}

.realock-template .about_slider .slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.realock-template .slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}

.realock-template .about_slider .slide_1 {
    background-image: url(../images/slider-images/slider-bg-1.png);
}

.realock-template .about_slider .slide_2 {
    background-image: url(../images/slider-images/slider-bg-2.png);
}

.realock-template .about_slider .slide_3 {
    background-image: url(../images/slider-images/slider-bg-3.png);
}

.realock-template .about_slider.slick-active .slide {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    animation: cssAnimation 5s 1 ease-in-out forwards;
    -webkit-animation: cssAnimation 5s 1 ease-in-out forwards;
    -moz-animation: cssAnimation 5s 1 ease-in-out forwards;
    -ms-animation: cssAnimation 5s 1 ease-in-out forwards;
    -o-animation: cssAnimation 5s 1 ease-in-out forwards;
}

.realock-template .slick-dots {
    bottom: 80px !important;
}

.realock-template .slick-dots li {
    margin: 0 10px !important;
}

.realock-template .slick-active button:before {
    color: #1d44f9 !important;
    border: 0px solid RGBA(29, 68, 249, 1);
    border-radius: 100%;
    outline: 2px solid #1d44f9ff;
    outline-offset: 0px;
}

.realock-template #realock_slider_section .slick-dots li button:before {
    opacity: 1;
    font-size: 44px;
    color: #ffffff;
}

/************** Heading and Title Realock Slider Section **********/

.realock-template .about_slider .info_about_slider {
    max-width: 1030px;
    margin: 0 auto;
    padding-top: 190px;
    padding-bottom: 280px;
}

.realock-template .about_slider .top_realock_slider {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9019607843137255) 50%,
            rgba(255, 255, 255, 0) 100%) !important;
    display: flex;
    align-items: center;
    margin-bottom: 130px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
}

.realock-template.heading_for_about_slider h2 {
    font-size: 60px;
    line-height: 90px;
    color: #1d44f9;
    text-transform: capitalize;
    margin: 0;
    padding: 20px 0px;
}

.realock-template .para_for_about_slider {
    padding-right: 30px;
}

.realock-template .para_for_about_slider p {
    line-height: 30px;
    color: #000000;
}

/************** Search Form Realock Slider Section ****************/

.realock-template .bottom_realock_slider {
    position: absolute;
    top: 65%;
    left: 0px;
    right: 0px;
    width: 100%;
    margin: 0px auto;
    max-width: 1030px;
}

.realock-template .about_slider .bottom_realock_slider {
    padding-bottom: 0;
}

.realock-template .search_form_for_about_slider {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 15px;
    padding: 15px 30px;
    box-shadow: 0px 10px 30px 0px rgba(1, 1, 1, 0.08);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -moz-box-shadow: 0px 10px 30px 0px rgba(1, 1, 1, 0.08);
    -webkit-box-shadow: 0px 10px 30px 0px rgba(1, 1, 1, 0.08);
    -o-box-shadow: 0px 10px 30px 0px rgba(1, 1, 1, 0.08);
    -ms-box-shadow: 0px 10px 30px 0px rgba(1, 1, 1, 0.08);
}

.realock-template .search_form_for_about_slider .city_icon {
    width: 5%;
}

.realock-template .search_form_for_about_slider .city_icon .fa-city {
    font-size: 24px;
    color: #000000;
}

.realock-template .search_form_for_about_slider .placeholder_about_slider_section {
    width: 70%;
}

.realock-template .search_form_for_about_slider .placeholder_about_slider_section .form_placeholder {
    width: 100%;
    border: none;
    font-family: lato-semi-bold;
    font-size: 16px;
    padding: 10px 15px;
}

.realock-template .search_form_for_about_slider .placeholder_about_slider_section .form_placeholder:focus {
    outline: 2px solid #1d44f9;
    color: #000000;
    border-radius: 5px;
}

.realock-template .search_form_for_about_slider .filter_icon {
    width: 10%;
    margin-right: 20px;
    display: flex;
    justify-content: flex-end;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
}

.realock-template .search_form_for_about_slider .filter_icon .svg_icon {
    width: 50px;
    height: 50px;
    border: 2px solid #ebebeb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.realock-template .search_form_for_about_slider .filter_icon .svg_icon svg {
    width: 25px;
    height: 25px;
    color: #000000;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.realock-template .search_form_for_about_slider .filter_icon .svg_icon:hover {
    border: 2px solid #1d44f9;
    cursor: pointer;
}

.realock-template .search_form_for_about_slider .filter_icon .svg_icon:hover svg {
    color: #1d44f9;
}

.realock-template .search_form_for_about_slider .submit_button_about_slider_section {
    width: 15%;
    text-align: end;
}

.realock-template .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider {
    font-family: proxima-nova-bold;
    font-size: 16px;
    color: #ffffff;
    background-color: #1d44f9;
    text-transform: capitalize;
    border: 3px solid #1d44f9;
    border-radius: 10px;
    padding: 10px 40px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

.realock-template .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider:hover {
    color: #1d44f9;
    background-color: #ffffff;
    border: 3px solid #1d44f9;
}

.realock-template .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider:focus {
    outline: none;
}

/************ Header Top **************/

.realock-template .header_top .contact_information {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    padding: 0 70px;
    background-color: #000000;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
}

.realock-template.contact_information .column_3 {
    margin-left: auto;
}

.realock-template .contact_information .header_top_icons {
    font-size: 14px;
    color: #ffffff;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.realock-template .contact_information .header_top_icons:hover {
    color: #888888;
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
}

.realock-template .contact_information .header_top_text {
    font-family: lato-regular;
    font-size: 14px;
    color: #ffffff;
    margin-left: 10px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.realock-template .contact_information .header_top_text:hover {
    color: #888888;
}

.realock-template .contact_information .column_1 .contact_number {
    margin-right: 70px;
}

.realock-template .contact_information .column_3 a {
    margin-right: 18px;
}

.realock-template .contact_information .column_3 a:last-child {
    margin-right: 0;
}

.realock-template .site_header.fixed-header .header_top {
    display: none;
}

/************** Header ****************/

.realock-template .navbar {
    padding: 0;
}

.realock-template .site_header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
}

.realock-template .navbar-expand-lg .navbar-collapse {
    justify-content: flex-end;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
}

.realock-template .realock-template .navbar-expand-lg .navbar-nav {
    padding: 30px 0px;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
}

.realock-template .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px;
    line-height: 16px;
    color: #000000;
    padding: 15px 20px;
}

.realock-template .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #1d44f9 !important;
}

.realock-template .navbar-expand-lg .navbar-nav .nav-link.header_button {
    color: #ffffff;
    margin-left: 20px;
    margin-right: 20px;
}

.realock-template .site_color.coloractive {
    outline: 2px dashed #1d44f9;
    outline-offset: 2px;
}

.realock-template .navbar-light .navbar-toggler {
    font-size: 24px;
    color: #000000;
    border: 2px solid #ebebeb;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    padding: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.realock-template .navbar-light .navbar-toggler:hover {
    color: #1d44f9 !important;
    border: 2px solid #1d44f9 !important;
}

.realock-template .navbar-light .navbar-toggler:focus,
.navbar-light .navbar-toggler:focus-visible {
    outline: none;
    box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    -webkit-box-shadow: 0 0 0 0;
    -o-box-shadow: 0 0 0 0;
    -ms-box-shadow: 0 0 0 0;
}

.realock-template .navbar-light .navbar-toggler svg:focus {
    outline: none;
}

.realock-template .site_header .site_logo {
    font-family: proxima-nova-extra-bold;
    font-size: 36px;
    line-height: 48px;
    color: #000000;
    text-transform: capitalize;
}

.realock-template .site_header .site_logo span {
    color: #1d44f9;
}

/************** Header drop-down Menu ****************/

.realock-template .dropdown-toggle::after {
    display: none;
}

.realock-template .navbar-expand-lg .navbar-nav .active:hover .dropdown-menu {
    display: block;
}

.realock-template .dropdown-menu li .nav-link.active {
    color: #1d44f9 !important;
    background-color: #e3e3e3;
}

/************** Desktop Sidebar ****************/

.realock-template .sidebar_icon {
    display: block !important;
}

.realock-template .offcanvas.offcanvas-end {
    border-left: 1px solid rgba(0, 0, 0, .2) !important;
    visibility: hidden !important;
    transition: all .7s ease !important;
    transform: translateX(100%) !important;
    -webkit-transition: all .7s ease !important;
    -moz-transition: all .7s ease !important;
    -o-transition: all .7s ease !important;
    -ms-transition: all .7s ease !important;
    -webkit-transform: translateX(100%) !important;
    -moz-transform: translateX(100%) !important;
    -o-transform: translateX(100%) !important;
    -ms-transform: translateX(100%) !important;
}

.realock-template .offcanvas.offcanvas-end.show {
    border-left: 1px solid rgba(0, 0, 0, .2) !important;
    visibility: visible !important;
    transition: all .7s ease !important;
    transform: translateX(0%) !important;
    -webkit-transition: all .7s ease !important;
    -moz-transition: all .7s ease !important;
    -o-transition: all .7s ease !important;
    -ms-transition: all .7s ease !important;
    -webkit-transform: translateX(0%) !important;
    -moz-transform: translateX(0%) !important;
    -o-transform: translateX(0%) !important;
    -ms-transform: translateX(0%) !important;
}

.realock-template .offcanvas {
    max-width: 100%;
    background-color: #1d44f9 !important;
    background-clip: padding-box;
    position: fixed !important;
    bottom: 0 !important;
    z-index: 1045 !important;
    display: flex;
    flex-direction: column;
    outline: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
}

.realock-template .offcanvas-end {
    width: 500px;
}

.realock-template .navbar-expand-lg .offcanvas-header {
    display: block;
    text-align: right;
    margin-top: 20px;
    margin-right: 20px;
    padding: 0;
}

.realock-template .navbar-expand-lg .offcanvas-header .btn-close {
    color: #ffffff !important;
    border: 2px solid #000000;
    border-radius: 10px;
    width: 45px;
    height: 45px;
    margin: 0;
    padding: 0;
    opacity: 1;
    filter: invert(1);
    transition: all .3s ease;
    -webkit-filter: invert(1);
    -moz-filter: invert(1);
    -ms-filter: invert(1);
    -o-filter: invert(1);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.realock-template .navbar-expand-lg .offcanvas-header .btn-close:hover {
    filter: invert(0);
    background-color: #ffffff;
    border: 2px solid #ffffff;
    -webkit-filter: invert(0);
    -moz-filter: invert(0);
    -ms-filter: invert(0);
    -o-filter: invert(0);
}

.realock-template .navbar-expand-lg .offcanvas-header .btn-close:focus-visible {
    outline: none;
}

.realock-template .navbar-expand-lg .offcanvas-header .btn-close:focus {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    -o-box-shadow: none;

}

.realock-template .sidebar-nav {
    margin: 0;
    padding: 0 20px;
}

.realock-template .sidebar-nav .nav-item .nav-link {
    font-size: 24px;
    color: #ffffff;
    padding: 12px 30px 12px 30px;
    border-radius: 10px;
}

.realock-template .sidebar-nav .nav-item {
    margin: 10px 0px;
}

.realock-template .sidebar-nav .nav-item .nav-link:hover {
    color: #1d44f9 !important;
    background-color: #ffffff !important;
}

/************** Fixed Header ****************/

.realock-template .fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
    right: 0;
    animation: slide-down 0.7s;
    box-shadow: 0px 1px 5px #ebebeb;
    -webkit-animation: slide-down 0.7s;
    -moz-animation: slide-down 0.7s;
    -ms-animation: slide-down 0.7s;
    -o-animation: slide-down 0.7s;
    -moz-box-shadow: 0px 1px 5px #ebebeb;
    -webkit-box-shadow: 0px 1px 5px #ebebeb;
    -o-box-shadow: 0px 1px 5px #ebebeb;
    -ms-box-shadow: 0px 1px 5px #ebebeb;
}

/**************** Mobile Sidebar ***************/

.realock-template .navbar-expand-lg .offcanvas-body {
    display: block;
    padding: 20px 0px 0px 0px;
}

.realock-template .mobile_sidebar_nav {
    padding: 0 10px;
    position: relative;
}

.realock-template .mobile_sidebar_nav .nav-item {
    margin: 5px 0px;
}

.realock-template .mobile_sidebar_nav .nav-item .nav-link {
    font-size: 22px;
    color: #ffffff;
    padding: 8px 30px 8px 30px;
    border-radius: 10px;
}

.realock-template .mobile_sidebar_nav .nav-item .nav-link:hover {
    color: #1d44f9;
    background-color: #ffffff;
}

/************* Mobile Sidebar Drop-down Menu *********/

.realock-template .fa-plus {
    position: absolute;
    top: 12px;
    right: 30px;
    font-size: 24px;
    color: #ffffff;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

.realock-template .fa-plus:focus {
    outline: none;
}

.realock-template .fa-plus.hide_open_icon {
    display: none;
}

.realock-template .mobile_sidebar_nav .nav-item .nav-link:hover+.fa-plus {
    color: #1d44f9;
}

.realock-template .fa-minus {
    display: none;
    position: absolute;
    top: 13px;
    right: 30px;
    font-size: 24px;
    color: #888;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

.realock-template .fa-minus:focus {
    outline: none;
}

.realock-template .mobile_sidebar_nav .nav-item .nav-link:hover+.fa-minus {
    color: #1d44f9;
}

.realock-template .fa-minus.show_close_icon {
    display: block;
}

.realock-template .mobile_sub_menu {
    opacity: 0;
    visibility: hidden;
    background-color: #ffffff;
    border-radius: 10px;
    height: 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}

.realock-template .mobile_sub_menu.show_sub_menu {
    opacity: 1;
    visibility: visible;
    height: auto;
    padding: 5px 0px;
    margin: 5px 0px;
}

.realock-template .mobile_sub_menu.show_sub_menu:hover+.fa-minus {
    color: #1d44f9;
}

.realock-template .mobile_sub_menu .sub-item .nav-link {
    font-size: 22px;
    line-height: 30px;
    color: #1d44f9;
    padding: 8px 30px 8px 30px;
    border-radius: 10px;
}

.realock-template .mobile_sub_menu .sub-item .nav-link:hover {
    color: #000000;
}

.realock-template .mobile_sub_menu .sub-item .nav-link.active {
    color: #1d44f9;
    background-color: #e9ecef !important;
}

/************* About Section ****************/

.realock-template .bg_img_about {
    background-image: url(../images/about-images/bg-about.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px;
}

.realock-template .about_house_info {
    border: 2px solid #ffffff;
    background-color: rgba(0, 0, 0, 0.7);
    padding-left: 50px !important;
    padding-right: 70px !important;
}

/************* Heading & Title About Section ****************/

.realock-template .title_about h5 {
    padding-top: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.realock-template .heading_about h2 {
    color: #ffffff;
    line-height: 55px;
    padding-top: 5px;
}

.realock-template .para_about p {
    color: #ffffff;
    padding-top: 20px;
    padding-bottom: 70px;
}

.realock-template .about_button {
    margin-bottom: 50px;
}

/************* Property Listing Section ****************/

.realock-template #property-listings .slick-list {
    margin: 0 -15px;
}

.realock-template .property {
    position: relative;
    padding: 0 15px;
}

.realock-template .property .property-price {
    width: 100px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #ffffff;
    background-color: #000000;
    border-radius: 15px;
    position: absolute;
    top: 20px;
    right: 35px;
    z-index: 1;
    transition: all 0.3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.realock-template .property .property-image {
    overflow: hidden;
    border-radius: 15px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.realock-template .property .property-image img {
    width: 100% !important;
    border-radius: 15px;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
}

.realock-template .property .property-title {
    text-transform: capitalize;
    margin-top: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.realock-template .property .property-address {
    margin-top: 10px;
}

.realock-template .property .facilities {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
}

.realock-template .property .facilities span {
    color: #000000;
}

.realock-template .property .property-image:hover .property-price {
    color: #ffffff;
    background-color: #1d44f9;
}

.realock-template .property .property-image img:hover {
    transform: scale(1.5);
    cursor: pointer;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
}

.realock-template .property .property-title:hover {
    color: #1d44f9;
    cursor: pointer;
}

/************* Buyer & Seller Section ****************/

.realock-template .bg_img_buyer_seller {
    background-image: url(../images/house-images/BG-for-Light.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 90px 0px;
}

.realock-template .buyer_seller_top_inner_section .left_column {
    position: relative;
    z-index: 1;
}

.realock-template .buyer_seller_top_inner_section .left_column:after {
    content: '';
    position: absolute;
    z-index: -1;
    left: -70px;
    bottom: 0px;
    background-image: url(../images/background-shape/Cross.png);
    background-color: #1d44f9;
    border-radius: 100%;
    width: 150px;
    height: 150px;
}

.realock-template #buyer_seller_section .img_shadow {
    box-shadow: 0px 15px 40px 0px rgba(3, 3, 3, 0.25) !important;
    -moz-box-shadow: 0px 15px 40px 0px rgb(3 3 3 / 25%) !important;
    -webkit-box-shadow: 0px 15px 40px 0px rgb(3 3 3 / 25%) !important;
    -o-box-shadow: 0px 15px 40px 0px rgb(3 3 3 / 25%) !important;
    -ms-box-shadow: 0px 15px 40px 0px rgb(3 3 3 / 25%) !important;
}

.realock-template .buyer_seller_top_inner_section .left_column img {
    border-radius: 0px 100px 0px 100px;
}

.realock-template .buyer_seller_title h5 {
    color: #1d44f9;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 90px;
}

.realock-template .buyer_seller_heading h2 {
    margin-top: 5px;
    text-transform: capitalize;
}

.realock-template .buyer_seller_para p {
    color: #000000;
    line-height: 30px;
    margin-top: 20px;
}

.realock-template .buyer_seller_top_inner_section .right_column .buyer_seller_para p {
    width: 77%;
}

.realock-template .buyer_seller_bottom_inner_section .left_column .buyer_seller_para p {
    width: 91%;
}

.realock-template .buyer_seller_button a {
    margin-top: 70px;
}

.realock-template .buyer_seller_bottom_inner_section {
    padding-top: 100px;
}

.realock-template .buyer_seller_bottom_inner_section .left_column {
    padding-left: 100px;
}

.realock-template .buyer_seller_bottom_inner_section .right_column {
    text-align: right;
    position: relative;
    z-index: 1;
}

.realock-template .buyer_seller_bottom_inner_section .right_column:after {
    content: '';
    position: absolute;
    z-index: -1;
    right: -70px;
    bottom: 0px;
    background-image: url(../images/background-shape/Cross.png);
    background-color: #1d44f9;
    border-radius: 100%;
    width: 150px;
    height: 150px;
}

.realock-template .buyer_seller_bottom_inner_section .right_column img {
    border-radius: 100px 0px 100px 0px;
}

/************* Category Section ****************/

.realock-template .category_inner_section {
    margin-top: 50px;
}

.realock-template .real_estate_categories {
    padding-top: 30px;
}

.realock-template .category_items {
    overflow: hidden;
    border-radius: 15px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.realock-template .real_estate_categories .category_items_link {
    position: relative;
    display: block;
}

.realock-template .p_category_image {
    height: 250px;
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
}

.realock-template .p_category_image:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    transition: all .7s ease;
    background-image: -webkit-linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -o-linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0) 100%);
    background-image: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -o-transition: all .7s ease;
    -ms-transition: all .7s ease;
}

.realock-template .real_estate_categories .category_items_link .category_title {
    text-transform: capitalize;
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 1;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 8px;
}

.realock-template .category_items:hover .category_items_link .p_category_image {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
}

.realock-template .category_items:hover .category_items_link .p_category_image:after {
    opacity: 0.5;
}

/************* Testimonial Section ****************/

.realock-template .bg_img_testimonial {
    background-image: url(../images/house-images/BG-for-Light.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 90px 0px;
}

.realock-template .testimonial_inner_section {
    padding-top: 60px;
}

.realock-template .testimonial_inner_section .slick-list {
    margin: 0 -15px;
}

.realock-template .client_testimonials {
    padding: 20px 15px 40px 15px;
}

.realock-template .testimonial {
    background-color: #ffffff;
    padding: 40px 35px 30px 30px;
    border-radius: 0px 50px 0px 50px;
    box-shadow: 0px 15px 20px rgba(3, 3, 3, 0.05);
    -moz-box-shadow: 0px 15px 20px rgb(3 3 3 / 5%);
    -webkit-box-shadow: 0px 15px 20px rgb(3 3 3 / 5%);
    -o-box-shadow: 0px 15px 20px rgb(3 3 3 / 5%);
    -ms-box-shadow: 0px 15px 20px rgb(3 3 3 / 5%);
}

.realock-template .testimonial_icon svg {
    font-size: 36px;
    color: #d9d9d9;
}

.realock-template .client_review p {
    font-family: lato-regular;
    font-style: italic;
    color: #888888;
    height: 190px;
    line-height: 30px;
    margin-top: 5px;
}

.realock-template .client_name h4 {
    font-family: proxima-nova-extra-bold;
    color: #000000;
    line-height: 30px;
    text-transform: capitalize;
}

.realock-template .client_destination h5 {
    color: #888888;
    margin-top: 10px;
}

.realock-template .testimonial_inner_section .slick-prev {
    width: 50px;
    height: 50px;
    border: 2px solid #1d44f9;
    border-radius: 10px;
    background-color: transparent;
    top: -70px;
    left: auto;
    right: 70px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.realock-template .testimonial_inner_section .slick-prev:before {
    content: '\f104';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    color: #1d44f9;
    opacity: 1;
}

.realock-template .testimonial_inner_section .slick-prev:hover {
    background-color: #1d44f9;
}

.realock-template .testimonial_inner_section .slick-prev:hover::before {
    color: #ffffff;
}

.realock-template .testimonial_inner_section .slick-next {
    width: 50px;
    height: 50px;
    border: 2px solid #1d44f9;
    border-radius: 10px;
    background-color: transparent;
    top: -70px;
    right: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.realock-template .testimonial_inner_section .slick-next:before {
    content: '\f105';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    color: #1d44f9;
    opacity: 1;
}

.realock-template .testimonial_inner_section .slick-next:hover {
    background-color: #1d44f9;
}

.realock-template .testimonial_inner_section .slick-next:hover::before {
    color: #ffffff;
}

/************* Agent Section ****************/

.realock-template #agent-listings .slick-list {
    margin: 0 -15px;
}

.realock-template .agent {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
    padding: 0 15px;
}

.realock-template .agent .agent_detail {
    position: relative;
    z-index: 1;
}

.realock-template .agent .foreground {
    position: relative;
}

.realock-template .agent .foreground .agent-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
}

.realock-template .agent_social {
    position: absolute;
    bottom: 30px;
    right: 25px;
}

.realock-template .agent_social .social_icons {
    display: block;
    color: #888888;
    font-size: 18px;
    line-height: 36px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.realock-template .agent .background {
    text-align: center;
}

.realock-template .agent .background .agent_description {
    display: inline-block;
    text-align: left;
}

.realock-template .agent .background .agent_description .agent-title {
    font-family: proxima-nova-extra-bold;
    line-height: 30px;
    color: #1d44f9;
    text-transform: capitalize;
    padding-top: 10px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.realock-template .agent .background .agent_description .agent-type {
    text-transform: capitalize;
    padding-bottom: 5px;
}

.realock-template .agent .agent_detail:after {
    content: '';
    height: 80%;
    width: 80%;
    box-shadow: 0px 15px 20px rgba(3, 3, 3, 0.05);
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
    border-radius: 20px;
    transition: all .7s ease;
    -moz-box-shadow: 0px 15px 20px rgb(3 3 3 / 5%);
    -webkit-box-shadow: 0px 15px 20px rgb(3 3 3 / 5%);
    -o-box-shadow: 0px 15px 20px rgb(3 3 3 / 5%);
    -ms-box-shadow: 0px 15px 20px rgb(3 3 3 / 5%);
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -o-transition: all .7s ease;
    -ms-transition: all .7s ease;
}

.realock-template .agent_social .social_icons:hover {
    color: #1d44f9;
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
}

.realock-template .agent .background .agent_description .agent-title:hover {
    color: #000000;
    cursor: pointer;
}

.realock-template .agent .agent_detail:hover::after {
    box-shadow: 5px 5px 7px #dedede;
    -moz-box-shadow: 5px 5px 7px #dedede;
    -webkit-box-shadow: 5px 5px 7px #dedede;
    -o-box-shadow: 5px 5px 7px #dedede;
    -ms-box-shadow: 5px 5px 7px #dedede;
}

/************* Estimate Section ****************/

.realock-template .estimate_inner_section {
    position: relative;
    z-index: 1;
    border-radius: 15px;
    box-shadow: 0px 15px 40px 0px rgba(1, 1, 1, 0.05);
    padding: 70px 100px;
    -moz-box-shadow: 0px 15px 40px 0px rgb(1 1 1 / 5%);
    -webkit-box-shadow: 0px 15px 40px 0px rgb(1 1 1 / 5%);
    -o-box-shadow: 0px 15px 40px 0px rgb(1 1 1 / 5%);
    -ms-box-shadow: 0px 15px 40px 0px rgb(1 1 1 / 5%);
}

.realock-template .estimate_inner_section:before {
    content: '';
    position: absolute;
    z-index: -1;
    left: -65px;
    bottom: -40px;
    background-image: url(../images/background-shape/bg-shape-2.png);
    width: 105px;
    height: 80px;
}

.realock-template .estimate_inner_section:after {
    content: '';
    position: absolute;
    z-index: -1;
    right: -65px;
    top: -40px;
    background-image: url(../images/background-shape/bg-shape-3.png);
    width: 105px;
    height: 80px;
}

.realock-template .estimate_inner_row {
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
}

.realock-template .estimate_para p {
    line-height: 30px;
}

.realock-template .estimate_inner_section .column_2 {
    text-align: center;
}

.realock-template .estimate_inner_section .column_2 .estimate_property_button {
    padding: 10px 30px;
    margin-right: 30px;
}

.realock-template .estimate_inner_section .column_2 .estimate_learn_button {
    padding: 10px 40px;
}

/******************* Footer ******************/

.realock-template .site_footer {
    background-color: #000000;
}

/******************* Footer Top **************/

.realock-template .footer_top {
    padding-top: 100px;
    padding-bottom: 30px;
    border-bottom: 1px solid #aaaaaa;
}

.realock-template .site_footer .site_logo {
    font-family: proxima-nova-extra-bold;
    font-size: 36px;
    line-height: 48px;
    color: #ffffff;
    text-transform: capitalize;
}

.realock-templatev.site_footer .site_logo span {
    color: #1d44f9;
}

.realock-template .site_footer .site_name {
    display: flex;
    align-items: center;
}

/*********** Footer Top Column 1 **********/

.realock-template .footer_top .column_1 .footer_logo {
    vertical-align: top;
}

/*********** Footer Top Column 2 **********/

.realock-template .footer_top .column_2 .site_contact_us {
    text-align: right;
    line-height: 30px;
}

.realock-template .footer_top .column_2 .site_contact_us a {
    color: #aaaaaa;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.realock-template .footer_top .column_2 .site_contact_us a:hover {
    color: #1d44f9;
}

/******************* Footer Middle ***********/

.realock-template .footer_middle {
    padding-top: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #aaaaaa;
}

/*********** Footer Middle Column 1 **********/

.realock-template .footer_middle .column_1 .site_about_heading {
    font-family: proxima-nova-bold;
    text-transform: capitalize;
}

.realock-template .footer_middle .column_1 .site_about_para {
    width: 75%;
    line-height: 30px;
    padding-top: 10px;
    padding-bottom: 20px;
}

.realock-template .footer_middle .column_1 .site_social_media .social_media_icons a {
    margin-right: 25px;
    color: #ffffff;
}

.realock-template .footer_middle .column_1 .site_social_media .social_media_icons a:hover {
    color: #1d44f9;
}

.realock-template .footer_middle .column_1 .site_social_media .social_media_icons a:hover svg {
    transform: scale(2);
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -o-transform: scale(2);
    -ms-transform: scale(2);
}

.realock-template .footer_middle .column_1 .site_social_media .social_media_icons a:last-child {
    margin-right: 0;
}

.realock-template .footer_middle .column_1 .site_social_media .social_media_icons a svg {
    font-size: 14px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}

/*********** Footer Middle Column 2 **********/

.realock-template .footer_middle .offer_menu_heading {
    font-family: proxima-nova-bold;
    text-transform: capitalize;
}

.realock-template .footer_middle .offer_menu {
    margin-top: 5px;
}

.realock-template .footer_middle .offer_menu .menu_item .menu_link {
    font-family: lato-semi-bold;
    font-size: 18px;
    line-height: 48px;
    color: #888;
    text-transform: capitalize;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.realock-template .footer_middle .company_menu_heading {
    font-family: proxima-nova-bold;
    text-transform: capitalize;
}

.realock-template .footer_middle .company_menu {
    margin-top: 5px;
}

.realock-template .footer_middle .company_menu .menu_item .menu_link {
    font-family: lato-semi-bold;
    font-size: 18px;
    line-height: 48px;
    color: #888;
    text-transform: capitalize;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.realock-template .site_about .column_2 .menu_item .menu_link:hover {
    color: #1d44f9;
}

/*********** Footer Middle Column 3 **********/

.realock-template .newsletter_form .form_heading {
    font-family: proxima-nova-bold;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.realock-template .newsletter_form .form_container {
    position: relative;
}

.realock-template .newsletter_form .form_container input {
    font-family: lato-semi-bold;
    font-size: 18px;
    color: #888888;
    width: calc(100% - 50px);
    height: 50px;
    padding-left: 20px;
}

.realock-template .newsletter_form .form_container input:focus-visible {
    outline: none;
}

.realock-template .newsletter_form .form_container input:focus {
    outline: 2px solid #1d44f9;
    outline-offset: -5px;
    color: #000000;
}

.realock-template.newsletter_form .form_container .form_submit_button {
    font-size: 24px;
    color: #ffffff;
    background-color: #1d44f9;
    border: none;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    outline: 2px solid #1d44f9;
    outline-offset: -3px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.realock-template .newsletter_form .form_container .form_submit_button:hover {
    color: #1d44f9;
    background-color: #ffffff;
    outline: 2px solid #1d44f9;
    outline-offset: -3px;
}

/******************* Footer Buttoom ***********/

.realock-template .footer_bottom {
    padding: 30px 0px;
}

/*********** Footer Bottom Column 1 **********/

.realock-template .footer_bottom .column_1 .site_copyright {
    line-height: 30px;
    text-transform: capitalize;
}

.realock-template .footer_bottom .column_1 .site_copyright span {
    color: #ffffff;
}

/*********** Footer Bottom Column 2 **********/

.realock-template .footer_bottom .column_2 {
    text-align: right;
}

.realock-template .footer_bottom .column_2 a {
    font-family: lato-semi-bold;
    font-size: 18px;
    line-height: 30px;
    color: #888888;
    text-transform: capitalize;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.realock-template .footer_bottom .column_2 a:hover {
    color: #1d44f9;
}

.realock-template .footer_bottom .column_2 .site_policy {
    padding-right: 70px;
}

/************ Realock Info Section **************/

.realock-template #realock_info .content_info {
    max-width: 1030px;
    margin: 0 auto;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 160px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
}

.realock-template #realock_info .content_info .row {
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
}

.realock-template .info_heading h1 {
    line-height: 90px;
    color: #000000;
    text-transform: capitalize;
}

.realock-template .para_info p {
    line-height: 30px;
}

.realock-template .para_info p span {
    color: #000000;
}

/************ Image Slider Section **************/

.realock-template #image_slider_section {
    position: relative;
    padding-bottom: 100px;
}

.realock-template .realock_form_content {
    position: absolute;
    top: -38px;
    left: 0px;
    right: 0px;
    z-index: 1;
    margin: 0px auto;
    max-width: 1030px;
    width: 100%;
}

.realock-template .search_form_realock {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 15px;
    padding: 15px 30px;
    box-shadow: 0px 10px 30px 0px rgb(1 1 1 / 8%);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -moz-box-shadow: 0px 10px 30px 0px rgb(1 1 1 / 8%);
    -webkit-box-shadow: 0px 10px 30px 0px rgb(1 1 1 / 8%);
    -o-box-shadow: 0px 10px 30px 0px rgb(1 1 1 / 8%);
    -ms-box-shadow: 0px 10px 30px 0px rgb(1 1 1 / 8%);
}

.realock-template .search_form_realock .city_icon {
    width: 5%;
}

.realock-template .search_form_realock .city_icon .svg_icon {
    font-size: 24px;
    color: #000000;
}

.realock-template .search_form_realock .realock_form_placeholder {
    width: 70%;
}

.realock-template .search_form_realock .realock_form_placeholder .form_placeholder {
    width: 100%;
    border: none;
    font-family: lato-semi-bold;
    font-size: 16px;
    padding: 10px 15px;
}

.realock-template .search_form_realock .realock_form_placeholder .form_placeholder:focus {
    outline: 2px solid #1d44f9;
    border-radius: 5px;
    color: #000000;
}

.realock-template.search_form_realock .filter_icon {
    width: 10%;
    margin-right: 20px;
    display: flex;
    justify-content: flex-end;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
}

.realock-template .search_form_realock .filter_icon .svg_icon {
    width: 50px;
    height: 50px;
    border: 2px solid #ebebeb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.realock-template .search_form_realock .filter_icon .svg_icon:hover {
    border: 2px solid #1d44f9 !important;
    cursor: pointer;
}

.realock-template .search_form_realock .filter_icon .svg_icon svg {
    width: 25px;
    height: 25px;
    color: #000000;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.realock-template .search_form_realock .filter_icon .svg_icon:hover svg {
    color: #1d44f9 !important;
}

.realock-template .search_form_realock .realock_form_button {
    width: 15%;
    text-align: end;
}

.realock-template .search_form_realock .realock_form_button .form_submit_button {
    font-family: proxima-nova-bold;
    font-size: 16px;
    color: #ffffff;
    background-color: #1d44f9;
    text-transform: capitalize;
    border: 3px solid #1d44f9;
    border-radius: 10px;
    padding: 10px 40px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

.realock-template .search_form_realock .realock_form_button .form_submit_button:hover {
    color: #1d44f9;
    background-color: #ffffff;
    border: 3px solid #1d44f9;
}

.realock-template .image_slider {
    position: relative;
}

.realock-template .image_slider:before {
    content: '';
    background-image: url(../images/background-shape/bg-shape-2.png);
    width: 105px;
    height: 80px;
    position: absolute;
    bottom: -45px;
    left: -65px;
}

.realock-template .image_slider:after {
    content: '';
    background-image: url(../images/background-shape/bg-shape-3.png);
    width: 105px;
    height: 80px;
    position: absolute;
    top: -45px;
    right: -65px;
}

.realock-template .image_slider .slick-list {
    border-radius: 15px;
}

.realock-template .image_slider .slide img {
    width: 100%;
    border-radius: 15px;
}

.realock-template .image_slider .slide.slick-active img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    animation: cssAnimation 5s 1 ease-in-out forwards;
    -webkit-animation: cssAnimation 5s 1 ease-in-out forwards;
    -moz-animation: cssAnimation 5s 1 ease-in-out forwards;
    -ms-animation: cssAnimation 5s 1 ease-in-out forwards;
    -o-animation: cssAnimation 5s 1 ease-in-out forwards;
}

@keyframes cssAnimation {
    from {
        -webkit-transform: scale(1) translate(0px);
    }

    to {
        -webkit-transform: scale(1.3) translate(0px);
    }
}

@-webkit-keyframes cssAnimation {
    from {
        -webkit-transform: scale(1) translate(0px);
    }

    to {
        -webkit-transform: scale(1.3) translate(0px);
    }
}

.realock-template .image_slider .slick-prev,
.realock-template .image_slider .slick-next {
    top: 52%;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 100%;
    box-shadow: 0px 10px 30px 0px rgb(3 3 3 / 20%);
    transition: all .3s ease;
    z-index: 1;
    -moz-box-shadow: 0px 10px 30px 0px rgb(3 3 3 / 20%);
    -webkit-box-shadow: 0px 10px 30px 0px rgb(3 3 3 / 20%);
    -o-box-shadow: 0px 10px 30px 0px rgb(3 3 3 / 20%);
    -ms-box-shadow: 0px 10px 30px 0px rgb(3 3 3 / 20%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.realock-template .image_slider .slick-prev:before {
    content: '\f104' !important;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 24px;
    color: #000000;
    opacity: 1;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.realock-template .image_slider .slick-next:before {
    content: '\f105' !important;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 24px;
    color: #000000;
    opacity: 1;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.realock-template .image_slider .slick-prev:hover,
.realock-template .image_slider .slick-next:hover {
    background-color: #1d44f9;
}

.realock-template .image_slider .slick-prev:hover:before,
.realock-template .image_slider .slick-next:hover:before {
    color: #ffffff;
}

/***************** Media Query *******************/

@media (max-width: 1300px) {

    .realock-template .image_slider:before,
    .realock-template .image_slider:after {
        display: none;
    }
}

@media (max-width: 1199px) {
    .realock-template .navbar-expand-lg .navbar-nav .nav-link {
        padding: 10px 10px;
    }

    .realock-template .header_button {
        margin-left: 10px;
    }

    .realock-template .navbar-light .navbar-toggler {
        width: 45px;
        height: 45px;
    }

    .realock-template #realock_info .content_info {
        padding-top: 60px;
        padding-bottom: 120px;
    }

    .realock-template #realock_info .content_info {
        max-width: 960px;
    }

    .realock-template .info_heading h1 {
        font-size: 54px;
        line-height: 70px;
    }

    .realock-template .para_info p {
        font-size: 16px;
    }

    .realock-template .realock_form_content {
        max-width: 860px;
    }
}

@media (max-width: 991px) {
    .realock-template .site_header .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .realock-template .sidebar-nav {
        padding: 0 10px;
    }

    .realock-template .sidebar-nav .nav-item {
        margin: 5px 0px;
    }

    .realock-template .sidebar-nav .nav-item .nav-link {
        font-size: 22px;
        padding: 8px 30px 8px 30px;
    }

    .realock-template #realock_info .content_info {
        padding-top: 20px;
        padding-bottom: 90px;
        max-width: 750px;
    }

    .realock-template #realock_info .content_info .row {
        padding-left: 15px;
        padding-right: 15px;
    }

    .realock-template .info_heading h1 {
        font-size: 46px;
        line-height: 60px;
    }

    .realock-template .para_info p {
        text-align: center;
    }

    .realock-template .realock_form_content {
        max-width: 660px;
    }

    .realock-template .image_slider .slick-prev,
    .realock-template .image_slider .slick-next {
        width: 45px;
        height: 45px;
    }

    .realock-template .image_slider .slick-prev {
        left: 25px;
    }

    .realock-template .image_slider .slick-next {
        right: 25px;
    }

    .realock-template .search_form_realock {
        padding: 15px 15px;
    }

    .realock-template .search_form_realock .city_icon {
        width: 10%;
    }

    .realock-template .search_form_realock .realock_form_placeholder {
        width: 60%;
    }

    .realock-template .search_form_realock .filter_icon {
        padding-right: 0px;
        width: 15%;
    }

    .realock-template .search_form_realock .filter_icon .svg {
        margin-right: 10px;
    }

    .realock-template .search_form_realock .realock_form_button {
        width: 20%;
        display: flex;
        justify-content: flex-end;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        -webkit-box-pack: end;
        -moz-box-pack: end;
        -ms-flex-pack: end;
        -webkit-justify-content: flex-end;
    }

    .realock-template .header_top .content_header_top {
        padding: 0 !important;
    }
}

@media (max-width: 767px) {
    .realock-template .header_top .contact_information {
        padding: 0 20px;
    }

    .realock-template .contact_information .header_top_text {
        display: none;
    }

    .realock-template .contact_information .header_top_icons {
        font-size: 24px;
    }

    .realock-template .contact_information .column_1 a .fa-square-phone {
        margin-right: 20px;
    }

    .realock-template .contact_information .column_3 a {
        margin-right: 20px;
    }

    .realock-template #realock_info .content_info .row {
        text-align: center;
    }

    .realock-template .info_heading h1 {
        font-size: 28px;
        line-height: 60px;
    }

    .realock-template #image_slider_section {
        padding-bottom: 80px;
    }

    .realock-template .realock_form_content {
        max-width: 480px;
        top: -32px;
    }

    .realock-template .search_form_realock {
        padding: 10px 15px;
    }

    .realock-template .search_form_realock .city_icon {
        display: none;
    }

    .realock-template .search_form_realock .realock_form_button .form_submit_button {
        padding: 10px 15px;
    }

    .realock-template .image_slider .slick-prev,
    .realock-template .image_slider .slick-next {
        width: 40px;
        height: 40px;
    }

    .realock-template .image_slider .slick-prev:before,
    .realock-template .image_slider .slick-next:before {
        font-size: 22px;
    }
}

@media (min-width: 480px) and (max-width: 530px) {
    .realock-template .realock_form_content {
        max-width: 420px;
    }
}

@media (max-width: 450px) {
    .realock-template .info_heading h1 {
        font-size: 23px;
        line-height: 30px;
    }

    .realock-template .para_info p {
        font-size: 15px;
        line-height: 24px;
    }

    .realock-template #realock_info .content_info {
        padding-bottom: 70px;
    }

    .realock-template .realock_form_content {
        max-width: 370px;
    }

    .realock-template .search_form_realock .filter_icon .svg_icon {
        width: 40px;
        height: 40px;
    }

    .realock-template .search_form_realock .realock_form_button .form_submit_button {
        padding: 10px 10px;
    }

    .realock-template .search_form_realock .realock_form_placeholder .form_placeholder {
        padding: 7px 15px;
    }

    .realock-template .search_form_realock .realock_form_button .form_submit_button {
        padding: 7px 10px;
    }

    .realock-template #image_slider_section {
        padding-bottom: 60px;
    }
}

@media (max-width: 400px) {
    .realock-template #realock_info .content_info .row {
        padding-left: 0px;
        padding-right: 0px;
    }

    .realock-template .info_heading h1 {
        font-size: 19px;
    }

    .realock-template .contact_information .header_top_icons {
        font-size: 20px;
    }

    .realock-template .contact_information .column_3 a {
        margin-right: 15px;
    }

    .realock-template .realock_form_content {
        max-width: 310px;
    }

    .realock-template .search_form_realock {
        padding: 8px 10px;
    }

    .realock-template .search_form_realock .realock_form_placeholder {
        width: 50%;
    }

    .realock-template .search_form_realock .filter_icon {
        width: 20%;
    }

    .realock-template .search_form_realock .realock_form_button {
        width: 25%;
    }

    .realock-template .search_form_realock .realock_form_placeholder .form_placeholder {
        padding: 7px 5px;
        font-size: 14px;
    }

    .realock-template .search_form_realock .realock_form_button .form_submit_button {
        padding: 5px 10px;
    }

    .realock-template #image_slider_section {
        padding-bottom: 40px;
    }

    .realock-template .image_slider .slick-prev:before,
    .realock-template .image_slider .slick-next:before {
        font-size: 20px;
    }

    .realock-template .image_slider .slick-prev,
    .realock-template .image_slider .slick-next {
        width: 30px;
        height: 30px;
    }

    .realock-template .image_slider .slick-prev {
        left: 10px;
    }

    .realock-template .image_slider .slick-next {
        right: 10px;
    }
}

@media (min-width: 300px) and (max-width: 350px) {
    .realock-template .realock_form_content {
        max-width: 270px;
    }
}


/*--------------------- Theme Color Switcher CSS -------------------*/

.realock-template #theme_color_switcher {
    position: fixed;
    top: 23%;
    z-index: 9999;
    width: 0;
}

.realock-template .setting_icon:hover {
    cursor: pointer;
}

.realock-template .setting_icon svg {
    font-size: 36px;
    color: #ffffff;
    background-color: #1d44f9;
    padding: 10px;
    vertical-align: middle;
}

.realock-template .under_left {
    width: 300px;
    height: 410px;
    background-color: #fafafa;
    overflow-y: auto;
    box-shadow: 0px 15px 40px 0px rgb(3 3 3 / 25%) !important;
    -webkit-box-shadow: 0px 15px 40px 0px rgb(3 3 3 / 25%) !important;
    -moz-box-shadow: 0px 15px 40px 0px rgb(3 3 3 / 25%) !important;
    -ms-box-shadow: 0px 15px 40px 0px rgb(3 3 3 / 25%) !important;
    -o-box-shadow: 0px 15px 40px 0px rgb(3 3 3 / 25%) !important;
    transform: translateX(-350px);
    -webkit-transform: translateX(-350px);
    -moz-transform: translateX(-350px);
    -ms-transform: translateX(-350px);
    -o-transform: translateX(-350px);
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -o-transition: all .5s linear;
    -ms-transition: all .5s linear;
}

.realock-template .under_left.out_left {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}

.realock-template .under_left hr {
    margin: 0;
}

.realock-template .color_heading {
    background-color: #000000;
    padding: 15px;
}

.realock-template .color_heading h4,
.realock-template .layout_heading h4,
.realock-template .scheme_heading h4 {
    color: #1d44f9;
    text-transform: capitalize;
    text-align: center;
}

.realock-template .color_heading h4 {
    color: #ffffff;
}

.realock-template .layout_heading,
.realock-template .theme_mode,
.realock-template .scheme_heading {
    padding-top: 20px;
    text-align: center;
}

.realock-template .theme_mode .color_mode {
    display: inline-block;
    line-height: 0;
    margin: 0 5px;
    padding: 15px;
    text-transform: capitalize;
}

.realock-template .theme_mode #light {
    color: #000000;
    background-color: #d5d5d5;
}

.realock-template .theme_mode #dark {
    color: #ffffff;
    background-color: #000000;
}

.realock-template .color-picker {
    overflow: hidden;
}

.realock-template .color-picker li {
    float: left;
    width: 25%;
    padding: 0 7px;
}

.realock-template .color-picker li .site_color {
    display: inline-block;
    width: 100%;
    height: 50px;
    margin-top: 8px;
}

.realock-template .color-picker li .site_color:hover {
    cursor: pointer;
}

.realock-template .color_mode.active {
    outline: 2px dashed #1d44f9;
    outline-offset: 2px;
}

.realock-template #blue.site_color {
    background-color: #1d44f9;
}

.realock-template #red.site_color {
    background-color: #ff0000;
}

.realock-template #orange.site_color {
    background-color: #FF6600;
}

.realock-template #violet.site_color {
    background-color: #944fcb;
}

.realock-template #magenta.site_color {
    background-color: #FF00FF;
}

.realock-template #teal.site_color {
    background-color: #008080;
}

.realock-template #ruby.site_color {
    background-color: #E0115F;
}

.realock-template #azure.site_color {
    background-color: #007FFF;
}

.realock-template #mint.site_color {
    background-color: #3EB489;
}

.realock-template #yellow.site_color {
    background-color: #f79a32;
}

/*----------------------------- Media Query -----------------------------*/

@media (max-width: 991px) {
    .realock-template .dark-mode .sidebar_icon svg:hover {
        color: #ffffff !important;
    }

    .realock-template #red .sidebar_icon svg {
        color: #ff0000;
    }

    .realock-template #orange .sidebar_icon svg {
        color: #FF6600;
    }

    .realock-template #violet .sidebar_icon svg {
        color: #944fcb;
    }

    .realock-template #magenta .sidebar_icon svg {
        color: #FF00FF;
    }

    .realock-template #teal .sidebar_icon svg {
        color: #008080;
    }

    .realock-template #ruby .sidebar_icon svg {
        color: #E0115F;
    }

    .realock-template #azure .sidebar_icon svg {
        color: #007FFF;
    }

    .realock-template #mint .sidebar_icon svg {
        color: #3EB489;
    }

    .realock-template #yellow .sidebar_icon svg {
        color: #f79a32;
    }
}

@media (max-width: 767px) {
    .realock-template .color_heading {
        padding: 10px;
    }

    .realock-template .color_heading h4 {
        font-size: 22px;
    }

    .realock-template .under_left {
        width: 270px;
        height: 390px;
    }

    .realock-template .setting_icon svg {
        font-size: 32px;
        padding: 7px;
    }
}

@media (max-width: 450px) {
    .realock-template .color-picker li .site_color {
        height: 40px;
    }

    .realock-template .under_left {
        width: 215px;
        height: 360px;
    }
}

/*----------------------------- Dark Mode CSS -----------------------------*/


.realock-template body.dark-mode,
.realock-template .dark-mode .testimonial,
.realock-template .dark-mode .header_top .contact_information {
    background-color: #0c0c0c;
}

.realock-template .dark-mode .site_header,
.realock-template .dark-mode .fixed-header,
.realock-template .dark-mode .bg_img_buyer_seller,
.realock-template .dark-mode .bg_img_testimonial,
.realock-template .dark-mode .agent .agent_detail:after,
.realock-template .dark-mode .estimate_inner_section,
.realock-template .dark-mode #realock_info,
.realock-template .dark-mode #image_slider_section {
    background-color: #000000;
}

.realock-template .dark-mode h2,
.realock-template .dark-mode h3,
.realock-template .dark-mode .search_form_for_about_slider .placeholder_about_slider_section .form_placeholder:focus,
.realock-template .dark-mode .header_top .contact_information,
.realock-template .dark-mode .navbar-expand-lg .navbar-nav .nav-link,
.realock-template .dark-mode .navbar-light .navbar-toggler,
.realock-template .dark-mode .navbar-expand-lg .offcanvas-header .btn-close,
.realock-template .dark-mode .mobile_sub_menu .sub-item .nav-link:hover,
.realock-template .dark-mode .property .facilities span,
.realock-template .dark-mode .agent .background .agent_description .agent-title:hover,
.realock-template .dark-mode .newsletter_form .form_container input:focus,
.realock-template .dark-mode .info_heading h1,
.realock-template .dark-mode .para_info p span,
.realock-template .dark-mode .client_name h4,
.realock-template .dark-mode .search_form_realock .city_icon .svg_icon,
.realock-template .dark-mode .search_form_realock .filter_icon .svg_icon svg,
.realock-template .dark-mode .homepage_2_dark_mode_search .search_form_realock .realock_form_placeholder .form_placeholder:focus,
.realock-template .dark-mode .site_header .site_logo,
.realock-template .dark-mode .agent .background .agent_description .agent-title:hover,
.realock-template .dark-mode .search_form_realock .realock_form_placeholder .form_placeholder:focus {
    color: #ffffff;
}

.realock-template .dark-mode .navbar-expand-lg .navbar-nav .dropdown-menu .nav-link,
.realock-template .dark-mode .search_form_for_about_slider .placeholder_about_slider_section .form_placeholder:focus,
.realock-template .dark-mode .newsletter_form .form_container input:focus {
    color: #000000;
}

.realock-template .heading_for_about_slider h2,
.realock-template .dark-mode .navbar-expand-lg .navbar-nav .dropdown-menu .nav-link:hover {
    color: #1d44f9;
}

.realock-template .dark-mode .testimonial_icon svg {
    color: #909090;
}

.realock-template .dark-mode .buyer_seller_para p {
    color: #888888;
}

.realock-template .dark-mode .header_top .contact_information {
    border: 1px solid #0c0c0c;
}

.realock-template .dark-mode .navbar-light .navbar-toggler,
.realock-template .dark-mode .search_form_realock .filter_icon .svg_icon {
    border: 2px solid #242424;
}

.realock-template .dark-mode .bg_img_buyer_seller,
.realock-template .dark-mode .bg_img_testimonial {
    background-image: url(../images/house-images/dark-bg-house.png);
}

.realock-template .dark-mode .estimate_inner_section:before {
    background-image: url(../images/background-shape/dark-bg-shape-2.png);
}

.realock-template .dark-mode .estimate_inner_section:after {
    background-image: url(../images/background-shape/dark-bg-shape-3.png);
}

.realock-template .dark-mode .image_slider:before {
    background-image: url(../images/background-shape/dark-bg-shape-2.png);
}

.realock-template .dark-mode .image_slider:after {
    background-image: url(../images/background-shape/dark-bg-shape-3.png);
}

.realock-template .dark-mode .fixed-header {
    box-shadow: 0px 1px 5px #2a2a2a;
    -webkit-box-shadow: 0px 1px 5px #2a2a2a;
    -moz-box-shadow: 0px 1px 5px #2a2a2a;
    -ms-box-shadow: 0px 1px 5px #2a2a2a;
    -o-box-shadow: 0px 1px 5px #2a2a2a;
}

.realock-template .dark-mode .agent .agent_detail:hover::after {
    box-shadow: 5px 5px 7px #2c2c2c;
    -webkit-box-shadow: 5px 5px 7px #2c2c2c;
    -moz-box-shadow: 5px 5px 7px #2c2c2c;
    -ms-box-shadow: 5px 5px 7px #2c2c2c;
    -o-box-shadow: 5px 5px 7px #2c2c2c;
}

.realock-template .dark-mode .search_form_realock {
    background-color: #0c0c0c;
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 8%);
    -webkit-box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 8%);
    -moz-box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 8%);
    -ms-box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 8%);
    -o-box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 8%);
}

.realock-template .dark-mode .search_form_realock .realock_form_placeholder .form_placeholder {
    color: #ffffff;
    background-color: #0c0c0c;
}

/*----------------------------- Red Color CSS -----------------------------*/

.realock-template #red .heading_for_about_slider h2,
.realock-template #red .search_form_for_about_slider .filter_icon .svg_icon:hover svg,
.realock-template #red .site_header .site_logo span,
.realock-template #red .property .property-title:hover,
.realock-template #red .buyer_seller_title h5,
.realock-template #red .testimonial_inner_section .slick-prev:before,
.realock-template #red .testimonial_inner_section .slick-next:before,
.realock-template #red .agent .background .agent_description .agent-title,
.realock-template #red .agent_social .social_icons:hover,
.realock-template #red .site_footer .site_logo span,
.realock-template #red .footer_top .column_2 .site_contact_us a:hover,
.realock-template #red .footer_middle .column_1 .site_social_media .social_media_icons a:hover,
.realock-template #red .site_about .column_2 .menu_item .menu_link:hover,
.realock-template #red .footer_bottom .column_2 a:hover,
.realock-template #red .mobile_sidebar_nav .nav-item .nav-link:hover,
.realock-template #red .mobile_sidebar_nav .nav-item .nav-link:hover+.fa-plus,
.realock-template #red .mobile_sub_menu .sub-item .nav-link {
    color: #ff0000;
}

.realock-template #red .property .property-image:hover .property-price,
.realock-template #red .testimonial_inner_section .slick-prev:hover,
.realock-template #red .testimonial_inner_section .slick-next:hover,
.realock-template #red .image_slider .slick-prev:hover,
.realock-template #red .image_slider .slick-next:hover,
.realock-template #red .buyer_seller_top_inner_section .left_column:after,
.realock-template #red .buyer_seller_bottom_inner_section .right_column:after {
    background-color: #ff0000;
}

.realock-template #red .navbar-expand-lg .navbar-nav .nav-link:hover,
.realock-template #red .dropdown-menu li .nav-link.active,
.realock-template #red .search_form_realock .filter_icon .svg_icon:hover svg {
    color: #ff0000 !important;
}

.realock-template #red .search_form_for_about_slider .filter_icon .svg_icon:hover,
.realock-template #red .testimonial_inner_section .slick-prev,
.realock-template #red .testimonial_inner_section .slick-next {
    border: 2px solid #ff0000;
}

.realock-template #red .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider,
.realock-template #red .search_form_realock .realock_form_button .form_submit_button,
.realock-template #red .btn {
    background-color: #ff0000;
    border: 3px solid #ff0000;
}

.realock-template #red .search_form_for_about_slider .placeholder_about_slider_section .form_placeholder:focus,
.realock-template #red .newsletter_form .form_container input:focus {
    outline: 2px solid #ff0000;
}

.realock-template #red .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider:hover,
.realock-template #red .search_form_realock .realock_form_button .form_submit_button:hover {
    color: #ff0000;
    background-color: #ffffff;
    border: 3px solid #ff0000;
}

.realock-template #red .testimonial_inner_section .slick-prev:hover::before,
.realock-template #red .testimonial_inner_section .slick-next:hover::before,
.realock-template #red.dark-mode .agent .background .agent_description .agent-title:hover {
    color: #ffffff !important;
}

.realock-template #red .agent .background .agent_description .agent-title:hover {
    color: #000000 !important;
}

.realock-template #red .offcanvas {
    background-color: #ff0000 !important;
}

.realock-template #red .search_form_realock .filter_icon .svg_icon:hover {
    border: 2px solid #ff0000 !important;
}

.realock-template #red .search_form_realock .realock_form_placeholder .form_placeholder:focus {
    outline: 2px solid #ff0000;
}

.realock-template #red .btn:hover {
    color: #ff0000;
    background-color: #ffffff;
}

.realock-template #red .sidebar-nav .nav-item .nav-link:hover {
    color: #ff0000 !important;
    background-color: #ffffff !important;
}

.realock-template #red .navbar-light .navbar-toggler:hover {
    color: #ff0000 !important;
    border: 2px solid #ff0000 !important;
}

.realock-template #red .slick-active button:before {
    color: #ff0000 !important;
    outline: 2px solid #ff0000;
}

.realock-template #red .newsletter_form .form_container .form_submit_button {
    background-color: #ff0000;
    outline: 2px solid #ff0000;
}

.realock-template #red .newsletter_form .form_container .form_submit_button:hover {
    color: #ff0000;
    outline: 2px solid #ff0000;
    background-color: #ffffff;
}

/*----------------------------- Orange Color CSS -----------------------------*/

.realock-template #orange .heading_for_about_slider h2,
.realock-template #orange .search_form_for_about_slider .filter_icon .svg_icon:hover svg,
.realock-template #orange .site_header .site_logo span,
.realock-template #orange .property .property-title:hover,
.realock-template #orange .buyer_seller_title h5,
.realock-template #orange .testimonial_inner_section .slick-prev:before,
.realock-template #orange .testimonial_inner_section .slick-next:before,
.realock-template #orange .agent .background .agent_description .agent-title,
.realock-template #orange .agent_social .social_icons:hover,
.realock-template #orange .site_footer .site_logo span,
.realock-template #orange .footer_top .column_2 .site_contact_us a:hover,
.realock-template #orange .footer_middle .column_1 .site_social_media .social_media_icons a:hover,
.realock-template #orange .site_about .column_2 .menu_item .menu_link:hover,
.realock-template #orange .footer_bottom .column_2 a:hover,
.realock-template #orange .mobile_sidebar_nav .nav-item .nav-link:hover,
.realock-template #orange .mobile_sidebar_nav .nav-item .nav-link:hover+.fa-plus,
.realock-template #orange .mobile_sub_menu .sub-item .nav-link {
    color: #FF6600;
}

.realock-template #orange .property .property-image:hover .property-price,
.realock-template #orange .testimonial_inner_section .slick-prev:hover,
.realock-template #orange .testimonial_inner_section .slick-next:hover,
.realock-template #orange .image_slider .slick-prev:hover,
.realock-template #orange .image_slider .slick-next:hover,
.realock-template #orange .buyer_seller_top_inner_section .left_column:after,
.realock-template #orange .buyer_seller_bottom_inner_section .right_column:after {
    background-color: #FF6600;
}

.realock-template #orange .navbar-expand-lg .navbar-nav .nav-link:hover,
.realock-template #orange .dropdown-menu li .nav-link.active,
.realock-template #orange .search_form_realock .filter_icon .svg_icon:hover svg {
    color: #FF6600 !important;
}

.realock-template #orange .search_form_for_about_slider .filter_icon .svg_icon:hover,
.realock-template #orange .testimonial_inner_section .slick-prev,
.realock-template #orange .testimonial_inner_section .slick-next {
    border: 2px solid #FF6600;
}

.realock-template #orange .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider,
.realock-template #orange .search_form_realock .realock_form_button .form_submit_button,
.realock-template #orange .btn {
    background-color: #FF6600;
    border: 3px solid #FF6600;
}

.realock-template #orange .search_form_for_about_slider .placeholder_about_slider_section .form_placeholder:focus,
.realock-template #orange .newsletter_form .form_container input:focus {
    outline: 2px solid #FF6600;
}

.realock-template #orange .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider:hover,
.realock-template #orange .search_form_realock .realock_form_button .form_submit_button:hover {
    color: #FF6600;
    background-color: #ffffff;
    border: 3px solid #FF6600;
}

.realock-template #orange .testimonial_inner_section .slick-prev:hover::before,
.realock-template #orange .testimonial_inner_section .slick-next:hover::before,
.realock-template #orange.dark-mode .agent .background .agent_description .agent-title:hover {
    color: #ffffff !important;
}

.realock-template #orange .agent .background .agent_description .agent-title:hover {
    color: #000000 !important;
}

.realock-template #orange .offcanvas {
    background-color: #FF6600 !important;
}

.realock-template #orange .search_form_realock .filter_icon .svg_icon:hover {
    border: 2px solid #FF6600 !important;
}

.realock-template #orange .search_form_realock .realock_form_placeholder .form_placeholder:focus {
    outline: 2px solid #FF6600;
}

.realock-template #orange .btn:hover {
    color: #FF6600;
    background-color: #ffffff;
}

.realock-template #orange .sidebar-nav .nav-item .nav-link:hover {
    color: #FF6600 !important;
    background-color: #ffffff !important;
}

.realock-template #orange .navbar-light .navbar-toggler:hover {
    color: #FF6600 !important;
    border: 2px solid #FF6600 !important;
}

.realock-template #orange .slick-active button:before {
    color: #FF6600 !important;
    outline: 2px solid #FF6600;
}

.realock-template #orange .newsletter_form .form_container .form_submit_button {
    background-color: #FF6600;
    outline: 2px solid #FF6600;
}

.realock-template #orange .newsletter_form .form_container .form_submit_button:hover {
    color: #FF6600;
    outline: 2px solid #FF6600;
    background-color: #ffffff;
}

/*----------------------------- Violet Color CSS -----------------------------*/

.realock-template #violet .heading_for_about_slider h2,
.realock-template #violet .search_form_for_about_slider .filter_icon .svg_icon:hover svg,
.realock-template #violet .site_header .site_logo span,
.realock-template #violet .property .property-title:hover,
.realock-template #violet .buyer_seller_title h5,
.realock-template #violet .testimonial_inner_section .slick-prev:before,
.realock-template #violet .testimonial_inner_section .slick-next:before,
.realock-template #violet .agent .background .agent_description .agent-title,
.realock-template #violet .agent_social .social_icons:hover,
.realock-template #violet .site_footer .site_logo span,
.realock-template #violet .footer_top .column_2 .site_contact_us a:hover,
.realock-template #violet .footer_middle .column_1 .site_social_media .social_media_icons a:hover,
.realock-template #violet .site_about .column_2 .menu_item .menu_link:hover,
.realock-template #violet .footer_bottom .column_2 a:hover,
.realock-template #violet .mobile_sidebar_nav .nav-item .nav-link:hover,
.realock-template #violet .mobile_sidebar_nav .nav-item .nav-link:hover+.fa-plus,
.realock-template #violet .mobile_sub_menu .sub-item .nav-link {
    color: #944fcb;
}

.realock-template #violet .property .property-image:hover .property-price,
.realock-template #violet .testimonial_inner_section .slick-prev:hover,
.realock-template #violet .testimonial_inner_section .slick-next:hover,
.realock-template #violet .image_slider .slick-prev:hover,
.realock-template #violet .image_slider .slick-next:hover,
.realock-template #violet .buyer_seller_top_inner_section .left_column:after,
.realock-template #violet .buyer_seller_bottom_inner_section .right_column:after {
    background-color: #944fcb;
}

.realock-template #violet .navbar-expand-lg .navbar-nav .nav-link:hover,
.realock-template #violet .dropdown-menu li .nav-link.active,
.realock-template #violet .search_form_realock .filter_icon .svg_icon:hover svg {
    color: #944fcb !important;
}

.realock-template #violet .search_form_for_about_slider .filter_icon .svg_icon:hover,
.realock-template #violet .testimonial_inner_section .slick-prev,
.realock-template #violet .testimonial_inner_section .slick-next {
    border: 2px solid #944fcb;
}

.realock-template #violet .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider,
.realock-template #violet .search_form_realock .realock_form_button .form_submit_button,
.realock-template #violet .btn {
    background-color: #944fcb;
    border: 3px solid #944fcb;
}

.realock-template #violet .search_form_for_about_slider .placeholder_about_slider_section .form_placeholder:focus,
.realock-template #violet .newsletter_form .form_container input:focus {
    outline: 2px solid #944fcb;
}

.realock-template #violet .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider:hover,
.realock-template #violet .search_form_realock .realock_form_button .form_submit_button:hover {
    color: #944fcb;
    background-color: #ffffff;
    border: 3px solid #944fcb;
}

.realock-template #violet .testimonial_inner_section .slick-prev:hover::before,
.realock-template #violet .testimonial_inner_section .slick-next:hover::before,
.realock-template #violet.dark-mode .agent .background .agent_description .agent-title:hover {
    color: #ffffff !important;
}

.realock-template #violet .agent .background .agent_description .agent-title:hover {
    color: #000000 !important;
}

.realock-template #violet .offcanvas {
    background-color: #944fcb !important;
}

.realock-template #violet .search_form_realock .filter_icon .svg_icon:hover {
    border: 2px solid #944fcb !important;
}

.realock-template #violet .search_form_realock .realock_form_placeholder .form_placeholder:focus {
    outline: 2px solid #944fcb;
}

.realock-template #violet .btn:hover {
    color: #944fcb;
    background-color: #ffffff;
}

.realock-template #violet .sidebar-nav .nav-item .nav-link:hover {
    color: #944fcb !important;
    background-color: #ffffff !important;
}

.realock-template #violet .navbar-light .navbar-toggler:hover {
    color: #944fcb !important;
    border: 2px solid #944fcb !important;
}

.realock-template #violet .slick-active button:before {
    color: #944fcb !important;
    outline: 2px solid #944fcb;
}

.realock-template #violet .newsletter_form .form_container .form_submit_button {
    background-color: #944fcb;
    outline: 2px solid #944fcb;
}

.realock-template #violet .newsletter_form .form_container .form_submit_button:hover {
    color: #944fcb;
    outline: 2px solid #944fcb;
    background-color: #ffffff;
}

/*----------------------------- Magenta Color CSS -----------------------------*/

.realock-template #magenta .heading_for_about_slider h2,
.realock-template #magenta .search_form_for_about_slider .filter_icon .svg_icon:hover svg,
.realock-template #magenta .site_header .site_logo span,
.realock-template #magenta .property .property-title:hover,
.realock-template #magenta .buyer_seller_title h5,
.realock-template #magenta .testimonial_inner_section .slick-prev:before,
.realock-template #magenta .testimonial_inner_section .slick-next:before,
.realock-template #magenta .agent .background .agent_description .agent-title,
.realock-template #magenta .agent_social .social_icons:hover,
.realock-template #magenta .site_footer .site_logo span,
.realock-template #magenta .footer_top .column_2 .site_contact_us a:hover,
.realock-template #magenta .footer_middle .column_1 .site_social_media .social_media_icons a:hover,
.realock-template #magenta .site_about .column_2 .menu_item .menu_link:hover,
.realock-template #magenta .footer_bottom .column_2 a:hover,
.realock-template #magenta .mobile_sidebar_nav .nav-item .nav-link:hover,
.realock-template #magenta .mobile_sidebar_nav .nav-item .nav-link:hover+.fa-plus,
.realock-template #magenta .mobile_sub_menu .sub-item .nav-link {
    color: #FF00FF;
}

.realock-template #magenta .property .property-image:hover .property-price,
.realock-template #magenta .testimonial_inner_section .slick-prev:hover,
.realock-template #magenta .testimonial_inner_section .slick-next:hover,
.realock-template #magenta .image_slider .slick-prev:hover,
.realock-template #magenta .image_slider .slick-next:hover,
.realock-template #magenta .buyer_seller_top_inner_section .left_column:after,
.realock-template #magenta .buyer_seller_bottom_inner_section .right_column:after {
    background-color: #FF00FF;
}

.realock-template #magenta .navbar-expand-lg .navbar-nav .nav-link:hover,
.realock-template #magenta .dropdown-menu li .nav-link.active,
.realock-template #magenta .search_form_realock .filter_icon .svg_icon:hover svg {
    color: #FF00FF !important;
}

.realock-template #magenta .search_form_for_about_slider .filter_icon .svg_icon:hover,
.realock-template #magenta .testimonial_inner_section .slick-prev,
.realock-template #magenta .testimonial_inner_section .slick-next {
    border: 2px solid #FF00FF;
}

.realock-template #magenta .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider,
.realock-template #magenta .search_form_realock .realock_form_button .form_submit_button,
.realock-template #magenta .btn {
    background-color: #FF00FF;
    border: 3px solid #FF00FF;
}

.realock-template #magenta .search_form_for_about_slider .placeholder_about_slider_section .form_placeholder:focus,
.realock-template #magenta .newsletter_form .form_container input:focus {
    outline: 2px solid #FF00FF;
}

.realock-template #magenta .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider:hover,
.realock-template #magenta .search_form_realock .realock_form_button .form_submit_button:hover {
    color: #FF00FF;
    background-color: #ffffff;
    border: 3px solid #FF00FF;
}

.realock-template #magenta .testimonial_inner_section .slick-prev:hover::before,
.realock-template #magenta .testimonial_inner_section .slick-next:hover::before,
.realock-template #magenta.dark-mode .agent .background .agent_description .agent-title:hover {
    color: #ffffff !important;
}

.realock-template #magenta .agent .background .agent_description .agent-title:hover {
    color: #000000 !important;
}

.realock-template #magenta .offcanvas {
    background-color: #FF00FF !important;
}

.realock-template #magenta .search_form_realock .filter_icon .svg_icon:hover {
    border: 2px solid #FF00FF !important;
}

.realock-template #magenta .search_form_realock .realock_form_placeholder .form_placeholder:focus {
    outline: 2px solid #FF00FF;
}

.realock-template #magenta .btn:hover {
    color: #FF00FF;
    background-color: #ffffff;
}

.realock-template #magenta .sidebar-nav .nav-item .nav-link:hover {
    color: #FF00FF !important;
    background-color: #ffffff !important;
}

.realock-template #magenta .navbar-light .navbar-toggler:hover {
    color: #FF00FF !important;
    border: 2px solid #FF00FF !important;
}

.realock-template #magenta .slick-active button:before {
    color: #FF00FF !important;
    outline: 2px solid #FF00FF;
}

.realock-template #magenta .newsletter_form .form_container .form_submit_button {
    background-color: #FF00FF;
    outline: 2px solid #FF00FF;
}

.realock-template #magenta .newsletter_form .form_container .form_submit_button:hover {
    color: #FF00FF;
    outline: 2px solid #FF00FF;
    background-color: #ffffff;
}

/*----------------------------- Teal Color CSS -----------------------------*/

.realock-template #teal .heading_for_about_slider h2,
.realock-template #teal .search_form_for_about_slider .filter_icon .svg_icon:hover svg,
.realock-template #teal .site_header .site_logo span,
.realock-template #teal .property .property-title:hover,
.realock-template #teal .buyer_seller_title h5,
.realock-template #teal .testimonial_inner_section .slick-prev:before,
.realock-template #teal .testimonial_inner_section .slick-next:before,
.realock-template #teal .agent .background .agent_description .agent-title,
.realock-template #teal .agent_social .social_icons:hover,
.realock-template #teal .site_footer .site_logo span,
.realock-template #teal .footer_top .column_2 .site_contact_us a:hover,
.realock-template #teal .footer_middle .column_1 .site_social_media .social_media_icons a:hover,
.realock-template #teal .site_about .column_2 .menu_item .menu_link:hover,
.realock-template #teal .footer_bottom .column_2 a:hover,
.realock-template #teal .mobile_sidebar_nav .nav-item .nav-link:hover,
.realock-template #teal .mobile_sidebar_nav .nav-item .nav-link:hover+.fa-plus,
.realock-template #teal .mobile_sub_menu .sub-item .nav-link {
    color: #008080;
}

.realock-template #teal .property .property-image:hover .property-price,
.realock-template #teal .testimonial_inner_section .slick-prev:hover,
.realock-template #teal .testimonial_inner_section .slick-next:hover,
.realock-template #teal .image_slider .slick-prev:hover,
.realock-template #teal .image_slider .slick-next:hover,
.realock-template #teal .buyer_seller_top_inner_section .left_column:after,
.realock-template #teal .buyer_seller_bottom_inner_section .right_column:after {
    background-color: #008080;
}

.realock-template #teal .navbar-expand-lg .navbar-nav .nav-link:hover,
.realock-template #teal .dropdown-menu li .nav-link.active,
.realock-template #teal .search_form_realock .filter_icon .svg_icon:hover svg {
    color: #008080 !important;
}

.realock-template #teal .search_form_for_about_slider .filter_icon .svg_icon:hover,
.realock-template #teal .testimonial_inner_section .slick-prev,
.realock-template #teal .testimonial_inner_section .slick-next {
    border: 2px solid #008080;
}

.realock-template #teal .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider,
.realock-template #teal .search_form_realock .realock_form_button .form_submit_button,
.realock-template #teal .btn {
    background-color: #008080;
    border: 3px solid #008080;
}

.realock-template #teal .search_form_for_about_slider .placeholder_about_slider_section .form_placeholder:focus,
.realock-template #teal .newsletter_form .form_container input:focus {
    outline: 2px solid #008080;
}

.realock-template #teal .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider:hover,
.realock-template #teal .search_form_realock .realock_form_button .form_submit_button:hover {
    color: #008080;
    background-color: #ffffff;
    border: 3px solid #008080;
}

.realock-template #teal .testimonial_inner_section .slick-prev:hover::before,
.realock-template #teal .testimonial_inner_section .slick-next:hover::before,
.realock-template #teal.dark-mode .agent .background .agent_description .agent-title:hover {
    color: #ffffff !important;
}

.realock-template #teal .agent .background .agent_description .agent-title:hover {
    color: #000000 !important;
}

.realock-template #teal .offcanvas {
    background-color: #008080 !important;
}

.realock-template #teal .search_form_realock .filter_icon .svg_icon:hover {
    border: 2px solid #008080 !important;
}

.realock-template #teal .search_form_realock .realock_form_placeholder .form_placeholder:focus {
    outline: 2px solid #008080;
}

.realock-template #teal .btn:hover {
    color: #008080;
    background-color: #ffffff;
}

.realock-template #teal .sidebar-nav .nav-item .nav-link:hover {
    color: #008080 !important;
    background-color: #ffffff !important;
}

.realock-template #teal .navbar-light .navbar-toggler:hover {
    color: #008080 !important;
    border: 2px solid #008080 !important;
}

.realock-template #teal .slick-active button:before {
    color: #008080 !important;
    outline: 2px solid #008080;
}

.realock-template #teal .newsletter_form .form_container .form_submit_button {
    background-color: #008080;
    outline: 2px solid #008080;
}

.realock-template #teal .newsletter_form .form_container .form_submit_button:hover {
    color: #008080;
    outline: 2px solid #008080;
    background-color: #ffffff;
}

/*----------------------------- Ruby Color CSS -----------------------------*/

.realock-template #ruby .heading_for_about_slider h2,
.realock-template #ruby .search_form_for_about_slider .filter_icon .svg_icon:hover svg,
.realock-template #ruby .site_header .site_logo span,
.realock-template #ruby .property .property-title:hover,
.realock-template #ruby .buyer_seller_title h5,
.realock-template #ruby .testimonial_inner_section .slick-prev:before,
.realock-template #ruby .testimonial_inner_section .slick-next:before,
.realock-template #ruby .agent .background .agent_description .agent-title,
.realock-template #ruby .agent_social .social_icons:hover,
.realock-template #ruby .site_footer .site_logo span,
.realock-template #ruby .footer_top .column_2 .site_contact_us a:hover,
.realock-template #ruby .footer_middle .column_1 .site_social_media .social_media_icons a:hover,
.realock-template #ruby .site_about .column_2 .menu_item .menu_link:hover,
.realock-template #ruby .footer_bottom .column_2 a:hover,
.realock-template #ruby .mobile_sidebar_nav .nav-item .nav-link:hover,
.realock-template #ruby .mobile_sidebar_nav .nav-item .nav-link:hover+.fa-plus,
.realock-template #ruby .mobile_sub_menu .sub-item .nav-link {
    color: #E0115F;
}

.realock-template #ruby .property .property-image:hover .property-price,
.realock-template #ruby .testimonial_inner_section .slick-prev:hover,
.realock-template #ruby .testimonial_inner_section .slick-next:hover,
.realock-template #ruby .image_slider .slick-prev:hover,
.realock-template #ruby .image_slider .slick-next:hover,
.realock-template #ruby .buyer_seller_top_inner_section .left_column:after,
.realock-template #ruby .buyer_seller_bottom_inner_section .right_column:after {
    background-color: #E0115F;
}

.realock-template #ruby .navbar-expand-lg .navbar-nav .nav-link:hover,
.realock-template #ruby .dropdown-menu li .nav-link.active,
.realock-template #ruby .search_form_realock .filter_icon .svg_icon:hover svg {
    color: #E0115F !important;
}

.realock-template #ruby .search_form_for_about_slider .filter_icon .svg_icon:hover,
.realock-template #ruby .testimonial_inner_section .slick-prev,
.realock-template #ruby .testimonial_inner_section .slick-next {
    border: 2px solid #E0115F;
}

.realock-template #ruby .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider,
.realock-template #ruby .search_form_realock .realock_form_button .form_submit_button,
.realock-template #ruby .btn {
    background-color: #E0115F;
    border: 3px solid #E0115F;
}

.realock-template #ruby .search_form_for_about_slider .placeholder_about_slider_section .form_placeholder:focus,
.realock-template #ruby .newsletter_form .form_container input:focus {
    outline: 2px solid #E0115F;
}

.realock-template #ruby .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider:hover,
.realock-template #ruby .search_form_realock .realock_form_button .form_submit_button:hover {
    color: #E0115F;
    background-color: #ffffff;
    border: 3px solid #E0115F;
}

.realock-template #ruby .testimonial_inner_section .slick-prev:hover::before,
.realock-template #ruby .testimonial_inner_section .slick-next:hover::before,
.realock-template #ruby.dark-mode .agent .background .agent_description .agent-title:hover {
    color: #ffffff !important;
}

.realock-template #ruby .agent .background .agent_description .agent-title:hover {
    color: #000000 !important;
}

.realock-template #ruby .offcanvas {
    background-color: #E0115F !important;
}

.realock-template #ruby .search_form_realock .filter_icon .svg_icon:hover {
    border: 2px solid #E0115F !important;
}

.realock-template #ruby .search_form_realock .realock_form_placeholder .form_placeholder:focus {
    outline: 2px solid #E0115F;
}

.realock-template #ruby .btn:hover {
    color: #E0115F;
    background-color: #ffffff;
}

.realock-template #ruby .sidebar-nav .nav-item .nav-link:hover {
    color: #E0115F !important;
    background-color: #ffffff !important;
}

.realock-template #ruby .navbar-light .navbar-toggler:hover {
    color: #E0115F !important;
    border: 2px solid #E0115F !important;
}

.realock-template #ruby .slick-active button:before {
    color: #E0115F !important;
    outline: 2px solid #E0115F;
}

.realock-template #ruby .newsletter_form .form_container .form_submit_button {
    background-color: #E0115F;
    outline: 2px solid #E0115F;
}

.realock-template #ruby .newsletter_form .form_container .form_submit_button:hover {
    color: #E0115F;
    outline: 2px solid #E0115F;
    background-color: #ffffff;
}

/*----------------------------- Azure Color CSS -----------------------------*/

.realock-template #azure .heading_for_about_slider h2,
.realock-template #azure .search_form_for_about_slider .filter_icon .svg_icon:hover svg,
.realock-template #azure .site_header .site_logo span,
.realock-template #azure .property .property-title:hover,
.realock-template #azure .buyer_seller_title h5,
.realock-template #azure .testimonial_inner_section .slick-prev:before,
.realock-template #azure .testimonial_inner_section .slick-next:before,
.realock-template #azure .agent .background .agent_description .agent-title,
.realock-template #azure .agent_social .social_icons:hover,
.realock-template #azure .site_footer .site_logo span,
.realock-template #azure .footer_top .column_2 .site_contact_us a:hover,
.realock-template #azure .footer_middle .column_1 .site_social_media .social_media_icons a:hover,
.realock-template #azure .site_about .column_2 .menu_item .menu_link:hover,
.realock-template #azure .footer_bottom .column_2 a:hover,
.realock-template #azure .mobile_sidebar_nav .nav-item .nav-link:hover,
.realock-template #azure .mobile_sidebar_nav .nav-item .nav-link:hover+.fa-plus,
.realock-template #azure .mobile_sub_menu .sub-item .nav-link {
    color: #007FFF;
}

.realock-template #azure .property .property-image:hover .property-price,
.realock-template #azure .testimonial_inner_section .slick-prev:hover,
.realock-template #azure .testimonial_inner_section .slick-next:hover,
.realock-template #azure .image_slider .slick-prev:hover,
.realock-template #azure .image_slider .slick-next:hover,
.realock-template #azure .buyer_seller_top_inner_section .left_column:after,
.realock-template #azure .buyer_seller_bottom_inner_section .right_column:after {
    background-color: #007FFF;
}

.realock-template #azure .navbar-expand-lg .navbar-nav .nav-link:hover,
.realock-template #azure .dropdown-menu li .nav-link.active,
.realock-template #azure .search_form_realock .filter_icon .svg_icon:hover svg {
    color: #007FFF !important;
}

.realock-template #azure .search_form_for_about_slider .filter_icon .svg_icon:hover,
.realock-template #azure .testimonial_inner_section .slick-prev,
.realock-template #azure .testimonial_inner_section .slick-next {
    border: 2px solid #007FFF;
}

.realock-template #azure .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider,
.realock-template #azure .search_form_realock .realock_form_button .form_submit_button,
.realock-template #azure .btn {
    background-color: #007FFF;
    border: 3px solid #007FFF;
}

.realock-template #azure .search_form_for_about_slider .placeholder_about_slider_section .form_placeholder:focus,
.realock-template #azure .newsletter_form .form_container input:focus {
    outline: 2px solid #007FFF;
}

.realock-template #azure .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider:hover,
.realock-template #azure .search_form_realock .realock_form_button .form_submit_button:hover {
    color: #007FFF;
    background-color: #ffffff;
    border: 3px solid #007FFF;
}

.realock-template #azure .testimonial_inner_section .slick-prev:hover::before,
.realock-template #azure .testimonial_inner_section .slick-next:hover::before,
.realock-template #azure.dark-mode .agent .background .agent_description .agent-title:hover {
    color: #ffffff !important;
}

.realock-template #azure .agent .background .agent_description .agent-title:hover {
    color: #000000 !important;
}

.realock-template #azure .offcanvas {
    background-color: #007FFF !important;
}

.realock-template #azure .search_form_realock .filter_icon .svg_icon:hover {
    border: 2px solid #007FFF !important;
}

.realock-template #azure .search_form_realock .realock_form_placeholder .form_placeholder:focus {
    outline: 2px solid #007FFF;
}

.realock-template #azure .btn:hover {
    color: #007FFF;
    background-color: #ffffff;
}

.realock-template #azure .sidebar-nav .nav-item .nav-link:hover {
    color: #007FFF !important;
    background-color: #ffffff !important;
}

.realock-template #azure .navbar-light .navbar-toggler:hover {
    color: #007FFF !important;
    border: 2px solid #007FFF !important;
}

.realock-template #azure .slick-active button:before {
    color: #007FFF !important;
    outline: 2px solid #007FFF;
}

.realock-template #azure .newsletter_form .form_container .form_submit_button {
    background-color: #007FFF;
    outline: 2px solid #007FFF;
}

.realock-template #azure .newsletter_form .form_container .form_submit_button:hover {
    color: #007FFF;
    outline: 2px solid #007FFF;
    background-color: #ffffff;
}

/*----------------------------- Mint Color CSS -----------------------------*/

.realock-template #mint .heading_for_about_slider h2,
.realock-template #mint .search_form_for_about_slider .filter_icon .svg_icon:hover svg,
.realock-template #mint .site_header .site_logo span,
.realock-template #mint .property .property-title:hover,
.realock-template #mint .buyer_seller_title h5,
.realock-template #mint .testimonial_inner_section .slick-prev:before,
.realock-template #mint .testimonial_inner_section .slick-next:before,
.realock-template #mint .agent .background .agent_description .agent-title,
.realock-template #mint .agent_social .social_icons:hover,
.realock-template #mint .site_footer .site_logo span,
.realock-template #mint .footer_top .column_2 .site_contact_us a:hover,
.realock-template #mint .footer_middle .column_1 .site_social_media .social_media_icons a:hover,
.realock-template #mint .site_about .column_2 .menu_item .menu_link:hover,
.realock-template #mint .footer_bottom .column_2 a:hover,
.realock-template #mint .mobile_sidebar_nav .nav-item .nav-link:hover,
.realock-template #mint .mobile_sidebar_nav .nav-item .nav-link:hover+.fa-plus,
.realock-template #mint .mobile_sub_menu .sub-item .nav-link {
    color: #3EB489;
}

.realock-template #mint .property .property-image:hover .property-price,
.realock-template #mint .testimonial_inner_section .slick-prev:hover,
.realock-template #mint .testimonial_inner_section .slick-next:hover,
.realock-template #mint .image_slider .slick-prev:hover,
.realock-template #mint .image_slider .slick-next:hover,
.realock-template #mint .buyer_seller_top_inner_section .left_column:after,
.realock-template #mint .buyer_seller_bottom_inner_section .right_column:after {
    background-color: #3EB489;
}

.realock-template #mint .navbar-expand-lg .navbar-nav .nav-link:hover,
.realock-template #mint .dropdown-menu li .nav-link.active,
.realock-template #mint .search_form_realock .filter_icon .svg_icon:hover svg {
    color: #3EB489 !important;
}

.realock-template #mint .search_form_for_about_slider .filter_icon .svg_icon:hover,
.realock-template #mint .testimonial_inner_section .slick-prev,
.realock-template #mint .testimonial_inner_section .slick-next {
    border: 2px solid #3EB489;
}

.realock-template #mint .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider,
.realock-template #mint .search_form_realock .realock_form_button .form_submit_button,
.realock-template #mint .btn {
    background-color: #3EB489;
    border: 3px solid #3EB489;
}

.realock-template #mint .search_form_for_about_slider .placeholder_about_slider_section .form_placeholder:focus,
.realock-template #mint .newsletter_form .form_container input:focus {
    outline: 2px solid #3EB489;
}

.realock-template #mint .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider:hover,
.realock-template #mint .search_form_realock .realock_form_button .form_submit_button:hover {
    color: #3EB489;
    background-color: #ffffff;
    border: 3px solid #3EB489;
}

.realock-template #mint .testimonial_inner_section .slick-prev:hover::before,
.realock-template #mint .testimonial_inner_section .slick-next:hover::before,
.realock-template #mint.dark-mode .agent .background .agent_description .agent-title:hover {
    color: #ffffff !important;
}

.realock-template #mint .agent .background .agent_description .agent-title:hover {
    color: #000000 !important;
}

.realock-template #mint .offcanvas {
    background-color: #3EB489 !important;
}

.realock-template #mint .search_form_realock .filter_icon .svg_icon:hover {
    border: 2px solid #3EB489 !important;
}

.realock-template #mint .search_form_realock .realock_form_placeholder .form_placeholder:focus {
    outline: 2px solid #3EB489;
}

.realock-template #mint .btn:hover {
    color: #3EB489;
    background-color: #ffffff;
}

.realock-template #mint .sidebar-nav .nav-item .nav-link:hover {
    color: #3EB489 !important;
    background-color: #ffffff !important;
}

.realock-template #mint .navbar-light .navbar-toggler:hover {
    color: #3EB489 !important;
    border: 2px solid #3EB489 !important;
}

.realock-template #mint .slick-active button:before {
    color: #3EB489 !important;
    outline: 2px solid #3EB489;
}

.realock-template #mint .newsletter_form .form_container .form_submit_button {
    background-color: #3EB489;
    outline: 2px solid #3EB489;
}

.realock-template #mint .newsletter_form .form_container .form_submit_button:hover {
    color: #3EB489;
    outline: 2px solid #3EB489;
    background-color: #ffffff;
}

/*----------------------------- Yellow Color CSS -----------------------------*/

.realock-template #yellow .heading_for_about_slider h2,
.realock-template #yellow .search_form_for_about_slider .filter_icon .svg_icon:hover svg,
.realock-template #yellow .site_header .site_logo span,
.realock-template #yellow .property .property-title:hover,
.realock-template #yellow .buyer_seller_title h5,
.realock-template #yellow .testimonial_inner_section .slick-prev:before,
.realock-template #yellow .testimonial_inner_section .slick-next:before,
.realock-template #yellow .agent .background .agent_description .agent-title,
.realock-template #yellow .agent_social .social_icons:hover,
.realock-template #yellow .site_footer .site_logo span,
.realock-template #yellow .footer_top .column_2 .site_contact_us a:hover,
.realock-template #yellow .footer_middle .column_1 .site_social_media .social_media_icons a:hover,
.realock-template #yellow .site_about .column_2 .menu_item .menu_link:hover,
.realock-template #yellow .footer_bottom .column_2 a:hover,
.realock-template #yellow .mobile_sidebar_nav .nav-item .nav-link:hover,
.realock-template #yellow .mobile_sidebar_nav .nav-item .nav-link:hover+.fa-plus,
.realock-template #yellow .mobile_sub_menu .sub-item .nav-link {
    color: #f79a32;
}

.realock-template #yellow .property .property-image:hover .property-price,
.realock-template #yellow .testimonial_inner_section .slick-prev:hover,
.realock-template #yellow .testimonial_inner_section .slick-next:hover,
.realock-template #yellow .image_slider .slick-prev:hover,
.realock-template #yellow .image_slider .slick-next:hover,
.realock-template #yellow .buyer_seller_top_inner_section .left_column:after,
.realock-template #yellow .buyer_seller_bottom_inner_section .right_column:after {
    background-color: #f79a32;
}

.realock-template #yellow .navbar-expand-lg .navbar-nav .nav-link:hover,
.realock-template #yellow .dropdown-menu li .nav-link.active,
.realock-template #yellow .search_form_realock .filter_icon .svg_icon:hover svg {
    color: #f79a32 !important;
}

.realock-template #yellow .search_form_for_about_slider .filter_icon .svg_icon:hover,
.realock-template #yellow .testimonial_inner_section .slick-prev,
.realock-template #yellow .testimonial_inner_section .slick-next {
    border: 2px solid #f79a32;
}

.realock-template #yellow .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider,
.realock-template #yellow .search_form_realock .realock_form_button .form_submit_button,
.realock-template #yellow .btn {
    background-color: #f79a32;
    border: 3px solid #f79a32;
}

.realock-template #yellow .search_form_for_about_slider .placeholder_about_slider_section .form_placeholder:focus,
.realock-template #yellow .newsletter_form .form_container input:focus {
    outline: 2px solid #f79a32;
}

.realock-template #yellow .search_form_for_about_slider .submit_button_about_slider_section .submit_button_for_about_slider:hover,
.realock-template #yellow .search_form_realock .realock_form_button .form_submit_button:hover {
    color: #f79a32;
    background-color: #ffffff;
    border: 3px solid #f79a32;
}

.realock-template #yellow .testimonial_inner_section .slick-prev:hover::before,
.realock-template #yellow .testimonial_inner_section .slick-next:hover::before,
.realock-template #yellow.dark-mode .agent .background .agent_description .agent-title:hover {
    color: #ffffff !important;
}

.realock-template #yellow .agent .background .agent_description .agent-title:hover {
    color: #000000 !important;
}

.realock-template #yellow .offcanvas {
    background-color: #f79a32 !important;
}

.realock-template #yellow .search_form_realock .filter_icon .svg_icon:hover {
    border: 2px solid #f79a32 !important;
}

.realock-template #yellow .search_form_realock .realock_form_placeholder .form_placeholder:focus {
    outline: 2px solid #f79a32;
}

.realock-template #yellow .btn:hover {
    color: #f79a32;
    background-color: #ffffff;
}

.realock-template #yellow .sidebar-nav .nav-item .nav-link:hover {
    color: #f79a32 !important;
    background-color: #ffffff !important;
}

.realock-template #yellow .navbar-light .navbar-toggler:hover {
    color: #f79a32 !important;
    border: 2px solid #f79a32 !important;
}

.realock-template #yellow .slick-active button:before {
    color: #f79a32 !important;
    outline: 2px solid #f79a32;
}

.realock-template #yellow .newsletter_form .form_container .form_submit_button {
    background-color: #f79a32;
    outline: 2px solid #f79a32;
}

.realock-template #yellow .newsletter_form .form_container .form_submit_button:hover {
    color: #f79a32;
    outline: 2px solid #f79a32;
    background-color: #ffffff;
}
/********************************************/