* {
	margin: 0;
  	padding: 0;
    font-family: 'Open Sans', sans-serif;
}

html,body{
	width: 100%;
	height: auto;
	overflow-x: hidden;
} 

h1,h2{
    font-family: 'Nunito', sans-serif;
}

/* NAVBAR */

.navbar{
    transition: all 0.4s;
    border-bottom: 1px solid;
    border-bottom-color: rgba(255,255,255,0.6);
}

.nav-item{
    margin-left: 10px;
}

.slash{
    margin-bottom: 0;
    margin-top: 8px;
    color: white;
}

.navbar .nav-link {
    color: white;
}

.line{
    border: 1px solid white;
    margin-left: 25px;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #ff5a5f;
    text-decoration: none;
}

.active-link{
    color: #ff5a5f !important;
}

.navbar .navbar-brand {
    color: white;
}

.submit-btn{
    background-color: white;
    color: #ff5a5f !important;
    border-radius: 30px;
    padding: 10px 25px !important;
    border: 2px solid white;
}

.submit-btn:hover{
    background-color: transparent;
    color: white!important;
    border: 2px solid white;
}

/* Change navbar styling on scroll */
.navbar.active {
    background: #fff;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.active .nav-link {
    color: #555;
}

.navbar.active .nav-link:hover,
.navbar.active .nav-link:focus {
    color: #ff5a5f;
    text-decoration: none;
}

.navbar.active .navbar-brand {
    color: #555;
}

.navbar.active .slash{
    color: #555;
}

.navbar.active .line{
    border: 1px solid #555;
}

.navbar.active .submit-btn{
    background-color: #ff5a5f;
    color: white !important;
    border-radius: 30px;
    padding: 10px 25px !important;
    border: 2px solid #ff5a5f;
}

.navbar.active .submit-btn:hover{
    background-color: transparent;
    color: #ff5a5f !important;
    border: 2px solid #ff5a5f;
}

/* Change navbar styling on small viewports */
@media (max-width: 991.98px) {
    .navbar {
        background: #fff;
    }

    .navbar .navbar-brand, .navbar .nav-link {
        color: #555;
    }
}

/* HERO */

#hero{
    background-image: url(..//images/slider3.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
}

.bg-hero{
    width: 100%;
    min-height: inherit;
    background: linear-gradient(to right, rgba(255,90,95, 0.7) 20%, rgba(0,112,187, 0.7) 100%);
}

.text-hero{
    text-align: center;
    color: white;
    padding-top: 30vh;
}

.text-hero h1{
    font-family: 'Nunito', sans-serif;
    font-size: 60px;
    text-transform: capitalize;
}

.form-group-simple{
    margin-bottom: 0;
}

.row-form{
    background-color: white;
    padding: 20px 10px;
    border-radius: 30px;
    box-shadow: 0px 0px 0px 10px rgba(255,255,255,0.4);
    margin: 40px 0;
}

.form-simple{
    border-radius: 15px;
    box-shadow: none !important;
}

.btn-simple{
    width: 100%;
    border-radius: 15px;
    padding: 5px;
    border:2px solid #ff5a5f;
    background-color: #ff5a5f;
    color: white;
    letter-spacing: 1px;
}

.btn-simple:hover{
    border:2px solid #ff5a5f;
    background-color: transparent;
    color: #ff5a5f;
}

.text-hero-choose h5{
    text-align: center;
    color: white;
    padding-top: 30px;
}

.property-choose{
    margin-top: 40px;
}

.choose-property{
    text-align: center;
}

.choose-property a{
    color: #484848;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.6);
    display: block;
    padding: 15px 5px;
    text-decoration: none;
    border-radius: 30px;
}

.choose-property a:hover{
    color: #484848;
    background: rgba(255,255,255,1);
    text-decoration: none;
}

/* FEATURED LISTINGS */

#featured{
    padding: 80px 0;
}

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

.text-featured h2{
    font-family: 'Nunito', sans-serif;
    font-size: 40px;
    color: #484848;
    text-transform: capitalize;
}

.text-featured p{
    font-size: 18px;
    margin-bottom: 0;
    padding-bottom: 40px;
}

