/*
	CSS file for LV Property
*/


/*	General	
------------------------------*/
	
* {
    padding: 0;
    margin: 0;
    outline: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-appearance: none;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

* html .clearfix,
*:first-child+html .clearfix { 
    zoom: 1;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    cursor: default;
}

body.post-type-archive-property,
body.single-property {
    background: #f7f7f7;
}

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

a img {
    border: 0;
}		

.container {
    width: 94%;
    max-width: 1174px;
    margin: 0 auto;
    box-sizing: border-box;
}

.site-wrapper {
    display: block !important;
    overflow: hidden;
}

.validation_error,
.gform_ajax_spinner,
.gform_validation_container {
    display: none;
}
    
@-webkit-keyframes upDown {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes upDown {
    0%, 100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@-webkit-keyframes heartbeat {
    0% { -webkit-transform: scale(1); }
    14% { -webkit-transform: scale(1.3); }
    28% { -webkit-transform: scale(1); }
    42% { -webkit-transform: scale(1.3); }
    70% { -webkit-transform: scale(1); }
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.3); }
    70% { transform: scale(1); }
}

.responsive-video {
    height: 0;
    padding-top: 25px;
    padding-bottom: 67.5%;
    position: relative;
    overflow: hidden;
}

.responsive-video.widescreen {
    padding-bottom: 57.25%;
}

.responsive-video.vimeo {
    padding-top: 0;
}

.responsive-video embed,
.responsive-video iframe,
.responsive-video object,
.responsive-video video {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}


/*	Header
-------------------------------------------*/

header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 99;
    opacity: 0;
    padding: 39px 0 33px 0;		
    box-sizing: border-box;
    backface-visibility: hidden;
    -webkit-transition: all .3s ease;
            transition: all .3s ease;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0);
}
    
    header.fixed-open {
        -webkit-transform: translate3d(368px, 0px, 0px);
                transform: translate3d(368px, 0px, 0px);
    }

    header.animate {
        opacity: 1;			
    }

    header:before {
        content: "";
        z-index: -1;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 100%;
        opacity: 0;
        visibility: hidden;
        background: #44454F;
        -webkit-transition: all .2s ease;
                transition: all .2s ease;
    }
    
    
    /*
     *	Mobile
     */
    .mobile-contact {
        display: none;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 29px;
        overflow: hidden;
        position: absolute;
        color: #44454F;
        font-size: 14px;
        font-weight: bold;
        line-height: 15px;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        background: #ffffff;
        padding: 7px 3% 7px 3%;
        box-sizing: border-box;
        text-align: center;
    }
    
        .mobile-contact .lt {
            float: left;				
        }
        
            .mobile-contact .lt span {
                color: #ab3f50;
            }
        
        .mobile-contact .rt {
            display: inline-block;
        }
        
            .mobile-contact .rt a {
                color: inherit;
                text-decoration: none;
            }
                
                .mobile-contact .rt a svg {
                    float: left;
                    width: auto;
                    height: 15px;
                    margin-right: 6px;
                }
    

    /*
     * Left
     */
     
     header .left {
         float: left;
         margin: 7px 0 0 2px;
     }
     
         header .left a {
             display: block;
             text-decoration: none;
             -webkit-transition: all 0.4s ease 0s;
                     transition: all 0.4s ease 0s;
         }
     
         header .left svg {
             position: relative;
             fill-rule: evenodd;
             -webkit-transition: all 0.4s ease 0s;
                     transition: all 0.4s ease 0s;
         }
     
         /*
          * Mobile trigger
          */
     
         header .mobile-trigger {
             float: left;
             cursor: pointer;
         }
         
             header .mobile-trigger .alt { display: none; }
         
             header .mobile-trigger svg { top: 2px; fill: #fff; }
             header .mobile-trigger svg:hover { fill: #a62a3e; }
             
         /**
          * Message
          */
         header .message {
             float: left;
             margin-left: 30px;
             padding-right: 28px;
             position: relative;
         }
         
             header .message svg {
                 position: relative;
                 top: 2px;
             }
             
             header .message svg g {
                 transition: all .3s ease;
             }
             
                 header .message a:hover svg g {
                     fill: #a62a3e !important;
                 }
         
             header .message:after {
                 content: '';
                 position: absolute;
                 top: -4px;
                 right: 0;
                 width: 1px;
                 height: 34px;
                 background: #fff;
             }
         
         /*
          * Contact
          */
         
         header .contact {
             float: left;
             margin-left: 25px;
         }
         
             header .contact svg {
                 fill: #fff;
                 float: left;
             }
             
             header .contact svg:hover { fill: #a62a3e; }
             
             header .contact span {
                 float: left;
                 color: #ffffff;
                 font-size: 21px;
                 line-height: 23px;
                 letter-spacing: 0.05em;
                 font-weight: 600;
                 margin-left: 15px;
             }	 				 			
         
         /*
          * Property search
          */
          
          header .property-search {
              float: left;
              margin-left: 40px;
          }
              
              header .property-search svg {
                 fill: #fff;
                 float: left;
                 top: -1px;
                 position: relative;
             }
                              
              header .property-search a { color: #fff; }
              header .property-search a:hover { color: #a62a3e; }
              header .property-search a:hover svg { fill: #a62a3e; }
              
              header .property-search span {
                 float: left;
                 color: #ffffff;
                 font-size: 21px;
                  line-height: 23px;
                  letter-spacing: 0.05em;
                  /*text-transform: uppercase;*/
                  font-weight: 600;
                 margin-left: 15px;
             }
                      
              
     
     /*
      * Right
      */
      
      header .right {
          float: right;
      }
      
          header .right .logo {
              max-width: 376px;
          }
          
              header .right .logo .mobile {
                  display: none;
              }
      
 /*
  * Tiny
  */ 	 
 header.tiny:before,
header.fixed:before {
     opacity: 1;
     bottom: 0;
     visibility: visible; 		
 }
 
 header.tiny {
     padding: 20px 0;
     -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.11);
     box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.11);
 }
a.StickFreevaluation {
background-color: #01ddb7;
position: fixed;
top: 50%;
z-index: 999;
right: 0;
writing-mode: vertical-rl;
color: #fff;
padding: 20px 12px;
text-decoration: none;
font-size: 20px;
border-top-left-radius: 21px;
border-bottom-right-radius: 20px;
}
.home-testimonials .text {
min-height: 370px;
}
/*	Footer
-------------------------------------------*/

footer {
    padding: 77px 0 84px 0;
    border-top: 1px solid #f6f6f6;	
}

/*
 * Left
 */
 
 footer .left {
     float: left;
 }
 
     /*
      * Top
      */
      
     footer .left .top .logo {
         float: left;
         margin-top: 3px;
     }
         
         footer .left .top .logo img {
             display: block;
             width: 89px;
             height: 59px;
             padding: 10px;
             background: #44454F;
             box-sizing: border-box;
             border-radius: 4px;
         }
         
     footer .left .top .details {
         float: left;
         margin-left: 26px;
     }
     
         /*
          * Nav
          */
          
          footer .left .top .details nav ul {
              list-style: none;
          }
          
              footer .left .top .details nav ul li {
                  float: left;
                  font-size: 16px;
                  line-height: 20px;
                  text-transform: uppercase;
              }
              
                  footer .left .top .details nav ul li:before {
                      content: '';
                      position: relative;
                      top: 4px;
                      float: left;
                      height: 15px;
                      width: 1px;
                      margin: 0 8px;
                      background: #44454F;
                  }
                  
                      footer .left .top .details nav ul li:first-child:before {
                          display: none;
                      }
                      
                 footer .left .top .details nav ul li a {
                     text-decoration: none;
                     color: #44454F;
                     -webkit-transition: all 0.3s ease 0s;
                             transition: all 0.3s ease 0s;
                 }
                 
                     footer .left .top .details nav ul li a:hover {
                         color: #e41d39;
                     }
          
          /*
           * Copyright
           */
           
          footer .left .top .copyright {
              margin-top: 3px;
          }
          
              footer .left .top .copyright ul {
                  list-style: none;
              }

                 footer .left .top .copyright ul li {
                      float: left;
                      font-size: 16px;
                      line-height: 20px;
                      text-transform: uppercase;
                      color: #44454F;
                  }
                  
                      footer .left .top .copyright ul li:before {
                          content: '';
                          position: relative;
                          top: 4px;
                          float: left;
                          height: 15px;
                          width: 1px;
                          margin: 0 5px;
                          background: #44454F;
                      }
                      
                          footer .left .top .copyright ul li:first-child:before {
                              display: none;
                          }

           
          /*
           * Office
           */
           
           footer .left .top .office {
               margin-top: 6px;
               font-size: 13px;
             line-height: 17px;
             color: #c5c5c5;
           }
         
     /*
      * Bottom
      */
      
     footer .left .bottom {
         margin-top: 35px;
     }

         footer .left .bottom .social ul {
             float: left;
             list-style: none;
         }
         
             footer .left .bottom .social ul li {
                 float: left;
                 margin-left: 10px;
             }
             
                 footer .left .bottom .social ul li:first-child {
                     margin-left: 0;
                 }
                 
                 footer .left .bottom .social ul li a {
                     display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                     width: 40px;
                     height: 40px;
                     border-radius: 50%;
                     background: #bcbdc0;
                     font-size: 20px;
                     text-decoration: none;
                     color: #fff;
                     -webkit-transition: all 0.3s ease 0s;
                             transition: all 0.3s ease 0s;
                 }
                 
                     footer .left .bottom .social ul li.facebook a:hover { background: #3b52a2; }
                     footer .left .bottom .social ul li.twitter a:hover { background: #2aace2; }
                     footer .left .bottom .social ul li.linkedin a:hover { background: #2767b0; }
                 
        footer .left .bottom .social div {
             float: left;
             margin-left: 19px;
             position: relative;
             top: 11px;
             font-size: 14px;
             line-height: 18px;
             font-weight: 600;
             letter-spacing: 0.2em;
             color: #c5c5c5;
             text-transform: uppercase;
         }
         
             footer .left .bottom .social div span {
                 color: #ac0a29;
             }
 
 /*
  * Right
  */
  
 footer .right {
     float: right;
     position: relative;
     margin-top: 1px;
     padding: 39px 0 0 0;
 }
 
     /*
      * Awards
      */
      
     footer .right .awards {
         margin-right: -3px;	
     }
      
     /*
      * Created by
      */
      
      footer .right .created-by {
          position: absolute;
        top: 0;
        right: 0;		
      }
      
          footer .right .created-by a {
              display: block;
              text-decoration: none;
          }
          
              footer .right .created-by a span {
                  font-size: 14px;
                  line-height: 18px;
                  color: #c5c5c5;
              }
          
              footer .right .created-by a svg {
                  position: relative;
                  top: 3px;
                  margin-left: 8px;
                  fill: #bcbdc0;
                  fill-rule: evenodd;
                  -webkit-transition: all 0.3s ease 0s;
                        transition: all 0.3s ease 0s;
              }
              
                  footer .right .created-by a:hover svg {
                      fill: #731472;
                  }

                  
/*	Popup
-------------------------------------------*/

.popup-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    z-index: 9999;
    padding: 0 25px;
    box-sizing: border-box;
}

    .popup-wrapper.full-background {
        background: rgba(228,29,57,0.89);
        transition: background .3s ease;	
    }
    
    .popup-wrapper.background--gray {
        background: rgba(68,69,79,0.89);
        transition: background .3s ease;
    }

    .popup-wrapper .popup {
        position: relative;
        width: 100%;
    }
    
/*  Popup : Contact form
-------------------------------------------*/
.popup-contact-form {
    position: relative;
    max-width: 637px;
    text-align: center;
    color: #fff;
}

    .popup-contact-form .close {
        position: absolute;
        right: -30px;
        top: -30px;
        cursor: pointer;
    }
    
        .popup-contact-form .close svg {
            fill: #fff;
            
        }

    .popup-contact-form .text {
        display: block;
        opacity: 1;
        visibility: visible;
        transition: all .3s ease;
    }
    
        .popup-contact-form .text.hide {
            display: none;
            opacity: 0;
            visibility: hidden;
        }

    .popup-contact-form .text .title {
        font-size: 22px;
        line-height: 28px;
        font-weight: 400;
    }
    
    .popup-contact-form .text .buttons {
        margin-top: 20px;
        position: relative;
    }
    
        .popup-contact-form .text .buttons a {
            display: block;
            width: 100%;
            max-width: 275px;
            margin: 0 auto;
            padding: 13px 20px 12px 20px;
            box-sizing: border-box;
            border-radius: 5px;
            font-size: 16px;
            line-height: 20px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all .3s ease;
            box-shadow: 0 7px 14px 0 rgba(65, 69, 88, 0), 0 3px 6px 0 rgba(0, 0, 0, 0);
        }
        
            .popup-contact-form .text .buttons a + a {
                margin-top: 10px;
            }
            
            .popup-contact-form .text .buttons a span {
                pointer-events: none;
                font-weight: 700;
            }
            
            .popup-contact-form .text .buttons a.general {
                background: #fff;
                color: #44454F;	
            }
            
            .popup-contact-form .text .buttons a.value {
                background: #B43347;
                color: #fff;	
            }
            
            .popup-contact-form .text .buttons a:hover {
                box-shadow: 0 7px 14px 0 rgba(65, 69, 88, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.25);
            }
            
    .popup-contact-form .form-wrapper .form {
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease;
    }
    
        .popup-contact-form .form-wrapper .form.show {
            display: block;
            opacity: 1;
            visibility: visible;
        }
        
        .popup-contact-form .form-wrapper .form .gform_confirmation_message {
            font-size: 18px;
            line-height: 22px;
        }
        
        .popup-contact-form .form-wrapper .form .gform_confirmation_message img {
            display: block;
            margin: 0 auto;
            max-width: 376px;
        }
    
        .popup-contact-form .gform_wrapper {}
        
        .popup-contact-form .gform_heading .gform_title {
            font-size: 22px;
            line-height: 28px;
            font-weight: 400;
        }
        
        .popup-contact-form .gform_body {
            margin-top: 20px;
        }
        
            .popup-contact-form .gfield {
                padding-top: 16px;
                list-style: none;
            }
            
                .popup-contact-form .gfield:first-child {
                    padding-top: 0;
                }
                
                .popup-contact-form .gfield .gfield_label {
                    display: none;
                }
                
                .popup-contact-form .gfield .validation_message {
                    padding: 5px 20px 7px;
                    background: rgba(228,29,57,1);
                    text-align: left;
                    border-radius: 3px;
                    margin-top: 1px;
                    font-size: 14px;
                    line-height: 14px;
                    font-weight: 400;
                    display: none;
                }
                
                    .popup-contact-form .gfield.gfield_error .validation_message {
                        display: block;
                    }
                
                .popup-contact-form .gfield input[type="text"],
                .popup-contact-form .gfield textarea {
                    display: block;
                    width: 100%;
                    padding: 14px 20px 16px 20px;
                    box-sizing: border-box;
                    border-radius: 4px;
                    border: 1px solid rgba(255,255,255,0.5);
                    background: rgba(79,81,93,1);
                    font-family: 'Source Sans Pro', sans-serif;
                    font-size: 16px;
                    line-height: 20px;
                    color: #fff;
                    transition: all .3s ease;
                }
                
                    .popup-contact-form .gfield input::-webkit-input-placeholder,
                    .popup-contact-form .gfield textarea::-webkit-input-placeholder {
                        color: #ffffff;			
                        opacity: 0.5;
                    }
                    
                    .popup-contact-form .gfield input:-moz-placeholder,
                    .popup-contact-form .gfield textarea:-moz-placeholder {
                        color: #ffffff;			
                        opacity: 0.5;
                    }
                    
                    .popup-contact-form .gfield input::-moz-placeholder,
                    .popup-contact-form .gfield textarea::-moz-placeholder {
                        color: #ffffff;
                        opacity: 0.5;
                    }
                    
                    .popup-contact-form .gfield input:-ms-input-placeholder,
                    .popup-contact-form .gfield textarea:-ms-input-placeholder {
                        color: #ffffff;
                        opacity: 0.5;
                    }
                
                    .popup-contact-form .gfield textarea {
                        height: 125px;
                        resize: none;
                    }
                    
                    .popup-contact-form .gfield input[type="text"]:focus,
                    .popup-contact-form .gfield textarea:focus {
                        border-color: rgba(255,255,255,1);
                    }
                    
                    /*
                      * Selectbox
                      */
                  
                     .popup-contact-form .gfield .sbHolder {
                         position: relative;
                         text-align: left;
                    }
                                
                    .popup-contact-form .gfield .sbHolder,
                    .popup-contact-form .gfield .sbHolder * {
                        display: block;
                        margin: 0;
                        list-style: none;
                        border: none;
                        outline: none;
                        box-sizing: border-box;
                          text-decoration: none;
                         color: #fff;
                    }
                            
                        .popup-contact-form .gfield .sbSelector {
                             position: relative;
                            padding: 14px 20px 16px 20px;
                              box-sizing: border-box;
                              border: 1px solid rgba(255,255,255,0.5);
                              border-radius: 4px;
                              background: rgba(79,81,93,1);
                              font-size: 18px;
                              line-height: 22px;
                              font-weight: 400;
                        }
                        
                        .popup-contact-form .gfield .sbToggle {
                            position: absolute;
                            background: url('../img/sbtoggle-icon-white.svg') no-repeat center center;
                            height: 100%;
                            right: 19px;
                            top: 2px;
                            width: 11px;
                            z-index: 12;
                        }
                               
                        .popup-contact-form .gfield .sbOptions {
                            position: absolute;
                            z-index: 13;
                            top: 100% !important;
                            margin-top: 1px;
                            max-height: 200px !important;
                            overflow: auto;
                            left: 0;
                            right: 0;
                            background: #ffffff;
                            border-radius: 4px;
                            border: 1px solid #f4f4f4;
                         }
                         
                             .popup-contact-form .gfield .sbOptions li + li {
                                 border-top: 1px solid #f4f4f4;
                             }
                                                                              
                               .popup-contact-form .gfield .sbOptions a {
                                   color: #44454F;
                                padding: 12px 18px;
                                -webkit-transition: all 0.3s ease 0s;
                                        transition: all 0.3s ease 0s;
                            }
        
                                .popup-contact-form .gfield .sbOptions a:hover {
                                    color: #ffffff;
                                    background: #e41d39;
                                 }
                    
                    
        .popup-contact-form .gform_footer {
            margin-top: 50px;
        }
        
            .popup-contact-form .gform_footer .button {
                display: block;
                width: 100%;
                padding: 16px 20px 16px 20px;
                box-sizing: border-box;
                border-radius: 4px;
                border: none;
                outline: none;
                background: #B43347;
                font-family: 'Source Sans Pro', sans-serif;
                font-size: 16px;
                line-height: 20px;
                font-weight: 700;
                text-transform: uppercase;
                color: #fff;
                cursor: pointer;
                transition: all .3s ease;
            }
            
                .popup-contact-form .gform_footer .button:hover {
                    background: #e41d39;
                }
                
.pac-container {
    z-index: 9999 !important;
}
    
/*  Popup : Search
-------------------------------------------*/

.popup-search { 
    max-width: 637px;
    text-align: center;
    color: #fff;
}

    .popup-search .choice span { 
        display: inline-block;
        font-size: 23px;
        line-height: 27px;
        letter-spacing: 0.075em;
         
    }
    
    .popup-search .choice > div {
        display: inline-block;
    }
    
        .popup-search .choice > div.buy { margin-left: 20px; }
        .popup-search .choice > div.rent { margin-left: 19px; }
    
        .popup-search .choice .radiobox {
            position: relative;
            top: 8px;
            border-radius: 50%;
            box-sizing: border-box;
            cursor: pointer;
            display: inline-block;
            height: 33px;
            width: 33px;
            background: transparent;
            margin: 0 auto; 
            border: 3px solid #fff; 
        }
        
            .popup-search .choice .radiobox.checked {
                background: #fff;
            }
        
            .popup-search .choice .radiobox .inn {
                background: #44454F;
                border-radius: 50%;
                display: none;
                height: 17px;
                width: 17px;
                position: relative;
                top: 5px;
                margin: 0 auto;
                -webkit-transition: all 0.3s ease 0s;
                    transition: all 0.3s ease 0s;
            }
                                            
                .popup-search .choice .radiobox.checked .inn {
                    display: block;
                }
                
            .popup-search .choice label {
                display: inline-block;
                margin-left: 15px;
                font-size: 23px;
                line-height: 27px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.075em;
                cursor: pointer;	
            }
    
    .popup-search .address {
        margin-top: 43px;
    }
    
        .popup-search input[type="text"] {
            display: block;
            width: 100%;
            padding: 14px 20px 16px 20px;
            box-sizing: border-box;
            border-radius: 4px;
            border: 1px solid #fff;
            background: rgba(255,255,255,0.14);
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 18px;
            line-height: 22px;
            color: #fff;
        }
        
        .popup-search input::-webkit-input-placeholder {
            color: #ffffff;			
            opacity: 0.5;
        }
        
        .popup-search input:-moz-placeholder {
            color: #ffffff;			
            opacity: 0.5;
        }
        
        .popup-search input::-moz-placeholder {
            color: #ffffff;
            opacity: 0.5;
        }
        
        .popup-search input:-ms-input-placeholder {
            color: #ffffff;
            opacity: 0.5;
        }		
        
    .popup-search .cols {
        margin-top: 20px;
    }
    
        .popup-search .cols .col {
            float: left;
            width: 31.55694879832811%;
            margin-left: 2.664576802507837%;
            text-align: left;
        }
        
            .popup-search .cols .col:first-child { margin-left: 0; }
            
            /*
              * Selectbox
              */
          
             .popup-search .cols .col .sbHolder {
                 position: relative;
            }
                        
            .popup-search .cols .col .sbHolder,
            .popup-search .cols .col .sbHolder * {
                display: block;
                margin: 0;
                list-style: none;
                border: none;
                outline: none;
                box-sizing: border-box;
                  text-decoration: none;
                 color: #fff;
            }
                    
                .popup-search .cols .col .sbSelector {
                     position: relative;
                    padding: 16px 20px 14px 20px;
                      box-sizing: border-box;
                      border: 1px solid #fff;
                      border-radius: 4px;
                      background: transparent;
                      font-size: 18px;
                      line-height: 22px;
                      font-weight: 700;
                }
                
                .popup-search .cols .col .sbToggle {
                    position: absolute;
                    background: url('../img/sbtoggle-icon-white.svg') no-repeat center center;
                    height: 100%;
                    right: 19px;
                    top: 2px;
                    width: 11px;
                    z-index: 12;
                }
                       
                .popup-search .cols .col .sbOptions {
                    position: absolute;
                    z-index: 13;
                    top: 100% !important;
                    margin-top: 1px;
                    max-height: 200px !important;
                    overflow: auto;
                    left: 0;
                    right: 0;
                    background: #ffffff;
                    border-radius: 4px;
                    border: 1px solid #f4f4f4;
                 }
                 
                     .popup-search .cols .col .sbOptions li + li {
                         border-top: 1px solid #f4f4f4;
                     }
                                                                      
                       .popup-search .cols .col .sbOptions a {
                           color: #44454F;
                        padding: 11px 17px;
                        -webkit-transition: all 0.3s ease 0s;
                                transition: all 0.3s ease 0s;
                    }

                        .popup-search .cols .col .sbOptions a:hover {
                            color: #ffffff;
                            background: #e41d39;
                         }
            
    .popup-search .submit {
        margin-top: 20px;
    }
    
        .popup-search .submit button {
            display: block;
            padding: 16px 15px 14px 15px;
            box-sizing: border-box;
            width: 100%;
            border: none;
            outline: none;
            background: #fff;
            border-radius: 4px;
            cursor: pointer;
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 18px;
            line-height: 22px;
            color: #44454F; 
            font-weight: 700;
            letter-spacing: 0.075em;
            text-align: center;
            text-transform: uppercase;
        }
        
    .popup-search .notes {
        margin-top: 18px;
        font-family: 'Source Sans Pro', sans-serif;
        font-size: 16px;
        line-height: 20px;
    }
    
        .popup-search .notes a {
            color: #ffffff;
            text-decoration: none;	
        }
        
        .popup-search .notes a:hover {
            text-decoration: underline;					
        }
    
        
    
/*  Popup : Message
-------------------------------------------*/

.popup-message {
    max-width: 661px;
    padding: 53px 0 77px 0;
    background: rgba(228,29,57,0.89);
    text-align: center;
}

    .popup-message .close-icon {
        position: absolute;
        top: 26px;
        right: 22px;
        cursor: pointer;	
    }
    
        .popup-message .close-icon svg {
            fill: #fff;
            fill-rule: evenodd;
        }

    .popup-message .logo img {
        display: block;
        margin: 0 auto;
    }
    
    .popup-message .text {
        margin-top: 29px;
        font-weight: 300;
        color: #fff;
    }
    
        .popup-message .text h3 {
            font-size: 36px;
            line-height: 34px;
            font-weight: 300;	
        }
        
        .popup-message .text p {
            margin-top: 9px;
            font-size: 23px;
            line-height: 27px;	
        }
        
    .popup-message .button {
        margin-top: 38px;
    }
    
        .popup-message .button a {
            display: inline-block;
            width: 439px;
            padding: 18px 15px 14px 15px;
            box-sizing: border-box;
            border-radius: 4px;
            background: #44454F;
            font-size: 23px;
            line-height: 27px;
            font-weight: 600;
            color: #fff;
            text-transform: uppercase;
            text-decoration: none;
            -webkit-transition: all 0.3s ease 0s;
                    transition: all 0.3s ease 0s;
        }
        
            .popup-message .button a:hover {
                background: #354651;
            }
    

/*	General Content
-------------------------------------------*/

.general-content {
    color: #44454F;
    font-size: 18px;
    line-height: 31px;		
}

    .general-content section > *:first-child {
        margin-top: 0;
    }

    .general-content h2 {
        margin-top: 35px;
        font-size: 19px;
        line-height: 24px;
        font-weight: 700;
        letter-spacing: 0.075em;
        text-transform: uppercase;
    }
    
    .general-content p {
        margin-top: 31px;
    }
    
        .general-content h2 + p {
            margin-top: 3px;
        }
        
        .general-content p small {
            font-size: 14px;
        }
        
    .general-content ul {
        margin-top: 25px;
        list-style: none;
    }
    
        .general-content ul li {
            position: relative;
            padding-left: 15px;
        }

            .general-content ul li:before {
                position: absolute;
                content: '';
                left: 0;
                top: 15px;
                width: 4px;
                height: 4px;
                background: #e41d39;
                border-radius: 50%;	
            }
            
    .general-content a {
        color: #44454F;
        -webkit-transition: all ease 0.3s;
                transition: all ease 0.3s;
    }
    
        .general-content a:hover {
            color: #e41d39;
        }
        
        
/*
 *	Global section
 */	
.general-content section {
    position: relative;
    box-sizing: border-box;
}

    .general-content section + section {
        margin-top: 55px;
    }
    
    .general-content section.two-image + section.text,
    .general-content section.collage + section.text {
        margin-top: 51px;
    }
    
    
/*
 *	Text
 */	
.general-content > section.text:first-child > h2:first-child + p {
    margin-top: 35px;
}

    
/*
 *	Accordion
 */	
.general-content section.accordion h2 {
    margin-top: 21px;
    padding-top: 21px;
    border-top: 1px solid #ebebeb;
    cursor: pointer;
}

    .general-content section.accordion h2:first-child {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }
    
.general-content section.accordion div p:last-child {
    padding-bottom: 23px;
}

/*
 *	One image
 */	
.general-content section.one-image img {
    width: 100%;
    height: auto;
}
    
/*
 *	Two image
 */	
.general-content section.two-image .col {
    display: block;
    float: left;
    width: 49.26289926289926%;
    height: auto;
    padding-bottom: 45.2%;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

    .general-content section.two-image .col + .col {
        margin-left: 1.47420147420147%;
    }
    
/*
 *	Collage
 */	
.general-content section.collage .left {
    display: block;
    float: left;
    width: 51.22850122850123%;
    height: auto;
    padding-bottom: 51.22850122850123%;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.general-content section.collage .right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 46.98790780835965%;
    margin-left: 1.78359096313912%;	
}

    .general-content section.collage .right .row {
        width: 100%;
        height: 48.20143884892086%;	
        background-color: #fff;
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
    }
    
        .general-content section.collage .right .row + .row {
            margin-top: 3.597122302158273%;
        }
    
/*
 *	Gallery
 */
.general-content section.gallery img {
    width: 100%;
    height: auto;
    display: block;
}

    .general-content section.gallery .swiper-button-disabled {
        display: none !important;
    }

    .general-content section.gallery .swiper-button-prev {
        left: -35px;
        width: 70px;
        height: 70px;
        margin-top: -35px !important;
        background: #44454F url('../img/arrow-white-left.svg') no-repeat right 8px center;
        border-radius: 0px 50% 50% 0px;
    }
    
    .general-content section.gallery .swiper-button-next {
        right: -35px;
        width: 70px;
        height: 70px;
        margin-top: -35px !important;
        background: #44454F url('../img/arrow-white-right.svg') no-repeat 8px center;
        border-radius: 50% 0px 0px 50%;
    }
    
    


/*	Page: Globals
-------------------------------------------*/

/*
 *	Page Header
 */
.page-header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 408px;
    padding: 120px 0 0 0;
    box-sizing: border-box;
    overflow: hidden;
}

    /*
     * Background
     */
    .page-header .background {						
        top: -12px;
        left: -12px;
        right: -12px;
        bottom: -12px;
        opacity: 0;
        z-index: -1;
        position: absolute;
        background-color: #f0f0f0;
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;	
        -webkit-transition: all ease 0.5s;
                 transition: all ease 0.5s;
    }
    
        .page-header .background:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.35);
        }
    
    /*
     * Content
     */		 
     .page-header .content {
         position: relative;
         margin-top: -65px;
         text-align: center;
     }
     
         .page-header .content h1 {
             color: #fff;
             font-size: 43px; 	 			
              font-weight: 300;
              line-height: 48px;
              text-shadow: 1px 1px 1px rgba(9, 13, 19, 0.3);	
              opacity: 0;
              -webkit-transform: translateY(10px);
                      transform: translateY(10px);
              -webkit-transition: all ease 0.4s 0.4s;
                     transition: all ease 0.4s 0.4s;
         }
         
         .page-header .content p {
             margin-top: 15px;
             font-size: 21px;
              line-height: 24px;
              color: #fff;
              opacity: 0;
              -webkit-transform: translateY(10px);
                      transform: translateY(10px);
              -webkit-transition: all ease 0.4s 0.7s;
                     transition: all ease 0.4s 0.7s;	
         }
         
             .page-header .content p a {
                 text-decoration: none;
                 color: #fff;
                 -webkit-transition: all ease 0.7s;
                         transition: all ease 0.7s;
             }
             
                 .page-header .content p a:hover {
                     color: #e41d39;
                 }
         
         .page-header .content .buttons {
             opacity: 0;
             -webkit-transform: translateY(10px);
                      transform: translateY(10px);
              -webkit-transition: all ease 0.4s 1s;
                     transition: all ease 0.4s 1s;
         }
             
             .page-header .content h1 + .buttons { margin-top: 18px; }
             .page-header .content p + .buttons { margin-top: 37px; }
             
             .page-header .content .buttons a {
                 display: inline-block;
                 padding: 14px 20px 14px 19px;
                 box-sizing: border-box;
                 background: transparent;
                 border: 2px solid rgba(255,255,255,0.65);
                 border-radius: 4px;
                 font-size: 17px;
                 line-height: 21px;
                 letter-spacing: 0.08em;
                 color: #fff;
                 text-decoration: none;
                 -webkit-transition: all 0.3s ease 0s;
                         transition: all 0.3s ease 0s;
             }
             
                 .page-header .content .buttons a + a {
                     margin-left: 16px;
                 }
                 
                 .page-header .content .buttons a:hover {
                     background: #fff;
                     color: #e41d39;
                 }

.page-header.animate .background {
    opacity: 1;
}
 
.page-header.animate h1, 
.page-header.animate p,
.page-header.animate .buttons {
    opacity: 1;
    -webkit-transform: translateY(0px);
             transform: translateY(0px);
}


/*	Content container
-------------------------------------------*/

.content-container {
    padding: 57px 0 85px 0;
    background: #f7f7f7;
}

 /*
  * Content
  */
  
 .content-container > .content,
.content-container > .container .content {
     position: relative;
    overflow: hidden;
    padding: 0 0 0 48px;
    box-sizing: border-box;
 }
 
 /*
 * Sidebar
 */
 
 .content-container .sidebar {
     position: relative;
    float: left;
    width: 311px;	
 }
 
 /*
  * Widget
  */
  
.widget {
    position: relative;
    background: #fff;
    border: rgba(235,235,235,0.2);
    box-sizing: border-box;
}

    .widget + .widget {
        margin-top: 20px;
    }

    .widget .widget-head {
        position: relative;
        padding: 22px 15px 18px 23px;
        box-sizing: border-box;
    }
    
        .widget .widget-head h3 {
            font-size: 19px;
            line-height: 23px;
            font-weight: 700;
            letter-spacing: 0.065em;
            color: #44454F;
            text-transform: uppercase;
        }
        
            .widget .widget-head h3 span { color: #e41d39; }
    
    .widget .widget-content {
        padding: 22px 20px 21px 21px;
        box-sizing: border-box;
        border-top: 1px solid #ebebeb;
    }
    

/*	Widget : List
-------------------------------------------*/
 
 .widget-list .widget-content {
     padding-top: 0;
     padding-bottom: 14px;
 }
 
 .widget-list ul {
     list-style: none;
 }
 
     .widget-list ul li {
         border-top: 1px solid #ebebeb;
         font-size: 18px;
         line-height: 22px;
     }
     
         .widget-list ul li:first-child {
             border-top: none;
         }
 
         .widget-list ul li a {
             display: block;
             color: #708a9c;
             text-decoration: none;
             padding: 10px 30px 10px 0px;			 	
             position: relative;
             -webkit-transition: all ease 0.3s;
                     transition: all ease 0.3s;
         }
         
             .widget-list ul li:last-child a {
                 padding-bottom: 0;
             }
             
             .widget-list ul li a:after {
                 content: url('../img/arrow-grey.svg');
                 right: 6px;
                 opacity: 0;
                 position: absolute;
                 -webkit-transition: all ease 0.3s;
                         transition: all ease 0.3s;
             }
             
             .widget-list ul li.current-menu-item a {
                 color: #44454F;		 			
             }
             
                 .widget-list ul li.current-menu-item a:after {
                     opacity: 1;
                     right: 0px;
                     content: url('../img/arrow.svg');
                 }
         
             .widget-list ul li a:hover {
                 color: #44454F;
             }
                 
                 .widget-list ul li a:hover:after {
                     opacity: 1;
                     right: 0px;
                 }
             
             
/*	Widget : News
-------------------------------------------*/
  
 .widget-news .item + .item {
     margin-top: 20px;
     padding-top: 24px;
     border-top: 1px solid #f8f8f8;
 }
 
     .widget-news .item .image {
         display: block;
         height: 146px;
         background-repeat: no-repeat;
         background-position: center center;
         background-size: cover;
     }
     
     .widget-news .item .text {
         margin-top: 13px;
     }
     
         .widget-news .item .text h3 {
             font-size: 18px;
             line-height: 20px;
             font-weight: 600;
         }
         
             .widget-news .item .text h3 a {
                 position: relative;
                 display: block;
                 padding-right: 40px;
                 box-sizing: border-box;
                 text-decoration: none;
                 color: #44454F;
                 -webkit-transition: all 0.3s ease 0s;
                         transition: all 0.3s ease 0s;
             }
             
                 .widget-news .item .text h3 a:before {
                     content: '';
                     position: absolute;
                     top: 6px;
                     right: 2px;
                     width: 19px;
                     height: 14px;
                     background: url('../img/arrow.svg') no-repeat center center;
                 }
             
                 .widget-news .item .text h3 a:hover {
                     color: #e41d39;
                 }
                 
        .widget-news .item .text datetime {
            display: block;
            margin-top: 6px;
            font-size: 13px;
            line-height: 13px;
            color: #e41d39;
            text-transform: uppercase;
        }
        
/*	Widget : Share
-------------------------------------------*/
 
 .widget-share .widget-content {
     margin-top: 1px;
     padding-top: 0;
     padding-bottom: 31px;
     border-top: none;
 }
 
     .widget-share .widget-content ul {
         list-style: none;
     }
     
         .widget-share .widget-content ul li {
             float: left;
             margin-left: 15px;
         }
         
             .widget-share .widget-content ul li:first-child {
                 margin-left: 0;
             }
             
             .widget-share .widget-content ul li a {
                 display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                 width: 56px;
                 height: 56px;
                 box-sizing: border-box;
                 border: 2px solid #44454F;
                 border-radius: 50%;
                 text-decoration: none;
                 font-size: 24px;
                 -webkit-transition: all 0.3s ease 0s;
                         transition: all 0.3s ease 0s;
             }
             
                 .widget-share .widget-content ul li a:hover { color: #fff !important; }
             
                 .widget-share .widget-content ul li.facebook a { border-color: #5f72b3; color: #5f72b3; }
                 .widget-share .widget-content ul li.facebook a:hover { background: #5f72b3; }
                 .widget-share .widget-content ul li.twitter a { border-color: #2aace2; color: #2aace2; }
                 .widget-share .widget-content ul li.twitter a:hover { background: #2aace2; }
                 .widget-share .widget-content ul li.linkedin a { border-color: #2767b0; color: #2767b0; }
                 .widget-share .widget-content ul li.linkedin a:hover { background: #2767b0; }
                 .widget-share .widget-content ul li.google a { border-color: #dc4125; color: #dc4125; }
                 .widget-share .widget-content ul li.google a:hover { background: #dc4125; }
                 
/*	Widget : Email
-------------------------------------------*/
 
 .widget-email .widget-head {
     padding-bottom: 13px;
 }

 .widget-email .widget-content {
     margin-top: 1px;
     padding: 0 16px 21px 19px;
     border-top: none;
 }
 
     .widget-email .widget-content .button {
         max-width: 276px;
     }

        .widget-email .widget-content .button a {
            display: block;
            padding: 14px;
            box-sizing: border-box;
            border-radius: 4px;
            background: #e41d39;
            font-size: 19px;
            line-height: 23px;
            font-weight: 700;
            letter-spacing: 0.065em;
            text-transform: uppercase;
            text-align: center;
            text-decoration: none;
            color: #fff;
            -webkit-transition: all 0.3s ease 0s;
                    transition: all 0.3s ease 0s;	
        }
        
            .widget-email .widget-content .button a:hover {
                background: #d01832;
            }
        
    .widget-email .widget-content .call {
        margin-top: 16px;
        font-size: 18px;
        line-height: 22px;
        letter-spacing: 0.075em;
        text-transform: uppercase;
        text-align: center;
        color: #44454F;
    }
    
    
/*	Widget : Value my property
-------------------------------------------*/

 .widget-vmp .widget-content {
     padding-top: 15px;
 }

     .widget-vmp .widget-content p {
         font-size: 18px;
        line-height: 21px;
        color: #708a9c;
     }
 
     .widget-vmp .widget-content .button {
         margin-top: 18px;
     }

        .widget-vmp .widget-content .button a {
            display: block;
            padding: 15px;
            box-sizing: border-box;
            border-radius: 4px;
            background: #708a9c;
            font-size: 19px;
            line-height: 23px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-align: center;
            text-decoration: none;
            color: #fff;
            -webkit-transition: all 0.3s ease 0s;
                    transition: all 0.3s ease 0s;	
        }
        
            .widget-vmp .widget-content .button a:hover {
                background: #44454F;
            }


/*	Widget : Search
-------------------------------------------*/

.widget-search .widget-head svg {
    position: absolute;
    top: 28px;
    right: 20px;
    fill: #e41d39;
    fill-rule: evenodd; 
}

.widget-search .widget-content {
    padding: 25px 31px 28px 21px;
}

 .widget-search .box + .box {
     margin-top: 21px;	
 }
 
     .widget-search .box.bedrooms {
         margin-top: 26px;
     }
     
     .widget-search .box.bathrooms {
         margin-top: 22px;
     }
 
     .widget-search .box .row + .row {
         margin-top: 9px;
     }

     .widget-search label {
         display: block;
         margin-bottom: 11px;
         font-size: 12px;
         line-height: 16px;
         font-weight: 700;
         letter-spacing: 0.075em;
         color: #44454F;
         text-transform: uppercase;
     }
     
     .widget-search input[type="text"] {
         display: block;
         width: 100%;
         color: #44454F;
         font-family: 'Source Sans Pro', sans-serif;
         font-size: 17px;
         line-height: 21px;
         padding: 11px 14px;
         box-sizing: border-box;
         border: 1px solid #f4f4f4;
         background: #fff;	 		
     }
     
     .widget-search button {
         margin-top: 27px;
         display: block;
         width: 100%;
         padding: 13px;
         box-sizing: border-box;
         background: #708a9c;
         border-radius: 4px;
         border: none;
         outline: none;
         font-family: 'Source Sans Pro', sans-serif;
         font-size: 17px;
         line-height: 21px;
         letter-spacing: 0.075em;
         font-weight: 700;
        color: #fff;
        text-transform: uppercase;
        cursor: pointer;
        -webkit-transition: all 0.3s ease 0s;
                transition: all 0.3s ease 0s;
     }
     
         .widget-search button:hover {
             background: #44454F;
         }
 
    /*
      * Selectbox
      */	 	 
     .widget-search .sbHolder {
        position: relative;
    }
                
        .widget-search .sbHolder,
        .widget-search .sbHolder * {
            display: block;
            margin: 0;
            list-style: none;
            border: none;
            outline: none;
            box-sizing: border-box;
              text-decoration: none;
             color: #44454F;
        }
                
            .widget-search .sbSelector {
                 position: relative;
                padding: 11px 17px;
                  box-sizing: border-box;
                  border: 1px solid #f4f4f4;
                  background: #fff;
                  font-size: 17px;
                  line-height: 21px;
            }
            
            .widget-search .sbToggle {
                position: absolute;
                background: url('../img/sbtoggle-icon-search.svg') no-repeat center center;
                height: 100%;
                right: 16px;
                top: 2px;
                width: 11px;
                z-index: 12;
            }
                   
            .widget-search .sbOptions {
                position: absolute;
                z-index: 13;
                top: 100% !important;
                margin-top: 1px;
                left: 0;
                right: 0;
                list-style: none;
                overflow: auto;
                max-height: 220px !important;
                background: #ffffff;
                border: 1px solid #f4f4f4;
             }
             
                 .widget-search .sbOptions li.rent {
                     display: none;
                 }
                    
                   .widget-search .sbOptions li a {
                       display: block;
                       color: #44454F;
                    padding: 11px 17px;
                    -webkit-transition: all 0.3s ease 0s;
                            transition: all 0.3s ease 0s;
                }
                
                    .widget-search .sbOptions li + li {
                        border-top: 1px solid #f4f4f4;;
                    }

                    .widget-search .sbOptions a:hover {
                        color: #ffffff;
                        background: #e41d39;
                     }

    
    /*
      * Selectbox
      */	 		
     .widget-search ul.type {
         list-style: none;
         overflow: hidden;
         position: relative;
     }		
     
     .widget-search ul.type li {
         float: left;
     }
     
         .widget-search ul.type li + li {
             margin-left: 15px;	
         }
     
    .widget-search .radiobox {
        float: left;
        width: 18px;
        height: 18px;
        cursor: pointer;
        position: relative;
        border-radius: 50%;
        box-sizing: border-box;                                    
        border: 1px solid #eee;
        margin-top: -1ox;
        margin-right: 5px;
    }
    
        .widget-search .radiobox .inn {
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            background: #44454F;
            border-radius: 50%;
            position: absolute;
            -webkit-transform: scale(0);
                    transform: scale(0);
            -webkit-transition: all 0.3s ease 0s;
                    transition: all 0.3s ease 0s;
        }
                                        
            .widget-search .radiobox.checked .inn {
                 -webkit-transform: scale(1);
                        transform: scale(1);
            }
            
        .widget-search ul.type li label {
            float: left;            	
            font-size: 17px;
            font-weight: 400;
            line-height: 18px;
            cursor: pointer;	
        }
             
                         
 /*	Widget : Agent
-------------------------------------------*/
    
 .widget-agent .image {
     position: relative;
    padding: 9px 18px 0 18px;
 }
 
     .widget-agent .image img {
         display: block;
         margin: 0 auto;
         max-width: 233px;
     }
     
     .widget-agent .image .title {
         position: absolute;
         bottom: 0;
         left: 50%;
         padding: 7px 12px 6px 12px;
         background: rgba(228,29,57,0.85);
         font-size: 13px;
         line-height: 17px;
         font-weight: 600;
         color: #fff;
         white-space: nowrap;
         text-transform: uppercase;
         -webkit-transform: translatex(-50%);
            -moz-transform: translatex(-50%);
                 transform: translatex(-50%);
     }
 
 .widget-agent .text {
    padding: 14px 20px 22px 20px;
    box-sizing: border-box;
     border-top: 1px solid #ebebeb;
     text-align: center;
     text-transform: uppercase;
     color: #44454F;
 }
 
     .widget-agent .text .email {
         font-size: 17px;
         line-height: 21px;
         font-weight: 700;
         letter-spacing: 0.075em;
     }
     
         .widget-agent .text .email a {
             text-decoration: none;
             color: #44454F;
             -webkit-transition: all 0.3s ease 0s;
                     transition: all 0.3s ease 0s;
         }
         
             .widget-agent .text .email a:hover {
                 color: #e41d39;
             }
             
    .widget-agent .text .phone {
         margin-top: 5px;
         font-size: 18px;
         line-height: 22px;
         letter-spacing: 0.075em;
     }
 


/*	Page: Home
-------------------------------------------*/

section {
    position: relative;
    box-sizing: border-box;
}


/*	Valuation Popup
-------------------------------------------*/

.valuation-popup {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 9999;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
    background: rgba(22, 44, 59, 0.96);
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.4s;
}

    .valuation-popup.show {
        opacity: 1;
        visibility: visible;
    }

    .valuation-popup > div {
        position: relative;
    }

    .valuation-popup a img {
        width: 266px;
        height: 266px;
        display: block;
        margin: 0 auto;
    }
    
    .valuation-popup img.close {
        top: 0px;
        right: -25px;
        cursor: pointer;
        position: absolute;
    }
    
    .valuation-popup div.close {
        margin-top: 20px;
        color: #ffffff;
        font-size: 20px;
        font-weight: 600;
        line-height: 26px;
        cursor: pointer;
    }


/*	Home hero
-------------------------------------------*/

.home-hero {
    width: 100%;
    height: 100vh;		
    min-height: 480px;
    overflow: hidden;
    position: relative;
}

.home-hero .swiper-slide {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

    /*
     * Background
     */		 
     .home-hero .background {
         top: -12px;
         left: -12px;
         right: -12px;
         bottom: -12px;
         z-index: -1;
         opacity: 0;
         position: absolute;
         background-repeat: no-repeat;
         background-position: top center;
         background-size: cover;
         -webkit-transition: all ease 0.5s;
                 transition: all ease 0.5s;
     }
     
         .home-hero.animate .background {
             opacity: 1;	
         }

     .home-hero .background:before {
         content: "";
         top: 0;
         left: 0;	 		
         width: 100%;
         height: 100%;
         position: absolute;
         background: rgba(0,0,0,0.3);
     }
                  
         .home-hero .background video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: 0;
            -webkit-transform: translate(-50%, -50%);
                    transform: translate(-50%, -50%);
        }
 
     /*
      * Content
      */	 	 
      .home-hero .content {
          opacity: 0;
          position: relative;
          margin: 0 auto;
          padding: 0 30px;
          max-width: 800px;
          box-sizing: border-box;
          -webkit-transition: all ease 0.4s 0.5s;
                  transition: all ease 0.4s 0.5s;
      }
      
          .home-hero.animate .content {
              opacity: 1;		 	 		
                           
          }
      
          .home-hero .content h1 {
              color: #fff;
              font-size: 43px; 	 			
              font-weight: 300;
              line-height: 48px;
              text-shadow: 1px 1px 1px rgba(9, 13, 19, 0.3);
          }
          
          .home-hero .content h3 {
              color: #fff;
              font-size: 21px;
              font-weight: 400;
              line-height: 31px; 	 			
              text-shadow: 1px 1px 1px rgba(9, 13, 19, 0.3);
              padding-top: 36px;
          }
          
          .home-hero .content .buttons {
              margin-top: 45px;
          }
          
              .home-hero .content .buttons a {
                  display: inline-block;
                  margin: 0 16px 10px 0;
                  padding: 13px 18px 13px 20px;
                  background: transparent;
                  border: 2px solid rgba(255,255,255,0.65);
                 border-radius: 4px;
                 font-size: 17px;
                 line-height: 21px;
                 font-weight: 400;
                 letter-spacing: 0.08em;
                 color: #fff;
                 text-decoration: none;
                 -webkit-transition: all 0.3s ease 0s;
                         transition: all 0.3s ease 0s;
              }
                  
                  .home-hero .content .buttons a:last-child {
                      margin-right: 0;
                  }
                  
                  .home-hero .content .buttons a:hover {
                      background: #fff;
                      color: #a62a3e;
                  }
                  
        .home-hero h2 {
            margin-top: 48px;
            font-size: 21px;
            line-height: 25px;
            font-weight: 400;
            letter-spacing: 0.1em;
            color: #fff;
        }
        
        .home-hero .stars {
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            text-align: center;
        }
        
            .home-hero .stars img {
                display: block;
                margin: 30px auto 10px auto;
            }
        
        .home-hero .scroll-icon {
            left: 50%;
            bottom: 50px;
            z-index: 3;
            position: absolute;
            -webkit-transform: translateX(-50%);
                    transform: translateX(-50%);
        }
        
            .home-hero .scroll-icon svg {
                position: relative;
                fill: #fff;
                fill-rule: evenodd;
                cursor: pointer;
                bottom: 0;
                -webkit-animation: upDown 2s infinite;
                   -moz-animation: upDown 2s infinite;					
                          animation: upDown 2s infinite;
            }
            
                
                
/*	Featured boxes (global)
-------------------------------------------*/

.featured-boxes {
    padding: 99px 0 0 0;
}

    .featured-boxes.featured-boxes-home {
        padding-top: 59px;
    }

    /*
     * Section title
     */

    .featured-boxes .section-title {
        font-size: 23px;
        line-height: 27px;
        font-weight: 600;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        text-align: center;
        color: #44454F;
    }
    
    /*
     * Wrapper
     */
     
     .featured-boxes.featured-boxes-home .wrapper {
         margin-top: 60px;
     }
     
     .featured-boxes .wrapper .col {
         float: left;
         width: 48.38160136286201%;
     }
     
         .featured-boxes .wrapper .col + .col { margin-left: 3.23679727427598%; }
         
         /*
          * Item
          */	 		 
          .featured-boxes .wrapper .col .item {
              display: block;
              color: #fff;
              height: 264px;
              overflow: hidden;
              position: relative;
              box-sizing: border-box; 		 		
              text-decoration: none; 		 		
          }
          
              .featured-boxes .wrapper .col .item + .item {
                  margin-top: 40px;
              }
              
              .featured-boxes .wrapper .col .item .ribbon {				  					  	
                  top: 0;
                left: 0;
                z-index: 3;
                position: absolute;
              }
              
              .featured-boxes .wrapper .col .item .ribbon {
                width: 174px;
                top: 95px;
                left: -25px;
                z-index: 5;
                color: #ffffff;
                font-size: 15px;
                font-weight: bold;
                line-height: 18px;
                white-space: pre-wrap;
                text-align: center;								
                text-transform: uppercase;				
                padding: 9px 32px 8px 32px;
                position: absolute;
                box-sizing: border-box;
                -webkit-transform-origin: 0 0;
                        transform-origin: 0 0;
                -webkit-transform: rotate(-45deg);
                        transform: rotate(-45deg);
            }
            
            .featured-boxes .wrapper .col .item .ribbon:before {
                content: "";
                top: 0px;
                left: -30px;
                right: -30px;
                bottom: 0px;
                z-index: -1;
                position: absolute;
                background: #e41d39;
            }
              
              .featured-boxes .wrapper .col .item .background {
                  position: absolute;
                  z-index: 1;
                  left: 0;
                  top: 0;
                  width: 100%;
                  height: 100%;
                  background-repeat: no-repeat;
                  background-position: center center;
                  background-size: cover;
                  -webkit-transform: scale(1);
                          transform: scale(1);
                  -webkit-transition: all ease 0.3s;
                          transition: all ease 0.3s;
              }
              
                  .featured-boxes .wrapper .col .item:hover .background {
                      -webkit-transform: scale(1.05);
                              transform: scale(1.05);
                  }
              
              .featured-boxes .wrapper .col .item .content {
                  position: relative;
                  z-index: 2;
                  box-sizing: border-box;
              }
              
         /*
          * Single
          */
         
        .featured-boxes .wrapper .col .item.single {
            background-color: #0094be;	
        } 
          
            .featured-boxes .wrapper .col .item.single .background {
                background-color: rgba(122,126,128,0.44);
                background-blend-mode: multiply;
            }
            
            .featured-boxes .wrapper .col .item.single .content {
                position: absolute;
                left: 28px;
                bottom: 30px;
                /*max-width: 405px;*/
            }
            
                .featured-boxes.featured-boxes-home .wrapper .col .item.single .content {
                    right: 25px;
                    left: 25px;
                    bottom: 20px;
                }
            
                .featured-boxes .wrapper .col .item.single .content h3 {
                    font-size: 26px;
                    line-height: 24px;
                    font-weight: 600;
                    text-transform: uppercase;
                    text-align: right;
                }
                
                    .featured-boxes .wrapper .col .item.single .content h3 strong { 
                        font-size: 31px;
                        font-weight: 700; 
                    }
                

         /*
           * Double
           */
               
         .featured-boxes .wrapper .col .item.double {
             height: 568px;
             display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            text-align: center;
          }
          
              .featured-boxes .wrapper .col .item.double .background:before {
                 content: '';
                 position: absolute;
                 left: 0;
                 top: 0;
                 width: 100%;
                 height: 100%;
                 background: rgba(68,90,105, 0.5);
             }
             
             .featured-boxes .wrapper .col .item.double .content {
                 margin: -6px auto 0 auto;
                 padding: 0 20px;
                 max-width: 490px;
             }
             
             .featured-boxes .wrapper .col .item.double h2 {
                 font-size: 18px;
                 line-height: 34px;
                 font-weight: 600;
                 letter-spacing: 0.2em;
                 text-transform: uppercase;
             }
             
             .featured-boxes .wrapper .col .item.double .price {
                 margin-top: 2px;
                 font-size: 23px;
                 line-height: 27px;
                 font-weight: 600;
                 letter-spacing: 0.2em;
             }
             
             .featured-boxes .wrapper .col .item.double p {
                 margin-top: 36px;
                 font-size: 16px;
                 line-height: 22px;
             }
             
             .featured-boxes .wrapper .col .item.double .button {
                 margin-top: 43px;
                 display: inline-block;
                 padding: 11px 15px 10px 15px;
                 background: transparent;
                 border: 2px solid #fff;
                 border-radius: 4px;
                 font-size: 16px;
                 line-height: 20px;
                 letter-spacing: 0.2em;
                 text-transform: uppercase;
                 -webkit-transition: all 0.3s ease 0s;
                         transition: all 0.3s ease 0s;
             }
             
                 .featured-boxes .wrapper .col .item.double .button strong { font-weight: 600; }
                 
                 .featured-boxes .wrapper .col .item.double:hover .button {
                     background: #fff;
                    color: #a62a3e;	
                 }


/*	Home voted best
-------------------------------------------*/

.home-voted-best {
    margin-top: 68px;
    padding: 52px 0 50px 0;
    border-top: 1px solid #dfeaf2;
    background-color: #f0f5f9;
}

    .home-voted-best .background {
        position: absolute;
        z-index: 1;
        opacity: 0.09;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url('../img/home-voted-best.png') no-repeat top center;
		background-size:cover;
    }
    
    .home-voted-best .content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: #44454F;
    }
    
        .home-voted-best .content h2 {
            font-size: 53px;
            line-height: 57px;
            font-weight: 300;
            letter-spacing: -0.025em;
            text-transform: uppercase;
        }
        
            .home-voted-best .content h2 strong {
                font-weight: 600;
            }
            
            .home-voted-best .content h2 span {
                display: block;
                margin-top: 13px;
                font-size: 19px;
                line-height: 23px;
                font-weight: 600;
                letter-spacing: 0.2em;
            }

        .home-voted-best .content p {
            margin: 14px auto 0 auto;
            max-width: 1070px;
            font-size: 21px;
            line-height: 34px;
        }
        
        .home-voted-best .content .more {
            position: relative;
            margin-top: 36px;
            font-size: 16px;
            line-height: 20px;
        }
        
            .home-voted-best .content .more:before {
                content: '';
                position: relative;
                display: block;
                margin: 0 auto 20px auto;
                width: 176px;
                height: 1px;
                background: #b2cddf;
            }
        
            .home-voted-best .content .more a {
                display: inline-block;
                text-decoration: none;
                color: #44454F;
                -webkit-transition: all 0.3s ease 0s;
                        transition: all 0.3s ease 0s;
            }
            
                .home-voted-best .content .more a:hover {
                    color: #a62a3e;
                }
        
            .home-voted-best .content .more a svg {
                position: relative;
                top: 3px;
                left: 0;
                margin-left: 16px;
                fill: #e41d39;
                 fill-rule: evenodd;
                 -webkit-transition: all 0.3s ease 0s;
                        transition: all 0.3s ease 0s;
            }
            
                .home-voted-best .content .more a:hover svg {
                    left: 8px;
                }
                
                
/*	Home property value
-------------------------------------------*/

.home-property-value {
    padding: 135px 0 138px 0;
    background-color: #810f13;
}

    .home-property-value .background {
        position: absolute;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background-repeat: no-repeat;
        background-size: cover;
        background-color: rgba(0,0,0,0.38);
        background-blend-mode: multiply;
    }
    
        .home-property-value .background video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: 0;
            -webkit-transform: translate(-50%, -50%);
                    transform: translate(-50%, -50%);
        }
        
        .home-property-value .background video:before {
            content: "";
            z-index: 2;
            top: 0px;
            left: 0px;
            right: 0px;
            bottom: 0px;
            background-color: rgba(0,0,0,0.38);
        }
    
    .home-property-value .content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: #fff;
    }
    
        .home-property-value .content h3 {
            font-size: 36px;
            line-height: 34px;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .home-property-value .content .button {
            margin-top: 24px;
        }
        
            .home-property-value .content .button a {
                display: inline-block;
                 padding: 14px 31px 14px 32px;
                 background: rgba(228,29,57,0.65);
                 border: 2px solid #fff;
                 border-radius: 4px;
                 font-size: 16px;
                 line-height: 20px;
                 letter-spacing: 0.08em;
                 text-transform: uppercase;
                 text-decoration: none;
                 color: #fff;
                 -webkit-transition: all 0.3s ease 0s;
                         transition: all 0.3s ease 0s;	
            }
            
                .home-property-value .content .button a strong {
                    font-weight: 700;
                }
                
                .home-property-value .content .button a:hover {
                    background: rgba(228,29,57,0.9);	
                }


/*	Home testimonials
-------------------------------------------*/

.home-testimonials {
    padding: 83px 0 0 0;
    text-align: center;
}

    /*
     * Heading
     */
 
     .home-testimonials .heading h3 {
         font-size: 23px;
         line-height: 27px;
         font-weight: 600;
         letter-spacing: 0.2em;
         text-transform: uppercase;
         color: #e41d39;
     }
     
         .home-testimonials .heading h3 span {
             position: relative;
             display: inline-block;
             top: 8px;
             margin: 0 2px 0 0;
             width: 35px;
             height: 31px;
             background: url('../img/heart-icon.svg') no-repeat center center;
         }
         
     .home-testimonials .heading p {
         margin-top: 18px;
         font-size: 21px;
         line-height: 25px;
         color: #44454F;
     }
     
         .home-testimonials .heading p span {
             position: relative;
             display: inline-block;
             padding-top: 10px;
         }
     
         .home-testimonials .heading p span:before {
             content: '';
             position: absolute;
             top: 0;
             left: 0;
             right: 0;
             height: 1px;
             background: #e41d39;
         }
     
     /*
      * Wrapper
      */
     .home-testimonials .swiper-slide {
         min-height: 0px !important;
     } 
     
      .home-testimonials .wrapper {
          margin-top: 93px;
      }
      
          .home-testimonials .wrapper .item {
              float: left;
              /*width: 31.51618398637138%;
              margin-left: 2.72572402044293%;*/ 	 			
              padding: 24px;
              box-sizing: border-box;
              background: #f9f9f9;
              border: 1px solid #f2f2f2;
              color: #44454F;
          }
          
              .home-testimonials .wrapper .item .image {
                  width: 80px;
                  height: 80px;
                  margin: 0 auto;
                  border-radius: 50%;
                  background-color: #f2f2f2;
                  background-repeat: no-repeat;
                  background-position: center center;
                  background-size: cover;
              }
              
              .home-testimonials .wrapper .item .title {
                  margin-top: 17px;
                  min-height: 38px;
                  font-size: 18px;
                  line-height: 19px;
                  font-weight: 600;
                  color: #44454F;
                  text-transform: uppercase;
              }
              
              .home-testimonials .wrapper .item .stars {
                  margin-top: 14px;
              }
              
                  .home-testimonials .wrapper .item .stars img {
                      display: inline-block;
                  }
                  
             .home-testimonials .wrapper .item .text {
                 margin-top: 18px;
                 padding: 0 20px;
                 box-sizing: border-box;
                 font-size: 17px;
                 line-height: 23px;
             }
             
             .home-testimonials .wrapper .item .name {
                 margin-top: 12px;
                 font-size: 17px;
                 line-height: 23px;
                 font-weight: 700;
             }
             
         .home-testimonials .swiper-pagination {
             position: relative;
             bottom: auto;
             margin-top: 30px;
         }
         
             .home-testimonials .swiper-pagination-bullet {
                 width: 10px;
                 height: 10px;
             }
         
                 .home-testimonials .swiper-pagination-bullet-active {
                     background: #44454F;
                 }
             
    /*
     * Footer
     */		 
     .home-testimonials .footer {
         margin-top: 44px;
         color: #44454F;
     }
     
         .home-testimonials .footer .title {
             font-size: 37px;
             line-height: 41px;
             font-weight: 600;
         }
         
             .home-testimonials .footer .title .stars {
                 display: inline-block;
                 position: relative;
                 top: -1px;
                 margin: 0 5px 0 10px;
             }
             
                 .home-testimonials .footer .title .stars img {
                     display: block;
                     float: left;
                     margin-left: 3px;
                 }
                 
                     .home-testimonials .footer .title .stars img:first-child {
                         margin-left: 0;
                     }
                     
                 .home-testimonials .footer .title .stars .half {
                     width: 12px;
                     height: 22px;
                     top: 0px;
                     right: 13px;
                     position: absolute;		 				
                 }
         
         .home-testimonials .footer .link {
             margin-top: 3px;
             font-size: 26px;
             line-height: 30px;
             font-weight: 300;
         }
         
             .home-testimonials .footer .link a {
                 text-decoration: none;
                 color: #44454F;
                 -webkit-transition: all 0.3s ease 0s;
                         transition: all 0.3s ease 0s;
             }
             
                 .home-testimonials .footer .link a img {
                     display: inline-block;
                     position: relative;
                     top: 7px;
                     left: 0;
                     width: auto;
                     height: 30px;
                     margin-left: 8px;
                     -webkit-transition: all 0.3s ease 0s;
                         transition: all 0.3s ease 0s;
                 }
                 
                 .home-testimonials .footer .link a:hover {
                     color: #ea4335;
                 }
                 
                     .home-testimonials .footer .link a:hover img {
                         left: 8px;
                     }


/*	Home differences
-------------------------------------------*/

.home-differences {
    margin-top: 64px;
    padding: 48px 0 54px;
    background: #44454F;
}

    /*
     * Heading
     */
     
     .home-differences .heading {
         text-align: center;	
     }
     
         /*
          * Title
          */	 	
         .home-differences .heading .title h3 {
             font-size: 23px;
             line-height: 27px;
             font-weight: 600;
             letter-spacing: 0.2em;
             color: #fff;
             text-transform: uppercase;
         }
         
         .home-differences .heading .title p {
             margin-top: 11px;
             font-size: 21px;
             line-height: 25px;
             font-weight: 300;
             color: #fff;
         }
         
         /*
          * Versus
          */	 		 
          .home-differences .heading .versus {
              margin-top: 32px;
              font-size: 35px;
              line-height: 39px;
              font-weight: 300;
              color: #fff;
          }
          
              .home-differences .heading .versus strong { font-weight: 700; }
              
              .home-differences .heading .versus .icon {
                  display: inline-block;
                  position: relative;
                  margin: 0 42px;
                  top: -6px;
                  width: 46px;
                  height: 46px;
                  background: #fff;
                  border-radius: 50%;
              }
              
                  .home-differences .heading .versus .icon span {
                      position: relative;
                      font-size: 21px;
                      top: -3px;
                    font-weight: 600;
                    color: #ab1d38;
                  }
                  
             .home-differences .heading .versus img {
                 max-width: 320px;
             }
     
     /*
      * Wrapper
      */
      
     .home-differences .wrapper {
         margin-top: 30px;
     }
     
         .home-differences .wrapper .row {
             overflow: hidden;
         }
     
         .home-differences .wrapper .row + .row {
             margin-top: 14px;
         }
     
         .home-differences .wrapper .row .container { position: relative;  }
     
         .home-differences .wrapper .row .col {
             height: 151px;
             box-sizing: border-box;
             display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
         }
         
             .home-differences .wrapper .row .col .text {
                 font-size: 25px;
                 line-height: 26px;
                 font-weight: 300;
             }

         /*
          * Left
          */	 		 
          .home-differences .wrapper .row .left {
              position: absolute;
              left: calc(-50% - 350px);
              padding: 13px 13px 13px 67px;
              background: #fff;
              border-radius: 0px;	
              -webkit-transition: left ease 0.7s 0.3s, border-radius 0.7s 1.1s;
                      transition: left ease 0.7s 0.3s, border-radius 0.7s 1.1s;
          }
                                          
              .home-differences .wrapper .row .left:before {
                  content: '';
                  position: absolute;
                  top: 0;
                  right: 100%;
                  left: -1920px;
                  height: 100%;
                  background: #fff;
              }
          
              .home-differences .wrapper .row .left .text {
                  max-width: 320px;
                  color: #708a9c;
                  opacity: 0;
                  -webkit-transform: translateX(12px);
                          transform: translateX(12px);
                  -webkit-transition: all ease 0.6s 1.4s;
                          transition: all ease 0.6s 1.4s;
              }
              
              .home-differences .wrapper .row .left .icon {
                  position: absolute;
                  top: 13px;
                  right: 13px;
                  width: 124px;
                  height: 124px;
                  border-radius: 50%;
                  display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                opacity: 0.5;
                -webkit-transform: rotate3d(0, 1, 0, 90deg);
                        transform: rotate3d(0, 1, 0, 90deg);
                -webkit-transition: all ease 0.7s 1.1s;
                          transition: all ease 0.7s 1.1s;
              }
              
                  .home-differences .wrapper .row .left .icon svg {
                      fill: #fff;
                    fill-rule: evenodd;
                  }
                  
          .home-differences .wrapper .row.animate .left {
              left: 0px;
              border-radius: 0 75px 75px 0px; 		 		
         }
         
             .home-differences .wrapper .row.animate .left .text {
                 opacity: 1;
                 -webkit-transform: translateX(0px);
                          transform: translateX(0px);	
             }
             
             .home-differences .wrapper .row.animate .left .icon {
                 opacity: 1;
                 -webkit-transform: rotate3d(0, 0, 0, 90deg);
                         transform: rotate3d(0, 0, 0, 90deg);
             }
              
        .home-differences .wrapper .row.opening { background: #708a9c; }
        .home-differences .wrapper .row.opening .left .icon { background: #708a9c; }
        
        .home-differences .wrapper .row.expert { background: #ab1d38; }
        .home-differences .wrapper .row.expert .left .icon { background: #ab1d38; }
        
        .home-differences .wrapper .row.marketing { background: #2e485a; }
        .home-differences .wrapper .row.marketing .left .icon { background: #2e485a; }
        
        .home-differences .wrapper .row.fee { background: #9aafbe; }
        .home-differences .wrapper .row.fee .left .icon { background: #9aafbe; }
          
          /*
           * Right
           */ 		 	 
          .home-differences .wrapper .row .right {
              float: right;
              width: 50%;
          }
          
              .home-differences .wrapper .row .right .text {
                  width: 340px;
                  padding-left: 27px;
                  font-size: 25px;
                  line-height: 26px;
                  font-weight: 300;
                  color: #fff;
                  text-align: center;
                  position: relative;
                  z-index: 1;
                  opacity: 0;
                  -webkit-transform: translateX(15px);
                          transform: translateX(15px);
                  -webkit-transition: all ease 0.7s 2.2s;
                        transition: all ease 0.7s 2.2s;
              }
              
              .home-differences .wrapper .row .right .icon {
                  top: 0px;
                  bottom: 0px;
                  right: 44px;
                  width: 103px;
                  position: absolute;
                  display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;					
              }
              
                  .home-differences .wrapper .row .right .icon svg {
                      fill: #fff;
                     fill-rule: evenodd;
                     display: block;
                     position: relative;
                     z-index: 1;
                     opacity: 0;
                     -webkit-transform: scale(0.7);
                              transform: scale(0.7);
                     -webkit-transition: all ease 1.2s 1.4s;
                            transition: all ease 1.2s 1.4s;
                  }
                  
                  .home-differences .wrapper .row .right .icon:before {
                      content: "";
                      display: block;
                      position: absolute;
                      top: 50%;
                      left: 50%;
                      z-index: 0;	 	 				
                      background-repeat: no-repeat;
                      background-position: center center;
                      background-size: 100% 100%;
                      opacity: 0;
                      -webkit-transform: translateX(-50%) scale(0.7);
                              transform: translateX(-50%) scale(0.7);
                      -webkit-transition: all ease 1.3s 1.7s;
                            transition: all ease 1.3s 1.7s;
                  }
                  
                  .home-differences .wrapper .row.opening .right .icon:before {
                      width: 433px;
                      height: 433px;
                      margin-top: -216px;
                      background-image: url('../img/icon-open.svg');
                  }
                  
                  .home-differences .wrapper .row.expert .right .icon:before {		 	 			
                      top: -31px;
                      width: 260px;
                      height: 295px;
                      background-image: url('../img/icon-expert.svg');
                  }
                  
                  .home-differences .wrapper .row.marketing .right .icon:before {
                      width: 470px;
                      height: 389px;
                      margin-top: -168px;
                      background-image: url('../img/icon-team.svg');
                  }
                  
                  .home-differences .wrapper .row.fee .right .icon:before {
                      width: 394px;
                      height: 443px;
                      margin-top: -297px;
                      background-image: url('../img/icon-head.svg');
                  }
          
          .home-differences .wrapper .row.animate .right .icon svg {
              opacity: 1;
              -webkit-transform: scale(1);
                      transform: scale(1);
         }
                  
          .home-differences .wrapper .row.animate .right .icon:before {
              opacity: 1;
             -webkit-transform: translateX(-50%) scale(1);
                      transform: translateX(-50%) scale(1);
         }
         
         .home-differences .wrapper .row.animate .right .text {
             opacity: 1;
             -webkit-transform: translateX(0px);
                      transform: translateX(0px);
          }


/*	Discover more
-------------------------------------------*/

.home-stats {
    font-size: 0px;
    text-align: center;
    padding: 60px 0 62px 0;
    background: #fafafa;
}

    .home-stats .section-title {
        color: #e41d39;
        font-size: 38px;
        font-weight: 300;
        line-height: 42px;
        text-align: center;
        padding-bottom: 40px;
    }

    .home-stats .item {
        opacity: 0;
        display: inline-block;
        width: 182px;
        height: 182px;
        margin: 0 24px;
        padding-top: 31px;
        text-align: center;
        border-radius: 50%;
        background: #ffffff;
        box-sizing: border-box;
        box-shadow: 0px 8px 0px #e5e6e6;
        -webkit-transform: scale(0);
                transform: scale(0);
        -webkit-transition: all ease 0.7s;
                transition: all ease 0.7s;
    }
            
        .home-stats .item .value {
            color: #e41d39;
            font-size: 67px;
            font-weight: 300;
            line-height: 67px;
            opacity: 0;
            -webkit-transform: scale(0);
                    transform: scale(0);
            -webkit-transition: all ease 0.6s 0.7s;
                    transition: all ease 0.6s 0.7s;
        }
        
        .home-stats .item .label {
            color: #44454F;
            font-size: 16px;
            font-weight: bold;
            line-height: 22px;
            text-transform: uppercase;				
            opacity: 0;
            -webkit-transform: scale(0);
                    transform: scale(0);
            -webkit-transition: all ease 0.6s 0.7s;
                    transition: all ease 0.6s 0.7s;
        }
        
    .home-stats .item.title {
        background: #e41d39;	
    }
    
        .home-stats .item.title .value img {
            top: 2px;
            position: relative;
            display: inline-block;				
        }
    
        .home-stats .item.title .label {
            color: #ffffff;	
        }
    
    .home-stats .item.animate {
        opacity: 1;
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    
        .home-stats .item.animate .value,
        .home-stats .item.animate .label {
            opacity: 1;
            -webkit-transform: scale(1);
                    transform: scale(1);
        }


/*	Discover more
-------------------------------------------*/

.discover-more {
    padding: 66px 0 64px 0;
}

/*
 * Heading
 */
 
.discover-more .section-title {
    font-size: 46px;
    line-height: 50px;
    font-weight: 300;
    color: #44454F;
    text-align: center;	
}

/*
 * Wrapper
 */
     
.discover-more .wrapper {
    margin: 85px auto 0 auto;
}

    .discover-more .wrapper .item {
        float: left;
        width: 50%;
        padding: 0 40px 0 45px;
        box-sizing: border-box;
        opacity: 0;
        -webkit-transform: scale(0.5);
                transform: scale(0.5);
        -webkit-transition: all ease 0.7s 0.3s;
                transition: all ease 0.7s 0.3s;
    }
    
    .discover-more .wrapper .item.animate {
        opacity: 1;
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    
        .discover-more .wrapper .item:nth-child(even) {
            padding: 0 35px 0 54px;
            -webkit-transition-delay: 0.5s;
                    transition-delay: 0.5s;
        }
        
        .discover-more .wrapper .item:nth-child(odd) {
            clear: left;
        }
        
        .discover-more .wrapper .item:nth-child(n+3) {
            margin-top: 80px;
        }
    
        /*
         * Icon
         */
    
        .discover-more .wrapper .item .icon {
            float: left;
            width: 122px;
            margin-top: 6px;
        }
        
            .discover-more .wrapper .item .icon svg {
                fill: #708a9c;
                 fill-rule: evenodd;
                 -webkit-transition: all 0.3s ease 0s;
                         transition: all 0.3s ease 0s;
            }
            
                .discover-more .wrapper .item:hover .icon svg {
                    fill: #e41d39;	
                }
        
        /*
         * Text
         */
        
        .discover-more .wrapper .item .text {
            position: relative;
            overflow: hidden;
            color: #44454F;
        }
        
            .discover-more .wrapper .item .text h2 {
                font-size: 28px;
                line-height: 32px;
                font-weight: 400;
            }
            
                .discover-more .wrapper .item .text h2 a {
                    color: #44454F;
                    text-decoration: none;	
                    -webkit-transition: all 0.3s ease 0s;
                             transition: all 0.3s ease 0s;
                }
                
                .discover-more .wrapper .item .text h2 a:hover {
                    color: #e41d39;
                }
            
            .discover-more .wrapper .item .text p {
                font-size: 18px;
                line-height: 26px;
                font-weight: 300;
            }
            
            .discover-more .wrapper .item .text .button {
                margin-top: 13px;
            }
            
                .discover-more .wrapper .item .text .button a {
                    font-size: 16px;
                    line-height: 20px;
                    text-decoration: none;
                    color: #44454F;
                    -webkit-transition: all 0.3s ease 0s;
                             transition: all 0.3s ease 0s;
                }
                
                    .discover-more .wrapper .item .text .button a:hover {
                        color: #e41d39;
                    }

                    .discover-more .wrapper .item .text .button a svg {
                        position: relative;
                        top: 2px;
                        left: 0;
                        margin-left: 10px;
                        fill: #e41d39;
                         fill-rule: evenodd;
                         -webkit-transition: all 0.3s ease 0s;
                                transition: all 0.3s ease 0s;
                    }
                    
                        .discover-more .wrapper .item .text .button a:hover svg {
                            left: 8px;
                        }



/*	Area guides
-------------------------------------------*/

.area-guides {
    padding: 64px 32px 68px 32px;
    background: #f8f8f8;
    border-top: 1px solid #f1f1f1;
}

/*
 * Heading
 */
 
.area-guides .section-title {
    font-size: 50px;
    line-height: 46px;
    font-weight: 300;
    color: #44454F;
    text-align: center;	
}

/*
 * Wrapper
 */
     
.area-guides .wrapper {
    margin: 53px auto 0 auto;
    width: 94%;
    max-width: 1336px;
}

    /*
     * Swiper slide
     */
     
     .area-guides .swiper-slide {
         position: relative;
         float: left;
         display: block;
         height: 489px;
         overflow: hidden;
         background: #82b9c1;
         text-align: center;	 		
     }
     
         .area-guides .swiper-slide:before {
             content: '';
             position: absolute;
             z-index: 0;
             left: 0;
             top: 0;
             width: 100%;
             height: 100%;
             background: rgb(255,255,255);
            background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(9,13,19,1) 100%);
            background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(9,13,19,1) 100%);
            background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(9,13,19,1) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#090d13',GradientType=0 );
         }
     
         .area-guides .swiper-slide .background {
             position: absolute;
             left: 0;
             top: 0;
             z-index: 0;
             width: 100%;
             height: 100%;
             background-color: rgba(0,0,0,0.42);
            background-repeat: no-repeat;
             background-size: cover;
             background-position: top center;
             background-blend-mode: multiply;
             -webkit-transform: scale(1);
                     transform: scale(1);
             -webkit-transition: all ease 0.4s;
                     transition: all ease 0.4s;
         }
         
         .area-guides .swiper-slide .area {
             position: relative;
             z-index: 1;
             display: inline-block;
             padding: 11px 18px 13px 15px;
             font-size: 16px;
             line-height: 20px;
             text-align: center;
             color: #fff;
         }
         
             .area-guides .swiper-slide.blue .area { background: #44454F; }
             .area-guides .swiper-slide.red .area { background: #e41d39; }
             .area-guides .swiper-slide.lightblue .area { background: #708a9c; }
             .area-guides .swiper-slide.white .area { background: #fff; color: #44454F; }
         
         .area-guides .swiper-slide .content {
             position: absolute;
             left: 32px;
             bottom: 54px;
             right: 32px;
             text-align: center;
             color: #fff;	 			
             -webkit-transform: translateY(0px);
                     transform: translateY(0px);
             -webkit-transition: all ease 0.4s;
                     transition: all ease 0.4s;
         }
         
             .area-guides .swiper-slide .content h3 {
                 font-size: 30px;
                 line-height: 34px;
                 font-weight: 600;
             }
             
             .area-guides .swiper-slide .content p {
                 margin-top: 7px;
                 box-sizing: border-box;
                font-size: 16px;
             }
     
     .area-guides .swiper-slide:hover .background {
         -webkit-transform: scale(1.07);
                 transform: scale(1.07);
    }
    
    .area-guides .swiper-slide:hover .content {
         -webkit-transform: translateY(-10px);
                 transform: translateY(-10px);
     }
     

/*	Home social
-------------------------------------------*/

.home-social {
    padding: 59px 0 76px 0;
    background: #fff;
    border-top: 1px solid #f1f1f1;
}

    /*
     * Heart icon (global)
     */

    .heart-icon {
        position: absolute;
        top: -22px;
        left: 50%;
        margin-left: -22px;
        fill: #e41d39;
          stroke: #ebebeb;
          stroke-width: 3px;
          fill-rule: evenodd;	  		
    }
    
    .home-social.animate .heart-icon {
        -webkit-animation: heartbeat 1.6s ease 0.3s normal;
                  animation: heartbeat 1.6s ease 0.3s normal;
    }

/*
 * Heading
 */
 
 .home-social .heading .container {
     position: relative;
 }
 
    .home-social .section-title {
        font-size: 23px;
        line-height: 27px;
        font-weight: 600;
        color: #44454F;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        text-align: center;	
    }
    
        .home-social .section-title span { color: #e41d39; }

/*
 * Wrapper
 */
 
.home-social .wrapper {
    margin: 42px auto 0 auto;
    width: 100%;
    max-width: 1260px;
}

    .home-social .item {
        display: block;
        float: left;
        width: 24.92063492063492%;
        padding-right: 20px;
        box-sizing: border-box;
        text-decoration: none;
    }
    
        .home-social .item:first-child { margin-left: 0; }
        
        .home-social .item.google { width: 25.23809523809524%; padding-right: 0; }
    
        .home-social .item .icon {
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            float: left;
            width: 87px;
            height: 87px;
            background: transparent;
            border-radius: 50%;
            border: 2px solid #44454F;
            box-sizing: border-box;
            -webkit-transition: all 0.3s ease 0s;
                    transition: all 0.3s ease 0s;
        }
        
            .home-social .item .icon svg {
                fill-rule: evenodd;	
                -webkit-transition: all 0.3s ease 0s;
                        transition: all 0.3s ease 0s;
            }
            
                .home-social .item:hover .icon svg {
                    fill: #fff !important;
                }
        
        .home-social .item .text {
            position: relative;
            overflow: hidden;
            padding: 10px 0 0 23px;
        }
        
            .home-social .item .text h3 {
                font-size: 21px;
                line-height: 21px;
                font-weight: 900;
                text-transform: uppercase;
            }
            
            .home-social .item .text p {
                margin-top: 2px;
                font-size: 18px;
                line-height: 21px;
                color: #44454F;
            }
            
            
        /*
         * Customizing
         */
        
        .home-social .item.facebook .icon { border-color: #3b52a2; }
        .home-social .item.facebook .icon svg { fill: #3b52a2; }
        .home-social .item.facebook:hover .icon { background: #3b52a2; }
         .home-social .item.facebook .text h3 { color: #3b52a2; }
         
         .home-social .item.twitter .icon { border-color: #2aace2; }
         .home-social .item.twitter .icon svg { fill: #2aace2; }
         .home-social .item.twitter:hover .icon { background: #2aace2; }
         .home-social .item.twitter .text h3 { color: #2aace2; }
         
         .home-social .item.linkedin .icon { border-color: #2767b0; }
         .home-social .item.linkedin .icon svg { fill: #2767b0; }
         .home-social .item.linkedin:hover .icon { background: #2767b0; }
         .home-social .item.linkedin .text h3 { color: #2767b0; }
         
         .home-social .item.google .icon { border-color: #dc4125; }
         .home-social .item.google .icon svg { fill: #dc4125; }
         .home-social .item.google:hover .icon { background: #dc4125; }
         .home-social .item.google .text h3 { color: #dc4125; }

 
 
/*	Home news
-------------------------------------------*/	 

.home-news {
    padding: 59px 0 62px 0;
    border-top: 1px solid #ebebeb;
    background: #f8f8f8;
}

/*
 * Heading
 */

.home-news .section-title {
    font-size: 23px;
    line-height: 27px;
    font-weight: 600;
    color: #44454F;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;	
}


/*
 * Wrapper
 */
 
.home-news .wrapper {
    margin-top: 50px;
}

    .home-news .item {
        position: relative;
        padding-left: 50%;
        box-sizing: border-box;
    }
    
        .home-news .item + .item {
            margin-top: 25px;
        }

        /*
         * Image
         */
         
        .home-news .item .col.image {
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;	
            width: 50%;
            overflow: hidden;
        }	 
     
         .home-news .item .col.image .background {
             position: absolute;
             left: 0;
             top: 0;
             width: 100%;
             height: 100%;
             background-repeat: no-repeat;
             background-position: center center;
             background-size: cover;
             -webkit-transition: all ease 0.4s;
                     transition: all ease 0.4s;
             -webkit-transform: scale(1);
                -moz-transform: scale(1);
                     transform: scale(1);
         }
         
             .home-news .item .col.image:hover .background {
                 -webkit-transform: scale(1.05);
                   -moz-transform: scale(1.05);
                         transform: scale(1.05);
             }
         
         /*
          * Text
          */
          
          .home-news .item .col.text {
              position: relative;
              padding: 49px 50px 29px 44px;
              box-sizing: border-box;
              background: #fff;	
          }
          
              .home-news .item .col.text h3 {
                  font-size: 28px;
                  line-height: 28px;
                  font-weight: 400;	
              }
              
                  .home-news .item .col.text h3 a {
                      text-decoration: none;
                      color: #44454F;
                      -webkit-transition: all 0.3s ease 0s;
                             transition: all 0.3s ease 0s;
                  }
                  
                      .home-news .item .col.text h3 a:hover {
                          color: #e41d39;	
                      }
                      
            .home-news .item .col.text datetime {
                  margin-top: 7px;
                  display: block;
                  font-size: 21px;
                  line-height: 21px;
                  font-weight: 600;
                  color: #708a9c;	
              }
              
              .home-news .item .col.text p {
                  margin-top: 13px;
                  font-size: 17px;
                  line-height: 22px;
                  color: #708a9c;	
              }
              
              .home-news .item .col.text .button {
                  margin: 17px 0 0 -9px;
              }
              
                  .home-news .item .col.text .button a {
                    font-size: 13px;
                    line-height: 17px;
                    font-weight: 600;
                    text-decoration: none;
                    text-transform: uppercase;
                    color: #e41d39;
                    -webkit-transition: all 0.3s ease 0s;
                             transition: all 0.3s ease 0s;
                }

                    .home-news .item .col.text .button a svg {
                        position: relative;
                        top: 2px;
                        left: 0;
                        margin-right: 11px;
                        fill: #e41d39;
                         fill-rule: evenodd;
                         -webkit-transition: all 0.3s ease 0s;
                                transition: all 0.3s ease 0s;
                    }
                    
                        .home-news .item .col.text .button a:hover svg {
                            left: 5px;
                        }

/*
 * Footer
 */
 
 .home-news .footer {
     margin-top: 64px;
     text-align: center;
 }
 
     .home-news .footer a {
         display: inline-block;
         padding: 13px 22px 12px 23px;
         box-sizing: border-box;
         background: #708a9c;
         border-radius: 6px;
         font-size: 19px;
         line-height: 23px;
         font-weight: 700;
         letter-spacing: 0.126em;
         color: #fff;
         text-transform: uppercase;
         text-decoration: none;
         -webkit-transition: all 0.3s ease 0s;
                transition: all 0.3s ease 0s;
     }
     
         .home-news .footer a:hover {
             background: #e41d39;
         }
         
         
/*	Featured properties
-------------------------------------------*/

.featured-properties {
    padding: 58px 0 101px 0;
    background: #fcfcfc;
    border-top: 1px solid #f3f3f3;
}

    .featured-properties .heading {
        text-align: center;
    }
    
        .featured-properties .heading h2 {
            font-size: 23px;
            line-height: 27px;
            font-weight: 600;
            color: #44454F;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }
        
    .featured-properties .wrapper {
        margin-top: 51px;
    }
    
        .featured-properties .wrapper .item {
            display: block;
            float: left;
            overflow: hidden;
            position: relative;
            width: 31.51618398637138%;
            text-decoration: none;				
        }
        
            .featured-properties .wrapper .item:first-child {
                margin-left: 0;
            }
            
            .featured-properties .wrapper .item .ribbon {
                width: 174px;
                top: 95px;
                left: -25px;
                z-index: 5;
                color: #ffffff;
                font-size: 15px;
                line-height: 18px;
                white-space: pre-wrap;
                text-align: center;								
                text-transform: uppercase;				
                padding: 9px 32px 8px 32px;
                position: absolute;
                box-sizing: border-box;
                -webkit-transform-origin: 0 0;
                        transform-origin: 0 0;
                -webkit-transform: rotate(-45deg);
                        transform: rotate(-45deg);
            }
            
            .featured-properties .wrapper .item .ribbon:before {
                content: "";
                top: 0px;
                left: -30px;
                right: -30px;
                bottom: 0px;
                z-index: -1;
                position: absolute;
                background: #e41d39;
            }
            
            .featured-properties .wrapper .item .background {
                position: absolute;
                z-index: 1;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background-repeat: no-repeat;
                background-position: top center;
                background-size: cover;
            }
    
            .featured-properties .wrapper .item .layer {
                position: relative;
                z-index: 2;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                text-align: center;
                height: 296px;
                background: rgba(112,138,156,0.71);
                letter-spacing: 0.2em;
                color: #fff;
                opacity: 0;
                visibility: hidden;
                -webkit-transition: all 0.3s ease 0s;
                        transition: all 0.3s ease 0s;
            }
            
                .featured-properties .wrapper .item:hover .layer {
                    opacity: 1;
                    visibility: visible;
                }
            
                .featured-properties .wrapper .item .layer .inner {
                    margin-top: 7px;
                    padding: 0 20px;
                    box-sizing: border-box;
                }
            
                .featured-properties .wrapper .item .layer h3 {
                    font-size: 15px;
                    line-height: 19px;
                    font-weight: 600;
                    text-transform: uppercase;
                }
                
                .featured-properties .wrapper .item .layer .desc {
                    margin-top: 15px;
                    font-size: 15px;
                    line-height: 19px;
                    font-weight: 600;
                }
                
                .featured-properties .wrapper .item .layer .price {
                    margin-top: 12px;
                    font-size: 20px;
                    line-height: 24px;
                    font-weight: 600;
                }
                
                .featured-properties .wrapper .item .layer .button {
                    margin-top: 37px;
                }
                
                    .featured-properties .wrapper .item .layer .button div {
                        display: inline-block;
                        padding: 11px 16px 10px 15px;
                        border: 2px solid #fff;
                        border-radius: 4px;
                        background: transparent;
                        font-size: 16px;
                        line-height: 20px;
                        text-transform: uppercase;
                        -webkit-transition: all 0.3s ease 0s;
                                transition: all 0.3s ease 0s;
                    }
                    
                        .featured-properties .wrapper .item .layer .button div strong {
                            font-weight: 600;
                        }
                        
                        .featured-properties .wrapper .item .layer .button div:hover {
                            background: #fff;
                            color: #e41d39;
                        }
    


/*	Meet team
-------------------------------------------*/	

.meet-team {
    border-top: 1px solid #f4f4f4;	
} 

.meet-team .container {
    position: relative;
    padding: 87px 20px 75px 470px;
    box-sizing: border-box;
}

    /*
     * Left
     */		 
     .meet-team .left {
         position: absolute;
        left: -46px;
        bottom: 0; 	
        top: 0;
        max-width: 485px;
        display: -webkit-box;
        display: -moz-box;
        display: box;	
        -webkit-box-orient: horizontal;
        -moz-box-orient: horizontal;
        box-orient: horizontal;	
        -webkit-box-pack: center;
        -moz-box-pack: center;
        box-pack: center;
        -webkit-box-direction: normal;
        -moz-box-direction: normal;
        box-direction: normal;	
        -webkit-box-align: end;
        -moz-box-align: end;
        box-align: end;
     }
     
         .meet-team .left img {
             display: block;
            height: auto;
            max-height: 100%;
            max-width: 100%;
            width: auto;
         }
     
     /*
      * Right
      */
      
      .meet-team .right {
          color: #44454F;
      }
      
          .meet-team .right h4 {
              position: relative;
              margin-left: -4px;
              font-size: 50px;
              line-height: 46px;
              font-weight: 300;
          }
          
          .meet-team .right p {
              margin-top: 22px;
              font-size: 19px;
              line-height: 30px;
          }
          
              .meet-team .right .button {
                  margin: 20px 0 0 0;
              }
              
                  .meet-team .right .button a {
                    font-size: 16px;
                    line-height: 20px;
                    text-decoration: none;
                    color: #e41d39;
                    -webkit-transition: all 0.3s ease 0s;
                             transition: all 0.3s ease 0s;
                }

                    .meet-team .right .button a svg {
                        position: relative;
                        top: 2px;
                        left: 0;
                        margin-left: 11px;
                        fill: #e41d39;
                         fill-rule: evenodd;
                         -webkit-transition: all 0.3s ease 0s;
                                transition: all 0.3s ease 0s;
                    }
                    
                        .meet-team .right .button a:hover svg {
                            left: 5px;
                        }

        /*
         * Team slider
         */
         
         .meet-team .team-slider {
             margin-top: 54px;
         }
         
             .meet-team .team-slider .swiper-slide {
                 display: block;	
                 width: 85px;
             }
         
             .meet-team .team-slider .swiper-slide div {
                 position: relative;
                 display: block;
                 width: 100%;
                 padding-bottom: 100%;
                 border-radius: 50%;
                 background: #f5f5f5;
                 border: 1px solid #f2f2f2;
                 box-sizing: border-box;
                 background-repeat: no-repeat;
                 background-position: top center;
                 background-size: cover;
                 -webkit-filter: grayscale(100%);
                        filter: grayscale(100%);
             }
             
                 .meet-team .team-slider .swiper-slide:hover div,
                 .meet-team .team-slider .swiper-slide.selected div {
                     -webkit-filter: grayscale(0);
                            filter: grayscale(0);
                 }
                 
         .meet-team .team-slider .swiper-pagination {
             position: relative;
             bottom: auto;
             margin-top: 30px;
             margin-bottom: 30px;
         }
         
             .meet-team .team-slider .swiper-pagination-bullet {
                 width: 10px;
                 height: 10px;
             }
         
                 .meet-team .team-slider .swiper-pagination-bullet-active {
                     background: #44454F;
                 }



/*	Newsletter
-------------------------------------------*/

.section-newsletter {
    padding: 82px 0 97px 0;
    background: #44454F;
}

    .section-newsletter .gform_wrapper {
        position: relative;
        width: 100%;
        max-width: 678px;
        margin: 0 auto;
    }
    
    .section-newsletter .gform_body {
        margin: 32px 0 0 0;
        padding-right: 61px;
        box-sizing: border-box;	
    }

    .section-newsletter .gform_title {
        font-size: 40px;
        line-height: 36px;
        font-weight: 300;
        letter-spacing: -0.01em;
        color: #fff;
        text-align: center;
    }
    
        .section-newsletter .gform_title strong {
            font-weight: 400;
        }
        
    .section-newsletter .gfield {
        float: left;
        width: 49.11504424778761%;
        margin-left: 1.769911504424779%;
        list-style: none;
    }
    
        .section-newsletter .gfield:first-child {
            margin-left: 0;
        }
        
        .section-newsletter .gfield .gfield_label {
            display: none;
        }
    
        .section-newsletter .gfield_html {
            clear: both;
            width: 100%;
            margin: 35px 0 0 33px;
            font-size: 12px;
            line-height: 16px;
            color: #c1c6c9;
            text-align: center;
        }
        
            .section-newsletter .gfield_html a {
                text-decoration: none;
                color: #c1c6c9;
                font-weight: 600;
                -webkit-transition: all 0.3s ease 0s;
                        transition: all 0.3s ease 0s;
            }
            
                .section-newsletter .gfield_html a:hover {
                    color: #fff;
                }
        
        .section-newsletter .gfield input[type="text"] {
            display: block;
            width: 100%;
            padding: 12px 16px 14px 16px;
            box-sizing: border-box;
            border: none;
            outline: none;
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 18px;
            line-height: 22px;
            color: #c1c6c9;
        }
        
        .section-newsletter .gfield .validation_message {
            color: #ffffff;
            font-size: 12px;
            line-height: 14px;
            background: #e41d39;
            padding: 6px 16px;
        }
    
    .section-newsletter .gform_footer {
        position: absolute;
        right: 0;
    }
    
        .section-newsletter .gform_footer button {
            display: block;
            width: 50px;
            height: 48px;
            background: #e41d39 url('../img/button-send-icon.svg') no-repeat center center;
            border: none;
            outline: none;
            cursor: pointer;
            text-indent: -9999px;
            -webkit-transition: all 0.3s ease 0s;
                    transition: all 0.3s ease 0s;
        }
        
            .section-newsletter .gform_footer button:hover {
                background-position: 18px center;
            }
            
    .section-newsletter .gform_confirmation_wrapper {
        color: #fff;
        font-size: 40px;
        font-weight: 300;
        line-height: 36px;			
        letter-spacing: -0.01em;			
        text-align: center;
    }
    
        .section-newsletter .gform_confirmation_wrapper strong {
            font-weight: 600;
        }
        

/*	Map
-------------------------------------------*/

.section-map {
    height: 396px;
}

    .section-map #map {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background: #eee;
        background-size: cover;
    }
    
    .section-map .map-window {
        display: none;
        top: 50%;
        left: 50%;			
        width: 250px;
        padding: 16px;
        z-index: 8000;			
        margin-left: 40px;
        border-radius: 4px;
        background: #ffffff;
        box-sizing: border-box;
        position: absolute;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
    }
    
        #mw-jewellery-quarter {
            margin-left: 72px;
        }
    
        .section-map .map-window .image {
            width: 100%;
            height: 118px;
            border-radius: 4px;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: top center;
        }
        
        .section-map .map-window .title {
            color: #44454F;
            font-size: 18px;
            font-weight: 600;
            padding-top: 9px;
        }
        
        .section-map .map-window .location {
            color: #44454F;
            font-size: 16px;
            font-weight: 300;
            padding-top: 2px;
        }


/*	Page: About
-------------------------------------------*/

.page-about .content {
    padding-top: 25px;	
}


/*	Page: Area selected
-------------------------------------------*/

.page-area-selected .content {
    padding-top: 25px;	
}	


/*	Page: Area guides
-------------------------------------------*/

.page-area-guides .area-wrapper .item {
    float: left;
    width: 49.26289926289926%;
    height: auto;
    overflow: hidden;
    position: relative;						
    padding-bottom: 45.2%;
    display: block;
}

    .page-area-guides .area-wrapper .item:nth-child(even) {
        margin-left: 1.47420147420147%;
    }
    
    .page-area-guides .area-wrapper .item:nth-child(n+3) {
        margin-top: 15px;
    }

    .page-area-guides .area-wrapper .item .background {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
        -webkit-transform: scale(1);
                 transform: scale(1);
         -webkit-transition: all ease 0.3s;
                 transition: all ease 0.3s;
     }
     
         .page-area-guides .area-wrapper .item:hover .background {
             -webkit-transform: scale(1.05);
                     transform: scale(1.05);
         }
    
    .page-area-guides .area-wrapper .item .title {
        position: absolute;
        left: 19px;
        bottom: 18px;
        padding: 10px 16px 12px 15px;
        background: rgba(255,255,255,0.89);
        font-size: 21px;
        line-height: 25px;
        font-weight: 400;
        color: #44454F;
        -webkit-transition: all 0.3s ease 0s;
                transition: all 0.3s ease 0s;
    }

        .page-area-guides .area-wrapper .item:hover .title {
            background: rgba(228,29,57,0.89);
            color: #fff;
        }
    
        
/*	Section : message
-------------------------------------------*/

.section-message {
    padding: 72px 0 81px 0;
    border-top: 1px solid #f4f4f4;
    text-align: center;	
}

    .section-message h3 {
        font-size: 50px;
        line-height: 46px;
        font-weight: 300;
        color: #44454F;	
    }
    
    .section-message p {
        margin-top: 17px;
        font-size: 23px;
        line-height: 27px;
        font-weight: 600;
        letter-spacing: 0.2em;
    }
    
        .section-message p a {
            text-decoration: none;
            color: #e41d39;	
        }


/*	Page: Blog
-------------------------------------------*/

.page-blog .blogpost-wrapper {}

    .page-blog .blogpost-wrapper .item {
        position: relative;
        padding-left: 42.62899262899263%;
        box-sizing: border-box;
    }
    
        .page-blog .blogpost-wrapper .item + .item {
            margin-top: 22px;
        }

        /*
         * Image
         */
         
         .page-blog .blogpost-wrapper .item .image {
             position: absolute;
             left: 0;
             top: 0;
             bottom: 0;
             width: 42.62899262899263%;
             overflow: hidden;
         }
         
         .page-blog .blogpost-wrapper .item .image .background {
             position: absolute;
             left: 0;
             top: 0;
             width: 100%;
             height: 100%;
             background-repeat: no-repeat;
             background-position: center center;
             background-size: cover;
             -webkit-transition: all 0.3s ease-in-out 0s;
                     transition: all 0.3s ease-in-out 0s;
             -webkit-transform: scale(1);
                -moz-transform: scale(1);
                     transform: scale(1);
         }
         
             .page-blog .blogpost-wrapper .item .image:hover .background {
                 -webkit-transform: scale(1.03);
                   -moz-transform: scale(1.03);
                         transform: scale(1.03);
             }
         
         /*
          * Text
          */
          
          .page-blog .blogpost-wrapper .item .text {
              padding: 19px 20px 22px 24px;
              background: #fff;	
          }
          
              .page-blog .blogpost-wrapper .item .text .head-wrapper {
                  position: relative;
                  min-height: 71px;
              }
          
                  .page-blog .blogpost-wrapper .item .text h3 {
                      font-size: 20px;
                      line-height: 24px;
                      font-weight: 400;	
                      padding-bottom: 6px;
                  }
                  
                      .page-blog .blogpost-wrapper .item .text h3 a {
                          text-decoration: none;
                          color: #44454F;
                          -webkit-transition: all 0.3s ease 0s;
                                 transition: all 0.3s ease 0s;
                      }
                      
                          .page-blog .blogpost-wrapper .item .text h3 a:hover {
                              color: #e41d39;	
                          }
                          
                .page-blog .blogpost-wrapper .item .text datetime {
                      margin-top: 2px;
                      display: block;
                      font-size: 15px;
                      line-height: 15px;
                      font-weight: 600;
                      color: #708a9c;	
                  }
              
              .page-blog .blogpost-wrapper .item .text p {
                  margin-top: 16px;
                  font-size: 15px;
                  line-height: 22px;
                  color: #708a9c;	
              }
              
              .page-blog .blogpost-wrapper .item .text .button {
                  margin: 20px 0 0 0;
              }
              
                  .page-blog .blogpost-wrapper .item .text .button a {
                    font-size: 17px;
                    line-height: 22px;
                    font-weight: 600;
                    text-decoration: none;
                    text-transform: uppercase;
                    color: #e41d39;
                    -webkit-transition: all 0.3s ease 0s;
                             transition: all 0.3s ease 0s;
                }

                    .page-blog .blogpost-wrapper .item .text .button a svg {
                        position: relative;
                        top: 1px;
                        left: 0;
                        margin-right: 11px;
                        fill: #e41d39;
                         fill-rule: evenodd;
                         -webkit-transition: all 0.3s ease 0s;
                                transition: all 0.3s ease 0s;
                    }
                    
                        .page-blog .blogpost-wrapper .item .text .button a:hover svg {
                            left: 5px;
                        }
        
/*	Pagination (global)
-------------------------------------------*/

.pagination {
    margin-top: 46px;
    text-align: center;
}

    .pagination ul {
        display: inline-block;
        list-style: none;
    }
    
        .pagination ul li {
            float: left;
            margin: 0 9px 5px 0;
        }
        
            .pagination ul li:last-child {
                margin-right: 0;
            }
            
            .pagination ul li svg {
                fill: #708a9c;
                 fill-rule: evenodd;
                 -webkit-transition: all 0.3s ease 0s;
                        transition: all 0.3s ease 0s;
            }
            
            .pagination ul li a,
            .pagination ul li span {
                position: relative;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                width: 37px;
                height: 37px;
                box-sizing: border-box;
                font-size: 17px;
                line-height: 17px;
                text-decoration: none;
                -webkit-transition: all 0.3s ease 0s;
                        transition: all 0.3s ease 0s;
            }
            
                .pagination ul li a {
                    background: #fff;
                    color: #44454F;	
                    border: 1px solid #f1f1f1;
                }
                
                .pagination ul li span {
                    background: #708a9c;
                    color: #fff;	
                    border: 1px solid #acb8c1;	
                }
                
                .pagination ul li a:hover {
                    background: #e41d39;
                    color: #fff;	
                }
                
                    .pagination ul li a:hover svg {
                        fill: #fff;
                    }


/*	Page: Blog chosen
-------------------------------------------*/

/*
 * Heading
 */
 
.page-blog-chosen .blogpost .heading .title {
    font-size: 35px;
    line-height: 35px;
    font-weight: 300;
    color: #44454F;
}

.page-blog-chosen .blogpost .heading .details {
    margin-top: 19px;
    list-style: none;
}

    .page-blog-chosen .blogpost .heading .details li {
        position: relative;
        float: left;
        font-size: 18px;
        line-height: 22px;
        font-weight: 600;
        color: #708a9c;
    }
    
        .page-blog-chosen .blogpost .heading .details li:before {
            content: '|';
            float: left;
            margin: 0 7px;
            position: relative;
            top: -1px;
        }
        
            .page-blog-chosen .blogpost .heading .details li:first-child:before { display: none; }
            
        .page-blog-chosen .blogpost .heading .details li a {
            text-decoration: none;
            color: #708a9c;
            -webkit-transition: all 0.3s ease 0s;
                    transition: all 0.3s ease 0s;
        }
        
            .page-blog-chosen .blogpost .heading .details li a:hover {
                color: #44454F;
            }
        
        /*
         * Tags
         */
         
         .page-blog-chosen .blogpost .heading .details li.tags span {
             text-transform: uppercase;
         }
                
        .page-blog-chosen .blogpost .heading .details li.tags a {
            display: inline-block;
            margin-right: 4px;
            text-transform: uppercase;
            text-decoration: underline;
        }
        
            .page-blog-chosen .blogpost .heading .details li.tags a:last-child { margin-right: 0; }
            
            .page-blog-chosen .blogpost .heading .details li.tags a:hover {
                text-decoration: none;
            }

/*
 * Body
 */
 
.page-blog-chosen .blogpost .body {
    margin-top: 23px;
    padding-top: 31px;
    border-top: 1px solid #ebebeb;
}

    .page-blog-chosen .blogpost .body .image {
        padding-bottom: 55.4%;
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
    }
    
    .page-blog-chosen .blogpost .body .text {
        margin-top: 30px;
    }

/*
 * Footer
 */
 
.page-blog-chosen .blogpost .footer {
    margin-top: 18px;
    padding-top: 29px;
    border-top: 1px solid #ebebeb;	
}

    .page-blog-chosen .blogpost .footer .share {
        position: relative;
        padding-left: 167px;
        box-sizing: border-box;
    }

        .page-blog-chosen .blogpost .footer .share .title {
            position: absolute;
            left: 0;
            top: 7px;
            font-size: 22px;
            line-height: 22px;
            font-weight: 400;
            letter-spacing: -0.024em;
            color: #708a9c;
        }
        
        .page-blog-chosen .blogpost .footer .share ul {
            list-style: none;	
        }
        
            .page-blog-chosen .blogpost .footer .share ul li {
                float: left;
                margin-left: 7px;
            }
            
                .page-blog-chosen .blogpost .footer .share ul li:first-child {
                    margin-left: 0;	
                }
                
                .page-blog-chosen .blogpost .footer .share ul li a {
                    position: relative;
                    display: block;
                    height: 35px;
                    min-width: 54px;
                    padding: 0 9px 0 8px;
                    box-sizing: border-box;
                    border-radius: 4px;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    text-decoration: none;
                    text-align: center;
                    color: #fff;
                }
                
                    .page-blog-chosen .blogpost .footer .share ul li a i {
                        font-size: 20px;	
                    }
                    
                    .page-blog-chosen .blogpost .footer .share ul li a span {
                        font-size: 13px;
                        margin-left: 8px;
                        position: relative;
                        top: 1px;
                    }
                
                    .page-blog-chosen .blogpost .footer .share ul li.facebook a { background: #5674b9; }
                    .page-blog-chosen .blogpost .footer .share ul li.twitter a { background: #00bff3; }
                    .page-blog-chosen .blogpost .footer .share ul li.linkedin a { background: #0054a6; }
                    .page-blog-chosen .blogpost .footer .share ul li.mail a { background: #000000; }


/*	Page: Lettings ++
-------------------------------------------*/

.page-lettings,
.page-new-builds,
.page-sales {
    padding: 95px 0 0 0;
}

    .page-lettings {
        background: #fff;
    }

/*
 * Page desc (global)
 */

.page-desc {
    color: #44454F;
    text-align: center;
}

    .page-desc h2 {
        font-size: 50px;
        line-height: 46px;
        font-weight: 300;
    }
    
    .page-desc p {
        max-width: 1080px;
        margin: 34px auto 0 auto;
        font-size: 21px;
        line-height: 34px;
    }

/*
 * Services boxes
 */
 
 .services-boxes {
     margin-top: 158px;
 }

    .page-sales .services-boxes {
        margin-top: 78px;
    }

.services-boxes .box {
    overflow: hidden;
    position: relative;
    padding: 71px 0 75px 0;		
    border-top: 1px solid #eaefee;
}

    .services-boxes .box.big-padding {
        padding: 130px 0 108px 0;
    }
    
    .services-boxes .box.small-padding {
        padding: 46px 0 66px 0;
    }

    .services-boxes .box .background {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 120%;
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
    }
    
    .services-boxes .box .general-content {
        max-width: 50%;
    }
    
        .services-boxes .box.left .general-content { float: left; }
        .services-boxes .box.right .general-content { float: right; }

        .services-boxes .box .general-content h2 {
            font-size: 23px;
            line-height: 34px;
            font-weight: 600;
            letter-spacing: 0.2em;
        }
        
            .services-boxes .box .general-content > section.text:first-child > h2:first-child + p {
                margin-top: 15px;	
            }


/*	Page: Team
-------------------------------------------*/

.page-team {
    padding: 57px 0 0 0;
    background: #fff;
}

/*	Team details (global)
-------------------------------------------*/

.team-details:not(.outside-content) {
    position: relative;
    padding-left: 527px;
}

    .team-details.outside-content .container {
        position: relative;
        padding: 47px 0 0 527px;
    }

/*
 * Left
 */
 
.team-details .left {
    position: absolute;
    left: -46px;
    bottom: 0; 	
    top: 0;
    max-width: 485px;
    display: -webkit-box;
    display: -moz-box;
    display: box;	
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;	
    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;	
    -webkit-box-align: end;
    -moz-box-align: end;
    box-align: end;
}

    .team-details .left > div {
        width: 100%;
        max-height: 100%;
    }

    .team-details .left img {
        display: block;
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
    }
    
    .team-details .left .job-title {
        position: absolute;
        left: 50%;
        bottom: 0;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;			
        text-transform: uppercase;			
        text-align: center;
        padding: 10px 15px 7px 15px;
        box-sizing: border-box;			
        background: rgba(228,29,57,0.85);		
        -webkit-transform: translateX(-50%);
                transform :translateX(-50%);
    }

/*
 * Right
 */
 
 .team-details .right {
     padding-bottom: 77px;
 }
 
 /*
  * Team slider big (global)
  */

.team-slider-big {
    margin-top: 54px;
 }
 
     .team-slider-big .swiper-slide {
         display: block;
         width: 102px;
         border-radius: 50%;
     }
         
    .team-slider-big .swiper-slide div {
        padding-bottom: 100%;
        border-radius: 50%;
        background: #f5f5f5;
        border: 1px solid #f2f2f2;
        box-sizing: border-box;
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
        -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
     }
             
        .team-slider-big .swiper-slide:hover div {
            -webkit-filter: grayscale(0);
                    filter: grayscale(0);
         }	
         
        .team-slider-big .swiper-pagination {
             position: relative;
             bottom: auto;
             margin-top: 30px;
         }
         
             .team-slider-big .swiper-pagination-bullet {
                 width: 10px;
                 height: 10px;
             }
         
                 .team-slider-big .swiper-pagination-bullet-active {
                     background: #44454F;
                 }
 
 /*
  * Details
  */
 
 .team-details .right .details {
     margin-top: 26px;
     color: #44454F;	
 }

    .team-details .right .details h2 {
        font-size: 50px;
        line-height: 46px;
        font-weight: 300;
    }
    
    .team-details .right .details h4 {
        margin-top: 18px;
        font-size: 16px;
        line-height: 20px;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;	
    }
    
    .team-details .right .details p {
        margin-top: 5px;
        font-size: 17px;
        line-height: 30px;	
    }
    
    .team-details .right .details .buttons {
        margin-top: 24px;
    }
    
        .team-details .right .details .buttons a {
            display: inline-block;
            padding: 5px 12px 5px 12px;
            background: #44454F;
            border-radius: 4px;
            font-size: 15px;
            line-height: 19px;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            -webkit-transition: all 0.3s ease 0s;
                    transition: all 0.3s ease 0s;
        }
        
            .team-details .right .details .buttons a + a {
                margin-left: 7px;
            }
        
            .team-details .right .details .buttons a.phone {
                background: #e3eaef;
                color: #708a9c;
            }
            
                .team-details .right .details .buttons a.phone:hover {
                    background: #44454F;
                    color: #fff;
                }
            
            .team-details .right .details .buttons a.email {
                background: #e41d39;
                color: #fff;
            }
            
                .team-details .right .details .buttons a.email:hover {
                    background: #c01c33;
                }
            

/*	Page: Valuation
-------------------------------------------*/

.page-valuation {
    padding: 73px 0 106px 0;
    background: #fff;
}

    .page-valuation .discover-more {
        padding: 0;
    }
    
        .page-valuation .discover-more .wrapper {
            margin-top: 73px;
        }
    
        .page-valuation .discover-more .wrapper .item {
            padding: 0 20px 0 25px;
        }	
        
/*	Valuation header
-------------------------------------------*/

.valuation-header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 100vh;
    padding: 120px 0 0 0;
    box-sizing: border-box;
}

    /*
     * Background
     */

    .valuation-header .background {
        position: absolute;
        z-index: -1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #f0f0f0;
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;	
    }
    
        .valuation-header .background:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.21);
        }
    
    /*
     * Content
     */
     
     .valuation-header .content {
         position: relative;
         max-width: 737px;
         margin: -55px auto 0 auto;
         text-align: center;
     }
     
         .valuation-header .content h1 {
             font-size: 43px;
              line-height: 48px;
              font-weight: 300;
              color: #fff;
              text-shadow: 1px 1px 1px rgba(9, 13, 19, 0.3);
         }
         
         .valuation-header .col-wrapper {
             margin-top: 64px;
         }
         
             .valuation-header .col {
                 float: left;
                 width: 31.47896879240163%;
                 margin-left: 2.78154681139756%;
             }
         
                 .valuation-header .col:first-child { margin-left: 0; }
                 
                 .valuation-header .col .icon {
                     display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                    height: 104px;
                    -webkit-transform: scale(1);
                            transform: scale(1);
                    -webkit-transition: all ease 0.4s;
                            transition: all ease 0.4s;
                 }
                 
                     .valuation-header .col .icon:before {
                         content: "";
                         top: 50%;
                         left: 50%;
                         width: 148px;
                         height: 148px;
                         opacity: 0;
                         border-radius: 50%;
                         position: absolute;
                         border: 2px solid #ffffff;		 					
                         -webkit-transform: translate(-50%, -50%);
                                transform: translate(-50%, -50%);
                        -webkit-transition: all ease 0.4s;
                                transition: all ease 0.4s;
                     }
                 
                     .valuation-header .col .icon svg {
                         fill: #fff;
                           fill-rule: evenodd;	
                           -webkit-transform: scale(1);
                                transform: scale(1);
                        -webkit-transition: all ease 0.4s;
                                transition: all ease 0.4s;
                     }		 			
                     
                     .valuation-header .col:hover .icon:before {
                         opacity: 1;
                     }
                     
                     .valuation-header .col:hover .icon svg {
                         -webkit-transform: scale(0.9);
                                transform: scale(0.9);
                     }
 
                 .valuation-header .col .text {
                     margin-top: 46px;
                     min-height: 66px;
                     opacity: 0.65;
                     font-size: 15px;
                      line-height: 22px;
                      color: #fff;	
                 }
                 
                 .valuation-header .col .button {
                     margin-top: 22px;
                 }
                 
                     .valuation-header .col .button a {
                         display: block;
                         padding: 13px 20px 14px 19px;
                         box-sizing: border-box;
                         background: transparent;
                         border: 2px solid rgba(255,255,255,0.65);
                         border-radius: 4px;
                         font-size: 17px;
                         line-height: 21px;
                         letter-spacing: 0.08em;
                         color: #fff;
                         text-decoration: none;
                         -webkit-transition: all 0.3s ease 0s;
                                 transition: all 0.3s ease 0s;
                     }
                     
                         .valuation-header .col .button a:hover {
                             background: #fff;
                             color: #e41d39;
                         }
         
         .valuation-header .slogan {
             margin-top: 87px;
             font-size: 21px;
             line-height: 25px;
             letter-spacing: 0.1em;
             color: #fff;
         }
         
         .valuation-header .scroll-icon {
             margin-top: 47px;
         }

            .valuation-header .scroll-icon svg {
                position: relative;
                fill: #fff;
                fill-rule: evenodd;
                cursor: pointer;
                bottom: 0;
                -webkit-animation: upDown 2s infinite;
                   -moz-animation: upDown 2s infinite;					
                          animation: upDown 2s infinite;
            }
            


/*	Page: Contact
-------------------------------------------*/

.page-contact {
    padding: 79px 0 106px 0;
}

    .page-contact .page-desc p {
        margin-top: 14px;
    }
    
    .page-contact .page-desc p a {
        color: inherit;			
    }
    

/*	Contact wrapper
-------------------------------------------*/

.page-contact .contact-wrapper {
    margin-top: 68px;
}

.page-contact .contact-wrapper .col {
    float: left;
    width: 48.3816%;
    box-sizing: border-box;
    min-height: 567px;
}

    .page-contact .contact-wrapper .col + .col {
        margin-left: 3.2368%;
    }

/*
 * Left
 */
 
 .page-contact .contact-wrapper .left {
     /* background: #44454F; */
     padding: 27px 34px;
     position: relative;
 }
 
/*
 * Gravity Forms
 */
 
.page-contact .contact-wrapper .left .gform_body {
    position: relative;
}	 

 .page-contact .contact-wrapper .left .gfield {
     position: relative;
     padding-top: 24px;
     list-style: none;
 }
 
     .page-contact .contact-wrapper .left .gfield:first-child { padding-top: 0; }
     
     .page-contact .contact-wrapper .left .gfield-enquiry + .gfield { padding-top: 20px; }
     .page-contact .contact-wrapper .left .gfield-ymessage { padding-top: 19px; }
 
     .page-contact .contact-wrapper .left .gfield-left {
         float: left;
         clear: both;
         width: calc(50% - 11px);
     }
     
     .page-contact .contact-wrapper .left .gfield-right {
         float: right;
         width: calc(50% - 11px);
     }
     
     .page-contact .contact-wrapper .left .gfield-right + *:not(.gfield-left) {
         clear: both;
         width: 100%;
     }
     
     /*
      * Elements
      */
      
      .page-contact .contact-wrapper .left .gfield_label {
          padding-left: 2px;
          font-size: 11px;
          line-height: 15px;
          font-weight: 600;
          letter-spacing: 0.2em;
          color: #fff;
          text-transform: uppercase;
      }
      
          .page-contact .contact-wrapper .left .gfield_label .gfield_required {
              display: none;
          }
      
      .page-contact .contact-wrapper .left .ginput_container {
          padding-top: 13px;
      }
      
          .page-contact .contact-wrapper .left .gfield-ymessage .ginput_container {
              padding-top: 16px;
          }
      
      .page-contact .contact-wrapper .left .gfield input[type="text"],
    .page-contact .contact-wrapper .left .gfield textarea {
          display: block;
          width: 100%;
          max-width: 100%;
          padding: 11px 19px 14px 19px;
          background: rgba(112,138,156,0.24);
          box-sizing: border-box;
          border: 1px solid #61798a;
          font-family: 'Source Sans Pro', sans-serif;
          font-size: 18px;
          line-height: 22px;
        color: #fff;
      }
      
          .page-contact .contact-wrapper .left .gfield textarea {
              resize: none;
              height: 84px;
          }

        /*
          * Selectbox
          */
      
         .page-contact .contact-wrapper .left .sbHolder {
             position: relative;
        }
                    
        .page-contact .contact-wrapper .left .sbHolder,
        .page-contact .contact-wrapper .left .sbHolder * {
            display: block;
            margin: 0;
            list-style: none;
            border: none;
            outline: none;
            box-sizing: border-box;
              text-decoration: none;
             color: #fff;
        }
                
            .page-contact .contact-wrapper .left .sbSelector {
                 position: relative;
                padding: 11px 19px 14px 19px;
                  box-sizing: border-box;
                  border: 1px solid #61798a;
                  background: rgba(112,138,156,0.24);
                  font-size: 18px;
                  line-height: 22px;
            }
            
            .page-contact .contact-wrapper .left .sbToggle {
                position: absolute;
                background: url('../img/sbtoggle-icon-white.svg') no-repeat center center;
                height: 100%;
                right: 13px;
                top: 0;
                width: 14px;
                z-index: 12;
            }
                   
            .page-contact .contact-wrapper .left .sbOptions {
                position: absolute;
                z-index: 13;
                top: 100% !important;
                margin-top: 1px;
                left: 0;
                right: 0;
                max-height: 300px !important;
                overflow-y: auto;
                background: #364c5b;
                font-size: 18px;
                  line-height: 22px;
             }
                    
                   .page-contact .contact-wrapper .left .sbOptions a {
                    padding: 11px 19px 14px 19px;
                    background: #364c5b;
                    border-top: 1px solid rgba(255,255,255,0.1);
                    color: #fff;
                    -webkit-transition: all 0.3s ease 0s;
                            transition: all 0.3s ease 0s;
                }

                        .page-contact .contact-wrapper .left .sbOptions a:hover {
                            background: #fff;
                            color: #364c5b;
                         }
                
        /*
         * Checkbox
         */
        .page-contact .contact-wrapper .left .lvp-newsletter {
            position: absolute;
            bottom: -70px;
        }
        
        .page-contact .contact-wrapper .left .lvp-newsletter .gfield_label {
            display: none;
        }
     
         .page-contact .contact-wrapper .left .gfield_checkbox { list-style: none; }
         
             .page-contact .contact-wrapper .left .gfield_checkbox li {
                 position: relative;
                 padding-left: 36px;
             }
             
             .page-contact .contact-wrapper .left .gfield_checkbox li label {
                 display: block;
                max-width: 250px;
                font-size: 14px;
                 line-height: 22px;
                 color: #fff;
                 cursor: pointer;
             }
   
            /*
             * Custom checkbox
             */
             
             .page-contact .contact-wrapper .left .gfield .checkbox {
                 position: absolute;
                 display: block;
                 left: 0;
                 top: 6px;
                 width: 22px;
                 height: 22px;
                 box-sizing: border-box;
                 background: rgba(112,138,156,0.24);
                border: 1px solid #61798a;
                cursor: pointer;	
             }
            
                .page-contact .contact-wrapper .left .gfield .checkbox .inn {
                    display: none;
                    position: relative;
                    left: 3px;
                    top: 3px;
                    width: 14px;
                    height: 14px;
                    background: #fff;
                }
                
                    .page-contact .contact-wrapper .left .gfield .checkbox.checked .inn { display: block; }


    .page-contact .contact-wrapper .left .gfield .validation_message {
        color: #ffffff;
        font-size: 12px;
        line-height: 14px;
        background: #e41d39;
        padding: 6px 16px;
    }

     /*
      * Footer
      */	 	 
    .page-contact .contact-wrapper .left .gform_footer {
        margin-top: 31px;
    }
    
        .page-contact .contact-wrapper .left .gform_footer button {
            float: right;
            display: inline-block;
            min-width: 166px;
            padding: 9px 10px 10px 13px;
            box-sizing: border-box;
            background: transparent;
            border: 2px solid #fff;
            border-radius: 4px;
            font-family: 'Source Sans Pro', sans-serif;
              font-size: 16px;
              line-height: 20px;
              font-weight: 400;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-align: center;
            color: #fff;
            cursor: pointer;
            -webkit-transition: all 0.3s ease 0s;
                    transition: all 0.3s ease 0s;
        }
        
            .page-contact .contact-wrapper .left .gform_footer button strong {
                font-weight: 700;
            }
        
            .page-contact .contact-wrapper .left .gform_footer button:hover {
                background: #fff;
                color: #e41d39;
            }
      
      .page-contact .contact-wrapper .gform_confirmation_wrapper {
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        position: absolute;
        display: -webkit-box;
        display: -moz-box;
        display: box;		
        -webkit-box-orient: horizontal;
        -moz-box-orient: horizontal;
        box-orient: horizontal;		
        -webkit-box-pack: center;
        -moz-box-pack: center;
        box-pack: center;		
        -webkit-box-direction: normal;
        -moz-box-direction: normal;
        box-direction: normal;		
        -webkit-box-align: center;
        -moz-box-align: center;
        box-align: center;			
    }
        
        .page-contact .contact-wrapper .gform_confirmation_wrapper .general-content {
            color: #ffffff;
        }
        
        .page-contact .contact-wrapper .gform_confirmation_wrapper .general-content h2 {
            margin-top: 0px !important;
        }
      
      
 
 /*
  * Right
  */

.page-contact .contact-wrapper .right .item {
    height: 264px;
    position: relative;
    display: block;
    
}

    .page-contact .contact-wrapper .right .item + .item {
        margin-top: 40px;
    }
    
    .page-contact .contact-wrapper .right .item .background {
        position: absolute;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(122,126,128,0.44);
        background-blend-mode: multiply;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;	
    }
    
    .page-contact .contact-wrapper .right .item .content {
        position: relative;
        z-index: 2;
        box-sizing: border-box;
        position: absolute;
        left: 29px;
        right: 17px;
        bottom: 19px;
    }
        
        .page-contact .contact-wrapper .right .item .content .text {
            position: absolute;
            left: 0;
            right: 220px;
            bottom: 0;
        }
        
            .page-contact .contact-wrapper .right .item .content .text h3 {
                font-size: 26px;
                line-height: 34px;
                font-weight: 600;
                color: #fff;
            }
        
        .page-contact .contact-wrapper .right .item .content .button {
            position: absolute;
            right: 0;
            bottom: 7px;
        }
        
            .page-contact .contact-wrapper .right .item .content .button a {
                display: block;
                min-width: 164px;
                padding: 14px 23px 15px 25px;
                box-sizing: border-box;
                background: rgba(228,29,57,0.67);
                border: 1px solid rgba(255,255,255,0.8);
                border-radius: 4px;
                font-size: 16px;
                line-height: 20px;
                font-weight: 700;
                letter-spacing: 0.075em;
                text-decoration: none;
                text-align: center;
                color: #fff;
                -webkit-transition: all 0.3s ease 0s;
                        transition: all 0.3s ease 0s;
            }
            
                .page-contact .contact-wrapper .right .item .content .button a:hover {
                    background: rgba(228,29,57,0.9);
                }
            
    
    
/*	Page: Job list
-------------------------------------------*/

.content-container.page-job-list .content {
    padding-top: 21px;
}

/*
 * Content title
 */

.page-job-list .content-title h2 {
    font-size: 19px;
    line-height: 23px;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: #44454F;	
}

/*
 * Content head
 */

.page-job-list .content-head {
    position: relative;
    margin-top: 18px;
    padding: 31px 270px 33px 39px;
    box-sizing: border-box;
    background: #708a9c;
}

    .page-job-list .content-head .text {
        font-size: 19px;
        line-height: 23px;
        color: #c5d8e5;	
    }
    
        .page-job-list .content-head .text span {
            color: #fff;
            font-weight: 600;
        }

    .page-job-list .content-head .button {
        position: absolute;
        right: 17px;
        top: 22px;
    }
    
        .page-job-list .content-head .button a {
            display: block;
            padding: 10px 26px 10px 25px;
            box-sizing: border-box;
            background: #44454F;
            border-radius: 4px;
            font-size: 19px;
            line-height: 23px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-decoration: none;
            text-align: center;
            color: #fff;
            -webkit-transition: all 0.3s ease 0s;
                    transition: all 0.3s ease 0s;
        }
        
            .page-job-list .content-head .button a:hover {
                background: #384a56;
            }
            
/*
 * Content wrapper
 */
 
 .page-job-list .content-wrapper {
     margin-top: 20px;
 }
 
     .page-job-list .content-wrapper .job-item {
         position: relative;
         padding: 17px 20px 18px 28px;
         box-sizing: border-box;
         background: #fff;
         border: 1px solid #f4f4f4;
     }
     
         .page-job-list .content-wrapper .job-item + .job-item {
             margin-top: 18px;
         }
     
         .page-job-list .content-wrapper .job-item h3 {
             font-size: 22px;
             line-height: 26px;
             font-weight: 600;
             color: #44454F;
         }
         
             .page-job-list .content-wrapper .job-item h3 span {
                 display: inline-block;
                 padding-left: 1px;
                 font-size: 15px;
                 font-weight: 400;
                 color: #e41d39;
             }
             
        .page-job-list .content-wrapper .job-item p {
             margin-top: 6px;
             font-size: 17px;
             line-height: 26px;
             color: #708a9c;
         }
         
         .page-job-list .content-wrapper .job-item .actions {
             margin-top: 10px;
         }
         
            .page-job-list .content-wrapper .job-item .actions .buttons {
                float: right;
                list-style: none;
            }
            
                .page-job-list .content-wrapper .job-item .actions .buttons li {
                    float: left;
                    font-size: 15px;
                    line-height: 19px;
                    font-weight: 700;
                    text-transform: uppercase;	
                }
                
                    .page-job-list .content-wrapper .job-item .actions .buttons li:before {
                        content: '|';
                        position: relative;
                        top: -1px;
                        float: left;
                        margin: 0 7px;
                    }
                    
                        .page-job-list .content-wrapper .job-item .actions .buttons li:first-child:before { display: none; }
                        
                        .page-job-list .content-wrapper .job-item .actions .buttons li a {
                            text-decoration: none;
                            color: #44454F;
                            -webkit-transition: all 0.3s ease 0s;
                                    transition: all 0.3s ease 0s;
                        }
                        
                            .page-job-list .content-wrapper .job-item .actions .buttons li a:hover {
                                color: #e41d39;
                            }
    
/*	Page: Job chosen
-------------------------------------------*/

.content-container.page-job-chosen .content {
    padding-top: 21px;
}

/*
 * Content title
 */
 
 .page-job-chosen .content-title {
     position: relative;
     padding-right: 240px;
     box-sizing: border-box;
 }

    .page-job-chosen .content-title h2 {
        font-size: 19px;
        line-height: 23px;
        font-weight: 700;
        letter-spacing: 0.075em;
        text-transform: uppercase;
        color: #44454F;	
    }
    
        .page-job-chosen .content-title h2 span {
            font-weight: 400;
        }
    
    .page-job-chosen .content-title .back {
        position: absolute;
        top: 2px;
        right: 2px;
    }
    
        .page-job-chosen .content-title .back a {
            text-decoration: none;
            color: #44454F;
        }
    
            .page-job-chosen .content-title .back a svg {
                position: relative;
                left: 0;
                top: 2px;
                fill: #708a9c;
                fill-rule: evenodd;
                -webkit-transition: all 0.3s ease 0s;
                        transition: all 0.3s ease 0s;
            }
            
            .page-job-chosen .content-title .back a span {
                display: inline-block;
                margin-left: 8px;
            }
            
                .page-job-chosen .content-title .back a:hover {
                    color: #e41d39;
                }
            
                .page-job-chosen .content-title .back a:hover svg {
                    left: -5px;
                }

/*
 * Content head
 */

.page-job-chosen .content-head {
    position: relative;
    margin-top: 18px;
    padding: 31px 270px 33px 39px;
    box-sizing: border-box;
    background: #708a9c;
}

    .page-job-chosen .content-head .list {
        list-style: none;	
    }
    
        .page-job-chosen .content-head .list li {
            margin-top: 6px;
            font-size: 19px;
            line-height: 23px;
            font-weight: 600;
            color: #fff;
        }
        
            .page-job-chosen .content-head .list li:first-child {
                margin-top: 0;
            }

    .page-job-chosen .content-head .button {
        position: absolute;
        right: 18px;
        bottom: 20px;
    }
    
        .page-job-chosen .content-head .button a {
            display: block;
            padding: 11px 20px 10px 19px;
            box-sizing: border-box;
            background: #e41d39;
            border-radius: 4px;
            font-size: 18px;
            line-height: 22px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-decoration: none;
            text-align: center;
            color: #fff;
            -webkit-transition: all 0.3s ease 0s;
                    transition: all 0.3s ease 0s;
        }
        
            .page-job-chosen .content-head .button a:hover {
                background: #cd1a33;
            }
            
/*
 * Content wrapper
 */
 
 .page-job-chosen .content-wrapper {
     margin-top: 32px;
     padding: 0 0 0 6px;
     box-sizing: border-box;
     font-size: 18px;
     line-height: 31px;
     color: #44454F;
 }
 
     .page-job-chosen .content-wrapper > *:first-child {
         margin-top: 0;
     }
     
     .page-job-chosen .content-wrapper p {
         margin-top: 20px;	
     }
     
     .page-job-chosen .content-wrapper h3 {
         margin-top: 31px;
         font-size: 18px;
         line-height: 31px;
         font-weight: 600;	
     }
     
     .page-job-chosen .content-wrapper ul {
        list-style: none;
    }
    
        .page-job-chosen .content-wrapper ul li {
            position: relative;
            padding-left: 9px;
        }

            .page-job-chosen .content-wrapper ul li:before {
                position: absolute;
                content: '';
                left: 0;
                top: 15px;
                width: 4px;
                height: 4px;
                background: #44454F;
                border-radius: 50%;	
            }
 

/*
 * Apply wrapper
 */

.page-job-chosen .apply-wrapper {
    margin-top: 20px;
    padding: 37px 50px;
    box-sizing: border-box;
    background: #fff;
}

/*
 * Gravity Forms
 */
 
.page-job-chosen .gform_body {
    position: relative;
}	 

 .page-job-chosen .gfield {
     position: relative;
     padding-top: 20px;
     list-style: none;
 }
 
     .page-job-chosen .gfield-left {
         float: left;
         clear: both;
         width: calc(50% - 11px);
     }
     
     .page-job-chosen .gfield-right {
         float: right;
         width: calc(50% - 11px);
     }
     
     .page-job-chosen .gfield-full {
         clear: both;
         width: 100%;
     }
     
     /*
      * First row
      */
      
     .page-job-chosen .first-row-1 {
         position: absolute;
         left: 0;
         width: 80px;
         padding-top: 0;	
     }
     
     .page-job-chosen .first-row-2 {
         float: left;
         margin-left: 106px;
         width: calc(50% - 64px);
         padding-top: 0;
     }
     
     .page-job-chosen .first-row-3 {
         float: right;
         width: calc(50% - 64px);
         padding-top: 0;
     }
     
     /*
      * Elements
      */
      
      .page-job-chosen .gfield_label {
          font-size: 11px;
          line-height: 15px;
          font-weight: 600;
          letter-spacing: 0.2em;
          color: #44454F;
          text-transform: uppercase;
      }
      
          .page-job-chosen .gfield_label .gfield_required {
              position: relative;
              color: #e41d39;
          }
      
      .page-job-chosen .ginput_container {
          padding-top: 13px;
      }
      
      .page-job-chosen .gfield input[type="text"],
    .page-job-chosen .gfield textarea {
          display: block;
          width: 100%;
          max-width: 100%;
          padding: 13px 15px 14px 15px;
          background: #fff;
          box-sizing: border-box;
          border: 1px solid #b3c1ca;
          font-family: 'Source Sans Pro', sans-serif;
          font-size: 16px;
          line-height: 20px;
        letter-spacing: 0.075em;
        color: #44454F;
      }
      
          .page-job-chosen .gfield textarea {
              resize: none;
              height: 84px;
          }

        /*
          * Selectbox
          */
      
         .page-job-chosen .sbHolder {
             position: relative;
        }
                    
        .page-job-chosen .sbHolder,
        .page-job-chosen .sbHolder * {
            display: block;
            margin: 0;
            list-style: none;
            border: none;
            outline: none;
            box-sizing: border-box;
              text-decoration: none;
              text-transform: uppercase;
             color: #44454F;
        }
                
            .page-job-chosen .sbSelector {
                 position: relative;
                padding: 13px 15px 14px 15px;
                  box-sizing: border-box;
                  border: 1px solid #b3c1ca;
                  background: #fff;
                  font-size: 16px;
                  line-height: 20px;
                letter-spacing: 0.075em;
            }
            
            .page-job-chosen .sbToggle {
                position: absolute;
                background: url('../img/sbtoggle-icon.svg') no-repeat center center;
                height: 100%;
                right: 13px;
                top: 0;
                width: 14px;
                z-index: 12;
            }
                   
            .page-job-chosen .sbOptions {
                position: absolute;
                z-index: 13;
                top: 100% !important;
                margin-top: 1px;
                left: 0;
                right: 0;
                max-height: 300px !important;
                overflow-y: auto;
                background: #44454F;
             }
                    
                   .page-job-chosen .sbOptions a {
                    padding: 13px 15px 14px 15px;
                    background: #44454F;
                    border-top: 1px solid rgba(255,255,255,0.1);
                    color: #fff;
                    -webkit-transition: all 0.3s ease 0s;
                            transition: all 0.3s ease 0s;
                }

                        .page-job-chosen .sbOptions a:hover {
                            background: #e41d39;
                         }
                         
        /*
         * Upload
         */			 
         .page-job-chosen .gform_fileupload_multifile {
            position: relative;					
              background: #fff;
              box-sizing: border-box;
              border: 1px solid #b3c1ca;
              font-family: 'Source Sans Pro', sans-serif;
              font-size: 16px;
              line-height: 20px;
            letter-spacing: 0.075em;
            color: #708a9c;
        }
         
             .page-job-chosen .gform_drop_area {
                 position: relative;
                 padding: 13px 15px 14px 15px;	
             }
             
             .page-job-chosen .gform_fileupload_multifile .gform_button_select_files {
                 position: absolute;
                 top: 0;
                 bottom: 0;
                 right: 0;
                 width: 128px;
                 box-sizing: border-box;
                 outline: none;
                 border: none;
                 background: #708a9c;
                 font-family: 'Source Sans Pro', sans-serif;
                font-size: 19px;
                line-height: 23px;
                font-weight: 700;
                text-transform: uppercase;
                color: #fff;
                 cursor: pointer;
                -webkit-transition: all 0.3s ease 0s;
                        transition: all 0.3s ease 0s;
             }
             
                 .page-job-chosen .gform_fileupload_multifile .gform_button_select_files:hover {
                     background: #44454F;	
                 }
                 
             .page-job-chosen #extensions_message {
                display: none;
            }
            
            .page-job-chosen .ginput_preview {
                color: #708a9c;
                font-size: 15px;
                line-height: 20px;
                text-overflow: ellipsis;
                padding-right: 20px;
                position: relative;
                overflow: hidden;							
            }
            
                .page-job-chosen .ginput_preview {
                    padding-top: 5px;
                }
            
                .page-job-chosen .ginput_preview a {
                    display: none;	
                }
            
                .page-job-chosen .ginput_preview .gform_delete {
                    right: 0px;								
                    margin-top: 2px;
                    cursor: pointer;
                    position: absolute;
                }
                
                .page-job-chosen .ginput_preview:first-child {
                    margin-top: 6px;	
                }
                
                .page-job-chosen .ginput_preview:last-child {
                    margin-bottom: 6px;	
                }
                
            .page-job-chosen .file-upload.gfield_error .ginput_container .validation_message {
                padding: 0px;
            }
            
            .page-job-chosen .file-upload .validation_message li {
                color: #ffffff;
                font-size: 12px;
                line-height: 14px;
                background: #e41d39;
                padding: 8px 16px;
            }												
        
            .page-job-chosen .file-upload .validation_message ul {
                list-style: none;								
            }
            
                
        /*
         * Checkbox
         */
        .page-job-chosen .lvp-newsletter {
            position: absolute;
            bottom: -70px;
        }
     
        .page-job-chosen .lvp-newsletter .gfield_label {
            display: none;
        }
        
         .page-job-chosen .gfield_checkbox {
             list-style: none;
        }
         
             .page-job-chosen .gfield_checkbox li {
                 position: relative;
                 padding-left: 36px;
             }
             
             .page-job-chosen .gfield_checkbox li label {
                 display: block;
                max-width: 250px;
                font-size: 14px;
                 line-height: 22px;
                 color: #44454F;
                 cursor: pointer;
             }
   
            /*
             * Custom checkbox
             */
             
             .page-job-chosen .gfield .checkbox {
                 position: absolute;
                 display: block;
                 left: 0;
                 top: 6px;
                 width: 22px;
                 height: 22px;
                 box-sizing: border-box;
                 background: #dde3e7;
                border: 1px solid #a3b4bf;
                cursor: pointer; 
             }
            
                .page-job-chosen .gfield .checkbox .inn {
                    display: none;
                    position: relative;
                    left: 3px;
                    top: 3px;
                    width: 14px;
                    height: 14px;
                    background: #e41d39;
                }
                
                    .page-job-chosen .gfield .checkbox.checked .inn { display: block; }
        
        .page-job-chosen .gfield_error .validation_message {
            color: #ffffff;
            font-size: 12px;
            line-height: 14px;
            background: #e41d39;
            padding: 8px 16px;
        }
            
     /*
      * Footer
      */	 	 
    .page-job-chosen .gform_footer {
        margin-top: 31px;
    }
    
        .page-job-chosen .gform_footer button {
            float: right;
            display: inline-block;
            min-width: 166px;
            padding: 9px 20px 10px 20px;
            box-sizing: border-box;
            background: #fff;
            border: 2px solid #e41d39;
            border-radius: 4px;
            font-family: 'Source Sans Pro', sans-serif;
              font-size: 16px;
              line-height: 20px;
              font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-align: center;
            color: #e41d39;
            cursor: pointer;
            -webkit-transition: all 0.3s ease 0s;
                    transition: all 0.3s ease 0s;
        }
        
            .page-job-chosen .gform_footer button:hover {
                background: #e41d39;
                color: #fff;
            }
    
    .page-job-chosen .gform_confirmation_wrapper .general-content h2 {
        margin-top: 0px !important;
    }


/*	Page: Property list
-------------------------------------------*/

.page-property-list {}

/*
 * Content head
 */

.page-property-list .content-head .left {
    float: left;
    color: #44454F;	
}

    .page-property-list .content-head .left h2 {
        font-size: 19px;
        line-height: 23px;
        font-weight: 700;
        color: #44454F;
        text-transform: uppercase;
    }
    
    .page-property-list .content-head .left .count {
        margin-top: 8px;
        font-size: 18px;
        line-height: 22px;
    }

.page-property-list .content-head .right {
    float: right;
    position: relative;
    margin-top: -2px;
    padding-left: 48px;
}

    .page-property-list .content-head .right span {
        display: block;
        position: absolute;
        left: 0;
        top: 11px;
        font-size: 18px;
        line-height: 22px;
        color: #44454F;
    }
    
        /*
          * Selectbox
          */
      
         .page-property-list .content-head .right .sbHolder {
             position: relative;
             width: 253px;
        }
                    
        .page-property-list .content-head .right .sbHolder,
        .page-property-list .content-head .right .sbHolder * {
            display: block;
            margin: 0;
            list-style: none;
            border: none;
            outline: none;
            box-sizing: border-box;
              text-decoration: none;
             color: #44454F;
        }
                
            .page-property-list .content-head .right .sbSelector {
                 position: relative;
                padding: 10px 13px;
                  box-sizing: border-box;
                  border: 1px solid #f4f4f4;
                  background: #fff;
                  font-size: 18px;
                  line-height: 22px;
            }
            
            .page-property-list .content-head .right .sbToggle {
                position: absolute;
                background: url('../img/sbtoggle-icon-red.svg') no-repeat center center;
                height: 100%;
                right: 18px;
                top: 1px;
                width: 11px;
                z-index: 12;
            }
                   
            .page-property-list .content-head .right .sbOptions {
                position: absolute;
                z-index: 13;
                top: 100% !important;
                margin-top: 1px;
                left: 0;
                right: 0;
                max-height: 300px !important;
                overflow-y: auto;
                background: #ffffff;
                font-size: 18px;
                  line-height: 22px;
                  border: 1px solid #f4f4f4;
             }
                                    
                .page-property-list .content-head .right .sbOptions li + li {
                    border-top: 1px solid #f4f4f4;
                }
                    
                   .page-property-list .content-head .right .sbOptions a {
                       color: #44454F;
                    padding: 10px 13px;												
                    -webkit-transition: all 0.3s ease 0s;
                            transition: all 0.3s ease 0s;
                }
                 
                    .page-property-list .content-head .right .sbOptions a:hover {
                        color: #ffffff;
                        background: #e41d39;
                     }	


/*
 * Content wrapper
 */

.page-property-list .content-wrapper {
    margin-top: 14px;
    padding-top: 33px;
    border-top: 1px solid #ebebeb;
}


/*
 * List item
 */
 
.page-property-list .list-item {
    position: relative;
    padding-left: 347px;
    box-sizing: border-box;
    background: #fff;
}

    .page-property-list .list-item + .list-item {
        margin-top: 19px;
    }

    /*
     * Image
     */
     
     .page-property-list .list-item .image {
         display: block;
         position: absolute;
         left: 0;
         top: 0;
         width: 347px;
         height: 100%;
         overflow: hidden;
     }
     
        .page-property-list .list-item .ribbon {
            width: 174px;
            top: 95px;
            left: -25px;
            z-index: 5;
            color: #ffffff;
            font-size: 15px;
            line-height: 18px;
            white-space: pre-wrap;
            text-align: center;								
            text-transform: uppercase;				
            padding: 9px 32px 8px 32px;
            position: absolute;
            box-sizing: border-box;
            -webkit-transform-origin: 0 0;
                    transform-origin: 0 0;
            -webkit-transform: rotate(-45deg);
                    transform: rotate(-45deg);
			font-weight: bold;
        }
        
        .page-property-list .list-item .ribbon:before {
            content: "";
            top: 0px;
            left: -30px;
            right: -30px;
            bottom: 0px;
            z-index: -1;
            position: absolute;
            background: #e41d39;
        }
     
         .page-property-list .list-item .image .background {
             position: absolute;
             z-index: 1;
             left: 0;
             top: 0;
             width: 100%;
             height: 100%;
             background-repeat: no-repeat;
             background-position: center center;
             background-size: cover;
         }
         
         .page-property-list .list-item .image .thumbs {
             position: absolute;
             z-index: 2;
             right: 22px;
             bottom: 22px;
             width: 32px;
             height: 25px;
             background: url('../img/property-thumbs-icon.svg');
             display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            box-shadow: 0px 0px 29px 0px rgba(9, 13, 19, 0.55);
         }
         
             .page-property-list .list-item .image .thumbs span {
                 position: relative;
                 top: 1px;
                 left: 1px;
                 font-size: 12px;
                 line-height: 12px;
                 font-weight: 700;
                 color: #fff;
             }
     
     /*
      * Details
      */
      
      .page-property-list .list-item .details {
          padding: 19px 24px 19px 24px;
          box-sizing: border-box;	
          color: #44454F;
      }
      
          /*
           * Title
           */ 	 	
          .page-property-list .list-item .details .title {
              font-size: 20px;
              line-height: 27px;
              font-weight: 400;
          }
          
              .page-property-list .list-item .details .title a {
                  color: inherit;
                  text-decoration: none;
                  -webkit-transition: all ease 0.3s;
                          transition: all ease 0.3s;	
              }
              
              .page-property-list .list-item .details .title a:hover {
                  color: #e41d39;	
              }
          
          /*
           * Price
           */ 	 		 	
          .page-property-list .list-item .details .price {
              margin-top: 1px;
              font-size: 23px;
              line-height: 27px;
              font-weight: 700;
          }
          
              .page-property-list .list-item .details .price .q {
                  font-size: 15px;
                  font-weight: 600;
                  font-style: italic;
                  line-height: 18px;
                  padding-top: 15px;	 	 			
              }
          
          /*
           * Location
           */
          
          .page-property-list .list-item .details .location {
              font-size: 16px;
              line-height: 21px;
              color: #e41d39;
          }
          
          /*
           * Description
           */ 	 		
          .page-property-list .list-item .details .description {
              font-size: 15px;
              line-height: 22px;
              max-height: 66px;
              overflow: hidden;
              margin-top: 17px;
          }
          
          /*
           * Features
           */
          
          .page-property-list .list-item .details .features {
              margin-top: 24px;
          }
          
              .page-property-list .list-item .details .features > div {
                  float: left;
                  margin: 0 19px 5px 0;
                  min-height: 23px;
                  display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
              }
              
                  .page-property-list .list-item .details .features > div:last-child {
                      margin-right: 0;
                  }
                  .page-property-list .list-item .details .features div.bathrooms {
                      margin-right: 14px;
                  }
                  
                  .page-property-list .list-item .details .features div svg {
                      position: relative;
                      fill: #708a9c;
                       fill-rule: evenodd;
                  }
                  
                      .page-property-list .list-item .details .features div.bedrooms svg { top: -3px; }
                      .page-property-list .list-item .details .features div.bathrooms svg { top: -4px; }
                      .page-property-list .list-item .details .features div.parking svg { top: 1px; }
                  
                  .page-property-list .list-item .details .features div span {
                      display: inline-block;
                      margin-left: 9px;
                      font-size: 17px;
                      line-height: 22px;
                      color: #708a9c;
                  }
                  
                      .page-property-list .list-item .details .features div.bedrooms span { margin-left: 11px; }
                  
        /*
         * Buttons
         */
          
          .page-property-list .list-item .details .buttons {
              margin-top: 15px;
              padding-top: 18px;
              border-top: 1px solid #ebebeb;
          }
          
              .page-property-list .list-item .details .buttons a {
                  position: relative;
                  font-size: 17px;
                  line-height: 21px;
                  color: #e41d39;
                  text-decoration: none;
                  -webkit-transition: all 0.3s ease 0s;
                        transition: all 0.3s ease 0s;
              }
              
                  .page-property-list .list-item .details .buttons a svg {
                      position: relative;
                      top: 2px;
                      left: -1px;
                      fill: #e41d39;
                    fill-rule: evenodd;
                    -webkit-transition: all 0.3s ease 0s;
                            transition: all 0.3s ease 0s;
                  }
                  
                      .page-property-list .list-item .details .buttons a:hover svg {
                          left: 4px;
                      }
                  
                  .page-property-list .list-item .details .buttons a span {
                      display: inline-block;
                      margin-left: 12px;
                  }
              
                  .page-property-list .list-item .details .buttons a.contact-us {
                      margin-left: 8px;
                      padding-left: 12px;
                      font-weight: 700;
                  }
                  
                      .page-property-list .list-item .details .buttons a.contact-us:before {
                          content: '';
                          position: absolute;
                          left: 0;
                          top: 4px;
                          width: 1px;
                          height: 17px;
                          background: #e41d39;
                      }


/*	Page: Property chosen
-------------------------------------------*/

.page-property-chosen {
    padding: 27px 0 115px 0;
    background: #f7f7f7;
}

/*	Navigation
-------------------------------------------*/

.page-property-chosen .navigation .back {
    float: left;	
}

    .page-property-chosen .navigation .back a {
        text-decoration: none;
        color: #44454F;
        -webkit-transition: all 0.3s ease 0s;
                transition: all 0.3s ease 0s;
    }
    
        .page-property-chosen .navigation .back a:hover {
            color: #e41d39;
        }

        .page-property-chosen .navigation .back a svg {
            position: relative;
            top: 2px;
            left: 0;
            fill: #e41d39;
               fill-rule: evenodd;
               -webkit-transition: all 0.3s ease 0s;
                       transition: all 0.3s ease 0s;
        }
        
            .page-property-chosen .navigation .back a:hover svg {
                left: -5px;
            }
        
        .page-property-chosen .navigation .back a span {
            display: inline-block;
            margin-left: 10px;
        }

.page-property-chosen .navigation .contact {
    float: right;	
}

    .page-property-chosen .navigation .contact ul {
        list-style: none;
    }
    
        .page-property-chosen .navigation .contact ul li {
            float: left;
            position: relative;
            font-size: 15px;
            line-height: 19px;
            color: #44454F;
        }
        
            .page-property-chosen .navigation .contact ul li.quote { color: #e41d39; }
        
            .page-property-chosen .navigation .contact ul li:before {
                content: '|';
                position: relative;
                float: left;
                margin: 0 8px 0 7px;
            }
            
                .page-property-chosen .navigation .contact ul li:first-child:before {
                    display: none;
                }
                
            .page-property-chosen .navigation .contact ul li a {
                text-decoration: none;
                color: #44454F;
                -webkit-transition: all 0.3s ease 0s;
                           transition: all 0.3s ease 0s;
            }
            
                .page-property-chosen .navigation .contact ul li a:hover {
                    color: #e41d39;
                }

/*	Heading
-------------------------------------------*/

.page-property-chosen .heading {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #ebebeb;
}

/*
 * Left
 */

.page-property-chosen .heading .left {
    float: left;
}

    .page-property-chosen .heading .left .title {
        font-size: 22px;
        line-height: 26px;
        font-weight: 400;
        color: #44454F;
    }
    
    .page-property-chosen .heading .left .details {
        margin-top: 3px;
    }
        
        .page-property-chosen .heading .left .price-q {
            color: #44454f;
            font-size: 15px;
            font-weight: 600;
            font-style: italic;
            line-height: 18px;
            margin-top: 8px;
        }
    
        .page-property-chosen .heading .left .details .price {
            float: left;
            font-size: 24px;
            line-height: 28px;
            font-weight: 700;
            color: #44454F;
        }
        
        .page-property-chosen .heading .left .details .location {
            float: left;
            margin: 5px 0 0 12px;
            font-size: 17px;
            line-height: 21px;
            color: #e41d39;
        }

/*
 * Right
 */

.page-property-chosen .heading .right {
    float: right;
    margin-top: 10px;
    position: relative;
}

    .page-property-chosen .heading .right .book-button {
        position: relative;
        display: block;
        padding: 10px 17px;
        background: #e41d39;
        font-size: 18px;
        line-height: 22px;
        font-weight: 700;
        letter-spacing: 0.075em;
        color: #fff;
        text-transform: uppercase;
        cursor: pointer;
        -webkit-transition: all 0.3s ease 0s;
                transition: all 0.3s ease 0s;
    }
    
        .page-property-chosen .heading .right .book-button:hover {
            background: #98253d;
        }
        
    .page-property-chosen .heading .right .book-form {
        top: 100%;
        right: 0px;
        width: 300px;
        z-index: 100;
        display: none;
        padding: 18px 17px;
        position: absolute;
        background: #ffffff;
        border: 1px solid #ebebeb;
        box-sizing: border-box;	
    }
    
        .page-property-chosen .heading .right .book-form .gform_fields {
            list-style: none;
        }
        
        .page-property-chosen .heading .right .book-form .gfield + .gfield {
            margin-top: 14px;
        }
        
        .page-property-chosen .heading .right .book-form .gfield_label {
            display: block;
            color: #708a9c;
            font-size: 13px;
            font-weight: 400;
            line-height: 14px;
            text-transform: uppercase;
            padding-bottom: 12px;
        }
        
            .page-property-chosen .heading .right .book-form .gfield_required {
                display: none;	
            }
            
            .page-property-chosen .heading .right .book-form .gfield input {
                width: 100%;
                color: #708a9c;
                font-family: 'Source Sans Pro', Arial, sans-serif;
                font-size: 18px;
                line-height: 22px;
                padding: 12px 12px;
                background: #ffffff;
                border: 1px solid #f3f3f3;
                box-sizing: border-box;
            }
            
            .page-property-chosen .heading .right .book-form .gfield_html:before {
                content: "REFERENCE";
                display: block;
                color: #708a9c;
                font-size: 13px;
                font-weight: 400;
                line-height: 14px;
                text-transform: uppercase;
                padding-bottom: 12px;
            }
            
                .page-property-chosen .heading .right .book-form .gfield_html .box {
                    width: 100%;
                    color: #e41d39;
                    font-family: 'Source Sans Pro', Arial, sans-serif;
                    font-size: 18px;
                    line-height: 22px;
                    padding: 12px 12px;
                    background: #ffffff;
                    border: 1px solid #f3f3f3;
                    box-sizing: border-box;
                }
                
                    .page-property-chosen .heading .right .book-form .gfield_html .box span {
                        color: #708a9c;	
                    }
                    
        .page-property-chosen .heading .right .book-form .gfield .validation_message {
            color: #ffffff;
            font-size: 12px;
            line-height: 14px;
            background: #e41d39;
            padding: 6px 16px;
        }
        
        .page-property-chosen .heading .right .book-form .gform_button {
            width: 100%;
            color: #ffffff;
            font-family: 'Source Sans Pro', Arial, sans-serif;
            font-size: 18px;
            font-weight: bold;
            line-height: 22px;
            letter-spacing: 0.075em;
            margin-top: 8px;
            padding: 10px 0px 12px 0.075em;
            background: #e41d39;
            border: 0px;
            cursor: pointer;
            box-sizing: border-box;
            -webkit-transition: all ease 0.3s;
                    transition: all ease 0.3s;
        }
        
            .page-property-chosen .heading .right .book-form .gform_button:hover {
                background: #98253d;
            }
            
        .page-property-chosen .heading .right .book-form .gform_confirmation_wrapper {
            color: #708a9c;
            font-size: 16px;
            font-weight: 400;
            line-height: 19px;
            text-align: right;
        }
        
            .page-property-chosen .heading .right .book-form .gform_confirmation_wrapper strong {
                display: block;
                text-transform: uppercase;
            }


/*	Tabs
-------------------------------------------*/

.page-property-chosen .tabs {
    margin-top: 27px;
}

/*
 * Tabs nav
 */
 
 .page-property-chosen .tabs-nav {
     list-style: none;
 }
 
     .page-property-chosen .tabs-nav li {
         float: left;
         border: 1px solid #e1e1e1;
         border-bottom: none;
         font-size: 17px;
         line-height: 21px;
     }
     
         .page-property-chosen .tabs-nav li:not(:first-child) {
             border-left: none;
         }
     
         .page-property-chosen .tabs-nav li a {
             display: block;
            padding: 15px 20px;
            background: #f4f4f4;
            box-sizing: border-box;
            color: #c9d0d5;
            text-decoration: none;
            -webkit-transition: all 0.3s ease 0s;
                    transition: all 0.3s ease 0s;
         }
         
             .page-property-chosen .tabs-nav li a:hover {
                 background: rgba(255,255,255,0.3);
             }
         
             .page-property-chosen .tabs-nav li.ui-state-active a {
                 background: #fff;
                 color: #708a9c;
             }
     
/*
 * Tabs panel
 */
 
.page-property-chosen .tabs-panel {
    position: relative;
    height: 653px;
    background: #fff;	
}	

    .page-property-chosen .tabs-panel #property-map {
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        position: absolute;
    }
    
    .page-property-chosen #overview {
        overflow: hidden;
    }
    
     .page-property-chosen #overview .ribbon {
        width: 174px;
        top: 95px;
        left: -25px;
        z-index: 5;
        color: #ffffff;
        font-size: 15px;
        font-weight: 400;
        line-height: 18px;
        white-space: pre-wrap;
        text-align: center;								
        text-transform: uppercase;				
        padding: 9px 32px 8px 32px;
        position: absolute;
        box-sizing: border-box;
        -webkit-transform-origin: 0 0;
                transform-origin: 0 0;
        -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
		 font-weight:bold;
    }
        
        .page-property-chosen #overview .ribbon:before {
            content: "";
            top: 0px;
            left: -30px;
            right: -30px;
            bottom: 0px;
            z-index: -1;
            position: absolute;
            background: #e41d39;
        }
    

    /*	Swiper
    -------------------------------------------*/

    .ps-main {
        position: absolute;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding-bottom: 20px;
    }

        .ps-main .swiper-slide div {
            position: relative;
            width: 100%;
            height: 100%;
            background-repeat: no-repeat;
            background-position: top center;
            background-size: cover;	
        }
        
        #floorplans .ps-main .swiper-slide div {
            background-color: #ffffff;	
            background-size: contain;				
            background-position: center center;				
        }				

    .swiper-container.ps-thumbs {
        position: absolute;
        z-index: 2;
        right: 0;
        top: 0;
        width: 187px;
        height: 100%;
        padding: 16px;
        box-sizing: border-box;
        background: rgba(68,90,105,0.76);
    }
    
        .swiper-container.ps-thumbs .swiper-slide div {
            position: relative;
            width: 100%;
            height: 100%;
            background-repeat: no-repeat;
            background-position: top center;
            background-size: cover;
            cursor: pointer;
        }
        

/*	Property container
-------------------------------------------*/

.property-container {
    position: relative;
    margin-top: 30px;
    padding-right: 332px;
    box-sizing: border-box;
}

    /*	Content
    -------------------------------------------*/
     
     .property-container .content {
         padding: 31px 41px 29px 35px;
         box-sizing: border-box;
         background: #fff;
        border: 1px solid #f4f4f4;	
     }
     
         /*
          * Content heading
          */
         .property-container .content .content-heading {
             padding-bottom: 23px;
             border-bottom: 1px solid #ebebeb;
         }
          
         .property-container .content .content-heading h3 {
             float: left;
             font-size: 24px;
             line-height: 28px;
             font-weight: 300;
             color: #e41d39;
         }
         
         .property-container .content .content-heading .features {
             float: right;
             margin: 8px 19px 0 0;
         }
         
             .property-container .content .content-heading .features > div {
                  float: left;
                  margin: 0 19px 5px 0;
                  min-height: 23px;
                  display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
              }
              
                  .property-container .content .content-heading .features > div:last-child {
                      margin-right: 0;
                  }
                  
                  .property-container .content .content-heading .features div.bathrooms {
                      margin-right: 22px;
                  }
                  
                  .property-container .content .content-heading .features div.bathrooms:last-child {
                      margin-right: 0px;
                  }
                  
                  .property-container .content .content-heading .features div svg {
                      position: relative;
                      fill: #708a9c;
                       fill-rule: evenodd;
                  }
                  
                      .property-container .content .content-heading .features div.bedrooms svg { top: -3px; }
                      .property-container .content .content-heading .features div.bathrooms svg { top: -4px; }
                      .property-container .content .content-heading .features div.parking svg { top: 1px; }
                  
                  .property-container .content .content-heading .features div span {
                      display: inline-block;
                      margin-left: 9px;
                      font-size: 17px;
                      line-height: 22px;
                      color: #708a9c;
                  }
                  
                      .property-container .content .content-heading .features div.bedrooms span { margin-left: 11px; }
         
         /*
          * Details list
          */	 		 
          .property-container .content .details-list {
              width: 100%;
              max-width: 627px;
            padding-top: 28px;				
          }
          
              .property-container .content .details-list ul {
                  float: left;
                  width: 45.77352472089314%;
                  list-style: none;
              }
              
                  .property-container .content .details-list ul + ul {
                      margin-left: 8.45295055821372%;
                  }
                  
                  .property-container .content .details-list ul li {
                      padding: 12px 0 11px 0;
                      border-bottom: 1px solid #ebebeb;
                      font-size: 16px;
                      line-height: 20px;
                      color: #44454F;
                  }
                  
                      .property-container .content .details-list ul li:first-child {
                          padding-top: 0;
                      }
          
          /*
           * Description
           */
           
          .property-container .content .description {
              margin-top: 35px;
              font-size: 16px;
              line-height: 26px;
              color: #44454F;
          }
          
              .property-container .content .description > *:first-child {
                  padding-top: 0px;	
              }
          
              .property-container .content .description p {
                  padding-top: 15px;
              }
              
                  .property-container .content .description p.intro {
                      font-size: 26px;
                      line-height: 30px;
                  }
                  
                  .property-container .content .description p.intro + p {
                      margin-top: 25px;
                  }
              
              .property-container .content .description ul {
                  margin-top: 26px;
                  list-style: none;
              }
              
                  .property-container .content .description ul li strong {
                      display: inline-block;
                      width: 177px;	 
                  }
                  
        /*
         * Download
         */
         
         .property-container .content .download {
             margin-top: 95px;
             font-size: 17px;
             line-height: 21px;
             font-weight: 700;
         }
         
             .property-container .content .download a {
                 text-decoration: none;
                 color: #e41d39;
             }


    /*	Sidebar
    -------------------------------------------*/
     
     .property-container .sidebar {
         position: absolute;
         top: 0;
         right: 0;
         width: 310px;
     }

    /*
      * Sub Widget
      */
      
    .sub-widget {
        position: relative;
        background: #fff;
        border: rgba(235,235,235,0.2);
        box-sizing: border-box;
    }
    
        .sub-widget + .sub-widget {
            margin-top: 20px;
        }
    
        .sub-widget .widget-head {
            position: relative;
            padding: 18px 18px 15px 21px;
            box-sizing: border-box;
        }
        
            .sub-widget .widget-head h3 {
                font-size: 15px;
                line-height: 19px;
                font-weight: 700;
                letter-spacing: 0.065em;
                color: #44454F;
                text-transform: uppercase;
            }
            
                .sub-widget .widget-head h3 span { color: #e41d39; }
        
        .sub-widget .widget-content {
            padding: 22px 20px 21px 21px;
            box-sizing: border-box;
            border-top: 1px solid #ebebeb;
        }


    /*
      * Sub Widget : Agent
      */
      
     .swidget-agent .agent-wrapper {
         position: relative;
         margin-top: 2px;
         padding: 18px 0 0 134px;
         box-sizing: border-box;
         border-top: 1px solid #ebebeb;
     }
     
         .swidget-agent .agent-wrapper .image {
             position: absolute;
             left: 67px;
             bottom: 0;
             max-width: 114px;
             max-height: 100px;
             -webkit-transform: translateX(-50%);
                     transform: translateX(-50%);
         }
         
         .swidget-agent .agent-wrapper .text {
             padding: 0 0 19px 0;
         }
         
             .swidget-agent .agent-wrapper .text .name {
                 font-size: 20px;
                 line-height: 24px;
                 font-weight: 600;
                 color: #44454F;
             }
             
             .swidget-agent .agent-wrapper .text .job {
                 font-size: 17px;
                 line-height: 18px;
                 color: #e41d39;
             }
             
             .swidget-agent .agent-wrapper .text .email {
                 margin-top: 8px;
                 font-size: 15px;
                 line-height: 18px;
             }
             
                 .swidget-agent .agent-wrapper .text .email a {
                     text-decoration: none;
                     color: #708a9c;
                     -webkit-transition: all 0.3s ease 0s;
                             transition: all 0.3s ease 0s;
                 }
                 
                     .swidget-agent .agent-wrapper .text .email a:hover {
                         color: #44454F;
                     }
                 
            .swidget-agent .agent-wrapper .text .phone {
                 font-size: 15px;
                 line-height: 18px;
                 color: #708a9c;
             }
             
                 .swidget-agent .agent-wrapper .text .phone a {
                     color: inherit;
                     text-decoration: none;	
                 }
             
    /*
      * Sub Widget : Share
      */

    .swidget-share .widget-head {
        padding-top: 22px;
    }

     .swidget-share .widget-content {
         margin-top: 7px;
         padding: 0 20px 32px 19px;
         border-top: none;
     }
     
         .swidget-share .widget-content ul {
             list-style: none;
         }
         
             .swidget-share .widget-content ul li {
                 float: left;
                 margin-left: 15px;
             }
             
                 .swidget-share .widget-content ul li:first-child {
                     margin-left: 0;
                 }
                 
                 .swidget-share .widget-content ul li a {
                     display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                     width: 56px;
                     height: 56px;
                     box-sizing: border-box;
                     border: 2px solid #44454F;
                     border-radius: 50%;
                     text-decoration: none;
                     font-size: 24px;
                     -webkit-transition: all 0.3s ease 0s;
                             transition: all 0.3s ease 0s;
                 }
                 
                     .swidget-share .widget-content ul li a:hover { color: #fff !important; }
                 
                     .swidget-share .widget-content ul li.facebook a { border-color: #5f72b3; color: #5f72b3; }
                     .swidget-share .widget-content ul li.facebook a:hover { background: #5f72b3; }
                     .swidget-share .widget-content ul li.twitter a { border-color: #2aace2; color: #2aace2; }
                     .swidget-share .widget-content ul li.twitter a:hover { background: #2aace2; }
                     .swidget-share .widget-content ul li.linkedin a { border-color: #2767b0; color: #2767b0; }
                     .swidget-share .widget-content ul li.linkedin a:hover { background: #2767b0; }
                     .swidget-share .widget-content ul li.google a { border-color: #dc4125; color: #dc4125; }
                     .swidget-share .widget-content ul li.google a:hover { background: #dc4125; }


    /*
      * Sub Widget : Similar properties
      */
      
     .swidget-properties .widget-head {
         padding-bottom: 17px;	
     }
     
     .swidget-properties .widget-content {
         padding: 0;
     }

    .swidget-properties .item {
        position: relative;
        padding: 23px 17px 16px 21px;
        box-sizing: border-box;
        border-top: 1px solid #ebebeb;
    }
    
        .swidget-properties .item:first-child {
            border-top: none;
        }
    
        .swidget-properties .item .image {
            display: block;
            float: left;
            width: 87px;
            height: 74px;
            background-repeat: no-repeat;
            background-position: top center;
            background-size: cover;
        }
        
        .swidget-properties .item .text {
            position: relative;
            overflow: hidden;
            top: -6px;
            padding: 0 0 0 16px;
        }
        
            .swidget-properties .item .text h3 {
                min-height: 42px;
                font-size: 17px;
                line-height: 21px;
                font-weight: 400;	
            }
            
                .swidget-properties .item .text h3 a {
                    text-decoration: none;
                    color: #44454F;
                    -webkit-transition: all 0.3s ease 0s;
                            transition: all 0.3s ease 0s;
                }
                
                    .swidget-properties .item .text h3 a:hover {
                        color: #e41d39;
                    }
    
            .swidget-properties .item .text .price {
                font-size: 19px;
                line-height: 22px;
                font-weight: 700;
                color: #44454F;	
            }
            
            .swidget-properties .item .text .location {
                margin-top: 1px;
                font-size: 15px;
                line-height: 19px;
                color: #e41d39;	
            }


    /*
      * Sub Widget : New search
      */
      
     .sub-widget + .swidget-newsearch { margin-top: 22px; }

     .swidget-newsearch a {
         display: block;
         padding: 24px;
         box-sizing: border-box;
         background: #708a9c;
         font-size: 15px;
         line-height: 19px;
         font-weight: 700;
         letter-spacing: 0.075em;
         text-transform: uppercase;
         text-align: center;
         text-decoration: none;
         color: #fff;
         -webkit-transition: all 0.3s ease 0s;
                 transition: all 0.3s ease 0s;
     }
     
         .swidget-newsearch a:hover {
             background: #44454F;
         }


/*	Section : Popular searches
-------------------------------------------*/

.popular-searches {
    padding: 41px 0 69px 0;
    border-top: 1px solid #f1f1f1;
    text-align: center;
}

    .popular-searches .title {
        font-size: 27px;
        line-height: 31px;
        font-weight: 300;
        color: #44454F;
    }
    
        .popular-searches .title span {
            display: inline-block;
            position: relative;
            top: 12px;
            width: 45px;
            height: 39px;
            background: url('../img/heart-outline-icon.svg') no-repeat center center;
            margin: 0 5px 0 3px;
        }
    
    .popular-searches .wrapper {
        margin-top: 30px;	
    }
    
        .popular-searches .wrapper a {
            display: inline-block;
            padding: 10px 21px 12px 20px;
            margin: 0 7px 9px 0;
            border-radius: 4px;
            background: #e6eaec;
            font-size: 17px;
            line-height: 21px;
            color: #708a9c;
            text-decoration: none;
            -webkit-transition: all 0.3s ease 0s;
                    transition: all 0.3s ease 0s;
        }
        
            .popular-searches .wrapper a:hover {
                background: #e41d39;
                color: #fff;
            }


/*	Instagram
-------------------------------------------*/

.instagram {
    
}
                    
    .instagram .images {
        font-size: 0px;
        margin-bottom: -1px;
    }
    
        .instagram .images .img {
            position: relative;
            display: block;
            float: left;
            width: 20%;				
        }
            
            .instagram .images .img div {
                position: relative;
                width: calc(100% + 1px);
                padding-bottom: 100%;
                background-size: cover;
                background-repeat: no-repeat;
                background-position: top center;
            }
            
                .instagram .images .img:before {
                    content: "";
                    opacity: 0;
                    top: 0px;
                    left: 0px;
                    width: 100%;
                    height: 100%;
                    position: absolute;
                    background: rgba(228, 29, 57, 0.3);
                    transition: all ease 0.3s;
                }
                
                .instagram .images .img:hover:before {
                    opacity: 1;
                }
                
        .instagram .images .img img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .instagram .images .img.large {
            width: 40%;
        }
        


/*	Third party
-------------------------------------------*/ 

/*
 *	Slideout
 */
.slideout-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    width: 368px;
    padding: 27px 56px 56px 56px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: none;
    background: #44454F; 
    box-sizing: border-box;
    box-shadow: 7px -7px 10px 0px rgba(0, 0, 0, 0.1) inset;
}

    /*
     * Close icon
     */    	 
        .slideout-menu .close {
            position: absolute;
            top: 27px;
            right: 31px;
            cursor: pointer;
        }
        
            .slideout-menu .close svg {
                fill: #fff;
            fill-rule: evenodd;
            -webkit-transition: all 0.4s ease 0s;
                    transition: all 0.4s ease 0s;
            }
            
                .slideout-menu .close:hover svg {
                    fill: #5e99c1;
                }

        /*
     * Awards
     */		 
    .slideout-menu .awards img {
        display: block;
    }
    
    /*
     * Contact
     */		 
    .slideout-menu .contact {
        font-size: 17px;
        line-height: 29px;
        font-weight: 600;
        color: #fff;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    } 
     
         .slideout-menu .contact span {
             display: block;
         }
         
         .slideout-menu .contact a {
             text-decoration: none;
             color: #fff;
             -webkit-transition: all 0.4s ease 0s;
                    transition: all 0.4s ease 0s;
         }
         
             .slideout-menu .contact a:hover {
                 color: #5e99c1;	
             }


    /*
     * Nav
     */     
    .slideout-menu ul {
        margin-top: 46px;
        list-style: none;
    }
     
    .slideout-menu ul li {
        position: relative;
        margin-top: 19px;
        font-size: 20px;
        line-height: 24px;
        font-weight: 300;
    }
    
        .slideout-menu ul li:first-child {
            margin-top: 0;
        }
        
        .slideout-menu ul li.hidden-desktop {
            display: none;	        	
        }
        
        .slideout-menu ul li a {
            color: #fff;
            text-decoration: none;
            box-sizing: border-box;
            -webkit-transition: all 0.4s ease 0s;
                    transition: all 0.4s ease 0s;
        }
            
        .slideout-menu ul li a:hover,
        .slideout-menu ul li.current-menu-item a {
            color: #5e99c1;
        }

.slideout-panel {
    position: relative;
      z-index: 1;
      padding: 0;
      background: #fff;
}

    body.fixed-header .slideout-panel {
        padding-top: 111px;
    }

.slideout-open {
    margin-top: 0 !important;
}

.slideout-open .admin-bar .slideout-panel {
    padding-top: 52px;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
      /*overflow: hidden !important;*/
      height: 100%;
      width: 100%;
      /*position: fixed;*/
}

.slideout-open .slideout-menu {
    display: block;
}	

    
/*	Page: feess
-------------------------------------------*/

.page-template-page-fees table,
.page-template-page-fees tr,
.page-template-page-fees th,
.page-template-page-fees td {
border: 1px inset #ebebeb;
border-collapse: collapse;
border-spacing: 0;
}

.page-template-page-fees .packages {
width:100%;
}

.page-template-page-fees .packages thead {
color:#44454F;
font-size:24px;
background-color:#f9f9fa;
}

.page-template-page-fees .packages thead th {
line-height:0.9;
padding:10px 0;
font-weight:600;
}

.page-template-page-fees .packages .props-col {
width:50%;
}

.page-template-page-fees .packages .props-col.head div {
width:100%;
height:100%;
display:flex;
justify-content:center;
align-items:center;
}

.page-template-page-fees .packages .package-col {
width:25%;
}

.page-template-page-fees .packages .packages-title,
.page-template-page-fees .packages .dot,
.page-template-page-fees .packages .percent {
color:#a73247;
}

.page-template-page-fees .packages .thin {
font-weight:300;
}

.page-template-page-fees .packages .plus {
font-size:14px;
display:inline-block;
margin:0 0 10px 0;
}

.page-template-page-fees .packages .percent {
font-size:33px;
display:block;
}

.page-template-page-fees .packages .icon {
display:block;
width:28px;
height:28px;
background-size:cover;
margin:0 auto;
}

.page-template-page-fees .packages .icon.packages {
background-image:url(../img/packages.png);
width:30px;
height:30px;
margin:0 15px 0 0;
display:inline-block;
}

.page-template-page-fees .packages .icon.yes {
background-image:url(../img/yes.png);
}

.page-template-page-fees .packages .icon.no {
background-image:url(../img/no.png);
}

.page-template-page-fees .packages tbody tr td {
padding:22px;
}

.page-template-page-fees .packages tbody .props-col {
line-height:1.5;
position:relative;
}

.page-template-page-fees .packages tbody .props-col .icon.heart {
background-image:url(../img/heart.png);
width:10px;
height:10px;
position:absolute;
top:30px;
right:25px;
}

.page-template-page-fees .packages tbody .props-col .name {
font-size:18px;
font-weight:600;
cursor:pointer;
}

.page-template-page-fees .packages tbody .props-col .desc {
font-size:14px;
}

.page-template-page-fees .packages .props-col .prop-packages {
display:none;
width:100%;
border-top:1px solid #ebebeb;
margin:15px 0 0 0;
text-align:center;
background-color:#f9f9fa;
}

.page-template-page-fees .packages .props-col .prop-packages .package {
float:left;
width:50%;
line-height:0.9;
padding:15px 0;
}

.page-template-page-fees .packages .props-col .prop-packages .package .icon {
margin:15px auto 0 auto;
}

.page-template-page-fees .packages tbody .iconholder {
text-align:center;
}

.page-template-page-fees .banner {
font-family: Baskerville, Garamond, "Times New Roman", serif;
position:relative;
width:100%;
height:530px;
background-size:cover;
background-position:center left;
background-repeat:no-repeat;
}

.page-template-page-fees .banner .text {
width:100%;
height:100%;
position:relative;
}

.page-template-page-fees .banner .text .title .logo {
display:block;
width:75%;
margin:0 0 10px 0;
}

.page-template-page-fees .banner .text .title,
.banner .text .subtitle {
position:absolute;
left:110px;
}

.page-template-page-fees .banner .text .title {
top:200px;
}

.page-template-page-fees .banner .text .title h2 {
font-size:46px;
font-weight:normal;
}

.page-template-page-fees .banner .text .subtitle {
bottom:80px;
}

.page-template-page-fees .banner .text .subtitle h3 {
font-size:34px;
font-weight:normal;
margin:0 0 10px 0;
}

.page-template-page-fees .banner .text .subtitle span {
font-size:20px;
}


.cc-banner {
z-index: 2147483640 !important;
}

    
/*	Responsive
-------------------------------------------*/ 

@media (max-width: 1300px)
{		
    .home-social .item .icon { float: none; margin: 0 auto; }
    .home-social .item .text { padding: 20px 0 0 0; text-align: center; }
    .home-social .item .text p { margin-top: 5px; }
    .home-social .wrapper { padding: 0 20px; box-sizing: border-box; }
    
    .valuation-header { height: auto; padding: 150px 0 100px 0; }
    .valuation-header .content { margin: 0 auto; padding: 0 20px; box-sizing: border-box; }		
}
    
@media (max-width: 1300px) and (min-width: 1024px)
{		
    .page-property-list .list-item { padding-left: 0; }	
    .page-property-list .list-item .image { position: relative; width: 100%; height: auto; padding-bottom: 50%; }		
}
    
@media (max-width: 1220px)
{	
    .home-differences .wrapper .row .left { padding-left: 0;  }
    .home-differences .wrapper .row.opening .left, .home-differences .wrapper .row.marketing .left { width: 450px !important; }
    .home-differences .wrapper .row.expert .left, .home-differences .wrapper .row.fee .left { width: 500px !important; }
    
    .services-boxes { margin-top: 120px; }		
}
    
@media (max-width: 1200px)
{		
    .team-slider-big { margin-top: 25px; }
    
    .page-job-chosen .apply-wrapper { padding: 25px 30px; }
    .page-job-chosen .gform_fileupload_multifile .gform_button_select_files { width: 98px; }		
}
    
@media (max-width: 1150px) and (min-width: 1024px)
{	
    .page-property-list .content-head .right span { display: none; }
    .page-property-list .content-head .right .sbHolder { width: 200px; }
    
    .page-contact .contact-wrapper .left .gfield_checkbox li label { max-width: 200px; }
    .page-contact .contact-wrapper .left .lvp-newsletter { bottom: -90px; }		
}
    
@media (max-width: 1140px)
{	
    .page-blog-chosen .blogpost .heading .details li.tags { float: none; clear: left; padding-top: 3px; }
    .page-blog-chosen .blogpost .heading .details li.tags:before { display: none; }		
}
    
@media (max-width: 1120px)
{	
    .property-container .content .content-heading h3 { float: none; }
    .property-container .content .content-heading .features { float: none; margin: 20px 0 0 0; }		
}
    
@media (max-width: 1100px)
{	
    .home-differences .wrapper .row .right .icon { right: 0; }
    .home-differences .wrapper .row .right .text { padding-left: 35px; }
}

@media (max-width: 1023px)
{		
    header .property-search { display: block; }
    .slideout-menu ul li.hidden-desktop { display: block; }
    
    
    .popup-contact-form { height: 100%; overflow-y: auto; }
    .popup-contact-form .text { margin: 200px 0; }
    .popup-contact-form .form-wrapper { margin: 200px 0; }
    .popup-contact-form .close { right:0; top: 130px; }
            
    .home-testimonials .wrapper { margin-top: 70px; }
    
    .home-differences .heading .versus .hsa { display: none !important; }
    .home-differences .heading .versus .icon { display: none !important; }
    .home-differences .wrapper .row .col { position: relative; padding-right: 200px; box-sizing: border-box; }
    .home-differences .wrapper .row .left { display: none !important; position: relative; z-index: 2; }
    .home-differences .wrapper .row .left .text { max-width: 100%; }
    .home-differences .wrapper .row .left .text br, .home-differences .wrapper .row .right .text br { display: none; }
    .home-differences .wrapper .row.opening .left, .home-differences .wrapper .row.marketing .left, .home-differences .wrapper .row.expert .left, .home-differences .wrapper .row.fee .left { width: 100% !important; }
    .home-differences .wrapper .row .right { float: none; width: 100%; z-index: 1; }
    .home-differences .wrapper .row .right .icon { right: 25px; }
    .home-differences .wrapper .row .right .icon svg { top: 5px; position: relative; }
    .home-differences .wrapper .row .right .text { padding-left: 0; text-align: left; width: 100%; }
    
    .discover-more .section-title, .area-guides .section-title { font-size: 42px; line-height: 46px; }
    .discover-more .wrapper { padding: 0 30px; box-sizing: border-box; margin-top: 60px; }
    .discover-more .wrapper .item { width: 100%; float: none; padding: 0 !important; margin-top: 45px !important; }
    .discover-more .wrapper .item:first-child { margin-top: 0 !important; }
    
    .area-guides { padding: 40px 20px 55px 20px; }
    .area-guides .wrapper { margin-top: 38px; }
    
    .home-social .item .text p br { display: none; }
    
    .home-news { padding: 50px 0 60px 0; }
    .home-news .item .col.text .button { margin-left: 0; }
    
    .meet-team .container { padding: 60px 20px 0 20px; }
    .meet-team .left { display: none; }
    .meet-team .right { text-align: center; }
    .meet-team .right h4 { font-size: 46px; line-height: 50px; }
    
    .section-newsletter { padding: 60px 0; }
    
    footer { padding: 60px 0; }
    footer .left { float: none; text-align: center; }
    footer .left .top .logo { float: none; margin-top: 0; }
    footer .left .top .logo img { margin: 0 auto; }
    footer .left .top .details { float: none; margin: 20px 0 0 0; }
    footer .left .top .details nav ul { display: inline-block; }
    footer .left .top .copyright ul { display: inline-block; }
    footer .left .bottom .social { display: inline-block; }
    footer .left .bottom .social ul { float: none; }
    footer .left .bottom .social ul li { float: none; display: inline-block; }
    footer .left .bottom .social div { float: none; margin: 20px 0 0 0; top: auto; }
    footer .right { float: none; padding: 0; margin-top: 30px; }
    footer .right .awards { margin: 0; }
    footer .right .awards img { display: block; margin: 0 auto; }
    footer .right .created-by { position: relative; right: auto; top: auto; text-align: center; margin-top: 30px; }
    footer .right .created-by a { display: inline-block; }
    
    /*
     * Subpages
     */
     
     .content-container .container { display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; }
     .content-container .sidebar { float: none; width: 100%; -webkit-flex-order: 2; order: 2; margin-top: 50px; }
     .content-container > .content, .content-container > .container .content { padding: 0; -webkit-flex-order: 1; order: 1; }
     
     .widget-news .item .image { height: auto; padding-bottom: 30%; }
     .widget-email .widget-content .button { margin: 0 auto; }
     .widget-share .widget-content { text-align: center; }
     .widget-share .widget-content ul { display: inline-block; }
     
     .section-message h3 { font-size: 46px; line-height: 50px; }
     
     .page-blog .blogpost-wrapper .item .text .head-wrapper { min-height: 0; }
     
     .page-blog-chosen .blogpost .footer .share { padding-left: 0; }
     .page-blog-chosen .blogpost .footer .share .title { position: relative; top: auto; text-align: center; }
     .page-blog-chosen .blogpost .footer .share ul { margin-top: 20px; text-align: center; }
     .page-blog-chosen .blogpost .footer .share ul li { float: none; display: inline-block; margin-left: 3px; }
     
     .page-lettings, .page-new-builds, .page-sales { padding-top: 60px; }
     .featured-boxes { padding-top: 60px; }
     .page-desc h2 { font-size: 46px; line-height: 42px; }
     
     .services-boxes { margin-top: 90px; }
     .services-boxes .box { padding: 60px 0; text-align: center; }
     .services-boxes .box.big-padding { padding: 100px 0 90px 0; }
     .services-boxes .box .background { opacity: 0.2; }
     .services-boxes .box .general-content { float: none !important; max-width: 80%; margin: 0 auto; }
     .page-lettings .services-boxes .box:first-child .background:before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgba(183,143,126,0.3); }
     
     .general-content ul li { padding-left: 0; }
     .general-content ul li::before { position: relative; display: inline-block; top: -3px; margin-right: 10px; }
     
     .team-slider-big { margin-top: 0; }
     .team-details:not(.outside-content) { padding-left: 0; }
     .team-details.outside-content .container { padding: 30px 0 0 0; }
     .team-details .right { padding: 0 0 60px 0; }
     .team-details .left { position: relative; left: auto; margin-top: 40px; }
     .team-details .right .details h2 { font-size: 46px; line-height: 42px; }
     .team-details .right .details { text-align: center; }
     .team-details .left { display: none; }
     .team-details .left img { margin: 0 auto; }
     .team-details .left .job-title { left: 50%; transform: translatex(-50%); -moz-transform: translatex(-50%); -webkit-transform: translatex(-50%);  }
     
     .valuation-header { height: auto; padding: 130px 0 90px 0; }
     
     .page-property-list { padding-top: 25px; }
     
     .page-contact { padding: 60px 0; }
     .page-contact .contact-wrapper .col { float: none; width: 100%; min-height: 0; }
     .page-contact .contact-wrapper .col + .col { margin: 20px 0 0 0; }
     .page-contact .contact-wrapper .right .item + .item { margin-top: 20px; }
     .page-contact .contact-wrapper .right .item .content .text h3 { font-size: 24px; line-height: 30px; }
     .page-contact .contact-wrapper .gform_confirmation_wrapper { position: static; text-align: center;}
     
     .page-property-chosen { padding-bottom: 60px; }
     .page-property-chosen .tabs-panel { height: auto; }
     .page-property-chosen .tabs-panel #property-map {  width: 100%; height: 400px; position: static; }
     .ps-main { position: relative; padding-bottom: 0px; }
     .ps-main .swiper-slide div { padding-bottom: 50%; }
     .swiper-container.ps-thumbs { position: relative; width: 100%; }
     .swiper-container.ps-thumbs .swiper-slide div { height: auto; padding-bottom: 70%; }
     
     
     .instagram .images .img { width: 25%; }
    .instagram .images .img.large { width: 50%;}
    .instagram .images .img:nth-last-child(-n+2) { display: none; } 			
}


@media(max-width: 920px) {

    .property-container { padding-right: 0; }
    .property-container .sidebar { position: relative; width: 100%; margin-top: 30px; }
    .property-container .content .details-list { max-width: 100%; }
    .property-container .content .download { margin-top: 60px; }
    
}


@media(max-width: 850px) {
    
    header .property-search { margin-left: 10px; }
    header .property-search span {
        display: none;
    }
    header .right .logo { position: relative; top: 3px; max-width: 320px; }
    
    .home-differences .heading { padding: 0 20px; box-sizing: border-box; }
    .home-differences .heading .versus .icon { display: block; top: auto; margin: 10px auto 5px auto; }
    
    .page-property-list .list-item { padding-left: 0; }	
    .page-property-list .list-item .image { position: relative; width: 100%; height: auto; padding-bottom: 50%; }
    
}
    
@media (max-width: 767px)
{			
    /*header .contact { display: none; }
    .mobile-contact { display: block; }*/
    
    header .left { margin: 0; }
    header .mobile-trigger { display: flex; display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; -webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center; width: 50px; height: 50px; background: #fff; border-radius: 50%; }
    header .mobile-trigger .default { display: none; }
    header .mobile-trigger .alt { display: block; }
    header .mobile-trigger .alt svg { width: 17px; height: 17px; position: relative; top: 3px; }
    
    header .left a { display: flex; display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; -webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center; width: 50px; height: 50px; background: #3B3C45; border-radius: 50%; }
    header .left a svg { position: relative; width: 22px; height: 22px; }
    header .message { margin-left: 10px; padding-right: 0; }
    header .message::after { display: none; }
    header .message a svg { top: 1px; }
    header .contact { margin-left: 10px; }
    header .contact span { display: none; }
    
    header .right .logo { top: 1px; }
    header .right .logo .desktop { display: none; }
    header .right .logo .mobile { display: block; height: 50px; }
    
    .popup-wrapper.background--gray { background: rgba(68,69,79,1); z-index: 98; }
    .popup-wrapper.background--gray .popup { margin-top: 100px; }
    .popup-wrapper.background--gray .popup .form-wrapper { margin-top: 150px; }
    
    .popup-contact-form .text { margin: 150px 0; }
    .popup-contact-form .form-wrapper { margin: 100px 0 200px 0; }
    .popup-contact-form .close { top: 100px; }
    
        
    .home-hero { height: auto; min-height: 0px; margin: 0; box-sizing: border-box; }
    .home-hero .swiper-slide { height: auto; min-height: 0px; display: block;}
    .home-hero .content { margin-top: 0;  padding: 150px 30px 100px 30px;  }
    .home-hero .content br { display: none !important; }
    .home-hero .scroll-icon { display: none !important; }
    
    .featured-boxes .wrapper .col { float: none; width: 100%; }
    .featured-boxes .wrapper .col + .col { margin: 20px 0 0 0; }
    .featured-boxes .wrapper .col .item + .item { margin-top: 20px; }
    .featured-boxes .wrapper .col .item.double { height: 500px; }
    
    .home-testimonials .wrapper .item { min-height: 0px !important;}
    
    .home-property-value { padding: 100px 0 110px 0; }
    
    .discover-more .section-title, .area-guides .section-title { font-size: 38px; line-height: 42px; }
    
    .home-social { padding: 50px 0 55px 0; }
    .home-social .item { width: 50% !important; padding: 0 10px; }
    .home-social .item:nth-child(n+3) { margin-top: 40px; }
    .home-social .item:nth-child(3) { clear: left; }
    
    .home-news .item { padding-left: 0; }
    .home-news .item .col.image { position: relative; padding-bottom: 50%; box-sizing: border-box; height: auto; width: 100%; }
    
    .featured-properties { padding: 50px 0 60px 0; }
    .featured-properties .wrapper .item { float: none; margin: 30px 0 0 0; width: 100%; }
    
    .meet-team .container { padding: 40px 0 0 0; }
    .meet-team .right h4 { font-size: 42px; line-height: 46px; }

    .section-newsletter { padding: 40px 0; }
    .section-newsletter .gform_title { font-size: 36px; line-height: 40px; }
    
    .section-map { height: 350px; }
    
    footer .left .top .copyright ul li { float: none;  }
    footer .left .top .copyright ul li::before { display: none; }
    footer .left .top .copyright ul li:nth-child(2) { display: none; }
    
    /*
     * Subpages
     */
     
     .page-header { height: 350px; }
     
     .general-content section + section { margin-top: 40px; }
     .general-content section.two-image + section.text, .general-content section.collage + section.text { margin-top: 45px; }
     
     .section-message { padding: 50px 0 60px 0; }
     .section-message h3 { font-size: 42px; line-height: 46px; }
     
     .page-area-guides .area-wrapper .item .title { left: 15px; bottom: 15px; font-size: 19px; line-height: 23px; padding: 10px; }
     
     .page-blog .blogpost-wrapper .item { padding-left: 0; }
     .page-blog .blogpost-wrapper .item .image { display: block; position: relative; width: 100%; padding-bottom: 40%; }
     
     .page-lettings, .page-new-builds, .page-sales { padding-top: 40px; }
     .featured-boxes { padding-top: 40px; }
     .page-desc h2 { font-size: 42px; line-height: 38px; }
     .page-desc p { margin-top: 25px; font-size: 19px; line-height: 30px; }
     
     .services-boxes { margin-top: 60px; }
     .page-sales .services-boxes { margin-top: 60px; }
     .services-boxes .box { padding: 40px 0 50px 0; }
     .services-boxes .box.big-padding { padding: 80px 0 70px 0; }
     .services-boxes .box.small-padding { padding: 40px 0 50px 0; }
     .services-boxes .box .general-content { max-width: 90%;}
     
     .team-details .right .details h2 { font-size: 42px; line-height: 38px; }
     
     .page-job-list .content-head { padding: 25px; text-align: center; }
     .page-job-list .content-head .button { margin-top: 20px; position: relative; right: auto; top: auto; }
     .page-job-list .content-head .button a { padding: 15px; }
     .page-job-list .content-wrapper .job-item .actions { margin-top: 30px; }
     .page-job-list .content-wrapper .job-item .actions .buttons { float: none; }
     
     .page-job-chosen .content-head { padding: 25px; }
     .page-job-chosen .content-head .button { margin-top: 20px; position: relative; right: auto; bottom: auto; top: auto; }
     .page-job-chosen .content-head .button a { padding: 15px; }
     .page-job-chosen .content-wrapper { font-size: 17px; line-height: 29px; }
     .page-job-chosen .content-wrapper h3 { margin-top: 20px; }
     .page-job-chosen .content-title { padding-right: 0; }
     .page-job-chosen .content-title .back { position: relative; right: auto; top: auto; }
     .page-job-chosen .content-title h2 { margin-top: 20px; }
     .page-job-chosen .content-title .back a:hover svg { left: 0; }
     
     .valuation-header { height: auto; padding: 120px 0 70px 0; }
     .valuation-header .col-wrapper { margin-top: 45px; }
     .valuation-header .col { float: none; width: 100%; max-width: 300px; margin: 0 auto !important; }
     .valuation-header .col + .col { margin-top: 40px !important; }
     .valuation-header .col .text { margin-top: 40px; min-height: 0; }
     .valuation-header .content h1 { font-size: 40px; line-height: 44px; }
     
     .page-property-list .content-head .left { float: none; text-align: center; }
     .page-property-list .content-head .right { float: none; margin-top: 30px; padding: 0; }
     .page-property-list .content-head .right span { display: none; }
     .page-property-list .content-head .right .sbHolder { width: 100%; }
     .page-property-list .content-head .right .sbSelector { padding: 15px; }
     
     .page-contact .contact-wrapper { margin-top: 45px; }
     
     .swiper-container.ps-thumbs { padding: 10px; }
     .ps-main .swiper-slide div { padding-bottom: 60%; }
     .page-property-chosen .heading .left { float: none; }
     .page-property-chosen .heading .right { float: none; margin-top: 20px; }
     .page-property-chosen .heading .right .book-button { display: inline-block; }
     .property-container .content { padding: 25px; }
     .property-container .content .download { margin-top: 40px; }
     .property-container .content .details-list ul { width: 48%; }
     .property-container .content .details-list ul + ul { margin-left: 4%; }
     
     .popular-searches { padding: 30px 0 40px 0; }
     .popular-searches .title span { display: block; margin: 5px auto 0 auto; top: 0; width: 40px; background-size: contain; }
     
     .page-property-chosen { padding-bottom: 40px; }
    .page-property-chosen .heading .right .book-form { width: 100%;}
    .page-property-chosen .tabs-panel #property-map {  width: 100%; height: 220px; position: static; }
    
    .home-stats .item.title { display: none; }
    .home-stats .item { margin-top: 40px; }
    .home-stats .circles-wrapper { max-width: 650px; margin: 0 auto; }

    .page-template-page-fees .packages thead { font-size:17px; }
    .page-template-page-fees .packages .plus { font-size:11px; }
    .page-template-page-fees .packages .percent { font-size:24px; }
}


@media(max-width: 650px) {
    
    .area-guides .swiper-slide { text-decoration: none; }
    .area-guides .swiper-slide { height: auto; padding: 250px 0 150px 0; }
    .area-guides .swiper-slide .area { display: block; position: absolute; left: 0; top: 0; right: 0; }
    .area-guides .swiper-slide .content { left: 20px; right: 20px; bottom: 30px; }
    
    /*
     * Subpages
     */
    
    .general-content section.two-image .col { float: none; width: 100%; padding-bottom: 70%; }
    .general-content section.two-image .col + .col { margin: 10px 0 0 0; }
    .general-content section.collage .left { float: none; width: 100%; padding-bottom: 70%; }
    .general-content section.collage .right { position: relative; width: 100%; right: auto; top: auto; bottom: auto; margin: 10px 0 0 0; }
    .general-content section.collage .right .row { display: block; height: auto; padding-bottom: 70%; }
    .general-content section.collage .right .row + .row { margin-top: 10px; }
    
    .page-job-list .content-wrapper .job-item h3 span { display: block; }
    
    .page-job-chosen .gfield-left, .page-job-chosen .gfield-right { float: none !important; width: 100%; }
    .page-job-chosen .lvp-newsletter { position: relative; bottom: auto; }
    .page-job-chosen .gfield_checkbox li label { max-width: 100%; }
    .page-job-chosen .first-row-1 { position: relative; }
    .page-job-chosen .first-row-2 { margin-left: 0; float: none; width: 100%; padding-top: 20px; }
    .page-job-chosen .first-row-3 { float: none; width: 100%; padding-top: 20px; }
    .page-job-chosen .gfield .checkbox { top: 0; }
    .page-job-chosen .gform_footer button { float: none; display: block; width: 100%; padding: 15px; }
    
    .page-contact .contact-wrapper .left { padding: 15px; }
    .page-contact .contact-wrapper .left .gfield-left { float: none; width: 100%; }
    .page-contact .contact-wrapper .left .gfield-right { float: none; width: 100%; }
    .page-contact .contact-wrapper .left .lvp-newsletter { position: relative; bottom: 0; }
    .page-contact .contact-wrapper .left .lvp-newsletter .gfield_label { display: none; }
    .page-contact .contact-wrapper .left .lvp-newsletter .ginput_container { padding-top: 0; }
    .page-contact .contact-wrapper .left .gfield_checkbox li label { max-width: 100%; }
    .page-contact .contact-wrapper .left .gfield .checkbox { top: 0; }
    .page-contact .contact-wrapper .left .gform_footer button { float: none; display: block; width: 100%; padding: 15px; }
    
    .property-container .content .details-list ul { width: 100%; }
     .property-container .content .details-list ul + ul { margin: 10px 0 0 0; }
     .property-container .content .description p.intro { font-size: 24px; line-height: 28px; }
    
}


@media(max-width: 600px)
{		
    .page-area-guides .area-wrapper .item { float: none; width: 100%; margin: 20px 0 0 0 !important; padding-bottom: 55%; }
    .page-area-guides .area-wrapper .item:first-child { margin-top: 0 !important; }
    
    .page-contact .contact-wrapper .right .item .content { left: 15px; right: 15px; bottom: 15px; }
    .page-contact .contact-wrapper .right .item .content .text { position: relative; right: 0; bottom: auto; }
    .page-contact .contact-wrapper .right .item .content .button { position: relative; bottom: auto; margin-top: 10px; }
    
    .page-property-chosen .navigation .back { float: none; text-align: center; }
    .page-property-chosen .navigation .back a { display: inline-block; }
    .page-property-chosen .navigation .contact { float: none; margin-top: 10px; text-align: center; }
    .page-property-chosen .navigation .contact ul { display: inline-block; }
    .page-property-chosen .heading .left { text-align: center; }
    .page-property-chosen .heading .left .details .price { float: none; }
    .page-property-chosen .heading .left .details .location { float: none; margin: 3px 0 0 0; }
    .page-property-chosen .heading .right .book-button { display: block; padding: 15px; text-align: center; }

    .page-template-page-fees .packages thead { font-size:20px; }
    .page-template-page-fees .packages .props-col.head { padding:20px 0; }
    .page-template-page-fees .packages .package-col { display:none; }
    .page-template-page-fees .packages .props-col .prop-packages { display:block; }
    
    .instagram .images .img { width: 50%; }
    .instagram .images .img.large { width: 100%;}	
}


@media (max-width: 530px)
{		
    header { padding: 20px 0 20px 0; }
    header.tiny { padding: 20px 0 20px 0; }
    header.fixed-open { -webkit-transform: translate3d(300px, 0px, 0px); transform: translate3d(300px, 0px, 0px); }
    header .left { margin-top: 3px; }
    header .right { position: relative; top: 4px; }		
    header .right .logo { max-width: 79px; }
    .slideout-menu { width: 300px; padding: 20px 30px 30px 30px; }
    .slideout-menu .close { top: 24px; right: 15px; }
    
    .home-hero .content { padding: 110px 25px 100px 25px; }
    .home-hero .content h1 { font-size: 39px; line-height: 43px; }
    .home-hero .content .buttons a { display: block; margin-right: 0; }
    
    .featured-boxes.featured-boxes-home { padding-top: 40px; }
    .featured-boxes.featured-boxes-home .wrapper { margin-top: 40px; }
    .featured-boxes.featured-boxes-home .wrapper .col .item.single .content { left: 18px; right: 18px;}
    .featured-boxes .wrapper .col .item.single .content { bottom: 15px; left: 15px; }
    .featured-boxes .wrapper .col .item.double { height: auto; padding: 100px 0 90px 0; } 
    .featured-boxes .wrapper .col .item.single .content h3 br { display: none; }
    
    .home-voted-best { margin-top: 40px; }
    
    .home-property-value { padding: 80px 0 70px 0; }
    
    .home-testimonials .footer .title { font-size: 34px; line-height: 38px; text-align: center; }
    .home-testimonials .footer .title span { display: block;}
    .home-testimonials .footer .title .stars { display: inline-block; margin: 12px auto 5px auto; }
    .home-testimonials .footer .link { margin-top: 20px; }
    .home-testimonials .footer .link a img { display: block; top: auto; margin: 0 auto; padding-top: 6px; }
    
    .home-differences .wrapper .row .col .text { font-size: 22px; line-height: 24px; }
    .home-differences .wrapper .row .left, .home-differences .wrapper .row .right { padding-right: 170px; }
    
    .home-stats { padding-top: 40px; padding-bottom: 40px; }
    .home-stats .section-title { font-size: 35px; padding-bottom: 25px; }
    .home-stats .item { float: left; display: block; width: 48%; height: auto; border-radius: 0px; box-shadow: 2px 2px 0px #e5e6e6; padding: 15px 0; margin: 15px 0px 0px 0px; overflow: visible; }
    .home-stats .item:nth-child(even) { float: right; }
    .home-stats .item .value { font-size: 55px; line-height: 55px;}
    .home-stats .item .label { font-size: 15px; line-height: 20px; padding-top: 4px; }
    
    .discover-more { padding: 40px 0 50px 0; }
    .discover-more .wrapper { padding: 0 10px; }
    .discover-more .wrapper .item .icon { float: none; margin: 0 auto; width: auto; }
    .discover-more .wrapper .item .icon svg { position: relative; margin: 0 auto; display: block; }
    .discover-more .wrapper .item .text { padding-top: 20px; text-align: center; }
    .discover-more .wrapper .item .text p { padding-top: 15px; }
    
    .area-guides .swiper-slide { padding: 150px 0 100px 0; }
    .area-guides .swiper-slide .content { position: relative; left: auto; right: auto; bottom: auto; padding: 0 30px; box-sizing: border-box; }
    
    .home-social { padding: 50px 0 55px 0; }
    .home-social .item { width: 100% !important; }
    .home-social .item:nth-child(n+2) { margin-top: 40px; }
    .home-social .item:nth-child(3) { clear: left; }
    .home-social .section-title span { display: block; line-height: 10px; padding: 0 0 10px 0; }
    
    .home-news { padding: 50px 0 40px 0; }
    .home-news .item .col.text { padding: 30px 20px; }
    .home-news .item .col.text h3 { font-size: 26px; line-height: 26px; }
    .home-news .footer { margin-top: 40px; }				
    
    .section-newsletter .gform_title { font-size: 34px; line-height: 38px; }
    .section-newsletter .gform_body { padding: 0; }
    .section-newsletter .gfield { float: none; width: 100%; margin: 20px 0 0 0; }
    .section-newsletter .gfield:first-child { margin-top: 0; }
    .section-newsletter .gform_footer { position: relative; margin-top: 20px; }
    .section-newsletter .gform_footer button { width: 100%; }
    .section-newsletter .gform_footer button:hover { background-position: center center; }
    
    footer .left .top .details nav ul li { float: none; margin-top: 5px; }
    footer .left .top .details nav ul li:first-child { margin-top: 0; }
    footer .left .top .details nav ul li::before { display: none; }
    footer .left .top .copyright { margin-top: 15px; }
    footer .left .top .office { padding: 0 10px; box-sizing: border-box; }
    footer .right .awards img { height: 85px; }
    
    /*
     * Subpages
     */
     
     .page-header { height: auto; padding: 120px 20px 100px 20px; box-sizing: border-box; }
     .page-header .content { margin-top: 0; }
     .page-header .content h1 { font-size: 40px; line-height: 44px; }
     .page-header .content p { font-size: 19px; line-height: 21px; }
     .page-header .content h1 + .buttons { margin-top: 8px; }
     .page-header .content p + .buttons { margin-top: 8px; }
     .page-header .content .buttons a { margin: 10px 2px 0 2px !important; }
     
     .content-container .sidebar { margin-top: 35px; }
     .content-container { padding: 40px 0 60px 0; }
     .content-container .container { width: 92%; }
     .general-content section + section { margin-top: 30px; }
     .general-content section.two-image + section.text, .general-content section.collage + section.text { margin-top: 35px; }
     
     .widget-news .item .image { height: 146px; padding-bottom: 0; }
     
     .section-message { padding: 50px 0 60px 0; }
     .section-message h3 { font-size: 40px; line-height: 40px; }
     
     .page-area-guides .area-wrapper .item .title { left: 10px; bottom: 10px; font-size: 18px; line-height: 22px; padding: 5px; }
     
     .page-blog .blogpost-wrapper .item .image { padding-bottom: 50%; }
     .page-blog .blogpost-wrapper .item .text { padding: 15px; }
     
     .page-blog-chosen .blogpost .heading .title { font-size: 33px; line-height: 33px; }
     .page-blog-chosen .blogpost .heading .details li { font-size: 17px; line-height: 21px; }
     
     .page-desc h2 { font-size: 38px; line-height: 34px; }
     
     .services-boxes { margin-top: 40px; }
     .page-sales .services-boxes { margin-top: 40px; }
     .services-boxes .box, .services-boxes .box.small-padding { padding: 30px 0; }
     .services-boxes .box.big-padding { padding: 60px 0 50px 0; }
     .services-boxes .box .general-content { max-width: 94%;}
     
     .team-details .right { padding-bottom: 0px;}
     .team-details .right .details h2 { font-size: 38px; line-height: 34px; }
     
     .page-job-list .content-head { padding: 20px 10px 15px 10px; text-align: center; }
     .page-job-list .content-wrapper .job-item { padding: 15px 20px; }
     
     .page-job-chosen .content-head { padding: 20px 10px 15px 10px; }
     .page-job-chosen .content-head .list li { font-size: 17px; line-height: 21px; }
     
     .valuation-header { padding: 100px 0 50px 0; }
     .valuation-header .content h1 { font-size: 34px; line-height: 38px; }
     .valuation-header .slogan { margin-top: 60px; }
     .valuation-header .col .icon svg { max-width: 80px; }
     .valuation-header .col .text { margin-top: 10px; }
     .valuation-header .col .icon:before { width: 115px; height: 115px; }
     
     .page-job-chosen .apply-wrapper { padding: 20px 15px; }

     body.fixed-header .slideout-panel { padding-top: 69px; }
     
     .property-container .content { padding: 15px; }
     .property-container .content .description { margin-top: 30px; }
     .property-container .content .description ul li strong { display: block; width: 100%; }
     .property-container .content .description p.intro { font-size: 22px; line-height: 26px; }
     .property-container .content .download { margin-top: 30px; }
     
     .popular-searches .wrapper a { display: block; padding: 12px 12px 14px 12px; }
     .popular-searches .title { font-size: 24px; line-height: 28px; }
     .popular-searches .wrapper { margin-top: 25px; }
     
     .page-property-chosen .tabs-nav li { width: calc(50% - 5px); box-sizing: border-box; margin-bottom: 10px; border: 1px solid #e1e1e1 !important; }
     .page-property-chosen .tabs-nav li:nth-child(even) { margin-left: 10px; }
     .page-property-chosen .tabs-nav li:nth-child(3) { clear: left; }
    
    .popup-search .choice span { display: block; }
    .popup-search .choice > div { float: left; width: 50%; margin-left: 0px !important; }
    .popup-search .cols { margin-top: 15px; }
    .popup-search .cols .col { width: 47.5%; }
    .popup-search .cols .col + .col { margin-left: 5%; margin-bottom: 15px; }
    .popup-search .cols .col:last-child { width: 100%; margin-left: 0px; margin-bottom: 0px; }

    .page-template-page-fees .banner { display:flex; align-items:center; justify-content:center; text-align:center; }
    .page-template-page-fees .banner .text { width:auto; height:auto; }
    .page-template-page-fees .banner .text .title .logo { margin:0 auto 10px auto; }
    .page-template-page-fees .banner .text .title,
    .page-template-page-fees .banner .text .subtitle { position:relative; left:unset; top:unset; bottom:unset; }
    .page-template-page-fees .banner .text .title { margin:0 0 50px 0; }
}


@media (max-width: 480px)
{		
    .popup-wrapper.background--gray .popup .form-wrapper { margin-top: 120px; }
    
    .popup-contact-form .text { margin: 120px 0; }
    .popup-contact-form .form-wrapper { margin: 50px 0 150px 0; }
    .popup-contact-form .close { top: 70px; }
    .popup-contact-form .gform_footer { margin-top: 40px; }
    
    .home-hero .background:before { background: rgba(0, 0, 0, 0.45); }
    .home-hero .content { padding: 110px 15px 50px 15px; }
    .home-hero .content h1 { font-size: 31px; line-height: 33px; }
    .home-hero .content h3 { font-size: 17px; line-height: 23px; padding-top: 20px; }
    .home-hero .content .buttons { margin-top: 25px; }
    .home-hero .content .buttons a { font-size: 15px; line-height: 17px; }
    .home-hero h2 { font-size: 15px; line-height: 18px; margin-top: 25px; }
    .home-hero .scroll-icon { bottom: 50px; }
            
    .home-testimonials { padding-top: 60px; }
    .home-testimonials .heading h3 { padding: 0 20px; box-sizing: border-box; }
    .home-testimonials .heading h3 span { display: block; top: auto; margin: 10px auto 6px auto; width: 45px; height: 45px; background-size: contain; }
    .home-testimonials .heading p { font-size: 19px; line-height: 23px; }
    .home-testimonials .heading p span { padding: 20px 10px 0 10px; box-sizing: border-box; }
    .home-testimonials .wrapper { margin-top: 50px; }
    
    .home-differences .heading .versus { font-size: 30px; line-height: 34px; }
    .home-differences .heading .versus img { width: 100%; }
    .home-differences .heading .versus .icon span { top: auto; }
    
    .home-stats .section-title span { display: block; }
    
    .discover-more { padding: 40px 0; }
    .discover-more .wrapper { margin-top: 40px; }
    .discover-more .wrapper .item .text h2 { font-size: 26px; }
    
    .meet-team .right h4 { font-size: 40px; line-height: 44px; }
    
    /*
     * Subpages
     */
    
    .general-content h2 { font-size: 18px; }
    .services-boxes .box .general-content h2 { font-size: 21px; line-height: 26px; }
    .general-content p { margin-top: 20px; }
    .general-content > section.text:first-child > h2:first-child + p { margin-top: 20px; }
    .general-content section.accordion div p:last-child { padding-bottom: 15px; }
    
    .content-container { padding: 30px 0; }
    
    .team-details .right .details .buttons a { display: block; padding: 15px 20px 13px 20px; }
    .team-details .right .details .buttons a + a { margin: 10px 0 0 0; }

    .page-template-page-fees .banner .text .title h2 { font-size:38px; }
    .page-template-page-fees .banner .text .subtitle h3 { font-size:28px; }
    
}
    
@media (max-width: 400px)
{		
    .featured-boxes .wrapper .col .item.single .content h3 { font-size: 23px; line-height: 22px;  }
    .featured-boxes .wrapper .col .item.single .content h3 strong { font-size: 28px;  }
    .featured-boxes .wrapper .col .item.double { padding: 60px 0 50px 0; } 
    
    .home-voted-best { padding: 40px 0; }
    .home-voted-best .content h2 { font-size: 44px; line-height: 46px; }
    .home-voted-best .content p { padding: 0 20px; box-sizing: border-box; font-size: 19px; }
    
    .home-property-value { padding: 60px 0; }
    .home-property-value .content h3 { font-size: 32px; line-height: 30px; }
    
    .home-social { padding: 50px 0 45px 0; }
    
    .home-differences { padding-bottom: 20px; }
    .home-differences .wrapper .row .container { width: 100%; }
    .home-differences .wrapper .row .col { height: auto; min-height: 150px; display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; -webkit-justify-content: center; justify-content: center; padding: 20px 170px 20px 20px !important; }
    .home-differences .wrapper .row .left { border-radius: 0 !important; }
    .home-differences .wrapper .row .left .icon { top: 50%; transform: translatey(-50%) !important; -moz-transform: translatey(-50%) !important; -webkit-transform: translatey(-50%) !important; }
    .home-differences .wrapper .row .col .text { font-size: 20px; line-height: 23px; }
    
    /*
     * Subpages
     */
     
     .page-header { padding: 100px 20px 70px 20px; }
     .page-header .content h1 { font-size: 36px; line-height: 40px; }
     .page-header .content p { margin-top: 10px; font-size: 18px; line-height: 20px; }
     
     .section-message { padding: 40px 0 50px 0; }
     .section-message h3 { padding: 0 20px; box-sizing: border-box; font-size: 36px; line-height: 34px; }
     .section-message p { font-size: 21px; }
     
     .page-blog-chosen .blogpost .heading .title { font-size: 31px; line-height: 31px; }
     
     .featured-boxes { padding-top: 30px; }
     .page-desc h2 { font-size: 34px; line-height: 30px; }
     .page-desc p { margin-top: 20px; font-size: 18px; line-height: 28px; }
     
     .pagination { margin-top: 35px; }
     
     .services-boxes .box.big-padding { padding: 40px 0 30px 0; }
     
     .page-property-list .list-item .details { padding: 14px 18px; }
     .page-property-list .list-item .details .buttons a { font-size: 15px; line-height: 20px; }
     .page-property-list .list-item .details .buttons a.contact-us { padding-left: 10px; margin-left: 5px; }
     .page-property-list .list-item .details .buttons a.contact-us::before { top: 3px; }
     .page-property-list .list-item .details .buttons a span { margin-left: 7px; }
     
     .swiper-container.ps-thumbs { padding: 5px; }
     
     .page-property-chosen .navigation .contact ul li::before { position: relative; top: -1px; }
     .page-property-chosen .navigation .contact ul li { font-size: 14px; }	

    .page-template-page-fees .banner .text .title h2 { font-size:32px; }
    .page-template-page-fees .banner .text .subtitle h3 { font-size:24px; }
}

@media (max-width: 370px)
{
    /*header .contact { display: none; }*/

    .page-template-page-fees .packages .props-col .prop-packages { border-top:0; }
    .page-template-page-fees .packages .props-col .prop-packages .package { float:none; width:100%; border-bottom:1px solid #ebebeb; }
    .page-template-page-fees .packages .props-col .prop-packages .package:last-child { border-bottom:0; }
    .page-template-page-fees .packages .props-col .prop-packages .package .plus { display:block; margin:5px 0; }
}

@media (max-width: 360px)
{	
    .widget-share .widget-content ul li, .swidget-share .widget-content ul li { margin-left: 10px; }	
    .widget-share .widget-content ul li a, .swidget-share .widget-content ul li a { width: 50px; height: 50px; font-size: 22px; }		
    
    .page-property-chosen .tabs-nav li a { padding-left: 12px; padding-right: 12px; }
}

@media (max-height: 500px)
{
    .home-hero .scroll-icon { bottom: 45px; }
}

/* ===========Review Section========================== */
section.home-reviews{
	background-color: #44454F;
	padding: 130px 0 60px;
	margin-top: 50px;
}
.heading_images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.commonAward{
	flex: 0 49%;
	background-color: #fff;	
	border-bottom: 12px solid #44454f;
	text-align: center;
}
.Award_main{
	position: relative;
}
.map_images {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0px);
}
.commonAward img{
	max-width: 330px;
    margin-top: -70px;
}
.map_images img {
    max-width: 210px;
}
.Icon_Section{
	display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
	margin-top: 30px;
	padding: 0 20px;
	margin-bottom: 20px;
}
.Icon_iinner{
	flex: 0 32%;
	margin-bottom: 10px;
}
.Icon_iinner h4 {
    font-size: 16px;
    color: #2e485a;
    text-transform: uppercase;
	min-height: 40px;
}
.Icon_iinner img{
	margin-top: 0;
	max-width: unset;
}
.Icon_iinner p {
    font-size: 15px;
    color: #2e485a;
    min-height: 80px;
    margin-top: 10px;
}
.Icon_iinner img {
    max-width: 90px;
}
.fade-in-bottom0, .fade-in-bottom1, .fade-in-bottom2{
    opacity: 0;
}
.scrolled.fade-in-bottom0 {
    animation: fade-in-bottom1 1s ease-in-out both;
}

.scrolled.fade-in-bottom1 {
    animation: fade-in-bottom2 1.5s ease-in-out both;
}
section.home-differences {
    display: none;
}
.fade-top-top {
	opacity: 0;
}
.scrolled.myAnim{
	animation: myAnim 1s ease-in-out both;
}

/*============Property CheckBox Custom Design=============*/
.PropertyCheckBox .form-group {
	display: block;
	margin-bottom: 15px;
  }
  .PropertyCheckBox {
	margin: 20px 0 25px 0;
  }
  .PropertyCheckBox .form-group input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
  }
  
  .PropertyCheckBox .form-group label {
	position: relative;
	cursor: pointer;
	font-size: 17px;
    font-weight: 400;
    line-height: 18px;
	letter-spacing: 0.025em;
    color: #44454F;
	text-transform: unset;
  }
  
  .PropertyCheckBox .form-group label:before {
	content:'';
	-webkit-appearance: none;
	background-color: transparent;
	border: 2px solid #708a9c;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
	padding: 10px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 5px;
  }
  
  .PropertyCheckBox .form-group input:checked + label:after {
	content: '';
	display: block;
	position: absolute;
	top: 2px;
	left: 9px;
	width: 6px;
	height: 14px;
	border: solid #708a9c;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
  }
.collapse_head{
	margin-top: 20px;
}
.Hide_filter{
	display: none;
}
.Hide_filter.OpenFilter{
	display: block;
}
.downArrow svg {
    transform: rotate(90deg);
}
  /* ==================End Property checkbox Design======================== */
@keyframes myAnim {
	0% {
        -webkit-transform: translateY(-250px);
        transform: translateY(-250px);
        opacity: 0;
    }
	100% {
		opacity: 1;
		transform: translateY(0);
		-webkit-transform: translateY(0);
	}
}
@keyframes fade-in-bottom1 {
    0% {
        -webkit-transform: translateY(150px);
        transform: translateY(150px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in-bottom2 {
    0% {
        -webkit-transform: translateY(200px);
        transform: translateY(200px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@media (max-width: 1270px){
	.commonAward {
    	min-height: 770px;
	}
}
@media (max-width: 1180px){
	.commonAward img {
		max-width: 250px;
	}
	.map_images img {
		max-width: 183px;
	}
}
@media (max-width: 1024px){
	.Icon_iinner {
		flex: 0 48%;
		margin-bottom: 10px;
	}
	.scrolled.fade-in-bottom0 {
		animation: fade-in-bottom1 1s ease-in-out both;
	}
	
	.scrolled.fade-in-bottom1 {
		animation: fade-in-bottom2 1s ease-in-out both;
	}
	.Icon_iinner img {
		max-width: 80px !important;
	}
	.Icon_iinner h4 {
    	font-size: 14px;
	}
	.map_images img {
   	 	max-width: 133px;
	}
	.commonAward img {
   	 	max-width: 200px;
	}
	.Icon_iinner p {
    	font-size: 13px;
	}
	.commonAward {
    min-height: unset;
}
}
@media (max-width: 800px){
	.map_images img {
		max-width: 143px;
	}
	.commonAward img {
		max-width: 190px;
	}
	.Icon_iinner img {
		max-width: 80px !important;
	}
	
}
@media (max-width: 767px){
	.commonAward {
		flex: 0 100%;
	}
	.Icon_iinner {
		flex: 0 32%;
		margin-bottom: 10px;
	}
	.repeater_landlords.commonAward {
		margin-bottom: 100px;
	}
	.map_images{
		display: none;
	}
}
@media (max-width: 575px){
	.Icon_iinner {
		flex: 0 48%;
		margin-bottom: 10px;
	}
}
@media (max-width: 350px){
	header .left a, header .mobile-trigger{
		width: 40px;
		height: 40px;
	}
	header .left a svg {
		position: relative;
		width: 16px;
		height: 16px;
	}
	header .mobile-trigger .alt svg {
    	width: 15px;
    	height: 15px;
	}
}

/* ===============Award Section======================= */
.award_logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
	    flex-wrap: wrap;
}
.award_logoBox {
    flex: 0 0 16.6666%;
}
.award_logoBox a{
	display:inline-block;
	width:100%;
}
.award_logoBox img {
    max-width: 85%;
}
@media (max-width: 575px){
	.award_logoBox {
   		flex: 0 0 33.3333%;
	}
	.award_logos {
    	margin: 22px 0 0;
	}
}



/* ===========Landing Page========================== */

.landing-container {
    width: 94%;
    max-width: 1374px;
    margin: 0 auto;
    box-sizing: border-box;
}

.landing-container .contact {
    margin-top: 6px;
}


.landing-left {
    float: left;
}
.landing-right {
    float: right;
}
.landing-left .mobile {
    display: none;
}
.landing-right .contact span {
    font-weight: 600;
    font-size: 40px;
    margin-top: 7px;
    letter-spacing: 0px;
    margin-left: 10px;
}

.landing-hero button {
    position: absolute;
    bottom: 130px;
}
.landing-hero .swiper-slide {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.81) 0%, rgba(123, 147, 164, 0.72) 26.56%, rgba(123, 147, 164, 0.00) 100%);
}
.landing-hero-content {
    width: 900px;
    transform: translateY(-70px);
}
.landing-hero h1 {
    color: #fff;
    font-size: 71px;
    font-weight: 600;
    line-height: 90px;
    margin-bottom: 60px;
}
.landing-hero h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
}





.steps-section {
    padding: 50px 0px;
}
.steps-container {
    display: flex;
      justify-content: center;
      max-width: 1160px;
      margin: 0 auto;
      padding-bottom: 40px;
  }
  .step {
    width: 33.33%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .step img {
    padding-bottom: 20px;
  }
  .step h4 {
    color: #E41D39;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
  }
  .step h5 {
    font-size: 22px;
    padding: 8px 0px;
  }
  .step p {
    font-size: 18px;
  }
  
  
  
  
  
  
  
  
  
  
  .full-width-section {
    background-color: #ab1d38;
    padding: 60px;
  }
  .full-width-container {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .full-width-container h3 {
    width: 60%;
    color: #fff;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 45px;
  }
  .free-valuation-btn {
    background-color: transparent;
    border: 3px solid #fff;
    border-radius: 12px;
    color: #fff;
    padding: 14px 62px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2.5px;
    cursor: pointer;
    transition: all ease-in 0.3s;
  }
  .free-valuation-btn:hover {
    background-color: #e41d39;
    font-size: 25px;
    border: 3px solid #e41d39;
  }
  .white-btn:hover {
    background-color: #fff;
    color: #e41d39;
    font-size: 25px;
    border: 3px solid #fff;
  }
  .popup-form .popup-btn{
    cursor: pointer;
    transition: all ease-in 0.3s;
  }
  .popup-form .popup-btn:hover {
    background-color: #e41d39;
    color: #fff;
    border: 3px solid #e41d39;
  }
  
  
  .stepper-container {
    max-width: 1120px;
    margin: 0 auto 100px auto;
  }
  
  .stepper-container h2 {
    width: 80%;
    font-size: 43px;
    font-weight: 600;
    margin: 0 auto;
    padding: 80px 0px;
    line-height: 50px;
  }
  .stepper-p {
    font-size: 25px;
    padding: 0px 40px;
  }
  
  .stepper-container {
    text-align: center;
  }
  .stepper-container button {
    background-color: #e41d39;
  }
  
  .stepper{
    max-width: 1080px;
    margin: 50px auto 80px auto;
    position: relative;
  }
  .stepper .center-line{
    position: absolute;
    height: 73%;
    width: 5px;
    background: #7b93a4;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
  }
  .stepper .row{
    display: flex;
  }
  .stepper .row-1{
    justify-content: flex-start;
    text-align: right;
  }
  .stepper .row-2{
    justify-content: flex-end;
    text-align: left;
  }
  .stepper .row section{
    width: calc(50% - 40px);
    position: relative;
  }
  
  .row section img{
    position: absolute;
  }
  .row-1 section img{
    top: 50%;
    right: -70px;
    transform: translateY(-50%);
  }
  .row-2 section img{
    top: 50%;
    left: -70px;
    transform: translateY(-50%);
  }
  .row section p{
    margin: 10px 0 17px 0;
    font-size: 22px;
  }
  


/* ===========Popup Forme========================== */

.popup-form {
    display: none;
    position: fixed;
    width: 630px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px 80px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 9999;
  }
  
  .popup-form h2 {
    text-align: center;
    padding: 40px 0px 30px 0px;
    color: #000;
    font-family: Source Sans Pro;
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
  }
  .popup-form h2 span{
    text-transform: uppercase;
    font-weight: 700;
    color: #AB1D38;
  }
  .popup-form button {
    background-color: transparent;
    color: #E41D39;
    border-radius: 11px;
    border: 3px solid #E41D39;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 14px 40px;
  }
  
  .popup-form .close-form {
    position: absolute;
    top: -20px;
    right: -20px;
    cursor: pointer;
  }
  
  .popup-form .form-row {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .popup-form input {
    width: 50%;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.80);
    color: rgba(68, 69, 79, 0.66);
    font-size: 15px;
    font-weight: 400;
  }
  
  .popup-form button {
    display: block;
    margin-top: 10px;
  }
  .last-row {
    width: 43%!important;
    margin-right: 20px;
  }
  .popup-form select {
    width: 50%;
    color: rgba(68, 69, 79, 0.66);
    font-size: 15px;
    font-weight: 400;
    padding: 20px;
  }
  .form-row .select-icon {
    position: absolute;
      right: 20px;
      top: 25px;
      pointer-events: none;
  }
  .form-row input:first-child {
    margin-right: 20px;
  }
  
  .popup-form textarea {
    height: 120px;
    padding: 20px;
    margin-bottom: 15px;
  
  }
  .popup-form textarea::placeholder {
    color: rgba(68, 69, 79, 0.66);
    font-size: 16px;
    font-weight: 400;
  }
  
  
  /* Stil za zatamnjenje pozadine */
  .landing-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Zatamnjenje sa providnošću 0.7 */
    z-index: 9998; /* Manje od z-index vrednosti pop-up forme */
  }




.popup-form .sbHolder {
    display: none;
}
.popup-form #show-select {
    display: block!important;
    cursor: pointer;
}








  @media (max-width: 767px) {
    .landing-hero {
        height: 670px!important;
    }
    .landing-hero .swiper-slide {
        display: flex;
    }
    .landing-hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .landing-hero h1 {
        font-size: 50px;
        line-height: 60px;
    }
    .landing-hero h3 {
        font-size: 27px;
    }
    .landing-left .mobile {
        display: block;
    }
    .landing-left .desktop {
        display: none;
    }
    .full-width-container h3 {
        font-size: 27px;
        line-height: 39px;
    }
    .free-valuation-btn {
        padding: 12px 47px;
        font-size: 20px;
    }
    .steps-container {
        flex-direction: column;
    }
    .step {
        width: 80%;
        margin: auto;
        }
    .stepper-container h2{
        font-size: 36px;
        padding: 70px 0px;
        line-height: 40px;
    }
    .stepper-p {
        font-size: 22px;
    }
    .row section p {
        font-size: 19px;
    }
    .full-width-container {
        flex-direction: column;
    }    
    .full-width-container h3 {
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
  }

  @media (max-width: 912px) {
    .popup-form {
        width: 500px;
        padding: 20px 50px;
    }
  }

  @media (max-width: 650px) {
    .popup-form {
        width: 400px;
        padding: 20px 25px;
    }
  }

  @media (max-width: 500px) {
    .popup-form {
        width: 300px;
        padding: 20px 25px;
    }
    .popup-form .form-row {
        margin-bottom: 0px;
        flex-direction: column;
    }
    .popup-form input {
        width: 90%;
        padding: 20px;
    }
    .last-row {
        width: 90%!important;
    }
    .popup-form textarea {
        height: 90px;
        width: 90%!important;
    }
    .popup-form select {
        width: 102%;
    }
    .form-row .select-icon {
        top: 85px;
    }
  }