@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap);

        * {
            margin:0;
            padding:0;
            font-size: 100%;
            border:none;
            outline: none;
            font-weight: 300;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }
        .row::after {
            content: "";
            clear: both;
            display: block;
        }
        [class*="col-"] {
            float: left;
            padding: 10px;
        }
        /* MEDIA TYPES screen
        Para monitores ou dispositivos com telas coloridas e resoluções adequadas.
        print
        para impressoras*/
        @media screen and (min-width: 320px){}
        [class*="col-"] {
        width: 100%;
        }
        @media only screen and (min-width: 600px) {
            .col-s-1 {width: 8.33%;}
            .col-s-2 {width: 16.66%;}
            .col-s-3 {width: 25%;}
            .col-s-4 {width: 33.33%;}
            .col-s-5 {width: 41.66%;}
            .col-s-6 {width: 50%;}
            .col-s-7 {width: 58.33%;}
            .col-s-8 {width: 66.66%;}
            .col-s-9 {width: 75%;}
            .col-s-10 {width: 83.33%;}
            .col-s-11 {width: 91.66%;}
            .col-s-12 {width: 100%;}
        }
        @media only screen and (min-width: 768px) {
            .col-1 {width: 8.33%;}
            .col-2 {width: 16.66%;}
            .col-3 {width: 25%;}
            .col-4 {width: 33.33%;}
            .col-5 {width: 41.66%;}
            .col-6 {width: 50%;}
            .col-7 {width: 58.33%;}
            .col-8 {width: 66.66%;}
            .col-9 {width: 75%;}
            .col-10 {width: 83.33%;}
            .col-11 {width: 91.66%;}
            .col-12 {width: 100%;}
        }
        html, body{
            background-color: rgba(0, 0, 0, 0.164);
            height: 100%;
            margin: 0;
            display: flex;
            flex-direction: column;
        }
        main {
            flex: 1;
        }
        .header{
            padding-bottom: 5%;
        }
        .topnav{
            background-color: rgb(255,140,0);
            overflow: hidden;
            width: 100%;
            padding: 4px;
            position: relative;
            color: white;
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            font-weight: 500;
            font-size: 23px;
            text-align: center;
        }
        .topnav a {
            color: white;
            font-weight: bold;
        }

        /* CARDS (IMAGENS)*/
        .column {
            background-color: whitesmoke;
            border-radius: 5px;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        }
        .servico:hover{
            border-radius: 0px;
            cursor: pointer;
        }
        .container {
            position: relative;
            width: 100%;
            height: auto;
            padding: 0px;
        }
        .image {
            width: 100%;
            height: 100%;
        }
        .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(255, 140, 0, 0.774);
            overflow: hidden;
            width: 0;
            height: 100%;
            transition: .8s ease;
            border-radius: 5px;
        }
        .container:hover .overlay {
            width: 100%;
            height: 100%;
        }

        /*Conteúdo dos cards*/
        .text {
            white-space: nowrap;
            position: absolute;
            overflow:hidden;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
        }
        .inner {
            padding: 7%;
            position: relative;
        }
        .inner a{
            color: black;
            text-decoration: none;
            font-size: 20px;
            font-weight: bold;
            display: block;
        }
        .content {
            width: 40%;
            text-align: left;
            font-size: 18px;
            font-weight: bold;
            display: inline-block;
        }
        .content2 {
            width: 50%;
            margin-top: 4%;
            text-align: right;
            font-size: 18px;
            font-weight: bold;
            display: inline-block;
        }

        /*Botão Watch Video*/
        .video a{
            color: white;
        }
        .button{
            width: 100%;
            padding: 5%;
            display: inline-block;
            font-weight: bold;
            text-align: center;
            text-transform: uppercase;
            border-radius: 50px;
            margin-top: 10%;
            cursor: pointer;
            background-color: rgb(255, 140, 0);
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        }
        .button:hover{
            background-color: rgba(255, 255, 255, 0.781);
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
            transition: all .5s ease;
            color: rgb(255, 140, 0);
        }

        /* RODAPÉ */
        .rodape {
            width: 100%;
            padding: 3% 4%;
            text-align: center;
            background: rgb(255, 140, 0);
        }
        .social-icons a {
            font-size: 1.5em;
            color: white;
            margin-right: 3%;
        }
        .social-icons a:first-child:hover{
            color: #3b5998;
            border-bottom: 1px solid #3b5998;
        }
        .social-icons a #twitter:hover{
            color: #00acee;
            border-bottom: 1px solid;
        }
        .social-icons a #github:hover{
            color: #171515;
            border-bottom: 1px solid;
        }
        .social-icons a #instagram:hover{
            color: #833AB4;
            border-bottom: 1px solid;
        }
        .social-icons a:last-child:hover{
            color: #0e76a8;
            border-bottom: 1px solid;
        }
        .rodape p{
            color: rgba(245, 245, 245, 0.699);
        }