body, * {
    margin: 0;
    padding: 0;
}

body {
    background-image: url("../images/background.png");
    background-repeat: repeat;
}

html {
    font-size: calc(15px + 0.4vw);
}

/*
################
                Background gradient ################################################################################################################
################
*/
.gradient {
    font-size: calc(13px + 1.05vw);
    width: 100%;
    height: 17em;
    background: #224f90; /* For browsers that do not support gradients */
    background: linear-gradient(to bottom right, #0d47a1,#42a5f5);
    
    position: relative;
    top: 0px;
    -webkit-transform: skewY(8deg);
    transform: skewY(8deg);
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
}

.gradient .earthIcon {
    position: absolute;
    width: 5.625rem;
    bottom: 0;
    left: calc(50% - 3.125rem);
    transform: skewY(-8deg) translate(0%, 50%);
}

/*
################
                TopHeader ################################################################################################################
################
*/
.topHeader {
    position: absolute;
    top: 0;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.topHeader * {
    color: white;
    font-family: 'Quicksand', sans-serif;
}   

.topHeader .topBar {
    width: 100%;
    height: 3.125rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.04);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    font-size: 1rem;
}

.topBar a {
    text-decoration: none;
    margin-left: 0.9rem;
}

.topBar a h3 {
    font-weight:700;
    font-size: 1.45em;
}

.topBar .icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-right: 1em;
}
/*
    Affects all icons
 */
.topBar .icon {
    margin: 0px 0.9em;
    height: 1.6em;
    width: 1.6em;
    cursor: pointer;
}

.topBar .icon circle {
    fill: none;
}

.topBar .icon path {
    fill: white;
}

/*
    Affects the mainTitle of the Header
 */
.topHeader .mainTitle {
    margin-top: 1.56rem;
    font-size: 1rem;
}

.topHeader .mainTitle h1, .topHeader .mainTitle h4 {
    font-family: 'Quicksand', sans-serif;
}

.topHeader .mainTitle h1 {
    font-size: 4.9em;
}

.topHeader .mainTitle h4 {
    font-size: 1.05em;
    color: #d2d2d2;
    margin-top: calc(-20px + 0.25em);
    /*margin-top: -15px;*/
}

/*
################
                Section - PageContent  ################################################################################################################
################
*/
section#pageContent  {
    margin-top: 1.56rem;
    display: flex;
    align-items: center;
    flex-direction: column;
}

section#pageContent * {
    font-family: 'Source Sans Pro', sans-serif;
}

#pageContent .presentation {
    text-align: center;
    font-size: 1rem;
}

#pageContent .presentation p {
    font-size: 1em;
    color: #696969;
    font-weight: 400;
    line-height: 1.43rem;
    padding: 1em 1em 0em 1em;
}

#pageContent .buttons {
    margin-top: 2.15rem;
    font-size: 1rem;
}

#pageContent .buttons a {
    font-size: 1.05em;
    text-decoration: none;
    color: white;
    height: 4.05em;
    width: 12.8em;
    background-color: #014f66;
    border-radius: 0.625em;
    
    margin-bottom: 0.625em;
    
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#pageContent .buttons a:last-child {
    background-color: #497d7b;
}

#pageContent .buttons a svg {
    width: 3.125em;
    fill: white;
}

/*
################
                Copyright  ################################################################################################################
################
*/
.copyrightBox {
    display: none;
    font-size: 1rem;
}






/*
#######################################################################

                     MEDIA QUERIES (RESPONSIVE)

#######################################################################
*/

