* {
	box-sizing: border-box;
	font-family: verdana;
}

body {
	background: #000;
	color: #fff;
}

ul {
	padding-inline-start: 14px;
}

li + li {
	margin-top: 10px;
}

/****************************/
/****************************/
/****************************/

#imgprofile {
	border-radius: 50%;
	max-width: 96px;
	transition: max-width .5s ease, padding .5s ease;
}

/****************************/
/****************************/
/****************************/

.flex {
	display: flex;
	align-items: center;
}

.columnFlex {
	flex-direction: column;
}

.columnFlex + .columnFlex {
	margin-left: 20px;
}

/****************************/
/****************************/
/****************************/

.expand-section {}
.expand-title {
	cursor: pointer;
	padding: 15px 0;
	position: relative;
	text-align: center;
	background: rgba(0, 0, 0, 0.01);
}

.expand-title:hover {
	background: rgba(0, 0, 0, 0.05);
	border-radius: 0 0 5px 5px;
}

.expand > .expand-title {
	border-bottom: 1px solid #dfdfdf;
}

.expand-title:after {
    content: '+';
    position: absolute;
    transition: transform .5s ease, padding .5s ease;
    right: 10px;
}

.expand > .expand-title:after{
	transform: rotate(135deg);
}

.expand-content {
	height: 0;
	overflow: hidden;
	padding: 0 15px 0;
	transform: translateZ(-1000px);
	transition: height .5s ease, padding .5s ease;
	visibility: hidden;
}

.expand > .expand-content {
	height: 150px;
	visibility: visible;
}
   

   
/****************************/
/****************************/
/****************************/

.mybox {
    background: #efefef;
    border-radius: 2px;
    box-shadow: 0px 0px 5px #fff;
	color: #333;
	margin: 10% auto;
	min-width: 400px;
    padding: 20px 30px;
	width: 30%;
}

.mybox-title {
	font-size: 25px;
	text-shadow: 1px 1px 1px #ccc;
}

.basicinfo {
	border-bottom: 1px solid #dfdfdf;
	padding-bottom: 15px;
}

.contacts {
    margin: 10px 0;
	text-align: left; 
}

.contacts img{
    margin-right: 10px;
	max-width: 25px;
}
.contacts img:hover {
	filter: invert(0.25);
}


@media only screen and (max-width: 768px) {
    .mybox{
    	margin: 20px auto;
		min-width: 300px;
		padding: 10px;
		width: 90%;
    }

    .mybox-title {
    	font-size: 20px;
    }
}