@font-face {
    font-family: Montserrat;
    src: url(../assets/fonts/Montserrat.ttf)format("truetype");
    font-weight: 100;
}

@font-face {
    font-family: Mt-semibold;
    src: url(../assets/fonts/Montserrat-SemiBold.ttf)format("truetype");
    font-weight: 700;
}

@font-face {
    font-family: Mt-medium;
    src: url(../assets/fonts/Montserrat-Medium.ttf)format("truetype");
    font-weight: 700;
}


:root {
    --prim: #FF3D00;
    --out-back: #222222;
    --in-back: #141414;
    --contact-btn: #F2EFEF;
}

.services {
    background-color: var(--out-back);
    padding-top: 30px
}

.services h2 {
    font-family: "degular", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 125%;
    color: #F2EFEF;
    margin-left: 50px;
}

.servicetype {
    margin-left: 50px;
    margin-right: 100px;
    display: flex;
    justify-content: space-between;
}

.servicetype h3 {
    font-family: "degular", sans-serif;
    color: #757575;
    font-size: 36px;
    line-height: 133%;
    letter-spacing: 2px;
    font-weight: 100;
}

.typename {
    width: 50%;
}

.typename h3 {
    color: #F2EFEF;
    font-size: 36px;
}

.typename p {
    font-family: Mt-medium;
    color: #909090;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 135%;
}

.serviceskills {
    display: flex;
    flex-direction: column;
    margin-top: 28px;
    gap: 15px;
}

.serviceskills p {
    color: var(--contact-btn);
    font-family: Montserrat;
    font-size: 24px;
    font-weight: bold;

}

.fskill {
    text-align: end;
}

.mskill {
    text-align: end;
}

.lskill {
    text-align: end;
}

/* .fskill {
    width: 33%;
}

.mskill {
    display: flex;
    width: 33%;
    justify-content: center;
    align-items: center;
}

.lskill {
    display: flex;
    width: 33%;
    justify-content: end;
} */

.hero h2 {
    font-family: degular,
        sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--contact-btn);
    line-height: 170%;
    letter-spacing: 1px;
    font-size: 64px;
}

.serviceskills p br {
    display: none;
}

.heromain {
    padding-bottom: 40px;
}

@media only screen and (max-width: 900px) {
    .hero h2 {
        font-size: 35px;
        font-weight: 400;
    }

    .services h2 {
        font-size: 35px;
        font-weight: 400;
        margin-left: 0px;
    }

    .servicetype {
        margin-left: 0px;
        margin-right: 0px;
        flex-direction: column;
    }

    .typename {
        width: 100%;
    }

    .serviceskills {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;

    }

    .serviceskills p {
        font-size: 16px;
    }

    .fskill {
        text-align: start;
    }

    .mskill {
        text-align: center;
    }

    .lskill {
        text-align: end;
    }

    .serviceskills p br {
        display: block;
    }
}

@media only screen and (max-width: 430px) {

    .hero h2 {
        font-size: 40px;
    }

    .serviceskills p {
        font-size: 14px;
        line-height: 135%;
    }

    .typename p {
        font-size: 12px;
    }

    .typename h3 {
        font-size: 24px;
    }



}