/* Fonts */

@font-face {
    font-family: 'optimanormal';
    src: url('/fonts/optima-webfont.eot');
    src: url('/fonts/optima-webfont.eot?#iefix') format('embedded-opentype'),
    url('/fonts/optima-webfont.woff2') format('woff2'),
    url('/fonts/optima-webfont.woff') format('woff'),
    url('/fonts/optima-webfont.ttf') format('truetype'),
    url('/fonts/optima-webfont.svg#optimanormal') format('svg');
    font-weight: normal;
    font-style: normal;

}

/* Global */

body {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    font-size: 18px;
}

h1 {
    font-family: 'optimanormal';
    font-weight: normal;
    font-style: normal;
}

h2 {

}

h3 {

}

h4 {
    font-weight:900;
}

a {
    text-decoration: none;
    font-weight: 900;
    transition: all 0.3s;
    color:black;
}

a:hover {
    color:#A1946D;
}

.padding-right {
    padding-right:90px;
}

@media (max-width: 768px) {
    .padding-right {
        padding-right:0px;
    }
}

.btn-green {

    text-align: center;
    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 37px;
    border-radius: 6px;
    background: #286E6C;
    padding: 10px 20px;
    margin-right: 10px;
    color:white !important;
}

.btn-green:hover {

    background: #dfe9e9;
    color:#286E6C !important;

}

/* Nav */

.nav-link {
    font-weight:400;
    color:black;
}
.nav-link:hover {
    color:#286E6C;
}

.dropdown-item.active, .dropdown-item:active, .dropdown-item:hover  {
    color: white;
    text-decoration: none;
    background-color: #A1946D;
}


.nav-outer {
    background-color:#f5f4f0;
    padding:40px 30px;
    transition: all 0.3s;
}

@media (max-width: 991px) {
    .nav-outer {
        padding:20px 30px;
    }
}

@media (max-width: 530px) {
    .nav-outer {
        padding:20px 20px;
    }
}

.navbar-brand img {
    height:90px;
    width: auto;
    transition: all 0.3s;
}

@media (max-width: 991px) {
    .navbar-brand img {
        height:70px;
        width: auto;
    }
}

@media (max-width: 530px) {
    .navbar-brand img {
        height:60px;
        width: auto;
    }
}

.navbar-toggler {
    outline:0;
    border:0;
    padding: 0px;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0;
}

.hidden {
    display: none;
}

/* Homepage */

.page-outer {
    margin-top: 203px;
}

@media (max-width: 991px) {
    .page-outer {
        margin-top: 142px;
    }
}

@media (max-width: 530px) {
    .page-outer {
        margin-top: 132px;
    }
}

.hero-left {
    height: 700px;
    background-color: #A1946D;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0px 130px 0px 90px;
}

.hero-right {
    height: 700px;
    width: 100%;
}

.hero-right img {
    height: 700px;
    width: 100%;
    object-fit: cover;
}

.hero-left h1 {
    color: white;
    font-size:60px;
    line-height: 1.1;
    margin-bottom:20px;
}

.hero-left .intro-para {
    color: white;
    font-size: 28px;
    line-height: 1.4;
    display: block;
    width: calc(100% - 100px);
    font-weight:300;
}

@media (max-width: 1440px) {
    .hero-left {
        padding: 0px 130px 0px 90px;
    }

    .hero-left h1 {
        font-size:55px;
    }

    .hero-left .intro-para {
        font-size: 22px;
        width: calc(100% - 70px);
    }
}

@media (max-width: 1255px) {
    .hero-left {
        padding: 0px 90px 0px 90px;
    }

    .hero-left h1 {
        font-size:50px;
    }
}

@media (max-width: 991px) {
    .hero-right {
        height: 100%;
        width: 100%;
    }

    .hero-right img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    .hero-left {
        padding: 80px 45px 80px 45px;
        height:100%;
    }

    .hero-left h1 {
        font-size:40px;
    }
    .hero-left .intro-para {
        font-size: 22px;
        width: 100%;
    }
}