.img-listings{
    width: 100%;
    min-height: 250px;
    border-radius: 5px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.img-listings p{
    position: absolute;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background: rgba(0,0,0,0.6);
    padding: 5px;
    border-radius: 2px;
    top: 5px;
    right: 5px;
}

.img-listings h5{
    position: absolute;
    left: 5px;
    bottom: 5px;
    color: white;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 0;
    background: rgba(0,0,0,0.6);
    padding: 5px;
    border-radius: 2px;
}

.box-listings{
    padding: 15px;
}

.listings{
    padding: 10px 0;
}

.listings h6{
    color: #ff5a5f;
    letter-spacing: 1px;
}

.listings h4 a{
    color: #484848;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 0;
    text-transform: capitalize;
}

.listings h4 a:hover{
    color: #ff5a5f;
}

.listings p{
    letter-spacing: 1px;
    color: #a5a5a5;
}

.listings p i{
    padding-right: 5px;
}

.listings ul li{
    list-style: none;
    display: inline-block;
    margin-right: 15px;
    color: #a5a5a5;
}

.listings a{
    text-decoration: none;
    color: #ff5a5f;
    letter-spacing: 1px;
    font-weight: 600;
}

.listings a:hover{
    text-decoration: none;
    color: #484848;
}

.paginations{
    margin-top: 60px;
}

.page-link{
    color: #ff5a5f;
}

.page-link:hover{
    background-color: #ff5a5f;
    color: white;
}

.active-pagin{
    background-color: #ff5a5f;
    color: white;
}

/* SELL PROPERTY */

#sell-property{
    background-image: url(..//images/house6.jpg);
    width: 100%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.bg-sell-property{
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(to right, rgba(255,90,95, 0.7) 20%, rgba(0,112,187, 0.7) 100%);
    width: 100%;
    height: inherit;
}

.bg-sell-property h2{
    font-family: 'Nunito', sans-serif;
    font-size: 40px;
    color: #484848;
    text-transform: capitalize;
    color: white;
}

.bg-sell-property p{
    font-size: 18px;
    margin-bottom: 0;
    padding-bottom: 40px;
    color: white;
}

.btn-sell{
    margin-top: 40px;
    margin-bottom: 20px;
}

.btn-sell a{
    color: #484848;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    border: 2px solid white;
}

.btn-sell a:hover{
    color: white;
    background-color: transparent;
    text-decoration: none;
    border: 2px solid white;
}

/* FIND PROPERTIES */

#find-properties{
    padding: 80px 0;
}

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

.text-find h2{
    font-family: 'Nunito', sans-serif;
    font-size: 40px;
    color: #484848;
    text-transform: capitalize;
}

.text-find p{
    font-size: 18px;
    margin-bottom: 0;
    padding-bottom: 40px;
}

.box-find{
    padding: 15px;
}

.img-find{
    width: 100%;
    min-height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
    position: relative;
}

.img-find a{
    width: 100%;
    min-height: 300px;
    text-decoration: none;
}

.bg-img-find{
    width: 100%;
    min-height: inherit;
    background: rgba(0,0,0,0.4);
    text-align: center;
    border-radius: 5px;
}

.bg-img-find h4{
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
    padding-top: 120px;
}

.bg-img-find p{
    color: white;
}

.img-find a:hover .bg-img-find{
    opacity: 0;
    transition: 0.6s ease;
}

/* CTA */

#cta{
    background-image: url(..//images/house5.jpg);
    width: 100%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.bg-cta{
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(to right, rgba(255,90,95, 0.7) 20%, rgba(0,112,187, 0.7) 100%);
    width: 100%;
    height: inherit;
}

.bg-cta h2{
    font-family: 'Nunito', sans-serif;
    font-size: 40px;
    color: #484848;
    text-transform: capitalize;
    color: white;
}

.bg-cta p{
    font-size: 18px;
    margin-bottom: 0;
    padding-bottom: 40px;
    color: white;
}

.btn-cta{
    margin-top: 40px;
    margin-bottom: 20px;
}

.btn-cta a{
    color: #484848;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    border: 2px solid white;
}

.btn-cta a:hover{
    color: white;
    background-color: transparent;
    text-decoration: none;
    border: 2px solid white;
}

/* BLOG HOME POST */

#home-blog{
    padding: 80px 0;
}

.text-home-blog{
    text-align: center;
}

.text-home-blog h2{
    font-family: 'Nunito', sans-serif;
    font-size: 40px;
    color: #484848;
    text-transform: capitalize;
}

.text-home-blog p{
    font-size: 18px;
    margin-bottom: 0;
    padding-bottom: 40px;
}

.box-home-blog{
    padding: 15px;
}

.img-home-blog{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 250px;
    border-radius: 5px;
}

.box-text-home-blog{
    padding: 10px 0;
}

.box-text-home-blog h6{
    color: #ff5a5f;
    letter-spacing: 1px;
}

.box-text-home-blog h4 a{
    color: #484848;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 0;
    text-transform: capitalize;
}

.box-text-home-blog h4 a:hover{
    color: #ff5a5f;
}
.box-text-home-blog a{
    text-decoration: none;
    color: #ff5a5f;
    letter-spacing: 1px;
    font-weight: 600;
}

.box-text-home-blog a:hover{
    text-decoration: none;
    color: #484848;
}

.box-text-home-blog p{
    color: #a5a5a5;   
}

/* FOOTER */

footer{
    background-color: #2c4b81;
    width: 100%;
    height: auto;
    padding-top: 80px;
}

.text-footer{
    
}

.text-footer h5{
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.text-footer p{
    color: white;
}

.text-footer ul li{
    list-style: none;
    margin-bottom: 5px;
    color: white;
}

.text-footer ul li a{
    color: white;
    text-decoration: none;
}

.text-footer ul li a:hover{
    color: #ff5a5f;
    text-decoration: none;
}

.footer-soc ul{
    margin-bottom: 0;
}

.footer-soc ul li{
    display: inline-block;
    margin-right: 10px;
}

.footer-soc ul li a i{
    font-size: 25px;
}

.copy{
    margin-top: 60px;
}

.copy p{
    float: left;
    width: 50%;
    color: white;
}

.copy p:last-of-type{
    text-align: right;
}

.copy p a{
    text-decoration: none;
    color: #ff5a5f;
}

.copy p a:hover{
    text-decoration: none;
    color: white;
}

/* RESPONSIVE HOME PAGE */

@media (min-width: 992px) and (max-width: 1199px) {
    .navbar .nav-link{
        font-size: 14px;
    }
    .img-listings{
        min-height: 220px;
    }
    .img-listings p{
        font-size: 16px;
    }
    .img-listings h5{
        font-size: 20px;
    }
    .img-find{
        min-height: 250px;
    }
    .img-find a{
        min-height: 250px;
    }
    .bg-img-find h4{
        padding-top: 100px;
    }
    .img-home-blog{
        height: 220px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .slash{
        display: none;
    }
    .nav-link{
        text-align: center;
    }
    .line{
        display: none;   
    }
    .submit-btn{
        background-color: #ff5a5f;
        color: white !important;
        width: 50%;
        margin: 0 auto;
    }
    .text-hero{
        padding-top: 21vh;
    }
    .form-group-simple{
        margin: 5px 0;
    }
    .choose-property{
        margin: 5px;
    }
    .img-listings p{
        font-size: 16px;
    }
    .img-listings h5{
        font-size: 20px;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .slash{
        display: none;
    }
    .nav-link{
        text-align: center;
    }
    .line{
        display: none;   
    }
    .submit-btn{
        background-color: #ff5a5f;
        color: white !important;
        width: 50%;
        margin: 0 auto;
    }
    .text-hero{
        padding-top: 14vh;
    }
    .form-group-simple{
        margin: 5px 0;
    }
    .choose-property{
        margin: 5px;
    }
    .property-choose{
        padding-bottom: 4vh;
    }
    .img-listings p{
        font-size: 16px;
    }
    .img-listings h5{
        font-size: 20px;
    }
    .img-find{
        min-height: 250px;
    }
    .img-find a{
        min-height: 250px;
    }
    .bg-img-find h4{
        padding-top: 100px;
    }
    footer{
        text-align: center;
    }
    .copy p{
        float: none;
        width: 100%
    }
    .copy p:last-of-type{
        text-align: center;
    }
}

@media (min-width: 321px) and (max-width: 480px) {
    .slash{
        display: none;
    }
    .nav-link{
        text-align: center;
    }
    .line{
        display: none;   
    }
    .submit-btn{
        background-color: #ff5a5f;
        color: white !important;
        width: 100%;
    }
    .text-hero h1{
        font-size: 40px;
    }
    .text-hero-choose h5{
        padding-top: 10px;;
        margin-bottom: 0;
    }
    .text-hero{
        padding-top: 14vh;
    }
    .form-group-simple{
        margin: 5px 0;
    }
    .choose-property{
        margin: 5px;
    }
    .property-choose{
        padding-bottom: 4vh;
    }
    #featured{
        padding: 40px 0;
    }
    .text-featured h2{
        font-size: 35px;
    }
    .img-listings p{
        font-size: 16px;
    }
    .img-listings h5{
        font-size: 20px;
    }
    .bg-sell-property h2{
        font-size: 35px;
    }
    #find-properties{
        padding: 40px 0;
    }
    .text-find h2{
        font-size: 35px;
    }
    .bg-cta h2{
        font-size: 35px;
    }
    #home-blog{
        padding: 40px 0;
    }
    footer{
        padding-top: 40px;
        text-align: center;
    }
    .copy p{
        float: none;
        width: 100%;
    }
    .copy p:last-of-type{
        text-align: center;
    }
}

@media (max-width: 320px) {
    .slash{
        display: none;
    }
    .nav-link{
        text-align: center;
    }
    .line{
        display: none;   
    }
    .submit-btn{
        background-color: #ff5a5f;
        color: white !important;
        width: 100%;
    }
    .text-hero h1{
        font-size: 40px;
    }
    .text-hero-choose h5{
        padding-top: 10px;;
        margin-bottom: 0;
    }
    .text-hero{
        padding-top: 20vh;
    }
    .form-group-simple{
        margin: 5px 0;
    }
    .choose-property{
        margin: 5px;
    }
    .property-choose{
        padding-bottom: 6vh;
    }
    #featured{
        padding: 40px 0;
    }
    .text-featured h2{
        font-size: 35px;
    }
    .img-listings p{
        font-size: 16px;
    }
    .img-listings h5{
        font-size: 20px;
    }
    .bg-sell-property h2{
        font-size: 35px;
    }
    #find-properties{
        padding: 40px 0;
    }
    .text-find h2{
        font-size: 35px;
    }
    .bg-cta h2{
        font-size: 35px;
    }
    #home-blog{
        padding: 40px 0;
    }
    footer{
        padding-top: 40px;
        text-align: center;
    }
    .copy p{
        float: none;
        width: 100%;
    }
    .copy p:last-of-type{
        text-align: center;
    }
    .img-find{
        min-height: 250px;
    }
    .img-find a{
        min-height: 250px;
    }
    .bg-img-find h4{
        padding-top: 85px;
    }
}

