* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "montserrat", sans-serif;
    background: #f5f5f5;
}

/*header*/
header {
    background: #00a7e1;
    padding: 10px;
    box-shadow: 0 4px 10px #171717;
    text-align: center;
}

header a {
    display: block;
    font-size: 19px;
    text-decoration: none;
    color: #f5f3f5;
}

.cv {
    display: flex;
    /*    max-height: 140vh;*/
    max-width: 90vw;
    margin: 40px auto;
    box-shadow: -2px 1px 55px -6px rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 776px) {
    .cv {
        display: flex;
        flex-direction: column;
    }
}

.profile-picture {
    padding: 10px;
    text-align: center;
}

.profile-picture img {
    width: 172px;
    border-radius: 50%;
}

.profile-name {
    text-transform: uppercase;
    padding: 10px;
    text-align: center;
    color: #474747;
}

.profile-name h1 {
    font-weight: 300;
    color: #474747;
}

.profile-name h1 span {
    display: block;
    font-weight: 700;
}

.profession {
    font-size: 10px;
    text-transform: uppercase;
    color: #474747;
    text-align: center;
}

.profession h2 {
    letter-spacing: 4px;
    font-weight: 300;
}

/*left side*/
.left-side {
    flex: 0 0 40%;
    padding-top: 40px;
}

.left-information {
    margin-top: 70px;
    background: #ffc7c2;
}

/*first header*/

.first-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.first-heading {
    text-transform: uppercase;
    font-size: 14px;
    padding: 10px 40px;
    width: 80%;
    background: #474747;
    color: #f5f5f5;
    text-align: center;
    position: absolute;
    transform: translateY(-50%);
}

.first-heading h1 {
    text-transform: uppercase;
    letter-spacing: 1.9px;
}

.first-header-info {
    padding: 25px 0;
    text-align: left;
    width: 70%;
}

.info-item {
    display: flex;
    margin: 25px auto;
}

.header-icon {
    font-size: 19px;
    color: #474747;
}

.header-info {
    color: #474747;
    margin-left: 10px;
}

.header-info h4 {
    font-weight: 400;
}

/*second header*/
.second-header-info .info-item {
    display: flex;
    justify-content: space-between;
}

.header-language h4 {
    font-size: 17px;
    text-transform: uppercase;
    color: #474747;
    font-weight: 400;
}

.header-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.header-bar > .bar1,
.bar2,
.bar3,
.bar4,
.bar5 {
    flex: 0 0 calc(20% - 4px);
    width: 15px;
    height: 10px;
    border-radius: 50%;
}

.white {
    background: #ebebeb;
}

.black {
    background: #474747;
}

/*third-header*/
.third-header-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.third-header-info .info-item {
    flex: 0 0 50%;
}

.header-hobbies h4 {
    font-size: 17px;
    text-transform: capitalize;
    font-weight: 400;
    color: #474747;
}

@media screen and (max-width: 992px) {
    .header-hobbies h4 {
        font-size: 14.5px;
    }
}

/*right side*/
.right-side {
    flex: 0 0 60%;
    padding: 40px;
}

.primary-header {
    display: flex;
    margin-bottom: 25px;
}

.primary-icon {
    background: #ffc7c2;
    color: #474747;
    padding: 10px 15px;
    margin-right: 10px;
    border-radius: 50%;
    font-size: 19px;
}

.primary-text {
    padding: 7px;
    text-transform: uppercase;
    color: #474747;
    width: 90%;
    border-bottom: 2.5px solid #474747;
}

@media screen and (max-width: 576px) {
    .primary-text h1 {
        font-size: 19px;
    }
}

.primary-text h1 {
    letter-spacing: 4px;
}

/*about section*/
.about-section {
    padding: 0 0 40px 0;
}

.about-text p {
    text-align: justify;
    line-height: 1.27;
    font-weight: 400;
    color: #474747;
}

/*education section*/

.education-section {
    color: #474747;
    padding: 0 0 40px 0;
}

.education-info-header {
    display: flex;
    justify-content: space-between;
}

.education-name h2 {
    font-size: 17px;
}

.education-name span {
    font-size: 10px;
    margin: 4px;
}

.education-time {
    font-size: 14px;
    text-transform: uppercase;
}

.education-text p {
    margin: 10px 0 25px 0;
    text-align: justify;
}

/*experience section*/
.experience-section {
    color: #474747;
    margin-bottom: 25px;
    padding: 0 0 40px 0;
}

/*skill*/
.skill-section {
    color: #474747;
    padding: 0 0 40px 0;
}

.skill-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.skill-item {
    flex: 0 0 calc(50% - 10px);
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.skill-name h4 {
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 400;
}

@media screen and (max-width: 576px) {
    .skill-item {
        flex: 0 0 90%;
    }

    .skill-name h4 {
        font-size: 14px;
    }
}

.gray {
    background: #e0e0e0;
}
