@import "https://fonts.googleapis.com/css?family=Oswald:300,400,500,700";
@import "https://fonts.googleapis.com/css?family=Roboto:300,400,500,700";

:root {
    --color-primary:#fcb116;
    --color-primary-hover:#d19b2d;
    --color-secundary:#f15a22;
    --color-secundary-hover:#bb5333;
    --color-tercery:#003058;
    --color-tercery-hover:#001425;
    --color-quartery:#004c8b;
}

body {
    margin:0;
    padding:0;
}

body {
    color:#707070;
    background-color:#fff;
    font-family:Oswald,Open Sans,Verdana,sans-serif;
    font-size:12.5px;
    line-height:17px;
    margin-top:70px;
}

p {
    font-family:Roboto,sans-serif;
    font-size:16px;
    font-weight:400;
    line-height:1.4em;
}

h1{font-size:3em;}
h2{font-size:2.2em}
h3{font-size:1.8em}
h4{font-size:1.4em}
h5{font-size:1.2em}

.btn {
    box-shadow: none !important;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-primary,
.button-secundary {
    cursor:pointer;
    transition:background .5s ease;
    padding:0 40px;
    width:fit-content;
    height: 45px;
    font-size:16px;
    color:#fff !important;
}

.button-primary {
    background:var(--color-primary);
}

.button-primary:hover {
    background:var(--color-primary-hover);
}

.button-secundary {
    background:var(--color-secundary);
}

.button-secundary:hover {
    background:var(--color-secundary-hover);
}

header {
    position:fixed;
    top:0;
    z-index: 3;
    width: 100%;
    background:var(--color-tercery);
    padding:10px;
}

header .telegram {
    transition: all .2s ease;
    
}

@keyframes float {
    0% {
        transform:translateY(0px);
    }

    50% {
        transform:translateY(3px);
    }

    100% {
        transform:translateY(0px);
    }
}

header .telegram.animation {
    margin-bottom:0 !important;
    animation: float 0.8s linear infinite;
}

section#slide-news .slick-dots {
    bottom:10px;

}

section#slide-news .slick-dots li { 
    margin:0 3px;
}

section#slide-news .slick-dots li button:before {
    font-size:10px;
    color:#fff;
}

section#slide-news .news {
    height: 380px;
    position:relative;
}

section#slide-news .news:before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    background: rgba(0, 27, 50, 0.71);
}

section#slide-news .news .container,
section#slide-news .news .row {
    height:100%;
}

section#slide-news .news .content-news {
    text-align: center;
    display: flex;
    align-items:center;
    justify-content: center;
    flex-direction: column;

    color:#fff;
}

section#slide-news .news .content-news h4 {
    font-weight:400;
    margin-bottom:12px;
}

section#slide-news .news .content-news h1 {
    margin-bottom:20px;
}

section#information-bit {
    padding:100px 0;
}


section#information-bit .title h2 {
    padding-left:10px;
    color:var(--color-tercery);
    border-left:3px solid var(--color-primary);
}

section#access-full {
    background:url('../assets/img/background-access-full.jpg') 100% 100%;
    color:#fff;

    padding:50px 0;
}

section#access-full h1 {
    margin-bottom:70px;
}

section#access-full img {
    margin-bottom:20px;
}

section#access-full a {
    margin:0 auto;
}


section#about-pague {
    padding:130px 0;
}

section#about-pague h1 {
    color:var(--color-tercery);
}

section#cta-telegram {
    background:var(--color-quartery);
    padding:50px 0;
}

section#cta-telegram svg {
    margin-top:-100px;
}

section#cta-telegram svg path {   
    border:1px solid var(--color-quartery);
}

section#cta-telegram h2 {
    color:#fff;
    margin-bottom:30px;
}

footer {
    background:var(--color-tercery);
}

footer hr {
    background:#fff;
    opacity: 0.2;

    margin:0;
}

footer .content-top {
    padding:30px 0;
    align-items: center;
}

footer ul {
    list-style-type: none;
    align-self:center;
    margin-bottom:0;
    padding-left:0;
}

footer ul li a {
    text-decoration: none !important;
}

footer ul li p {
    color:#fff;
    transition:filter .2s linear;
    margin-left:20px;
    margin-bottom:0;
}

footer ul li p:hover{
    filter: brightness(0.8);
}

footer .social ul a:hover {
    filter: brightness(0.8);
}

footer .social ul a li {
    display: flex;
    align-items:center;
    justify-content: center;
    width:40px;
    height:40px;
    border-radius:50%;
    background:#fff;

    margin-left:10px;
}

footer .content-bottom {
    margin-top:30px;
    color:#fff;
}

@media (max-width: 992px) { 
    h1 {
        font-size:26px;
    }

    h2 {
        font-size:22px;
    }

    header .telegram {
        margin-bottom:auto !important;
    }
    header .button {
        display: none;
    }

    section#information-bit h2 {
        margin-bottom:20px;
    }

    section#slide-news svg {
        width:auto;
        height:21px;
        margin-bottom:-2px;
    }

    section#information-bit {
        padding:60px 0;
    }

    section#information-bit svg {
        width:auto;
        height:18px;
        margin-bottom:-2px;
    }

    section#about-pague {
        padding:60px 0;
    }

    section#about-pague img {
        width: 100%;
        margin-bottom:30px;
    }

    section#about-pague svg {
        width:auto;
        height:22px;
    }

    section#cta-telegram a span {
        display: none;
    }


    
    footer img {
        margin-bottom:20px;
    }

    footer ul {
        margin-bottom:20px;
    }

    footer ul li p {
        margin-left: 0;
        margin-bottom:10px;
    }

    footer .social ul a li {
        margin-left:0;
        margin-right:10px;
    }
}

@media (max-width: 576px) {  
    .btn {
        width:100%;
    }
}