@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap'); body {
    position: relative;
    font-family: 'Roboto', sans-serif;
    background: #1B1B1B;
    overflow-x: hidden;
}

:root {
    --theme-color: #896c42;
    --theme-secondary-color: #896c42;
    --white: #fff;
    --black: #000;
    --gray: #a8a5a8;
}

p {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Serif Display', serif;
    color: #fff;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

a, button {
    text-decoration: none;
    border: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

img {
    max-width: 100%;
}

figure {
    margin: 0;
}

.themeBtn {
    background: linear-gradient(to right, var(--theme-color), var(--theme-color));
    background-repeat: no-repeat;
    background-size: 0 100%;
    background-position: center center;
    background-color: transparent;
    border: 2px solid var(--theme-color);
    font-size: 1.125rem;
    padding: 1rem 1.5rem;
    text-transform: uppercase;
    color: var(--white);
    transition: all 0.4s ease-in-out;
    display: inline-block;
}

.themeBtn:hover {
    background-size: 100% 100%;
    color: var(--white);
}

#trigger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 42px;
    margin-left: auto;
}

#trigger span {
    height: 1px;
    width: 42px;
    background-color: var(--white);
    display: block;
    position: relative;
    transition: ease all .5s;
}
a#trigger.cross span:nth-child(2) {
    display: none;
}

a#trigger.cross span:first-child {
    transform: rotate(45deg);
}

a#trigger.cross span:last-child {
    transform: rotate(-45deg);
    top: -8px;
}
.fadeInUp {
    position: relative;
    top: -5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s 1s ease-in-out;
}

.active .fadeInUp {
    top: 0;
    opacity: 1;
    visibility: visible;
    /* transition: all 1s 0.4s ease-in-out; */
}

/*header css*/
header {
    display: none;
}
.fp-viewing-Home header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 11;
    padding: 1rem 0;
    display: block;
}
.sidebar {
    position: absolute;
    top: 0;
    right: -25rem;
    width: 25rem;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 2rem;
    background: #1b1b1b;
    z-index: 10;
    transition: ease all .5s;
}
.sidebar.open {
    right: 0;
}
.sidebar ul a {
    line-height: 2;
    font-size: 1.125rem;
    color: #ccc;
    font-family: 'DM Serif Display', serif;
}
.sidebar ul a:hover {
    color: var(--white);
}
/*.fp-viewing-Team header, .fp-viewing-InvestmentManagementServices header, .fp-viewing-CaseStudies header {*/
/*    background: rgb(0 0 0 / 70%);*/
/*}*/
.section {
    position: relative;
}

.section .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity, all 1s ease;
}

.section .fp-overflow {
    position: relative;
    z-index: 3;
}

.section.one .bg {
    background: url(../images/bg1.jpg) center/cover fixed no-repeat;
    background-position-y: -1500%;
}

.section.one:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000a1;
    z-index: 2;
}

.section.one p, .section.two p {
    font-size: 1.375rem;
    font-weight: 100;
}

.section.two .bg {
    background: url(../images/bg2.jpg) center/cover fixed no-repeat;
    background-position-y: -1500%;
}

.section.thre .bg, .section.seven .bg {
    background: #fff url(../images/bg3.jpg) center/cover fixed no-repeat;
    background-position-y: -1500%;
}

.section.four .bg {
    background: url(../images/bg4.jpg) center/cover fixed no-repeat;
    background-position-y: -1500%;
}

.section.five .bg {
    background: #fff url(../images/bg5.jpg) center/cover fixed no-repeat;
    background-position-y: -1500%;
}

.section.six .bg {
    background: url(../images/bg6.jpg) center/cover fixed no-repeat;
    background-position-y: -1500%;
}

.section.eight .bg {
    background: url(../images/bg7.jpg) center/cover fixed no-repeat;
    background-position-y: -1500%;
}

.section.one.active .bg, .section.two.active .bg, .section.thre.active .bg, .section.four.active .bg, .section.five.active .bg, .section.six.active .bg, .section.seven.active .bg, .section.eight.active .bg {
    background-position-y: 0;
    opacity: 1;
    visibility: visible;
}
.section.seven h2 {
    color: var(--black);
}
.section.two ul {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    margin-top: 4rem;
}

.section.two ul li {
    flex: 0 0 33.33%;
    width: 33.33%;
    padding: 2rem;
}

.section.two ul li:first-child, .section.two ul li:nth-child(2), .section.two ul li:nth-child(3) {
    border-bottom: 1px solid var(--white);
    padding-top: 0;
}

.section.two ul li:last-child, .section.two ul li:nth-child(4), .section.two ul li:nth-child(5) {
    padding-bottom: 0;
}

.section.two ul li {
    border-right: 1px solid var(--white);
}

.section.two ul li:nth-child(3), .section.two ul li:last-child {
    border-right: 0;
}

.section.thre p {
    color: var(--black);
    font-weight: 400;
}

