115 lines
2.3 KiB
CSS
115 lines
2.3 KiB
CSS
.about--sec_start {
|
|
height: -webkit-fit-content;
|
|
height: -moz-fit-content;
|
|
height: fit-content;
|
|
min-height: auto;
|
|
}
|
|
|
|
.about--sec_more h3 {
|
|
text-align: center;
|
|
}
|
|
|
|
.aboutProfileCardCont {
|
|
width: 70%;
|
|
margin-top: 80px;
|
|
/* margin-left: -15%; */
|
|
/* margin-left: 5%; */
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 50px;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.aboutProfileCardCont .aboutProfileCard {
|
|
background-color: var(--ci_color_tilebg);
|
|
border-radius: 15px;
|
|
padding: 30px;
|
|
width: 25%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
transition: all 0.5s;
|
|
}
|
|
|
|
.aboutProfileCardCont .aboutProfileCard:hover {
|
|
box-shadow: 10px 10px 20px 4px rgba(107, 87, 164, 0.4);
|
|
}
|
|
|
|
.aboutProfileCardCont .aboutProfileCard img {
|
|
max-width: 80%;
|
|
max-height: 60%;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.aboutProfileCardCont .aboutProfileCard h2 {
|
|
color: var(--ci_color_primary);
|
|
font-size: 28px;
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.aboutProfileCardCont .aboutProfileCard h3 {
|
|
margin-top: 0px;
|
|
color: white;
|
|
width: 90%;
|
|
}
|
|
|
|
.aboutProfileCardCont .aboutProfileCard p {
|
|
margin-top: 0px;
|
|
width: 90%;
|
|
color: white;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.sec_more .mission_zitat {
|
|
/* width: 70%; */
|
|
text-align: center;
|
|
/* color: var(--ci_color_primary); */
|
|
font-size: 26px;
|
|
/* margin-top: 55px; */
|
|
}
|
|
|
|
.sec_more .mission_zitat i {
|
|
font-family: 'Kalam', cursive;
|
|
font-weight: 400;
|
|
font-size: 24px;
|
|
}
|
|
|
|
.sec_more .mission_zitat b {
|
|
font-family: 'Roboto', sans-serif;
|
|
font-style: italic;
|
|
font-weight: normal;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.about--sec_contact .imgtextctacont {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
padding-left: 0;
|
|
}
|
|
|
|
.about--sec_contact .imgtextctacont img {
|
|
width: 320px;
|
|
height: auto;
|
|
}
|
|
|
|
.about--sec_contact .imgtextctacont .rightdiv {
|
|
margin-left: 50px;
|
|
padding-top: 20px;
|
|
font-size: 20px;
|
|
color: var(--ci_color_primary);
|
|
}
|
|
|
|
.about--sec_contact {
|
|
height: auto;
|
|
min-height: -webkit-fit-content;
|
|
min-height: -moz-fit-content;
|
|
min-height: fit-content;
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 100%;
|
|
padding-bottom: 10%;
|
|
} |