/* SUB PAGEs */

#sub-pages{
    width: 100%;
    height: auto;
    background-image: url(..//images/wall.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-sub-pages{
    background: linear-gradient(to right, rgba(255,90,95, 0.7) 20%, rgba(0,112,187, 0.7) 100%);
    width: inherit;
    height: inherit;
    padding-top: 15vh;
    padding-bottom: 5vh;
}

.text-sub-pages h1{
    color: white;
    margin-bottom: 0;
}

.text-sub-pages ul{
    margin-bottom: 0;
    text-align: right;
    margin-top: 10px;
}

.text-sub-pages ul li{
    list-style: none;
    display: inline-block;
}

.text-sub-pages ul li i{
    color: white;
    margin: 0 10px;
}

.text-sub-pages ul li a{
    color: white;
    text-decoration: none;
}

.text-sub-pages ul li a:hover{
    color: #ff5a5f;
}

.active-sublink{
    color: #ff5a5f !important;
}

/* ALL PROPERTIES LEFT SIDE */

#all-properties{
    padding: 80px 0;
    width: 100%;
    height: auto;
}

.search-form-prop{
    
}

.search-form-prop h4{
    margin-bottom: 20px;
    color: #484848;
}

.form-all{
    box-shadow: none !important;
    border-radius: 15px;
}

