/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */


/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */


/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */


/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}


/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}


/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    margin: 1em 0;
    padding: 0;
    border: 0;
    border-top: 1px solid #ccc;
}


/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}


/*
 * Remove default fieldset styles.
 */

fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}


/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

:root {
    --primary-color: #4B98F4;
    --light-color: #F1F7FE;
}


/* ==========================================================================
   General styles
   ========================================================================== */

body {
    font-family: 'Poppins', sans-serif;
    margin:0;
   padding:0;
   height:100%;
}

.body--fixed {
    overflow: hidden;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.strong-weight {
    font-weight: 700;
}


/* ==========================================================================
   Buttons styles
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn-circle {
    position: relative;
    width: 50px;
    height: 40px;
    color: #222;
    border-radius: 100%;
    background-color: #fff;
}

.btn-shop.cart__notempty:after {
    position: absolute;
    top: 11px;
    right: 8px;
    display: block;
    width: 6px;
    height: 6px;
    content: '';
    color: #fff;
    border-radius: 100%;
    background-color: var(--primary-color);
}

.btn-default {
    min-width: 140px;
    height: 40px;
    padding: 0 20px;
    border-radius: 20px;
}

.btn-text,
.btn-icon {
    display: inline-block;
}

.btn-icon {
    margin: 10px;
    line-height: 12px;
}

.btn-icon svg {
    width: 14px;
    height: 14px;
}

.btn-primary {
    color: #fff;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #338af3;
}

.btn-secondary,
.btn-light {
    color: var(--primary-color);
    border-color: transparent;
    background-color: transparent;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    color: #FFF;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active {
    border-color: var(--light-color);
    background-color: var(--light-color);
}

.btn-toggler {
    color: #222;
    border-color: transparent;
    background-color: transparent;
}

.btn-toggler:hover,
.btn-toggler:focus {
    animation-name: fadeOut;
    animation-duration: 1s;
}


/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeOut {
    0% {
        background-color: #D0D0D7
    }
    100% {
        background-color: transparent;
    }
}


/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    padding: 0 50px;
    background-color: #fff;
    box-shadow: 0px 0.3px 0.6px rgba(0, 0, 0, 0.028), 0px 0.8px 1.8px rgba(0, 0, 0, 0.04), 0px 1.8px 4.2px rgba(0, 0, 0, 0.052), 0px 6px 14px rgba(0, 0, 0, 0.04);
}

.main-menu {
    display: none;
    visibility: hidden;
}

.navbar-l,
.navbar-r {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    margin-right: 50px;
}

.sidebar-trigger {
    margin-right: 10px;
}

.btn-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 100%;
    background-color: #fff;
}

.btn-hamburger span,
.btn-hamburger span:before,
.btn-hamburger span:after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 1px;
    background-color: #222;
}

.btn-hamburger span:before,
.btn-hamburger span:after {
    content: '';
    transform: translateX(0);
}

.btn-hamburger span:before {
    transform: translateY(-5px);
}

.btn-hamburger span:after {
    transform: translateY(3px);
}

.navbar-logo a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    border: none;
}

.navbar-logo img {
    width: auto;
    max-width: 140px;
    height: 45px;
}

.member-menu {
    display: flex;
    margin: 0;
    padding: 0;
}

.member-menu li {
    position: relative;
    height: 40px;
    list-style: none;
}

.member-menu li:nth-child(2) {
    margin-left: 20px;
}


/* ==========================================================================
   Sidebar
   ========================================================================== */

.sidebar-overlay {
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
}

.sidebar-wrapper {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 240px;
    height: 100vh;
    transition: transform 0.4s ease-in-out;
    transform: translateX(0);
    background-color: #fff;
}

.translateLeft {
    transform: translateX(-100%);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 14px;
    background-color: #FAFAFA;
}

.sidebar-header h1 {
    font-size: 1rem;
    font-weight: 700;
}

.sidebar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sidebar-toggler span,
.sidebar-toggler span:after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 1px;
    background-color: #222;
}

.sidebar-toggler span {
    transform: translate(0, 0) rotate(45deg);
}

.sidebar-toggler span:after {
    content: '';
    transform: translate(0, 0) rotate(-90deg);
}

.sidebar-menu,
.sidebar-user-menu,
.smenu-separator {
    margin: 16px 8px;
}

.sidebar-menu {
    padding: 0;
}

.sidebar-menu li {
    list-style: none;
}

.smenu-item a {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 30px;
    text-decoration: none;
    color: #222;
    border-radius: 20px;
    font-weight: 500;
}

.smenu-item a:hover,
.smenu-item a:focus,
.smenu-item a:active,
.member-menu a:hover,
.member-menu a:focus,
.member-menu a:active {
    color: var(--primary-color);
    background-color: #FAFAFA;
}

