@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ephesis&family=Kavivanar&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}

p {
    max-width: 75ch;
    text-wrap: pretty;
}

body {
    display: flex;
    flex-direction: column;
    background-color: black;
    color: white;
    font-family: Poppins, sans-serif;
    width: 100vw;
}

a {
    color: aliceblue;
    text-decoration: none;
    transition: 0.25s;
}
a:hover { color: #ff2e55 }

header {
    width: 100%;
    position: absolute;
    z-index: 2;
}

.logo-title {
    font-size: 1.25em;
    font-weight: 600;
}

.logo-subtitle {
    color: rgb(223, 223, 223);
    font-size: 0.95em;
    font-weight: 300;
}

.title-container {
    position: absolute;
    top: 40%;
    right: 10%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
} 
.title-container h1 {
    margin: 0.5vh 0;
    font-size: 4em;
    text-align: right;
}
.title-container h2 {
    font-weight: 400;
    color: #ff2e55;
    font-size: 1.2em;
}
.title-container h3 {
    font-size: 1.1em;
    margin-top: 0.5vh;
    font-weight: 300;
    color: rgb(223, 223, 223);
}

.menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 60px 30px 50px;
}
.menu span { padding: 5px 15px }

.menu-btn-container {
    display: flex;
    width: 100%;
}

.menu-btn {
    margin-left: auto;
    cursor: pointer;
    transition: 0.4s;
    display: none;
    width: 30px;
    height: 30px;
}
.menu-btn:hover {  color: #ff2e55 }
.menu-btn i {
    padding: 6px 8px;
    border: 1px solid;
    margin-bottom: -1px;
}

.nav {
    display: flex;
    align-items: center;
    font-size: 1.25em;
    font-variant: small-caps;
    font-weight: 600;
    z-index: 1;
}
.nav a { padding-bottom: 5px }

.current {
    background: linear-gradient(to top, #ff2e55, transparent 15%);
}

.drop-down {
    position: relative;
    top: -3px;
    display: inline-block;
    padding: 0;
}
.drop-down i {
    font-size: 0.7em;
    margin-left: 3px;
}

.sub-menu {
    position: absolute;
    top: 35px;
    left: 0;
    width: max-content;
    height: max-content;
    background-color: #090909aa;
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px 15px 15px 5px;
}

.hero-container {
    height: 100svh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.hero-container .block-button {
    position: absolute;
    bottom: 20px;
    right: 40px;
    padding: 0;
    margin: 5px 0;
    min-width: 0;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    transition: 0.5s;
    font-size: 1em;
}
.hero-container .social {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    bottom: 20px;
    left: 30px;
    font-size: 2em;
}

.hero-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 53% 0;
    filter: blur(0.6px);
    opacity: 0.95;
    transition: 0.8s ease-in-out;
    pointer-events: none;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: 53% 0;
}

.statement {
    position: absolute;
    top: 75%;
    right: 8%;
    font-family: Ephesis, cursive;
    text-align: right;
    letter-spacing: 1px;
    line-height: 1em;
    font-size: 4em;
    color: #ffffffd0;

}
.statement p:nth-of-type(1) {
    margin-right: 100px;
}

.statement p:nth-of-type(2) {
    margin-left: 100px;
}

.block-button {
    width: fit-content;
    min-width: 95px;
    padding: 10px 16px;
    margin: 10px auto;
    font-size: 0.95em;
    font-weight: 400;
    border: none;
    border-radius: 10px;
    color: aliceblue;
    background-color: #ff2e54f6;
    transition: 0.4s;
    height: 45px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

}
.block-button:hover {
    cursor: pointer;
    border: 1px solid aliceblue;
    background-color: black;
}
.block-button a:hover { color: aliceblue }

#featured {
    padding: 40px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#featured h2 {
    font-size: 1.6em;
    font-style: italic;
    color: #ffffffef;
    margin: 10px;
}
#featured h3 {
    font-weight: 500;
    color: #ffffffd0;
    margin-bottom: 30px;
}
#featured hr {
    border: 1px solid #ff2e55dd;
    width: 80%;
    max-width: 1650px;
    margin-bottom: 20px;
}
#featured i {
    font-size: 0.8em;
    margin-right: 5px;
}

.featured-container {
    width: 75%;
    max-width: 1600px;
    padding: 0 0 30px;
}
.featured-container .block-button {
    align-self: center;
    margin-top: 50px;
}

