/*

.portIntro{
    min-height:300px;
    overflow: hidden;
}

.portIntroContent{
    max-height: 400px;
    position: relative;
}

.portIntroText{
    max-width: 50%;
    min-height: 200px;
    padding: 1rem;
    padding-right: 2rem;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f7f7f7db;
}

.portIntroText h1 {
    font-size: clamp(18px, 2.5vw, 30px);
}

.portIntroText p{
    font-size: clamp(14px, 1.5vw, 18px);
    max-width: 40ch;
    line-height: 25px;
    letter-spacing: 2px;
    transform: translateX(2rem);
}


.portHeroImg img{
    width: 100%;
    height: auto;
}
*/

.portIntroText h1 {
    font-size: clamp(22px, 2.5vw, 42px);
    letter-spacing: 1.2px;
}

.portIntroText p{
    font-size: clamp(14px, 2.5vw, 22px);
    letter-spacing: 1.5px;
    max-width: 45ch;
}

.portIntroContent {
    display: flex;
}

.portHeroImg {
    max-width: 50%;
}

.imgContent{
    width: 100%;
}

.projectIntroContent {
    max-width: 50%;
    background-color: white;
    padding: 2rem;
}

.portHeaderBig{
    display: none;
}


.bigWrapper {
    position: relative;
    min-height: 450px;
    overflow: hidden;
}

.projectIntroContentBig {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    padding: 2rem;
    background-color: white;
    z-index: 1;
}

.portHeroImgBig {
    position: absolute;
    left: 0;
    right: 0;
}

.imgContentBig {
    width: 100%;
}

.portIntroTextBig h1{
    font-size: clamp(26px, 2.5vw, 32px);
    letter-spacing: 1.2px;
}

.portIntroTextBig p{
    padding-top: 1rem;
    font-size: clamp(14px, 2.5vw, 22px);
    letter-spacing: 1.5px;
    max-width: 45ch;
}

@media only screen and (min-width: 767px) {
    .portHeaderSmall {
        display: none;
    }

    .portHeaderBig{
        display: block;
    }

}

@media only screen and (max-width: 550px) {
    .portIntroContent {
        flex-direction: column;
        align-items: center;
    }
    .projectIntroContent {
        max-width: 80%;
    }
    .portHeroImg {
        max-width: 80%;
    }
}

/*skills area portfolio*/

.projectsContent{
    padding-top: 2rem;
}

.projectSkills h2{
    padding-top: 3rem;
}

.projectSkills {
    padding-top: 2.5rem;
}

.portSkills{
    min-height: 200px;
    padding-top: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.portSkills div{
    display: inline-flex;
}

.portSkills li{
    list-style-type: none;
}

.portSkills h4 {
    max-width:max-content ;
    padding-right: .5rem;
    font-family: "Mulish", sans-serif;
    font-size: clamp(14px, 2.5vw, 20px);
    letter-spacing: 2px;
    font-weight: 100;
    transform: translateY(8px);
}

@media only screen and (max-width: 900px) {

    .portSkills {
        min-height: 300px;
        margin-bottom: 5rem;
    }
}


@media only screen and (max-width: 767px) {
    .projectSkills {
        padding-top: .5rem;
    }
    .portIntro {
        min-height: 200px;
    }
}

/* portfolio gallery */

.projectsContent{
    padding: 2rem 0;
}

.portGalGrid{
    width: 50%;
    padding-bottom: 2rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, auto);
}


.portGalGrid img{
    width: 100%;
    padding: .5rem;
}

.portGalGrid figure{
    font-size: 0;
}

.img1{
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 5;
    transition: all .1s ease;
}

.img2{
    grid-column-start: 3;
    grid-column-end: 6;
    grid-row-start: 1;
    grid-row-end: 2;
    transition: all .1s ease;
}

.img3{
    grid-column-start: 3;
    grid-column-end: 6;
    grid-row-start: 2;
    transition: all .1s ease;
}

.img1:hover,
.img2:hover,
.img3:hover {
    scale: 1.07;
    outline: 3px solid #006b1b;
}


.liveProject {
    font-family: "Mulish", sans-serif;
    font-weight: bold;
    text-decoration: none;
    font-size: clamp(12px, 2.5vw, 16px);
    letter-spacing: 1px;
    padding: 16px 20px;
    background-color: #006b1b;
    color:#ffffff;
    transition: all .1s ease;
}

.liveProject:hover{
    background-color: #b8b8b8;
    color: #006b1b;
    text-decoration: underline;
    text-underline-offset: 5px;
    outline: 1px solid #006b1b;
}

@media only screen and (max-width: 1000px) {
    .portGalGrid{
        width: 70%;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 600px) {
    .portGalGrid{
        display: flex;
        flex-wrap: wrap;
    }
}

/*triva pulse classes*/

.pulse1:hover,
.pulse2:hover,
.pulse3:hover {
    transition: all .1s ease;
}

.pulse1:hover,
.pulse2:hover,
.pulse3:hover {
    scale: 1.07;
    outline: 3px solid #006b1b;
}