* { 
            box-sizing: border-box; 
        } 
        html { 
  position: relative; 
  min-height: 100%; 
} 
    body { 
      margin: 0; 
      color: black; 
      font-family: 'Courier New', monospace; 
    } 
        .navbarMega { 
            overflow: hidden; 
            background-color: #282828; 
            font-family: "Poppins", Arial;
            text-align: justify;
        } 
            .navbarMega a { 
                float: left; 
                font-size: 19px; 
                color: #ffffff; 
                text-align: center; 
                padding: 14px 16px; 
                text-decoration: none; 
                font-weight: 500; 
            } 
            .navbarMega .navr { 
                float: right; 
                font-size: 16px; 
                color: #a1a1a1; 
                text-align: center; 
                padding: 14px 16px; 
                text-decoration: none; 
            } 
        .dropdownMega { 
            float: left; 
            overflow: hidden; 
        } 
            .dropdownMega .dropbtnMega { 
                font-size: 16px; 
                border: none; 
                outline: none; 
                color: #000000; 
                padding: 14px 16px; 
                background-color: inherit; 
                font: inherit; 
                margin: 0; 
            } 
            .navbarMega a:hover, .dropdownMega:hover .dropbtnMega { 
                background-color: #383c43; 
                color: white; 
            } 
        .dropdownMega-content { 
            display: none; 
            position: absolute; 
            background-color: #000000; 
            width: 100%; 
            left: 0; 
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); 
            z-index: 100; 
        } 
            .dropdownMega-content .header { 
                background: #383c43; 
                padding: 16px; 
                color: white; 
            } 
        .dropdownMega:hover .dropdownMega-content { 
            display: block; 
        } 
        /* Create three equal columns that floats next to each other */ 
        .columnMega { 
            float: left; 
            width: 16%; 
            padding: 10px; 
            background-color: #000000; 
            height: 350px; 
        } 
        .columnMega { 
            color: white; 
        } 
            .columnMega a { 
                float: none; 
                color: white; 
                padding: 16px; 
                text-decoration: none; 
                display: block; 
                text-align: left;
            } 
                .columnMega a:hover { 
                    background-color: #000000; 
                    color: #7f7aee;
                } 
        /* Clear floats after the columns */ 
        .row:after { 
            content: ""; 
            display: table; 
            clear: both; 
        } 
        .sidebarTools { 
            width: 160px; 
            display: block; 
            position: absolute; 
            top: 30; 
            right: 0; 
            background-color: #000; 
            border: 1px solid #e1e1e1; 
            z-index: 1000; 
        } 
            .sidebarTools .titleTools { 
                font-size: 9px; 
                color: #e1e1e1; 
            } 
            .sidebarTools .tool { 
                font-size: 24px; 
                color: #b1b1b5; 
                height: 30px !important; 
                width: 30px !important; 
                text-align: center; 
                float: right; 
            } 
            .sidebarTools a { 
                color: #b1b1b5; 
            } 
                .sidebarTools a:hover { 
                    color: white; 
                } 
        .main { 
            padding: 16px; 
            display: inline-block; 
            vertical-align: top; 
            text-align: left; 
            width: 100%; 
        } 
    #TableOfContents .title { 
      color: white; 
            font-size: 20px; 
            font-weight:bolder; 
    } 
    #TableOfContents ul { 
            display:block; 
            list-style-type:disc; 
            margin-block-start:1em; 
            margin-block-end: 1em; 
            margin-inline-start:0px; 
            margin-inline-end:0px; 
            padding-inline-start:40px; 
    } 
    #TableOfContents ul a { 
            color:white; 
            text-decoration:none; 
    } 
      /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */ 
      @media screen and (max-width: 600px) { 
        .column { 
          width: 100%; 
          height: auto; 
        } 
      } 
    .showcode { 
      width:100%; 
            text-align:center; 
    } 
    .showcodeTitle { 
            width:100%; 
            padding:5px; 
            text-align:center; 
            font-size:12px; 
    } 
    .showcode pre { 
            width:90%; 
      background-color: #333; 
      color: white; 
      font-family: Courier New, Courier, monospace; 
      font-size: 12px; 
      padding: 20px; 
            display:inline-block; 
            text-align:left !important; 
    } 
    pre { 
      counter-reset: line; 
    } 
    code { 
      counter-increment: line; 
      padding: 0px; 
      margin: 0px; 
    } 
    code:before { 
      content: counter(line); 
    } 
    code:before { 
      -webkit-user-select: none; 
    } 
    .tree { 
      --spacing: 1.5rem; 
      --radius: 8px; 
    } 
      .tree li { 
        display: block; 
        position: relative; 
        padding-left: calc(2 * var(--spacing) - var(--radius) - 2px); 
      } 
      .tree ul { 
        margin-left: calc(var(--radius) - var(--spacing)); 
        padding-left: 0; 
      } 
        .tree ul li { 
          border-left: 2px solid #ddd; 
        } 
          .tree ul li:last-child { 
            border-color: transparent; 
          } 
          .tree ul li::before { 
            content: ''; 
            display: block; 
            position: absolute; 
            top: calc(var(--spacing) / -2); 
            left: -2px; 
            width: calc(var(--spacing) + 2px); 
            height: calc(var(--spacing) + 1px); 
            border: solid #ddd; 
            border-width: 0 0 2px 2px; 
          } 
      .tree summary { 
        display: block; 
        cursor: pointer; 
      } 
        .tree summary::marker, 
        .tree summary::-webkit-details-marker { 
          display: none; 
        } 
        .tree summary:focus { 
          outline: none; 
        } 
        .tree summary:focus-visible { 
          outline: 1px dotted #000; 
        } 
        .tree li::after, 
        .tree summary::before { 
          content: ''; 
          display: block; 
          position: absolute; 
          top: calc(var(--spacing) / 2 - var(--radius)); 
          left: calc(var(--spacing) - var(--radius) - 1px); 
          width: calc(2 * var(--radius)); 
          height: calc(2 * var(--radius)); 
          border-radius: 0%; 
          background: #ffffff; 
        } 
        .tree summary::before { 
          content: '+'; 
          z-index: 1; 
          background: #ffffff; 
          color: #000000; 
          line-height: calc(2 * var(--radius) - 2px); 
          text-align: center; 
        } 
      .tree details[open] > summary::before { 
        content: '-'; 
        color: #ffffff; 
        background: #000000; 
      } 