.btn-all{
    width: 100%;
    border-radius: 15px;
    padding: 5px;
    border:2px solid #ff5a5f;
    background-color: #ff5a5f;
    color: white;
    letter-spacing: 1px;
}

.btn-all:hover{
    border:2px solid #ff5a5f;
    background-color: transparent;
    color: #ff5a5f;
}

.latest-prop{
    margin-top: 15px;
}

.latest-prop h4{
    margin-bottom: 20px;
    color: #484848;
}

.img-latest-prop{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 170px;
    border-radius: 5px;
}

.latest-prop h5{
    font-weight: 600;
    margin: 10px 0;
}

.latest-prop p{
    margin-bottom: 0;
}

.latest-prop h5 a{
    text-decoration: none;
    color: #ff5a5f;
}

.latest-prop h5 a:hover{
    text-decoration: none;
    color: black;
}

/* RESPONSIVE PROPERTIES PAGE */

@media (min-width: 992px) and (max-width: 1199px) {
	
}

@media (min-width: 768px) and (max-width: 991px) {
	
}

@media (min-width: 481px) and (max-width: 767px) {
    .text-sub-pages h1{
        text-align: center;
    }
    .text-sub-pages ul{
        text-align: center;
    }
}

@media (min-width: 321px) and (max-width: 480px) {
    .text-sub-pages h1{
        text-align: center;
        font-size: 35px;
    }
    .text-sub-pages ul{
        text-align: center;
    }
    #all-properties{
        padding: 40px 0;
    }
}

@media (max-width: 320px) {
    .text-sub-pages h1{
        text-align: center;
        font-size: 35px;
    }
    .text-sub-pages ul{
        text-align: center;
    }
    #all-properties{
        padding: 40px 0;
    }
    .bg-sub-pages{
        padding-top: 20vh;
    }
}

/* SINGLE PROPERTY */

#single-property{
    padding: 80px 0;
}

/* LEFT SIDE */

