/*
Theme Name: Datathon Coca-Cola
Author: IN Junior
Description: Datathon Coca-Cola
Version: 1.0
*/

/* Geral */

@font-face {
    font-family: 'Gotham Book';
    src: url('assets/fonts/gotham/GothamBook.woff');
}

@font-face {
    font-family: 'Gotham Light';
    src: url('assets/fonts/gotham/Gotham-Light.woff');
}

@font-face {
    font-family: 'Gotham Bold';
    src: url('assets/fonts/gotham/Gotham-Bold.woff');
}

:root {
    --red-coke: #e61d2b;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(1rem + 74px);
}

body {
    padding-top: 90px;
    font-family: 'Gotham Book';
}

.box-shadow {
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.05),
                0 4px 8px 0 rgba(0,0,0,.05);
}

.uppercase {
    text-transform: uppercase;
}

@media(max-width: 991px) {
    .section h2 {
        font-size: 2.75em;
    }
    @media(max-width: 767px) {
        .section h2 {
            font-size: 2.25em;
        }
    }
}

/* Introducao */

.intro {
    background: -moz-linear-gradient(rgba(230, 29, 43, 0), rgba(230, 29, 43, 0.3), rgba(230, 29, 43, 0.5), rgba(230, 29, 43, 0.9), #e61d2b), url("assets/img/datathon.jpg");
    background: -webkit-linear-gradient(rgba(230, 29, 43, 0), rgba(230, 29, 43, 0.3), rgba(230, 29, 43, 0.5), rgba(230, 29, 43, 0.9), #e61d2b), url("assets/img/datathon.jpg");
    background: linear-gradient(rgba(230, 29, 43, 0), rgba(230, 29, 43, 0.3), rgba(230, 29, 43, 0.5), rgba(230, 29, 43, 0.9), #e61d2b), url("assets/img/datathon.jpg");

    background-size: cover;
    height: calc(100vh - 90px);
    width: 100%;
}

.intro h1 {
    font-family: 'Gotham Bold';
    font-size: 5em;
}

@media(max-width: 991px) {
    .intro h1 {
        font-size: 3.5em;
    }
    @media(max-width: 767px) {
        .intro h1 {
            font-size: 2.75em;
        }   
    }
}

/* Regulamentos */

.regulations .box {
    padding: 50px 20px;
    margin-bottom: 50px;
    text-align: center;
    border: 1px solid #e6e6e6;
    position: relative;
    min-height: 100px;
    width: 300px;
}
  
.regulations .box:hover .icon {
    background: #fff;
    border: 2px solid var(--red-coke);
}
  
.regulations .icon {
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
    transition: 0.2s;
    border-radius: 50%;
    border: 6px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 72px;
    height: 72px;
    background: var(--red-coke);
}
  
/* Estrutura e Logistica */

.structure {
    background: -moz-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9), #000), url("assets/img/coach.jpg") no-repeat center center;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9), #000), url("assets/img/coach.jpg") no-repeat center center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9), #000), url("assets/img/coach.jpg") no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
}

/* Inscrição */

.inscription iframe {
    min-height: 540px;
    height: 100%;
}

/* Footer */

@media(max-width: 767px) {
    #developed {
        margin-top: 20px;
        text-align: center;
    }
    @media(max-width: 575px) {
        footer {
            text-align: center;
        }
        #sections-footer {
            margin-top: 20px;
        }
    }
}