@media (max-width: 530px) {
    .hero-left h1 {
        font-size:35px;
    }
    .hero-left .intro-para {
        font-size: 20px;
        width: 100%;
    }
    .hero-left {
        padding: 80px 60px 80px 30px;
        height: auto;
    }
}

.scrolled {
    padding: 10px 30px;
}

@media (max-width: 991px) {
    .scrolled {
        padding: 10px 30px;
    }
}

.scrolled .navbar-brand img {
    height: 80px;
    width: auto;
}

@media (max-width: 530px) {
    .scrolled .navbar-brand img {
        height: 60px;
        width: auto;
    }
    .scrolled {
        padding: 20px 20px;
    }
}

.block-outer {
    padding: 120px 0px;
}

@media (max-width: 768px) {
    .block-outer {
        padding: 80px 25px;
    }
}

.col-left p, .col-right p {
    font-size: 22px;
    line-height: 35px;
}

@media (max-width: 991px) {
    .col-left p, .col-right p {
        font-size: 18px;
    }
}

.block-green {
    background: #286E6C;
}

.block-blue{
    background: #394D62;
}

.consultant-image {
    width: 210px;
    height: 210px;
    border-radius: 210px;
    border: 8px solid rgba(40, 110, 108, 0.30);
    background-size: 110% !important;
    -webkit-filter: grayscale(100%);
    filter: gray;
    margin-bottom:30px;
    margin-left: auto;
    margin-right: auto;
}

.consultant-image-news {
    width: 210px;
    height: 210px;
    border-radius: 210px;
    border: 8px solid rgba(161, 148, 109, 0.30);
    background-size: 110% !important;
    margin-bottom:30px;
    margin-left: auto;
    margin-right: auto;
}

.heading {
    color: #FFF;
    text-align: center;
    font-family: 'optimanormal', sans-serif;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    margin-bottom: 80px;
    
    
}

@media (max-width: 530px) {
    .heading {
        font-size: 35px;


    }
}

.consultant-name {
    color: #FFF;
    text-align: center;
    font-family: 'optimanormal', sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    display: block;
    margin-bottom:10px;
}

.consultant-specialism {
    color: #FFF;
    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    display: block;
    margin-bottom:10px;
    text-align: center;
}

.consultant-qualification {
    color: rgba(255, 255, 255, 0.70);
    font-family: Manrope, sans-serif;;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    text-align: center;
}

.consultant-outer {
    margin: 0px 30px;
    
}

@media (max-width: 1200px) {
    .consultant-outer {
        margin: 0px 10px;

    }
}

@media (max-width: 991px) {
    .consultant-outer {
        margin: 0px 40px;

    }
}

.hero-full-width {
    height: 1000px;
    background-color: #A1946D;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 40px 0px;
    justify-content: center;
}

.northlight-graphic-lg {
    position: absolute;
    width: 50%;
    z-index: 1;
    
}

.hero-large-text {
    position:relative;
    z-index: 2;
    color: #FFF;
    text-align: center;
    font-family: 'optimanormal', sans-serif;
    font-size: 100px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 1300px) {
    .hero-full-width {
        height: 700px;
    }

    .northlight-graphic-lg {
        width: 50%;
    }

    .hero-large-text {
        font-size: 80px;
        
    }
}

@media (max-width: 991px) {
    .hero-full-width {
        height: 600px;
    }

    .northlight-graphic-lg {
        width: 60%;
    }

    .hero-large-text {
        font-size: 70px;

    }
}

@media (max-width: 768px) {
    .hero-full-width {
        height: 600px;
    }

    .northlight-graphic-lg {
        width: 80%;
    }

    .hero-large-text {
        font-size: 70px;

    }
}
@media (max-width: 530px) {
    .hero-full-width {
        height: 600px;
    }

    .northlight-graphic-lg {
        width: 80%;
    }

    .hero-large-text {
        font-size: 60px;

    }
}
@media (max-width: 425px) {
    .hero-full-width {
        height: 550px;
    }

    .northlight-graphic-lg {
        width: 80%;
    }

    .hero-large-text {
        font-size: 50px;

    }
}

.hero-large {
    height: 700px;
    width: 100%;
}

