/* eurostar font init */
@font-face {
    font-family: eurostar;
    src: url("esr.ttf");
}

/* document style config */
html {
    background-color: black;
    color: white;
    font-family: eurostar;
    background: #0C2840;
    background: linear-gradient(90deg,rgba(12, 40, 64, 1) 0%, rgba(22, 75, 119, 1) 100%);
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0;
    padding: 0;
}

/* hide the scrollbar */
html::-webkit-scrollbar {
    display: none;
}

/* custom responsive layout */
body {
    padding: 0;
    margin: 0;
}

.mainCont {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80vh;
}

/* main container for elements */
.contData {
    padding: 1vh;
    width: 100vw;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* site logo configs */
.mainLogo {
    width: 75%;
    text-align: center;
    margin-top: 5vh;
}
.mainLogo img {
    width: 90%;
}

/* blurb panels */
.textPanel {
    width: 100%;
    margin-bottom: 3vh;
}

.textPanel h1 {
    margin: 0;
    padding: 1vh;
    background: #2682CFFF;
    background: linear-gradient(90deg,rgba(38, 130, 207, 1) 0%, rgba(20, 67, 107, 1) 100%);
    font-size: 4vh;
    font-weight: normal;
}

.textPanel p {
    font-size: 3vh;
    padding: .5vh;
    margin: 0;
}

.textPanel a{
    display: flex;
    color: white;
    text-decoration: none;
    height: 5vh;
    align-items: center;
    padding: 1vh;
    margin: .5vh;
    background-color: rgba(255, 255, 255, 0.157);
    border-radius: 2vh;
    transition: all .2s;
}

.textPanel a:hover {
    background: linear-gradient(-45deg,rgba(255, 255, 255, 0.157) 0%, rgba(255, 255, 255, 0.4) 49%, rgba(255, 255, 255, 0.157) 100%);
    transition: all .3s;
}

.textPanel a img {
    height: 100%;

}

.textPanel a h2 {
    font-size: 3vh;
    margin: 1vh;
}

.socialCell {
    display: flex;
}

/* icon/subtext panel*/
.icoSubCont {
    display: flex;
    padding: 2vh;
    margin-bottom: 5vh;
}
.icoItem {
    text-align: center;
    min-width: 150px;
}
.icoItem img {
    width: 40%;
    max-width: 100px;
}
.icoItem h1 {
    padding: 0;
    margin: 0;
    font-weight: normal;
}

/* page title */
.pageBanner {
    margin: 5vh;
    width: 100%;
    display: flex;
    align-items: center;
}
.pbLineL {
    margin-left: 3vh;
    height: .5vh;
    background: #ffffff;
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(20, 67, 107, 0) 100%);
    width: 100%;
}

.pbLineR {
    margin-right: 3vh;
    height: .5vh;
    background: #ffffff;
    background: linear-gradient(270deg,rgba(255, 255, 255, 1) 0%, rgba(20, 67, 107, 0) 100%);
    width: 100%;
}

.pageBanner h1 {
    text-align: center;
    margin: 0;
    padding: 0vh 5vh;
    font-size: 4vh;
}

/* portfolio gallery */

.pGallery {
    margin-top: 2.5vh;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    transition: all .25s .35s;
    height: 30vh;
}

.pGallery img{
    width: 30%;
    border: white .25vh solid;
    transform: rotateX(10deg);
    transform: rotate3d(-.5, 1, -.5, 31deg);
    margin-left: -50px;
    margin-right: -50px;
    opacity: .75;
    transition: all .25s;
}

.pGallery img:hover {
    opacity: 1;
    margin: 0;
    width: 70%;
    transform: rotate3d(0, 0, 0, 0deg);
    transition: all .25s;
    z-index: 1;
}

.pGallery img:hover ~ img{
    opacity: .25;
}

.pGallery:has(img:hover) {
    height: 70vh;
    transition: all .25s;
}

/* header elements */

.headerCont {
    background: #0C2840;
    background: linear-gradient(90deg,rgba(22, 75, 119, 1) 0%, rgba(12, 40, 64, 1) 100%);
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headerLimiter {
    width: 100%;
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.headerLimiter img {
    height: 3vh;
    padding-left: 3vh;
}

.headerButtonGroup {
    display: flex;
    margin-right: 3vh;
}

.headerButtonGroup a{
    display: flex;
    color: white;
    text-decoration: none;
    height: 2vh;
    align-items: center;
    padding: 1vh;
    margin: .5vh;
    background-color: #ffffff28;
    border-radius: 1vh;
}

.headerButtonGroup a:hover {
    background-color: #ffffff49;
}

.headerButtonGroup a img {
    height: 100%;

}

.headerButtonGroup a h2 {
    font-size: 2vh;
    margin: 1vh;
}

/* footer elements */
.footerCont {
    position: relative;
    width: 100%;
    bottom: 0;
    background: #0C2840;
    background: linear-gradient(90deg,rgba(22, 75, 119, 1) 0%, rgba(12, 40, 64, 1) 100%);
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footerLimiter {
    width: 100%;
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footerLimiter img {
    height: 70%;
    padding-left: 1vh;
}

.footerData {
    text-align: center;
}

.footerData p {
    padding: 0;
    margin: 0;
    font-size: 2vh;
}