* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    position: relative;
    min-height: 100vh;
    padding-bottom: 72px;
    background-color: #ffffff;
}

header{
    height: 90px;
    background-color: #8cc34b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    margin-bottom: 78px;
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.3);
}

.header__container{
    width: 1142px;
    display: flex;
    justify-content: space-between;
    margin: auto;
}

.left{
    display: flex;
    align-items: center;
    gap: 15px;
}

.ava{
    height: 62px;
    width: 62px;
    border-radius: 50%;
    background-color: #f6f6f6;
    border: 1px solid #dbdbdb;
    background-image: url(images/scrubs.png);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.name {
    color: white;
    font-size: 21px;
    font-weight: 500;
    font-family: system-ui, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.2;
    margin-bottom: 4px;
}

.info__link{
    font-size: 14px;
    color: white;
    opacity: 0.75;
    font-family: system-ui, 'Segoe UI', Roboto, sans-serif;
    text-decoration: none;
}

.right {
    display: flex;
    align-items: center;
}

.pic {
    display: flex;
    gap: 12px;
    align-items: center;
}

.p {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
    transition: transform 0.2s ease;
    border-radius: 6px;
}
.socials-link{
    display: block;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
}
.git {
    background-image: url(images/git.png);
    
}
.skype{
    background-image: url(images/sk.png);
}
.vk {
    background-image: url(images/vk.png);
    position: relative;
    opacity: 70%;
}


.p:hover {
    transform: scale(1.08);
    cursor: pointer;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    background-color: #212121;
    height: 72px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-family: system-ui, 'Segoe UI', sans-serif;
}

.text {
    color: #656565;
    font-size: 14px;
    text-align: center;
    padding: 0 15px;
    line-height: 1.4;
}

/* @media (max-width: 600px){
    header {
        padding: 0 12px;
        height: auto;
        min-height: 90px;
        flex-wrap: wrap;
    }
    .left {
        gap: 10px;
    }
    .name {
        font-size: 18px;
    }
    .email {
        font-size: 12px;
    }
    .ava {
        height: 48px;
        width: 48px;
    }
    .pic {
        gap: 8px;
    }
} */

.future__pupil{
    margin: auto;
    margin-bottom: 120px;
}
.pupil__container{
    width: 992px;
    margin: auto;
}
.pupil__title{
    text-align: center;
    margin-bottom: 20px;
    font-size: 42px;
}
.pupil__text{
    text-align: center;
    margin-bottom: 45px;
    font-size: 21px;
    color: #727272;
}

.pupil__list{
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}
.pupil__list-item{
    list-style: none;
    width: calc(100%/2 - 50px);
    display: flex;
}
.pupil__list-item .right{
    display: block;
}
.pupil__photo{
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-right: 20px;
}
.pupil__list-item__title{
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}
.pupil__list-item__text{
    font-size: 13px;
    color: #727272;
    line-height: 1.5;
    font-weight: 00;
}
.pupil__list-item__text a{
    color: #03a9f4;
}

.hello{
    height: 140px;
    width: 137px;
    background-image: url(images/hello.png);
}
.experience{
    height: 140px;
    width: 129px;
    background-image: url(images/experience.png);
}

.tech{
    padding: 80px 130px;
    background: url(images/bg.png);
}
.tech__container{
    width: 940px;
    margin: 0 auto;
}

.tech__head{
    margin-bottom: 42px;
    text-align: center;
}
.tech__title{
    margin: 0 0 10px;
    font-size: 42px;
    font-weight: 400;
    color: #3f3c39;
}
.tech__subtitle{
    margin: 0;
    font-size: 16px;
    color: #918a82;
}

.tech__list{
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: start;
}
.tech__list-item{
    width: calc(100%/3 - 13px);
    cursor: pointer;
    background-color: #ffffff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}
.tech__list-item:hover{
    .tech__card-photo{
        border-bottom: 5px solid #8cc34b;
    }
    .tech__card-title{
        color: #8cc34b;
    }
}
.tech__card-photo{
    height: 170px;
    box-sizing: border-box;
    background-repeat: no-repeat;
}
.tech__content{
    margin: 20px;
}
.tech__card-title{
    font-size: 21px;
    margin-bottom: 17px;
}
.tech__description {
    font-size: 14px;
    color: #727272;
    line-height: 1.5;
    margin-bottom: 40px;
}
.tech__meta{
    color: #bbbbbb;
    font-size: 14px;
    padding-left: 17px;
    background-image: url(images/time.png);
    background: left cover;
    background-repeat: no-repeat;
}
.tech__status{
    padding: 20px;
    background-color: #f6f7f2;
    width: 100%;
    display: block;
    cursor: pointer;
}
.tech__checkbox{
    margin-right: 20px;
}
.tech__checkbox:checked{
    .tech__list-item{
        background-color: #edf5e3;
    }
    .tech__status{
        background-color: #e7f0db;
    }
    .tech__checkbox-text{
        color: #add37e;
    }
}

.js{
    background-image: url(images/js.png);
}
.jquery{
    background-image: url(images/jquery.png);
}
.ver{
    background-image: url(images/ver.png);
}
.adv{
    background-image: url(images/adv.png);
}
.adg{
    background-image: url(images/adg.png);
}
.cssg{
    background-image: url(images/cssg.png);
}



/* .tech1__card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    min-height: 410px;
    background: #ffffff;
}

.tech1__media {
    position: relative;
}

.tech1__image {
    display: block;
    width: 100%;
    height: 232px;
    object-fit: cover;
}

.tech1__card-title {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    margin: 0;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.1;
    color: rgba(41, 38, 36, 0.88);
}

.tech1__card--js .tech1__card-title {
    right: 0;
    bottom: 0;
    left: 0;
    padding: 14px 22px 18px;
    color: #8cc84b;
    background: rgba(255, 193, 97, 0.9);
    border-top: 4px solid #7fd25b;
}

.tech1__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 10px 18px 12px;
}

.tech1__description {
    margin: 0 0 14px;
    font-size: 13px;
    line-height: 1.35;
    color: #6a655e;
}

.tech1__meta {
    margin: auto 0 0;
    font-size: 12px;
    line-height: 1.3;
    color: #b3aea6;
}

.tech1__status {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 18px 18px;
    font-size: 18px;
    line-height: 1.2;
    color: #8c877f;
}

.tech1__checkbox {
    width: 17px;
    height: 17px;
    margin: 0;
    accent-color: #95c85a;
}

.tech1__card--jquery .tech1__status {
    color: #95c85a;
    font-weight: 700;
} */

.footer__text{
    width: 510px;
    color: #909090;
    font-size: 14px;
    text-align: center;
    line-height: 1.4;
}