/********************************************/ 
header video { 
  position: absolute; 
  top: 50%; 
  left: 50%; 
  min-width: 100%; 
  min-height: 100%; 
  width: auto; 
  height: auto; 
  z-index: 0; 
  -ms-transform: translateX(-50%) translateY(-50%); 
  -moz-transform: translateX(-50%) translateY(-50%); 
  -webkit-transform: translateX(-50%) translateY(-50%); 
  transform: translateX(-50%) translateY(-50%); 
} 
header .container { 
  position: relative; 
  z-index: 2; 
} 
header .overlay { 
  position: absolute; 
  top: 0; 
  left: 0; 
  height: 100%; 
  width: 100%; 
  background-color: black; 
  opacity: 0.5; 
  z-index: 1; 
} 
video.fillWidth { 
  width: 100%; 
} 
/********************************************/ 
.footer { 
  position: absolute; 
  bottom: 0; 
  width: 100%; 
  height: 60px; /* Set the fixed height of the footer here */ 
  line-height: 60px; /* Vertically center the text there */ 
  color: #A9A9A9; 
  padding-top: 40px;
  padding-bottom: calc(10rem - 40px);
  background-color: #000000;
  padding-left: 50px;
  padding-right: 50px;
  font-family: "Poppins", Arial;
  font-size: 15px;
  text-transform: none;
  font-weight: 500;
} 
.footer a { 
  color: #ffffff; 
  text-decoration: underline; 
} 
/********************************************/ 
#sidebar-wrapper { 
  min-height: 100vh; 
  margin-left: -15rem; 
  transition: margin 0.25s ease-out; 
} 
#sidebar-wrapper .sidebar-heading { 
  padding: 0.875rem 1.25rem;
  font-family: "Poppins", Arial; 
  color: #282828;
  font-size: 21px;
  font-weight: 600;
  text-align: left;
  padding-top: 0px;
  padding-bottom: 0px;
  line-height: 2rem;
  padding-left: 0px;
  padding-right: 0px;
} 
#sidebar-wrapper .list-group {
    width: 100%;
    font-family: "Poppins", Arial;
    color: #282828;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 0px;
    line-height: 1rem;
}
#page-content-wrapper { 
  min-width: 100vw; 
} 
body.sb-sidenav-toggled #wrapper #sidebar-wrapper { 
  margin-left: 0; 
} 
@media (min-width: 768px) { 
  #sidebar-wrapper { 
    margin-left: 0; 
  } 
  #page-content-wrapper { 
    min-width: 0; 
    width: 100%; 
  } 
  body.sb-sidenav-toggled #wrapper #sidebar-wrapper { 
    margin-left: -15rem; 
  } 
} 
/***********************/ 
.showcode pre { 
      width:90%; 
      background-color: #333; 
      color: white; 
      font-family: Courier New, Courier, monospace; 
      font-size: 12px; 
      padding: 0px; 
      display:inline-block; 
      text-align:left !important; 
    } 
    pre { 
      counter-reset: line; 
    } 
    code { 
      counter-increment: line; 
      padding: 0px; 
      margin: 0px; 
    } 
    code:before { 
      content: counter(line); 
      padding-right: 20px; 
      margin-right: 10px; 
    } 
    code:before { 
      -webkit-user-select: none; 
    } 
    /***********************/ 
    .mybreadcrumb { 
      padding-left: 40px; 
    } 
    /***********************/ 
    .ebookv2-box{
      max-width: 100%;
      padding-bottom: 0rem;
      padding-top: 0rem;
    }
    .ebookv2-items-box{
      margin-bottom: 0rem;
      max-width: 100%;
    }
    .ebookv2-item-box {
      position: relative;
      display: inline-block;
      max-width: 33vw;
      width: 28vw;
      height: 370px;
      word-wrap: break-word;
      padding-top: 20px;
      padding-bottom: 20px;
      margin:15px;
      overflow: hidden;
      vertical-align: top;
    }
    .ebookv2-item-box-title {
      color: #4d4d4d;
      padding-left: 10px;
      text-transform: lowercase;
      font-family: 'Poppins', sans-serif;
      font-size: 35px;
      font-weight: 600; 
      letter-spacing: 0px;
      text-align: center;
      padding-bottom: 40px;
      line-height: 2rem;
    }
    .ebookv2-item-box-logo {
      text-align: center;
      max-width: 100%;
      height: auto;
      width: 100%;
    }
    .ebookv2-item-box-logo img {
      text-align: center;
      max-width: 80%;
      height: auto;
      max-height: 80%;
      width:80%;
    }
    .ebookv2-cat-box {
      padding-top: 0rem;
      padding-left: 1.5rem;
      padding-right: 2.1rem;
      padding-bottom: 2.1rem;
    }
    .ebookv2-cat-box-title {
      font: 600 75px "Poppins", Arial;
      text-transform: none;
      color: #000000;
      text-align: justify;
      -webkit-font-smoothing: antialiased;
      line-height: 6.5rem;
    }
    .ebookv2-cat-box-desc {
      font: 300 20px "Poppins", Arial;
      text-transform: none;
      color: #000000;
      line-height: 36px;
      text-align: justify;
      -webkit-font-smoothing: antialiased;
    }
     @media screen and (max-width: 1024px) { 
        .ebookv2-item-box {
          max-width: 40vw;
          width: 40vw;
        }
        .ebookv2-item-box-logo img {
          max-width: 85%;
          height: auto;
          max-height: 80%;
          width:85%;
        }
      }
      @media screen and (max-width: 720px) { 
        .ebookv2-item-box {
          max-width: 85vw;
          width: 85vw;
          height: 270px;
        }
        .ebookv2-item-box-logo img {
          max-width: 80%;
          height: auto;
          max-height: 80%;
          width:80%;
        }
      } 
    .breadcrumb-item {
      padding-top: 1rem;
      color: #000000;
      font: 300 17px "Poppins", Arial;
    }
    .breadcrumb-item a {
      padding-top: 1rem;
      color: #000000;
      font: 300 17px "Poppins", Arial;
    }
    .breadcrumb-item a:hover { 
      color: #e8452a;
    }
    .breadcrumb-item active {
      color: #000000;
    }
    .breadcrumb-item active a {
      font: 300 17px "Poppins", Arial;
      text-transform: none;
      color: #000000;
      line-height: 36px;
      text-align: justify;
      -webkit-font-smoothing: antialiased;
    }
    .breadcrumb-item active a:hover { 
      color: #e8452a;
    }
    .ebookv2-book-box {
      max-width: 100%;
      padding: 3rem;
      font: 300 17px "Poppins", Arial;
      text-transform: none;
      color: #000000;
      line-height: 36px;
      text-align: justify;
    }
    /***********************/ 
    .border-bottom {
      color: #282828;
      font-family: "Poppins", Arial;
      font-size: 19px;
      font-weight: 600;
      letter-spacing: 0px;
      text-align: left;
      padding-top: 10px;
      padding-bottom: 10px;
      line-height: 2rem;
    }
    .d-block {
      font: 300 20px "Poppins", Arial;
      text-transform: none;
      color: #000000;
      line-height: 36px;
      text-align: justify;
      -webkit-font-smoothing: antialiased;
    }
    .text-gray-dark {
      font: 600 25px "Poppins", Arial;
      text-transform: none;
      color: #000000;
      line-height: 36px;
      text-align: justify;
      -webkit-font-smoothing: antialiased;
    }
    .text-gray-dark a {
      font: 600 25px "Poppins", Arial;
      text-transform: none;
      color: #000000;
      line-height: 36px;
      text-align: justify;
      -webkit-font-smoothing: antialiased;
    }
    /*************************************/
    .offcanvas-header .btn-close {
      background-color: #ffffff;
      border: 5px solid #ffffff;
      border-radius: 5.375rem;
      color: #ffffff;
    }
    .offcanvas-link {
      margin: 2.6rem 0 2.6rem 0;
      padding-left: 3rem;
      padding-right: 3rem;
      color: #ffffff;
      font-family: "Poppins", Arial;
      font-size: 15px;
      list-style: none;
      font-weight: 500;
      text-transform: lowercase;
      text-decoration: none;
      line-height: 2.5rem;
    } 
    .offcanvas-link:hover {
      text-decoration: underline;
    }
    .offcanvas-header {
      background-color: #000000; 
    }
    .offcanvas-body {
      background-color: #000000; 
    }
    /*************************************/
    .bg_contact04 {
      min-height: 100%;
      padding-bottom: 7rem;
      padding-top: 5px;
      text-align: left;
      visibility: visible;
      animation-name: fadeIn;
      padding-left: 0px;
      padding-right: 0px;
      --bg-opacity: 1;
      background-color: #f8f8fe;
      background-color: rgba(235,234,244,var(--bg-opacity));
      background-size: 1500px 1500px;
    }
    .ebookv2-cat-box-title-contact {
      font: 600 75px "Poppins", Arial;
      text-transform: none;
      color: #000000;
      text-align: justify;
      -webkit-font-smoothing: antialiased;
      line-height: 6.5rem;
      padding-top: 1rem;
      padding-bottom: 1rem;
      margin-left: 10px;
    }
    .contact_text3 {
      font: 300 25px "Poppins", Arial;
      text-transform: none;
      color: #000000;
      line-height: 36px;
      padding-bottom: 10px;
      margin-left: 10px;
      margin-bottom: 50px;
    }
    .contact_4_button {
        font-weight: 600;
        font-family: "Poppins", Arial;
        vertical-align: middle;
        padding-top: 15px;
        padding-bottom: 15px;
        background: #7f7aee;
        padding-left: 40px;
        padding-right: 40px;
        margin-bottom: 80px;
        border-radius: 10px;
        text-transform: capitalize;
        border: 1px solid #7f7aee;
        font-size: 21px;
        color: #ffffff;
        margin-top: 40px;
        text-decoration: none;
    }
    .contact_4_button:hover {
        color: #ffffff;
        border: 1px solid #B8B5F3;
        background-color: #B8B5F3;
        text-decoration:none;
        box-shadow: 0 10px 15px rgb(0 0 0 / 50%);
        transform: translate(0, -2px);
        opacity: 1 !important;
    }
        /******************************************************************/
    section#contact .form-group textarea.form-control01 {
        height: 218px; width: 100%;
    }
    section#contact .form-group input.form-control01 {
        height: auto;
    }
    section#contact .form-group input, section#contact .form-group textarea {
      padding: 20px;
    }
    .form-control01 {
        display: block;
        width: 100%;
        height: 60px;
        padding: 6px 12px;
        font-size: 15px;
        line-height: 1.42857143;
        color: #000000;
        background-color: #ffffff;
        background-image: none;
        border-left: 0px solid #ffffff;
        border-right: 0px solid #ffffff;
        border-top: 0px solid #ffffff;
        border-bottom: 0px solid #282828;
        border-radius: 5px;
        font-family: "Poppins", Arial;
        font-weight: 300;
        box-shadow: 0 0 0 1px rgb(56 60 67 / 7%), 0 3px 6px 0 rgb(56 60 67 / 15%);
    }
    .form-control01_1 {
        display: block;
        width: 100%;
        height: 154px;
        padding: 6px 12px;
        font-size: 15px;
        line-height: 1.42857143;
        color: #000000;
        background-color: #ffffff;
        background-image: none;
        border-left: 0px solid #ffffff;
        border-right: 0px solid #ffffff;
        border-top: 0px solid #ffffff;
        border-bottom: 0px solid #282828;
        border-radius: 5px;
        font-family: "Poppins", Arial;
        font-weight: 300;
        box-shadow: 0 0 0 1px rgb(56 60 67 / 7%), 0 3px 6px 0 rgb(56 60 67 / 15%);
    }
    section#contact .form-group textarea.form-control3 {
        height: 150px;
    }
    .form-group {
        margin-bottom: 1rem;
    }
    #sidebarToggle {
      background-color: #dddddd;
      border: 1px solid #dddddd;
    }
    .footer__menus {
        padding-top: 44px;
        padding-bottom: 44px;
    }