@media (min-width:1000px) {
    .gradient {
        font-size: calc(9.5px + 1.05vw);
    }
    
    .topHeader .topBar {
        height: 2.5rem;
        background: none;
        box-shadow: none;
    }
    
    .topBar .icon {
        margin: 0em 1em;
    }

    /*
        Icon (Facebook, Instagram, Snapchat, Wordpress)
     */
    .facebook:hover circle, .instagram:hover circle, .snapchat:hover circle, .wordpress:hover circle {
        fill: white;
    }

    .facebook:hover path, .instagram:hover path, .snapchat:hover path, .wordpress:hover path {
        fill: #4387c0;
    }
    
    .topHeader .mainTitle {
        margin-top: 0rem;
    }
    
/*
################
                Section - PageContent  ################################################################################################################
################
*/
    section#pageContent  {
        margin-top: 0rem;
    }
    
    #pageContent .presentation p {
        font-weight: 300;
        padding: 0em 1em 1em 1em;
    }
    
    #pageContent .buttons {
        display: flex;
        margin-top: 2.8em;
    }
    
    #pageContent .buttons a {
        margin: 0em 1.3em;
        height: 3.3em;
        width: 11.5em;
        font-size: 0.95em;
    }
    
    #pageContent .buttons a svg {
        position: absolute;
        transform: translate(0%,-200%);
    }
    
    #pageContent .buttons a .twoBalls {
        fill: #014f66;
    }
    
    #pageContent .buttons a .threeBalls {
        fill: #497d7b;
    }
}

@media (min-width: 1200px) {
/*
################
                Gradient
################
*/ 
    .gradient {
        font-size: calc(8.5px + 1.05vw);
    }
/*
################
                Section - PageContent  ################################################################################################################
################
*/  
    #pageContent .presentation {
        font-size: 0.9rem;
    }
    
    #pageContent .buttons {
        margin-top: 1.5em;
    }
   
/*
################
    Copyright  ################################################################################################################
################
*/
    .copyrightBox {
        display: block;
        width: 100%;
        position: absolute;
        bottom: 0px;
        cursor: pointer;
        font-size: 1rem;
    }
    
    .copyrightBox > * {
        font-family: 'Source Sans Pro', sans-serif;
        transition: all .2s;
        font-size: 0.55em;
        letter-spacing: 1px;
        text-align: center;
        width: 50%;
        margin: auto;
    }

    .copyrightTag {
        font-weight: 300;
        color: rgb(188, 187, 184); 
        transform: translate(0px, 50%);
    }

    .linkedinTag {
        font-weight: 400;
        color: #333;
        opacity: 0;
        transform: translate(30px, -50%);
    }

    .copyrightBox:hover .copyrightTag {
        transform: translate(-20px, 50%);
        opacity: 0;
    }

    .copyrightBox:hover .linkedinTag {
        transform: translate(0px, -50%);
        opacity: 1;
    }

    .linkedinTag i.fab, .linkedinTag i.fas {
        margin: 0em 0.1875em;
        color: #4387c0;
    }
    
/*
################
                Section - PageContent  ################################################################################################################
################
*/
    #pageContent .buttons * {
        transition: all .2s;
    }

    #pageContent .buttons a svg circle {
        fill: rgba(0,0,0,0.2);
    }

    #pageContent .buttons a, #pageContent .buttons a:nth-child(2) {
        background-color: rgba(0,0,0,0.3);
        box-shadow: inset 0 0 0.625em rgba(0,0,0,0.1);
        -moz-box-shadow: inset 0 0 0.625em rgba(0,0,0,0.1);
        -webkit-box-shadow: inset 0 0 0.625em rgba(0,0,0,0.1);
    }

    #pageContent .buttons a:first-child:hover {
        background-color: #014f66;
    }

    #pageContent .buttons a:first-child:hover .twoBalls circle {
        fill: #014f66;
    }

    #pageContent .buttons a:nth-child(2):hover {
        background-color: #497d7b;
    }

    #pageContent .buttons a:nth-child(2):hover .threeBalls circle {
        fill: #497d7b;
    }
}

@media (min-width:1400px) {
/*
################
                Section - PageContent  ################################################################################################################
################
*/
    section#pageContent  {
        margin-top: 0rem;
    }
    
    #pageContent .buttons {
       margin-top: 4em;
    }
}

@media (min-width:1600px) {
/*
################
                Gradient
################
*/ 
    .gradient {
        font-size: calc(9.5px + 1.05vw);
    }
    
    .topHeader .mainTitle {
        margin-top: 0.5rem;
    }
/*
################
                Section - PageContent  ################################################################################################################
################
*/  section#pageContent  {
        margin-top: 0.7rem;
    }
    
    #pageContent .buttons {
       margin-top: 4.5em;
    }
}