@import "style/fonts.css";

/* project-top__strat*/

.project {
    margin-top: 30px;
    margin-bottom: 30px;
}

.project-info__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.project-top__title {
    font-family: "EB";
    font-size: 48px;
    line-height: 98%;
    text-transform: uppercase;
    text-align: center;
    color: #333;
}


.project-top__list {
    display: flex;
    gap: 30px;
}

.project-list__link {
    position: relative;
    font-family: "Arial";
    font-size: 18px;
    line-height: 143%;
    color: #000;
    display: flex;
    flex-direction: column;
    transition: color 500ms;
}

.project-list__link::before {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    position: absolute;
    bottom: 0;
    background: #f79900;
    transition: width 500ms;
    margin-bottom: -5px;
}

.project-list__link:hover {
    color: #f79900;
}

.project-list__link:hover.project-list__link::before {
    width: 100%;
}

/* project-top__end*/

/*project-bottom__start*/

.project-info__bottom {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}

.project-bottom__left {
    background: url("../../image/Rectangle 17.png") no-repeat center/cover;
    max-width: 574px;
    width: 100%;
    height: 543px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*padding-top: 150px;*/
}

.project-left__text {
    max-width: 410px;
    width: 100%;
    font-family: "Arial";
    font-size: 60px;
    line-height: 117%;
    color: #fff;
    text-align: left;

}

.project-left__span {
    color: #f79900;
}

.project-right__span {
    color: #070508;
}


.project-info__right {
    border: solid 15px;
    padding-left: 20px;
    color: #f79900;
    width: 100%;
    max-width: 700px;
    padding-top: 30px;
    position: relative;
}

.project-right__text {
    font-family: "Arial";
    font-size: 14px;
    line-height: 143%;
    color: #373636;
    margin-top: 50px;
}

.project-right__group {
    display: flex;
    margin-top: 40px;
}

.icon {
    color: #9e9e9e;
}

.project-group__link {
    color: #9e9e9e;
    margin-right: 15px;
    margin-bottom: 60px;
}

.project-right__photo {
    padding-right: 15px;
}

.project-right__vtext {
    width: max-content;
    color: #d7d7d7;
    background: #f79900;
    padding: 15px;
    position: absolute;
    display: block;
    content: "";
    top: 470px;
    left: 430px;
}

@media (max-width: 1240px) {
    .project-info__bottom{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}


@media (max-width: 1218px) {
    .project-right__vtext{
        top: 300px;
        left: 570px;
    }
}

@media (max-width: 726px) {
    .project-right__text{
        width: 100%;
        max-width: 431px;
        font-size: 10px;
    }
    .project-info__right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .project-right__photos {
        display: none;
    }
    .project-right__vtext {
        display: none;
    }
}

@media (max-width: 460px) {
    .project-left__text{
        font-size: 40px;
    }
}

@media (max-width: 374px) {
    .project-top__list{
        display: flex;
        flex-direction: column;
        /*display: grid;*/
        /*grid-template-columns:4 , 2fr;*/
    }

}

@media (max-width: 364px) {
    .project-left__text{
        font-size: 40px;
    }
}