.site-footer {
      padding-top: 40px;
      padding-bottom: calc(5rem - 40px);
      background-color: #000000;
      padding-left: 95px;
      padding-right: 50px;
      text-align: left;
    }
.site-footer0 {
    padding-top: 0px;
    padding-bottom: calc(0rem - 10px);
    background-color: #000000;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
    max-width: 650px;
}
.footer-link1 {
    line-height: 2em;
    cursor: pointer;
    font-family: "Poppins", Arial;
    font-size: 15px;
    width: 100%;
    text-transform: lowercase;
    font-weight: 500;
    color: #A9A9A9;
    text-decoration: none;
}
.footer-links1 a {
    color: #A9A9A9;
    padding-left: 5px;
    padding-right: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 100;
    text-transform: none;
    text-decoration: none;
}
.footer-links1 a:hover {
    color: #e8452a;
    text-decoration: none;
}
.site-footer1 {
    padding-top: 40px;
    padding-bottom: calc(8rem - 40px);
    background-color: #000000;
    padding-left: 130px;
    padding-right: 50px;
    text-align: left;
    border-top: 1px solid hsla(0, 0%, 100%, .2);
}
    .menu-footer{
        display:inline;   
    }
    .footer_text {
        font-size: 10px;
        line-height: 18px;
        cursor: pointer;
        color: #ffffff;
        font-family: "Poppins", Arial;
        width: 100%;
        text-transform: none;
        font-weight: 500;
        padding-top: 5px;
        text-align: left;
    }
    .footer_link2 {
        line-height: 18px;
        cursor: pointer;
        color: #9C9C9C;
        font-family: "Poppins", Arial;
        font-size: 10px;
        width: 100%;
        text-transform: none; 
        font-weight: 500;
        text-decoration: underline;
    }
    .footer_link2:hover {
        text-decoration:underline; 
        color: #e8452a; 
    }
    .footer_link {
        cursor: pointer;
        width: 100%;
        list-style-type: none;
        line-height: 2em;
        color: #9C9C9C;
        font-family: "Poppins", Arial;
        font-size: 15px;
        text-transform: none; 
        font-weight: 500;
        text-decoration: none;
        text-align: left;
    }
    .footer_link a {
        line-height: 2em;
        cursor: pointer;
        color: #9C9C9C;
        font-family: "Poppins", Arial;
        font-size: 15px;
        text-decoration: none; 
        font-weight: 500;
        text-transform: none;
        text-align: left;
    }
    .footer_link a:hover{
        text-decoration:none; 
        color: #e8452a; 
    }
    .footer_link1 {
        line-height: 2em;
        cursor: pointer;
        color: #ffffff;
        font-family: "Poppins", Arial;
        font-size: 17px;
        width: 100%;
        text-transform: none;
        text-decoration:underline; 
        font-weight: 500; 
    }
    .footer_link1 a{
        line-height: 2em;
        cursor: pointer;
        color: #ffffff;
        font-family: 'montserrat', 'Helvetica Neue', 'Helvetica', sans-serif;
        font-size: 21px;
        width: 100%;
        text-transform: none; 
        text-decoration:underline;
        font-weight: 500;   
    }
    .footer_link1 a:hover{
        text-decoration:underline;  
    }
    .copyright {
        text-align: left;
        color: #ffffff;
        font-weight: 500;
        font-family: "Poppins", Arial;
        font-size: 15px;
        margin-top: 0px;
        padding-left: 0px;
        text-transform: none;
    }
    /***************************************/