.img-single-prop{
    background-image: url(..//images/house5.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 250px;
    border-radius: 5px;
}

.text-single-prop h3{
    color: #484848;
}

.text-single-prop p{
    color: #a5a5a5;
}

.text-single-prop ul li{
    list-style: none;
}

.text-single-prop ul li a{ 
    text-decoration: none;
    color: black;
    letter-spacing: 1px;
}

.text-single-prop ul li a:hover{
    text-decoration: none;
    color: #ff5a5f;
}

.links-info{
    
}

.links-info ul{
    margin-bottom: 0;
}

.links-info ul li{
    list-style: none;
    display: inline-block;
}

.links-info ul li span{
    margin: 0 10px;
}

.links-info ul li:nth-of-type(2):hover{
    cursor: auto;
    color: black;
}

.links-info ul li:hover{
    cursor: pointer;
    color: #ff5a5f;
}

.img-fluid{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 220px;
    border-radius: 5px;
}

.item{
    padding: 10px;
}

.single-prop-location{
    
}

.single-prop-location h4{
    margin-bottom: 20px;
}

.location-map{
    width: 100%;
    height: 350px;
}

/* RIGHT SIDE */

.about-agency-prop{
   
}

.about-agency-prop h4{
    margin-bottom: 20px;
    color: #484848;
}

.about-agency-prop p{
    margin: 15px 0;
}

.img-agency-prop{
    background-image: url(..//images/house6.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 250px;
    border-radius: 5px;
}

.about-agency-prop ul{
    
}

.about-agency-prop ul li{
    list-style: none;
}

.about-agency-prop ul li a{
    text-decoration: none;
    color: #ff5a5f;
}

.about-agency-prop ul li a:hover{
    text-decoration: none;
    color: black;
}

.single-prop-cont h4{
    margin-bottom: 20px;
    color: #484848;
}

.form-fields-singl{
    box-shadow: none !important;
    border-radius: 15px;
}

.btn-singl{
    width: 100%;
    border-radius: 15px;
    padding: 5px;
    border:2px solid #ff5a5f;
    background-color: #ff5a5f;
    color: white;
    letter-spacing: 1px;
}

.btn-singl:hover{
    border:2px solid #ff5a5f;
    background-color: transparent;
    color: #ff5a5f;
}

/* RESPONSIVE SINGLE PROPERTY */

@media (min-width: 992px) and (max-width: 1199px) {
	.img-agency-prop{
        height: 220px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .text-single-prop h3{
        margin-top: 30px;
    }
    .img-agency-prop{
        height: 200px;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .text-single-prop h3{
        margin-top: 30px;
    }
}

@media (min-width: 321px) and (max-width: 480px) {
    #single-property{
        padding: 40px 0;
    }
    .text-single-prop h3{
        margin-top: 30px;
    }
}

@media (max-width: 320px) {
    #single-property{
        padding: 40px 0;
    }
    .text-single-prop h3{
        margin-top: 30px;
    }
}

/* FAQ PAGE */

#faq{
    padding: 80px 0;
}

.faq-nav {
    flex-direction: column;
    margin: 0 0 32px;
    border-radius: 2px;    
    border: 1px solid #ddd;
    box-shadow: 0 1px 5px rgba(85, 85, 85, 0.15);
}
    
.nav-pill {
        position: relative;
        display: block;
        margin: 0;
        padding: 13px 16px;
        background-color: #fff;
        border: 0;
        border-bottom: 1px solid #ddd;
        border-radius: 0;
        color: #616161;
        transition: background-color .2s ease;
}
        
.nav-pill:hover {
            background-color: #f6f6f6;
    text-decoration: none;
    color: #484848;
    font-weight: 600;
        }
        
.nav-pill.active {
            background-color: #f6f6f6;
            font-weight: 600;
            color: #484848;        
        }
        
.nav-pill:last-of-type {
            border-bottom-left-radius: 2px;
            border-bottom-right-radius: 2px;
            border-bottom: 0;
        }
        
        .nav-pill i.mdi {
            margin-right: 5px;
            font-size: 18px;
            position: relative;
        }


// TAB CONTENT
.tab-content {
    box-shadow: 0 1px 5px rgba(85, 85, 85, 0.15);
  }  
    .card {
        border-radius: 0;
    }
    
    .card-header {
        padding: 15px 16px;
        border-radius: 0;
        background-color: #f6f6f6;
  }      
        .tab-content h5 {
            margin: 0;
    }
            .tab-content button {
                display: block;
                width: 100%;
                padding: 0;
                border: 0;
                font-weight: 700;
                color: rgba(0,0,0,.87);
                text-align: left;
                white-space: normal;
}
                
                .tab-content button:hover,
                .tab-content button:focus,
                .tab-content button:active,
                .tab-content button:hover:active {
                    text-decoration: none;
                    color: #484848;
                }
    
    .card-body p{
            color: #616161;
}
            
            .card-body:last-of-type {
                margin: 0;
            }

.accordion .card:not(:first-child) {
            border-top: 0;
        }   
    }

.collapse.show .card-body{
        border-bottom: 1px solid rgba(0,0,0,.125);
    }

/* RESPONSIVE FAQ */

@media (min-width: 992px) and (max-width: 1199px) {
	
}

@media (min-width: 768px) and (max-width: 991px) {
	
}

@media (min-width: 481px) and (max-width: 767px) {

}

@media (min-width: 321px) and (max-width: 480px) {
    #faq{
        padding: 40px 0;
    }
}

@media (max-width: 320px) {
    #faq{
        padding: 40px 0;
    }
}

/* BLOG PAGE */

