body {
    
    background-color: #020312;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

.stylesch-align__vertical, .stylesch-item-content, #about-me, #portfolio, #testimonials, #stylesch-footer{color: #fff}
html {
    font-size: 80%;
}

h1, h2, h3, h4, h5 {
    font-weight: 400;
}

h1, .stylesch-h1 {
    font-size: 2.5rem;
}

h2, .stylesch-h2 {
    font-size: 1.5rem;
}

h3, .stylesch-h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5625rem;
}

h4, .stylesch-h4 {
    margin-bottom: 1.875rem;
}

h5, .stylesch-h5 {
    font-size: 1.125rem;
}

h6, .stylesch-h6 {
    font-size: 1rem;
}

/* .bg-1{background-image: url("../img/bg-1.jpg"); background-size: cover; background-repeat: no-repeat; background-position: left center;background-attachment: fixed;} */
.bg-1{background-size: cover; background-repeat: no-repeat; background-position: left center;background-attachment: fixed;}
.bg-4{background-size: cover; background-repeat: no-repeat; background-position: left center;background-attachment: fixed;}
.bg-5{background-size: cover; background-repeat: no-repeat; background-position: left center;background-attachment: fixed;margin: 0px !important;}
.bg-6{background-size: cover; background-repeat: no-repeat; background-position: left center;background-attachment: fixed;}
.white-bg{background: #fff}
.white-bg h3{color: #000}

.bg-2{background: #020312}
.bg-3{background: #fcfcfc}
#testimonials{background: #00c3ff}
/* NEW */

/***********************************************************************************************************************
B. Helpers
***********************************************************************************************************************/

/*-------------------------------------------
  -- Animations
-------------------------------------------*/

[data-animate] {
    opacity: 0;
    animation-fill-mode: forwards;
    animation-duration: .6s;
    animation-timing-function: ease;
}

/* Fade In Up */

@keyframes stylesch-fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 1.25rem, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.stylesch-fadeInUp {
    animation-name: stylesch-fadeInUp;
}

/* Fade In Down */

@keyframes stylesch-fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -1.25rem, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.stylesch-fadeInDown {
    animation-name: stylesch-fadeInDown;
}

/* Fade In Left */

@keyframes stylesch-fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-1.25rem, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.stylesch-fadeInLeft {
    animation-name: stylesch-fadeInLeft;
}

/* Fade In Right */

@keyframes stylesch-fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(1.25rem, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.stylesch-fadeInRight {
    animation-name: stylesch-fadeInRight;
}

/* Zoom In */

@keyframes stylesch-zoomIn {
    from {
        opacity: 0;
        transform: scale(.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stylesch-zoomIn {
    animation-name: stylesch-zoomIn;
}

/* Zoom Out In */

@keyframes stylesch-zoomOutIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stylesch-zoomOutIn {
    animation-name: stylesch-zoomOutIn;
}

/* Zoom In Short */

@keyframes stylesch-zoomInShort {
    from {
        opacity: 0;
        transform: scale(.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stylesch-zoomInShort {
    animation-name: stylesch-zoomInShort;
}

/* -- Align */

.stylesch-align__vertical {
    display: flex;
    align-items: center;
}

/*-------------------------------------------
  -- Borders
-------------------------------------------*/

.stylesch-border-radius__sm {
    border-radius: .125rem;
    overflow: hidden;
}

.stylesch-border-radius__md {
    border-radius: .25rem;
    overflow: hidden;
}

.stylesch-border-radius__lg {
    border-radius: .5rem;
    overflow: hidden;
}

.stylesch-border-radius__xl {
    border-radius: .75rem;
    overflow: hidden;
}

.stylesch-border-radius__pill {
    border-radius: 6.25rem !important;
    overflow: hidden;
}

.stylesch-border-radius__round-shape {
    border-radius: 187.5rem;
    overflow: hidden;
}

.stylesch-border-none {
    border: none;
}

.stylesch-border-bottom {
    border-bottom: .0625rem solid rgba(0, 0, 0, .1);
}

.stylesch-border-muted {
    border-color: rgba(25, 25, 25, .1) !important;
}

.stylesch-border-light {
    border-color: rgba(255, 255, 255, .2) !important;
}

.stylesch-font-color__white {
    color: #fff;
}

.stylesch-font-color__black {
    color: #000;
}

.stylesch-font-color__primary {
    color: #00c3ff;
}

.stylesch-bg-primary {
    background-color: #00c3ff;
}

.stylesch-column-count-2 {
    column-count: 2;
}

.stylesch-column-count-3 {
    column-count: 3;
}

.stylesch-column-count-4 {
    column-count: 4;
}

/*-------------------------------------------
  -- Background
-------------------------------------------*/

[data-bg-image] {
    background-size: cover;
    background-position: 50%;
}

.stylesch-background {
    bottom: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    position: absolute;
    width: 100%;
    z-index: -2;
}

.stylesch-background .stylesch-background {
    height: 100%;
    width: 100%;
}

.stylesch-background-repeat {
    background-repeat: repeat;
    background-size: inherit;
}

.stylesch-background-repeat .stylesch-background-image {
    background-repeat: repeat;
    background-size: inherit;
}

.stylesch-background-image, .stylesch-img-into-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.stylesch-background-image img, .stylesch-img-into-bg img {
    display: none;
}

.stylesch-background-original-size {
    background-size: inherit;
}

.stylesch-background-size-cover {
    background-size: cover;
}

.stylesch-background-size-contain {
    background-size: contain;
}

.stylesch-background-repeat-x {
    background-repeat: repeat-x;
}

.stylesch-background-repeat-y {
    background-repeat: repeat-y;
}

.stylesch-background-repeat-repeat {
    background-repeat: repeat;
    background-size: inherit;
}

.stylesch-background-position-top {
    background-position: top;
}

.stylesch-background-position-center {
    background-position: center;
}

.stylesch-background-position-bottom {
    background-position: bottom;
}

.stylesch-background-position-left {
    background-position-x: left !important;
}

.stylesch-background-position-right {
    background-position-x: right !important;
}

.stylesch-background-particles {
    height: 120%;
    left: 0;
    margin-left: -10%;
    margin-top: -10%;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 120%;
    z-index: 1;
}

.stylesch-background-is-dark {
    color: #fff;
}

.stylesch-background-is-dark .form-control {
    box-shadow: 0 0 0 .125rem rgba(255, 255, 255, .2);
}

.stylesch-background-is-dark .form-control:focus {
    box-shadow: 0 0 0 .125rem rgba(255, 255, 255, .4);
}

.stylesch-background-is-dark .stylesch-btn-border-muted {
    border-color: rgba(255, 255, 255, .1);
}

.stylesch-video-bg {
    height: 100%;
}

.stylesch-video-bg .fluid-width-video-wrapper {
    height: 100%;
}

/*-------------------------------------------
  -- Height
-------------------------------------------*/

.stylesch-height__50px {
    height: 3.125rem;
}

.stylesch-height__100px {
    height: 6.25rem;
}

.stylesch-height__150px {
    height: 9.375rem;
}

.stylesch-height__200px {
    height: 12.5rem;
}

.stylesch-height__250px {
    height: 15.625rem;
}

.stylesch-height__300px {
    height: 18.75rem;
}

.stylesch-height__350px {
    height: 21.875rem;
}

.stylesch-height__400px {
    height: 25rem;
}

.stylesch-height__450px {
    height: 28.125rem;
}

.stylesch-height__500px {
    height: 31.25rem;
}

.stylesch-height__600px {
    height: 37.5rem;
}

.stylesch-height__700px {
    height: 43.75rem;
}

.stylesch-height__800px {
    height: 50rem;
}

.stylesch-height__900px {
    height: 56.25rem;
}

.stylesch-height__1000px {
    height: 62.5rem;
}

/*-------------------------------------------
  -- Margin
-------------------------------------------*/

.stylesch-mt__0 {
    margin-top: 0 !important;
}

.stylesch-mr__0 {
    margin-right: 0 !important;
}

.stylesch-mb__0 {
    margin-bottom: 0 !important;
}

.stylesch-ml__0 {
    margin-left: 0 !important;
}

/*-------------------------------------------
  -- No Gutters - Removes padding from col*
-------------------------------------------*/

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col, .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

/*-------------------------------------------
  -- Opacity
-------------------------------------------*/

.stylesch-opacity__5 {
    opacity: .05;
}

.stylesch-opacity__10 {
    opacity: .1;
}

.stylesch-opacity__20 {
    opacity: .2;
}

.stylesch-opacity__30 {
    opacity: .3;
}

.stylesch-opacity__40 {
    opacity: .4;
}

.stylesch-opacity__50 {
    opacity: .5;
}

.stylesch-opacity__60 {
    opacity: .6;
}

.stylesch-opacity__70 {
    opacity: .7;
}

.stylesch-opacity__80 {
    opacity: .8;
}

.stylesch-opacity__90 {
    opacity: .9;
}

/*-------------------------------------------
  -- Overflow
-------------------------------------------*/

.stylesch-overflow__hidden {
    overflow: hidden;
}

.stylesch-overflow__visible {
    overflow: visible;
}

/*-------------------------------------------
  -- Padding
-------------------------------------------*/

.stylesch-pt__0 {
    padding-top: 0 !important;
}

.stylesch-pr__0 {
    padding-right: 0 !important;
}

.stylesch-pb__0 {
    padding-bottom: 0 !important;
}

.stylesch-pl__0 {
    padding-left: 0 !important;
}

/*-------------------------------------------
  -- Position
-------------------------------------------*/

/* Top */

.stylesch-top__0 {
    top: 0%;
}

.stylesch-top__50 {
    top: 50%;
}

.stylesch-top__100 {
    top: 100%;
}

/* Right */

.stylesch-right__0 {
    right: 0%;
}

.stylesch-right__50 {
    right: 50%;
}

.stylesch-right__100 {
    right: 100%;
}

.stylesch-right__inherit {
    right: inherit;
}

/* Bottom */

.stylesch-bottom__0 {
    bottom: 0%;
}

.stylesch-bottom__50 {
    bottom: 50%;
}

.stylesch-bottom__100 {
    bottom: 100%;
}

/* Left */

.stylesch-left__0 {
    left: 0%;
}

.stylesch-left__50 {
    left: 50%;
}

.stylesch-left__100 {
    left: 100%;
}

.stylesch-left__inherit {
    left: inherit;
}

.stylesch-push-left__100 {
    transform: translateX(100%);
}

.stylesch-push-down__50 {
    transform: translateY(50%);
}

.stylesch-push-up__50 {
    transform: translateY(-50%);
}

/*-------------------------------------------
  -- Shadow
-------------------------------------------*/

.stylesch-shadow__sm {
    box-shadow: 0 .125rem .3125rem rgba(0, 0, 0, .1);
}

.stylesch-shadow__md {
    box-shadow: .125rem .1875rem .9375rem rgba(0, 0, 0, .15);
}

.stylesch-shadow__lg {
    box-shadow: .375rem .3125rem 1.5625rem rgba(0, 0, 0, .2);
}

.stylesch-shadow__none {
    box-shadow: none !important;
}

/*-------------------------------------------
  -- Typography
-------------------------------------------*/

a {
    color: #00c3ff;
    transition: .3s ease;
}

a:hover {
    color: rgb(237, 58, 18);
    text-decoration: none;
}

p {
    line-height: 1.6875rem;
    margin-bottom: 1.875rem;
    opacity: .5;
}

.stylesch-font-weight__normal {
    font-weight: normal;
}

.stylesch-font-weight__light {
    font-weight: lighter;
}

.stylesch-font-weight__bold {
    font-weight: bold;
}

.stylesch-text-small {
    font-size: .8125rem !important;
}

.stylesch-xs-text-center {
}

/*-------------------------------------------
  -- Title
-------------------------------------------*/

.stylesch-title {
}

.stylesch-title h5 {
    font-weight: normal;
    opacity: .5;
}

/*-------------------------------------------
  -- Utilities
-------------------------------------------*/

.stylesch-element {
    position: relative;
}

/* Social Icons */

.stylesch-social-icons {
    font-size: 120%;
}

.stylesch-social-icons a {
    padding: .125rem .25rem;
    color: #9e9e9e;
}

/* Overlay */

.stylesch-has-overlay {
    position: relative;
}

.stylesch-has-overlay:after {
    background-color: #000;
    content: "";
    height: 100%;
    left: 0;
    opacity: .5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

/* Flip x */

.stylesch-flip-x {
    transform: scaleY(-1);
}

/* Flip Y */

.stylesch-flip-y {
    transform: scaleX(-1);
}

.stylesch-has-talk-arrow {
    position: relative;
}

.stylesch-has-talk-arrow:after {
    border-style: solid;
    border-width: .625rem .625rem 0 0;
    border-color: #00c3ff transparent transparent transparent;
    bottom: -0.625rem;
    content: "";
    left: 1rem;
    position: absolute;
}

.stylesch-video-bg {
    height: 100%;
}

.stylesch-video-bg .fluid-width-video-wrapper {
    height: 100%;
}

.stylesch-video-bg iframe {
    border: 0;
    height: 100%;
    width: 100%;
}

/*-------------------------------------------
  -- Width
-------------------------------------------*/

.stylesch-width__10px {
    width: .625rem;
}

.stylesch-width__20px {
    width: 1.25rem;
}

.stylesch-width__30px {
    width: 1.875rem;
}

.stylesch-width__40px {
    width: 2.5rem;
}

.stylesch-width__50px {
    width: 3.125rem;
}

.stylesch-width__100px {
    width: 6.25rem;
}

.stylesch-width__200px {
    width: 12.5rem;
}

.stylesch-width__300px {
    width: 18.75rem;
}

.stylesch-width__400px {
    width: 25rem;
}

.stylesch-width__500px {
    width: 31.25rem;
}

.stylesch-width__inherit {
    width: inherit !important;
}

.stylesch-width__auto {
    width: auto !important;
}

/*-------------------------------------------
  -- Z-index
-------------------------------------------*/

.stylesch-z-index__-1 {
    z-index: -1 !important;
}

.stylesch-z-index__0 {
    z-index: 0 !important;
}

.stylesch-z-index__1 {
    z-index: 1 !important;
}

.stylesch-z-index__2 {
    z-index: 2 !important;
}

.stylesch-z-index__1000 {
    z-index: 1000 !important;
}

/***********************************************************************************************************************
C. Components
***********************************************************************************************************************/

/*-------------------------------------------
  -- Block
-------------------------------------------*/

.stylesch-block {
    padding-bottom: 5rem;
    padding-top: 5rem;
    position: relative;
    /*
  &:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'  width='103.987' height='105.599'%3E%3cpath fill='var(--color-primary-svg)' d='M101.017 45.961c-10.338 22.34-33.156 61.239-62.326 59.586-31.984-1.803-44.52-48.772-36.182-73.996 15.682-47.439 120.287-40.376 98.508 14.41-10.998 23.766 1.923-4.836 0 0z'/%3E%3c/svg%3E");
  }
  */
}

.stylesch-block-inside {
    padding: 1.25rem;
    position: relative;
}

section {
    position: relative;
}

/*-------------------------------------------
  -- Blockquote
-------------------------------------------*/

blockquote {
    font-size: 1.125rem;
    position: relative;
    padding-bottom: 2rem;
}

blockquote [class*="stylesch-circle"] {
    box-shadow: .375rem .3125rem 1.5625rem rgba(0, 0, 0, .2);
    position: relative;
    z-index: 2;
    margin-top: 1rem;
}

blockquote p {
    background-color: #f1f1f1;
    border-radius: .25rem;
    margin-top: -2.5rem;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

blockquote p:after {
    border-color: #f1f1f1 transparent transparent transparent;
    border-style: solid;
    border-width: .8125rem .8125rem 0 .8125rem;
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -0.8125rem;
}

blockquote h4 {
    margin-bottom: .3125rem;
}

blockquote h6 {
    opacity: .5;
}

.blockquote-footer {
    color: inherit;
}

.blockquote-footer:before {
    display: none;
}

.stylesch-carousel-blockquote .owl-item figure, .stylesch-carousel-blockquote .owl-item p,
.stylesch-carousel-blockquote .owl-item .blockquote-footer {
    opacity: 0;
    transition: .6s ease;
    transform: translateY(.625rem);
}

.stylesch-carousel-blockquote .owl-item.active figure,
.stylesch-carousel-blockquote .owl-item.active p,
.stylesch-carousel-blockquote .owl-item.active .blockquote-footer {
    opacity: 1;
    transform: translateY(0);
}

.stylesch-carousel-blockquote .owl-item.active p {
    transition-delay: .1s;
}

.stylesch-carousel-blockquote .owl-item.active .blockquote-footer {
    transition-delay: .2s;
}

/*-------------------------------------------
  -- Box
-------------------------------------------*/

.stylesch-box {
    background-color: #fff;
    border-radius: .25rem;
    margin-bottom: 1.875rem;
    box-shadow: .125rem .1875rem .9375rem rgba(0, 0, 0, .15);
    padding: 1.5625rem;
}

/*-------------------------------------------
  -- Buttons
-------------------------------------------*/

.btn {
    border-radius: 0;
    box-shadow: .125rem .1875rem .9375rem rgba(0, 0, 0, .15);
    display: inline-block;
    font-weight: 500;
    font-size: .875rem;
    padding: .75rem 1.25rem;
    position: relative;
    outline: none !important;
    text-transform: uppercase;
}

.btn:hover .fa-arrow-right {
    transform: translateX(.5rem);
}

.btn.stylesch-btn-arrow:after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: .625rem;
    margin-left: .75rem;
    position: relative;
    top: -0.0625rem;
    vertical-align: middle;
}

.btn span {
    transition: .3s ease;
}

.btn .status {
    bottom: 0;
    height: 1.375rem;
    left: 0;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    width: 1.5rem;
}

.btn .status .spinner {
    left: .3125rem;
    transition: .3s ease;
    top: .1875rem;
    position: absolute;
    opacity: 0;
}

.btn .status .status-icon {
    border-radius: 50%;
    left: 0;
    opacity: 0;
    font-size: .625rem;
    padding: .25rem .4375rem;
    position: relative;
    transition: .3s ease;
    z-index: 1;
    transform: scale(0);
}

.btn .status .status-icon.valid {
    background-color: var(--green);
}

.btn .status .status-icon.invalid {
    background-color: var(--red);
}

.btn.processing span {
    opacity: .2;
}

.btn.processing .spinner {
    opacity: 1;
}

.btn.done .stylesch-spinner {
    opacity: 0;
}

.btn.done .status-icon {
    transform: scale(1);
    opacity: 1;
}

.stylesch-btn-effect {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
}

.stylesch-btn-effect:hover .stylesch-hidden {
    transform: translateX(0%);
}

.stylesch-btn-effect:hover .stylesch-visible {
    transform: translateX(100%);
}

.stylesch-btn-effect .stylesch-visible {
    transform: translateX(0%);
    transition: .3s ease;
}

.stylesch-btn-effect .stylesch-hidden {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: .3s ease;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #00c3ff;
    border-color: #00c3ff;
    box-shadow: none;
}

.btn-primary {
    background-color: #00c3ff;
    border-color: #00c3ff;
    color: #fff;
}

.btn-lg {
    padding: .75rem 1.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    font-size: .8125rem;
    padding: .375rem 1rem;
}

.btn-xs {
    font-size: .75rem;
    font-weight: 600;
    padding: .125rem .6875rem;
    text-transform: uppercase;
}

[class*="btn-outline-"] {
    box-shadow: none;
}

.stylesch-link-arrow-effect {
    overflow: hidden;
    display: inline-block;
    font-size: .75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-right: 2rem;
    /*
  &:hover {
    color: var(--color-white);
    &:before {
      animation: stylesch-link-arrow-effect-animation-in;
      animation-fill-mode: forwards;
      animation-duration: .4s;
      animation-timing-function: cubic-bezier(.6,.01,0,1);
    }
    span {
      transform: translateX(0%);
    }
  }
  */
}

.stylesch-link-arrow-effect:before {
    animation: stylesch-link-arrow-effect-animation-out;
    animation-fill-mode: forwards;
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(.6, .01, 0, 1);
    background-color: #00c3ff;
    bottom: 0;
    height: .125rem;
    margin: auto;
    left: 0;
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    transform: scaleX(.2);
    transform-origin: left center;
    z-index: -1;
}

.stylesch-link-arrow-effect span {
    position: relative;
    transform: translateX(-200%);
    display: inline-block;
    transition: .6s cubic-bezier(.6, .01, 0, 1);
}

@keyframes stylesch-link-arrow-effect-animation-in {
    0% {
        transform-origin: left center;
        transform: scaleX(.2);
    }

    70% {
        transform-origin: left center;
        transform: scaleX(1);
    }

    71% {
        transform-origin: right center;
    }

    100% {
        transform-origin: right center;
        transform: scaleX(.2);
    }
}

@keyframes stylesch-link-arrow-effect-animation-out {
    0% {
        transform-origin: right center;
        transform: scaleX(.2);
    }

    70% {
        transform-origin: right center;
    }

    71% {
        transform-origin: left center;
        transform: scaleX(1);
    }

    100% {
        transform-origin: left center;
        transform: scaleX(.2);
    }
}

/*-------------------------------------------
  -- Card
-------------------------------------------*/

.card {
    backface-visibility: hidden;
    border: none;
    box-shadow: .125rem .1875rem .9375rem rgba(0, 0, 0, .15);
    margin-bottom: 1.875rem;
    overflow: hidden;
}

.card-columns .card {
    margin-bottom: 1.25rem;
}

.card-body, .card-footer, .card-header {
    padding: 1.5625rem;
}

.stylesch-cards-same-height > div[class*='col-'] {
    display: flex;
}

.stylesch-cards-same-height > div[class*='col-'] .card {
    width: 100%;
}

.stylesch-card__flat {
    border-radius: 0;
    box-shadow: none;
}

.stylesch-card__flat .card-footer {
    background-color: transparent;
    border: none;
}

.stylesch-card__image {
}

/*-------------------------------------------
  -- Circle
-------------------------------------------*/

.stylesch-circle__xs {
    border-radius: 50%;
    display: inline-block;
    height: 3rem;
    flex: 0 0 3rem;
    overflow: hidden;
    text-align: center;
    line-height: 3rem;
    width: 3rem;
}

.stylesch-circle__sm {
    border-radius: 50%;
    display: inline-block;
    height: 4.375rem;
    flex: 0 0 4.375rem;
    overflow: hidden;
    text-align: center;
    line-height: 4.375rem;
    width: 4.375rem;
}

.stylesch-circle__md {
    border-radius: 50%;
    display: inline-block;
    height: 6.25rem;
    flex: 0 0 6.25rem;
    overflow: hidden;
    text-align: center;
    line-height: 6.25rem;
    width: 6.25rem;
}

.stylesch-circle__lg {
    border-radius: 50%;
    display: inline-block;
    height: 8.125rem;
    flex: 0 0 8.125rem;
    overflow: hidden;
    text-align: center;
    line-height: 8.125rem;
    width: 8.125rem;
}

.stylesch-circle__xl {
    border-radius: 50%;
    display: inline-block;
    height: 10rem;
    flex: 0 0 10rem;
    overflow: hidden;
    text-align: center;
    line-height: 10rem;
    width: 10rem;
}

.stylesch-circle__xxl {
    border-radius: 50%;
    display: inline-block;
    height: 15.625rem;
    flex: 0 0 15.625rem;
    overflow: hidden;
    text-align: center;
    line-height: 15.625rem;
    width: 15.625rem;
}

/* --Description */

dl dt {
    color: #00c3ff;
}

dl dd {
    margin-bottom: 1rem;
}

/*-------------------------------------------
  -- Forms
-------------------------------------------*/

form.stylesch-labels-inside-input .form-group,
.stylesch-form.stylesch-labels-inside-input .form-group {
    position: relative;
}

form.stylesch-labels-inside-input .form-group label,
.stylesch-form.stylesch-labels-inside-input .form-group label {
    line-height: 2.625rem;
    left: .8125rem;
    opacity: .4;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: .3s ease;
}

form.stylesch-labels-inside-input .form-group label.focused,
.stylesch-form.stylesch-labels-inside-input .form-group label.focused {
    top: -2.1875rem;
    left: 0;
    font-size: .75rem;
    opacity: 1;
}

.form-control {
    background-color: rgba(255, 255, 255, .1);
    border: 0;
    box-shadow: none;
    border-radius: 0;
    color: #fff;
    padding: .5625rem .75rem;
    transition: .3s ease;
}

.form-control:hover {
    background-color: rgba(255, 255, 255, .2);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, .3);
    box-shadow: none;
    color: #fff;
}

.form-group {
    margin-bottom: 1.5625rem;
}

.form-group label {
    font-size: .8125rem;
}

.stylesch-gallery {
    position: relative;
}

.stylesch-gallery .stylesch-gallery__item {
    border-radius: 0;
    background-color: transparent;
}

.stylesch-gallery .stylesch-gallery__item .stylesch-gallery__item-description {
    background-color: rgba(0, 0, 0, .8);
    backface-visibility: hidden;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 101%;
    height: 101%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    transform: scale(1.2);
    transition: .6s ease;
    opacity: 0;
}

.stylesch-gallery .stylesch-gallery__item:hover .stylesch-gallery__item-description {
    transform: scale(1);
    opacity: 1;
}

.stylesch-gallery .stylesch-gallery__item:hover img {
    transform: scale(1.3) rotate(-9deg);
}

.stylesch-gallery .stylesch-gallery__item h4 {
    margin-bottom: 0;
}

.stylesch-gallery .stylesch-gallery__item img {
    border-radius: 0;
    transform: scale(1) rotate(0deg);
    backface-visibility: hidden;
    transition: .8s ease;
}

/*-------------------------------------------
  -- HR
-------------------------------------------*/

.stylesch-hr-light {
    border-color: rgba(255, 255, 255, .2);
}

/*-------------------------------------------
  -- Inputs
-------------------------------------------*/

.stylesch-input__static {
    pointer-events: none;
    box-shadow: none;
}

.stylesch-inputs__transparent input, .stylesch-inputs__transparent textarea {
    background-color: transparent;
    color: #fff;
}

.stylesch-inputs__transparent input:active, .stylesch-inputs__transparent input:focus,
.stylesch-inputs__transparent textarea:active, .stylesch-inputs__transparent textarea:focus {
    background-color: transparent;
    color: #fff;
}

.stylesch-item {
    height: 100%;
    padding-bottom: 4rem;
}

.stylesch-item:hover .icon, .stylesch-item:hover h4, .stylesch-item:hover p {
    transform: translateY(-0.625rem);
}

.stylesch-item:hover .stylesch-link-arrow-effect {
    color: #fff;
}

.stylesch-item:hover .stylesch-link-arrow-effect:before {
    animation: stylesch-link-arrow-effect-animation-in;
    animation-fill-mode: forwards;
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(.6, .01, 0, 1);
}

.stylesch-item:hover .stylesch-link-arrow-effect span {
    transform: translateX(0%);
}

.stylesch-item .icon, .stylesch-item h4, .stylesch-item p {
    transition: .3s ease;
    transform: translateY(0);
}

.stylesch-item h4 {
    transition-delay: .05s;
}

.stylesch-item p {
    transition-delay: .1s;
}

.stylesch-item-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stylesch-item-header {
    margin-bottom: 1.5rem;
    position: relative;
}

.stylesch-item-header .icon {
    position: relative;
    display: inline-block;
}

.stylesch-item-header .icon .step {
    background-color: #00c3ff;
    top: 0;
    box-shadow: .125rem .1875rem .9375rem rgba(0, 0, 0, .15);
    border-radius: 50%;
    color: #fff;
    font-weight: 600;
    line-height: 2rem;
    right: 0;
    height: 2rem;
    position: absolute;
    text-align: center;
    width: 2rem;
}

.stylesch-item-body {
    flex: 1 1 auto;
}

.stylesch-item-footer {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/*-------------------------------------------
  -- List
-------------------------------------------*/

ul.stylesch-list-colored-bullets li:before {
    content: "•";
    color: #00c3ff;
    vertical-align: middle;
    font-size: 1.75rem;
    padding-right: .75rem;
}

/*-------------------------------------------
  -- Loading Screen
-------------------------------------------*/

body.has-loading-screen:before {
    background-color: #000;
    content: "";
    height: 100%;
    right: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    transition: 1.5s ease;
    opacity: 1;
}

body.has-loading-screen:after {
    content: url("../../assets/img/loading.svg");
    height: 2.5rem;
    width: 2.5rem;
    position: fixed;
    margin: auto;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 1;
    transform: scale(1);
    transition: 1.5s ease;
    top: 0;
    z-index: 10000;
}

body.has-loading-screen.loading-done:before {
    width: 0;
}

body.has-loading-screen.loading-done:after {
    transform: scale(0);
    opacity: 0;
}

/*-------------------------------------------
  -- Map
-------------------------------------------*/

.map {
    min-height: 12.5rem;
}

.map a[href^="http://maps.google.com/maps"] {
    display: none !important;
}

.map a[href^="https://maps.google.com/maps"] {
    display: none !important;
}

.map .gmnoprint a, .map .gmnoprint span, .map .gm-style-cc {
    display: none;
}

/*-------------------------------------------
  -- Hero
-------------------------------------------*/

#stylesch-hero {
    display: flex;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#stylesch-hero .stylesch-background-image {
    background-position: top center;
}

#stylesch-hero.stylesch-animate-hero-items h1:not(.stylesch-bubble-border) {
    opacity: 0;
    transition: .5s cubic-bezier(.03, .18, .05, 1.01);
    transition-duration: 1s;
    transform: translateY(1.25rem);
}

#stylesch-hero.stylesch-animate-hero-items .stylesch-background {
    opacity: 0;
    transition: 1s ease;
    transition-delay: 1.3s;
}

#stylesch-hero.stylesch-animate-hero-items .stylesch-social-icons {
    opacity: 0;
    transition: .3s ease;
    transform: translateX(.3125rem) rotate(.002deg);
    transition-delay: 1.2s;
    transition-duration: 1s;
}

body.loading-done #stylesch-hero.stylesch-animate-hero-items .stylesch-background {
    opacity: 1;
}

body.loading-done #stylesch-hero.stylesch-animate-hero-items h1:not(.stylesch-bubble-border) {
    opacity: 1;
    transform: translateY(0);
}

body.loading-done #stylesch-hero.stylesch-animate-hero-items .stylesch-social-icons {
    opacity: 1;
    transform: translateX(0) rotate(.002deg);
}

/*-------------------------------------------
  -- Navbar
-------------------------------------------*/

.navbar {
    font-size: .875rem;
    font-weight: 500;
    transition: .3s ease;
    text-transform: uppercase;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar .stylesch-background {
    transition: 1s ease;
}

.nav-link.active:after {
    opacity: 1;
}

.nav-link {
    position: relative;
}

.nav-link:after {
    border-top: .1875rem solid #00c3ff;
    content: "";
    height: .1875rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: 1s ease;
}

.navbar-toggler {
    margin-left: auto;
    margin-top: .5rem;
    margin-bottom: .5rem;
}

[class*="navbar-expand"] .navbar-nav .nav-link {
    padding-top: .5rem;
    padding-bottom: .5rem;
    border-bottom: .0625rem solid rgba(0, 0, 0, .1);
}

/*XL*/

/*LG*/

/*MD*/

/*SM*/

/*-------------------------------------------
  -- Page
-------------------------------------------*/

.stylesch-page-wrapper {
    overflow: hidden;
}

/*-------------------------------------------
  -- Partners
-------------------------------------------*/

.stylesch-partners a {
    display: block;
    padding: .625rem .3125rem;
}

/*-------------------------------------------
  -- Plugins
-------------------------------------------*/

.tv-site-widget {
    border: none !important;
}

iframe div {
    border: none;
}

/*-------------------------------------------
  -- Progress
-------------------------------------------*/

.progress {
    background-color: transparent;
    border-radius: 0;
    height: 3rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: visible;
}

.progress .stylesch-progress-value {
    border: .125rem solid #fff;
    bottom: 0;
    padding: .125rem .375rem;
    position: absolute;
    left: 0%;
    transform: translateX(-1rem);
}

.progress .stylesch-progress-value:after {
    border-style: solid;
    border-width: .3125rem .3125rem 0 0;
    border-color: #fff transparent transparent transparent;
    bottom: -0.4375rem;
    content: "";
    left: .375rem;
    position: absolute;
}

.progress .progress-bar {
    background-color: #00c3ff;
    bottom: 0;
    height: .1875rem;
    position: absolute;
    width: 0%;
}

.progress .progress-bar, .progress .stylesch-progress-value {
    transition: 1s ease;
}

/*-------------------------------------------
  -- Promo Numbers
-------------------------------------------*/

.stylesch-promo-number {
    margin-top: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.stylesch-promo-number figure {
    color: #00c3ff;
    font-weight: 400;
}

/*-------------------------------------------
  -- Select
-------------------------------------------*/

select.form-control {
    box-shadow: .125rem .1875rem .9375rem rgba(0, 0, 0, .15);
    border-radius: .25rem;
    cursor: pointer;
    height: 2.8125rem !important;
    margin-top: -0.125rem;
    padding: .5rem;
    -webkit-appearance: none;
       -moz-appearance: none;
    text-indent: .0625rem;
    text-overflow: '';
}

select.form-control:focus, select.form-control:hover {
    box-shadow: .375rem .3125rem 1.5625rem rgba(0, 0, 0, .2);
}

select::-ms-expand {
    display: none;
}

.select-wrapper {
    position: relative;
}

.select-wrapper:before {
    position: absolute;
    display: inline-block;
    font-weight: 900;
    text-rendering: auto;
    top: 0;
    margin: auto;
    bottom: 0;
    right: .9375rem;
    height: 1.875rem;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome\ 5 Free";
    content: "\f0dd";
}

/*-------------------------------------------
  -- Slider
-------------------------------------------*/

.stylesch-slider {
    height: 100% !important;
}

.stylesch-slider div {
    height: 100% !important;
}

/*-------------------------------------------
  -- Tabs
-------------------------------------------*/

.nav-tabs {
    border-bottom: none;
}

.nav-tabs h4 {
    font-weight: normal;
    margin-bottom: 0;
}

.nav-tabs .nav-link {
    background-color: transparent;
    border: none;
    border-bottom: .1875rem solid transparent;
    margin-left: .9375rem;
    margin-right: .9375rem;
    padding-right: 0;
    padding-left: 0;
    color: inherit;
    opacity: .5;
}

.nav-tabs .nav-link.active {
    color: #191919;
    background-color: transparent;
    border-bottom: .1875rem solid #00c3ff;
    opacity: 1;
}

/***********************************************************************************************************************
D. Plugins Styles
***********************************************************************************************************************/

/*-------------------------------------------
  -- Magnific Popup
-------------------------------------------*/

/* overlay at start */

.mfp-fade.mfp-bg {
    opacity: 0;
    background-color: #000;
    -webkit-transition: all .15s ease-out;
       -moz-transition: all .15s ease-out;
            transition: all .15s ease-out;
}

/* overlay animate in */

.mfp-fade.mfp-bg.mfp-ready {
    opacity: .8;
}

/* overlay animate out */

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

/* content at start */

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all .15s ease-out;
       -moz-transition: all .15s ease-out;
            transition: all .15s ease-out;
}

/* content animate it */

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

/* content animate out */

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

/*-------------------------------------------
  -- Owl Carousel
-------------------------------------------*/

.owl-carousel .owl-stage, .owl-carousel .owl-stage-outer,
.owl-carousel .owl-item {
    height: 100%;
}

.owl-carousel .owl-dots {
    text-align: center;
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    padding: .3125rem;
}

.owl-carousel .owl-dots .owl-dot.active span {
    background-color: #00c3ff;
    opacity: 1;
}

.owl-carousel .owl-dots .owl-dot:hover span {
    background-color: #fff;
    opacity: .7;
}

.owl-carousel .owl-dots .owl-dot span {
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    height: .625rem;
    opacity: .2;
    transition: .3s ease;
    width: .625rem;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: -1.25rem;
    bottom: 0;
    height: 0;
    margin: auto;
    width: 100%;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
    background-color: rgba(255, 255, 255, .6);
    border-radius: 50%;
    box-shadow: 0 .125rem .3125rem rgba(0, 0, 0, .1);
    color: #fff;
    display: inline-block;
    height: 2.5rem;
    position: absolute;
    text-align: center;
    transition: .3s ease;
    width: 2.5rem;
}

.owl-carousel .owl-nav .owl-prev:after, .owl-carousel .owl-nav .owl-next:after {
    font-family: "Font Awesome\ 5 Free";
    font-weight: 900;
    font-size: 1.375rem;
    line-height: 2.5rem;
    -webkit-font-smoothing: antialiased;
}

.owl-carousel .owl-nav .owl-prev:hover, .owl-carousel .owl-nav .owl-next:hover {
    background-color: rgba(25, 25, 25, .8);
}

.owl-carousel .owl-nav .owl-next {
    right: .3125rem;
}

.owl-carousel .owl-nav .owl-next:after {
    content: "\f105";
    margin-left: .1875rem;
}

.owl-carousel .owl-nav .owl-prev {
    left: .3125rem;
}

.owl-carousel .owl-nav .owl-prev:after {
    content: "\f104";
    margin-right: .0625rem;
}

/***********************************************************************************************************************
E. Template Specific Elements
***********************************************************************************************************************/

.stylesch-bubble-border {
    display: inline-block;
    position: relative;
    transition: .6s ease;
}

.stylesch-bubble-border i {
    background-color: #fff;
    position: absolute;
    transition: .2s ease-in;
}

.stylesch-bubble-border i:nth-child(1) {
    top: 0;
    left: 0;
    height: .1875rem;
    width: 0%;
}

.stylesch-bubble-border i:nth-child(2) {
    height: 0%;
    right: 0;
    top: 0;
    width: .1875rem;
    transition-delay: .2s;
}

.stylesch-bubble-border i:nth-child(3) {
    bottom: 0;
    right: 0;
    height: .1875rem;
    width: 0%;
    transition-delay: .4s;
}

.stylesch-bubble-border i:nth-child(4) {
    height: 0%;
    left: 0;
    bottom: 0;
    width: .1875rem;
    transition-delay: .6s;
}

.stylesch-bubble-border i:nth-child(5) {
    bottom: 0;
    opacity: 0;
    transition-delay: .6s;
    left: 2rem;
}

.stylesch-bubble-border i:nth-child(5):after {
    border-style: solid;
    border-width: .625rem .625rem 0 0;
    border-color: #fff transparent transparent transparent;
    content: "";
    position: absolute;
}

.stylesch-bubble-border .stylesch-title-rotate {
    left: 0;
    /*padding: 24px 36px;*/
    position: absolute;
    top: 0;
}

.stylesch-bubble-border .stylesch-title-rotate span {
    padding: 1.5rem 2.25rem;
    display: inline-block;
    position: absolute;
    transition: .8s ease;
    transition-delay: .3s;
    transform: translateY(-0.3125rem) rotate(.02deg);
    opacity: 0;
    white-space: nowrap;
}

.stylesch-bubble-border .stylesch-title-rotate span.active {
    opacity: 0;
    transform: translateY(-0.3125rem) rotate(.02deg);
}

.stylesch-bubble-border.in .stylesch-title-rotate span.active {
    opacity: 1;
    transform: translateY(0) rotate(.02deg);
}

.stylesch-bubble-border.in .stylesch-title-rotate span.out {
    opacity: 0;
    transform: translateY(.3125rem) rotate(.02deg);
}

.stylesch-bubble-border.in i:nth-child(1), .stylesch-bubble-border.in i:nth-child(3) {
    width: 100%;
}

.stylesch-bubble-border.in i:nth-child(2), .stylesch-bubble-border.in i:nth-child(4) {
    height: 100%;
}

.stylesch-bubble-border.in i:nth-child(5) {
    opacity: 1;
}

#stylesch-content .stylesch-bubble-border, #stylesch-footer .stylesch-bubble-border {
    padding: 1.5rem 2.25rem;
}

/*-------------------------------------------
  -- Centered Slider
-------------------------------------------*/

.stylesch-carousel-centered .slide {
    margin-bottom: 1rem;
    margin-top: 1rem;
    padding: 1rem;
}

.stylesch-carousel-centered .owl-item {
    perspective: 1000;
}

.stylesch-carousel-centered .owl-item .slide {
    opacity: .5;
    transition: .3s ease;
    transform: scale(.95);
}

.stylesch-carousel-centered .owl-item.active.center .slide {
    opacity: 1;
    transform: scale(1);
}

.stylesch-carousel-centered .owl-nav .owl-prev,
.stylesch-carousel-centered .owl-nav .owl-next {
    height: 3.75rem;
    width: 3.75rem;
}

.stylesch-carousel-centered .owl-nav .owl-prev:after,
.stylesch-carousel-centered .owl-nav .owl-next:after {
    font-size: 1.375rem;
    line-height: 3.75rem;
}

.stylesch-carousel-centered .owl-nav .owl-prev:hover,
.stylesch-carousel-centered .owl-nav .owl-next:hover {
    background-color: rgb(25, 25, 25);
}

.stylesch-carousel-centered .owl-nav .owl-next {
    right: 1.25rem;
}

.stylesch-carousel-centered .owl-nav .owl-prev {
    left: 1.25rem;
}

/*-------------------------------------------
  -- Hero Form Floated
-------------------------------------------*/

.floated {
    position: relative;
    width: 100%;
    z-index: 1;
    bottom: -1.875rem;
}

.floated form {
    position: relative;
    padding: 1.875rem 3.75rem;
}

/*-------------------------------------------
  -- Price Box
-------------------------------------------*/

.stylesch-price-box__promoted {
    box-shadow: .375rem .3125rem 1.5625rem rgba(0, 0, 0, .2);
    margin-top: -1.25rem;
    margin-bottom: .625rem;
    z-index: 2;
}

.stylesch-price-box__promoted .stylesch-title {
    transform: scale(1.2);
}

/*-------------------------------------------
  -- Time Line
-------------------------------------------*/

.stylesch-time-line__horizontal {
    padding-bottom: .625rem;
    padding-top: .625rem;
    position: relative;
    /* timeline line */
}

.stylesch-time-line__horizontal ul {
    padding-left: 1.875rem;
    list-style: none;
    position: relative;
}

.stylesch-time-line__horizontal:after {
    background-color: #474747;
    content: "";
    bottom: 6.875rem;
    height: .1875rem;
    left: 0;
    position: absolute;
    width: 100%;
}

.stylesch-time-line__horizontal .stylesch-time-line__item {
    flex: 0 0 auto;
    margin-right: 1.875rem;
    position: relative;
    width: 18.75rem;
}

.stylesch-time-line__horizontal .stylesch-time-line__item .stylesch-box {
    position: relative;
    /* dot */
}

.stylesch-time-line__horizontal .stylesch-time-line__item .stylesch-box:before {
    background-color: #474747;
    bottom: -4.375rem;
    border-radius: 100%;
    content: "";
    left: 1.6875rem;
    height: .75rem;
    position: absolute;
    width: .75rem;
}

.stylesch-time-line__horizontal .stylesch-time-line__item .stylesch-box {
    /*triangle*/
}

.stylesch-time-line__horizontal .stylesch-time-line__item .stylesch-box:after {
    border-color: #fff transparent transparent transparent;
    border-style: solid;
    border-width: .5rem .5rem 0 .5rem;
    bottom: -0.4375rem;
    content: "";
    left: 1.5625rem;
    height: 0;
    position: absolute;
    width: 0;
}

.stylesch-time-line__horizontal .stylesch-time-line__item.stylesch-time-line__milestone {
    width: 4.375rem;
}

.stylesch-time-line__horizontal .stylesch-time-line__item.stylesch-time-line__milestone .stylesch-box {
    background-color: #00c3ff;
    color: #fff;
}

.stylesch-time-line__horizontal .stylesch-time-line__item.stylesch-time-line__milestone .stylesch-box:after {
    border-color: #00c3ff transparent transparent transparent;
}

.stylesch-time-line__horizontal .stylesch-time-line__item.stylesch-time-line__milestone h5 {
    writing-mode: vertical-lr;
    margin: 0;
}

.stylesch-time-line__horizontal .stylesch-time-line__item figure {
    margin-left: 1.875rem;
    margin-top: 4.6875rem;
}

.stylesch-time-line__horizontal .stylesch-time-line__item figure small {
    text-transform: uppercase;
    opacity: .4;
}

.stylesch-time-line__horizontal .stylesch-time-line__item figure small,
.stylesch-time-line__horizontal .stylesch-time-line__item figure h6 {
    font-weight: 600;
}

.stylesch-time-line__horizontal .owl-stage-outer {
    padding: 1rem 1rem 0 1rem;
}

.stylesch-time-line__horizontal .owl-stage {
    align-items: flex-end;
    display: flex;
}

.stylesch-time-line__horizontal .stylesch-sly-frame.stylesch-loaded > ul {
    align-items: flex-end;
    display: flex;
}

/*-------------------------------------------
  -- SVG Shapes
-------------------------------------------*/

.stylesch-svg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top: 0;
    z-index: -1;
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    margin: auto;
}

.stylesch-story:hover {
    color: #fff;
}

.stylesch-story:hover p {
    color: #fff;
}

.stylesch-story:hover .stylesch-background {
    background-color: #000 !important;
}

.stylesch-story:hover .stylesch-background-image {
    opacity: .4 !important;
}

.stylesch-story {
    margin-bottom: 2rem;
    padding: 14rem 2rem 2rem 2rem;
    position: relative;
}

.stylesch-story .stylesch-background, .stylesch-story .stylesch-background-image {
    transition: .3s ease;
}

.stylesch-story figure {
    background-color: #fff;
    color: rgba(25, 25, 25, .2);
    font-weight: 500;
    position: absolute;
    top: -0.375rem;
    left: 3rem;
    padding: 1rem;
    transform: rotate(-90deg);
    transform-origin: bottom;
}

/*-------------------------------------------
  -- Other
-------------------------------------------*/

/* Footer push up */

#stylesch-footer .stylesch-box {
    margin-top: -3.125rem;
}

.stylesch-tabs-presentation .tab-pane img {
    opacity: 0;
    transition: .3s ease;
    transform: translateY(1.25rem);
}

.stylesch-tabs-presentation .tab-pane.show.active img {
    opacity: 1;
    transform: translateY(0);
}

/* Hero navigation arrows */

#stylesch-hero .owl-prev, #stylesch-hero .owl-next {
    background-color: transparent;
    border: .125rem solid rgba(255, 255, 255, .8);
}

#stylesch-hero .owl-prev:after, #stylesch-hero .owl-next:after {
    line-height: 2.25rem;
}

/* Hero slider height */

.stylesch-hero-slider {
    height: 100% !important;
}

.stylesch-hero-slider div {
    height: 100% !important;
}

@media (min-width: 36rem) and (max-width: 47.9375rem) {
    html {
        font-size: 85%;
    }

    h1, .stylesch-h1 {
        font-size: 2.5rem;
    }

    h2, .stylesch-h2 {
        font-size: 1.625rem;
    }

    h3, .stylesch-h3 {
        font-size: 1.25rem;
    }

    .stylesch-column-count-sm-1 {
        column-count: 1;
    }

    .stylesch-column-count-sm-2 {
        column-count: 2;
    }

    .stylesch-column-count-sm-3 {
        column-count: 3;
    }

    .stylesch-column-count-sm-4 {
        column-count: 4;
    }

    .stylesch-promo-number figure {
        font-size: 2.375rem;
    }
}

@media (min-width: 48rem) and (max-width: 61.9375rem) {
    html {
        font-size: 90%;
    }

    h1, .stylesch-h1 {
        font-size: 3rem;
    }

    h2, .stylesch-h2 {
        font-size: 1.875rem;
    }

    h3, .stylesch-h3 {
        font-size: 1.375rem;
    }

    .stylesch-column-count-md-1 {
        column-count: 1;
    }

    .stylesch-column-count-md-2 {
        column-count: 2;
    }

    .stylesch-column-count-md-3 {
        column-count: 3;
    }

    .stylesch-column-count-md-4 {
        column-count: 4;
    }

    .stylesch-promo-number figure {
        font-size: 2.5rem;
    }
}

@media (min-width: 62rem) and (max-width: 74.9375rem) {
    html {
        font-size: 95%;
    }

    h1, .stylesch-h1 {
        font-size: 3.125rem;
    }

    h2, .stylesch-h2 {
        font-size: 2rem;
    }

    h3, .stylesch-h3 {
        font-size: 1.375rem;
    }

    .stylesch-column-count-lg-1 {
        column-count: 1;
    }

    .stylesch-column-count-lg-2 {
        column-count: 2;
    }

    .stylesch-column-count-lg-3 {
        column-count: 3;
    }

    .stylesch-column-count-lg-4 {
        column-count: 4;
    }

    .stylesch-block {
        padding-bottom: 6.25rem;
        padding-top: 6.25rem;
    }

    .stylesch-card__image {
        height: 12.5rem;
    }

    .stylesch-promo-number figure {
        font-size: 2.75rem;
    }
}

@media (min-width: 75rem) {
    html {
        font-size: 100%;
    }

    h1, .stylesch-h1 {
        font-size: 3.5rem;
    }

    h2, .stylesch-h2 {
        font-size: 2.25rem;
    }

    h3, .stylesch-h3 {
        font-size: 1.875rem;
    }

    .stylesch-column-count-xl-1 {
        column-count: 1;
    }

    .stylesch-column-count-xl-2 {
        column-count: 2;
    }

    .stylesch-column-count-xl-3 {
        column-count: 3;
    }

    .stylesch-column-count-xl-4 {
        column-count: 4;
    }

    .stylesch-block {
        padding-bottom: 8.125rem;
        padding-top: 8.125rem;
    }

    .stylesch-card__image {
        height: 15.625rem;
    }

    .navbar.navbar-expand-xl .navbar-nav {
        align-items: center;
    }

    .navbar.navbar-expand-xl .navbar-nav .nav-link {
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-bottom: none;
    }

    .navbar.navbar-expand-xl .stylesch-background {
        opacity: 0;
    }

    .stylesch-promo-number figure {
        font-size: 3.75rem;
    }

    .stylesch-carousel-centered .owl-nav .owl-next {
        right: 5rem;
    }

    .stylesch-carousel-centered .owl-nav .owl-prev {
        left: 5rem;
    }

    .floated form {
        padding: 2.5rem 5rem;
    }
}

@media (max-width: 35.9375rem) {
    h1, .stylesch-h1 {
        margin-bottom: 1.25rem;
    }

    [class*="stylesch-column-count-"] {
        column-count: 1;
    }

    .stylesch-xs-text-center {
        text-align: center !important;
    }

    .stylesch-title {
        margin-bottom: 1.875rem;
    }

    .stylesch-promo-number figure {
        font-size: 2.25rem;
    }
}

@media (min-width: 36rem) and (max-width: 61.9375rem) {
    h1, .stylesch-h1 {
        margin-bottom: 1.875rem;
    }

    .stylesch-title {
        margin-bottom: 3.125rem;
    }

    .stylesch-block-inside {
        padding: 2.5rem;
    }
}

@media (min-width: 62rem) {
    h1, .stylesch-h1 {
        margin-bottom: 2.5rem;
    }

    .stylesch-title {
        margin-bottom: 5rem;
    }

    .stylesch-block-inside {
        padding: 3.75rem;
    }

    .navbar.navbar-expand-lg .navbar-nav {
        align-items: center;
    }

    .navbar.navbar-expand-lg .navbar-nav .nav-link {
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-bottom: none;
    }

    .navbar.navbar-expand-lg .stylesch-background {
        opacity: 0;
    }

    .floated {
        position: absolute;
    }
}

@media (max-width: 47.9375rem) {
    h4, .stylesch-h4 {
        font-size: 1.125rem;
    }
}

@media (min-width: 48rem) {
    h4, .stylesch-h4 {
        font-size: 1.5rem;
    }

    .navbar.navbar-expand-md .navbar-nav {
        align-items: center;
    }

    .navbar.navbar-expand-md .navbar-nav .nav-link {
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-bottom: none;
    }

    .navbar.navbar-expand-md .stylesch-background {
        opacity: 0;
    }
}

@media (max-width: 61.9375rem) {
    .stylesch-card__image {
        height: 15.625rem;
    }
}

@media (min-width: 36rem) {
    .navbar.navbar-expand-sm .navbar-nav {
        align-items: center;
    }

    .navbar.navbar-expand-sm .navbar-nav .nav-link {
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-bottom: none;
    }

    .navbar.navbar-expand-sm .stylesch-background {
        opacity: 0;
    }

    .stylesch-carousel-centered .owl-nav .owl-next {
        right: 2.5rem;
    }

    .stylesch-carousel-centered .owl-nav .owl-prev {
        left: 2.5rem;
    }
}

.small-btn-1{padding: 5px 10px; background: #00c3ff ; border: 0px; margin-left: 10px; color: #fff}
.small-btn-2{padding: 5px 10px; background: #000 ; border: 0px; margin-left: 10px; color: #fff}

.small-btn-1:hover, .small-btn-2:hover{color: #fff;text-decoration: underline}
.login-1 h2{font-size: 20px; border-bottom: 1px solid #ccc; position: relative;padding: 0px 0px 10px 0px;}
.login-1 .close{position: absolute; top: 10px; right: 10px; background: #00c3ff;padding: 4px 8px; color: #000}

.text-field-1{ width: 100%;padding: 10px 10px; border: 1px solid #ccc; margin: 0px 0px 20px 0px}







 .innerpage-main{padding: 100px 0px 100px 0px; min-height: 90vh;background: #f1f1f1}
.bag-price-card-main{display: flex; width: 100%; padding: 10px 0px;}
.bag-price-card-1{ flex: 1; }
.bag-price-card-2{ width: 200px; text-align: right}
.line-2{ height: 1px; background: #d5d5d5; margin: 20px 0px;}
.add-to-bag-card-main h3 {
    font-size: 24px;
    color: #000;
    letter-spacing: 0px;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.add-to-bag-card-main h2 {
    font-size: 26px;
    color: #000;
    letter-spacing: 1px;
    
    margin: 0;
    padding: 0;
    font-family: 'Share', cursive; font-weight: 700
}
.add-to-bag-card-main h4 {
    font-size: 18px;
    color: #000;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.add-to-bcm-1-4{ display: flex; width: 100%; justify-content: space-between; padding: 10px 0px;}
.add-to-bcm-1-4-1{ width: 70px;}
.add-to-bcm-1-4 img{ height: 24px;width: auto;}
.add-to-bcm-1-4-2{flex: 1}
.add-to-bcm-1-4-3{text-align: right;width: 200px; display: none;}
.add-to-bcm-1-4-4{text-align: right;width: 200px; display: none;}



.add-to-bcm-1-5{ display: flex; width: 100%; justify-content: space-between; padding: 10px 0px;}
.add-to-bcm-1-5-1{ width: 70px;}
.add-to-bcm-1-5 img{ height: 24px;width: auto;}
.add-to-bcm-1-5-2{flex: 1}
.add-to-bcm-1-5-3{text-align: right;width: 200px; display: none;}



.c-email-sec-main { width: 100%; display: flex; max-width: 500px; margin: 0 auto; background: #d9d9d9; }
.c-es-1 { flex: 1 }
.c-button-1 { font-family: 'Share Tech', sans-serif; padding: 4px 10px; border: 0px; background: #000; color: #fff; border: 0px; font-size: 18px; cursor: pointer; background-image: url(../images/arrow.svg); background-repeat: no-repeat; background-position: center center;height: 100%; width: 40px; border-bottom: 1px solid #cbcbcb;}
.c-es-1 input { height: 100%; border: 0px solid #cbcbcb;  border-bottom: 1px solid #000; padding: 3px 10px; box-sizing: border-box; width: 100%; background: #f4f4f4; font-family: 'Share Tech', sans-serif; font-size: 14px; outline: none; }


.n-button-2 { font-family: 'Share Tech', sans-serif; padding: 4px 10px; border: 0px;   color: #fff; border: 0px; font-size: 18px; cursor: pointer; background-image: url(../images/right-arrow-2.svg); background-repeat: no-repeat; background-position: center center;height: 100%; width: 40px; background-color: #f4f4f4; border-bottom: 1px solid #000;}
.d-block{display: inline-block;}
.m-d-n{ display:  inline-block;}

.login-sec-main{ margin: 30px 0px}


hr.line-1{ height: 1px; background: #ccc; border: 0px; margin: 0px; padding: 0px;}

.pd-flx-m-main{display: flex; width: 100%; flex-wrap: wrap;}
.pd-flx-m-1{ display: flex; width: 100%}
.pd-flx-m-1-1{ flex: 1;}
.pd-flx-m-1-2 { width: 50px; text-align: right; display: none;}
.pd-flx-m-1-2 img{ width: 20px; height: auto;}


.pd-flx-m-2{ display: flex; width: 100%; flex-wrap: wrap;}
.pd-flx-m-2-sub{display: flex; width: 100%}
.pd-flx-m-2-sub-1{flex: 1;display: flex; width: 100%;}
.pd-flx-m-2-sub-2{width: 170px; text-align: right; display: none; }

.pd-flx-m-2-1{ flex: 1;}
.pd-flx-m-2-2 { width: 250px; text-align: right;}
.pd-flx-m-2-2 img{ width: 100%; height: auto;}

.pd-flx-m-3{ display: flex; width: 100%; flex-wrap: wrap; padding-right: 50%; margin: 20px 0px;}
.pd-flx-m-3 p{ font-size: 18px; margin-bottom: 40px;}


.pd-flx-m-4{ display: flex; width: 100%; flex-wrap: wrap; justify-content: space-between; padding: 20px 0px 20px 0px; }
.pd-flx-m-4-1{ width: 100%;padding: 10px 0px 40px 0px}
.pd-flx-m-4-2{flex: 1;}
.pd-flx-m-4-3{width: 100px; text-align: right}


.log-reg-buttons{ text-align: center;}
.log-reg-btn{ display: inline-block; margin: 0px 3vw -2px 3vw}
.log-reg-btn a{ padding: 7px 10px; font-size: 24px; color: rgba(0,0,0,0.5); text-decoration: none;display: inline-block;}
.log-reg-btn a:hover{ color: rgba(0,0,0,0.99)}
.log-reg-btn a.select-2{ color: rgba(0,0,0,0.99); border-bottom: 2px solid #000;}

.login-wrapper{ width: 96%; max-width: 560px;  margin: 20px auto;}

.lr-card-1{width: 100%;  margin: 28px 0px 10px 0px; display: inline-block;}

.lr-card-2{width: 100%;  margin: 28px 0px 10px 0px; display: flex;;}
.lr-card-3{width: 100%;  margin: 28px 0px 10px 0px; display: flex; flex-wrap: wrap;;}
.lr-card-3 h1{ font-size:40px; letter-spacing: 0px; padding: 10px 0px;margin: 0px; width: 100% ; color: #000; text-align: left}
.lr-card-3 p{ font-size:20px; letter-spacing: 0px; padding: 10px 0px;margin: 0px; width: 100% ; color:rgba(0,0,0,0.5); text-align: left}

.input-f-1{ border:0px; outline: none; font-size: 20px; border-bottom: 1px solid #000; width: 100%;padding: 10px 10px; position: relative;}
.w-100{width: 100% !important}
.email{ }
.field-icon {
  float: right;
  margin-left: -25px;
  margin-top: -35px;
  position: relative;
  z-index: 2;
}
.select-f-1{ border:0px; outline: none; font-size: 20px; border-bottom: 1px solid #000; width: 100% !important; padding: 10px 10px; position: relative;}
.fa-eye{ background-image: url("../img/eye.svg"); border: 0px !important; color: transparent !important }
.fa-eye-slash{ background-image: url("../img/right-arrow-2.svg")}
.toggle-password{ width: 30px; height: 30px;background-repeat: no-repeat; background-position: center center;background-size: 80% 80%;}

.social-sec{margin: 0px 0px}
.social-txt{ position: relative; margin: 20px 0px 10px 0px; text-align: center;}
.social-txt span{ background: #fff; padding: 10px 20px; position: relative; z-index: 999; 
    display: inline-block;margin: 0 auto; color: rgba(0,0,0,0.5)}

.social-txt-2{ background: #fff; padding: 10px 20px; text-align: center; position: relative; z-index: 999;  display: none;margin: 0 auto; color: rgba(0,0,0,0.5)}

.social-txt-2 a{ color: #000; text-decoration: underline;}

.line-3{ height: 1px;background: #000; width: 100%; top: 50%;    position: absolute;}
.social-btns-main{ text-align: center;margin: 10px 0px}
.social-btns-main a{ margin: 0px 20px}
.social-btns-main a img{height: 20px;width: auto;}
.email-1{ background-repeat: no-repeat; background-position: left 10px center; padding-left: 50px}
.password-1{ background-repeat: no-repeat; background-position: left 10px center; padding-left: 50px}
.link-under-line {
    border-bottom: 2px solid rgba(0,0,0,0.5);
    padding: 2px 0px;
    display: inline-block;
    font-size: 16px;
    color:rgba(0,0,0,0.5)
}

.link-under-line-2 {
    border-bottom: 2px solid rgba(0,0,0,0.8);
    padding: 2px 0px;
    display: inline-block;
    font-size:inherit;
    color:inherit;
    
}

.input-f-2{ border:0px; outline: none; font-size: 20px; border-bottom: 1px solid #000; width: 100%;padding: 10px 10px; position: relative;color: #666 !important}

.input-f-2::placeholder{ color: #666 !important}

.lr-card-2-1{flex: 1;font-size: 16px; color:rgba(0,0,0,0.5)}
.lr-card-2-1 input{ margin-right: 6px;vertical-align: baseline;line-height: 20px; }
.lr-card-2-2{ text-align: right;width: 200px; }
.lr-card-3{display: none}


.form-1-main{display: flex; width: 100%; flex-wrap: wrap;justify-content: space-between}
.form-1-main h5{ display: flex; width: 100%; font-size: 22px;color: #000; font-weight: 700; font-family: 'Share', cursive;}
.form-1-1{ margin: 14px 0px;width: 45%; display: flex; flex-wrap: wrap;}
.checkbox-v-middle{ vertical-align: bottom!important; margin-right: 10px !important}
.form-1-1 b{ display: block; width: 100%}
.shipping-border-1{border: 1px solid #ccc;padding: 20px; }
.ad-1-f-main{ display: flex; width: 100%; justify-content: space-between; }
.ad-1-f{ display: flex; width: 40%;margin: 20px 0px; box-sizing: border-box;}
.ad-1-f form{ display: flex; width: 100%;}
.shipping-border-1 h5{ margin: 0px; padding: 0px; color: #000; border-bottom: 0px;; font-size: 18px;font-weight: 700; font-family: 'Share', cursive;}
.shipping-border-1 p{ margin: 10px 0px; line-height: 26px; color:#252525; padding: 0px; color: #3D3D3D; border-bottom: 0px;; font-size: 16px;}
.ad-1-f h6{ margin: 0px; padding: 0px; color: #000; border-bottom: 0px;; font-size: 18px;}
.ad-1-f p{ margin: 10px 0px;}
.ad-1-1{ width: 30px;}
.ad-1-2{ flex:1;}
.max-width-1 {width: 200px;}

.my-account-sec-main{display: flex;width: 100%}
.my-account-sec-1{width: 260px;}
.my-account-sec-2{flex:1; padding-left: 20px;}
.my-account-sec-1 ul{background: #F4F4F4;margin: 0px; padding: 20px;box-sizing: border-box;}
.my-account-sec-1 ul,
.my-account-sec-1 ul li{ list-style: none;border-bottom: 1px solid #ccc; font-size: 18px;}
.my-account-sec-1 ul li a{ color: #474747; padding: 10px 10px;box-sizing: border-box; display: block}

.my-account-sec-1 ul li a:hover{ color: #000;}
.my-account-sec-1 ul li a.active{ color: #000;}

.dashboard-sec-1{ display:flex; width:100%;     margin-bottom:50px}
.dashboard-sec-1-1{max-width:220px;margin-right: 30px; background: #F4F4F4; padding:20px 10px; text-align:center; display: flex; flex-wrap: wrap;}
.dashboard-sec-1-1 a{display: flex; width:100% ; flex-wrap: wrap; text-align: center;}
.dashboard-sec-1-1 h4{color: #808080; width: 100%;}
.dashboard-sec-1-1 img{ max-width:100%; width:auto; margin: auto; height:60px; margin-bottom: 14px;}
.name-dashboard{border-bottom:1px solid #7777; padding:0px 0px 10px 0px; margin:0px 0px 20px 0px;}
.order-details-img{padding:2px 2px; border:1px solid #ccc; width:40px; height:auto;}


.dashboard-1 table {
    border: 0px;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}
.dashboard-1 table tr {
    background-color: #fff;
    border: 0px;
    padding: .35em;
}
.dashboard-1 table th {
    border-bottom: 1px solid #ccc;
}
.dashboard-1 table th, .dashboard-1 table td {
    padding: .625em;
    text-align: center;
}
.dashboard-1 table td{text-align: left;}
.dashboard-1 table th{text-align: left;  font-size: 18px}
 .dashboard-1 table td:last-child a {font-family: 'Share Tech', sans-serif;
    padding: 5px 10px;
    border: 0px;
    background: #000;
    color: #fff;
    border: 0px;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;text-align: center;}

.dashboard-1{margin: 14px 0px;}
.dashboard-1 table th {min-width: 80px;}
.dashboard-1 table th:first-child {padding-left: 0px;}
.dashboard-1 table th:last-child {
    width: 80px;
}

.my-account-btn{ padding: 5px 10px; background: #000;color: #fff; text-align: center; display: none;margin: 10px 10px;}

.pagination-n {text-align: center;}
.pagination-n ul{margin: 0px; padding: 0px; list-style: none;}
.pagination-n ul li{margin: 0px 5px; padding: 0px; display: inline-block; color: #000; background: #ccc;  list-style: none;}
.pagination-n ul li a{ color: #000;padding: 6px 10px; display: block;}
.pagination-n ul li a:hover{ background: #000; color: #fff; }
.no-bg{background: none;}

.shipping-address-main-1{padding: 10px 10px; border: 1px solid #ccc;}
.shipping-address-main-1 h4{ font-size:20px;margin-bottom: 20px;font-family: 'Share Tech', sans-serif;  font-weight: bold}
.shipping-address-main-1 h5{ font-size: 18px;}

.footer-n-2-1:nth-child(4) a:last-child{display: none}
.ma-col-two-main{ display: flex; width: 100%;}
.ma-col-two-1{ flex: 1;}
.ma-col-two-2{  }


.my-account-sec-2 h1{ margin: 0px;}
.about-three-col-main{display: flex; width: 100%; justify-content:space-between;margin: 14px 0px}
.about-three-col-1{width: 28%}
.about-three-col-1 img{width: 100%; margin-bottom: 10px;height: auto;}
.inner-container{padding: 20px 0px 20px 0px; font-size: 16px; width: 96%; margin: 0 auto;box-sizing: border-box;}
.inner-container img{ width: 100%;height: auto;}
.inner-container h1{border: 0px; color: #000;margin: 10px 0px 20px 0px;padding: 0px; font-size: 30px; letter-spacing: 0px; text-align: left}
.inner-container h5{border: 0px; color: #000;margin: 20px 0px 20px 0px;font-size: 20px;padding: 0px;}
.inner-container h3{ text-align: left;border: 0px; color: #000;margin: 0px 0px 10px 0px;font-size: 20px; padding: 0px;}
.inner-container p{color: #808080;padding: 0px 0px 14px 0px}



.my-account-sec-2 h1 {
  margin: 0px;
    
    font-size: 26px;
    color: #000;
    padding: 0px;
    letter-spacing: 0px;
    font-weight: 400;
    text-align: left;
}

.my-account-sec-2 h2 {
  margin: 0px;
    
    font-size: 26px;
    color: #000;
    padding: 0px;
    letter-spacing: 0px;
    font-weight: 400;
    text-align: left;
}
table{padding: 10px;}


      
     .my-account-sec-2 h4 {
    font-size: 20px;
    color: #000;
    margin: 0px;
    padding: 0px;
    letter-spacing: 0px;
    font-weight: 400;
}

@media screen and (max-width:830px){
    .my-account-sec-main{flex-wrap: wrap}
    .my-account-sec-1 {
    width: 100%;
}.my-account-sec-2 {
    flex: inherit;
    padding-left: 0px;width: 100%;margin-top: 20px;
}
    .navbar-brand img{width: 200px;height: auto}
    .my-account-btn{display: block}
    .my-account-sec-1 ul{display: none;}
    
            .dashboard-sec-1-1 img {
            height: 30px;
            margin-bottom: 14px;
        }
           .my-account-sec-2 h4 {
            font-size: 16px;
            letter-spacing: 0px;
        }
.dashboard-1 table {
    border: 0;
}
    .my-account-sec-2 {
    flex: 1;
    padding-left: 0px;
        padding: 20px;
}



.dashboard-1 table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.dashboard-1 table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
}
.dashboard-1 table td {
    border-bottom: 1px solid #ddd;
    display: block;
    
    text-align: right;
}
   
.dashboard-1 table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
}
.dashboard-1 table td:last-child {
    border-bottom: 0;
    width: auto;
}
    
    .shipping-address-main-1 h4{ font-size:16px;}
.shipping-address-main-1 h5{ font-size: 14px;}
    
     .description-box-1 h4, .description-box h4{font-size: 18px;}
}






