/* Fonts */

@font-face {
    font-family: knockoutFullSumo;
    src: url(../webfonts/knockout/knockout-fullsumo.otf);
}

@font-face {
    font-family: knockoutFullFeather;
    src: url(../webfonts/knockout/knockout-fullfeather.otf);
}

@font-face {
    font-family: goodBrush;
    src: url(../webfonts/good-brush/good-brush.otf);
}

@font-face {
    font-family: dinRegular;
    src: url(../webfonts/din/din-regular.ttf);
}

body {
    font-family: knockoutFullSumo, 'Helvetica Neue', Arial, sans-serif;
    background: black;
    color: #a7a7a7;
}

/* Navigation */

nav.navigation-container {
  background: #111;
  color: white;
  padding: 2rem 0;
  position: sticky;
  position: -webkit-sticky;
  z-index: 10;
  top: 0;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navigation .logo img {
    width: 300px;
    vertical-align: middle;
}

.navigation .logo {
    flex: 1;
    text-align: center;
}

.nav-hashtag {
    color: #a7a7a7;
    font-size: 2rem;
    flex-basis: 20%;
}

.socials-container {
    flex-basis: 20%;
}

.socials-container a {
    color: transparent;
    padding-right: 1rem;
}

.socials-container a:last-child {
    padding-right: 0;
}

.socials-container i {
    color: #a7a7a7;
    font-size: 2rem;
    transition: color 0.25s ease-in-out;
}

.socials-container i:hover {
    color: white;
}

/* Hero */

.hero {
    background-image: url("../images/hero-bg.jpg");
    padding: 10rem 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-copy {
    display: inline-block;
    -webkit-animation: fadeIn 2s;
    -moz-animation: fadeIn 2s;
    animation: fadeIn 2s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-moz-keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-webkit-keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.hero h1 {
    color: #63ceca;
    text-transform: uppercase;
    margin: 0;
    font-size: 6.8rem;
}

.hero h1:last-child {
    font-size: 7.8rem;
}

.hero-title-middle {
    color: #ff7900;
    text-transform: uppercase;
    font-family: knockoutFullFeather, 'Helvetica Neue', Arial, sans-serif;
    font-size: 6rem;
    display: flex;
    align-items: center;
    line-height: 1;
    margin: 0.5rem 0;
}

.hero .dash {
    width: 100px;
    height: 1rem;
    background: #ff7900;
    display: block;
    flex: 1;
}

.begins-with {
    flex: 1;
    padding: 0 2rem;
}

.hero h2 {
    font-family: goodBrush, 'Helvetica Neue', Arial, sans-serif;
    color: white;
    font-size: 4.4rem;
    margin-top: 4rem;
    -webkit-animation: fadeIn 2s;
    -moz-animation: fadeIn 2s;
    animation: fadeIn 2s;
}

/* Featured Banners */

.featured-banners {
    display: flex;
}

.featured-banners.upper {
    margin: 0 auto;
    max-width: 90%;
}

.featured-banner {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-banner.upper {
    flex-direction: column;
    padding: 0 2rem;
    box-sizing: border-box;
}

.featured-banner.upper img {
    border-radius: 12px 12px 0 0;
}

.featured-banner.anchor {
    cursor: pointer;
}

.featured-banner.anchor img {
    border-radius: 12px;
}

.featured-banner img, .featured-banner picture {
    width: 100%;
}

picture {
    line-height: 0;
}

.share-container {
    text-align: center;
    background: #fff;
    background: -moz-linear-gradient(-45deg, #dadada 0%, #fff 50%, #dadada 100%);
    background: -webkit-linear-gradient(-45deg, #dadada 0%, #fff 50%, #dadada 100%);
    background: linear-gradient(135deg, #dadada 0%, #fff 50%, #dadada 100%);
    width: 100%;
    border-radius: 0 0 12px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.spread-the-word {
    font-family: goodBrush, 'Helvetica Neue', Arial, sans-serif;
    color: black;
    font-size: 2.5rem;
    line-height: 1;
    text-align: left;
    margin-left: 1.5rem;
}

.social-sharing-container {
    margin-right: 1rem;
    display: flex;
}

.share-container i {
    color: #63ceca;
    font-size: 2rem;
}

.share-container a {
    text-decoration: none;
    background: black;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.share-container a:first-child {
    margin-right: 0.8rem;
}

/* Footer */

footer {
    text-align: center;
    padding: 4rem 0;
}

.footer-logo img {
    width: 300px;
}

.footer-hashtag {
    color: #63ceca;
    font-size: 4rem;
    margin: 1rem 0;
}

.terms-and-conditions {
    text-align: left;
    font-family: dinRegular, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.2rem;
    color: white;
    border-top: 1px solid #a7a7a7;
    padding: 4rem 0;
    margin-top: 4rem;
}

.terms-and-conditions span {
    font-family: knockoutFullSumo, 'Helvetica Neue', Arial, sans-serif;
}

.terms-and-conditions a {
    color: #63ceca;
    font-weight: bold;
    text-decoration: underline;
}

/* Tiles */

.fifa-tile-section {
    padding: 6rem 0 0;
}

.fifa-tile-section .row {
    text-align: center;
    margin-bottom: 2.5rem;
}

.fifa-tile-section h2 {
    color: #ff7900;
    margin-bottom: 0;
}

.fifa-tile-section .fa-chevron-down {
    color: #63ceca;
    font-size: 4.5rem;
}

.floating-icon {
    transform: translatey(0px);
	animation: float 1s ease-in-out infinite;
    margin-top: 2rem;
}

.fifa-tile-container img {
    width: 100%;
}

.fifa-tiles-container {
    display: flex;
    flex-wrap: wrap;
}

.fifa-tile {
    flex-basis: calc(33.3% - 4rem);
    padding: 2rem;
    flex-direction: column;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fifa-tile img {
    width: 100%;
    border-radius: 12px 12px 0 0;
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-10px);
	}
	100% {
		transform: translatey(0px);
	}
}

/* Call outs */

.callout-container {
    position: absolute;
    text-align: center;
    color: black;
}

.callout-container.join-teksavvy {
    margin-top: -8rem;
}

.callout-container h2 {
    text-transform: uppercase;
    line-height: 1;
    font-size: 3.5rem;
    width: 90%;
    margin: 0 auto 1.5rem;
}

.callout-container h2 span.fair-internet {
    font-size: 5.1rem;
}

.callout-container h3 {
    font-size: 1.8rem;
    width: 75%;
    margin: 0 auto;
}

.callout-container a {
    text-decoration: none;
    border-radius: 20px;
    color: white;
    padding: 1rem 4rem;
    margin-top: 2rem;
    display: inline-block;
}

.callout-container a.teal {
    background: #63ceca;
    transition: background 0.25s ease-in-out;
}

.callout-container a.teal:hover {
    background: #5ec3bf;
}

.callout-container a.orange {
    background: #ff7900;
    transition: background 0.25s ease-in-out;
}

.callout-container a.orange:hover {
    background: #ff9600;
}

/* Media Queries */

@media (max-width: 1200px) {
    .callout-container h2 {
        font-size: 2.8rem
    }
    .callout-container h2 span.fair-internet {
        font-size: 3.4rem;
    }
    .callout-container h3 {
        font-size: 1.4rem;
    }
    .callout-container a {
        padding: 0.5rem 3rem;
        font-size: 1.4rem;
    }
    .callout-container.join-teksavvy {
        margin-top: -6rem;
    }
}

@media (max-width: 900px) {
    .navigation .socials-container {
        display: none;
    }

    .navigation .logo {
        text-align: left;
    }

    .navigation .logo img, .footer-logo img {
        width: 175px;
    }

    .nav-hashtag {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero-title-middle {
        font-size: 3.6rem;
    }

    .hero h1:last-child {
        font-size: 4.8rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .footer-hashtag {
        font-size: 3rem;
    }

    .fifa-tile {
        flex-basis: calc(50% - 4rem);
    }

    .featured-banners.callouts {
        flex-direction: column;
    }

    .featured-banner.callout {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .featured-banners {
        flex-direction: column;
        max-width: none !important;
    }
    .featured-banner {
        width: 100%;
    }
    .featured-banner.upper:first-child {
        margin-bottom: 2rem;
    }
    .fifa-tile-section h2 {
        font-size: 2.5rem;
    }
    .fifa-tile-section .row {
        margin-bottom: 2rem;
    }
    .fifa-tile-section {
        padding: 4rem 0 1rem;
    }
    .fifa-tile-section .fa-chevron-down {
        font-size: 3.5rem;
    }
}

@media (max-width: 550px) {
    nav.navigation-container {
        position: relative;
    }
    .navigation {
        flex-direction: column;
    }
    .nav-hashtag {
        margin-top: 1rem;
    }
    .footer-hashtag {
        font-size: 2rem;
    }
    .hero h2 {
        font-size: 1.9rem;
    }
    .hero h1 {
        font-size: 2.75rem;
    }
    .begins-with {
        padding: 0 1rem;
        font-size: 2.4rem;
    }
    .hero .dash {
        height: 0.5rem;
    }
    .hero h1:last-child {
        font-size: 3.15rem;
    }
    .spread-the-word {
        font-size: 2rem;
    }
    .fifa-tile {
        flex-basis: 100%;
        padding-bottom: 0.5rem;
    }
    .callout-container h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    .callout-container h2 span.fair-internet {
        font-size: 2.5rem;
    }
    .callout-container h3, .callout-container a {
        font-size: 1.2rem;
        margin-top: 1rem;
    }
    .callout-container.join-teksavvy {
        margin-top: -4rem;
    }
}