@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
/* --- STYLE CONFIGURATIONS --- */


:root {
    --color: rgba(255,255,255,1);
    --opacity: 1;
    --transition: all .5s ease;
}


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a, a:hover, a:focus, a:active {
    text-decoration: none;
    color: inherit;
}
#controlBar_bannerVid {
    display: none !important;
}


/* --- HEADINGS AND P SETTINGS --- */

h1 {
    font-family: 'Playfair Display', serif;
    color: white;
    padding-top: 30px;
    font-size: max(7.6vw, 4rem);
}
h3 {
    font-family: 'Playfair Display', serif;
    color: white;
    padding-left: 50px;
    padding-bottom: 20px;
    font-size: max(1.875vw, 2rem);
    padding-right: 50px;
}
h2.a-l-gallery-h2 {
    font-family: 'Playfair Display', serif;
    font-size: max(7.6vw, 2.5rem);
    color: #264145;
}
h2.a-l-faqs-h2 {
    font-family: 'Playfair Display', serif;
    color: #264145;
    font-size: max(3.125vw, 2.5rem);
}
.a-l-faqs-item-heading {
    font-family: 'Playfair Display', serif;
    font-size: max(1.875vw, 2rem);
    color: #264145;
    padding-right: 50px;
}
h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.875rem;
    color: white;
}
h5 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.375rem;
    color: white;
}
.a-l-paragraph {
    font-family: 'Open Sans', sans-serif;
    color: #264145;
    font-size: 1.125rem;
    max-width: 800px;
    line-height: 1.75rem;
    padding: 50px 50px 150px 50px;
}
.a-l-menu-link a {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #32B3C5;
}
@media only screen and (max-width: 900px) {
    h4 {
        font-size: 1.275rem;
    }
    h5 {
        font-size: 1rem;
    }
}
@media only screen and (max-width: 675px) {
    h1 {
        padding-top: 15px;
        font-size: 2rem;
    }
    h4 {
        font-size: 1rem;
    }
    h5 {
        font-size: 0.875rem;
    }
    .a-l-paragraph {
        font-size: 1rem;
        line-height: 1.5rem;
        padding: 50px 20px 150px 20px;
    }
    h3 {
        padding-left: 20px;
        padding-bottom: 20px;
        font-size: 1.5rem;
        line-height: 1.875rem;
    }
    .a-l-faqs-item-heading {
        font-size: 1.275rem;
    }
}










/* --- MAIN STYLES --- */

.a-l-main-wrapper {
    margin-right: 270px;
}
body {
	background-color: white;
}
@media only screen and (max-width: 1280px) {
    .a-l-main-wrapper {
        margin-right: 0;
    }
}

