body {
    background-color: #FAF8F6;
    font-family: "Courier";
}

@font-face {
    font-family: "Courier";
    src:
        url(../fonts/CourierPrime-Bold.ttf) format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Courier";
    src:
        url(../fonts/CourierPrime-BoldItalic.ttf) format("truetype");
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Courier";
    src:
        url(../fonts/CourierPrime-Regular.ttf) format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Courier";
    src:
        url(../fonts/CourierPrime-Italic.ttf) format("truetype");
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
nav{
    align-items: end;
    padding-top: 3rem;
    position: relative;
    row-gap: 1.5rem;
}
nav .logo-img img {
    width: 225px;
    object-fit: contain;
}

nav .links-container {
    padding-left: 16.8rem;
}

nav .links-container a {
    text-decoration: none;
    font-size: 19px;
    font-weight: normal;
    font-style: normal;
    color: #000000;
    opacity: 0.25;
    line-height: 1;
}
nav .links-container a.active{
    opacity: 1;
}
nav .language{
    display: flex;
    gap: 1rem;
    align-items: end;
}
nav .language button{
    font-size: 19px;
font-weight: normal;
font-style: normal;
color: #000000;
opacity: 0.25;
border: none;
outline: none;
padding: 0;
line-height: 1;
background-color: transparent;
}
nav .language button.active{
    opacity: 1;
}
/* homepage css */
.homepage-container {
    min-height: 90vh;
}

.homepage-container h1 {
    font-size: 4rem;
}

/* Cookie css */
.cookie-box{
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    border-radius: 5px;
    padding: 10px;
filter: drop-shadow(0px 0px 7px rgba(0,0,0,0.04 ));
background: #ffffff
}
.cookie-box .top-heading{
font-size: 14px;
font-weight: bold;
font-style: normal;
margin: 0;
}
.cookie-box .sec-section h3{
font-size: 12px;
font-weight: normal;
line-height: 12px;
font-style: italic;
margin: 0;
}
.cookie-box .sec-section .btn-container button{
white-space: pre;
font-size: 16px;
font-weight: normal;
line-height: 22px;
font-style: normal;
}
.cookie-box .sec-section .btn-container button:nth-child(1){
    border: none;
    outline: none;
    padding: 0;
    padding-bottom: 3px;
    border-bottom: 1px solid #000;
    background-color: transparent;
}
.cookie-box .sec-section .btn-container button:nth-child(2){
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 120px;
}
.cookie-box .sec-section .btn-container button:nth-child(3){
    padding: 10px 20px;
    background-color: #000;
    border: 1px solid #000;
    border-radius: 120px;
    color: #fff;
}
.cookie-third-div{
    display: flex;
    border-top: 1px solid #000;
    margin-top: 1rem;
}
.cookie-third-div .left-btns{
    width: 320px;
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
    padding-right: 1rem;
    padding-top: 1rem;
    border-right: 1px solid #000;
}
.cookie-third-div .left-btns button{
    height: 55px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: normal;
    font-style: normal;
    color: #000;
    border: 1px solid  #000;
    background-color: #fff;
}
.cookie-third-div .left-btns button:hover{
    color: #fff;
    border: 1px solid  #000;
    background-color: #000;
}
.cookie-third-div .right-btns{
    flex: 1;
}
/* Projects Home page css */
.projects-container {
    margin-top: 14rem;
    margin-bottom: 18rem;
    max-width: 860px;
}

.projects-container .project-card {
    background-color: #FAF8F6;
    cursor: pointer;
    position: relative;
    color: #000000;
overflow: hidden;
}
.projects-container .project-card::after{
    content: 'click to view detail';
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(101%);
    background-color: #00000091;
    z-index: 999;
    transition: all .3s ease;
}
.projects-container .project-card:hover::after{
    transform: translateY(0%);
}
.projects-container .project-card img {
    height: 763px;
    object-fit: cover;
}

.projects-container .project-card .card-content h5 {
    margin: 0;
    font-size: 1.625rem;
    font-style: normal;
    font-weight: bold;
    line-height: 1.938rem;
}

.projects-container .project-card .card-content p {
    margin: 0;
    font-size: 1.313rem;
    line-height: 1.375rem;
    font-style: italic;
    font-weight: normal;
}

/* Project detail container */
.projects-details-container {
    margin-top: 14rem;
    margin-bottom: 18rem;
    max-width: 860px;
}

.projects-details-container .project-details-content h2 {
    font-size: 26px;
    font-weight: bold;
    font-style: normal;
    margin: 0;
}

.projects-details-container .project-details-content h3 {
    font-size: 19px;
    font-weight: normal;
    line-height: 22px;
    font-style: italic;
    margin: 0;
}

.projects-details-container .project-details-content p {
    font-size: 15px;
    font-weight: normal;
    line-height: 21px;
    font-style: normal;
    margin: 0;
}

/* Footer css */
footer {
    font-family: "Courier New";
    color: #000000;
    font-style: normal;
}

footer .footer-logo img {
    width: 163px;
    object-fit: contain;
}

footer .footer-links h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    line-height: 1;
}

footer .footer-links a {
    text-decoration: none;
    font-size: 1rem;
    color: #000;
}
footer .footer-links a.active{
    font-weight: bold;
}

/* About page css */

.about-container {
    margin-top: 14rem;
    margin-bottom: 18rem;
    max-width: 860px;
    font-family: "Courier New";
    color: #000;
}


.about-container .author-img img {
    width: 454px;
    object-fit: cover;
}

.about-main-content {
    width: 302px;
}

.about-main-content .about-content-box h2 {
    font-size: 26px;
    font-weight: bold;
    font-style: normal;
    line-height: 1;
    margin: 0;
}

.about-main-content .about-content-box p {
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
    margin: 0;
    line-height: 1.5;
}


