:root{
    --blue: #2a566b;
    --orange: #fa925b;
    --light-blue: #edf6f9;
    --text: #5b7e8e;
    --black: #000;
    --white: #fff;
}
/* Text */
@font-face {
    font-family: 'Manrope ExtraBold';
    src: url(../fonts/Manrope-ExtraBold.woff2) format('woff2'),
        url(../fonts/Manrope-ExtraBold.woff) format('woff'),
        url(../fonts/Manrope-ExtraBold.otf) format('opentype');
}
@font-face {
    font-family: 'Manrope Bold';
    src: url(../fonts/Manrope-Bold.woff2) format('woff2'),
        url(../fonts/Manrope-Bold.woff) format('woff'),
        url(../fonts/Manrope-Bold.otf) format('opentype');
}
@font-face {
    font-family: 'Manrope Regular';
    src: url(../fonts/Manrope-Regular.woff2) format('woff2'),
        url(../fonts/Manrope-Regular.woff) format('woff'),
        url(../fonts/Manrope-Regular.otf) format('opentype');
}
body{
    font-family: 'Manrope Regular', sans-serif;
    color: var(--text);
}
h1{
    font-family: 'Manrope Bold', sans-serif;
    color: var(--blue);
}
/* Blocks */
.wrapper{
    max-width: 600px;
    padding: 48px;
    margin: 16px auto;
    background-color: var(--light-blue);
}
.wrapper .header{
    text-align: center;
    margin-bottom: 48px;
}
.wrapper .header .logo{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    width: 150px;
    background-color: var(--white);
    border-radius: 100px;
    margin: 0 auto;
}
.wrapper .header img{
    max-width: 80%;
}
.wrapper .link-section a{
    position: relative;
    display: inline-block;
    font-family: 'Manrope ExtraBold', sans-serif;
    border: none;
    background-color: var(--orange);
    color: var(--white);
    padding: 10px 40px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    margin: 8px 0;
    width: calc(100% - 80px);
    transition: all 0.45s ease;
}
.wrapper .link-section a.hrtech{
    background-color: #3A0CA1;
}
.wrapper .link-section a:hover{
    color: var(--white);
    transform: scale(0.97);
}
.wrapper .link-section a::before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    display: block !important;
    border: 1px solid var(--orange);
    border-radius: 100px;
    opacity: 1;
    transition: all 0.45s ease;
}
.wrapper .link-section a.hrtech::before{
    border-color: #3A0CA1;
}
.wrapper .link-section a:hover::before{
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
}
.wrapper .link-section a::after{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    display: block !important;
    border: 1px solid var(--orange);
    border-radius: 100px;
    opacity: 0.5;
    transition: all 0.45s ease;
}
.wrapper .link-section a.hrtech::after{
    border-color: #3A0CA1;
}
.wrapper .link-section a:hover::after{
    top: -24px;
    right: -24px;
    bottom: -24px;
    left: -24px;
    opacity: 0;
}
.wrapper .link-section a span{
    position: absolute;
    top: calc(50% - 12px);
    left: 32px;
    content: "";
    background-size: contain;
    height: 24px;
    width: 24px;
    display: block !important;
    background-position: center center;
    background-repeat: no-repeat;
}
.wrapper .link-section a.website span{
    background-image: url('../images/website.svg');
}
.wrapper .link-section a.facebook span{
    background-image: url('../images/facebook.svg');
}
.wrapper .link-section a.linkedin span{
    background-image: url('../images/linkedin.svg');
}
.wrapper .link-section a.whatsapp span{
    background-image: url('../images/whatsapp.svg');
}
.boostu{
    text-align: center;
    margin: 8px 0 24px 0;
    font-style: italic;
}
.boostu a{
    font-family: 'Manrope Bold', sans-serif;
    color: var(--blue);
    transition: all 0.3s ease;
}
.boostu a:hover{
    color: var(--black);
}