/* Handledarutbildning Stockholm */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;900&display=swap');

@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --section-width: 150rem;
    --col-padding: 3rem;
    --menu-height: 7rem;
    --menu-height-scrolled: 7rem;

    /* 	Colors */
    --primary-color: 106, 170, 200;
    --secondary-color: 231, 147, 169;
    --white-color: 255, 255, 255;
    --black-color: 34, 34, 34;
    --gray-dark-color: 102, 102, 102;
    --gray-light-color: 247, 247, 247;


    /* 	Typography */
    --base-size: 1.6rem;

    /* 	Mobile nav */
    --activate-mobile-menu: 1200;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: var(--white-color);
    --menu-color: var(--black-color);
}

/* Layout
========================================================================== */
.section-block {
    padding: 8rem;
}

/* Specifika paddings */
.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
    padding-top: 0;
}

.pt-5 .section-block,
.pt-5:not(.section-wrapper) {
    padding-top: 5rem;
}

.pb-0 .section-block,
.pb-0:not(.section-wrapper) {
    padding-bottom: 0;
}

.pb-5 .section-block,
.pb-5:not(.section-wrapper) {
    padding-bottom: 5rem;
}

.py-0 .section-block,
.py-0:not(.section-wrapper) {
    padding-top: 0;
    padding-bottom: 0;
}

.pl-2 {
    padding-left: 2rem;
}

.pl-4 {
    padding-left: 4rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

/* Specifika bredder */
.mw-1000 .section-block-wrapper {
    max-width: 100rem;
}

.mw-none .section-block-wrapper {
    max-width: none;
}

/* Speciella klassnamn */
.block {
    display: block;
}

@media only screen and (max-width: 1500px) {
    .section-block {
        padding: 5rem;
    }
}

@media only screen and (max-width: 1200px) {
    .section-block {
        padding: 5rem 3rem;
    }
}

@media only screen and (max-width: 700px) {
    .section-block {
        padding: 5rem 2rem;
    }
}

/* Text och typsnitt
========================================================================== */
body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: rgb(var(--black-color));
    -webkit-font-smoothing: antialiased;
}

/* rubriker */
.hero-title {
    font-size: 7rem;
    line-height: 1.2;
    font-weight: 900;
    padding-bottom: 0;
    margin-bottom: 3rem;
    color: rgb(var(--black-color));
}

.section-title {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 900;
    padding-bottom: 0;
    margin-bottom: .75em;
    color: rgb(var(--black-color));
}

.small-title {
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 500;
    padding: 0 0 .5em;
    color: rgb(var(--black-color));
}

.text-title {
    font-size: var(--base-size);
    font-weight: 700;
}

.text-label {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    word-spacing: 0.25em;
    text-transform: uppercase;
    color: rgb(var(--black-color));
}

/* Text */
p {
    font-weight: 300;
    line-height: 1.7;
    color: rgb(var(--black-color));
}

a {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
}

p a {
    text-decoration: underline;
    text-decoration-color: rgb(var(--secondary-color));
    text-underline-offset: 3px;
    transition: all .2s ease;
}

p a:hover {
    text-decoration: none;
    transition: all .2s ease;
}

.ingress {
    font-size: 1.8rem;
}