#blog-page{
    padding: 80px 0;
}

.padd-blog{
    padding: 15px;
}

.img-blog-page{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 250px;
    border-radius: 5px;
}

.text-blog-page{
    
}

.text-blog-page h6{
    margin-bottom: 0;
    margin-top: 15px;
    color: #ff5a5f;
}

.text-blog-page h4{
    margin: 15px 0;
}

.text-blog-page h4 a{
    color: #484848;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.text-blog-page h4 a:hover{
    text-decoration: none;
    color: #ff5a5f;
}

.text-blog-page ul li{
    list-style: none;
    display: inline-block;
    width: 49%;
    color: #a5a5a5;
}

.text-blog-page ul li a{
    text-decoration: none;
    color: #a5a5a5;
}

.text-blog-page ul li a:hover{
    text-decoration: none;
    color: black;
}

.text-blog-page ul li i{
    color: #ff5a5f;
    margin-right: 5px;
}

.text-blog-page ul li:last-of-type{
    text-align: right;
}

/* RIGHT SIDE BLOG */

.blog-cattegory{
    
}

.blog-cattegory h5{
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #484848;
}

.blog-cattegory ul li{
    list-style: none;
    margin-bottom: 5px;
}

.blog-cattegory ul li a{
    text-decoration: none;
    color: #a5a5a5;
}

.blog-cattegory ul li a:hover{
     text-decoration: none;
    color: #ff5a5f;
}

.blog-cattegory ul li i{
    color: #484848;
    margin-right: 10px;
}

.blog-tags{
    margin-top: 30px;
}

.blog-tags h5{
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #484848;
}

.blog-tags ul{
    margin-bottom: 10px;
}

.blog-tags ul li{
    list-style: none;
    margin-bottom: 5px;
}

.blog-tags ul li a{
    text-decoration: none;
    color: #a5a5a5;
}

.blog-tags ul li a:hover{
     text-decoration: none;
    color: #ff5a5f;
}

/* RESPONSIVE BLOG PAGE */

@media (min-width: 992px) and (max-width: 1199px) {
	
}

@media (min-width: 768px) and (max-width: 991px) {
	
}

@media (min-width: 481px) and (max-width: 767px) {
    .blog-cattegory h5{
        margin-top: 40px;
    }
}

@media (min-width: 321px) and (max-width: 480px) {
    .blog-cattegory h5{
        margin-top: 40px;
    }
    #blog-page{
        padding: 40px 0;
    }
}

@media (max-width: 320px) {
    .blog-cattegory h5{
        margin-top: 40px;
    }
    #blog-page{
        padding: 40px 0;
    }
}

/* BLOG POST */

#blog-post{
    padding: 80px 0;
}

.blog-post-text{
    
}

.blog-post-text h6{
    color: white;
    background-color: #ff5a5f;
    width: 15%;
    padding: 5px 15px;
    text-align: center;
    border-radius: 5px;
}

.blog-post-text h4{
    font-weight: 600;
    letter-spacing: 1px;
    color: #484848;
    margin: 15px 0;
}

.blog-post-text ul{
    
}

.blog-post-text ul li{
    list-style: none;
    display: inline-block;
    margin-right: 25px;
}

.blog-post-text ul li i{
    color: #ff5a5f;
    margin-right: 5px;
}

.blog-post-text ul li a{
    text-decoration: none;
    color: #a5a5a5;
}

.blog-post-text ul li a:hover{
    text-decoration: none;
    color: #484848;
}

.blog-post-text ul li span{
    color: #a5a5a5;
}