.smenu-separator {
    display: block;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
}

.sidebar-user-menu {
    padding: 0;
}

.menu-icon,
.menu-title {
    display: block;
}

.menu-icon {
    margin-right: 8px;
}

.menu-icon svg {
    width: 16px;
}


/* ==========================================================================
   Section styles
   ========================================================================== */

.section-container {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
    padding: 20px;
  
}

.section-containe {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
    padding: 0px;
  
}
.section-containers {
    max-width: 90%;
    margin-right: auto;
    margin-left: auto;
    padding: 20px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}


/* ==========================================================================
   Cover
   ========================================================================== */

.section-cover {
    padding: 10px 0;
    background-color: #FAFAFA;
}

.cover-container {
    display: flex;
    flex-wrap: wrap;
}

.cover-picture,
.cover-summary {
    width: 100%;
}

.cover-picture {
    background-color: #FAFAFA;
}

.cover-picture img {
    max-width: 100%;
    height: auto;
}

.cover-summary {
    margin-top: 30px;
}

.cover-summary h1 {
    margin: 0 0 14px 0;
    padding: 0;
}

.cover-summary p {
    margin: 0;
    padding: 0;
    font-style: italic;
    line-height: 1.4;
}

.cover-cta {
    margin-top: 24px;
}


/* ==========================================================================
   Homepage subscription section
   ========================================================================== */

.subscriptions-list {
    margin: 0;
    padding: 0;
}

.subscriptions-card {
    display: flex;
    width: var(--box-dimension);
    max-width: 400px;
    height: var(--box-dimension);
    max-height: 400px;
    list-style: none;
    --box-dimension: calc(100vw - 40px);
}

.subscriptions-card a {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
}

.subscription-individual-bg,
.subscription-team-bg {
    position: relative;
    display: block;
    width: 100%;
    height: calc(100% - 30px);
    margin-top: 10px;
    border-radius: 16px;
}

.subscription-individual-bg {
    background-color: #D7EDFA;
}

.subscription-team-bg {
    background-color: #FAF7D7;
}

.subscription-header {
    position: absolute;
    z-index: 2;
    top: 30px;
    left: 20px;
}

.subscription-subtitle {
    color: #707070;
    font-size: .85rem;
}

.subscription-title {
    margin: 0;
    padding: 0;
    color: #222222;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4rem;
}

.subscriptions-card a img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    max-height: 100%;
}

.team-card a img {
    max-width: calc(100% - 80px);
}


/* ==========================================================================
   Faq section
   ========================================================================== */

.section-faq {
    color: #fff;
    background-color: #323232;
}

.faq-container h2 {
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
}

.faq-cta {
    margin-top: 30px;
    text-align: center;
}

.faq-link {
    text-decoration: none;
    color: #fff;
}


/* ==========================================================================
   footer
   ========================================================================== */

.section-footer {
    color: #707070;
    background-color: #FAFAFA;
    position: relative;
    bottom: 0;
 
    /*left: 0;*/
}

.footer-copyright {
    margin-bottom: 10px;
}

.footer-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-nav a {
    display: block;
    padding: 4px 0;
}

.footer-nav a:nth-child(-n+2):after {
    margin: 0 6px;
    content: "/";
    font-size: 0.8rem;
}

.footer-nav a {
    text-decoration: none;
    color: inherit;
    color: inherit;
}

.footer-nav a:hover,
.footer-nav a:focus,
.footer-nav a:active {
    text-decoration: underline;
    color: #222;
}


/* ==========================================================================
  Pages
  ========================================================================== */

.page-section {
    min-height: calc(100vh - 170px);
    padding-bottom: 20px;
}


/*  ==========================================================================
  Page subscription
  ========================================================================== */

.tab-nav {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 46px;
    border: 1px solid #DFEDFD;
    border-radius: 23px;
    background-color: var(--light-color);
}

.tab {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 46px;
    border: 1px solid #5b82af;
    border-radius: 23px;
    background-color: var(--light-color);
}

.btn-tab {
    position: relative;
    z-index: 3;
    transition: color 0.3s;
    border: none;
    background-color: transparent;
    font-weight: 700;
}

.tab-nav .btn-tab[aria-selected] {
    color: rgb(255, 255, 255);
}

.tab-indicator {
    position: absolute;
    z-index: 2;
    bottom: 2px;
    left: 3px;
    width: 140px;
    height: 40px;
    transform-origin: 0 0;
    border-color: var(--primary-color);
    border-radius: 20px;
    background-color: var(--primary-color);
}

.tab-content {
    display: none;
    visibility: hidden;
    padding-top: 30px;
    animation: moving 0.3s ease;
}