header.masthead {
  padding-top: 10rem;
  padding-left: 0px;
  padding-bottom: calc(5rem - 56px);
  background-image: url(/assets/portaldigital/portaldigital/book_header2.jpg); 
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-attachment: scroll;
  background-attachment: fixed; 
}
header.masthead hr {
  margin-top: 30px;
  margin-bottom: 30px;
}
header.masthead h1 {
    font-size: 2rem;
    text-align: center;
    font-family: "Poppins", Arial;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 0px;
    text-transform: none;
}
header.masthead p {
  font-weight: 300;
}
@media (min-width: 768px) {
  header.masthead p {
    font-size: 1.15rem;
  }
}
@media (min-width: 992px) {
  header.masthead {
    height: 30vh;
    min-height: 380px;
    padding-top: 0;
    padding-bottom: 0;
  }
  header.masthead h1 {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  header.masthead h1 {
    font-size: 5.1rem;
  }
}
header.masthead .scroll-down {
    position: initial;
    bottom: 20px;
    width: 100%;
    text-align: center;
}
header.masthead .scroll-down .btn {
    font-size: 50px;
    line-height: 50px;
    width: 55px;
    height: 55px;
    padding: 0;
    letter-spacing: normal;
    color: white;
}
    /***********************/ 
.nav-link {
    text-transform: lowercase;
    font-family: "Poppins", Arial;
    font-size: 17px;
    font-weight: 600;
    color: #9c9c9c;
}
/***********************/ 
header.masthead03 {
    padding-top: 3rem;
    padding-bottom: calc(3rem - 36px);
    background-image: url(/assets/portaldigital/books/header_books1.jpg);
    border-bottom: 0px solid rgba(45,55,70,0.2);
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
    background-attachment: scroll;
    background-attachment: fixed;
}
header.masthead03 hr {
  	margin-top: 30px;
  	margin-bottom: 30px;
}
header.masthead03 h1 {
  	font-size: 2rem;
  	font-family:'Oswald', sans-serif;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 400;
}
header.masthead03 p {
  	font-weight: 300; 
}
@media (min-width: 768px) {
  header.masthead03 p {
    font-size: 1.35rem;
  }
}
@media (min-width: 992px) {
  header.masthead03 {
    height: 10vh;
    min-height: 310px;
    padding-top: 0;
    padding-bottom: 0;
  }
  header.masthead03 h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  header.masthead03 h1 {
    font-size: 4rem;
  }
}
/***********************/ 
header.masthead04 {
    padding-top: 7rem;
    padding-bottom: calc(3rem - 36px);
    background-color:#000000;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
    background-attachment: scroll;
    background-attachment: fixed;
}
header.masthead04 hr {
  	margin-top: 30px;
  	margin-bottom: 30px;
}
header.masthead04 h1 {
  	font-size: 2rem;
  	font-family:'Oswald', sans-serif;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 400;
}
header.masthead04 p {
  	font-weight: 300; 
}
@media (min-width: 768px) {
  header.masthead04 p {
    font-size: 1.35rem;
  }
}
@media (min-width: 992px) {
  header.masthead04 {
    height: 10vh;
    min-height: 150px;
    padding-top: 0;
    padding-bottom: 0;
  }
  header.masthead04 h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  header.masthead04 h1 {
    font-size: 4rem;
  }
}
/***************************/ 
.s-header {
    width: 100%;
    height: 26px;
    background-color: transparent;
    position: absolute;
    top: 0;
    z-index: 500;
}
.site-logo1 {
    width: 150px;
    height: 36px;
}
.header-logo {
    display: inline-block;
    position: absolute;
    margin: 0;
    padding: 0;
    left: 120px;
    top: 30px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 501;
}
.nav-link1 {
    font-size: 0.8rem;
    line-height: 1.6;
    font-family: "Poppins", Arial;
    font-weight: 600;
    text-align: center;
    text-transform: lowercase;
    color: #FFFFFF;
    vertical-align: middle;
    background-color: transparent;
    text-decoration: none;
    padding-top: 10px;
    padding-left: 0px;
}
.nav-link1 a {
    font-size: 0.8rem;
    line-height: 1.6;
    font-family: "Poppins", Arial;
    font-weight: 600;
    text-align: center;
    text-transform: lowercase;
    color: #FFFFFF;
    vertical-align: middle;
    background-color: transparent;
    text-decoration: none;
    padding-top: 10px;
    padding-left: 0px;
}
.nav-link1 a:hover {
    color: #e8452a;
    text-decoration: underline;
}
/* ------------------------------------------------------------------- 
 * ## main navigation 
 * ------------------------------------------------------------------- */
.header-nav {
    background: #0C0C0C;
    color: rgba(255, 255, 255, 0.25);
    font-family: "Poppins", Arial;
    font-size: 1.3rem;
    line-height: 1.846;
    padding: 3.6rem 3rem 3.6rem 3.6rem;
    height: 100%;
    width: 280px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 700;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    visibility: hidden;
}
.header-nav a, .header-nav a:visited {
    color: rgba(255, 255, 255, 0.5);
}
.header-nav a:hover,
.header-nav a:focus,
.header-nav a:active {
    color: white;
}
.header-nav h3 {
    font-family: "Poppins", Arial;
    font-size: 11px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: .25rem;
    margin-bottom: 4.8rem;
    margin-top: -0.9rem;
    color: #F05F40;
}
.header-nav p {
    margin-bottom: 2.7rem;
}
.header-nav__content {
    position: relative;
    left: 50px;
    opacity: 0;
    visibility: hidden;
}
.header-nav__list {
    font-family: "Poppins", Arial;
    font-size: 15px;
    margin: 3.6rem 0 3rem 0;
    padding: 0 0 1.8rem 0;
    list-style: none; 
	text-transform:none; 
	font-weight:100;
}
.header-nav__list li {
    padding-left: 0;
    line-height: 2.5rem;
}
.header-nav__list a,
.header-nav__list a:visited {
    color: #FFFFFF;
}
.header-nav__social {
    list-style: none;
    display: inline-block;
    margin:0px;
    font-size: 17px;
}
.header-nav__social li {
    margin-right: 0px;    
	margin: 3.6rem 0 3rem 0;
    padding: 0 0 0 0;
    display: inline-block;
}
.header-nav__social li a {
    color: rgba(255, 255, 255, 0.15);
}
.header-nav__social li a:hover,
.header-nav__social li a:focus {
    color: white;
}
.header-nav__social li:last-child {
    margin: 0;
}
.header-nav__close {
    display: block;
    height: 42px;
    width: 42px;
    border-radius: 0px;
    background-color: #0C0C0C;
    position: absolute;
    top: 36px;
    right: 30px;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    z-index: 800; 
	font-size:38px;
}
.header-nav__close span::before, 
.header-nav__close span::after {
    content: "";
    display: block;
    height: 2px;
    width: 12px;
    background-color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 9px;
    margin-top: -1px;
}
.header-nav__close span::before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.header-nav__close span::after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* menu is open
 * ----------------------------------------------- */
.menu-is-open .header-nav {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
    -webkit-overflow-scrolling: touch;
}
.menu-is-open .header-nav .header-nav__content {
    opacity: 1;
    visibility: visible;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    left: 0;
}
/* ------------------------------------------------------------------- 
 * ## mobile menu toggle 
 * ------------------------------------------------------------------- */
.header-menu-toggle {
    position: fixed;
    right: 38px;
    top: 10px;
    height: 42px;
    width: 42px;
    line-height: 42px;
    font-family: "Poppins", Arial;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: .3rem;
    color: #ffffff;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
	background: transparent;	
}
.header-menu-toggle.opaque {
    background-color: transparent;
}
.header-menu-toggle.opaque .header-menu-text {
    background-color: #282828;
}
.header-menu-toggle:hover, .header-menu-toggle:focus {
    color: #FFFFFF;
}
.header-menu-text {
    display: block;
    position: absolute;
    top: 0;
    left: -70px;
    width: 70px;
    padding-left: 12px;
}
.header-menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    margin-top: -1px;
    position: absolute;
    left: 10px;
    top: 50%;
    right: auto;
    bottom: auto;
    background-color: #AA0216;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.header-menu-icon::before, .header-menu-icon::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: inherit;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.header-menu-icon::before {
    top: -9px;
}
.header-menu-icon::after {
    bottom: -9px;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * header
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 600px) {
    .s-header {
        height: 26px;
    }
    .header-logo {
        left: 30px;
    }
    .header-menu-toggle {
        right: 25px;
    }
}
@media only screen and (max-width: 400px) {
    .header-menu-text {
        display: none;
    }
}
/* menu is open
 * ----------------------------------------------- */