.featured-container .clips-gallery {
    width: 70%;
    min-width: 480px;
    margin: auto;
    position: relative;
}
.featured-container .clips-gallery .clip {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
}
.featured-container .clips-gallery iframe.yt {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.featured-container .clips-gallery .sc {
    margin: 40px auto 60px;
}
.featured-container .clips-gallery .arrow-nav-container {
    position: absolute;
    top: calc(50% - 16px);
    width: 52.5vw;
    max-width: 1120px;
    min-width: 480px;
    display: flex;
    justify-content: space-between;
}
.featured-container .clips-gallery i {
    position: relative;
    font-size: 2em !important;
    opacity: 0.8;
    margin: 0 !important;
}
.featured-container .clips-gallery i:hover {
    opacity: 0.95;
    cursor: pointer;
}
.featured-container .clips-gallery .fa-angle-left {
    left: -50px;
}
.featured-container .clips-gallery .fa-angle-right {
    text-align: right;
    right: -50px;
}

.featured-container .swiper-wrapper {
    display: flex;
    width: calc(100% + 10px);
    margin-left: -5px;
    overflow: hidden;
}

.featured-container .yt-gallery {
    box-sizing: content-box;
    display: flex;
    width: 100%;
    transform: translate(0);
    transition: 0.5s ease;

}
.featured-container .yt-gallery .clip {
    flex-shrink: 0;
    width: calc(100% - 20px);
    margin: 0 10px;
    padding-top: 56.25%;

}
.featured-container .yt-gallery .clip iframe.yt {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.featured-container .swiper-pagination {
    text-align: center;
    height: 5px;
    cursor: default;
    margin: 15px 0 -10px;

}
.featured-container .swiper-pagination .swiper-pagination-bullet {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 4px;
    border-radius: 40%;
    background-color: #fffffd;
    opacity: 0.7;
    cursor: pointer;
}
.featured-container .swiper-pagination .active { opacity: 1 }

.no-hero {
    width: 100%;
    height: 150px;
    flex: 0 0 auto;
}

h1 {
    font-size: 3rem;
    margin: 0 auto 40px;
    text-align: center;
}

.no-hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.small-hero {
    height: clamp(200px, 30vw, 550px);
    width: 100%;
    position: relative;
    align-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 20%;
    filter: grayscale(0.4);

}
.small-hero h1 { padding-top: 30px }

.small-hero .direct-contact {
    position: absolute;
    right: 20px;
    bottom: 16px;
}
.small-hero .direct-contact:hover {
    cursor: pointer;
    color: #ff234b;
}
.small-hero .direct-contact i { margin: 4px }
.small-hero .direct-contact span {
    display: inline-block;
    text-align: center;
    width: 0;
    opacity: 0;
    transition: 0.4s ease;
}

.single-page-content {
    flex: 1;
    width: min(1400px, 85%);
    padding-bottom: 50px;
}
.single-page-content p {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    line-height: 2.2rem;
    font-weight: 200;
    font-style: italic;
    margin: clamp(1rem, 2vw, 1.4rem) 0;
    opacity: 0.95;
}

.single-page-content img {
    height: clamp(220px, 25vw, 340px);
    margin: clamp(1rem, 2vw, 1.4rem) 5px;
    pointer-events: none;
}
.single-page-content img:nth-of-type(odd) {
    float: right;
    margin-left: 40px;
}
.single-page-content img:nth-of-type(even) {
    float: left;
    margin-right: 40px;
}
.single-page-content h2 {
    width: max-content;
    margin: 40px auto 20px;
    font-weight: 600;
}
.single-page-content .social {
    margin: 10px auto;
    width: max-content;
    font-size: 2em;

}
.single-page-content .social a { margin: 8px }
.single-page-content .form-container {
    display: block;
    height: 100%;
    padding-bottom: 10px;
    
}
.single-page-content .form-container form {
    margin: 30px auto 0;
    width: 100%;
    max-width: 600px;
}
.single-page-content .form-container label, 
.single-page-content .form-container input, 
.single-page-content .form-container textarea {
    width: 90%;
    display: block;
    margin: auto;
}
.single-page-content .form-container input, 
.single-page-content .form-container textarea {
    padding: 8px 10px;
    margin: 5px auto 8px;
    border: none;
    border-radius: 6px;
    font-size: 0.9em;
}
.single-page-content .form-container textarea {
    margin-bottom: 20px;
    font-family: sans-serif;
}
.single-page-content .form-container hr {
    width: 90%;
    max-width: 600px;
    margin: auto;
    border: 1px solid #ff2e55cc;
}
.single-page-content .form-container .submit-notification {
    margin: 8px auto;
    text-align: center;
}
.single-page-content .form-container #submitBtn:disabled {
    cursor: not-allowed;
    background-color: gray;
}

/* SHOP STYLE */

.shop-hero {
    height: clamp(200px, 30vw, 350px);
    margin-bottom: .5rem;
    position: relative;
    isolation: isolate;
}
.shop-hero h1::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    margin: auto;
    background-color: #163e88;
    width: 50%;
    height: 72px;
    z-index: -1;
    filter: blur(3.5rem);
    opacity: .1;
}

