@import url('https://fonts.googleapis.com/css2?family=Livvic:wght@300;400;500;600;700;900&display=swap'); 

body{
    font-family: 'Livvic', sans-serif;
}

header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    border-bottom: 1px solid rgba(255 255 255 / 15%);
    transition: all 0.3s;
}

.header__sticky.sticky{
    position: fixed;
    animation: fadeUp 0.3s 1 linear;
    background-color: #000;
}

@keyframes fadeUp {
    0% {
      opacity: 0;
      -webkit-transform: translateY(50px);
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
}

nav{
    padding: 20px 0 !important;
}

.navbar-brand img{
    width: 190px;
    height: 69px;
}

.nav-link{
    color: #fff;
    padding: 0 20px !important;
    font-weight: 500;
}

.nav-link.active,
.nav-link:hover{
    color: #a39161 !important;
}

.navCallBtn{
    display: block;
    background: #a39161 url(images/phone-call.png) 25px center/20px no-repeat;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 25px 12px 50px;
    transition: all 0.3s;
}

.navCallBtn:hover{
    color: #a39161;
    background-color: #fff;
    background-image: url(images/phone-call-colored.png);
}

.bannerSecWrap .bannerImgs{
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 700px;
    display: flex;
    align-items: center;
}

.bannerSecWrap .bannerImg1{
    background-image: linear-gradient(90deg, rgba(0 0 0 / 80%),rgba(0 0 0 / 40%)), url(images/banner-1.jpg);
}
.bannerSecWrap .bannerImg2{
    background-image: linear-gradient(90deg, rgba(0 0 0 / 80%),rgba(0 0 0 / 40%)), url(images/banner-2.jpg);
}
.bannerSecWrap .bannerImg3{
    background-image: linear-gradient(90deg, rgba(0 0 0 / 80%),rgba(0 0 0 / 40%)), url(images/banner-3.jpg);
}

.bannercontent .wrap p{
    color: #a39161;
    font-weight: 600;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.5s;
    transition-delay: 0.5s;
}

.carousel-item.active .bannercontent .wrap p{
    transform: translateY(0);
    opacity: 1;
}

.bannercontent .wrap p span{
    display: block;
    width: 80px;
    height: 2px;
    background: rgba(255 255 255 / 40%);
}

.bannercontent h2{
    font-size: 80px;
    font-weight: 600;
    color: #fff;
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.5s;
}

.carousel-item.active .bannercontent h2{
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.bannercontent .bannerLastPara{
    color: #fff;
    font-size: 22px;
    width: 50%;
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.5s;
    /* animation: fadeDown 0.5s 1 linear; */
}

.carousel-item.active .bannercontent .bannerLastPara{
    transform: translateY(0);
    opacity: 1;
}

.carouselNavWrap{
    display: flex;
    align-items: center;
    gap: 50px;
    position: absolute;
    bottom: 170px;
    left: 15px;
}

.carousel-control-next, .carousel-control-prev{
    position: relative;
    border: 1px solid #a39161;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    opacity: 0.6;
    transition: all 0.3s;
}

.carousel-control-next img,
.carousel-control-prev img{
    width: 20px;
}

.carousel-control-next img{
    transform: rotate(180deg);
}

.carousel-control-next:hover,
.carousel-control-prev:hover{
    background-color: #a39161;
}

.carousel-control-next:hover img,
.carousel-control-prev:hover img{
    filter: brightness(0);
}

.carousel-indicators{
    position: relative;
    margin: 0;
}

.carousel-indicators [data-bs-target]{
    margin: 0;
    width: 90px;
    border: none;
    transition: none;
}

.carousel-indicators .active{
    background-color: #a39161;
}

@keyframes fadeDown {
    0% {
      opacity: 0;
      -webkit-transform: translateY(-100px);
      transform: translateY(-100px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
}

.apartmentTypeWrap{
    padding: 80px 0;
}

.apartmentTypeWrap .boxes{
    text-align: center;
    padding: 30px 25px;
    border-radius: 50px;
    border: 1px solid  transparent;
    transition: all 0.3s; 
}

.apartmentTypeWrap .boxes:hover{
    border-color: #a39161;
}

.apartmentTypeWrap .boxes .icon{
    background: rgba(0 0 0 / 5%);
    width: fit-content;
    margin: auto;
    padding: 28px;
    border-radius: 50%;
}

.apartmentTypeWrap .boxes .icon img{
    width: 45px;
    height: 45px;
    opacity: 0.8;
    filter: brightness(0);
    transition: all 0.3s;
}

.apartmentTypeWrap .boxes:hover .icon img{
    filter: brightness(1);
    opacity: 1;
}

.apartmentTypeWrap .boxes .txt h2{
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 22px;
}

.apartmentTypeWrap .boxes .txt span{
    font-size: 14px;
}

.secHeading{
    margin-bottom: 35px;
}

.secHeading h2{
    font-size: 40px;
    font-weight: 700;
}

.secHeading p{
    margin-bottom: 0;
}

.homePageAboutWrap{
    padding: 80px 0;
    background: #f4f4f9;
}

.homePageAboutWrap span{
    color: #a39161;
    font-size: 18px;
    font-weight: 500;
}

.homePageAboutWrap h2{
    font-size: 40px;
    font-weight: 600;
}

.homePageAboutWrap h3{
    font-size: 20px;
    margin-top: 25px;
}

.homePageAboutWrap p{
    font-size: 17px;
}

.homePageAboutWrap .imgsWrapper{
    position: relative;
}

.homePageAboutWrap .imgsWrapper .aboutImgs{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}

.homePageAboutWrap .imgsWrapper .aboutImg_1{
    background-image: url(images/aboutImg_1.jpg);
    width: 80%;
    height: 400px;
    margin-left: auto;
}

.homePageAboutWrap .imgsWrapper .aboutImg_2{
    background-image: url(images/aboutImg_2.jpg);
    position: absolute;
    width: 40%;
    bottom: -55px;
    left: 0;
    height: 200px;
}

.popularPlacesWrap{
    padding: 80px 0;
}

.popularPlacesWrap .leftCol{
    overflow: hidden;
}

.popularPlacesWrap .imgWrap{
    position: relative;
    background: linear-gradient(to top, rgba(0 0 0 / 70%),rgba(0 0 0 / 0%)), url(images/kensington.jpg) center center/cover no-repeat;
    height: 500px;
    transition: all 0.5s;
}

.popularPlacesWrap .imgWrap:hover{
    transform: scale(1.05) rotate(-2deg);
}

.popularPlacesWrap .smallImgs{
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 240px;
    transition: all 0.5s;
}

.popularPlacesWrap .smallImg1{
    background-image: linear-gradient(to top, rgba(0 0 0 / 70%),rgba(0 0 0 / 0%)), url(images/islington.jpg);
}

.popularPlacesWrap .smallImg2{
    background-image: linear-gradient(to top, rgba(0 0 0 / 70%),rgba(0 0 0 / 0%)), url(images/camden.jpg);
}

.popularPlacesWrap .smallImg3{
    background-image: linear-gradient(to top, rgba(0 0 0 / 70%),rgba(0 0 0 / 0%)), url(images/marylebone.jpg);
}

.popularPlacesWrap .smallImg4{
    background-image: linear-gradient(to top, rgba(0 0 0 / 70%),rgba(0 0 0 / 0%)), url(images/Southwark.jpg);
}

.popularPlacesWrap .txtWrap{
    position: absolute;
    bottom: 80px;
    transform: translateX(-50%);
    left: 50%;
    text-align: center;
    transition: all 0.4s;
    z-index: 5;
}

.popularPlacesWrap .txtWrap h2{
    color: #fff;
    font-size: 18px;
    margin-bottom: 0;
}

.popularPlacesWrap .txtWrap span{
    color: #fff;
    font-size: 15px;
}

.popularPlacesWrap .imgWrap:hover .txtWrap{
    transform: translateX(-50%) rotate(2deg);
    bottom: 200px;
}

.popularPlacesWrap .smallImgsWrap{
    overflow: hidden;
}

.popularPlacesWrap .smallImgsWrap1,
.popularPlacesWrap .smallImgsWrap3{
    margin-bottom: 20px;
}

.popularPlacesWrap .smallImgs:hover{
    transform: scale(1.1) rotate(-2deg);
}

.popularPlacesWrap .smallImgs .txtWrap{
    bottom: 40px;
}

.popularPlacesWrap .smallImgs:hover .txtWrap{
    bottom: 100px;
    transform: translateX(-50%) rotate(2deg);
}

.WhyChooseWrap{
    background-color: #f4f4f9;
    padding: 80px 0;
}

.WhyChooseWrap .boxes{
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.WhyChooseWrap .boxes .icon{
    display: block;
    height: fit-content;
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #a39161;
}

.WhyChooseWrap .boxes .icon img{
    width: 32px;
    height: 32px;
}

.WhyChooseWrap .boxes .txt h2{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.WhyChooseWrap .boxes .txt h2 span{
    color: #a39161;
}

.WhyChooseWrap .boxes .txt p{
    margin-bottom: 0;
    width: 90%;
}

.whyChooseImgs{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    border-radius: 15px;
}

.whyChooseImg1{
    background-image: url(images/whychooseimg_1.jpg);
}

.whyChooseImg2{
    background-image: url(images/whychooseimg_2.jpg);
}

.whyChooseImg3{
    background-image: url(images/whychooseimg_3.jpg);
}

.whyChooseImg4{
    background-image: url(images/whychooseimg_4.jpg);
}

.howDoesItWork{
    padding: 80px 0;
}

.howDoesItWork .boxes{
    text-align: center;
}

.howDoesItWork .boxes .icon{
    box-shadow: 0 0 20px 0 rgba(0 0 0 / 5%);
    width: fit-content;
    padding: 18px;
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.3s;
}

.howDoesItWork .boxes:hover .icon{
    background-color: #a39161;
}

.howDoesItWork .boxes .icon img{
    width: 32px;
    height: 32px;
    transition: all 0.3s;
}

.howDoesItWork .boxes:hover .icon img{
    filter: invert(1);
}

.howDoesItWork .boxes .txt h2{
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 0;
}

.howDoesItWork .boxes .txt h2 a{
    color: #000;
    text-decoration: none;
}

.testimSec{
    background-color: #f4f4f9;
    padding: 80px 0;
}

.testimSec .boxes{
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.testimSec .firstWrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.testimSec .ratingStars img{
    width: 16px;
    height: 16px;
}

.testimSec .firstWrap span{
    font-weight: 600;
    display: block;
}

.testimSec .boxes p{
    font-style: italic;
}

.testimSec .boxes h2{
    position: relative;
    margin-bottom: 0;
    font-size: 20px;
    padding-left: 35px;
}

.testimSec .boxes h2:after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 25px;
    height: 1px;
    background-color: #000;
}

.footerWrap{
    background-color: #16191E;
}

.footerWrap .fistRow{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

.footerWrap .fistRow .logo img{
    width: 190px;
    height: 69px;
}

.footerWrap .fistRow .contactDeatils{
    display: flex;
    gap: 30px;
}

.footerWrap .fistRow .contactDeatils .boxes{
    display: flex;
    align-items: center;
}

.footerWrap .fistRow .contactDeatils .boxes .icon{
    padding-right: 15px;
    border-right: 1px solid rgba(255 255 255 / 15%);
    height: fit-content;
}

.footerWrap .fistRow .contactDeatils .boxes .icon img{
    filter: invert(1);
    width: 30px;
    height: 30px;
}

.footerWrap .fistRow .contactDeatils .boxes .txt{
    padding-left: 15px;
}

.footerWrap .fistRow .contactDeatils .boxes .txt span{
    color: #a39161;
    display: block;
}

.footerWrap .fistRow .contactDeatils .boxes .txt a{
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 2px;
}

.copyrightWrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    border-top: 1px solid rgba(255 255 255 / 15%);
}

.copyrightWrap p{
    margin-bottom: 0;
    color: #fff;
}

.copyrightWrap p a{
    text-decoration: none;
    color: #a39161;
}

.socialLinksWrap{
    display: flex;
    align-items: center;
    gap: 10px;
}

.socialLinksWrap h2{
    font-size: 14px;
    margin-bottom: 0;
    color: #fff;
}

.jobsBanner{
    padding: 220px 0 80px;
    /* background:linear-gradient(rgba(0 0 0 / 50%),rgba(0 0 0 / 50%)), url(images/banner-3.jpg) center center/cover no-repeat; */
    background-color: #16191E;
}

.jobsBanner h1{
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.jobsBanner ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 70px;
}

.jobsBanner ul li{
    color: #a39161;
    font-weight: 600;
    font-size: 18px;
}

.jobsBanner ul li a{
    position: relative;
    display: block;
    color: #fff;
    text-decoration: none;
}

.jobsBanner ul li a::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 78px;
    background-color: #fff;
    width: 20px;
    height: 3px;
}

.jobsDescription{
    padding: 80px 0;
}

.jobsDescription .jobsCards{
    padding: 35px;
    box-shadow: 0 0 20px 0 rgba(0 0 0 / 10%);
    border-radius: 6px;
}

.jobsDescription .jobsCards span{
    color: #a39161;
    font-size: 18px;
    line-height: 1;
    margin-bottom: -4px;
    display: block;
    font-weight: 500;
}

.jobsDescription .jobsCards h2{
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 20px;
}

.jobsDescription .jobsCards h3{
    font-size: 25px;
    font-weight: 600;
}

.jobsDescription .jobsCards ul{
    /* padding: 0; */
    margin: 0;
    list-style: none;
}

.jobsDescription .jobsCards ul li{
    position: relative;
    padding-left: 20px;
    font-size: 17px;
    margin-bottom: 5px;
}

.jobsDescription .jobsCards ul li::after{
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    background: url(images/left-arrow-head.png) center center/12px no-repeat;
    transform: rotate(180deg);
}

.jobsDescription .jobsCards p{
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
}

.jobsDescription .jobsCards p a{
    color: #a39161;
    text-decoration: none;
}

.copyrightWrap .socialLinks{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 15px;
}

.copyrightWrap .socialLinks li a{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255 255 255 / 15%);
    border-radius: 50%;
    width: 25px;
    height: 25px;
}

.copyrightWrap .socialLinks li a img{
    width: 12px;
    height: 12px;
}


@media screen and (min-width: 992px) {
    .navBtnsSmWrap{
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .navCallBtn{
        display: none;
    }
    .nav-link{
        padding: 10px 20px !important;
    }
    .bannercontent h2{
        font-size: 70px;
    }
    .bannerSecWrap .bannerImgs{
        padding-top: 120px;
    }
    .carouselNavWrap{
        display: none;
    }
    .bannercontent .bannerLastPara{
        width: 100%;
    }
    .homePageAboutWrap .row{
        flex-direction: column-reverse;
    }
    .homePageAboutWrap .imgsWrapper{
        margin-bottom: 100px;
    }
    .popularPlacesWrap .leftCol{
        margin-bottom: 20px;
    }
    .popularPlacesWrap .smallImgsWrap{
        width: 48%;
    }
    .popularPlacesWrap .smallImgsWrap2{
        margin-bottom: 20px;
        margin-left: auto;
    }
    .popularPlacesWrap .smallImgsWrap3{
        margin-bottom: 0;
    }
    .popularPlacesWrap .smallImgsWrap4{
        margin-left: auto;
    }
    .howDoesItWork .boxes.box1,
    .howDoesItWork .boxes.box2{
        margin-bottom: 20px;
    }
    .testimSec .boxes.box1,
    .testimSec .boxes.box2{
        margin-bottom: 20px;
    }
    .footerWrap .fistRow{
        flex-direction: column;
        gap: 30px;
    }
    .copyrightWrap p{
        font-size: 14px;
    }
    .socialLinksWrap h2{
        font-size: 10px;
    }
    .navBtnsSmWrap{
        display: flex;
        gap: 10px;
    }
    .navBtnsSm{
        background: #a18f60;
        padding: 0;
        border: none;
        outline: none;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 38px;
        border-radius: 5px !important;
        box-shadow: none !important;
    }
    .navBtnsSm img{
        width: 20px;
        height: 20px;
    }
    .navbar-toggler img{
        width: 25px;
        height: 20px;
    }
    header{
        background-color: #000;
    }
}

@media screen and (max-width: 768px) {
    .footerWrap .fistRow .contactDeatils{
        flex-direction: column;
    }
    .footerWrap .fistRow{
        align-items: flex-start;
    }
    .copyrightWrap{
        flex-direction: column-reverse;
    }
    .copyrightWrap p{
        margin-top: 20px;
    }
    .socialLinksWrap h2{
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .carouselNavWrap{
        display: none;
    }
    .homePageAboutWrap .imgsWrapper{
        display: none;
    }
    .navbar-brand img{
        width: 120px;
        height: 44px;
    }
    nav{
        padding: 10px 0 !important;
    }
    .bannerSecWrap .bannerImgs{
        height: 450px;
        padding-top: 75px;
    }
    .bannercontent .wrap p{
        font-size: 14px;
    }
    .bannercontent h2{
        font-size: 32px;
    }
    .bannercontent .bannerLastPara{
        font-size: 16px;
    }
    .cusContainer{
        padding: 0;
    }
    .popularPlacesWrap .smallImgsWrap{
        width: 100%;
    }
    .popularPlacesWrap .smallImgsWrap{
        margin-bottom: 20px;
    }
    .jobsBanner{
        padding: 140px 0 80px;
    }
    .jobsBanner h1{
        font-size: 35px;
        margin-bottom: 10px;
    }
    .jobsBanner ul{
        gap: 45px;
    }
    .jobsBanner ul li{
        font-weight: 400;
        font-size: 15px;
    }
    .jobsBanner ul li a::after{
        left: 55px;
        width: 15px;
        height: 2px;
    }
    .jobsDescription .jobsCards{
        padding: 25px 15px;
    }
    .jobsDescription .jobsCards span{
        margin-bottom: 0px;
        font-size: 16px;    
    }
    .jobsDescription .jobsCards h2{
        font-size: 28px;
    }
    .jobsDescription .jobsCards h3{
        font-size: 20px;
    }
    .jobsDescription .jobsCards ul{
        padding-left: 0;
    }
    .jobsDescription .jobsCards ul li{
        padding-left: 17px;
        font-size: 15px;
        margin-bottom: 10px;    
    }
    .jobsDescription .jobsCards p{
        font-size: 16px;
    }
    .footerWrap .fistRow .contactDeatils .boxes .txt span{
        font-size: 14px;
    }
    .footerWrap .fistRow .contactDeatils .boxes .txt a{
        font-size: 16px;
    }
    .copyrightWrap p{
        font-size: 13px;
        text-align: center;
    }
}