@font-face{font-family:"Inter";src: url("/image/Inter.ttf");}

*{padding:0;margin:0;box-sizing:border-box;font-family:"Inter",serif;}

.mainHeader{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100px;
    background: #eff1f1;
    padding: 0 calc((100vw - 1250px) / 2);
}

.mainHeader > *{
    margin-right: 35px;
}

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

.mainHeader .name{
    margin-right: auto;
    padding-bottom: 5px;
    border-bottom: 2px solid black;
}

span.bold{
    font-weight: bold;
}

span.noBold{
    font-weight: normal;
}

.divider{
    width: 1440px;
    margin: 35px calc((100vw - 1440px) / 2) 0 calc((100vw - 1440px) / 2);
}

section{
    padding: 0 calc((100vw - 1250px) / 2);
    margin-top: 55px;
}

section h1{
    margin-bottom: 35px;
}

#main{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: calc(100vh - 50px);
    background: #eff1f1;
    margin-top: 0;
    padding-bottom: 140px;
}

#main .content{
    width: 50%;
    flex-grow: 2;
    margin-right: 45px;
}

.intro{
    line-height: 46px;
    font-weight: 300;
    margin-bottom: 55px;
    font-size: 29px;
}

.workInfo{
    margin-bottom: 25px;
    font-size: 14px;
}

#main button{
    background: black;
    color: white;
    height: 55px;
    width: 200px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 35px;
    border: none;
}

.selfImages{
    display: flex;
    align-items: center;
    position: relative;
    width: 486px;
    height: 325px;
}

.selfImages:hover .profilePhoto:nth-child(1){
    display: none;
}

.selfImages:hover .profilePhoto:nth-child(2){
    display: block;
}

.profilePhoto{
    height: 100%;
    width: 486px;
    border-radius: 28px;
    margin-bottom: 150px;
}

.profilePhoto:nth-child(2){
    display: none;
}

.stickyMenu{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: sticky;
    top: calc(50% - 100px);
    left: 0;
    height: 200px;
    width: 140px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    background: white;
}

.stickyMenu a{
    font-size: 14px;
    color: black;
    text-decoration: none;
}

#virtuozzo{
    margin-top: -100px;
}

header.selectedWorks{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 150px;
    padding: 25px 0 0 calc((100vw - 1250px) / 2);
}

.selectedWorks h1{
    margin-bottom: 55px;
}

.SWItems{
    font-weight: bold;
}

.SWItems a{
    color: black;
    text-decoration: none;
    padding-bottom: 5px;
    font-size: 18px;
    margin-right: 35px;
}

.SWItems a:first-of-type{
    border-bottom: 2px solid black;
}

.company .resume{
    display: flex;
    justify-content: space-between;
}

.companyAbout{
    min-width: 280px;
    flex-grow: 1;
    margin-right: 25px;
}

.company h3{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.companyDate{
    margin-bottom: 25px;
}

.companyImage{
    width: 100%;
    margin-bottom: 35px;
}

.boxShadow{
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.15);
}

.companyTools{
    margin: 35px 0 10px 0;
}

.toolImages img{
    width: 32px;
    margin: 10px 20px 0 0;
}

.company article{
    flex-grow: 1;
}

.company article p{
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 25px;
}

.company article a{
    font-size: 16px;
    color: black;
    font-weight: 600;
    text-decoration: none;
    display: block;
}

.company article ul{
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 15px 15px;
    margin-bottom: 15px;
}

.workWith h1{
    font-size: 45px;
    font-weight: bold;
    text-align: center;
}

.companyImages{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.companyImages div{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 350px;
    margin: 0 5%;
}

.companyImages img{
    max-width: 100%;
    max-height: 100%;
}

.awardsRec{
    display: flex;
    justify-content: space-between;
    background: #eff1f1;
    padding-top: 100px;
    padding-bottom: 100px;
    font-family: "Open sans";
}

.awardsRec h1{
    font-size: 64px;
    font-weight: 400;
    max-width: 390px;
}

.awardsList > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 33px;
    padding: 0 25px;
    width: 680px;
    cursor: pointer;
}

.awardsList > div img{
    height: 35px;
    width: 35px;
}

.conclusion{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 33vh;
    font-size: 26px;
    position: relative;
}

.conclusion p{
    margin-bottom: 15px;
}

.conclusion a{
    font-weight: bold;
    text-decoration: none;
    color: black;
}

.returnTop{
    position: absolute;
    bottom: 35px;
    right: 35px;
}

footer{
    display: flex;
    justify-content: space-between;
    background: #161820;
    padding: 100px calc((100vw - 1250px) / 2);
    color: white;
    margin-bottom: -55px;
}

footer h3{
    font-size: 24px;
    font-weight: 700;
}

.workHistoryItems > *{
    width: 95px;
}

.footerItems{
    display: flex;
    flex-wrap: wrap;
    width: 260px;
}

.footerItems > *{
    margin: 25px 35px 0 0;
    color: white;
    text-decoration: none;
}

footer .footerContact{
    flex-direction: column;
}

.footerContact > *{
    display: flex;
    align-items: center;
}

.footerContact > * img{
    margin-right: 15px;
    height: 24px;
    width: 24px;
}