.tabs {
    display: none;
    visibility: hidden;
    padding-top: 30px;
    animation: moving 0.3s ease;
}

.tabs1 {
    display: none;
    visibility: hidden;
    padding-top: 30px;
    animation: moving 0.3s ease;
}

.tab-header {
    margin: 20px 0;
    font-weight: 500;
}

@keyframes moving {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.tab-content.active {
    display: block;
    visibility: visible;
}

.tabs.active {
    display: block;
    visibility: visible;
}

.tabs1.active {
    display: block;
    visibility: visible;
}

.page-filters {
    margin: 30px 0;
}

.searchbar-field {
    position: relative;
    height: 46px;
    border-radius: 23px;
    background-color: var(--light-color);
}

.searchbar-input,
.searchbar-input-all,
.searchbar-input-tout,
.searchbar-input-alls,
.searchbar-input-single,
.quantity-search {
    height: 46px;
    padding: 0 23px;
    border-radius: 23px;
}

.input-style,
.textarea-style {
    position: relative;
    width: 100%;
    border: none;
    border: 1px solid #DFEDFD;
    border-radius: 23px;
    background-color: transparent;
}

.input-style {
    height: 46px;
}

.select-style {
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 1px solid #DFEDFD;
    border-radius: 20px;
    background: var(--light-color);
    background-color: var(--light-color);
    position: relative;
}

.category {
    margin-top: 30px;
}

.category-filter {
    width: 210px;
}

.category-field {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.category-field label {
    margin-right: 16px;
}

.select-style select {
    width: 130%;
    height: 40px;
    padding: 5px 16px;
    border: none;
    background-color: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select-style:after {
    position: absolute;
    z-index: 100;
    top: 50%;
    right: 20px;
    width: 0;
    height: 0;
    margin-top: -2px;
    content: " ";
    pointer-events: none;
    border: solid transparent;
    border-width: 5px;
    border-color: rgba(0, 0, 0, 0);
    border-top-color: #000000;
}

.select-style select:focus {
    outline: none;
}

.products-container,

/*#products-single,
#products-All,
#products-touts,*/

.cart,
.cart-content {
    display: grid;
    align-items: start;
    grid-template-columns: 1fr;
    gap: 20px;
    grid-auto-flow: dense;
}

.product,
.products1,
.product2,
.product3,
.cart-item {
    overflow: hidden;
    border: 1px solid var(--light-color);
    border-radius: 20px;
    background-color: #fff;
}

.product-header,
.item-summary {
    display: grid;
    padding: 16px;
    grid-template-columns: 70px auto;
    gap: 20px;
}

.product-picture img {
    max-width: 100%;
    height: auto;
}

.product-title {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.4rem;
}

.product-summary {
    margin-top: 10px;
    color: #707070;
    font-style: italic;
}

.product-buy,
.cart-item-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-top: 1px solid var(--light-color);
}

.product-price {
    font-weight: 700;
}

.product .product--selected {
    margin-bottom: 20px;
    border: 1px solid var(--light-color);
    border-radius: 18px;
}

.buy-options,
.cart-item-options {
    padding: 16px;
    border-top: 1px solid var(--light-color);
}

.buy-options label,
.cart-item-options label {
    font-style: italic;
}

.duration-select {
    width: 125px;
}

.quantity-settings {
    width: 80px;
}

.quantity-field,
.duration-field,
.item-remove,
.cart-worth .container-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.duration-field {
    margin-bottom: 16px;
}

.quantity-settings {
    text-align: center;
}

.item-remove {
    padding: 16px 26px 16px 16px;
    background-color: var(--light-color);
}


/* ==========================================================================
  Panier
  ========================================================================== */

.item-name {
    margin: 0;
    padding: 0;
    color: var(--primary-color);
    font-size: 1rem;
}

.item-name,
.item-price {
    font-weight: 700;
}

.item-option {
    margin: 0;
    color: #707070;
    font-style: italic;
}

.cart-worth {
    padding: 16px;
}

.cart-worth .container-cta {
    margin-top: 20px;
    text-align: center;
}

.net-worth {
    margin: 0;
    padding: 0;
}

.media {
    display: none;
}


/*
==========================================================================
   System messages
   ========================================================================== */

.message {
    display: grid;
    align-items: start;
    padding: 16px;
    border: 1px solid var(--light-color);
    border-radius: 10px;
    box-shadow: 0px 0.3px 0.6px rgba(0, 0, 0, 0.028), 0px 0.8px 1.8px rgba(0, 0, 0, 0.04), 0px 1.8px 4.2px rgba(0, 0, 0, 0.052), 0px 6px 14px rgba(0, 0, 0, 0.02);
    grid-template-columns: 60px auto;
    gap: 20px;
}

.message-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #fff;
    border: 6px solid var(--light-color);
    border-radius: 100%;
    background-color: var(--primary-color);
}

.message-icon svg {
    width: 20px;
    height: 20px;
}

.message-text {
    font-style: italic;
}

.message-header {
    margin: 0;
    padding: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.message-body {
    margin-top: 4px;
    padding: 0;
    line-height: 1.2rem;
}


/*
==========================================================================
   Contact page
   ========================================================================== */

.field-box,
.textarea-box {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
  
}

form{

margin-top :-2%
}

.field-box {
    height: 76px;
  
      
}

.field-label {
    position: relative;
    left: 20px;
   
    display: block;
    margin: 0;
    transition: transform .3s, font-size .3s;
    transform: translateY(37px);
    color: #707070;
    font-weight: 500;
    line-height: 1.8rem;
}

.field-box input {
    width: 100%;
    padding:20px;
   
}

.textarea-box {
    height: 273px;
}

.textarea-label {
    transform: translateY(45px);
}

.textarea-box textarea {
    width: 100%;
    padding: 20px;
}

.has-label .field-label {
    transform: translateY(0);
    font-size: 0.85rem;
}

.is-focused .field-label {
    color: var(--primary-color);
}

.error-message {
    display: none;
    padding: 4px 20px;
    color: #f4534b;
    font-size: 0.85rem;
    font-weight: 500;
}

.error-message.display-error {
    display: block;
}


/*
==========================================================================
   Helper classes
   ========================================================================== */


/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
    display: none !important;
}


/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    white-space: nowrap;
    border: 0;
    /* 1 */
}


