/* Geral */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hind Vadodara', sans-serif;
}

/* width */

::-webkit-scrollbar {
    width: 6px;
    height: 8px;
}

/* Track */



::-webkit-scrollbar-track {
    background: #343434;
    border-radius: 10px;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: #8c8c8c;
    border-radius: 10px;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #b5b5b5;
}

/* Font on Video Subtitle */

video::-webkit-media-text-track-display {
    font-size: 20px !important;
}

.imgw100 {
    width: 100%;
}

@media screen and (max-width: 720px) {
    .menu-scorm {
        width: 100% !important;
    }
}

body {

    overflow-x: hidden;
    background-image:    url(../img/_template/Margemtop.png),
                     url(../img/_template/Margembottom.png);

    background-repeat:   no-repeat,
                        no-repeat;

    background-position: left 0 top 0px,
                        left 0 bottom 0px;
    background-size:contain, contain;
    background-attachment: fixed, fixed;
    background-color: #fcfcfc;
}

html,
body {
    min-height: 100%;
}
#conteudo {
    display: flex;
    height: 70vh;
    width: 80vw;
    z-index: -15;
    padding-bottom:50px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    flex-direction:row;
    font-family: Hind;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;


}

#rodape-scorm {
    position: fixed;
    bottom: 60px;
    z-index: 60;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;

}

#rodape-scorm a img:not(.inativo):hover {
    filter: drop-shadow(1px 1px 5px #000)
}

p {
    font-family: 'Hind Vadodara', sans-serif;
    font-weight: 200;
    letter-spacing: 1px;
    color: #7e7e7e;
    font-size: 1.3em;
    line-height: 1.8em;
}


a {
    color: #1977a3;
    text-decoration: underline;
    word-break: break-all;
}



/* --------- Estrutura Template --------- */

header {
    height: 80px;
    position: relative;
    z-index: 50;
}

/* Menu */
.menu-scorm {
    margin: auto;
    width: 50%;
    display: flex;
    position: fixed;
    z-index:30;
}

.aulas {
    min-width: 100px;
    cursor: pointer;
    margin: 0 15px;
    color: #fff;
    font-weight: 600;
    flex: 1 1 0px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: flex-end;

    -webkit-border-bottom-right-radius: 15px;
    -webkit-border-bottom-left-radius: 15px;
    -moz-border-radius-bottomright: 15px;
    -moz-border-radius-bottomleft: 15px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    -webkit-box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 0.5);
}

.ativo {
    transition: height 250ms;
}


.ativo:hover {
    height: 80px;
}

.aula1,
.aula3 {
    background-color: #5596ee
}

.aula2,
.aula4 {
    background-color: #20bbd4
}


header p {

    font-size: 20px;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.tituloaula {
    font-family: 'Signika', serif;
    font-weight: 300;
    padding: 10px 20px;
    color: #fff;
    font-size: 1.3em;
    line-height: 1.8em;
}

footer {
    background: #242424;
    color: #f6f6f6;
    text-align: center;
}

footer img {
    margin: 0 10px;
}

#full-height {
    height: 100%;
}

.bg-ajuda {
    background: #dcdcdc;
}

/* Fim, Barra de Progresso */

.container {
    width: 85%;
    max-width: 948px;
    margin: 0 auto;
}

.container::after {
    content: "";
    clear: both;
    display: block;
    ;
}


/* --------- Fim, Estrutura Template --------- */

/* Se adequar a largura, sempre definir max-width no próprio elemento */

.left {
    float: left;
    margin-right: 10px;
}

/* Alinha os elementos a esquerda */

.right {
    float: right;
    margin-left: 10px;
}

/* Alinha os elementos a direita */

.inline-element {
    display: inline-block !important;
    margin: unset !important;
}

.center {
    float: unset !important;
    margin: 0 auto;
    display: block !important;
}

/* Alinha os elementos a direita */

.relative {
    position: relative;
}

.fixed {
    position: fixed;
    width: 100%;
}