.directorCell {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.directorCell .img {
    width: 12%;
}

.directorCell .content {
    width: 88%;
}
.directorCell .content h4 {
    color: var(--black);
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.directorCell .content .info {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
}

.directorCell .content .info a, .section.five :is(h2, p) {
    color: var(--black);
}

.directorCell .content .info a i {
    margin-right: 5px;
}

.servicesList {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
}

.servicesList a {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    font-size: 1.375rem;
    text-align: left;
    font-weight: 600;
    color: var(--black);
    line-height: 1;
}

.pkg {
    background: rgb(34 34 34 / 58%);
    padding: 2rem;
    border-radius: 1rem;
    min-height: 36rem;
    transition: ease all 0.5s;
}

.pkg:hover {
    background: rgb(34 34 34 / 100%);
}

.pkg h4 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.pkg ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: disc;
}

.pkg ul li::marker {
    color: var(--white);
}

.caseStudiesThumb {
    position: relative;
    overflow: hidden;
    height: 24rem;
}
.caseStudiesThumb img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.caseStudiesThumb .overlay {
    position: absolute;
    top: -22%;
    opacity: 0;
    left: 5%;
    width: 90%;
    height: 84%;
    z-index: 1;
    background: rgb(24 24 24 / 88%);
    padding: 1.5rem;
    transition: opacity, ease all 0.5s;
}

.caseStudiesThumb:hover .overlay {
    top: 8%;
    opacity: 1;
}

.caseStudiesThumb ul {
    margin-top: 2rem;
    list-style: disc;
    padding-left: 1rem;
}

.caseStudiesThumb ul li::marker {
    color: var(--white)
}

.caseStudiesThumb ul li p {
    margin-bottom: 1rem;
}

.section.eight .landAddres {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section.eight .landAddres span {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    border: 1px solid #fff;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.personList {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.personList :is(h4, a) {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--white);
}

.personList a {
    display: block;
    margin-top: 10px;
}

.personList a i {
    margin-right: 5px;
}

footer {
    background: #1B1B1B;
}

footer h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    margin: 1rem 0 3.5rem;
}

footer a, footer p {
    font-size: 14px;
    color: #ffffff80;
    display: block;
    padding: 8px 0;
}

footer p {
    padding: 0;
}

footer a:hover, footer a:focus {
    color: #ffffff;
}

footer a i {
    margin-right: 7px;
}

footer .links a {
    border-bottom: 1px solid #ffffff80;
}

footer .social {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.2rem;
}
footer .social a {
    display: flex;
    align-items: center;
    gap: 1rem;
}
footer .social a span {
    width: 3rem;
    height: 3rem;
    background: #fff;
    color: #1b1b1b;
    font-size: 1.2rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

footer .social a i {
    margin: 0;
}

footer .social a:hover span, footer .social a:focus span {
    background: #ffffff90;
}

footer .social + strong {
    display: block;
    margin-top: 6.5rem;
    color: var(--white);
    font-weight: 300;
}
#fp-nav {
    z-index: 9;
}
#fp-nav ul li {
    margin: 15px 0;
}
#fp-nav ul li, 
#fp-nav ul li a span,
#fp-nav ul li:hover a span,
#fp-nav ul li a.active span,
#fp-nav ul li:hover a.active span {
    width: 14px;
    height: 14px;
    
}
#fp-nav ul li a span {
    background: rgb(255 255 255 / 50%);
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    transform: translate(-50%, -50%);
    margin: 0;
}
#fp-nav ul li a.active span, #fp-nav ul li:hover a.active span {
    background: #fff;
    margin: 0;
}
#fp-nav ul li:hover a span, .fp-slidesNav ul li:hover a span{
    margin: 0;
}
#fp-nav ul li .fp-tooltip {
    top: -4px;
    right: 30px;
    font-family: 'DM Serif Display', serif;
    text-shadow: 0 0 black;
}
.modalStyle .modal-dialog {
    max-width: 100%;
    height: 100%;
    margin: 0;
}
.modalStyle .modal-body {
    display: flex;
    align-items: center;
}
.modal.show .modal-dialog .modal-content {
    height: 100%;
    border-radius: 0;
    border: 0;
    opacity: 0.96;
}
.modalStyle h1, .modalStyle h2, .modalStyle p {
    color: var(--black);
}
.modalStyle p {
    font-size: 1.125rem;
}
.modalStyle .caseStudiesList {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.modalStyle .caseStudiesList li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}
.modalStyle .caseStudiesList li p {
    font-size: 1.25rem;
    font-weight: 400;
}
.slick-prev:before, .slick-next:before {
    font-family: inherit;
    font-size: 2rem;
    color: #141619;
}
#fp-nav ul li a[href="#InvestmentAndDevelopment"] + .fp-tooltip,
#fp-nav ul li a[href="#DevelopmentPricing"] + .fp-tooltip{
    display: none;
}