/* ovriga klasser */
.text-bold {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.text-block {
    max-width: 75rem;
    margin: 0 auto;
}

.text-sm {
    font-size: 1.4rem;
}

/* Listor */
.list-circle {
    list-style: none;
}

.list-circle li {
    position: relative;
    margin-bottom: 1rem;
}

.list-circle li::before {
    content: '\f111';
    position: absolute;
    top: 50%;
    left: -2.5rem;
    color: rgb(var(--primary-color));
    font-weight: 700;
    font-size: .8rem;
    font-family: 'Font Awesome 5 Pro';
    transform: translateY(-50%);
}

@media only screen and (max-width: 1200px) {

    .hero-title {
        font-size: 3.9rem;
    }

    .section-title {
        font-size: 3.3rem;
    }

    .small-title {
        font-size: 2.3rem;
    }
}

@media only screen and (max-width: 700px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .small-title {
        font-size: 2rem;
    }

    .text-label {
        font-size: 1.4rem;
    }
}

/* Knappar och speciella lankar
========================================================================== */
.btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-wrapper.center {
    justify-content: center;
}

/* Knappar */
.btn,
.ContactSubmit {
    padding: 1.6rem 3.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3rem;
    border: 2px solid;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.btn-primary-filled,
.ContactSubmit {
    color: rgb(var(--white-color));
    background-color: rgb(var(--primary-color));
    border-color: rgb(var(--primary-color));
}

.btn-primary-filled:hover,
.ContactSubmit:hover,
.ContactSubmit:focus {
    background-color: rgb(var(--secondary-color));
    border-color: rgb(var(--secondary-color));
}

.btn-primary-outlined {
    border-color: rgb(var(--primary-color));
}

.btn-primary-outlined:hover {
    background-color: rgb(var(--secondary-color));
    border-color: rgb(var(--secondary-color));
    color: rgb(var(--white-color));
}

.btn-white-filled {
    color: rgb(var(--black-color));
    background: rgb(var(--white-color));
}

.btn-white-filled:hover {
    background: rgb(var(--gray-light-color));
}

/* Knappstyling */
.btn.arrow::after {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
    display: inline-block;
    content: '\f054';
    margin-left: 1rem;
    opacity: 0.7;
    transition: all .4s ease;
}

.btn.arrow:hover:after {
    opacity: 1;
    transition: all .4s ease;
    transform: translateX(1rem);
}

.btn-large {
    font-size: 1.6rem;
    text-transform: none;
    letter-spacing: 0;
    text-align: left;
}

/* Farger
========================================================================== */
/* Bakgrundsfarger */
.bg-primary {
    background-color: rgb(var(--primary-color));
}

.bg-primary-light {
    background-color: rgba(var(--primary-color), .1);
}

.bg-secondary {
    background-color: rgb(var(--secondary-color));
}

.bg-gray {
    background-color: rgb(var(--gray-light-color));
}

.bg-black {
    background-color: rgb(var(--black-color));
}

.gradient-white-gray {
    background-image: linear-gradient(to bottom, rgb(var(--white-color)) 50%, rgb(var(--gray-light-color)) 50%);
}

/* Textfarger */
.text-primary {
    color: rgb(var(--primary-color));
}

.text-secondary {
    color: rgb(var(--secondary-color));
}

.text-white {
    color: rgb(var(--white-color));
}

.text-black {
    color: rgb(var(--black-color));
}

.text-offwhite {
    color: rgba(var(--white-color), .8);
}

/* Modal som öppnas automatiskt
========================================================================== */
body:not(.EditMode) .section-auto-modal {
    display: none;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(var(--black-color),.7);
  }

  body:not(.EditMode) .section-auto-modal .section-block {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 4rem);
    max-width: 75rem;
    max-height: 75vh;
    padding: 4rem;
    border-radius: 2rem;
	border: 6px solid rgb(var(--primary-color));
	border-style: dashed;
    overflow: auto;
    background: rgb(var(--white-color));
    transform: translate(-50%,-50%);
  }

  .section-auto-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    cursor: pointer;
  }

  @media only screen and (max-width: 450px) {
    body:not(.EditMode) .section-auto-modal .section-block {
      padding: 3rem 2rem;
    }
  }
/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.split-wrapper.reverse {
    flex-direction: row-reverse;
}

.split-content {
    position: relative;
    width: 50%;
    padding: 8rem;
}

.split-image {
    width: 50%;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0px 4px 15px rgb(0 0 0 / 10%);
}

/* Centrera content */
.split-wrapper .align-center {
    align-self: center;
}

/* Speciella bredder */
.split-wrapper .w-60 {
    width: 60%;
}

.split-wrapper .w-40 {
    width: 40%;
}

@media screen and (max-width: 1500px) {
    .split-content {
        padding: 5rem;
    }
}

@media screen and (max-width: 1200px) {
    .split-content {
        padding: 3rem;
    }
}

@media screen and (max-width: 1000px) {

    .split-content,
    .split-wrapper .w-60,
    .split-wrapper .w-40 {
        width: 100%;
    }

    .split-image {
        width: 100%;
    }

}

@media screen and (max-width: 580px) {

    .split-content {
        padding: 0 0 3rem 0;
    }

}

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
}