.header-cart-link {
    cursor: pointer;
    display: inline-block;
    padding: 0 5px 3px !important;
    position: absolute;
    right: 30px;
    top: 35px;
}
.header-cart-link:hover {
    color: #ff2e55;
}
.header-cart-link i {
    font-size: 1.1rem;
}
.header-cart-link #cart-amount {
    display: block;
    padding: 0 4px;
    color:white;
    background-color: #090909aa;
    border-radius: 5px;
    position: absolute;
    right: -3px;
    bottom: 2px;
    font-size: .6rem;
    font-weight: 400;
}

#shop {
    width: 80%;
    max-width: 1200px;
}
#shop hr {
    border: 1px solid #a597838b;
    width: 75%;
    max-width: 1000px;
    margin: 1.5rem auto;
}
#shop input[type=number]::-webkit-inner-spin-button, 
#shop input[type=number]::-webkit-outer-spin-button {  
    opacity: 1;
    margin-right: 5px;
}
#shop .amount {
    height: 40px;
    width: 60px;
    padding: 5px;
    padding-left: 10px;
    margin-right: 10px;
    color: #ffffffef;
    background-color: #090909aa;
    border: 1px solid #ffffffef;
    border-radius: 15px;
}
#shop .block-button {
    display: inline-block;
}

.product-container {
    margin-top: 1.5rem;
    display: grid;
    column-gap: 40px;
    grid-template-areas: 
        "I H"
        "I D"
        "I D";
    grid-template-columns: 1fr 2fr;
}
.product-container h2 {
    grid-area: H;
    margin: .3rem;
    padding: 0 0 15px;
    font-size: 1.7rem;
    font-style: italic;
}
.product-container .product-image {
    grid-area: I;
    width: 200px;
    height: auto;
    margin: 0 0 0 auto;
}
.product-image .image-container {
    cursor: zoom-in;
    margin-top: 10px;
    height: calc(100% - 1rem);
}
.product-image img {
    float: none;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}
.product-container .product-details {
    grid-area: D;
    display: flex;
    flex-direction: column;
}
.product-details p {
    font-family: Poppins, sans-serif;
    font-style: normal;
    font-size: 1rem;
    line-height: normal;
    margin: 0 0 0 1.6rem;
}
.product-details p strong { font-weight: 500 }

.product-details p::before {
    content: "• ";
    margin: 0 .3rem 0 -.8rem;
}
.product-details .price { padding-top: .4rem }

.product-details audio {
    display: block;
    height: 30px;
    width: 80%;
    max-width: 300px;
    min-width: 210px;
    margin: 1.5rem 0 .5rem;
}
.product-details .product-description {
    text-align: left;
}
.product-details button {
    border-radius: 20px;
    margin-left: 0;
}

.order-summary {
    display: flex;
    flex-direction: column;
}
.order-summary .summary-item {
    display: grid;
    grid-template-areas: 
        "I T"
        "I D";
    grid-template-columns: 1fr 2fr;
    font-size: clamp(.8rem, 1.5vw, 1rem);
}
.summary-item .title {
    grid-area: T;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.1rem;
    list-style-type: none;
    margin: .1rem 0 .5rem -1.5ch;
    font-style: italic;
}
.summary-item em {
    font-size: .7rem;
    margin-left: .4rem;
}
.summary-item-img { grid-area: I }
.summary-item ul { 
    grid-area: D;
    margin: auto 0 .3rem;
}
.summary-item-subtotal { 
    margin-top: .4rem;
    list-style-type: square;
    font-weight: 500;
}
.summary-item .total { font-weight: 400 }

