* {
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    background-color: #AEECFB;
}
@import url('https://fonts.googleapis.com/css2?family=Imprima&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&family=Source+Sans+Pro:wght@400;600&display=swap');
.title {
    font-size: 25px;
    font-family: 'Playfair Display', Georgia, serif;
    margin: 33px 0 30px 10vw;
}
.contacts{
    position:absolute;
    bottom:10px;
    right:10px;
}
.contacts a img{
    width:30px;
    height:30px;
    margin:0 5px;
}
.contacts a img:hover{
    transform:scale(1.25);
}
.container {
    width: 100vw;
    min-height: 80vh;
    display: flex;
    flex-wrap: wrap;
    gap: 80px 185px;
    justify-content: center;
    align-items: center;
    margin: 80px 0;
}

.LableaderBox {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;

}

.Lableader {
    background-color: #d4cdb2;
    border-radius: 10px;
    box-shadow: -1px 3px 7px 2px rgba(0, 0, 0, 0.4);
    width: min(600px, 50vw);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding:50px 0 70px;
    min-height:300px;
    position: relative;
}
.photo img {
    width: 170px;
    height: 200px;
    border: 1px solid black;
    border-radius: 4px;
}
.photo{
    position: relative;
}
.camera{
    position:absolute;
    top:calc(100% - 20px);
    left:50%;
    transform:translateX(-50%);
    background:#54d5f6;
    border:1px solid gray;
    width:40px;
    height:40px;
    border-radius: 50%;
    text-align: center;
    font-size:x-large;
}
.camera:hover{
    background-color: rgb(0, 255, 170);
    cursor:pointer;
}

.P {
    width: 300px;
    /* height: 500px; */
    padding:50px 0 70px;
    background-color: #d4cdb2;
    border-radius: 10px;
    box-shadow: -1px 3px 7px 2px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    min-height: 360px;
}
.cut{
    position:absolute;
    top:10px;
    left:10px;
    border: 1px solid #ff8888;
    background: #ffdddd;
    padding:1px 2px;
    border-radius: 3px;
    width:max-content;
}
.cut:hover{
    background: #ffbbbb;
    cursor:pointer;
}
.labMembersPen{
    position: absolute;
    right: 10px;
    top:10px;
    background-color: #f5f5f5;
    border:1px solid rgb(156, 155, 155);
    padding:1px 4px;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.labMembersPen:hover{
    cursor: pointer;
    background-color: yellowgreen;
}

.InfoBox {
    text-align: left;
    font-size: 20px;
    /* max-width: 80%; */
    margin-left: 5%;
}

.InfoBox.InfoBox1 {
    font-size: 25px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.info1 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-family: 'Playfair Display', Georgia, serif;
}

.info2 {
    font-size: 1em;
}

.info3 {
    font-size: 0.9em;
    margin-bottom: 8px;
}

.info4 {
    font-size: 0.8em;
    text-decoration: underline;
}
.add_members{
    font-size: 25px;
    border:1px solid rgb(111, 111, 111);
    position:absolute;
    top:50%;
    left:50%;
    text-align: center;
    border-radius:5px;
    background-color: rgb(239, 239, 18);
    box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.4);
    /* transform:translateY(0); */
    transform:translate(-50%,-50%);
    transition:transform 200ms ease-in-out;
    font-family: 'Source Sans Pro', sans-serif;
}
.add_members:hover{
    background-color: rgb(155, 244, 12);
    box-shadow: 0px 3px 2px 1px rgba(0, 0, 0, 0.4);
    transform:translate(-50%,calc( -50% + -3px ));
}
.pAddMember{
    border:3px solid black;
    border-style: dashed;
    border-radius:5px;
}
@media (max-width:1000px) {
    .Lableader {
        width: 300px;
        flex-direction: column;
    }

    .InfoBox.InfoBox1 {
        font-size: 20px;
    }
}