/* --- NAVIGATION --- */
nav {
    width: 270px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    transition: all .5s ease;
	background-color: #f7faf7;
}
.a-l-nav-wrapper {
    height: 100%;
    display: inline-block;
}
.a-l-nav-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.a-l-logo-container {
    margin-top: 50px;
	cursor: pointer;
}
menu {
    margin-bottom: 85px;
}
.a-l-menu-link:not(:last-child) {
    margin-bottom: 15px;
}
.a-l-menu-link {
    position: relative;
    transition: all .5s ease;
    left: 0;
}
.a-l-menu-link:hover:not(.a-l-active-link) {
    left: 10px;
}
.a-l-active-link a {
    color: #264145;
}
.a-l-small-logo {
    display: none;
}
.a-l-burger {
    display: none;
    position: relative;
    cursor: pointer;
}
.a-l-burger::before {
    content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    top: -20px;
    left: 0;
    z-index: 1;
}
.a-l-burger-line {
    width: 40px;
    height: 4px;
    background-color: #32B3C5;
    border-radius: 2px;
    position: relative;
}
.a-l-burger-line:nth-child(1) {
    bottom: 4px;
    transform: rotate(0deg);
    top: 0;
    transition: all .5s ease;
}
.a-l-burger-line:nth-child(2) {
    top: 4px;
    transform: rotate(0deg);
    bottom: 0;
    transition: all .5s ease;
}
@media only screen and (max-width: 1280px) {
	.a-l-nav-wrapper {
		box-shadow: 0 2px 2px -2px rgb(0 0 0 / 20%);
	}
    nav {
        width: 100%;
        height: 100px;
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        justify-content: space-between;
        z-index: 999;
        background-color: #f7faf7;
        align-items: center;
    }
    .a-l-nav-wrapper {
        display: block;
    }
    .a-l-nav-container {
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    .a-l-logo-container {
        margin-top: 0;
        margin-left: 50px;
    }
    .a-l-small-logo {
         display: block;
     }
    .a-l-logo {
        display: none;
    }
    .a-l-burger {
        display: block;
        padding-right: 50px;
    }

    .a-l-nav-wrapper {
        width: 100%;
    }
    .a-l-nav-container {
        width: 100%;
    }
    .a-l-logo-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    menu {
        position: absolute;
        top: 100px;
        left: 0;
        background-color: white;
        width: 100%;
    }
    .a-l-menu-container {
        padding-left: 50px;
        padding-top: 0;
        padding-bottom: 0;
        height: 0;
        transition: all .5s ease;
    }
    .a-l-menu-link {
        position: relative;
        top: -20px;
        opacity: 0;
        display: none;
        transition: all .5s ease;
    }
}
@media only screen and (max-width: 675px) {
    .a-l-logo-container {
        margin-left: 20px;
    }
    .a-l-burger {
        display: block;
        padding-right: 20px;
    }
    .a-l-menu-container {
        padding-left: 20px;
    }
}







/* --- HEADER --- */
header {
    height: calc(100vh - 150px);
	position: sticky;
    top: 0;
    z-index: -1;
}
section {
	background:white;
}
.a-l-header-container {
    height: calc(100% - 50px);
}
.a-l-header-heading-container {
    padding-left: 150px;
    height: 100%;
    display: flex;
    align-items: flex-end;
}
.a-l-project-disc-header{
    position: relative;
    z-index: 1;
}
.a-l-project-disc-header h3{
    z-index: 1;
}
.a-l-project-disc-header::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background-image: linear-gradient(to bottom, rgb(34, 34, 34, 0), rgb(34, 34, 34, 1));
}

@media only screen and (max-width: 1280px) {
    header {
        height: calc(100vh - 100px);
        margin-top: 100px;
    }
    .a-l-header-heading-container {
        padding-left: 50px;
    }
}
@media only screen and (max-width: 900px) {
    header {
        height: 500px;
    }
}
@media only screen and (max-width: 675px) {
    .a-l-header-heading-container {
        padding-left: 20px;
    }
	.a-l-project-disc-header::before {
        height: 40%;
    }
}