.order-summary h2 {
    width: auto;
    text-align: center;
}
.order-summary .order-details {
    margin: 0 auto;
    padding: 40px 50px 25px;
    h2 { margin: -10px 0 40px 0; text-decoration: underline; }
    max-width: 600px;
    border: 1px #f7f7f7 solid;
    border-radius: 15px;
    hr { 
        max-width: 600px !important;
        width: 85% !important;
     }
}
.order-summary p {
    margin: 20px auto;
    text-align: center;
}
.order-summary .title a { color:#ff2e55 }
.order-summary .title a:hover { color: aliceblue }

.order-summary img, 
.order-summary img:nth-of-type(odd) {
    float: unset !important;
    margin: 0 clamp(35px, 5vw, 50px) 10px -15px !important;
    width: clamp(80px, 12vw, 120px);
    height: auto;
    max-width: 120px;
}
.order-summary .total { text-align: right }
.order-summary .total span {
    display: inline-block;
    margin: 5px 0 2px;
    padding: 0 0 8px 8px;
    border-bottom: 1px solid;
    font-size: 0.9rem;
}
.order-summary .total div:last-of-type { 
    margin-top: 8px; font-weight: 600 
}

.viewer-open {
    cursor: default !important;
    position: fixed;
    width: max(60vh, 200px);
    max-width: min(600px, 80vw);
    max-height: 85vh;
    background-color: rgb(85, 98, 88);
    border: 3px white solid;
    padding: 8px;
    top: 10vh;
    left: 10vw;
    z-index: 1050;
    overflow: scroll;
}
.viewer-open img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
}

.cart-off-canvas {
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    overflow: scroll;
    background-color: #ffffff;
    color: #000;
    z-index: 1050;
    transform: translateX(100%);
    transition: all .45s cubic-bezier(.3,0,.15,1);
}
.cart-off-canvas .button-top {
    padding: 8px 16px;
    width: 400px;
    height: 45px;
    background-color: #f7f7f7;
    color: #20202096;
    transition: 0.2s;
}
.cart-off-canvas .button-top i { 
    margin: 0 10px; 
    font-size: 1.1rem;
    position: relative;
    top: 1px;
}
.cart-off-canvas .button-top:hover {
    cursor: pointer;
    background-color: #3e3e3e31;
}
.offcanvas-cart-content {
    padding: 20px;
}
.offcanvas-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.offcanvas-cart-items p {
    margin-bottom: .8rem;
}
.cart-off-canvas .cart-item {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.cart-off-canvas .cart-item .thumb { width: 20% }
.cart-off-canvas .cart-item img { width: 100%; }

.cart-off-canvas .cart-item .desc { 
    flex: 1;
    display: flex;
    flex-direction: column;
} 
.cart-off-canvas .cart-item .rem { 
    height: 40px;
    transition: 0.2s;
    padding: 10px;
    cursor: pointer;
    background-color: #f7f7f7;
}
.cart-off-canvas .cart-item .rem:hover {
    background-color: #3e3e3e31;
}
.cart-off-canvas .cart-item .cart-quantity-price {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-off-canvas .offcanvas-cart-summary {
    margin: 10px 0 0;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}
.offcanvas-cart-summary .comment { 
    font-style: italic; 
    font-size: 0.85rem; 
    font-weight: 300; 
    vertical-align: bottom; 
    color: darkgray; 
    padding-top: 0.2rem;
}
.cart-off-canvas .tax-div { margin: 5px 0 10px }
#billing-info {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
#billing-info div {
    display: flex;
    justify-content: space-between;
}

#billing-info div span:nth-of-type(2) { text-align: right }
#billing-info div em { font-size: 0.85rem }

.cart-off-canvas #confirm-payment-btn {
    display: block;
}
#confirm-payment-btn button {
    height: 45px;
    width: 100%;
    cursor: pointer;
    background-color: rgb(0, 112, 186);
    color: white;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border-radius: 4px;
    border: none;
}

#confirm-payment-btn button:hover { filter: brightness(0.95) }
#confirm-payment-btn button:disabled { background-color: gray }

#cancel-order { 
    background-color: rgb(186, 14, 0);
    margin-top: 8px;
}

.is-open { transform: translateX(0) !important }

.backdrop {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
    -webkit-transition: opacity .45s cubic-bezier(.3,0,.15,1), visibility .45s linear;
    transition: opacity .45s cubic-bezier(.3,0,.15,1), visibility .45s linear;
}

