:root{
    --color-active: #037171;
}
@font-face {
    font-family: 'RFDewi';
    src: url('../fonts/RFDewi/RFDewi-Light.ttf');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'RFDewi';
    src: url('../fonts/RFDewi/RFDewi-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'RFDewi';
    src: url('../fonts/RFDewi/RFDewi-Semibold.ttf');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'RFDewi';
    src: url('../fonts/RFDewi/RFDewi-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'RFDewi';
    src: url('../fonts/RFDewi/RFDewi-Black.ttf');
    font-weight: 900;
    font-style: normal;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'RFDewi', sans-serif;
    outline: none;
}
img{
    max-width: 100%;
}
body{
    background-color: #111010;
}
#wrapper{
    width: 100vw;
    height: 97vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#wrapper_content{
    display: flex;
    flex-direction: column;
    max-width: 320px;
    height: calc(100% - 100px);
    max-height: 750px;
}
#ih_info{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#ih_info > img{
    width: 230px;
    border-radius: 40px;
}
#ih_info > span{
    display: block;
    color: #FFF;
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: -30px;
}
#ih_info > p{
    color: #FFF;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    margin-top: -4px;
}
#ih_social{
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 8px;
}
#ih_social > a{
    display: flex;
    border-radius: 50px;
    border: 1px solid #FFF;
    text-decoration: none;
}
#ih_social > a > div{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid #FFF;
    border-radius: 50px;
    margin: -1px;
}
#ih_social > a > div > img{
    width: 20px;
}
#ih_social > a > span{
    color: #FFF;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 50px;
    padding: 0 20px 0 10px;
}
#ih_contact{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}
#ih_contact > p,
#ih_contact > p > a{
    color: #FFF;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    transition: .15s;
}
#ih_contact > p > a:hover{
    color: var(--color-active);
}
#ih_contact > div{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 100%;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 100px;
    background: var(--color-active);
    cursor: pointer;
    margin-top: 10px;
    transition: .15s;
}
#ih_contact > div:hover{
    background: #015a5a;
}