/******************************************************************
	------------------------
	-- TABLE OF CONTENTS --
	------------------------

	--  1. Basic
    --  2. Hero
    --  3. Front Content
    --  4. Background Content
    --  5. Socials Content

 ******************************************************************/

/** 1. Basic
*******************************************************************/

html
{
    font-size: 10px !important;
}

body
{
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-style: normal;

    overflow: hidden;

    color: #fff;
    background: #000;

    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a
{
    font-family: 'Roboto', sans-serif;
    font-weight: normal;

    color: #000000;
}

p
{
    font-size: 1.4rem;
}

/** 2. Hero
*******************************************************************/

.hero
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

/** 3. Front Content
*******************************************************************/

.hero .front-content
{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

.hero .front-content .container-mid
{
    position: absolute;
    top: 55%;
    left: 0;

    width: 100%;

    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: center;
}

.hero .front-content .container-mid img.logo
{
    display: block;

    margin: 0 auto;
}

.hero .front-content .container-mid h1
{
    font-weight: bold;
    line-height: 1.0em;

    margin-top: .5em;
    margin-bottom: .46em;

    letter-spacing: .025em;
}

.hero .front-content .container-mid p.subline
{
    font-size: 4rem;
    line-height: 1.4em;

    max-width: 20em;
    margin-right: auto;
    margin-left: auto;
    width: 50%;
    letter-spacing: .025em;
}

/** 4. Background Content
*******************************************************************/

.hero .background-content
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    background-color:#fff;
}

.hero .background-content .background-img
{
    width: 100%;
    height: 100%;

    background: url(../images/Skylabs\ Logo.jpg);
    /* background: url(../images/Skylabs\ Logo.jpg); */
    /* background: url(assets/images/Skylabs\ Logo.jpg); */
    background-repeat: no-repeat;
    background-size: contain;

    margin-left: auto;
    margin-right: auto;
    width: 50%;

}

/** 5. Socials Content
*******************************************************************/
.socials-container{
    display:flex;
    gap: 20px;

    position: absolute;
    top: 70%;
    left: 43%;

    width: 100%;

    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.socials-container a{
    background-color: white;
    padding: 1em;
    border-radius: 50%;
    height: 64px;
    width: 64px;
    box-sizing: border-box;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.socials-container a svg{
    height: 32px;
}

.socials-container a::before{
    content: attr(data-social);
    position: absolute;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    padding: 0.5em 1em;
    border-radius: 100px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-30px) rotate(25deg);
    opacity: 0;
    transition: 200ms ease;
}

.socials-container a:hover{
    background-color: var(--accent-color);
    fill: white;
}

.socials-container a::after{
    content: '';
    position: absolute;
    height: 0;
    width: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid var(--accent-color);
    transform: translateY(0) rotate(25deg);
    opacity: 0;
    transition: 200ms ease;
}

/* For the text of the social media*/
.socials-container a:hover::before{
    transform: translateY(-50px) rotate(0);
    opacity: 1;
}

/* For the triangle tool tip*/
.socials-container a:hover::after{
    transform: translateY(-38px) rotate(0);
    opacity: 1;
}