.backdrop-open { opacity: 1 }

#paypal-button-container { margin-top: 25px }

footer {
    width: 100vw;
    color: lightgray;
    text-align: right;
    font-size: 0.9em;
    font-weight: 300;
    padding: 6px 50px;
    background-color: rgba(41, 48, 51, 0.915);
}

@media (max-width: 1700px) {
    .title-container h1 {
        max-width: min-content;
        font-size: 3.5em;
        line-height: 1.2em;
    }
}

@media (max-width: 1200px) {
    .hero-image {
        object-position: 44% 0;
        background-position: 44% 0;
    }
    .clips-gallery { width: 90% }

    .clips-gallery .arrow-nav-container { width: 67.5vw }
    .clips-gallery .fa-angle-left { left: -40px }
    .clips-gallery .fa-angle-right { right: -40px }
}

@media (min-width: 850px) {
    .drop-down:hover .sub-menu { display: flex }
}

@media (max-width: 850px) {
    .nav {
        width: 11rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border: 1px solid;
        background-color: #090909aa;
        position: relative;
    }
    .header-cart-link {
        right: 80px;
        top: 33px;
    }
    .menu {
        padding: 28px 35px;
    }
    .menu-btn {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .sub-menu {
        position: relative;
        top: 0;
        left: 8px;
        display: flex;
        background-color: transparent;
        font-size: 0.95em;
        padding: 0;
        gap: 0;
    }
    .current {
        margin-bottom: 3px;
    }
    .hidden {
        display: none;
    }
    .hero-image {
        object-position: 36% 0;
        background-position: 36% 0;
    }
    .title-container h1 {
        font-size: 3.4em;
    }
    .statement {
        font-size: 3.5rem;
        top: 70%;
    }
    .small-hero h1 {
        font-size: 2.5em;
        margin: 0 auto;
        padding-top: 20px;
    }
}

@media (max-width: 640px) {

    .logo-title { font-size: 1.05em }
    .logo-subtitle { font-size: 0.8em }
    .menu { padding: 18px 26px }

    .header-cart-link {
        right: 68px;
        top: 24px;
    }
    .hero-container .social {
        left: 15px;
        font-size: 1.5em;
    }
    .block-button {
        font-size: 0.8rem;
        height: 38px;
    }
    .hero-container .block-button {
        width: 36px;
        height: 36px;
        font-size: 0.8em;
        right: 25px;
    }
    .featured-container .clips-gallery {
        width: 100%;
        min-width: unset;
        
    }
    .featured-container .clips-gallery .arrow-nav-container {
        width: 75vw;
        min-width: unset;
        top: calc(50% - 12px);
    }
    .featured-container .clips-gallery i { font-size: 1.5em !important }
    .featured-container .clips-gallery .fa-angle-left { left: -30px }
    .featured-container .clips-gallery .fa-angle-right { right: -30px }

    .statement {
        font-size: 3em;
        top: unset;
        bottom: 12%;
    }
    .product-container .amount { height: 35px !important }

    footer {
        font-size: 0.85em;
        text-align: center;
    }
}

@media (max-height: 770px) {
    .hero-container .block-button {
        width: 40px;
        height: 40px;
        font-size: 0.9em;
        right: 20px;
    }
    .title-container h1 {
            font-size: 3em;
            max-width: unset;
    }
    .statement {
        font-size: 3em;
        top: unset;
        bottom: 110px;
    }
}

@media (max-width: 600px) {
    .product-container {
        grid-template-areas: 
            "H"
            "I"
            "D";
        grid-template-columns: 1fr;
    }
    .product-container .product-title {
        width: fit-content;
        border-right: 25px transparent solid;
        border-left: 25px transparent solid;
        border-bottom: 1px white solid;
        margin: 0 auto 15px;
    }
    .product-container h2 {
        margin: .3rem 1rem;
        padding-bottom: 5px;
    }
    .product-container p {
        text-align: left;
        margin: 0 !important;
    }
    .product-container .product-image {
        margin: 0 auto;
    }
    .product-container .product-details {
        margin: 1rem auto;
        padding: 0;
    }
    .product-container .product-details audio {
        margin: 1.2rem auto 1rem;
    }
    .product-container .product-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: .5rem;

    }
    .product-container .product-buttons .block-button {
        margin: 0;
    }
}