.menu-is-open .header-nav {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
    -webkit-overflow-scrolling: touch;
}
.menu-is-open .header-nav .header-nav__content {
    opacity: 1;
    visibility: visible;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    left: 0;
}
/****************************************************/
#content-mobile {display: none;}
#content-tablet {display: none;}
@media screen and (max-width: 991px) {
    #content-desktop {display: none;}
    #content-mobile {display: block;}
    #content-tablet {display: block;}
}
@media screen and (max-width: 768px) {
    #content-desktop {display: none;}
    #content-mobile {display: block;}
    #content-tablet {display: block;}
}
/******************************************************/
.bg-dark {
    background-color: #000000;
}
.footer-plus {
    display: inline-block;
    position: relative;
    width: 12px;
}
.m-plus-f1 {
    color: #9c9c9c;
    font-family: 'Work Sans',Helvetica,Arial,Sans-serif;
    font-weight: 900;
}
ul {
    margin-top: 0;
    margin-bottom: 1rem;
    list-style-type: none;
}
a {
  	color: inherit;
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	transition: all 0.2s; 
}
a:hover {
  	color: #e8452a;
}
.site-footer2 {
    padding-left: 35px;
    padding-right: 50px;
}
.footer-link2 {
    line-height: 2em;
    cursor: pointer;
    color: #e8452a;
    font-family: "Poppins", Arial;
    font-size: 15px;
    width: 100%;
    text-transform: lowercase;
    font-weight: 500;
}
.footer-link2 a {
    line-height: 2em;
    cursor: pointer;
    color: #9C9C9C;
    font-family: "Poppins", Arial;
    font-size: 15px;
    width: 100%;
    text-transform: lowercase;
    text-decoration: none;
    font-weight: 500;
}
.footer-link2 a:hover {
    color: #e8452a;
    text-decoration: underline;
}
.copyright {
    text-align: center;
    color: #A9A9A9;
    font-weight: 500;
    font-family: "Poppins", Arial;
    font-size: 15px;
    margin-top: 20px;
    padding-left: 0px;
}
.bg_box {
    padding-bottom: 0px;
    padding-top: 0px;
    text-align: left;
    visibility: visible;
    animation-name: fadeIn;
    padding-left: 0px;
    padding-right: 0px;
    background-color: #ffffff;
    background-image: url(/assets/portaldigital/portaldigital/splatter1.jpg);
    background-repeat: repeat;
    background-size: 1500px 1500px;
}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
    padding: 10px;
}
.scroll-to-top {
    position: fixed;
    background: rgba(52,58,64,.5);
    bottom: 60px;
    right: 60px;
    z-index: 104400;
    box-shadow: -1px -1px 3px rgba(0,0,0,0.1);
    border-radius: 0px;
    padding: 2px;
    color: rgba(255, 255, 255, 0.5);
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.scroll-to-top:hover {
    background-color: #23272B;
}
.img-arrow {
    color: #ffffff;
    font-size: 45px;
    padding-top: 0px;
}
.img-arrow-up {
	color: #ffffff; 
	font-size:15px;
}
.main_text {
  font-family: "Poppins", Arial;
    font-size: 13px;
    line-height: 26px;
    color: #4d4d4d;
    margin-bottom: 50px;
    margin-left: 20px;
    margin-right: 20px;
    font-weight: 500;
    text-transform: none;
    padding: 20px;
    text-align: justify;
    background-color: #dddddd;
    box-shadow: 0 15px 20px rgb(0 0 0 / 40%);
    border-radius: 5px;
}
.text_c a {
  font-family: "Poppins", Arial;
  font-size: 15px;
  line-height: 36px;
  color: #ffffff;
  text-transform: none;
}
.text_c a:hover {
  text-transform: none;
}
/******************************************************************************/
    @media screen and (max-width: 1200px) 
    {
      .ebookv2-item-box-title {
        font-size: 21px; 
        line-height: 1.5rem;
      }
      .ebookv2-cat-box-title {
        font-size: 45px;
      }
    }
    @media screen and (max-width: 991px) 
    {
      .ebookv2-item-box-title {
        font-size: 21px;
        line-height: 1.9rem;
        padding-left: 1rem;
        padding-right: 1rem;
      }
      .ebookv2-cat-box-title {
        font-size: 45px;
        line-height: 3.5rem;
      }
      .navbarMega {
        text-align: justify;
      }
      .ebookv2-cat-box {
        padding-top: 0rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        padding-bottom: 1rem;
      }
      .ebookv2-item-box{
        margin-left: 5px;
        margin-right: 5px;
        margin-top: 10px;
        margin-bottom:5px;
      }
      .ebookv2-cat-box-desc {
        line-height: 26px;
      }
      .ebookv2-book-box {
        padding: 0rem;
      }
      .d-block {
        line-height: 26px;
      }
      .footer {
        line-height: 26px;
        padding-left: 0px;
        padding-right: 0px;
      }
      .site-footer { padding-left: 0px; padding-right: 0px; }
      .site-footer1 { padding-left: 40px; padding-right: 20px; }
      .ebookv2-book-box { padding-left: 90px; padding-right: 0px; }
      .mybreadcrumb { padding-left: 40px; padding-right: 0px; }
      .img-responsive { max-width: 50%; height: auto; }
    }
    @media screen and (max-width: 767px;) 
    {
      .ebookv2-cat-box {
        padding-top: 0rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        padding-bottom: 1rem;
      }
      .ebookv2-item-box{
        margin-left: 5px;
        margin-right: 5px;
        margin-top: 10px;
        margin-bottom:5px;
      }
      .ebookv2-item-box-title {
        font-size: 19px;
        line-height: 1.9rem;
        padding-left: 1rem;
        padding-right: 1rem;
      }
      .ebookv2-cat-box-title {
        font-size: 45px;
        line-height: 3.5rem;
      }
      .navbarMega {
        text-align: justify;
      } 
      .breadcrumb-item {
        padding-left: 0rem;
      }
      .ebookv2-cat-box-desc {
        line-height: 26px;
      }
      .ebookv2-book-box {
        padding: 0rem;
      }
      .d-block {
        line-height: 26px;
      }
      .footer {
        line-height: 26px;
        padding-left: 0px;
        padding-right: 0px;
      }
      .site-footer { padding-left: 0px; padding-right: 0px; }
      .site-footer1 { padding-left: 40px; padding-right: 20px; }
      .ebookv2-book-box { padding-left: 90px; padding-right: 0px; }
      .mybreadcrumb { padding-left: 40px; padding-right: 0px; }
      .img-responsive { max-width: 50%; height: auto; }
a {
  	color: inherit;
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	transition: all 0.2s; 
}
a:hover {
  	color: #e8452a;
}
/**************************************/
.empty_9182 {}

