@font-face{
  font-family: "Elza";
  src: url('../assets/fonts/Elza-Black.otf');
  font-weight: 900;
  font-style: normal;
}

@font-face{
  font-family: "Elza";
  src: url('../assets/fonts/Elza-BlackOblique.otf');
  font-weight: 900;
  font-style: italic;
}

@font-face{
  font-family: "Elza";
  src: url('../assets/fonts/Elza-Bold.otf');
  font-weight: bold;
  font-style: normal;
}

@font-face{
  font-family: "Elza";
  src: url('../assets/fonts/Elza-BoldOblique.otf');
  font-weight: bold;
  font-style: italic;
}

@font-face{
  font-family: "Elza";
  src: url('../assets/fonts/Elza-Extralight.otf');
  font-weight: 250;
  font-style: normal;
}

@font-face{
  font-family: "Elza";
  src: url('../assets/fonts/Elza-ExtralightOblique.otf');
  font-weight: 250;
  font-style: italic;
}

@font-face{
  font-family: "Elza";
  src: url('../assets/fonts/Elza-Light.otf');
  font-weight: 200;
  font-style: normal;
}

@font-face{
  font-family: "Elza";
  src: url('../assets/fonts/Elza-LightObliquec.otf');
  font-weight: 200;
  font-style: italic;
}

@font-face{
  font-family: "Elza";
  src: url('../assets/fonts/Elza-Medium.otf');
  font-weight: 400;
  font-style: normal;
}

@font-face{
  font-family: "Elza";
  src: url('../assets/fonts/Elza-MediumOblique.otf');
  font-weight: 400;
  font-style: italic;
}

@font-face{
  font-family: "Elza";
  src: url('../assets/fonts/Elza-Regular.otf');
  font-weight: 300;
  font-style: normal;
}

@font-face{
  font-family: "Elza";
  src: url('../assets/fonts/Elza-Oblique.otf');
  font-weight: 300;
  font-style: italic;
}

@font-face{
  font-family: "Elza";
  src: url('../assets/fonts/Elza-Semibold.otf');
  font-weight: 800;
  font-style: normal;
}

@font-face{
  font-family: "Elza";
  src: url('../assets/fonts/Elza-SemiboldOblique.otf');
  font-weight: 800;
  font-style: italic;
}

@font-face{
  font-family: "Elza";
  src: url('../assets/fonts/Elza-Thin.otf');
  font-weight: 100;
  font-style: normal;
}

@font-face{
  font-family: "Elza";
  src: url('../assets/fonts/Elza-ThinOblique.otf');
  font-weight: 100;
  font-style: italic;
}

html, body{
    min-height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Elza", sans-serif;
    font-size: 16px;
    font-weight: 300;
}

html{
    background: #ececec;
}

.container{
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    background: url('../assets/tela_inicial.png');
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: left center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 40%;
    padding-right: 10%;
}

.container::before{
    content: "";
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height: 100%;
    background:url('../assets/tela_inicial_02.png');
    background-repeat: no-repeat;
    background-size: auto 65%;
    background-position: right bottom;
}

.content{
    position:relative;
    width: auto;
    height: auto;
    /*display: inline-block;*/
    max-width: 25rem;
}

.center{
    text-align: center;
}

p.title{
    font-size: 3rem;
    font-weight: bold;
    color: #4dbfdd;
    margin-bottom: 1.5rem;
    line-height: 110%;
}


.content .btn{
    position:relative;
    display: inline-block;
    cursor: pointer;
    padding: 0.2rem 2rem;
    background: #000;
    color: #fff;
    transition: all 0.2s;
    margin-top: 1.5rem;
}

.content .btn.btn2{
    width:26%;
    bottom: 34%;
}

.content .btn.btn3{
    display: none;
    width:12%;
    bottom: 16%;
}

.content .btn:hover{
    transform:scale(1.05);
}

.content .btn.btn3.in{
    display: block;
}

.content .btn img{
    width: 100%;
    height: auto;
}

.modal{
    position:fixed;
    display: none;
    left:0;
    top:0;
    width: 100vw;
    height: 100vh;
    background:rgba(0,0,0,0.5);
    box-sizing: border-box;
}

.modal.in{
    display: block;
}

.modal .modal-dialog{
    width: 90vw;
    height: 90vh;
    background: white;
    margin-left: 5vw;
    margin-top: 5vh;
    padding-top:20px;
    box-sizing: border-box;
}

.modal.in .modal-dialog .modal-header{
    padding: 0 40px;
}

.modal.in .modal-dialog .modal-body{
    height: calc(90vh - 140px);
    box-sizing: border-box;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 40px;
}

.modal.in .modal-dialog .modal-footer{
    padding: 20px 40px;
    text-align: center;
}

.modal.in .modal-dialog table{
    border: 2px solid black;
    border-collapse: collapse;
}
.modal.in .modal-dialog th{
    border: 2px solid black;
}
.modal.in .modal-dialog td{
    border: 2px solid black;
}

@media screen and (orientation:landscape) and (max-width: 1024px){
  html, body{
    font-size: 11px;
  }

    .container{
        background-position: -30% center;
    }
}

@media screen and (orientation:portrait){
    html, body{
        font-size: 12px;
    }
  
    .container{
        background-size: auto 30vh;
        background-position: left bottom;
        padding-bottom: 30vh;
        padding-left: 1rem;
        padding-right: 1rem;
        height: 100vh;
        height: 100svh;
        box-sizing: border-box;
    }

    .container::before{
        display: none;
    }
  }