@media (max-width: 450px) {
    .nav {
        font-size: 1.1em;
        width: 10rem;
        position: absolute;
        right: 34px;
    }
    .menu-btn {
        font-size: 0.95em;
        width: 28px;
        height: 28px;
    }
    .title-container {
        top: 35%;
    }
    .title-container h1 {
        font-size: 2.5em;
        margin-bottom: 0;
    }
    .title-container h2 {
        font-size: 1.1em;
    }
    .title-container h3 {
        font-size: 1em;
    }
    .statement { font-size: 2.5em }

    .statement p:nth-of-type(1) { margin-right: 60px }

    .hero-container .social,
    .hero-container .block-button {
        bottom: 10px;
    }

    .clips-gallery i { font-size: 1.2em !important }
    .clips-gallery .fa-angle-left { left: -20px }
    .clips-gallery .fa-angle-right { right: -20px }

    .no-hero-main h1 { font-size: 2.2em }

    .single-page-content img {
        float: none !important;
        display: block;
        width: 90%;
        height: auto;
        margin: 0 auto !important;
    }

    footer {
        font-size: 0.7em;
        padding: inherit, 0;
        text-align: center;
    }
    .product-container p { font-size: .95rem !important }
    .product-container h2 { font-size: 1.6rem }
    .product-container .product-image { width: 180px }

    .cart-off-canvas { width: 100vw }
    .order-summary .summary-item {
        grid-template-areas: 
            "T T"
            "I D";
    }
    .order-summary h2 { margin-bottom: 5px }
    .order-summary p { line-height: 2rem }

    .order-summary .order-details {
        padding: 30px 45px 25px;
    }
    .order-summary .order-details h2 {
        font-size: clamp(1.16rem, 5.4vw, 1.5rem);
        margin-bottom: 25px;
    }
    .order-summary .summary-item .title { 
        font-size: clamp(1rem, 3.9vw, 1.1rem);
        margin: 0 0 .5rem;
    }
    .order-summary .summary-item .title em {
        display: block;
        margin: .2rem 0 0 2rem;
    }
    .order-summary .summary-item ul { margin-bottom: .5rem }
    .order-summary .summary-item img { margin-right: 30px !important}
    .order-summary hr { margin: 1rem auto !important }
}

@media (max-width: 320px) {
    .logo-title {
        font-size: 0.9em;
    }
    .menu-btn {
        font-size: 0.9em;
    }
    .nav {
        right: 35px;
    }
    .title-container h1 {
        font-size: 2em;
        margin-top: 5px;
    }
    .title-container h2 {
        font-size: 1em;
        width: 250px;
        text-align: right;
    }
    .title-container h3 {
        font-size: 0.9em;
    }
    .statement {
        font-size: 2.1em;
    }
    .hero-container .social {
        font-size: 1.2em;
    }
    .no-hero-main h1 { font-size: 2em }

    .product-container p { font-size: .9rem !important }
    .product-container h2 { font-size: 1.5rem }
    .product-container .product-image { width: 150px }
    
    .order-summary .order-details { padding: 30px clamp(25px, 13vw, 40px) 20px }
    .order-summary .order-details h2 { margin-bottom: 20px }
    .order-summary .summary-item .title { margin: 0 0 .5rem }

    .order-summary .summary-item .title em {
        display: block;
        margin: .2rem 0 0 2rem;
    }
    .order-summary .summary-item ul { margin-bottom: .5rem }
    .order-summary hr { margin: 1rem auto !important }
}

@media (max-height: 639px)  {
    .logo-title {
        font-size: 0.9em;
    }
    .logo-subtitle {
        font-size: 0.8em;
    }
    .menu-btn {
        font-size: 0.9em;
        height: 28px;
        width: 28px;
    }
    .nav {
        font-size: 1.1em;
        position: absolute;
        right: 58px;
    }
    .statement {
        right: unset;
        left: 15%;
        bottom: 70px;
    }
    .title-container {
        top: 33%;
        right: 8%;
    }
    .title-container h1 {
        max-width: unset;
        font-size: 2em;
        margin-top: 5px;
    }
    .title-container h2 {
        font-size: 1em;
        text-align: right;
    }
    .title-container h3 {
        font-size: 0.9em;
    }
    .statement {
        font-size: 2.1em;
    }
    .hero-container .social {
        left: 15px;
        font-size: 1.5em;
    }
}

@media (max-height: 375px) {
    .hero-container .social {
        font-size: 1.2em;
        bottom: 20px;
    }
    .statement { bottom: 30px }
}