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%;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    height: 100%;
    background: #cfcfcf;
    background-size: cover
}

body {
    line-height: 1;
    box-sizing: border-box;
    font-size: 16px;
    background: #cfcfcf;

}

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    color: black;
}


h1 {
    font-size: 40px;
    text-align: center;
    margin: 20px auto;
    font-weight: 700;
}

h2 {
    font-size: 30px;
    margin: 20px auto;
    text-align: center;
    font-weight: 600;
}

main {
    margin-bottom: 50px;
    margin-top: 90px;
}

.contact-svg {
    width: 20px;
}

.container {
    max-width: 60%;
    margin: 50px auto;
    border: 4px solid rgb(46 46 46 / 77.3%);
    border-radius: 50px;
    padding: 60px;
    box-shadow: 1px 1px 20px 20px #f5f5f5;
}



.title {
    margin-left: 40px;

}

.main-info {
    display: flex;
    justify-content: space-evenly;
    margin: 30px auto;
    padding-bottom: 45px;
    border-bottom: 4px solid #000;

}

.contact {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    max-width: 30%;

}

.contact-link{
    display: flex;
    align-items: center;
    justify-content: center;
}


.avatar {
    max-width: 30%;

}

.avatar-photo {
    border-radius: 50%;
    width: 100%;

}

.social {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    max-width: 30%;
}

.contact-text {
    margin-left: 7px;
}


.about {
    padding-bottom: 25px;
    border-bottom: 4px solid #000;
}

.about-text {
    max-width: 80%;
    text-align: center;
    margin: 0 auto;
    font-style: italic;
    line-height: 25px;
}


.main-block {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 4px solid #000;
    margin-top: 40px;

}


.biography {
    max-width: 55%;
    line-height: 20px;
    margin-top: 40px;

}



.biography-list li {
    margin-top: 40px;
}

.biography-list li span {
    font-weight: 800;
    display: block;
    padding-bottom: 10px;

}

.information-block {
    max-width: 30%;
    margin-top: 40px;
    margin-right: 50px;
    display: flex;
    flex-direction: column;
    align-items: start;

}

.information-block-item {
    margin-top: 30px;
    min-width: 100%;
}

h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    background: #fff;
    min-width: 100%;
}

h4:hover {
    box-shadow: 1px 1px 10px 10px #f5f5f5;

}

.information-block-item li {
    margin-top: 10px;
    line-height: 20px;
    margin-left: 15px;
    min-width: 100%;
}

.information-block-item p {
    line-height: 20px;
    min-width: 100%;
}

.languages li {
    min-width: 100%;
}

.free-space {
    height: 600px;
}

a:hover {
    font-weight: 700;
    box-sizing: content-box;
}

.accordion-item-content {
    min-width: 100%;
    height: 0;
    opacity: 0;
    border: 1px solid #fff;
    border-radius: 10px;
    background-color: #fff;
    padding: 10px;
    overflow: hidden;
}


.accordion-item-active .accordion-item-content {
    height: max-content;
    opacity: 1;
}