.img-blog-post{
    background-image: url(..//images/house5.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 420px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.desc-post h5{
    letter-spacing: 1px;
    font-weight: 600;
    color: #484848;
}

.desc-post p{
    margin-bottom: 30px;
}

.desc-post p:nth-of-type(3){
    font-style: italic;
}

.desc-post p:nth-of-type(4){
    border-left: 3px solid #ff5a5f;
    padding: 20px;
    font-style: italic;
}

.share-links{
    
}

.share-links ul{
    
}

.share-links ul li{
    list-style: none;
    display: inline-block;
    margin-right: 10px;
}

.share-links ul li a i{
    font-size: 18px;
    color: #a5a5a5;
}

.share-links ul li a i:hover{
    color: #ff5a5f;
}

.post-tags{
    
}

.post-tags ul{
    text-align: right;
}

.post-tags ul li{
    list-style: none;
    display: inline-block;
}

.post-tags ul li:first-of-type{
    margin-right: 10px;
}

.post-tags ul li a{
    text-decoration: none;
    color: #a5a5a5;
}

.post-tags ul li a:hover{
    text-decoration: none;
    color: #ff5a5f;
}

.desc-post ul{
    margin: 30px 0;
}

.desc-post ul li{
    list-style: none;
    display: inline-block;
    width: 49%;
}

.desc-post ul li:last-of-type{
    text-align: right;
}

.desc-post ul li a{
    text-decoration: none;
   color: #a5a5a5;
}

.desc-post ul li a:hover{
    text-decoration: none;
   color: #ff5a5f;
}

.form-comment h5{
    font-weight: 600;
    letter-spacing: 1px;
    color: #484848;
    margin-top: 40px;
}

.form-comment form{
    margin: 20px 0 40px 0;
}

.form-fields-comm{
    box-shadow: none !important;
}

.check-label{
    margin-bottom: 0;
}

.btn-comm{
    background-color: #ff5a5f;
    border: 2px solid #ff5a5f;
    border-radius: 30px;
    padding: 10px 45px;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-comm:hover{
    background-color: transparent;
    border: 2px solid #ff5a5f;
    color: #ff5a5f;
    font-weight: 600;
}

.padd-rel-post{
    padding: 15px;
}

.title-rel{
    font-weight: 600; 
    letter-spacing: 1px;
    margin-top: 40px;
}

.img-rel-post{
    width: 100%;
    height: 250px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
}

.rel-post-text{
    
}

.rel-post-text h5{
    margin: 15px 0;
}

.rel-post-text h5 a{
    font-weight: 600;
    letter-spacing: 1px;
    color: #484848;
    text-decoration: none;
}

.rel-post-text h5 a:hover{
    color: #ff5a5f;
    text-decoration: none;
}

.rel-post-text h6{
    color: #a5a5a5;
}

.rel-post-text h6 i{
    margin-right: 5px;
}

.rel-post-text p{
    margin: 15px 0; 
}

.rel-post-text ul{
    margin-bottom: 0;
}

.rel-post-text ul li{
    list-style: none;
    display: inline-block;
    width: 49%;
}

.rel-post-text ul li:first-of-type{
    color: #a5a5a5;
}

.rel-post-text ul li:first-of-type i{
    margin-right: 5px;
}

.rel-post-text ul li a{
    color: #a5a5a5;
    text-decoration: none;
}

.rel-post-text ul li a:hover{
    color: #ff5a5f;
    text-decoration: none;
}

.rel-post-text ul li:last-of-type{
    text-align: right;
}

.rel-post-text ul li:last-of-type a i{
    margin-left: 5px;
}

/* RESPONSIVE BLOG POST */

@media (min-width: 992px) and (max-width: 1199px) {
	
}

@media(min-height: 1366px){
    .bg-sub-pages{
        padding-top: 12vh;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .blog-post-text h6{
        width: 25%;
    }
    .img-blog-post{
        height: 350px;
    }
    .desc-post ul li span{
        display: none;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .blog-post-text h6{
        width: 25%;
    }
}

@media (min-width: 321px) and (max-width: 480px) {
    .blog-post-text h6{
        width: 35%;
    }
    .img-blog-post{
        height: 250px;
    }
    .share-links ul{
        text-align: center;
    }
    .post-tags ul{
        text-align: center;
    }
    .desc-post ul li span{
        display: none;
    }
    #blog-post{
        padding: 40px 0;
    }
}

@media (max-width: 320px) {
    .blog-post-text h6{
        width: 40%;
    }
    .img-blog-post{
        height: 250px;
    }
    .share-links ul{
        text-align: center;
    }
    .post-tags ul{
        text-align: center;
    }
    .desc-post ul li span{
        display: none;
    }
    #blog-post{
        padding: 40px 0;
    }
}

/* CONTACT */

.padd-cont{
    padding: 0;
}

.map-cont{
    width: 100%;
    height: 500px;
}

.data-cont{
    background-color: #ff5a5f;
    padding: 30px 20px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    color: white;
    width: 100%;
    height: 100%;
}

.data-cont h5{
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.data-cont p{
    margin: 25px 0;
}

.data-cont ul{
    
}

.data-cont ul li{
    list-style: none;
    margin-bottom: 15px;
}

.data-cont ul li i{
    font-size: 22px;
}

.data-cont ul li a{
    text-decoration: none;
    color: white;
}

.form-cont-page{
    padding: 30px 20px;
    background-color: white;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: 5px 4px 15px #999999;
}

.btn-captcha-cont{
    background-color: #ff5a5f;
    border: 2px solid #ff5a5f;
    border-radius: 30px;
    padding: 10px 45px;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 30px;
}

.btn-captcha-cont:hover{
    background-color: transparent;
    border: 2px solid #ff5a5f;
    color: #ff5a5f;
    font-weight: 600;
}

#cont-form{
    padding-bottom: 80px;
    margin-top: -150px;
}

.padd-cont-form{
    padding: 0;
}

.form-fields-cont{
    box-shadow: none !important;
}

/* RESPONSIVE CONTACT */

@media (min-width: 992px) and (max-width: 1199px) {
	
}

@media (min-width: 768px) and (max-width: 991px) {
	
}

@media (min-width: 481px) and (max-width: 767px) {
    .data-cont{
        border-bottom-left-radius: 0;
        border-top-right-radius: 5px;
    }
    .form-cont-page{
        border-top-right-radius: 0;
        border-bottom-left-radius: 5px;
    }
}

@media (min-width: 321px) and (max-width: 480px) {
    .data-cont{
        border-bottom-left-radius: 0;
        border-top-right-radius: 5px;
    }
    .form-cont-page{
        border-top-right-radius: 0;
        border-bottom-left-radius: 5px;
    }
    .padd-cont-form{
        padding: 0 15px;
    }
    .map-cont{
        width: 100%;
        height: 350px;
    }
    #cont-form{
        margin-top: -100px;
        padding-bottom: 40px;
    }
}

@media (max-width: 320px) {
    .data-cont{
        border-bottom-left-radius: 0;
        border-top-right-radius: 5px;
    }
    .form-cont-page{
        border-top-right-radius: 0;
        border-bottom-left-radius: 5px;
    }
    .padd-cont-form{
        padding: 0 15px;
    }
    .map-cont{
        width: 100%;
        height: 350px;
    }
    #cont-form{
        margin-top: -100px;
        padding-bottom: 40px;
    }
}