/* Contact page css */
.contact-container {
    margin-top: 14rem;
    margin-bottom: 30rem;
    max-width: 860px;
    font-family: "Courier New";
    color: #000;
}

.contact-content h2 {
    font-size: 26px;
    font-weight: bold;
    font-style: normal;
    margin: 0;
}

.contact-content h3 {
    font-size: 21px;
    font-weight: normal;
    line-height: 20px;
    font-style: italic;
    margin: 0;
}

.contact-content .contact-info {
    margin-top: 3rem;
    font-size: 15px;
}

/* terms and conditions and cookie privacy policy css */
.terms-and-conditions-container {
    margin-top: 14rem;
    margin-bottom: 12rem;
    max-width: 860px;
    font-family: "Courier New";
    color: #000;
}

.terms-and-conditions-container .header-content h2 {
    font-size: 26px;
    font-weight: bold;
    font-style: normal;
    margin: 0;
    line-height: 1;
}

.terms-and-conditions-container .header-content h3 {
    font-size: 19px;
    font-weight: normal;
    line-height: 22px;
    font-style: italic;
    margin: 0;
}

.terms-and-conditions-container .body-content h2 {
    font-size: 26px;
    font-weight: bold;
    font-style: normal;
    margin: 0;
    line-height: 1;
}

.terms-and-conditions-container .body-content p {
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
    margin: 0;
    line-height: 1.5;
}
.spacer-one{
    height: 1rem;
}
.cookie-box .cookie-third-div{
    display: none;
}

@media screen and (max-width:476px){
    .spacer-one{
        display: none;
    }
    nav .language{
        position: absolute;
        top: 1rem;
        right: 1rem;
gap:0.5rem;
        }
        
nav .language button{
    font-size: 1rem;
}
    nav{
        padding-top: 1rem!important;
        flex-direction: column;
        align-items: center;
    }
    nav .logo-img img{
        width: 160px;
    }
    nav .links-container {
        padding-left: 0rem;
    }
    
    nav .links-container a {
        font-size: 16px;
    }

    footer{
        flex-direction: column;
        row-gap: 3rem;
    }
    /* Projects Home page css */
.projects-container {
    margin-top: 5rem;
    margin-bottom: 5rem;
    
}
.projects-container .project-card img {
    height: 250px;
    width: 100%;
}
.projects-container .project-card .card-content {
    margin-top: 1rem!important;
}
.projects-container .project-card .card-content h5 {
    font-size: 1.2rem;
    line-height: 1.5rem;
}
.projects-container .project-card .card-content p {
    font-size: 1rem;
    line-height: 1rem;
}

.projects-details-container {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.projects-details-container .project-details-content h2 {
    font-size: 20px;
}

.projects-details-container .project-details-content h3 {
    font-size: 16px;
    line-height: 22px;
}

.projects-details-container .project-details-content p {
    font-size: 14px;
    line-height: 21px;
}

/* About page css */

.about-container {
    margin-top: 5rem;
    margin-bottom: 5rem;
    flex-direction: column;
    row-gap: 2rem;
}

.about-container .author-img img {
    width:100%;
}

.about-main-content {
    width: 100%;
}

.about-main-content .about-content-box h2 {
    font-size: 20px;
}

.about-main-content .about-content-box p {
    font-size: 14px;
    line-height: 21px;
}

/* Contact page css */
.contact-container {
    margin-top: 5rem;
    margin-bottom: 20rem;
}

.contact-content h2 {
    font-size: 20px;
    margin-bottom: 0.5rem!important;
}

.contact-content h3 {
    font-size: 18px;
}

.contact-content .contact-info {
    margin-top: 2rem;
    font-size: 16px;
}

.homepage-container {
    min-height: 75vh;
}
.homepage-container h1 {
    font-size: 2.5rem;
}
footer .footer-links h2 {
    font-size: 1.2rem;
}

/* terms and conditions and cookie privacy policy css */
.terms-and-conditions-container {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.terms-and-conditions-container .header-content h2 {
    font-size: 22px;
}

.terms-and-conditions-container .header-content h3 {
    font-size: 16px;
    line-height: 22px;
}

.terms-and-conditions-container .body-content h2 {
    font-size: 20px;
}

.terms-and-conditions-container .body-content p {
    font-size: 14px;
    line-height: 1.4;
}

.cookie-box{
    bottom: 0.25rem;
    left: 0.25rem;
    right: 0.25rem;
    border-radius: 0.5rem;
    padding:1rem;
}
.cookie-box .top-heading{
font-size: 16px;
line-height: 1;
}
.cookie-box .sec-section{
    flex-direction: column;
}
.cookie-box .sec-section h3{
font-size: 12px;
line-height: 16px;
}
.cookie-box .sec-section .btn-container{
    flex-direction: column;
    row-gap: 0.5rem;
    padding-top: 1rem;
}
.cookie-box .sec-section .btn-container button{
font-size: 12px;
line-height: 16px;
}
.cookie-box .sec-section .btn-container button:nth-child(2){
    padding: 6px 20px;
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 120px;
}
.cookie-box .sec-section .btn-container button:nth-child(3){
    padding: 6px 20px;
    background-color: #000;
    border: 1px solid #000;
    border-radius: 120px;
    color: #fff;
}
}


/**correctino KHA 20231001**/
.offset-kha-projects{
    padding-left: 13.75rem;
}

/* .mx-auto {
    margin-right: 0 !important;   
} */

.font-homepage-text-reveal{
font-size: 63px;
font-weight: normal;
font-style: normal;
margin: 0;
line-height: 1.5;
font-style: italic; text-align: center;
margin-bottom:200px;
padding-top:15px;
}

.mt-5 {
    margin-top: 1rem;
}