.bg-image-wrapper {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Bakgrundsvideo
========================================================================== */
.bg-video {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.bg-video-wrapper {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.bg-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Grafiska element
========================================================================== */

.border-l-thick {
    padding-left: 2rem;
    border-left: 3px solid #6aaac8;
}

/* Column Section
========================================================================== */

.columns {
    column-count: 2;
    column-gap: 6rem;
    column-rule: 1px solid rgba(var(--black-color), .1);
}

.columns.big {
    column-count: 3;
}

.columns div {
    break-inside: avoid-column;
}

.columns:not(:last-of-type) {
    display: block;
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    border-bottom: 2rem solid rgba(var(--black-color), .025);
}

.columns .box {
    padding: 1.5rem;
    margin-bottom: 3rem;
    border: 1px solid #6aaac8;
    background: #daf2fd;
}

.columns .btn {
    margin-top: 2rem;
    margin-bottom: 4rem;
}

@media only screen and (max-width: 1000px) {
    .columns.big {
        column-count: 2;
    }
}

@media only screen and (max-width:720px) {

    .columns.big,
    .columns {
        column-count: 1;
        column-gap: 0;
    }
}

/* Header / Navigation
========================================================================== */
/* Header */
header {
    padding: 0;
    background-color: rgb(var(--white-color));
}

header:not(.scrolled) {
    background-color: transparent;
}

header .container {
    max-width: none;
}

/* Header logo */
.header-logo {
    margin: 0 2rem 0 0;
}

/* Nav */
nav.mainmenu {
    margin: 0 0 0 auto;
}

.TemplateMenu a {
    position: relative;
    font-weight: 500;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgb(var(--gray-dark-color));
    padding: 0 1rem;
}

header:not(.scrolled):not(.mobile-menu) .TemplateMenu>li>a {
    color: rgb(var(--white-color));
}

/* CTA  */
.header-cta-wrapper {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0 0 0 3rem;
    list-style: none;
}

.header-cta-wrapper li {
    margin: 0;
    line-height: 1;
}

.header-cta-wrapper .btn {
    border-radius: 0 0 0 2rem;
    line-height: var(--menu-height);
    height: var(--menu-height);
    padding: 0 3rem;
    margin: 0;
    border: 0;
}

/* Mobilmeny */
header.mobile-menu {
    padding: 0 1rem 0 0;
    background-color: rgb(var(--white-color));
}

.mobile-menu .header-logo {
    flex-grow: 1;
}

header.mobile-menu .TemplateMenu a {
    color: rgb(var(--gray-dark-color));
    padding: 0 2rem;
}

.mobile-menu .header-cta-wrapper {
    margin: 0 1rem 0 0;
}

.mobile-menu .header-cta-wrapper .btn {
    border-radius: 4rem;
    padding: 1rem 2rem;
    line-height: 1;
    height: auto;
}

.mobile-menu .header-cta-wrapper .btn.arrow::after {
    display: none;
}

/* ==========================================================================
Startsida 
========================================================================== */

/* Topsection
========================================================================== */
.top-section {
    position: relative;
    z-index: 1;
}

.top-section::after {
    position: absolute;
    z-index: -1;
    display: block;
    content: "";
    background-image: url(/assets/images/raster.svg);
    background-size: cover;
    background-position: center center;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
}

.top-section .section-block {
    display: flex;
    align-items: center;
    min-height: 100vh;
    margin-top: calc(-1 * var(--menu-height));
    background-color: rgba(0, 0, 0, 0.67);
}

.top-section .section-block-wrapper {
    width: 100%;
}

.top-section p {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.top-section .btn {
    margin: 0 1rem 0 0;
}

@media only screen and (max-width: 580px) {
    .top-section .btn {
        display: block;
        width: 100%;
        margin: 0 0 1rem;
    }
} 

/* ==========================================================================
Undersidor
========================================================================== */
.hero {
    position: relative;
    z-index: 1;
}

.hero::after {
    position: absolute;
    z-index: -1;
    display: block;
    content: "";
    background-image: url(/assets/images/raster.svg);
    background-size: cover;
    background-position: center top;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
}

.hero .section-block {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: calc(-1 * var(--menu-height));
    padding: 30vh 2rem 5rem;
    background-color: rgba(0, 0, 0, 0.67);
}

.hero .hero-title {
    color: rgb(var(--white-color));
    padding: 0;
    margin: 0;
}

/* ==========================================================================
Undersida > Vanliga fragor
========================================================================== */

/* Sektion Vanliga fragor
========================================================================== */
.accordion-wrapper {
    max-width: 100rem;
    margin: 0 auto;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
    background-color: rgb(var(--white-color));
    overflow: hidden;
}

.accordion-header {
    position: relative;
    padding: 2rem 3rem;
    border-bottom: 1px solid rgb(var(--gray-light-color));
    cursor: pointer;
    transition: .2s ease;
}

.accordion-header:hover {
    background-color: rgba(var(--gray-light-color), .5);
    transition: .2s ease;
}

.accordion-header::after {
    content: "\f078";
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
    font-size: 1.7rem;
    font-family: "Font Awesome 5 Pro";
    transition: .5s ease;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(180deg);
}

.accordion-header p {
    padding: 0 2.5rem 0 0;
    font-weight: 500;
}

.accordion-body {
    padding: 4rem 3rem;
    background-color: rgb(var(--gray-light-color));
    border-left: 3px solid rgb(var(--primary-color));
}

@media only screen and (max-width: 580px) {
    .accordion-header {
        padding: 2rem 5rem 2rem 2rem;
    }

    .accordion-header::after {
        right: 2rem;
    }

    .accordion-body {
        padding: 3rem 2rem;
    }
}

/* ==========================================================================
Undersida > Hitta hit
========================================================================== */

/* Sektion Karta (.section-map) 
========================================================================== */
.map-widget {
    height: 50rem;
}

@media only screen and (max-width: 1000px) {
    .map-widget {
        height: 30rem;
    }
}


/* ==========================================================================
Undersida > Kontakt
========================================================================== */

/* Sektion Kontaktformular
========================================================================== */
.section-contact-form .col-1 {
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
    background-color: rgb(var(--white-color));
    padding: 0;
    overflow: hidden;
}

.section-contact-form .col-1 .text-wrapper {
    background-color: rgb(var(--primary-color));
    padding: 3rem;
}

.section-contact-form .col-1 .small-title {
    padding: 0;
    line-height: 1;
    color: rgb(var(--white-color));
}

.section-contact-form .Contact {
    padding: 3rem;
}

.ContactForm input[type="text"],
.ContactForm textarea {
    border-radius: 3px;
}

.ContactForm .ContactSubmit {
    font-size: 1.4rem;
}

.ContactForm p {
    position: relative;
    padding: 0.2em;
    line-height: 1;
    font-size: 1.4rem;
    display: inline-block;
    background-color: rgb(var(--white-color));
    transform: translateY(50%);
    left: 1rem;
    margin: -10px 0 0;
}

@media only screen and (max-width: 580px) {
    .section-contact-form .col-1 .text-wrapper {
        padding: 2rem;
    }

    .section-contact-form .Contact {
        padding: 2rem;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: rgb(var(--gray-light-color));
}

.footer-container {
    max-width: 160rem;
    padding: 0 5rem;
    margin: 0 auto;
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 4rem;
    border-bottom: 1px solid rgb(var(--primary-color));
}

.footer-menu {
    width: 20%;
    margin: 1.5rem 0;
}

.footer img {
    max-width: 100%;
    width: 20rem;
}

.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer .text-label {
    color: rgb(var(--primary-color));
    letter-spacing: 0;
    line-height: 1.2;
    padding: 0;
    margin: 0 0 1rem;
}

.footer li a:hover {
    text-decoration: underline;
}

.footer em {
    color: rgb(var(--primary-color));
    margin-right: 5px;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.footer-bottom p {
    font-size: 1.4rem;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
}

.footer-logos .logo {
    width: 10rem;
    margin: 1rem 1rem 1rem 0;
}

.footer-logos .logo.teoricentralen {
    width: 3rem;
}

/* WebbEss Stamp  */
.webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
}

.webbess-stamp img {
    width: 3rem;
    margin-left: 1rem;
}
@media only screen and (max-width: 1200px) {

    .footer-container {
        padding: 0 3rem;
    }

    /* Footer top */
    .footer-menu {
        width: 48%;
    }
}

@media only screen and (max-width: 750px) {

    /* Footer top */
    .footer-menu {
        width: 100%;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 0;
    }

    .footer-bottom .socials {
        margin-bottom: 1.5rem;
    }

}

@media only screen and (max-width: 580px) {
    .footer-container {
        padding: 0 2rem;
    }
}

/* ==========================================================================
Webbshop 
========================================================================== */
#e-handel {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#str-ecom .card-title {
    font-size: 1.8rem !important;
    margin-top: 1rem !important;
}

#str-ecom .h6,
#str-ecom h6 {
    font-size: 1.6rem !important;
    margin-top: 1rem !important;
}

#str-ecom #testBanner {
    display: none;
}

#str-ecom .filter.mb-2 {
    display: none !important;
}

#str-ecom p {
    padding-bottom: 0;
}