/* LOGIN / REGISTRATION */

#myModal{
    margin-top: 150px;
    padding-left: 0 !important;
}

.body-modal{
    border-right: 1px dotted #C2C2C2; 
    padding-right: 30px;
}

.nav-tabs{
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.login{
    text-decoration: none;
    color: #484848;
    padding: 10px 20px 10px 15px;
}

.login:hover{
    text-decoration: none;
    color: #ff5a5f;
}

.register{
    text-decoration: none;
    color: #484848;
    padding: 10px 20px 10px 15px;
}

.register:hover{
    text-decoration: none;
    color: #ff5a5f;
}

.active-log{
    color: #ff5a5f !important;
}

.btn-submit-log{
    background-color: #ff5a5f;
    width: 35% !important;
    text-align: center !important;
    padding: 10px !important;
    color: white !important;
    letter-spacing: 1px;
    margin-left: 15px;
}

.forget-pass{
    margin: 10px 10px 10px 15px;
}

.btn-save-reg{
    background-color: #ff5a5f;
    width: 50% !important;
    text-align: center !important;
    padding: 10px !important;
    color: white !important;
    letter-spacing: 1px;
    margin-left: 15px;
}

.btn-cancel-reg{
    margin: 10px 10px 10px 15px;
}

.form-log-reg{
    box-shadow: none !important;
}

/* RESPONSIVE LOGIN */

@media (min-width: 992px) and (max-width: 1199px) {
	
}

@media (min-width: 768px) and (max-width: 991px) {
    .body-modal{
        border-right: 0px dotted #C2C2C2; 
        padding-right: 15px;
    }
    .sign-with{
        text-align: left !important;
        margin-left: 0px;
        margin-right: 0px;
        border-top: 1px solid #C2C2C2;
        margin-top: 10px;
        padding-top: 15px;
    }
    #myModal{
        margin-top: 80px;
        padding-left: 0 !important;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .body-modal{
        border-right: 0px dotted #C2C2C2; 
        padding-right: 15px;
    }
    .sign-with{
        text-align: left !important;
        margin-left: 0px;
        margin-right: 0px;
        border-top: 1px solid #C2C2C2;
        margin-top: 10px;
        padding-top: 15px;
    }
    #myModal{
        margin-top: 80px;
        padding-left: 0 !important;
    }
}

@media (min-width: 321px) and (max-width: 480px) {
    .btn-submit-log{
        width: 90% !important;
    }
    .btn-save-reg{
        width: 90% !important;
    }
    .body-modal{
        border-right: 0px dotted #C2C2C2; 
        padding-right: 15px;
    }
    .sign-with{
        text-align: left !important;
        margin-left: 0px;
        margin-right: 0px;
        border-top: 1px solid #C2C2C2;
        margin-top: 10px;
        padding-top: 15px;
    }
    #myModal{
        margin-top: 80px;
        padding-left: 0 !important;
    }
}

@media (max-width: 320px) {
    .btn-submit-log{
        width: 90% !important;
    }
    .btn-save-reg{
        width: 90% !important;
    }
    .body-modal{
        border-right: 0px dotted #C2C2C2; 
        padding-right: 15px;
    }
    .sign-with{
        text-align: left !important;
        margin-left: 0px;
        margin-right: 0px;
        border-top: 1px solid #C2C2C2;
        margin-top: 10px;
        padding-top: 15px;
    }
    #myModal{
        margin-top: 80px;
        padding-left: 0 !important;
    }
}

/*

#ff5a5f - crvena
#0070bb - plava
#484848 - siva za naslove
#a5a5a5 - svetla siva

titles - font-family: 'Nunito', sans-serif;

*/