.bgimgfixed {
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Cursor de objeto clicável */

.clickable {
    cursor: pointer;
}

.hidden {
    display: none;
}

/* Oculta o elemento */

.dflex {
    display: flex;
}

.dflexnivel {
    flex: 1;
}


.scale {
    transition: all .2s ease-in-out;
}

.scale:hover {
    transform: scale(1.1);
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.fontesignika{
    font-family: 'Signika', sans-serif !important;
    font-weight: 300;
}

/* gujarati */
@font-face {
    font-family: 'Hind Vadodara';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/hindvadodara/v7/neIQzCKvrIcn5pbuuuriV9tTSDn3uW8-oBOL.woff2) format('woff2');
    unicode-range: U+0964-0965, U+0A80-0AFF, U+200C-200D, U+20B9, U+25CC, U+A830-A839;
}

/* latin-ext */
@font-face {
    font-family: 'Hind Vadodara';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/hindvadodara/v7/neIQzCKvrIcn5pbuuuriV9tTSDn3uXo-oBOL.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Hind Vadodara';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/hindvadodara/v7/neIQzCKvrIcn5pbuuuriV9tTSDn3uXQ-oA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* gujarati */
@font-face {
    font-family: 'Hind Vadodara';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/hindvadodara/v7/neINzCKvrIcn5pbuuuriV9tTQInVrEsf.woff2) format('woff2');
    unicode-range: U+0964-0965, U+0A80-0AFF, U+200C-200D, U+20B9, U+25CC, U+A830-A839;
}

/* latin-ext */
@font-face {
    font-family: 'Hind Vadodara';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/hindvadodara/v7/neINzCKvrIcn5pbuuuriV9tTQJzVrEsf.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Hind Vadodara';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/hindvadodara/v7/neINzCKvrIcn5pbuuuriV9tTQJLVrA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* gujarati */
@font-face {
    font-family: 'Hind Vadodara';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/hindvadodara/v7/neIQzCKvrIcn5pbuuuriV9tTSGH2uW8-oBOL.woff2) format('woff2');
    unicode-range: U+0964-0965, U+0A80-0AFF, U+200C-200D, U+20B9, U+25CC, U+A830-A839;
}

/* latin-ext */
@font-face {
    font-family: 'Hind Vadodara';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/hindvadodara/v7/neIQzCKvrIcn5pbuuuriV9tTSGH2uXo-oBOL.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Hind Vadodara';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/hindvadodara/v7/neIQzCKvrIcn5pbuuuriV9tTSGH2uXQ-oA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* gujarati */
@font-face {
    font-family: 'Hind Vadodara';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/hindvadodara/v7/neIQzCKvrIcn5pbuuuriV9tTSE3xuW8-oBOL.woff2) format('woff2');
    unicode-range: U+0964-0965, U+0A80-0AFF, U+200C-200D, U+20B9, U+25CC, U+A830-A839;
}

/* latin-ext */
@font-face {
    font-family: 'Hind Vadodara';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/hindvadodara/v7/neIQzCKvrIcn5pbuuuriV9tTSE3xuXo-oBOL.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Hind Vadodara';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/hindvadodara/v7/neIQzCKvrIcn5pbuuuriV9tTSE3xuXQ-oA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* gujarati */
@font-face {
    font-family: 'Hind Vadodara';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/hindvadodara/v7/neIQzCKvrIcn5pbuuuriV9tTSCnwuW8-oBOL.woff2) format('woff2');
    unicode-range: U+0964-0965, U+0A80-0AFF, U+200C-200D, U+20B9, U+25CC, U+A830-A839;
}

/* latin-ext */
@font-face {
    font-family: 'Hind Vadodara';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/hindvadodara/v7/neIQzCKvrIcn5pbuuuriV9tTSCnwuXo-oBOL.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Hind Vadodara';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/hindvadodara/v7/neIQzCKvrIcn5pbuuuriV9tTSCnwuXQ-oA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/*Signika-VariableFont_wght*/
/* vietnamese */
@font-face {
    font-family: 'Signika';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/signika/v12/vEFR2_JTCgwQ5ejvG14mBlprZ0gk0w.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Signika';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/signika/v12/vEFR2_JTCgwQ5ejvG18mBlprZ0gk0w.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Signika';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/signika/v12/vEFR2_JTCgwQ5ejvG1EmBlprZ0g.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  /* vietnamese */
  @font-face {
    font-family: 'Signika';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/signika/v12/vEFR2_JTCgwQ5ejvG14mBlprZ0gk0w.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Signika';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/signika/v12/vEFR2_JTCgwQ5ejvG18mBlprZ0gk0w.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Signika';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/signika/v12/vEFR2_JTCgwQ5ejvG1EmBlprZ0g.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }

  /* página 1 */
  
  #titulo-pagina1{
    position: absolute;
    margin: 180px 120px;
  }
  #bt-pagina1{
    z-index: 999;
    position: absolute;
    margin: -12% 120px;
  }
  .inicio{
      display: flex;
      width: 100%;
      height: 100% !important;
      align-items: center;
  }
  .pagina1 a{
    min-width: 200px;
    min-height: 48px;
    color: black;
    text-align: center;
    background-color: #20BBD4;
    border-radius: 12px;
    padding-top: 14px;
    font-family: 'Signika', serif;
    text-decoration: none;
  }
  .pagina1 a:hover{
    filter: drop-shadow(1px 1px 5px #000);
    text-decoration: none;
  }
  ul{
    margin-left: 20px;
  }
ul, ol, li{
    color: #7e7e7e;
}
ul li{
    color: #5596EE; /* cor da bolinha */
}
ul span{
    font-family: 'Hind Vadodara', sans-serif;
    font-weight: 200;
    letter-spacing: 1px;
    color: #7e7e7e;
    font-size: 1.3em;
    line-height: 1.8em;
}
.titulo-tela{
    font-family: 'Signika', serif;
    font-size: 40px;
    font-weight: 600;
    color: #20BBD4;
    line-height: 40px;
}
.subtitulo-tela{
    font-family: 'Signika', serif;
    font-size: 26px;
    color: #20BBD4;
    
}
.card-tela{
    background-color: #20BBD4;
    border-radius: 20px 20px 0px 20px;
    padding: 30px 30px 30px 30px;
    width: 100%;
    min-height: 100px;
}
.card-tela p{
    color: black;
}
.card-tela .titulo{
    color: white;
    font-size: 26px;
    font-family: 'Signika', serif;
}
.card-tela2{
    background-color: rgba(143, 229, 242, 0.317);
    margin-left: -14px;
    border-radius: 0px 20px 0px 0px;
    border: solid 3px #20BBD4;
    padding: 30px 30px 30px 30px;
    width: 100%;
    min-height: 100px;
    z-index: -1;
    color: black;
}

@media screen and (max-width: 720px) {
    body {
     background-image:none !important;
     }
 }