.hero-large img {
    height: 700px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 530px) {
    .hero-large {
        height: 500px;
        width: 100%;
    }

    .hero-large img {
        height: 500px;
        width: 100%;
        object-fit: cover;
    }
}

.location-name, .location-address {
    text-align: left;
}

.location-outer {
    padding-right: 70px;
}

@media (max-width: 991px) {
    .location-outer {
        padding-right: 20px;
        text-align: center;
    }
    .location-name, .location-address {
        text-align: center;
    }
}

.btn-white {

    text-align: center;
    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 37px;
    border-radius: 6px;
    background: #FFF;
    padding: 10px 20px;
    margin-right: 10px;
}

.btn-white:hover {

    background: #dfe9e9;
    
}

.block-green p {
    color:white;
}

footer {
    padding:40px 80px;
}

@media (max-width: 991px) {
    footer {
        padding:20px 30px;
    }
}

@media (max-width: 530px) {
    footer {
        padding:20px 20px;
    }
}

@media (max-width: 575px) {
    .white-outer {
        padding: 0px 20px;
    }
}

.hero-full {
    background-color: #A1946D
}

.hero-full {
    color:white;
}

.hero-full h1 {
    font-size:60px;
}

@media (max-width: 768px) {
    .hero-full {
        padding:30px 20px;
    }
    .hero-full h1 {
        font-size:40px;
    }
}

.hero-specialism {
    display:block;
    margin-bottom:8px;
    line-height: 1.3;
}

.white-outer .active {
    font-weight:800;
}

.white-outer a {
    text-decoration: none;
    color:black;
    transition:all 0.3s;
}

.white-outer a:hover {
    color:#A1946D;
}

.intro-paragraph {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 24px;
    display: block;
}

.small-heading {
    font-weight:900;
    display: block;
    margin-bottom: 20px;
}

.small-heading-green {
    font-weight:900;
    display: block;
    margin-bottom: 20px;
    color:#286E6C;
    border-bottom: 1px solid #286E6C;
    padding-bottom:10px;
}

ul.expertise {
    padding: 0px;
    list-style: none;
}

ul.expertise li {
    border-radius: 6px;
    background: rgba(177, 165, 131, 0.20);
    padding: 23px 20px;
    margin-bottom: 11px;
    border-left: 20px solid #286E6C;
    font-weight: 800;
    line-height: 1.3;
}

/* Forms */

.umbraco-forms-submitmessage {
    font-weight: 900;
    background: #286E6C;
    color: white;
    border-radius: 6px;
    width: 100%;
    display: block;
    padding: 30px;
}

.form-control {
    border: 4px solid #dee2e6;
    padding: 15px 15px;
    margin-bottom: 15px;
    appearance: auto;
    padding-top: 17px;
    border-radius: 10px;
}

h4.umbraco-forms-caption {
    font-size: 1.75rem;
    margin-bottom: .5rem;
    font-weight:900;
}

.form-label {
    margin-bottom: .5rem;
    font-weight:900;
}

.field-validation-error {
    display: block;
    color:red;
}

.form-check-input[type=checkbox] {
    border-radius: .25em;
    border: 4px solid #dee2e6;
    width: 25px;
    height: 25px;
    position: relative;
    top: -6px;
}

.form-check-input:focus {
    border-color: #A1946D;
    outline: 0;
    box-shadow: 0 0 0 0;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #A1946D;
    outline: 0;
    box-shadow: 0 0 0 0;
}

.form-check-input:checked {
    background-color: #A1946D;
    border-color: #A1946D;
}

legend {
    font-weight:900;
    font-size: 18px;
}

/* Cookies */

#cookieMessage {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 30px;
    z-index: 1000;
    display: none;
}
#cookieMessage button {
    margin-left: 10px;
    padding: 8px 15px;
    background-color: #A1946D;
    color: #000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 800;
    transition: 0.3s all;
}

@media (max-width: 1200px) {
    #cookieMessage button {
        display: block;
        margin-top: 10px;
        margin-left: 0px;
    }
    #cookieMessage {
        text-align: left;
    }
}
#cookieMessage button:hover {
    background-color: #fff;
}