/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
    position: static;
    overflow: visible;
    clip: auto;
    width: auto;
    height: auto;
    margin: 0;
    white-space: inherit;
}


/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

.navigation,
.redister-query {
    display: none;
}

.queryH1,
.query-modal,
.login-query,
#btn-query {
    display: none;
}

.globalH1,
.global-modal,
.redister-globale,
.login-globale,
#btn-globale {
    display: block;
}


/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
    display: table;
    content: " ";
}

.clearfix::after {
    clear: both;
}

@media screen and (max-width: 700px) {
    .media,
    .login-query,
    #btn-query {
        display: block;
    }
    .global,
    .login-globale,
    #btn-globale {
        display: none;
    }
    .page-tab {
        display: none;
    }
    .globalH1,
    .global-modal,
    .redister-globale {
        display: none;
    }
    .navigation,
    .queryH1,
    .query-modal,
    .register-query {
        display: block;
    }
}


/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 600px) {
    .section-container,
    .section-containers {
        padding: 30px;
    }
    .cover-container {
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    .cover-picture,
    .cover-summary {
        width: calc(50% - 30px);
    }
    .cover-summary {
        margin-top: 0;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .subscriptions-list {
        display: flex;
        justify-content: space-between;
    }
    .subscriptions-card {
        width: var(--box-dimension-md);
        height: var(--box-dimension-md);
        --box-dimension-md: calc(50vw - 60px);
    }
    .page-title {
      
         margin-left: 20%;
        margin-right: auto;
    }
    .page-filters {
        display: grid;
        margin: 40px 0 60px 0;
        grid-template-columns: auto 380px;
        grid-column-gap: 20px;
    }
    .category {
        margin-top: 0;
    }
}

@media only screen and (min-width: 640px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 720px) {
    .cart {
        display: grid;
        grid-template-columns: 1fr auto;
    }
    .cart-worth {
        position: sticky;
        top: 0;
    }
}

@media only screen and (min-width: 760px) {
    .sidebar-trigger {
        display: none;
        visibility: hidden;
    }
    .main-menu {
        display: flex;
        visibility: visible;
        margin: 0;
        padding: 0;
    }
    .main-menu li {
        list-style: none;
    }
    .subscription-subtitle {
        font-size: 1rem;
    }
    .subscription-title {
        font-size: 1.4rem;
        line-height: 1.6rem;
    }
    .footer-container {
        display: flex;
        justify-content: space-between;
   
     
    }
    .footer-copyright {
        margin-bottom: 0;
    }
    .footer-nav {
        margin: 0;
    }
}

@media only screen and (min-width: 1024px) {
    .section-container,
    .section-container {
        padding: 40px;
    }
    .cover-container {
        align-items: center;
        height: 540px;
    }
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}


/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *::before,
    *::after {
        color: #000 !important;
        background: #fff !important;
        /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]::after {
        content: " ('attr(href))";
    }
    abbr[title]::after {
        content: " ('attr(title) ')";
    }
    /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }
    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
}