#str-ecom .btn {
    font-size: 1.5rem !important;
    padding: 2rem !important;
    min-width: 0 !important;
}

#str-ecom .card.product .card-body,
#str-ecom .card.product .card-img {
    margin: 0 auto;
}

#str-ecom #top-nav>.flickity-enabled .btn {
    color: #6aaac8 !important;
}

#str-ecom .menu-buttons .btn>svg {
    font-size: 1.5rem !important;
}

#str-ecom .menu-buttons .btn {
    color: #e793a9 !important;
    background-color: #343a40 !important;
    border-color: #343a40 !important;
}

#str-ecom .product-timeslots li.week-header {
    font-size: 1.8rem !important;
    text-transform: capitalize !important;
}

#str-ecom .product-timeslots li:not(.week-header) {
    border: 1px solid #eee !important;
    padding: 2rem !important;
    border-radius: 1rem !important;
}

#str-ecom .product-timeslots li.week-header::marker {
    display: none !important;
}

#str-ecom .collapsible.show .selected-item {
    display: block !important;
    margin-top: 2rem !important;
}

#str-ecom .product-info.mb-5 p span {
    font-size: 1.4rem !important;
}

#str-ecom .list-inline,
#str-ecom .list-unstyled {
    overflow: hidden;
}

#str-ecom .product-timeslots li>* {
    line-height: 2.25rem !important;
}