/* --- PROJECT DESCRIPTION --- */
.a-l-project-description-container {
    padding-top: 10px;
    padding-left: 150px;
    border-top: 1px solid #32B3C5;
}
.a-l-project-description-container:nth-child(1) {
    border-top: none;
}
.a-l-project-description-container:nth-child(even) {
    background-color: #F9FBFC;
}
.a-l-project-description {
    padding-top: 100px;
    padding-bottom: 200px;
}
.a-l-project-disc-header {
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
.a-l-s-about-disc {
	background-image: url("https://www.ckarchitecturalleeds.co.uk/wp-content/uploads/2022/03/Office.png");
}
.a-l-s-bio-disc {
	background-image: url("https://www.ckarchitecturalleeds.co.uk/wp-content/uploads/2022/03/Carpark.png");
}
.a-l-s-buildings-disc {
	background-image: url("https://www.ckarchitecturalleeds.co.uk/wp-content/uploads/2022/02/building.jpg");
}
.a-l-s-sustain-disc {
	background-image: url("https://www.ckarchitecturalleeds.co.uk/wp-content/uploads/2022/03/Roof-Top-6.png");
}
.a-l-s-dev-disc {
	background-image: url("https://www.ckarchitecturalleeds.co.uk/wp-content/uploads/2022/03/Front-Montage-Pre-Production-scaled.jpg");
}
@media only screen and (max-width: 1280px) {
    .a-l-project-description-container {
        padding-left: 50px;
    }
}
@media only screen and (max-width: 675px) {
    .a-l-project-description-container {
        padding-left: 20px;
    }
    .a-l-project-disc-header {
        height: 250px;
    }
    .a-l-project-description {
        padding-bottom: 75px;
    }
}










.a-l-swipe {
    height: 100%;
}
.a-l-slider-render-container iframe {
    z-index: 2;
}
.a-l-gallery {
    padding-bottom: 200px;
}
.a-l-slider-main-wrapper {
    position: relative;
}
.a-l-gallery-header {
    padding-left: 150px;
    padding-bottom: 75px;
	display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.a-l-slider-inner-container {
    display: flex;
    /*position: relative;*/
}
.a-l-slider-item {
    width: 640px;
    height: 385px;
    flex-shrink: 0;
    padding-left: 10px;
    overflow: hidden;
    cursor: pointer;
    padding-bottom: 10px;
    user-select: none; /* standard syntax */
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
    position: relative;
}
.a-l-slider-item::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background-color: rgba(255,255,255,0);
    transition: var(--transition);
}
.a-l-slider-item:hover::before {
    background-color: var(--color);
}
.a-l-slider-item::after {
    content: url('https://www.ckarchitecturalleeds.co.uk/wp-content/uploads/2022/02/zoom.png');
    position: absolute;
    top: 28px;
    left: -31px;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition);
}
.a-l-slider-item:hover::after {
    opacity: var(--opacity);
}
.a-l-close-img {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    padding: 50px;
    display: none;
    cursor: pointer;
}
.a-l-slider-container {
    overflow-x: scroll;
    direction: rtl;
    border-top: 1px solid #32B3C5;
    border-bottom: 1px solid #32B3C5;
    padding-top: 10px;
    position: relative;
    scroll-behavior: smooth;
	scrollbar-width: none;
}
.a-l-button-left {
    position: absolute;
    top: 10px;
    left: 0;
    width: 150px;
    height: calc(100% - 20px);
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 3;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all .5s ease;
}
.a-l-button-right {
    position: absolute;
    top: 10px;
    right: 0;
    width: 150px;
    height: calc(100% - 20px);
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 3;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all .5s ease;
}
.a-l-button-left img {
    user-select: none; /* standard syntax */
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}
.a-l-button-right img {
    user-select: none; /* standard syntax */
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}
.a-l-slider-inner-container {
    direction: rtl;
}
.a-l-slider-item-container {
    width: inherit;
    height: inherit;
    overflow: hidden;
}
.a-l-slider-render-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: inherit;
    height: inherit;
}
.a-l-slider-render-container iframe {
    width: inherit !important;
    height: inherit !important;
}
.a-l-slider-render-container img {
    height: 100%;
}
/* width */
.a-l-slider-container::-webkit-scrollbar {
    height: 0;
}
@media only screen and (max-width: 1280px) {
    .a-l-gallery-header {
        padding-left: 50px;
    }
    .a-l-gallery {
        padding-right: 50px;
    }
}
@media only screen and (max-width: 900px) {
    .a-l-close-img {
        padding: 10px;
        transform: scale(0.5);
        top: -25px;
        right: -25px;
    }
}
@media only screen and (max-width: 675px) {
    .a-l-gallery {
        padding-right: 20px;
        padding-bottom: 75px;
    }
    .a-l-gallery-header {
        padding-left: 20px;
    }
    .a-l-slider-item {
        width: 400px;
        height: 241px;
    }
}




