* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    
}

p {
    color: #a0a0a0;
}

:root {
    --yellow: #ffcc00;
    --lighterPink: #f9aecd;
    --lighterPurple: #beb0ff;
    --sky: #56ddf0;
    --gr-ye: #c0ed0c;
    --drakOrange: #fc3232;
    --lightpink: #fa339c;
    --lightpurple: #9535f9;
    --drakblue: #0050ff;
    --lightgreen: #2add5d;
    --brown: #660405;
    --pink: #78034a;
    --purple: #69197c;
    --blue: #03357c;
    --green: #014c35;
    --white: #a0a0a0;
}

body {
    /* background-color: var(--lighterPurple); */
    background-color: #0a0a0a;
    font-family: 'Poppins', sans-serif  ;
}


/* Header Start */
.header {
    width: 100%;
}

.header-container {
    padding: 20px 200px;
}

/* .header-container a {
    z-index: 9999;
} */

.header-container img {
    max-width: 150px;

}

.header-container a img {
    text-align: center;
}

/* Can be Changed */

.header-container img:hover {
    color: #2c2c2c;
    max-width: 155px;
    transition: 0.3s;
}

/* END Change */

.links {
    padding-top: 20px;
    max-width: 25%;
}

.links ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid none;
    padding: 30px 0px;
    list-style: none;
    border-radius: 10px;
    text-align: start;
}

.links ul li a {
    position: relative;
    text-decoration: none;
    font-size: 18px;
    color: #a0a0a0;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.links ul li a::after {
    content: "";
    position: absolute;
    /* background-color: var(--purple); */
    background-color: #a0a0a0;
    height: 3px;
    width: 0%;
    left: 0;
    bottom: -10px;
}

.links ul li a:hover {
    color: #ffffff;
}

.links ul li a:hover::after {
    width: 100%;
    transition: 0.3s;
}

/* Header END */

.background-img {
    background-image: url("../img/Sanne_Bas_-_Curio_-_Terheijdenseweg_350-2.jpg");
    height: 50vh;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.background-image {
    height: 50vh !important;
    margin: 60px 0 !important;
}

/* Section Start */

section {
    margin: 60px ;
}

.container-B {
    padding: 20px 0;
}


.section-holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-holder {
    padding-top: 30px;
    display: flex;
    /* align-items: center; */
    flex-direction: column;
    margin: 0 auto ;
}

.info-holder img {
    max-width: 50rem;
    background-color: #ffffff;
    margin-top: 30px;
}

.info-holder p {
    line-height: 1.6;
    font-weight: bolder;
    font-size: 18px;
}

.text {
    padding: 0 200px;
    align-items: center;
}

.text p {
    color: #a0a0a0;
    font-weight: 600;
}

h1 {
    color: #a0a0a0;
}

.right-section-holder {
    padding-right: 340px;

}

.right-section-holder img {
    width: 450px;
    height: 400px;
    border-radius: 50%;
    border: 10px solid #a0a0a0;
}

/* Section END */

/* Start Container mid */

.container {
    padding: 20px 200px;
}

.content {
    width: 700px;
    margin: auto;
}

.nav-holder {
    /* padding-top: 100px; */
    width: 700px;
    margin: auto;

}


.nav-holder ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #a0a0a0;
    padding: 20px;
    border-radius: 10px;
    list-style: none;
    /* position: fixed; */
    /* z-index: 1000; */
}

.nav-holder ul li a {
    position: relative;
    text-decoration: none;
    color: #a0a0a0;
    font-size: 18px;
    font-weight:bold;
}

.nav-holder ul li a::after {
    content: "";
    position: absolute;
    /* background-color: var(--purple); */
    background-color: #a0a0a0;
    height: 3px;
    width: 0%;
    left: 0;
    bottom: -10px;
}

.nav-holder ul li a:hover {
    color: #ffffff;
}

.nav-holder ul li a:hover::after {
    width: 100%;
    transition: 0.3s;
}



.holder {
    padding-top: 30px;
}

.card-holder {
    /* border: 1px solid #a0a0a0; */
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.sec {
    padding-top: 0px !important;
}

.text-holder {
    /* padding: 15px 0; */
    /* margin: 0 auto; */
    height: 100%;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    
}

.card-image {
    width: 100%;
    height: 100%;
    /* background-color: #a0a0a0; */
    height: 150px;
    border-radius: 10px 10px 0 0 ;
}

.card-image img {
    width: 100%;
    height: 180px;
    border-radius: 10px;
}

/* .T .card-image img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
} */

.text-holder div {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.text-holder h2 {
    color: #a0a0a0;
    font-size: 18px;
    text-align: center;
}

.text-holder p {
    color: #a0a0a0;
    font-size: 15px;
    padding-top: 10px;
    /* margin: 0 8px 5px; */
}

.roo p {
    color: #a0a0a0;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: bold;
}

.roo {
    /* width: 100%; */
    /* display: flex; */
    justify-content: space-between !important;

}



.card {
    border: 1px solid lightgray;
    width: 100%;
    height: 290px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 10px;
    box-shadow: 3px 3px 8px rgb(37, 37, 37);
}

.one {
    width: 30%;
}

.T {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.T h2 {
    font-weight: bold;
    font-size: 24px;
}

.title-text {
    position: relative;
}

h3 {
    color: #ffffff;
    font-size: 120px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0.1;
    text-align: center;
    /* padding-top: 50px; */
    /* position: absolute;
    left: 14%;
    top: 17px; */
}


.holder .card-holder .R img {
    width: 700px;
    border-radius: 10px;
}

.card-t {
    /* border: 1px solid #a0a0a0; */
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 10px;
    padding: 20px ;
}

.card-t div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-t div img {
    width: 105px;
    border-radius: 50%;
    cursor: pointer;
}




.img-holder-d {
    position: relative;
    display: flex;
    flex-direction: column;
}


.content-d {
    width: 105px;
    height: 105px;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: 0.6s;
    border-radius: 50%;
    cursor: pointer;
}

.content-d h5 {
    color: #a0a0a0;
    font-size: 18px;
    width: 100%;
    text-align: center;
}

.content-d:hover {
    opacity: 1;
}

/* END Container mid */


footer {
    margin: 60px;
    height: 50vh;
}

h6 {
    color: #a0a0a0;
    font-size: 45px;
    font-weight: bold;
    width: 100%;
    margin-bottom: 20px;
}