#str-ecom .product.product-detail .product-price {
    font-size: 2rem !important;
}

#str-ecom #menu-navigation .menu {
    padding-bottom: 8rem !important;
}

#str-ecom #cart .cart-items .product-item .price-discount,
#str-ecom #cart .total-price {
    font-size: 2rem !important;
}

#str-ecom .menu-buttons .cart {
    min-width: 6rem !important;
}

#str-ecom #menu-navigation .menu .btn.cart {
    padding: 0 !important;
}

#str-ecom .h5 {
    font-size: 1.4rem !important;
}

#str-ecom .close.page-close {
    z-index: 5 !important;
}

#str-ecom .product-timeslots li .date-time span {
    margin-right: 1rem !important;
    text-transform: capitalize !important;
    border-right: 1px solid #ccc !important;
    padding-right: 1rem !important;
}

#str-ecom .menu-buttons .btn.cart>svg {
    width: 3rem !important;
    height: 3rem !important;
}

#str-ecom .menu-buttons {
    z-index: 5 !important;
}

@media (min-width: 768px) {
    #str-ecom .product-timeslots li .price {
        margin-right: 2.7rem !important;
    }

    #str-ecom .col-sm-8 {
        flex: 0 0 66.66% !important;
        max-width: 66.66% !important;
    }
}

@media only screen and (max-width: 768px) {
    #str-ecom .col-sm-8 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    #str-ecom .product-timeslots li:not(.week-header) {
        padding-right: 0 !important;
    }

    #str-ecom .product-timeslots li .price {
        position: static !important;
        display: inline !important;
    }

    #str-ecom svg.checkbox.right.center {
        position: static !important;
        display: inline !important;
        -webkit-transform: translate(-15px, 3px) !important;
        transform: translate(-15px, 3px) !important;
    }

    #str-ecom .product-timeslots li .employees {
        display: block !important;
        margin-bottom: 1rem !important;
    }
}

@media screen and (min-width: 576px) {
    #str-ecom .menu-buttons {
        top: 3.5rem;
    }

}

@media screen and (max-width: 576px) {
    #str-ecom .h5 {
        font-size: 1.4rem !important;
    }

}