/* --- F A Q S --- */
.a-l-faqs-accordion-container {
	padding-right: 50px;
}
.a-l-faqs {
    padding-left: 150px;
    padding-bottom: 350px;
}
.a-l-faqs-header {
    padding-bottom: 75px;
}
.a-l-faqs-header h2 {
    user-select: none; /* standard syntax */
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}
.a-l-faqs-button {
    cursor: pointer;
    transition: all .5s ease;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.a-l-faqs-button img {
    width: 100%;
    height: 100%;
}
.a-l-but-line {
    height: 4px;
    width: 40px;
    background-color: #32B3C5;
    border-radius: 4px;
}
.a-l-but-line:nth-child(1) {
    transform: rotate(90deg);
    position: relative;
    top: 16px;
}
.a-l-but-line:nth-child(2) {
    position: relative;
    top: 12px;
}
.a-l-faqs-item-answer .a-l-paragraph {
    padding-left: 0;
}
.a-l-faqs-item-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #32B3C5;
}
.a-l-faqs-item-container {
    padding-bottom: 30px;
}
.a-l-faqs-item-heading p {
	line-height: 1.875rem;
}
/* for js*/
.a-l-faqs-item-answer .a-l-paragraph {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    transition: all .5s ease;
    display: none;
    opacity: 0;
}
@media only screen and (max-width: 1280px) {
    .a-l-faqs {
        padding-right: 50px;
        padding-left: 50px;
    }
	.a-l-faqs-accordion-container {
		padding-right: 0;
	}
}
@media only screen and (max-width: 675px) {
    .a-l-faqs {
        padding-right: 20px;
        padding-left: 20px;
    }
    .a-l-faqs-button {
        width: 20px;
        height: 20px;
    }
}





/* --- NEW UPDATE --- */
.inception-header h2 {
    font-family: 'Playfair Display', serif;
    color: #264145;
    padding-top: 30px;
    font-size: max(3.7vw, 2.1rem);
}
.eco-states p {
    font-family: 'Open Sans', sans-serif;
    color: #264145;
    font-size: max(1.4vw, 1.2rem);
    font-weight: 600;

    display: inline-block;
}
.eco-states div {
    border-bottom: 1px solid #264145;
    padding-top: 20px;
    padding-bottom: 20px;
}
.eco-states {
    padding-bottom: 150px;
}
.eco-states div span{
    font-family: 'Open Sans', sans-serif;
    font-size: max(2.5vw, 2rem);
    padding-right: 3px;
    color: #6CBF1F;
    font-weight: 600;
}
.a-l-paragraph-inception {
    padding-bottom: 100px;
    padding-left: 0;
}
.a-leaves {
    width: 37px;
    position: relative;
    bottom: 17px;
    right: 15px;
}
.a-l-inception-content-flex {
    display: flex;
    justify-content: space-between;
}
.a-l-inception-img-flex {
    width: 500px;
    display: flex;
    align-items: center;
}
.a-l-inception-img-flex img {
    width: 100%;
}
.a-l-inception-content-flex {
    padding-right: 50px;
}

@media only screen and (max-width: 900px) {
    .eco-states div {
        position: relative;
    }
    .a-leaves {
        position: absolute;
        top: -18px;
        right: -26px;
    }
    .eco-states div span {
        font-family: 'Open Sans', sans-serif;
        font-size: max(2.5vw, 3rem);
        padding-right: 5px;
        color: #6CBF1F;
        font-weight: 600;
    }
    .eco-states p {
        font-family: 'Open Sans', sans-serif;
        color: #264145;
        font-size: max(1.4vw, 1.2rem);
        font-weight: 600;
        display: inline-block;
        line-height: 28px;
        position: relative;
        top: -1px;
    }
    .eco-states div {
        border: 1px solid #264145;
        margin-bottom: 30px;
        padding: 30px;
        display: flex;
        align-items: flex-start;
    }
    .a-l-projects-disc-content>div {
        padding-right: 50px;
    }
}
@media only screen and (max-width: 675px) {
	.a-l-project-description {
    	padding-top: 70px;
	}
    .a-l-projects-disc-content>div {
        padding-right: 20px;
    }
    .a-leaves {
        position: absolute;
        top: -21px;
        right: -20px;
    }
    .a-l-inception-content-flex {
        padding-right: 20px;
        display: block;
    }
    .a-l-inception-img-flex {
        width: 100%;
    }
	.a-l-paragraph-inception {
		padding-right: 0;
	}
}