@charset "UTF-8";

body {
    margin: 0;
    color: #53688b;
	overflow-x: hidden;
}

hr {
    /* background-color: #a6bfd8; */
    background-color: #527292;
}

a {
    text-decoration: none;
    background-color: transparent;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    outline-style: none;
    color: #53688b;
}

a:hover {
    text-decoration: none;
    outline-style: none;
    color: #f01452;
}

p {
    color: #53688b;
}

img, .img-fluid {
    max-width: 100%;
    height: auto;
}

.content-area {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.blacktitle {
    color: #0e1111;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.whitetitle {
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.graytitle {
    color: #859db4;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.txtred {
    color: #f01452 !important;
}

.section_title {
    border: none;
    border-top: 1px solid #d4dce4;
    color: #53688b;
    overflow: visible;
    text-align: center;
    margin-top: 2rem;
    height: 3rem;
}

.section_title::after {
    background: #fff;
    content: attr(data-title);
    text-transform: uppercase;
    font-weight: 900;
    font-size: 45px;
    padding: 0 1rem;
    position: relative;
    top: -30px;
	line-height: 1.2;
}

@media screen and (max-width: 991px) {
    .section_title {
        margin-top: 1rem;
        height: 2rem;
    }

    .section_title::after {
        font-size: 20px;
        top: -13px;
    }
}

@media screen and (max-width: 765px) {

    .blacktitle,
    .whitetitle,
    .graytitle {
        font-size: 2.3rem;
    }
}

.space-20 {
    height: 20px;
    display: block;
}

.space-30 {
    height: 30px;
    display: block;
}

.space-50 {
    height: 50px;
    display: block;
}

.space-80 {
    height: 80px;
    display: block;
}

.space-100 {
    height: 100px;
    display: block;
}

/* Preloader */


/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Loader Wrapper */
.loader-wrapper {
    text-align: center;
}

/* Spinner Styles (Modern Circular Loader) */
.spinner {
    width: 20px;
    height: 20px;
    background-color: #f01452;
    border-radius: 50%;
    display: inline-block;
    -webkit-animation: motion 3s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    animation: motion 3s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

/* Animation for the Spinner */
@-webkit-keyframes motion {
    0% {
        transform: translateX(0) scale(1);
    }

    25% {
        transform: translateX(-50px) scale(0.3);
    }

    50% {
        transform: translateX(0) scale(1);
    }

    75% {
        transform: translateX(50px) scale(0.3);
    }

    100% {
        transform: translateX(0) scale(1);
    }
}

@keyframes motion {
    0% {
        transform: translateX(0) scale(1);
    }

    25% {
        transform: translateX(-50px) scale(0.3);
    }

    50% {
        transform: translateX(0) scale(1);
    }

    75% {
        transform: translateX(50px) scale(0.3);
    }

    100% {
        transform: translateX(0) scale(1);
    }
}

/* Loader Text Styles */
.loader-text {
    color: #0e1111;
    font-size: 18px;
    margin-top: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Optional Progress Bar (for added modernity) */
#progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #f01452;
    animation: progress 5s infinite;
}

/* Progress Bar Animation */
@keyframes progress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}


/* body-overlay */

#body-overlay {
    width: 100vw;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 9980;
    top: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
}

body #body-overlay {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

body.menuopen #body-overlay {
    visibility: visible;
    opacity: 1;
}

@media (min-width: 992px) {
    body {
        padding-top: 0;
        padding-left: 0;
        margin: 0;
    }

    body #body-overlay {
        visibility: hidden !important;
        opacity: 0 !important;
    }
}



.mainbg {
    background: rgb(255, 255, 255);
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(223, 233, 243, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(223, 233, 243, 1) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(223, 233, 243, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#dfe9f3", GradientType=1);
}

/* top info */

.top-info-cont {
    margin: 0px 2.5rem;
}

.top-info-left {
    text-align: left !important;
    margin-top: 1rem;
}

.top-info-right {
    text-align: right !important;
}

.top-info-cont ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 0;
}

.top-info-call {}

.top-action-cont {
    position: relative;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.top-info-right .btn-action-icon {
    display: inline-block;
    background-color: #fff;
    width: 39px;
    height: 39px;
    line-height: 35px;
    margin-top: 0.5rem;
	margin-left: 2px;
    margin-right: 2px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: none;
    opacity: 0.99;
}

.list-inline>li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}

@media screen and (max-width: 765px) {
    .top-info-cont {
        margin: 0px 0.5rem;
    }

    .top-info-left {
        text-align: center !important;
    }

    .top-info-right {
        text-align: center !important;
    }

    .top-info-cont ol,
    ul,
    dl {
        margin-top: 0;
        margin-bottom: 0;
    }
}

/* hover animation */

.hoveranim-left-cont {
    display: inline-block;
    text-align: center;
}

.hoveranim-left-item {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}

.hoveranim-left-cont:hover .hoveranim-left-item,
.hoveranim-left-cont:focus .hoveranim-left-item,
.hoveranim-left-cont:active .hoveranim-left-item {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
}

/* */

.ringanimation {
    -webkit-animation: ring-anim 2s infinite ease-out;
    -moz-animation: ring-anim 2s infinite ease-out;
    -ms-animation: ring-anim 2s infinite ease-out;
    -o-animation: ring-anim 2s infinite ease-out;
    animation: ring-anim 2s infinite ease-out;

    /* animation-name : ring-anim;
animation-duration : 2s;
animation-delay : 5s;
animation-fill-mode : none;
animation-iteration-count : infinite; */
}

.topbar_item_type-contact_timing:hover .ringanimation {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -ms-animationplay-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

@-moz-keyframes ring-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

@-webkit-keyframes ring-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

@-o-keyframes ring-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

@keyframes ring-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

/* home page search */

#selected-category {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.homepage__search .input-group>.form-control:not(:last-child) {
    height: 50px;
}

.homepage__search .form-control {
    background-color: #fff;
    border: 1px solid #d4dce4;
    border-radius: 30px;
    color: #2c2c2c;
    line-height: normal;
    font-size: 1em;
    -webkit-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.homepage__search .btn__homepage__search {
    background-color: #FFFFFF;
    border: 1px solid #d4dce4;
    border-radius: 30px;
    font-weight: 800;
    color: #ff2d71;
    -webkit-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.homepage__search .btn__homepage__dropdown {
    background-color: #FFFFFF;
    border: 1px solid #d4dce4;
    border-radius: 30px;
    font-weight: 800;
    color: #53688b;
    padding: -0.5rem 0 -0.5rem -0.3rem;
    -webkit-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.homepage__search .input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    border-left: none !important;
}

.homepage__search .input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3) {
    border-right: none !important;
}

.btn__homepage__search .hvr-icon {
    z-index: 100;
}

.homepage__search .dropdown-menu.show {
    display: block;
    border: 1px solid #d4dce4;
    border-radius: 0.5rem;
}

.homepage__search .dropdown-menu.show .dropdown-item {
    cursor: pointer;
}

@-webkit-keyframes hvr-icon-pop {
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        -ms-transform: scale(1.5);
    }
}

@keyframes hvr-icon-pop {
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        -ms-transform: scale(1.5);
    }
}

.hvr-icon {
    /* top: 1.5px; */
    position: relative;
}

.hvr-icon-pop {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-icon-pop .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-icon-pop:hover .hvr-icon,
.hvr-icon-pop:focus .hvr-icon,
.hvr-icon-pop:active .hvr-icon {
    -webkit-animation-name: hvr-icon-pop;
    animation-name: hvr-icon-pop;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* end home page search */


/*  */

.select2-container--bootstrap-5 .select2-selection {
    width: 100%;
    min-height: calc(1.5em + (1.5rem + 2px));
    padding: 0.75rem 2.25rem 0.375rem 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.75rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: 1px 1px 0 0 rgb(178 190 202);
}

.sort-left .select2-container--bootstrap-5 .select2-selection,
.sort-right .select2-container--bootstrap-5 .select2-selection {
    min-height: calc(1.5em + (0.7rem + 2px));
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
}

.search-filter-category {
    color: #6c757d;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 400;
    margin: 1rem 0;
}

.search-category {
    margin: 1rem 0;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.75rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: 1px 1px 0 0 rgb(178 190 202);
}

.form-style {
    padding: 0.8rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.75rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: 1px 1px 0 0 rgb(178 190 202);
}

.RegisterForm .input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}

.search-btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: #53688b;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.search-btn:hover {
    color: #53688b;
    background-color: #fff;
    border: 1px solid #53688b;
}

/* Single Post page */

.single__post .post__content {
    text-align: center;
}

.single__post__title {
    font-size: 2.5rem;
}

.wp-block-image a {
    display: block !important;
}

.single__post .post__content .wp-block-image:first-child img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
	/* object-position: 50% 0%; */
    border-radius: 0.5rem;
}

.single__post .post__content .wp-block-image img {
    border-radius: 0.5rem;
}

.single__post__date {
    display: inline-block;
    font-size: 0.85em;
    color: #53688b;
    margin: 0.5rem;
}

.single__post__view {
    display: inline-block;
    font-size: 0.85em;
    color: #53688b;
    margin: 0.5rem;
}

.post__tags__title {
    border: 1px solid #0e1111;
    background: #0e1111;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 0.25rem;
    display: inline-block;
    padding: 3px;
}

.single__post__tags a {
    border: 1px solid #d4dce4;
    border-radius: 0.25rem;
    display: inline-block;
    text-transform: capitalize;
    font-weight: 500;
    padding: 3px;
}

.single__post__tags a:hover {
    border: 1px solid #0e1111;
    background: #0e1111;
    color: #fff;
}

.single__post__content p a,
.top-video-posts p a {
    color: #f01452;
}

@media screen and (min-width: 1200px) {

    .single__post__content p a,
    .top-video-posts p a {
        position: relative;
        /* white-space: nowrap; */
    }

    .single__post__content p a:before,
    .single__post__content p a:after,
    .top-video-posts p a:before,
    .top-video-posts p a:after {
        position: absolute;
        width: 100%;
        height: 1px;
        background: #f01452;
        top: 100%;
        left: 0;
        pointer-events: none;
    }

    .single__post__content p a:before,
    .top-video-posts p a:before {
        content: '';
        /* show by default */
    }

    .single__post__content p a:before,
    .top-video-posts p a:before {
        transform-origin: 100% 50%;
        transform: scale3d(0, 1, 1);
        transition: transform 0.3s;
    }

    .single__post__content p a:hover:before,
    .top-video-posts p a:hover:before {
        transform-origin: 0% 50%;
        transform: scale3d(1, 1, 1);
    }
}

.single__post__content .post__content p:not(.wp-block-quote p) {
    text-align: justify;
}

.single__post__navigation {
    margin: 2rem 0;
}

.previous__post,
.next__post {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    padding: 0 30px;
    width: 50%;
    border-left: 1px solid #d4dce4;
    border-right: 1px solid #d4dce4;
}

.previous__post img,
.next__post img,
.previous__post a,
.next__post a {
	-webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.previous__post:hover img,
.next__post:hover img {
    -webkit-filter: brightness(0.8);
    filter: brightness(0.8);
}

.previous__post:hover a,
.next__post:hover a {
    color: #f01452;
}

.previous__post {
    text-align: left;
    float: left;
    border-left: 0px none;
    border-right: 0px none;
    padding: 0px 30px 0px 0px;
}

.next__post {
    text-align: right;
    float: right;
    border-right: 0px none;
    padding: 0px 0px 0px 30px;
}

.previous__post__title,
.next__post__title {
    white-space: nowrap;
}

.previous__post img,
.next__post img {
    max-width: 150px;
    height: 85px;
    vertical-align: middle;
    object-fit: cover;
    border-radius: 0.5rem;
}

.previous__post img {
    float: left;
    margin-right: 1rem;
}

.next__post img {
    float: right;
    margin-left: 1rem;
}

.author__single__post {
    padding: 1rem;
    margin-bottom: 2rem;
    border-top: 1px solid #d4dce4;
    border-bottom: 1px solid #d4dce4;
    clear: both;
    overflow: hidden;
}

.author__single__post img {
    width: 80px;
    height: 80px;
    float: left;
    margin-right: 1rem;
    border-radius: 50%;
    object-fit: cover;
}

.author__cont {
    display: flex;
    flex-wrap: wrap;
    line-height: 1.714;
    overflow: hidden;
}

.author__name {
    margin-top: 10px;
    text-transform: capitalize;
}

.author__desc {
    width: 100%;
    margin-bottom: 0px;
}

@media screen and (max-width: 991px) {
    .single__post__title {
        font-size: 1.2rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .single__post .post__content .wp-block-image:first-child img {
        height: 30vh;
    }

    .previous__post img,
    .next__post img {
        max-width: 100px;
        height: 55px;
    }
}

/* Author page */

.author__page {
    text-align: center;
    margin-bottom: 2rem;
}

.author__page .author__avatar img {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 20px -5px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 991px) {
    .author__page .author__avatar img {
        width: 80px;
        height: 80px;
    }
}

/* Posts */

.post__cont {
    position: relative;
    margin: 1rem 0rem;
}

.post__cont .post__title {
    font-size: 1.5em;
    color: #fff;
    font-weight: 900;
}

.post__cont .post__type {
    position: absolute;
    display: inline-block;
	width: 25px;
    height: 25px;
    line-height: 25px;
    bottom: 10px;
    right: 10px;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    background: #f3f3f3;
    text-align: center;
    margin-bottom: 0;
    border-radius: 0.25rem;
    text-transform: uppercase;
    z-index: 335;
}

.post__cont:before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    top: 13%;
    left: 12%;
    /* box-shadow: 38px 26px 0px 0 #c2d9ef; */
    background: #c2d9ef;
    border-radius: 0.5rem;
}

.post__description p {
    color: #53688b;
}

.post__date {
    font-weight: 300;
    color: #f01452;
}

.post__grid {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.post__grid:after {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0.5rem;
    left: 0;
    top: 0;
    content: "";
    background: rgb(26, 38, 56);
    background: -moz-linear-gradient(180deg, rgba(26, 38, 56, 0) 50%, rgba(26, 38, 56, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(26, 38, 56, 0) 50%, rgba(26, 38, 56, 1) 100%);
    background: linear-gradient(180deg, rgba(26, 38, 56, 0) 50%, rgba(26, 38, 56, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1a2638", endColorstr="#1a2638", GradientType=1);
}

.post__image {
    margin: auto;
    width: 100%;
    height: auto;
    display: block;
    max-width: none;
    width: -webkit-calc(100% + 35px);
    width: calc(100% + 35px);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-30px, 0, 0) scale(1.05);
    transform: translate3d(-30px, 0, 0) scale(1.05);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.post__author {
    display: flex;
    align-items: center;
    justify-content: left;
    margin: 1rem 0;
}

.post__author .avatar {
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: 50rem;
    height: 25px;
    width: 25px;
    object-fit: cover;
    /* box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .1), 0 2px 3px -1px rgba(0, 0, 0, .05) !important; */
}

.post__author .name,
.post__author .name a {
    font-size: 0.9rem;
    color: #f01452;
    text-transform: capitalize;
    font-weight: 300;
}

.post__cont:hover .post__image {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
    -webkit-filter: brightness(0.6);
    filter: brightness(0.6);
}

.post__cont .post__caption {
    position: absolute;
    bottom: 10px;
    width: 90%;
    padding: 0 1em;
    z-index: 338;
    display: none;
}

.post__caption .post__small__title {
    font-size: 1.5em;
    color: #fff;
    font-weight: 900;
}

.post__caption .post__small__date {
    margin: .5em 0 0;
    font-size: .9em;
    letter-spacing: 0em;
    color: #fff;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 85%;
}

@media screen and (max-width: 991px) {
    .post__info__cont {
        display: none;
    }

    .post__cont .post__caption {
        display: block;
    }

    .post__caption .post__small__title {
        font-size: 1em;
    }

    .post__author {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 1rem 0;
    }

    .post__cont:before {
        content: '';
        position: absolute;
        width: 90%;
        height: 90%;
        top: 12%;
        left: 11.3%;
    }
}

@media screen and (max-width: 765px) {
    .post__cont .post__grid::before {
        box-shadow: 25px 20px 0px 0 #c2d9ef;
    }

    .post__cont .post__title {
        font-size: 1.2em;
        color: #fff;
        font-weight: 900;
    }

    .post__cont .post__type {
        position: absolute;
        display: inline-block;
        bottom: 5px;
        right: 5px;
        color: #000;
        font-size: 12px;
        font-weight: 600;
        font-family: "Poppins", sans-serif;
        background: #f3f3f3;
        padding: 2px;
        border-radius: 0.25rem;
        text-transform: uppercase;
        z-index: 335;
    }

    .post__cont:before {
        content: '';
        position: absolute;
        width: 90%;
        height: 90%;
        top: 12%;
        left: 11.3%;
    }

    .post__cont .post__caption {
        position: absolute;
        bottom: 5px;
        width: 90%;
        padding: 0 5px;
        z-index: 338;
    }
}

@media screen and (max-width: 505px) {
    .post__cont .post__grid::before {
        box-shadow: 25px 20px 0px 0 #c2d9ef;
    }

    .post__cont .post__title {
        font-size: 1.2em;
        color: #fff;
        font-weight: 900;
    }

    .post__cont .post__type {
        position: absolute;
        display: inline-block;
        bottom: 5px;
        right: 5px;
        color: #000;
        font-size: 12px;
        font-weight: 600;
        font-family: "Poppins", sans-serif;
        background: #f3f3f3;
        padding: 2px;
        border-radius: 0.25rem;
        text-transform: uppercase;
        z-index: 335;
    }

    .post__cont:before {
        content: '';
        position: absolute;
        width: 90%;
        height: 90%;
        top: 12%;
        left: 11.3%;
    }
}

/* custom__category__posts__block */

.custom__category__posts__block {
    margin-bottom: 1rem;
}

.custom__category__posts__block .post__cont .post__caption {
    display: block;
}

.category__posts__block__header {
    padding-right: 1rem;
    padding-left: 1rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;

}

.category__posts__block__header .block__left {
    font-size: 1.5em;
    color: #0e1111;
    font-weight: 900;
    text-transform: uppercase;
}

.category__posts__block__header .block__right {
    margin: 0.5rem 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.category__posts__block__header .block__right a {
    font-size: 1.5em;
    color: #f01452;
    font-weight: 900;
    text-transform: uppercase;
}

@media screen and (min-width: 992px) {
    .custom__category__posts__block .post__image {
       /*  min-height: 380px;
        max-height: 380px;
        object-fit: cover; */
    }
}

@media screen and (max-width: 991px) {
    .category__posts__block__header .block__left {
        font-size: 1em;
    }

    .category__posts__block__header .block__right a {
        font-size: 1em;
    }

    .custom__category__posts__block .post__image {
       /*  max-height: 200px;
        object-fit: cover; */
    }
}

@media screen and (max-width: 765px) {
    .custom__category__posts__block .post__image {
        /* max-height: none;
        object-fit: cover; */
    }
}

/* post__label */

.post__cont .post__label {
    top: 10px;
    left: 10px;
}

.post__label {
    position: absolute;
    z-index: 110;
    top: 10px;
    left: 10px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    padding: 4px 8px;
    font-size: 0.7142em;
    line-height: 12px;
    border-radius: 0.5rem;
}

.single__post__label {
    display: inline-block;
    margin: 0.5rem 0;
    text-align: center;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    padding: 4px 8px;
    font-size: 0.7142em;
    line-height: 12px;
    border-radius: 0.5rem;
}

.post__cont .post__label a {
    color: #fff;
}

.single__post__label a {
    color: #fff;
}

.bg-business {
    background-color: #0d91fd;
}

.bg-politics-society {
    background-color: #f01452;
}

.bg-health-entertainment {
    background-color: #ffc107;
}

.bg-sport {
    background-color: #15a763;
}

.bg-travel {
    background-color: #a810c2;
}

.bg-earth {
    background-color: #5adcee;
}

.bg-uncategorized {
	background-color: #527292;
}

/* Latest posts */

.latest__posts .latest__post__image {
    margin: auto;
    width: 100%;
    height: auto;
    display: block;
    max-width: none;
    width: -webkit-calc(100% + 35px);
    width: calc(100% + 35px);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-30px, 0, 0) scale(1.05);
    transform: translate3d(-30px, 0, 0) scale(1.05);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    border-radius: 0.5rem;
}

.latest__post__cont {
    position: relative;
}

.latest__post__cont .post__label {
    top: 10px;
    left: 10px;
}

.latest__post__grid {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem !important;
}

.latest__post__cont .post__label a {
    color: #fff;
}

.latest__post__grid:after {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0.5rem;
    left: 0;
    top: 0;
    content: "";
    background: rgb(26, 38, 56);
    background: -moz-linear-gradient(180deg, rgba(26, 38, 56, 0) 50%, rgba(26, 38, 56, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(26, 38, 56, 0) 50%, rgba(26, 38, 56, 1) 100%);
    background: linear-gradient(180deg, rgba(26, 38, 56, 0) 50%, rgba(26, 38, 56, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1a2638", endColorstr="#1a2638", GradientType=1);
}

.latest__post__cont .latest__post__title {
    font-size: 1.2em;
    color: #0e1111;
    line-height: 1.1;
}

.latest__post__cont .latest__post__title.big {
    font-size: 2em;
}

.latest__post__cont:hover .latest__post__image {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
    -webkit-filter: brightness(0.6);
    filter: brightness(0.6);
}

.latest__post__cont .latest__post__caption {
    position: absolute;
    bottom: 5%;
    width: 90%;
    padding: 0 1em;
    z-index: 338;
}

.latest__post__cont .latest__post__caption .latest__post__title {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    margin-bottom: 2rem;
}

.latest__post__cont .latest__post__caption .latest__post__description {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
}

.latest__post__cont .latest__post__caption .latest__post__title {
    color: #fff;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}

.latest__post__cont .latest__post__caption .latest__post__description {
    color: #fff;
    opacity: 0;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
    transition: opacity 0.2s, transform 0.35s;
}

.latest__post__cont:hover .latest__post__caption .latest__post__description {
    opacity: 1;
}

.latest__post__cont:hover .latest__post__caption .latest__post__title,
.latest__post__cont:hover .latest__post__caption .latest__post__description {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.latest__post__cont:hover .latest__post__caption .latest__post__description {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
}

@media screen and (max-width: 990px) {
    .latest__post__cont .latest__post__title {
        font-size: 1em;
        line-height: 1;
    }

    .latest__post__cont .latest__post__title.big {
        font-size: 1em;
    }
}

/* Most Viewed Posts */

.mostviewed__posts {
    margin-bottom: 2rem;
}

.mostviewed_grid {
    position: relative;
    margin: auto;
    overflow: hidden;
}

.mostviewed_grid_item {
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
}

.single_most__viewed__post {
    position: relative;
    width: 100%;
    border: 2px solid #d4dce4;
    Border-radius: 0.5rem;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.single_most__viewed__post::before,
.single_most__viewed__post::after {
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
}

.single_most__viewed__post::before {
    border-top: 2px solid #0e1111;
    border-bottom: 2px solid #0e1111;
    Border-radius: 0.5rem;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

.single_most__viewed__post::after {
    border-right: 2px solid #0e1111;
    border-left: 2px solid #0e1111;
    Border-radius: 0.5rem;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

.single_most__viewed__post:hover::before,
.single_most__viewed__post:hover::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.most__viewed__post_link {
    position: relative;
    z-index: 888;
}

.mostviewed_grid_item .most__viewed__post__caption {
    padding: 1em;
}

.most__viewed__post__title img {
    max-width: 150px;
    height: 85px;
    vertical-align: middle;
    margin-right: 1rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.mostviewed_grid_item .most__viewed__post__title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #0e1111;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 1.1rem;
    opacity: 1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
}

.mostviewed_grid_item .most__viewed__post__title .most__viewed__post__text {
	width: 100%;
	display: inline-block;
}

.mostviewed_grid_item .most__viewed__post__description {
    text-align: center;
    color: #0e1111;
    font-weight: 900;
    text-transform: uppercase;
    margin: 1em 0 0;
    opacity: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transform: translate3d(0, 20px, 0) scale(1.1);
    transform: translate3d(0, 20px, 0) scale(1.1);
}

.mostviewed_grid_item:hover .most__viewed__post__title {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.mostviewed_grid_item:hover .most__viewed__post__description {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
}

.most__viewed__post__num {
    position: absolute;
    display: inline-block;
    color: rgba(212, 220, 228, 0.8);
    font-size: 3rem;
    font-weight: 900;
    left: 3%;
    top: 0%;
    z-index: 8000;
}

@media screen and (max-width: 991px) {
    .mostviewed_grid_item .most__viewed__post__title {
        font-size: 0.8rem;
    }

    .most__viewed__post__title img {
        max-width: 100px;
        height: 55px;
    }

    .mostviewed_grid_item .most__viewed__post__description {
        font-size: 0.8rem;
    }

}

/* Featured posts */

.featuredbg {
    background: #fff;
}

.featuredposts {
    position: relative;
    margin: 1rem 1rem;
    overflow: hidden;
    border-radius: 0.25rem;
    border: none;
    background: rgb(83, 104, 139);
    background: -moz-linear-gradient(0deg, rgba(83, 104, 139, 1) 35%, rgba(255, 255, 255, 1) 35%);
    background: -webkit-linear-gradient(0deg, rgba(83, 104, 139, 1) 35%, rgba(255, 255, 255, 1) 35%);
    background: linear-gradient(0deg, rgba(83, 104, 139, 1) 35%, rgba(255, 255, 255, 1) 35%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#53688b", endColorstr="#ffffff", GradientType=1);
}

.imgcont {
    overflow: hidden;
}

.featuredposts img {
    margin: auto;
    width: 100%;
    height: auto;
    display: block;
    max-width: none;
    width: -webkit-calc(100% + 35px);
    width: calc(100% + 35px);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-30px, 0, 0) scale(1.05);
    transform: translate3d(-30px, 0, 0) scale(1.05);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}


.featuredposts:hover img {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
    -webkit-filter: brightness(0.6);
    filter: brightness(0.6);
}

.featuredposts p {
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
    text-transform: uppercase;
    font-weight: 900;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
    position: absolute;
    top: 30%;
    margin: 0 auto;
    color: #e8ecf1;
}

.featuredposts:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.featuredposts .description {
    font-weight: bold;
    font-size: 1.3em;
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
    color: #e8ecf1;
    background: #53688b;
    padding: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.featured-price {
    color: #ffd243;
    font-weight: 900;
    font-size: 1.3em;
    margin: 0.5rem;
}

.featured-separator {
    margin: 1rem;
    background: #697fa5;
    height: 1px;
}

.featured-desc {
    color: #e8ecf1;
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-size: 0.8rem;
    margin: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Statistic */

.statistic {
    position: relative;
    width: 100%;
    background: #53688b;
}

.odometer-statistic {
    text-align: center;
    border: 1px solid #859db4;
    border-radius: 0.25rem;
    padding: 20px;
    margin-bottom: 1rem;
    /* box-shadow: 0 25px 30px -20px rgba(0, 0, 0, 0.25); */
}

.odometer-statistic h5 {
    color: #fff;
    text-transform: uppercase;
    margin: 1rem 0;
    font-weight: 900;
    font-family: Montserrat, sans-serif;
}

.odometer-statistic .statistic-title {
    font-family: Montserrat, sans-serif;
    font-size: 3.3em;
    font-weight: 900;
    width: 100%;
    color: #fff;
    z-index: 1;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}

.odometer-statistic:hover .statistic-title,
.odometer-statistic:focus .statistic-title,
.odometer-statistic:active .statistic-title {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
}

/* odometer counter */

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    display: -moz-inline-box;
    -moz-box-orient: vertical;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    position: relative;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    *display: inline;
}

.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default .odometer-digit {
    display: -moz-inline-box;
    -moz-box-orient: vertical;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    position: relative;
}

.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default .odometer-digit {
    *display: inline;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
    display: -moz-inline-box;
    -moz-box-orient: vertical;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
    *display: inline;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
    text-align: left;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
    display: block;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
    display: block;
    -webkit-backface-visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value {
    display: block;
    -webkit-transform: translateZ(0);
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
    position: absolute;
}

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 2s;
    -moz-transition: -moz-transform 2s;
    -ms-transition: -ms-transform 2s;
    -o-transition: -o-transform 2s;
    transition: transform 2s;
}

.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 2s;
    -moz-transition: -moz-transform 2s;
    -ms-transition: -ms-transform 2s;
    -o-transition: -o-transform 2s;
    transition: transform 2s;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    font-family: "Helvetica Neue", sans-serif;
    line-height: 1.1em;
}

.odometer.odometer-auto-theme .odometer-value,
.odometer.odometer-theme-default .odometer-value {
    text-align: center;
}


/* Services */

.scrollservices {
    overflow: hidden;
    border-radius: 0.25rem;
}

.services {
    align-items: center !important;
}

.our-service {
    padding: 5px 0;
}

.visionimg {
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .2)
}

.services-title {
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1.5rem;
}

.services-itemhover {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 30px;
    margin: 28px;
    border-left: 5px solid #8fb0cf;
    transition: all .5s ease-in-out;
}

.services-itemhover::after {
    position: absolute;
    height: 100%;
    top: 0;
    left: -5px;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.services-itemhover::after {
    border-left: 5px solid #ff0042;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

.services-itemhover:hover::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.services-itemhover:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}

.servicesdesc {
    align-items: center !important;
    background: #0e1111;
    padding: 1rem;
    top: 100px;
    margin-left: -80px;
    margin-bottom: 100px;
    z-index: 555;
    position: relative;
    border-radius: 0.25rem;
}

.services .scrollservices .rellax {
    left: 20px;
    position: absolute !important;
    z-index: 5558 !important;
    box-shadow: 0 8px 50px 0 rgb(0 0 0 / 40%);
}

.vehicle-check {
    border-radius: 0.25rem;
}

@media screen and (max-width: 990px) {
    .services-title {
        font-size: 1rem;
    }

    .services-itemhover {
        display: block;
    }

    .servicesdesc {
        top: 0px;
        margin-left: 0px;
        margin-bottom: 0px;
    }

    .scrollservices {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .servicesdesc {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .services-itemhover {
        padding: 20px;
        margin: 15px;
    }
}

/* post animation */

.postanimation {
    position: relative;
    overflow: hidden;
}

.leftpost {
    transform: translateX(400px);
    -webkit-transition: 1.5s;
    -moz-transition: 1.5s;
    -o-transition: 1.5s;
    transition: 1.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.rightpost {
    transform: translateX(-400px);
    -webkit-transition: 1.5s;
    -moz-transition: 1.5s;
    -o-transition: 1.5s;
    transition: 1.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.post-transition {
    z-index: -1;
    position: relative;
    opacity: 1;
    transform: none;
}

/* @media (prefers-reduced-motion: no-preference) {
  .leftpost {
    transition: opacity 1.5s ease, transform 1.5s ease;
  }
} */

/* Info */

.info-background {
    background-position: 50%;
    background-size: cover;
    text-align: center;
    box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.3);
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: 0.25rem;
    margin: 1.5rem;
}

.info-background:after {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    content: "";
    background-color: rgba(0, 0, 0, .4);
    border-radius: 0.25rem;
}

.info-background .title {
    font-size: 2rem;
    text-transform: uppercase;
    margin: 2rem 0;
    font-weight: 900;
}

.info-background .subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin: 1rem 0;
    font-weight: 300;
    height: 3.5rem;
}

.info-background .info {
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 360px;
    margin: 0 auto;
}

.info-background .icon {
    font-size: 5rem;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.info-background .infolink {
    color: #fff;
    display: block;
}

.info-background:hover .icon {
    transform: translate3d(0, -.8rem, 0);
}

@media screen and (max-width: 991px) {
    .info-background .title {
        font-size: 1.5rem;
    }
}


/* svg efficiency */

.efficiency {
    width: 30%;
}

.energyEfficiencyLabel {
    fill: #fff
}

.efficiencyClassA2,
.efficiencyClassA3 {
    fill: #009848
}

.efficiencyClassA1 {
    fill: #4eae46
}

.efficiencyClassA,
.efficiencyClassB {
    fill: #b9d237
}

.efficiencyClassC {
    fill: #fff104
}

.efficiencyClassD {
    fill: #e3672a
}

.efficiencyClassE,
.efficiencyClassF,
.efficiencyClassG {
    fill: #d7222b
}

@media screen and (max-width: 991px) {
    .efficiency {
        width: 50%;
    }
}

/* Main Search */

.mainsearch {
    /* background: #f01452; */
    min-height: 4rem;
}

.mainsearch-cont {
    padding: 0 20px;
}

.mainsearch .input-group {
    margin: 0;
    position: relative;
    border-radius: 50rem;
    box-shadow: 0 10px 50px 0 rgba(0, 0, 0, .1)
}

.mainsearch .input-group .form-control:last-child {
    border-left: 0 none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.mainsearch .input-group>.input-group-prepend>.input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.mainsearch .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-bottom: 1px solid #ececec;
    border-top: 1px solid #ececec;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.mainsearch .input-group-text:first-child {
    border-right: 0 none;
}

.mainsearch .input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #fff;
    border: 1px solid #ececec;
    border-radius: 50rem;
}

.mainsearch .btn__homepage__search {
    display: inline-block;
    font-weight: 600;
    line-height: 2.5;
    color: #f01452;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: #fff;
    border: 1px solid #ececec;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    margin-left: 1rem;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.mainsearch .btn-subscribe:hover {
    color: #fff;
    background-color: #212529;
    border: 1px solid #212529;

}

.nmainsearch .input-group .input-group-prepend {
    margin-right: 0;
    display: -ms-flexbox;
    display: flex
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
    cursor: pointer;
    outline: none;
}

textarea:hover,
input:hover,
textarea:active,
input:active,
textarea:focus,
input:focus,
button:focus,
button:active,
button:hover,
label:focus,
.btn:active,
.btn.active {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

/* post list sort */

.sort-cont {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
}

.sort-left {
    display: block;
    min-width: 180px;
    width: 250px;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.sort-right {
    margin: 0.5rem 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.sort-showing {
    margin-right: 0.4rem !important;
}

.sort-left option {
    padding: 0.5rem 0.75rem;
    margin: 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #0e1111;
}



.form-select option:hover {
    background: #657789;
    color: #fff;
}

.form-select option:focus {
    background: #657789;
    color: #fff;
}

.form-select option:active {
    background: #657789;
    color: #fff;
}



.sort-left .select2-selection__rendered,
.sort-right .select2-selection__rendered {
    font-size: 0.75rem;
    border: 0;
}

.sort-left .select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
    border-color: #ced4da;
    box-shadow: none;
}

.sort-right .select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
    border-color: #ced4da;
    box-shadow: none;
}

.sortfont {
    font-size: 0.75rem !important;
    top: 32px !important;
    z-index: 99999 !important;
}

.sortfont .select2-results__option {
    font-size: 0.75rem !important;
    text-transform: none !important;
}

.select2fixtop {
    top: 32px !important;
    z-index: 99999 !important;
}

@-moz-document url-prefix() {
    .sortfont {
        font-size: 0.75rem !important;
        top: 0px !important;
        z-index: 99999 !important;
    }

    .select2fixtop {
        top: 0px !important;
        z-index: 99999 !important;
    }
}

.btn-outline-sort {
    color: #657789;
    border-color: #ced4da;
    padding: 0.3rem 0.7rem;
    border-radius: 0.5rem;
}

.btn-sort-active {
    color: #fff;
    border-color: #657789;
    background: #657789;
}

.btn-outline-sort:hover {
    color: #fff;
    border-color: #657789;
    background: #657789;
}

.post__info__cont {
    padding-top: 3rem;
}

.post__info__cont .post__title {
    font-size: 2em;
    color: #53688b;
    font-weight: 900;
    text-transform: uppercase;
}

.post__info__cont .post__price {
    color: #f01452;
    font-weight: 900;
    margin-bottom: 1rem;
}

.infosvg {
    max-width: 20px;
}

@media screen and (max-width: 991px) {
    .post__info__cont {
        padding-top: 0rem;
        text-align: center;
    }

    .post__info__cont .post__title {
        font-size: 2.2em;
        font-weight: 900;
    }
}

@media screen and (max-width: 765px) {
    .sort-cont {
        display: block;
    }

    .sort-left {
        width: 100%;
    }

    .sort-right {
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 15px;
    }

    .post__info__cont {
        padding-top: 0rem;
        text-align: center;
    }

    .post__info__cont .post__title {
        font-size: 1.3em;
        color: #0e1111;
        font-weight: 900;
    }
}

/* side ads */

.side-ads-cont {
    margin: 0;
}

.side-ads {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-size: 1rem;
    overflow: hidden;
    border-radius: 0.25rem;
    height: 100%;
    max-width: 300px;
    padding: 20px;
}

.side-ads a {
    color: #0e1111;
}

.side-ads h4 {
    position: relative;
    overflow: hidden;
    padding: 50% 10px 10px 20px;
    color: #0e1111;
    text-align: center;
    font-weight: 300;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
}

.side-ads p {
    border: 1px solid #0e1111;
    opacity: 0;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0, 20px, 0) scale(1.1);
    transform: translate3d(0, 20px, 0) scale(1.1);
    -ms-transform: translate3d(0, 20px, 0) scale(1.1);
}

.side-ads:hover h4 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.side-ads:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
}

@media screen and (max-width: 767px) {
    .side-ads-cont {
        margin: 2rem 0;
    }

    .side-ads {
        position: relative;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        font-size: 1rem;
        overflow: hidden;
        min-height: 15rem;
        max-width: 100% !important;
    }

    .side-ads h4 {
        position: relative;
        overflow: hidden;
        padding: 5% 0 10px 0;
        color: #0e1111;
        text-align: left;
    }

    .side-ads p {
        margin-left: 0;
        margin-right: 0;

    }
}

/* top ads */

.top-ads-cont {
    margin: 0;
}

.top-ads {
    background-size: cover;
    background-position: 50%;
    position: relative;
    width: 100%;
    min-height: 300px;
    padding: 20px;
    border-radius: 0.25rem;
}

.top-ads a {
    color: #fff;
}

.top-ads-title {
    position: relative;
    overflow: hidden;
    padding: 10px 10px 0px 100px;
    color: #fff;
    text-align: left;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

.top-ads-subtitle {
    position: relative;
    overflow: hidden;
    padding: 5px 100px 10px 100px;
    color: #fff;
    text-align: left;
    font-weight: 300;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
}

.top-ads p {
    border: 2px solid #fff;
    opacity: 0;
    width: 10rem;
    margin: 10px 10px 10px 100px;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0, 20px, 0) scale(1.1);
    transform: translate3d(0, 20px, 0) scale(1.1);
    -ms-transform: translate3d(0, 20px, 0) scale(1.1);
}

.top-ads:hover h4,
.top-ads:hover img {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.top-ads:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
}

@media screen and (max-width: 767px) {
    .top-ads-cont {
        margin: 0;
    }

    .top-ads {
        background-position: 55%;
    }

    .top-ads h4,
    .top-ads img {
        position: relative;
        overflow: hidden;
        padding: 5% 0 5px 0;
        text-align: left;
    }

    .top-ads p {
        margin-left: 10px;
        margin-right: 0;

    }

    .top-ads-small {
        background-size: cover;
        background-position: 28%;
        position: relative;
        width: 100%;
        min-height: 300px;
        padding: 50px 70px 0px 10px;
        border-radius: 0.25rem;
    }
}

.top-ads:after {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    content: "";
    border-radius: 0.25rem;
    background: rgb(197, 195, 195);
    background: -moz-linear-gradient(360deg, rgba(197, 195, 195, 0.1) 30%, rgba(26, 38, 56, 0.8) 100%);
    background: -webkit-linear-gradient(360deg, rgba(197, 195, 195, 0.1) 30%, rgba(26, 38, 56, 0.8) 100%);
    background: linear-gradient(360deg, rgba(197, 195, 195, 0.1) 30%, rgba(26, 38, 56, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c5c3c3", endColorstr="#1a2638", GradientType=1);
}

/* top split ads */

.top-splitads-cont {
    margin: 0;
}

.top-splitads {
    background-size: cover;
    background-position: 50%;
    position: relative;
    width: 100%;
    min-height: 320px;
    padding: 20px;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.top-splitads a {
    color: #fff;
}

.top-splitads-title {
    position: relative;
    overflow: hidden;
    padding: 20px 10px 10px 80px;
    color: #fff;
    text-align: left;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

.top-splitads-title img {
    height: 80px;
    max-height: 80px;
}

.top-splitads-subtitle {
    position: relative;
    overflow: hidden;
    padding: 5px 10px 10px 80px;
    color: #fff;
    text-align: left;
    font-weight: 400;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.top-splitads p {
    border: 2px solid #fff;
    color: #fff;
    opacity: 0;
    width: 13rem;
    margin: 10px 10px 10px 80px;
    text-align: center;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
}

.applink {
    background: #fff;
    display: inline-block;
    min-width: 170px;
    font-weight: 600;
    border-radius: 30px;
    color: #0e1111 !important;
    padding: 10px 15px 10px 15px;
}

.adslink {
    z-index: 10;
    position: relative;
}

.mobapp {
    position: absolute;
    max-width: 150px;
    bottom: -45px;
    right: 50px;
    z-index: 333;
}

.top-splitads:hover h5 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.top-splitads:hover h4 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.top-splitads:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 1199px) {
    .mobappcont {
        min-height: 420px !important;
        margin-bottom: 5rem;
    }

    .mobappcont .top-splitads-title {
        -webkit-transform: translate3d(0px, 0, 0);
        transform: translate3d(0px, 0, 0);
    }

    .mobappcont .top-splitads-subtitle {
        -webkit-transform: translate3d(0px, 0, 0);
        transform: translate3d(0px, 0, 0);
    }

    .mobappcont p {
        -webkit-transform: translate3d(0px, 0, 0);
        transform: translate3d(0px, 0, 0);
        -ms-transform: translate3d(0px, 0, 0);
    }
}

@media screen and (max-width: 767px) {
    .top-splitads-cont {
        margin: 0;
    }

    .top-splitads {}

    .top-splitads h4,
    .top-splitads h5 {
        position: relative;
        overflow: hidden;
        padding: 5px 5%;
        text-align: left;
        margin-top: 1rem;
    }

    .top-splitads p {
        margin-left: 10px;
        margin-right: 0;

    }

    .top-splitads-small {
        background-size: cover;
        background-position: 28%;
        position: relative;
        width: 100%;
        min-height: 300px;
        padding: 50px 70px 0px 10px;
        border-radius: 0.25rem;
    }

    .mobapp {
        position: absolute;
        max-width: 100px;
        bottom: -60px;
        right: calc(50% - 50px);
        z-index: 333;
    }

    .mobappcont {
        min-height: 420px !important;
        margin-bottom: 5rem;
    }

    .mobappcont p {
        margin-left: auto;
        margin-right: auto;
        -webkit-transform: translate3d(0px, -10px, 0);
        transform: translate3d(0px, 10px, 0);
        -ms-transform: translate3d(0px, 10px, 0);
    }
}

.top-splitads:after {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    content: "";
    border-radius: 0.25rem;
    background: rgb(197, 195, 195);
    background: -moz-linear-gradient(360deg, rgba(197, 195, 195, 0.1) 30%, rgba(26, 38, 56, 0.5) 100%);
    background: -webkit-linear-gradient(360deg, rgba(197, 195, 195, 0.1) 30%, rgba(26, 38, 56, 0.5) 100%);
    background: linear-gradient(360deg, rgba(197, 195, 195, 0.1) 30%, rgba(26, 38, 56, 0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c5c3c3", endColorstr="#1a2638", GradientType=1);
}

.splitadslink {
    z-index: 10;
    position: relative;
}

/*  */
.action-cont {
    position: absolute;
    z-index: 110;
    top: 5%;
    right: 5%;
    display: flex;
    flex-direction: column;
    text-align: center;
    opacity: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.action-overlay {
    position: absolute;
    z-index: 100;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    background-color: rgba(135, 133, 133, 1);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.btn-action-icon,
.btn-action-icon:before,
.btn-action-icon .fas,
.btn-action-icon .fab,
.btn-action-icon .far {
    transition: all 0.35s;
    transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
}

.btn-action-icon:before {
    top: 90%;
    left: -110%;
}

.btn-action-icon .fas,
.btn-action-icon .fab,
.btn-action-icon .far {
    transform: scale(0.8);
}

.btn-action-icon.btnlink:hover:before {
    background-color: #527292;
}

.btn-action-icon.btnlink .fas,
.btn-action-icon.btnlink .fab,
.btn-action-icon.btnlink .far {
    color: #0e1111;
}

.social-media-icons .btn-action-icon.btnlink .fas,
.social-media-icons .btn-action-icon.btnlink .fab,
.social-media-icons .btn-action-icon.btnlink .far {
    color: #0e1111;
    margin-top: 0px;
}

.social-media-icons .btn-action-icon:hover .fas,
.social-media-icons .btn-action-icon:hover .fab,
.social-media-icons .btn-action-icon:hover .far {
    color: #fff;
    transform: scale(1);
}

.btn-action-icon:focus:before,
.btn-action-icon:hover:before {
    top: -10%;
    left: -10%;
}

.btn-action-icon:hover .fas,
.btn-action-icon:hover .fab,
.btn-action-icon:hover .far {
    color: #fff;
    transform: scale(1);
}

.btn-action-icon {
    display: inline-block;
    background-color: #fff;
    width: 39px;
    height: 39px;
    /* line-height: 35px; */
    margin-top: 0.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
    opacity: 0.99;
}

.btn-action-icon.btnlink.add-to-compare.rounded-circle.active,
.btn-action-icon.btnlink.add-to-favorite.rounded-circle.active {
    display: inline-block;
    background-color: #527292;
    color: #fff;
    width: 39px;
    height: 39px;
    line-height: 35px;
    margin-top: 0.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
    opacity: 0.99;
}

.btn-action-icon.btnlink.add-to-compare.rounded-circle.active .fas,
.btn-action-icon.btnlink.add-to-compare.rounded-circle.active .fab,
.btn-action-icon.btnlink.add-to-compare.rounded-circle.active .far,
.btn-action-icon.btnlink.add-to-favorite.rounded-circle.active .fas,
.btn-action-icon.btnlink.add-to-favorite.rounded-circle.active .fab,
.btn-action-icon.btnlink.add-to-favorite.rounded-circle.active .far {
    color: #fff;
    transform: scale(1);
}

.btn-action-icon:before {
    content: '';
    width: 120%;
    height: 120%;
    position: absolute;
    transform: rotate(45deg);
}

.btn-action-icon .fas,
.btn-action-icon .fab,
.btn-action-icon .far {
    font-size: 1.4rem;
    vertical-align: middle;
}

.btn-action-icon-active {
    background-color: #527292;
}

.btnlink-icon-active {
    color: #fff !important;
}

/* post-label */

.single-post .post-label {
    top: 10px;
    left: 10px;
}

.post-label {
    position: absolute;
    z-index: 110;
    top: 10px;
    left: 10px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    padding: 4px 8px;
    font-size: 0.7142em;
    line-height: 12px;
    border-radius: 0.25rem;
}

.bg-purple {
    color: #fff;
    background-color: #6f42c1;
}

.bg-new {
    background-color: #f01452;
}

.bg-electric {
    background-color: #15a763;
}

.bg-hybrid {
    background-color: #0d91fd;
}

.bg-sale {
    background-color: #ffc107;
}

.bg-other {
    background-color: #1b2836;
}

/*  */
#topnavbar {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.cursor-pointer {
    cursor: pointer;
}

.navbar-dark .navbar-brand {
    color: rgba(52, 58, 64, 1);
    font-weight: 700;
}

.bg-primary {
    opacity: 1;
    background-color: transparent;
    /* background-color: rgba(245,245,245,1) !important; */
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    /* color: #ec1823; */
}

.navbar-dark .navbar-nav .show>.nav-link,
.navbar-dark .navbar-nav .nav-link.active {
    /* color: #ec1823; */
}

.navbar-dark .navbar-nav .nav-link:active,
.navbar-dark .navbar-nav .nav-link:focus {
    /* color: rgba(236, 24, 35, 1); */
}

.navbar-dark .navbar-nav .nav-link.active::before {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 20%;
    background: #adc53b;
    transform: scale3d(1, 1, 1);
    transform-origin: 50% 0%;
}

@media screen and (max-width: 1200px) {
	.menuopen .navbar_cont {
		position: fixed !important;
	}
    .menuopen #topnavbar {
        position: fixed !important;
        top: 0; 
        background-color: #fff !important;
        height: 100vh;
        display: block !important;
    }

    .menuopen .navbar .nav-link {
        color: #53688b !important;
        font-size: .9rem;
    }

    .menuopen .navbar-brand {
        color: #53688b !important;
    }

    .menuopen .navbar-toggler .navbar-toggler-icon .navbar-toggler-bar {
        background: #53688b !important;
    }

    .menuopen:not(.scroll-down) #topnavbar {
        background-color: #fff;
    }

    .navbar {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .navbar-dark .navbar-nav .nav-link.active::before {
        left: 10%;
        width: 80%;
        height: 20%;
    }
}


/* subcategory */

.swipercategories {
    border: 1px solid #000;
    border-radius: 5rem;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

.subcategory {
    margin: 0 0.3rem;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    /* If there is no picture */
    color: #0e1111;
    text-align: center;
    min-height: 3rem;
    font-weight: 300;
    font-size: 1.3rem;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
}

.subcategory:hover {
    /* box-shadow: 0 30px 25px -20px rgba(0, 0, 0, 0.15); */
    color: #f01452;
}

.subcategory img {
    margin: auto;
    width: 100%;
    height: auto;
    display: block;
}

.subcategory .description {
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
    color: #527292;
    font-size: 0.9rem;
}

.swiper-button-next i,
.swiper-button-prev i,
.swiper-button-next svg,
.swiper-button-prev svg {
    position: relative;
    left: 50%;
    top: 50%;
    color: #21272b;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
    font-size: 1.5em;
}

@keyframes arrowRight {
    0% {
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }

    50% {
        -webkit-transform: translate(-10px, -50%);
        transform: translate(-10px, -50%);
    }

    100% {
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
}

.swiper-button-next:hover i,
.swiper-button-prev:hover i {
    -webkit-animation: arrowRight 1s infinite;
    animation: arrowRight 1s infinite;
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background-image: none;
    background-color: #f2f3f3;
    z-index: 2;
    cursor: pointer;
}

@media (min-width: 1200px) {

    .swiper-button-next,
    .swiper-button-prev {
        background-color: #eff4f9;
        position: absolute;
        top: 50%;
        width: 50px;
        height: 50px;
        z-index: 10;
        cursor: pointer;
    }
}

/* swiper Related News */

.single__post__slider {
    position: relative;
    margin: 1rem 0rem;
}

.single__post__grid {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.single__post__grid:after {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0.5rem;
    left: 0;
    top: 0;
    content: "";
    background: rgb(26, 38, 56);
    background: -moz-linear-gradient(180deg, rgba(26, 38, 56, 0) 50%, rgba(26, 38, 56, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(26, 38, 56, 0) 50%, rgba(26, 38, 56, 1) 100%);
    background: linear-gradient(180deg, rgba(26, 38, 56, 0) 50%, rgba(26, 38, 56, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1a2638", endColorstr="#1a2638", GradientType=1);
}

.single__post__image {
    margin: auto;
    width: 100%;
    height: auto;
    display: block;
    max-width: none;
    width: -webkit-calc(100% + 35px);
    width: calc(100% + 35px);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-30px, 0, 0) scale(1.05);
    transform: translate3d(-30px, 0, 0) scale(1.05);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
/*     max-height: 235px;
    min-height: 235px; */
    object-fit: cover;
}

.single__post__slider:hover .single__post__image {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
    -webkit-filter: brightness(0.6);
    filter: brightness(0.6);
}

.single__post__caption {
    position: absolute;
    display: block;
    bottom: 10px;
    width: 90%;
    padding: 0 1em;
    z-index: 338;
}

.single__post__slider__title {
    font-size: 1.1em;
    color: #fff;
    font-weight: 900;
}

.single__post__slider__date {
    margin: .5em 0 0;
    font-size: .9em;
    letter-spacing: 0em;
    color: #fff;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 85%;
}

.single__post__slider .post__label a {
    color: #fff;
}


/* swiper pagination bullets */

.swiper-pagination-bullet {
    width: 20px;
    height: 8px;
    display: inline-block;
    border-radius: 5px;
    background: #7ba8bd;
    opacity: .5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #0e1111;
}


.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    width: 20px;
    height: 8px;
    display: inline-block;
    border-radius: 5px;
    background: #7ba8bd;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(.80);
    -ms-transform: scale(.80);
    transform: scale(.80);
}

.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
}

/* swiper postdetail */

.postslider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    border-radius: 0rem;
}

.postdetail-gallery {
    width: 100%;
    margin: 0px auto;
}

.postdetail-slider {
    width: 100%;
    margin: 0 0 10px 0;
}

.postdetail-slider .swiper-slide {
    width: 100%;
    height: auto;
}

.postdetail-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    border-radius: 0rem;
    object-fit: cover;
}

.postdetail-thumbs {
    width: 100%;
    padding: 0;
    overflow: hidden;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.postdetail-thumbs .swiper-slide {
    width: 200px;
    height: 80px;
    text-align: center;
    overflow: hidden;
    opacity: 0.3;
    cursor: pointer;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.postdetail-thumbs .swiper-slide:hover {
    opacity: 1;
}

.postdetail-thumbs .swiper-slide-active {
    opacity: 1;
}

.postdetail-thumbs .swiper-slide img {
    width: auto;
    height: 100%;
    border-radius: 0.25rem;
}

.postdetail-gallery .swiper-button-next,
.postdetail-gallery .swiper-button-prev {
    background-color: #f2f3f3;
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    z-index: 10;
    cursor: pointer;
}

@media (min-width: 1200px) {

    .postdetail-gallery .swiper-button-next,
    .postdetail-gallery .swiper-button-prev {
        background-color: #f2f3f3;
        position: absolute;
        top: 50%;
        width: 50px;
        height: 50px;
        z-index: 10;
        cursor: pointer;
    }
}

.postdetail-gallery .swiper-container:hover .swiper-button-prev,
.postdetail-gallery .swiper-container:hover .swiper-button-next {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 991px) {
    .postdetail-slider {
        min-height: 30vh;
    }
}

/* nav */
.position-sticky {
    position: sticky !important;
    position: -webkit-sticky !important;
    z-index: 1000;
}

.z-index-sticky {
    z-index: 99998;
}

.z-index-dropdown {
    z-index: 1030;
}

.lang .dropdown-menu {
    z-index: 1030 !important;
}

.dropdown,
.dropend,
.dropstart,
.dropup {
    position: relative
}

.fade {
    transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    }
}

.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none;
    }
}

.collapsing.collapse-horizontal {
    width: 0;
    height: auto;
    transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
    .collapsing.collapse-horizontal {
        transition: none;
    }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
    position: relative;
}

.dropdown-toggle {
    white-space: nowrap;
}

.dropdown-toggle:after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent
}

.dropdown-toggle:empty:after {
    margin-left: 0
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 12rem;
    padding: .5rem 0;
    margin: 0;
    font-size: .875rem;
    color: #7b809a;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 0 solid transparent;
    border-radius: .375rem
}

.input-group.date .dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 11rem;
    padding: .5rem 0;
    margin: 0;
    font-size: .875rem;
    color: #7b809a;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .375rem
}

.daterangepicker {
    z-index: 999998;
}

.dropdown-menu[data-bs-popper] {
    top: 100%;
    left: 0;
    margin-top: 1.625rem
}

.dropdown-menu-start {
    --bs-position: start
}

.dropdown-menu-start[data-bs-popper] {
    right: auto;
    left: 0
}

.dropdown-menu-end {
    --bs-position: end
}

.dropdown-menu-end[data-bs-popper] {
    right: 0;
    left: auto
}

@media (min-width: 576px) {
    .dropdown-menu-sm-start {
        --bs-position: start
    }

    .dropdown-menu-sm-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-sm-end {
        --bs-position: end
    }

    .dropdown-menu-sm-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media (min-width: 768px) {
    .dropdown-menu-md-start {
        --bs-position: start
    }

    .dropdown-menu-md-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-md-end {
        --bs-position: end
    }

    .dropdown-menu-md-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media (min-width: 992px) {
    .dropdown-menu-lg-start {
        --bs-position: start
    }

    .dropdown-menu-lg-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-lg-end {
        --bs-position: end
    }

    .dropdown-menu-lg-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media (min-width: 1200px) {

    .nav-item.dropdown.dropdown-hover,
    .nav-item.search {
        margin-left: 0.5rem !important;
    }

    .dropdown-menu-xl-start {
        --bs-position: start
    }

    .dropdown-menu-xl-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-xl-end {
        --bs-position: end
    }

    .dropdown-menu-xl-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media (min-width: 1400px) {
    .dropdown-menu-xxl-start {
        --bs-position: start
    }

    .dropdown-menu-xxl-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-xxl-end {
        --bs-position: end
    }

    .dropdown-menu-xxl-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media screen and (max-width: 1199px) {

    .nav-item.dropdown.dropdown-hover,
    .nav-item.search {
        margin-left: 0.25rem !important;
    }
}

@media screen and (max-width: 765px) {

    .nav-item.dropdown.dropdown-hover,
    .nav-item.search {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }
}

.dropup .dropdown-menu[data-bs-popper] {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 1.625rem
}

.dropup .dropdown-toggle:after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0;
    border-right: .3em solid transparent;
    border-bottom: .3em solid;
    border-left: .3em solid transparent
}

.dropup .dropdown-toggle:empty:after {
    margin-left: 0
}

.dropend .dropdown-menu[data-bs-popper] {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: 1.625rem
}

.dropend .dropdown-toggle:after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: 0;
    border-bottom: .3em solid transparent;
    border-left: .3em solid
}

.dropend .dropdown-toggle:empty:after {
    margin-left: 0
}

.dropend .dropdown-toggle:after {
    vertical-align: 0
}

.dropstart .dropdown-menu[data-bs-popper] {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: 1.625rem
}

.dropstart .dropdown-toggle:after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    display: none
}

.dropstart .dropdown-toggle:before {
    display: inline-block;
    margin-right: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: .3em solid;
    border-bottom: .3em solid transparent
}

.dropstart .dropdown-toggle:empty:after {
    margin-left: 0
}

.dropstart .dropdown-toggle:before {
    vertical-align: 0
}

.dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid transparent
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .3rem 1rem;
    clear: both;
    font-weight: 400;
    color: #53688b;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #344767;
    background-color: #f0f2f5
}

.dropdown-item.active,
.dropdown-item:active {
    color: #344767;
    text-decoration: none;
    background-color: #f0f2f5
}

.menu-item.menu-item-type-post_type.menu-item-object-page.current-menu-item .dropdown-item,
.menu-item.menu-item-type-taxonomy.menu-item-object-category.current-menu-item .dropdown-item {
    color: #344767;
    text-decoration: none;
    background-color: #f0f2f5;
    color: #f01452;
    border-radius: 0.25rem;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent
}

.dropdown-menu.show {
    display: block
}

.dropdown-header {
    display: block;
    padding: .5rem 1rem;
    margin-bottom: 0;
    font-size: .875rem;
    color: #6c757d;
    white-space: break-spaces;
}

.dropdown-item-text {
    display: block;
    padding: .3rem 1rem;
    color: #7b809a;
}

.dropdown-menu-dark {
    color: #dee2e6;
    background-color: #343a40;
    border-color: transparent
}

.dropdown-menu-dark .dropdown-item {
    color: #dee2e6
}

.dropdown-menu-dark .dropdown-item:focus,
.dropdown-menu-dark .dropdown-item:hover {
    color: #fff;
    background-color: hsla(0, 0%, 100%, .15)
}

.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item:active {
    color: #7b809a;
    background-color: transparent
}

.dropdown-menu-dark .dropdown-item.disabled,
.dropdown-menu-dark .dropdown-item:disabled {
    color: #adb5bd
}

.dropdown-menu-dark .dropdown-divider {
    border-color: transparent
}

.dropdown-menu-dark .dropdown-item-text {
    color: #dee2e6
}

.dropdown-menu-dark .dropdown-header {
    color: #adb5bd
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle
}

.btn-group-vertical>.btn,
.btn-group>.btn {
    position: relative;
    flex: 1 1 auto
}

.btn-group-vertical>.btn-check:checked+.btn,
.btn-group-vertical>.btn-check:focus+.btn,
.btn-group-vertical>.btn.active,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn:focus,
.btn-group-vertical>.btn:hover,
.btn-group>.btn-check:checked+.btn,
.btn-group>.btn-check:focus+.btn,
.btn-group>.btn.active,
.btn-group>.btn:active,
.btn-group>.btn:focus,
.btn-group>.btn:hover {
    z-index: 1
}

.btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.btn-toolbar .input-group {
    width: auto
}

.btn-group>.btn-group:not(:first-child),
.btn-group>.btn:not(:first-child) {
    margin-left: -1px
}

.btn-group>.btn-group:not(:last-child)>.btn,
.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group>.btn-group:not(:first-child)>.btn,
.btn-group>.btn:nth-child(n+3),
.btn-group>:not(.btn-check)+.btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.dropdown-toggle-split {
    padding-right: 1.125rem;
    padding-left: 1.125rem
}

.dropdown-toggle-split:after,
.dropend .dropdown-toggle-split:after,
.dropup .dropdown-toggle-split:after {
    margin-left: 0
}

.dropstart .dropdown-toggle-split:before {
    margin-right: 0
}

.btn-group-sm>.btn+.dropdown-toggle-split,
.btn-sm+.dropdown-toggle-split {
    padding-right: .75rem;
    padding-left: .75rem
}

.btn-group-lg>.btn+.dropdown-toggle-split,
.btn-lg+.dropdown-toggle-split {
    padding-right: 1.3125rem;
    padding-left: 1.3125rem
}

.btn-group-vertical {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group {
    width: 100%
}

.btn-group-vertical>.btn-group:not(:first-child),
.btn-group-vertical>.btn:not(:first-child) {
    margin-top: -1px
}

.btn-group-vertical>.btn-group:not(:last-child)>.btn,
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical>.btn-group:not(:first-child)>.btn,
.btn-group-vertical>.btn~.btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.btn-check:checked+.btn-outline-secondary,
.btn-check:active+.btn-outline-secondary,
.btn-outline-secondary:active,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show {
    color: #fff;
    background-color: #657789;
    border-color: #657789;
}

.btn-check:hover+.btn-outline-secondary,
.btn-check:hover+.btn-outline-secondary,
.btn-outline-secondary:hover,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show {
    color: #fff;
    background-color: #657789;
    border-color: #657789;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    color: #e91e63;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .nav-link {
        transition: none
    }
}

.nav-link:focus,
.nav-link:hover {
    color: #e91e63
}

.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    background: none;
    border: 1px solid transparent;
    border-top-left-radius: .375rem;
    border-top-right-radius: .375rem
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: #f0f2f5 #f0f2f5 #dee2e6;
    isolation: isolate
}

.nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.nav-pills .nav-link {
    background: none;
    border: 0;
    border-radius: .75rem
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #344767;
    background-color: #fff
}

.nav-fill .nav-item,
.nav-fill>.nav-link {
    flex: 1 1 auto;
    text-align: center
}

.nav-justified .nav-item,
.nav-justified>.nav-link {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
    width: 100%
}

.tab-content>.tab-pane {
    display: none
}

.tab-content>.active {
    display: block
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    box-shadow: none;
}

.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-lg,
.navbar>.container-md,
.navbar>.container-sm,
.navbar>.container-xl,
.navbar>.container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between
}

/* #topnavbar a {
    color: #53688b;
} */

.navbar-brand {
    padding-top: .40625rem;
    padding-bottom: .40625rem;
    margin-right: 1rem;
    font-size: 1.5rem;
    white-space: nowrap;
    color: #53688b;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
	width: 30%;
    text-overflow: ellipsis;
    overflow: hidden;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0
}

.navbar-nav .dropdown-menu {
    position: static
}

.navbar-text {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center
}

.navbar-toggler {
    padding: .25rem .25rem;
    font-size: 1.125rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .5rem;
    transition: box-shadow .15s ease-in-out
}

@media screen and (max-width: 991px) {
    .navbar-nav {
        display: flex;
        flex-direction: column;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        max-height: 85vh;
        overflow-y: auto;
    }
	.navbar-brand {
	font-size: 1.2rem;
	width: 80%;
}
}

@media (prefers-reduced-motion:reduce) {
    .navbar-toggler {
        transition: none
    }
}

.navbar-toggler:hover {
    text-decoration: none
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 .2rem
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100%
}

.navbar-nav-scroll {
    max-height: var(--bs-scroll-height, 75vh);
    overflow-y: auto
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-sm .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-sm .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-sm .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-sm .navbar-toggler,
    .navbar-expand-sm .offcanvas-header {
        display: none
    }

    .navbar-expand-sm .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        flex-grow: 1;
        visibility: visible !important;
        background-color: transparent;
        border-right: 0;
        border-left: 0;
        transition: none;
        transform: none
    }

    .navbar-expand-sm .offcanvas-bottom,
    .navbar-expand-sm .offcanvas-top {
        height: auto;
        border-top: 0;
        border-bottom: 0
    }

    .navbar-expand-sm .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible
    }
}

@media (min-width: 768px) {
    .navbar-expand-md {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-md .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-md .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-md .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-md .navbar-toggler,
    .navbar-expand-md .offcanvas-header {
        display: none
    }

    .navbar-expand-md .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        flex-grow: 1;
        visibility: visible !important;
        background-color: transparent;
        border-right: 0;
        border-left: 0;
        transition: none;
        transform: none
    }

    .navbar-expand-md .offcanvas-bottom,
    .navbar-expand-md .offcanvas-top {
        height: auto;
        border-top: 0;
        border-bottom: 0
    }

    .navbar-expand-md .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-lg .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-lg .navbar-toggler,
    .navbar-expand-lg .offcanvas-header {
        display: none
    }

    .navbar-expand-lg .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        flex-grow: 1;
        visibility: visible !important;
        background-color: transparent;
        border-right: 0;
        border-left: 0;
        transition: none;
        transform: none
    }

    .navbar-expand-lg .offcanvas-bottom,
    .navbar-expand-lg .offcanvas-top {
        height: auto;
        border-top: 0;
        border-bottom: 0
    }

    .navbar-expand-lg .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible
    }
}

@media (min-width: 1200px) {
    .navbar-expand-xl {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-xl .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-xl .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-xl .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-xl .navbar-toggler,
    .navbar-expand-xl .offcanvas-header {
        display: none
    }

    .navbar-expand-xl .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        flex-grow: 1;
        visibility: visible !important;
        background-color: transparent;
        border-right: 0;
        border-left: 0;
        transition: none;
        transform: none
    }

    .navbar-expand-xl .offcanvas-bottom,
    .navbar-expand-xl .offcanvas-top {
        height: auto;
        border-top: 0;
        border-bottom: 0
    }

    .navbar-expand-xl .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible
    }
}

@media (min-width: 1400px) {
    .navbar-expand-xxl {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-xxl .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-xxl .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-xxl .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-xxl .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-xxl .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-xxl .navbar-toggler,
    .navbar-expand-xxl .offcanvas-header {
        display: none
    }

    .navbar-expand-xxl .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        flex-grow: 1;
        visibility: visible !important;
        background-color: transparent;
        border-right: 0;
        border-left: 0;
        transition: none;
        transform: none
    }

    .navbar-expand-xxl .offcanvas-bottom,
    .navbar-expand-xxl .offcanvas-top {
        height: auto;
        border-top: 0;
        border-bottom: 0
    }

    .navbar-expand-xxl .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible
    }
}

.navbar-expand {
    flex-wrap: nowrap;
    justify-content: flex-start
}

.navbar-expand .navbar-nav {
    flex-direction: row
}

.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem
}

.navbar-expand .navbar-nav-scroll {
    overflow: visible
}

.navbar-expand .navbar-collapse {
    display: flex !important;
    flex-basis: auto
}

.navbar-expand .navbar-toggler,
.navbar-expand .offcanvas-header {
    display: none
}

.navbar-expand .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none
}

.navbar-expand .offcanvas-bottom,
.navbar-expand .offcanvas-top {
    height: auto;
    border-top: 0;
    border-bottom: 0
}

.navbar-expand .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible
}

.navbar-light .navbar-brand,
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
    color: #0e1111;
    font-size: .8em;
    font-weight: 450;
    padding: 0.5rem 1rem;
}

.navbar-light .navbar-nav .nav-link {
    color: #344767
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: rgba(52, 71, 103, .7)
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(52, 71, 103, .3)
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
    color: rgba(52, 71, 103, .9)
}

.navbar-light .navbar-toggler {
    color: #344767;
    border-color: rgba(52, 71, 103, .1)
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23344767' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
}

.navbar-light .navbar-text {
    color: #344767
}

.navbar-light .navbar-text a,
.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
    color: rgba(52, 71, 103, .9)
}

.navbar-dark .navbar-brand,
.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
    color: #fff
}

.navbar-dark .navbar-nav .nav-link {
    color: hsla(0, 0%, 100%, .85)
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: hsla(0, 0%, 100%, .75)
}

.navbar-dark .navbar-nav .nav-link.disabled {
    color: hsla(0, 0%, 100%, .25)
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show>.nav-link {
    color: #fff
}

.navbar-dark .navbar-toggler {
    color: hsla(0, 0%, 100%, .85);
    border-color: hsla(0, 0%, 100%, .1)
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
}

.navbar-dark .navbar-text {
    color: hsla(0, 0%, 100%, .85)
}

.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover {
    color: #fff
}

@media (min-width: 992px) {

    .dropdown .dropdown-menu,
    .dropend .dropdown-menu,
    .dropstart .dropdown-menu,
    .dropup .dropdown-menu {
        /* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05); */
        box-shadow: 0 -3px 15px -3px rgba(0, 0, 0, .1), 0 5px 10px -3px rgba(0, 0, 0, .05);
        transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .2s cubic-bezier(.4, 0, .2, 1) !important;
        cursor: pointer
    }

    .dropdown .dropdown-toggle:after,
    .dropend .dropdown-toggle:after,
    .dropstart .dropdown-toggle:after,
    .dropup .dropdown-toggle:after {
        content: "\f107";
        font: normal normal normal 14px/1 "Font Awesome 5 Free";
        border: none;
        vertical-align: middle;
        font-weight: 600
    }

    .dropdown .dropdown-toggle.show:after,
    .dropend .dropdown-toggle.show:after,
    .dropstart .dropdown-toggle.show:after,
    .dropup .dropdown-toggle.show:after {
        transform: rotate(180deg)
    }

    .dropdown .dropdown-toggle:after,
    .dropend .dropdown-toggle:after,
    .dropstart .dropdown-toggle:after,
    .dropup .dropdown-toggle:after {
        transition: .3s ease
    }

    .dropdown.dropdown-hover .dropdown-menu,
    .dropdown .dropdown-menu {
        display: block;
        position: absolute;
        opacity: 0;
        transform-origin: 0 0;
        inset: 0 auto auto 0;
        margin-top: 2.8125rem !important;
        pointer-events: none;
        transform: scale(.95) !important;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: transform, box-shadow;

    }

    .dropdown.dropdown-hover .dropdown-menu .dropdown.dropdown-hover .dropdown-menu,
    .dropdown.dropdown-hover .dropdown-menu .dropdown .dropdown-menu,
    .dropdown .dropdown-menu .dropdown.dropdown-hover .dropdown-menu,
    .dropdown .dropdown-menu .dropdown .dropdown-menu {
        margin-top: 0 !important
    }

    .dropdown.dropdown-hover:hover>.dropdown-menu,
    .dropdown .dropdown-menu.show {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transform: scale(1) !important
    }

    .dropdown.dropdown-hover:hover>.dropdown-menu:before,
    .dropdown .dropdown-menu.show:before {
        top: -19px
    }

    .dropdown.dropdown-hover:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -24px;
        width: 100%;
        height: 100%
    }

    .dropdown:not(.dropdown-hover) .dropdown-menu.show {
        margin-top: 2.8125rem !important
    }

    .dropdown .dropdown-menu:before {
        font-family: "Font Awesome 5 Free";
        content: "\f0d8";
        position: absolute;
        top: 0;
        left: 28px;
        right: auto;
        font-size: 22px;
        color: #fff;
        transition: top .35s ease;
        font-weight: 600;
    }

    .dropdown .dropdown-item .arrow {
        transform: rotate(-90deg)
    }

    .dropdown-item {
        transition: background-color .3s ease, color .3s ease
    }
}

@media (max-width: 991.98px) {
    .navbar-toggler+.navbar-collapse .dropdown:not(.nav-item) .dropdown-menu {
        display: block;
        opacity: 0;
        top: 0;
        transform-origin: 0 0;
        pointer-events: none;
        transform: scale(.95) !important;
        transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .2s cubic-bezier(.4, 0, .2, 1) !important;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: transform, box-shadow;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05)
    }

    .navbar-toggler+.navbar-collapse .dropdown:not(.nav-item) .dropdown-menu:before {
        font-family: "Font Awesome 5 Free";
        content: "\f0d8";
        position: absolute;
        top: 0;
        left: 28px;
        right: auto;
        font-size: 22px;
        color: #fff;
        transition: top .35s ease
    }

    .navbar-toggler+.navbar-collapse .dropdown:not(.nav-item):not(.dropdown-hover) .dropdown-menu {
        margin-top: 2.8125rem !important
    }

    .navbar-toggler+.navbar-collapse .dropdown:not(.nav-item) .dropdown-menu.show {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transform: scale(1) !important
    }

    .navbar-toggler+.navbar-collapse .dropdown:not(.nav-item) .dropdown-menu.show:before {
        top: -20px
    }

    .navbar-toggler+.navbar-collapse .dropdown.nav-item .dropdown-menu {
        background-color: transparent;
        overflow-y: hidden;
        position: relative;
        overflow-x: hidden;
    }

    .dropdown .dropdown-menu {
        opacity: 0;
        top: 0;
        transform-origin: 0 0;
        pointer-events: none;
        transform: scale(.95) !important;
        transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .2s cubic-bezier(.4, 0, .2, 1) !important;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: transform, box-shadow;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05)
    }

    .dropdown .dropdown-menu:before {
        font-family: "Font Awesome 5 Free";
        content: "\f0d8";
        position: absolute;
        top: 0;
        left: 28px;
        right: auto;
        font-size: 22px;
        color: #fff;
        transition: top .35s ease
    }

    .dropdown:not(.dropdown-hover) .dropdown-menu {
        margin-top: 2.8125rem !important
    }

    .dropdown .dropdown-menu.show {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transform: scale(1) !important
    }

    .dropdown .dropdown-menu.show:before {
        top: -20px
    }

    .dropdown.nav-item .dropdown-menu {
        position: absolute
    }

    .dropdown.nav-item .dropdown-menu-animation {
        display: block;
        height: 0;
        transition: all .35s ease;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        opacity: 0
    }

    .dropdown.nav-item .dropdown-menu-animation.show {
        height: auto;
        opacity: 1
    }
}

.dropdown-menu li {
    position: relative
}

.dropdown.dropdown-subitem:after {
    left: 100%;
    bottom: 0;
    width: 50%
}

.dropdown .dropdown-menu .dropdown-item+.dropdown-menu:before {
    transform: rotate(-90deg);
    left: 0;
    top: 0;
    z-index: -1;
    transition: left .35s ease
}

.dropdown .dropdown-menu.dropdown-menu-end {
    right: 0 !important;
    left: auto !important
}

.dropdown .dropdown-menu.dropdown-menu-end:before {
    right: 28px;
    left: auto
}

.dropdown.dropdown-subitem:hover .dropdown-item+.dropdown-menu:before {
    left: -8px
}

.dropdown>.dropdown-menu .dropdown-item+.dropdown-menu {
    transform: scale(1) !important
}

.dropdown .dropdown-menu .dropdown-item+.dropdown-menu {
    right: -214px;
    left: auto;
    top: 0
}

.dropdown-image {
    background-size: cover
}

@media (min-width: 992px) {
    .dropdown-xl {
        min-width: 40rem
    }

    .dropdown-lg {
        min-width: 23rem
    }

    .dropdown-md {
        min-width: 15rem
    }
}

@media (max-width: 1199.98px) {
    .dropdown-lg-responsive {
        min-width: 19rem
    }
}

.dropup .dropdown-menu {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .2s cubic-bezier(.4, 0, .2, 1) !important;
    cursor: pointer;
    top: auto !important;
    bottom: 100% !important;
    margin-bottom: .5rem !important;
    display: block;
    opacity: 0;
    transform-origin: bottom;
    pointer-events: none;
    transform: scale(.95) !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, box-shadow
}

.dropup .dropdown-menu.show {
    pointer-events: auto;
    transform: scale(1) !important;
    opacity: 1
}

.dropup .dropdown-menu.show:after {
    bottom: -20px
}

.dropup .dropdown-menu:after {
    font-family: "Font Awesome 5 Free";
    content: "\f0d7";
    position: absolute;
    z-index: -1;
    bottom: 22px;
    left: 28px;
    right: auto;
    font-size: 22px;
    color: #fff;
    transition: bottom .35s ease
}

.navbar {
    background: transparent;
}

.navbar .nav-link {
    color: #53688b;
    font-size: .9rem
}

.navbar .nav-link {
    padding: .5rem .5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.navbar.navbar-absolute {
    position: absolute;
    width: 100%;
    z-index: 1
}

.navbar.navbar-transparent .nav-link,
.navbar.navbar-transparent .nav-link i {
    color: #fff
}

.navbar.navbar-transparent .nav-link:focus,
.navbar.navbar-transparent .nav-link:hover {
    color: hsla(0, 0%, 100%, .75)
}

.navbar.navbar-transparent .navbar-toggler .navbar-toggler-icon .navbar-toggler-bar {
    background: #fff
}

.navbar.navbar-transparent .navbar-collapse {
    border-radius: .75rem
}

.navbar.navbar-dark .navbar-collapse.collapsing .dropdown-header.text-dark,
.navbar.navbar-dark .navbar-collapse.show .dropdown-header.text-dark {
    color: #fff !important
}

.navbar .sidenav-toggler-inner {
    width: 18px
}

.navbar .sidenav-toggler-inner .sidenav-toggler-line {
    transition: all .15s ease;
    background: #7b809a;
    border-radius: .1rem;
    position: relative;
    display: block;
    height: 2px
}

.navbar .sidenav-toggler-inner .sidenav-toggler-line:not(:last-child) {
    margin-bottom: 3px
}

.g-sidenav-show.g-sidenav-pinned .navbar .sidenav-toggler-inner .sidenav-toggler-line:first-child,
.g-sidenav-show.g-sidenav-pinned .navbar .sidenav-toggler-inner .sidenav-toggler-line:last-child {
    width: 13px;
    transform: translateX(5px)
}

.navbar-light {
    background-color: #fff !important;
    border-bottom: 1px solid #ddd;
    background: #fff;
}

.navbar-light .navbar-toggler {
    border: none
}

.navbar-light .navbar-toggler:focus {
    box-shadow: none
}

.navbar-toggler .navbar-toggler-icon {
    background-image: none
}

.navbar-toggler .navbar-toggler-icon .navbar-toggler-bar {
    display: block;
    position: relative;
    width: 22px;
    height: 1px;
    border-radius: 1px;
    background: #53688b;
    transition: all .2s;
    margin: 0 auto
}

.navbar-toggler .navbar-toggler-icon .navbar-toggler-bar.bar2,
.navbar-toggler .navbar-toggler-icon .navbar-toggler-bar.bar3 {
    margin-top: 7px
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-bar.bar1 {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
    margin-top: 4px
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-bar.bar2 {
    opacity: 0
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-bar.bar3 {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
    margin-top: 3px
}

@media (max-width: 991.98px) {
    .navbar {
        background: transparent;
    }

    .navbar-collapse .navbar-nav {
        width: 100%
    }

    .navbar.navbar-transparent .navbar-collapse {
        padding-top: .5rem;
        padding-bottom: .5rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05)
    }

    .navbar.navbar-transparent .navbar-collapse.collapsing,
    .navbar.navbar-transparent .navbar-collapse.show {
        background: #fff
    }

    .navbar.navbar-transparent .navbar-collapse.show .nav-link,
    .navbar.navbar-transparent .navbar-collapse.show i {
        color: #344767
    }

    .g-sidenav-show .navbar:not(.sidenav).navbar-main .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .g-sidenav-show .navbar:not(.sidenav).navbar-main .navbar-nav {
        flex-direction: row
    }

    .navbar .navbar-collapse .navbar-nav .dropdown .dropdown-menu {
        box-shadow: none !important
    }

    .navbar .navbar-collapse .navbar-nav .dropdown .dropdown-menu:before {
        display: none !important
    }
}

@media (max-width: 767.98px) {
    .navbar-collapse {
        position: relative
    }

    .navbar-collapse .navbar-nav {
        width: 100%
    }

    .navbar-collapse .navbar-nav .nav-item.dropdown {
        position: static
    }

    .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu {
        left: 0;
        right: 0
    }

    .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu.show:before {
        content: none
    }
}

@media (max-width: 575.98px) {
    .navbar-nav .nav-item.dropdown .dropdown-menu {
        left: 0;
        right: auto
    }
}

.nav-item .nav-link .item-in-postt-count {
    display: inline-block;
    font-size: 11px;
    background: #f01452;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0;
    font-weight: 600;
}

/*  */
.postt-sup-count {
    display: inline-block;
    font-size: 11px;
    background: #b8860b;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0;
    font-weight: 600;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: inherit;
    line-height: 23px;
    border: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered img,
.select2-container--default .select2-selection--single .select2-selection__rendered svg {
    vertical-align: inherit !important;
}

.select2-container--default .select2-selection--single {
    background-color: transparent;
    border: none !important;
    border-radius: 0;
}

.select2-dropdown {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 0;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -2px rgb(0 0 0 / 5%);
}

.select2-container--open .select2-dropdown--below {
    border-top: 1px solid #ddd;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.flagcont .select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* select2 arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: transparent;
    border-style: none;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b:before {
    content: "\f107";
    font-family: 'Font Awesome 5 Free';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: absolute;
    top: -7px;
    color: inherit;
    margin-left: auto !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    left: 30px;
    width: 60px;
    font-size: 90%;
}

.select2-container--open .select2-dropdown--below {
    border-top: 1px solid #ddd;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    min-width: 82px !important;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true] {
    color: #fff;
    background-color: #657789;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #7e9cb9;
    color: white;
}

.select2-container--open .select2-dropdown.select2-dropdown--below {
    z-index: 999988;
}

/*  */
#LeftNav .navbar-brand .img-profile {
    max-width: 10rem;
    max-height: 10rem;
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    animation: borderanim 10s infinite;
    overflow: hidden;
}

@-moz-keyframes borderanim {
    0% {
        border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
        /* box-shadow: 15px 15px 50px rgba(0,0,0,0.2); */
    }

    25% {
        border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
        /* box-shadow: -10px -5px 50px rgba(0,0,0,0.2); */
    }

    75% {
        border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
    }
}

@-webkit-keyframes borderanim {
    0% {
        border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
        /* box-shadow: 15px 15px 50px rgba(0,0,0,0.2); */
    }

    25% {
        border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
        /*  box-shadow: -10px -5px 50px rgba(0,0,0,0.2); */
    }

    75% {
        border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
    }
}

@-o-keyframes borderanim {
    0% {
        border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
        /* box-shadow: 15px 15px 50px rgba(0,0,0,0.2); */
    }

    25% {
        border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
        /* box-shadow: -10px -5px 50px rgba(0,0,0,0.2); */
    }

    75% {
        border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
    }
}

@keyframes borderanim {
    0% {
        border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
        /* box-shadow: 15px 15px 50px rgba(0,0,0,0.2); */
    }

    25% {
        border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
        /* box-shadow: -10px -5px 50px rgba(0,0,0,0.2); */
    }

    75% {
        border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
    }
}

/* section */
@media screen and (max-width: 990px) {}

.fixed-alert {
    position: fixed;
    margin: auto;
    top: 100px;
    z-index: 99998;
    left: calc(50% - 150px);
    display: block;
    transform: translate(0, -50%);
    width: 300px;
}

.fixed-alert span {
    font-weight: 800;
}

.whitebg {
    background: #fff;
}

.mainbgrev {
    background: rgb(223, 233, 243);
    background: -moz-linear-gradient(180deg, rgba(223, 233, 243, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(223, 233, 243, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(180deg, rgba(223, 233, 243, 1) 0%, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dfe9f3", endColorstr="#ffffff", GradientType=1);
}

.page-title {
    color: rgba(52, 58, 64, 1);
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 5rem;
}

/*  */
.item-tophover {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 15px;
    margin-bottom: 25px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
}

.item-tophover:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

/* ueffctver */
@-webkit-keyframes ueffctver {
    16.65% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }

    33.3% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }

    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }

    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes ueffctver {
    16.65% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }

    33.3% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }

    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }

    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.ueffctver {
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.ueffctver .ueffctver-text {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.ueffctver:hover .ueffctver-text,
.ueffctver:focus .ueffctver-text,
.ueffctver:active .ueffctver-text {
    -webkit-animation-name: ueffctver;
    animation-name: ueffctver;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* info */
.info-cont {
    text-align: center;
}

.info-cont .icon {
    color: #f01452;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    font-size: 2rem;
}

.info-cont .info-title {
    color: #0e1111;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    font-size: 1.5rem;
}

.info-cont .description {
    color: #657789;
    font-weight: 400;
}

.info-cont:hover .icon {
    transform: translate3d(0, -.5rem, 0);
}

.info-cont:hover .info-title {
    color: #f01452;
}

/* promo */
.promo-cont {
    margin-top: 1rem;
    overflow: hidden;
    position: relative;
}

.promo-cont img {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-filter: blur(0);
    filter: blur(0);
    /* 	-webkit-transform: translate3d(-50px,0,0);
transform: translate3d(-50px,0,0); */
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.overlaybgone {
    background-color: #dee0e2;
}

.overlaybgtwo {
    background-color: #d0e0f5;
}

.overlaybgthree {
    background-color: #fad9df;
}

.overlay-text {
    color: #000;
    font-size: 20px;
    font-weight: 800;
    position: absolute;
    top: 50%;
    left: calc(50% - 55px);
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    text-align: center;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.promo-cont:hover .overlay-text {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.promo-cont:hover img {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    border-radius: 0.25rem !important;
}

.promo-cont:hover .overlay {
    opacity: 0.8;
    border-radius: 0.25rem !important;
}

/* newsletter */

.newsletter-bg {
    background: #53688b;
}

.newsletter-one {
    /* background: #0e1111; */
    min-height: 8rem;
}

.newsletter-two {
    /* background: #f01452; */
    min-height: 8rem;
}

.subscribe-cont {
    padding: 0 20px;
}

.newsletter-one .title {
    padding: 0 20px;
    text-align: center;
    color: rgba(255, 255, 255, .8)
}

.newsletter-two .input-group {
    margin: 0;
    position: relative;
}

.newsletter-two .input-group .form-control:last-child {
    border-left: 0 none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.newsletter-two .input-group>.input-group-prepend>.input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.newsletter-two .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.newsletter-two .input-group-text:first-child {
    border-right: 0 none;
}

.newsletter-two .input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 50rem;
}

.newsletter-two .btn-subscribe {
    display: inline-block;
    font-weight: 300;
    line-height: 2.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: #fff;
    border: 1px solid #fff;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    text-transform: uppercase;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    margin-left: 1rem;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.newsletter-two .btn-subscribe:hover {
    color: #fff;
    background-color: #212529;
    border: 1px solid #212529;

}

.newsletter-two .input-group .input-group-prepend {
    margin-right: 0;
    display: -ms-flexbox;
    display: flex
}

/* ads */

.ads-background {
    background-size: cover;
    background-position: 50%;
    position: relative;
    width: 100%;
    min-height: 550px;
}

.ads-one {}

.ads-two {
    margin: 30px;
}

.ads-one a {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    padding: 30px;
    text-align: center;
}

.tvbg-container {
    position: relative;
}

.tvbg {
    position: absolute;
    top: 90px;
}

@media screen and (max-width: 765px) {
    .ads-background {
        min-height: 450px;
    }

    .tvbg {
        top: 40px;
    }

    .ads-one a {
        top: 90%;
        -ms-transform: translateY(-90%);
        transform: translateY(-90%);
    }
}

/* breadcrumb */

.breadcrumbcont {
    padding: 3rem;
    background: #f3f3f3;
    margin-top: 4rem;
}

.breadcrumbcont .info-title {
    font-weight: 300;
}

.breadcrumbcont-background {
    background-size: cover;
    background-position: 50%;
    position: relative;
    width: 100%;
    min-height: 300px;
}

.breadcrumbcont-background:after {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    content: "";
    background-color: rgba(14, 17, 17, 0.4);
}

@media screen and (max-width: 765px) {
    .breadcrumbcont .info-title {
        text-align: center;
    }
}

/* postdetail */

.postdetail .post-name {
    margin-top: 1rem;
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

.post__price {
    color: #f01452;
    font-weight: 700;
}

.post-cont del {
    color: #657789;
}

.post-price .deal-type {
    color: #657789;
    text-transform: uppercase;
    font-weight: 300;
    /* font-size: 0.65em; */
}

.product-rating {
    font-family: "Font Awesome 5 Free";
    font-size: 1em;
    direction: rtl;
    cursor: pointer;
    /* float: left; */
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: #657789;
}

.rate-category-cont {
    border: 1px solid #e7edf3;
    border-radius: 0.25rem;
    margin: 2rem 0;
}

.location-rating,
.accuracy-rating,
.facilities-rating,
.communication-rating {
    font-family: "Font Awesome 5 Free";
    font-size: 1em;
    direction: rtl;
    cursor: pointer;
    /* float: left; */
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: #657789;
}

.product-rating>span {
    display: inline-block;
    position: relative;
    padding: 3px;
}

.location-rating>span,
.accuracy-rating>span,
.facilities-rating>span,
.communication-rating>span {
    display: inline-block;
    position: relative;
    padding: 3px;
}

.rating {
    color: orange;
}

.text-grey {
    color: #657789;
}

.product-rating>span:hover:before,
.product-rating>span:hover~span:before {
    font-family: "Font Awesome 5 Free";
    content: "\f005";
    position: absolute;
    font-weight: 900;
    color: #ffc107;
}

.location-rating>span:hover:before,
.location-rating>span:hover~span:before,
.accuracy-rating>span:hover:before,
.accuracy-rating>span:hover~span:before,
.facilities-rating>span:hover:before,
.facilities-rating>span:hover~span:before,
.communication-rating>span:hover:before,
.communication-rating>span:hover~span:before {
    font-family: "Font Awesome 5 Free";
    content: "\f005";
    position: absolute;
    font-weight: 900;
    color: #ffc107;
}

.post-review {
    color: #657789;
}

.postdetail-desc {
    color: #657789;
    margin: 1rem 0;
    font-weight: 400;
}

.postdetail .post-additional-info {
    margin-bottom: 1rem;
}

.postdetail .post-additional-info span {
    color: #53688b;
    margin-right: 10px;
    font-weight: 300;
    font-size: 1.3rem;
}

.postdetail .post-price {
    color: #f01452;
    font-weight: 900;
}

.productimg-action {
    position: absolute;
    z-index: 110;
    top: 5%;
    right: 5%;
    display: flex;
    flex-direction: column;
    text-align: center;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.productimg-action-icon {
    height: 2.375rem;
    min-width: 2.375rem;
    width: 2.375rem;
    padding: 0;
    font-size: .9375rem;
    overflow: hidden;
    position: relative;
    line-height: normal;
    background: #fff;
    margin-top: 0.5rem;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.productimg-action-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-12px, -12px);
    line-height: 1.5626rem;
    width: 23px;
}

/*  */

.product-addtopostt {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.btn.btn-outline-compare.compare-btn.comparedef {
    margin-left: 1rem;
}

@media screen and (max-width: 767px) {
    .SendEmailCont {
        margin-top: 1rem;
    }

    .btn-SendEmail {
        margin: auto;
    }

    .product-addtopostt button,
    .product-addtopostt input {
        margin-bottom: 0rem;
    }

    .product-addtopostt {
        justify-content: center;
    }

    .product-action {
        text-align: center;
    }

    .product-share {
        text-align: center;
    }

    .postdetail .postdetail-desc {
        text-align: justify;
    }

    .postdetail .post-name {
        text-align: center;
        margin-top: 1rem;
    }

    .postdetail .post__price {
        text-align: center;
    }

    .postdetail .post-review {
        color: #657789;
        text-align: center;
    }
}

.tech-table {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 1rem;
}

.post-cont .action-cont {
    position: relative;
    z-index: 110;
    top: 0;
    right: 0;
    display: inline-block;
    flex-direction: unset;
    text-align: left;
    opacity: 1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.post-cont .btn-action-icon {
    box-shadow: none;
    border: 1px solid #596a7a;
    margin-right: 0.5rem;
}

.post-cont .btn-action-icon.btnlink .fas,
.post-cont .btn-action-icon.btnlink .fab,
.post-cont .btn-action-icon.btnlink .far {
    color: #596a7a;
}

.post-cont .btn-action-icon:hover {
    border: #fff;
}

.post-cont .btn-action-icon:hover .fas,
.post-cont .btn-action-icon:hover .fab,
.post-cont .btn-action-icon:hover .far {
    color: #fff;
    transform: scale(1);
}

@media screen and (max-width: 765px) {
    .post-cont .action-cont {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* Additional Information */

.additional-info {
    margin: 4rem 0;
}

.review-itemhover {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 15px;
    margin-bottom: 25px;
    /* box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%); */
    transition: all .5s ease-in-out;
}

.review-itemhover:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.review-itemhover img {
    border-radius: 100%;
    width: 100px;
    height: auto;
    padding: 5px;
}

.review-itemhover .review-date {
    font-size: 1em;
    font-weight: 700;
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.review-itemhover .review-desc {
    font-size: 1em;
    margin-top: auto !important;
    margin-bottom: auto !important;
    padding: 10px;
    width: 80%;
}

.review-itemhover .review-desc .review-title {
    font-size: 1.5em;
    color: rgba(52, 58, 64, 1);
    font-weight: 700;
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.review-itemhover .review-desc p {
    overflow: hidden;
}

.infotab {
    margin: 0 0 3em 0;
}

.infotab.nav-tabs {
    border-bottom: 1px solid #657789;
}

.infotab.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #f01452;
    background-color: #fff;
    border-bottom: 1px solid #f01452;
}

.infotab .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #657789;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    border: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.infotab .nav-link:hover {
    color: #f01452;
    border-bottom: 1px solid #f01452;
}

.descriptiontab,
.postdetailstab,
.customerreviewstab {
    color: #657789;
    font-weight: 400;
}

.postdetailstab .list-group-item {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    color: #657789;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.user-review {
    font-size: 0.75rem;
}

@media all and (max-width: 1400px) {
    .infotab {
        margin: 0 0 3em 0;
        justify-content: center !important;
    }

    .review-itemhover {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px;
    }

    .review-itemhover .review-desc {
        text-align: center;
        width: 100%;
    }

    .review-itemhover .review-desc .review-title {
        text-align: center;
        height: 3em;
    }

    .review-itemhover .review-desc p {
        overflow: hidden;
        text-align: justify;
    }
}

/* pagination */


.pagination {
    text-align: center;
    display: block;
}

.pagination .page-numbers {
    display: flex;
    justify-content: center !important;
    list-style: none;
    border: 0;
    border-radius: 30px !important;
    transition: all .3s;
    padding: 0 11px;
    margin: 0 3px;
    min-width: 30px;
    text-align: center;
    box-shadow: none;
    height: 30px;
    line-height: 30px;
    color: #657789;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    background: transparent;
}

.pagination .page-numbers.current {
    z-index: 3;
    color: #fff;
    background-color: #f01452;
    border-color: #f01452;
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, .2);
}

.pagination .page-numbers .next,
.pagination .page-numbers .prev {
    font-size: 1.1rem;
}

/* review by category */

.numbercont {
    text-align: center;
    border: 1px solid #9eb7d0;
    border-radius: 0.25rem;
}

.numbercont .number {
    color: #f01452;
    text-decoration: none;
    font-weight: 900;
    font-family: Montserrat, sans-serif;
    font-size: 4rem;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}

.numbercont:hover .number,
.numbercont:focus .number,
.numbercont:active .number {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
}

.numbercont small {
    color: #657789;
    font-weight: 300;
}

.numbercont .title {
    text-decoration: none;
    font-weight: 900;
    font-family: Montserrat, sans-serif;
    font-size: 2rem;
    color: #657789;
}

.progress-cont {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center !important;
    align-items: center !important;
    padding: 1rem;
    margin-top: 5px;
}

.progress-left {
    display: block;
    min-width: 80%;
}

.progress-right {
    margin: 0.5rem 0 -20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.progress-cont .title {
    text-decoration: none;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
    font-size: 1rem;
    color: #657789;
}

.progress-cont .number {
    text-decoration: none;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
    font-size: 1rem;
    color: #657789;
}

/* Add To Wishlist / Compare */

.btn-outline-wishlist,
.btn-outline-compare {
    color: #657789;
    border: none;
    background: #fff;
    text-align: left;
    padding: 0;
    font-weight: 500;
}

.btn-outline-wishlist:hover,
.btn-outline-compare:hover {
    color: #f01452;
}

.wishlist-compare-active {
    color: #f01452 !important;
}

/* Comment */

.comment-cont {
    margin-top: 4rem;
}

.comment-title {
    font-weight: 500;
}

.comment-subtitle {
    font-weight: 400;
    font-size: 0.9rem;
}

.comment {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.comment .avatar {
    padding: 10px;
    text-align: center;
}

.comment-cont .avatar {
    padding: 10px;
    text-align: center;
}

.comment-cont .avatar img {
    margin: 0 auto;
    width: 80px;
    height: 80px;
    margin-right: 0;
    border-radius: 50%;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .3);
}

.comment-head {
    padding: 10px;
    margin: 1rem 0;
}

.comment-body {
    -ms-flex: 1;
    flex: 1;
}

.comment-footer {
    margin-top: 2rem;
}

.comment textarea.form-control {
    max-width: 100%;
    min-height: 150px;
    padding: 10px 10px 0 0;
    resize: vertical;
    border: none;
    border-bottom: 1px solid #859db4;
    border-radius: 0;
    line-height: 2;
}

.comment textarea.form-control:active,
.comment textarea.form-control:focus {
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid #f01452;
}

.comment .rate-title {
    text-align: center;
}

.comment-cont .rate-title {
    text-align: center;
}

.btn-outline-comment {
    padding: 0.5rem;
    font-size: 1rem;
    overflow: hidden;
    position: relative;
    border-radius: 30px !important;
    background: #f01452;
    color: #fff;
    border: 1px solid #f01452;
    font-weight: 400;
}

.btn-outline-comment:hover {
    background: #fff;
    color: #f01452;
    border: 1px solid #f01452;
}

@media all and (max-width: 576px) {
    .comment {
        display: block;
    }

    .comment .avatar {
        padding: 10px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .comment-cont .avatar img {
        margin-right: 0;
    }
}

/* postt */

.btn-SendEmail {
    padding: 0.5rem;
    font-size: 1rem;
    border-radius: 0.2rem;
    color: #f01452;
    border: 1px solid #f01452;
    background: #fff;
    outline: none;
    text-decoration: none;
    display: block;
    font-weight: 700;
}

.btn-SendEmail:hover,
.btn-SendEmail:focus,
.btn-SendEmail:active {
    color: #fff;
    border: 1px solid #f01452;
    background: #f01452;
    outline: none !important;
    box-shadow: none !important;
}

.btn-SendEmail-active {
    color: #fff;
    border: 1px solid #f01452;
    background: #f01452;
    outline: none !important;
    box-shadow: none !important;
}

.product {
    border: none !important;
}

.product img {
    height: 150px;
    width: auto;
    margin-bottom: -50px;
    margin-left: 1rem;
    transition: 0.5s;
}

.product:hover img {
    transform: scale(1.05) rotate(-10deg);
}

.product .postd-title {
    margin-top: 50px;
}

.img-in-postt {
    border-radius: .25rem;
    width: 100px;
    height: auto;
}

.check .img-in-postt {
    border-radius: .25rem;
    width: 80px;
    height: auto;
}

.check hr {
    margin: 0.5rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: 0.25;
}

.check .addeditems-title {
    color: #0e1111;
    font-weight: 400;
    font-size: 1em;
}

.form-row {
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
}

.item-in-postt-count {
    width: 23px;
    display: inline-grid;
}

.postt-header {
    color: rgba(52, 58, 64, 1);
    margin: 1rem;
    padding: 1rem;
}

.postt-title {
    color: rgba(52, 58, 64, 1);
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 5rem;
}

.postt-desc {
    color: #526a8e;
    font-size: 1em;
    font-weight: 600;
}

.addeditems-title {
    color: #0e1111;
    font-size: 1em;
    padding: 0;
}

.btn-outline-grey {
    color: #657789;
    border-color: #657789;
}

.btn-outline-grey:hover {
    color: #fff;
    border-color: #657789;
    background: #657789;
}

.addeditems-form {
    display: block;
    min-width: 50px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #657789;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #657789;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.addeditems-price {
    color: #526a8e;
    font-size: 1.3em;
    font-weight: 700;
    /*     width: 90px;  */
}

.addeditems-total {
    color: #526a8e;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.iteminposttcost {
    color: #526a8e;
    font-size: 1.5em;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.swal2-popup.swal2-toast {
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0.4em !important;
    overflow-y: hidden;
    background: #fff;
    box-shadow: 0 0 0.625em #d9d9d9;
}

.swal2-popup.swal2-toast .swal2-title {
    flex-grow: 1;
    justify-content: flex-start;
    margin: 0 0.6em;
    font-size: 1em;
    font-weight: 700;
}

body.swal2-toast-shown .swal2-container.swal2-top {
    z-index: 999998;
}

.postt-checkout {
    border-radius: 3rem;
    margin-top: 0.5em;
    font-size: 1.5rem;
    font-weight: 800;
}

.total.position-sticky.py-3.bg-white {
    color: rgba(52, 58, 64, 1);
    padding: 2.3rem;
}

.totaltwo.position-sticky.py-3.bg-white {
    color: rgba(52, 58, 64, 1);
    padding: 2.3rem;
}

.glyphicon.glyphicon-time:before {
    font-family: "Font Awesome 5 Free";
    content: "\f017";
    color: rgba(52, 58, 64, 1);
}

.glyphicon.glyphicon-calendar:before {
    font-family: "Font Awesome 5 Free";
    content: "\f133";
    color: rgba(52, 58, 64, 1);
}

.glyphicon.glyphicon-chevron-down:before {
    content: "↓";
    font-size: 1.3em;
    color: rgba(52, 58, 64, 1);
}

.glyphicon.glyphicon-chevron-up:before {
    content: "↑";
    font-size: 1.3em;
    color: rgba(52, 58, 64, 1);
}

.disabled-input {
    background-color: #fff !important;
    border: none !important;
}

@media all and (max-width: 991px) {
    .postt-title {
        color: rgba(52, 58, 64, 1);
        font-size: 1.3em;
        font-weight: 700;
        margin-bottom: 5rem;
    }

    .postt-checkout {
        font-weight: 800;
        font-size: 1.1rem;
    }
}

.checkout-product-color {
    display: inline-block;
    font-size: 11px;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0;
    font-weight: 600;
}

/* gallery  */
/* Hover Effect Ideas

[Article on Codrops](http://tympanus.net/codrops/?p=19292)

[Demo](http://tympanus.net/Development/HoverEffectIdeas/) 

*/
.grid {
    position: relative;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: center;
}

/* Common style */
.grid figure {
    position: relative;
    /* float: left; */
    overflow: hidden;
    /* margin: 10px 1%; */
    /* min-width: 320px; */
    max-width: 650px;
    max-height: 433px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    border-radius: 0.3rem;
}

.grid .img-hover-eff {
    position: relative;
    /* float: left; */
    overflow: hidden;
    /* margin: 10px 1%; */
    /* min-width: 320px; */
    max-width: 650px;
    max-height: 433px;
    width: 100%;
    background: black;
    text-align: center;
    cursor: pointer;
    border-radius: 0.3rem;
}

.grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 0.8;
}

.grid figure figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
    pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.grid figure figcaption>a {
    z-index: 100;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

.grid figure h4 {
    word-spacing: -0.15em;
    font-weight: 300;
}

.grid figure h4 span {
    font-weight: 800;
}

.grid figure h4,
.grid figure p {
    margin: 0;
}

.grid figure p {
    letter-spacing: 1px;
    font-size: 68.5%;
}

/*---------------*/
figure.img-hover-eff img {
    max-width: none;
    width: -webkit-calc(100% + 50px);
    width: calc(100% + 50px);
    opacity: 0.8;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
}

figure.img-hover-eff figcaption {
    text-align: left;
}

figure.img-hover-eff figcaption>div {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1em;
    width: 100%;
    height: 60%;
}

figure.img-hover-eff h4,
figure.img-hover-eff p {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
}

figure.img-hover-eff h4 {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}

figure.img-hover-eff p {
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
    transition: opacity 0.2s, transform 0.35s;
}

figure.img-hover-eff:hover img {
    opacity: 0.5;
}

figure.img-hover-eff:hover p {
    opacity: 1;
}

figure.img-hover-eff:hover img,
figure.img-hover-eff:hover h4,
figure.img-hover-eff:hover p {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

figure.img-hover-eff:hover p {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
}

@media all and (max-width: 1280px) {
    figure.img-hover-eff figcaption>div {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 10px;
        width: 100%;
        height: 80%;
    }
}

@media all and (max-width: 991px) {
    figure.img-hover-eff figcaption>div {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 10px;
        width: 100%;
        height: 50%;
    }
}

/*--- promo-eff ---*/
.grid .promo-eff img {
    opacity: 1;
}

.grid .promo-eff figcaption {
    padding: 1.5em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

figure.promo-eff:before {}


figure.promo-eff {}

figure.promo-eff:hover:before {}

figure.promo-eff img {
    max-width: none;
    width: -webkit-calc(100% + 20px);
    width: calc(100% + 20px);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

figure.promo-eff:hover img {
    /* opacity: 0.5;  */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

figure.promo-eff:hover h5 {
    color: #fff;
}

figure.promo-eff figcaption {
    text-align: left;
}

figure.promo-eff:hover figcaption::before {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

figure.promo-eff h4 {
    position: relative;
    overflow: hidden;
    padding: 50% 0 10px 0;
    color: #0e1111;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

figure.promo-eff h3::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    content: '';
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

figure.promo-eff:hover h3::after {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

figure.promo-eff p {
    color: #0e1111;
    font-weight: 500;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
}

figure.promo-eff:hover p {
    opacity: 1;
    color: #0e1111;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 1198px) {
    figure.promo-eff h4 {
        padding: 49% 0 5px 0;
        font-size: 1rem;
    }
}

@media screen and (max-width: 991px) {
    .grid .promo-eff figcaption {
        padding: 1rem;
    }

    figure.promo-eff h3 {
        font-size: 1rem;
    }

    figure.promo-eff h4 {
        padding: 50% 0 5px 0;
        font-size: 0.8rem;
    }

    figure.promo-eff p {
        font-size: 55%;
    }
}

@media screen and (max-width: 765px) {
    .grid .promo-eff figcaption {
        padding: 2em 1em;
    }

    figure.promo-eff h3 {}

    figure.promo-eff h4 {
        padding: 42% 0 2px 0;
        font-size: 1.2rem;
    }

    figure.promo-eff p {
        font-size: 68.5%;
    }
}

/*  */

.title-black-text {
    color: #53688b;
    font-weight: 700;
}

.desc-grei-text {
    color: rgb(158 183 208 / 100%);
    font-weight: 700;
}

/* news  */

#news .postd {
    border: 0;
    display: inline-block;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.postd-news {
    background-position: 50%;
    background-size: cover;
    text-align: center;
    min-height: 350px;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    display: block;
}

.postd-news:after {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    content: "";
    background-color: rgba(0, 0, 0, .5);
    border-radius: 0;
}

.postd-news .postd-body {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2rem 1.4rem;
    color: #fff;
    min-height: auto;
}

.postd-news .postd-body::before,
.postd-news .postd-body::after {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.postd-news .postd-body::before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

.postd-news .postd-body::after {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

.postd-news:hover .postd-body::before,
.postd-news:hover .postd-body::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.postd-news .postd-title {
    color: #fff;
    margin-top: 130px;
}

.postd-news a {
    color: #fff !important;
}

.postd-container .postd-content {
    width: 100%;
    float: left;
}

.postd-content {
    min-height: 350px;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    display: block;
}

.postd-content-first:before {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    z-index: 2;
    position: absolute;
    pointer-events: none;
    border-color: hsla(0, 0%, 100%, 0);
    border-left-color: #fff;
    border-width: 10px;
    margin-top: -10px;
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.postd-content-second:before {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    z-index: 2;
    position: absolute;
    pointer-events: none;
    border-color: hsla(0, 0%, 100%, 0);
    border-left-color: #fff;
    border-width: 10px;
    margin-top: -10px;
}

.postd-content:not(.postd-news) .postd-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    width: 85%;
}

.postd-content .postd-title a {
    color: #9eb7d0;
}

.postd-content .postd-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2rem 1.4rem;
    font-size: 1em;
    color: #ffc107;
    min-height: auto;
    font-weight: 600;
}

.postd-news .postd-footer {
    padding: 0.5rem 3rem;
    background-color: transparent;
    border: none;
}

.postd-content .postd-footer {
    padding: 0.5rem 3rem;
    background-color: #fff;
    border: none;
}

@media screen and (max-width: 991px) {
    .postd-news .postd-title {
        margin-top: 30px;
    }
}

/* modal  */
.modal {
    z-index: 99999;
}

.modal-backdrop {
    /*  background-color: #fff; */
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 0rem;
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border-bottom: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.modal-header .btn-close {
    padding: 0.5rem 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
    position: absolute;
    z-index: 11000;
    top: -5px;
    right: 20px;
}

.modal-header .btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: none;
    border: 0;
    border-radius: 0.25rem;
    opacity: 1;
}

.modal-header .btn-close::before {
    font-family: "Font Awesome 5 Free";
    content: "\f057";
    font-size: 30px;
    color: #000;
    z-index: 11000;
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: bold;
    background: transparent;
    border-radius: 50%;
    line-height: 50px;
    opacity: 1 !important;
    -webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}

.modal-header .btn-close:hover::before {
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
}

.modal-header .btn-close {
    padding: 0.5rem 1.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 0.5rem 1.5rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: bold;
    color: #f01452;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: 0;
    outline: 0;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 0rem 1rem;
}

/* sign in  */

#SignInModal .input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: transparent;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#SignInModal .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

#SignInModal .modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#SignInModal .postd {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: none;
    border-radius: 0;
}

#SignInModal .form-check label {
    padding-left: 10px;
}

#SignInModal p {
    color: #657789;
    font-weight: 500;
}

#SignInModal .sign-action {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

#SignInModal .sign-action-right {
    margin: 0.5rem 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

#SignInModal .sign-action-right a {
    color: #657789;
    font-weight: 400;
}

/* prc 
* [Article on Codrops](http://tympanus.net/codrops/?p=21991)
* Read more here: [License](http://tympanus.net/codrops/licensing/)
*/
.prcinput {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 0;
    /* max-width: 350px; */
    width: 100%;
    vertical-align: top;
}

.input__field {
    position: relative;
    display: block;
    float: right;
    padding: 0.8em;
    width: 60%;
    border: none;
    border-radius: 0;
    background: #f0f0f0;
    color: #aaa;
    font-weight: bold;
    -webkit-appearance: none;
    /* for box shadows to show on iOS */
}

.input__field:focus {
    outline: none;
}

.input__label {
    display: inline-block;
    float: right;
    padding: 0 1em;
    width: 40%;
    color: #6a7989;
    font-weight: bold;
    font-size: 80%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input__label-content {
    position: relative;
    display: block;
    padding: 1.6em 0;
    width: 100%;
}

.graphic {
    position: absolute;
    top: 0;
    left: 0;
    fill: none;
}

.input--prc {
    overflow: hidden;
    padding-bottom: 1em;
}

.input__field--prc {
    padding: 0.25em 0.5em;
    margin-top: 1.25em;
    width: 100%;
    background: #f1f4f8;
    color: #2F3238;
    font-size: 1.55em;
    opacity: 0;
}

.input__label--prc {
    width: 100%;
    text-align: left;
    position: absolute;
    top: 0em;
    pointer-events: none;
    overflow: hidden;
    padding: 0 0.25em;
    -webkit-transform: translate3d(1em, 2.75em, 0);
    transform: translate3d(1em, 2.75em, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

.input__label-content--prc {
    color: #fff;
    padding: 0.4em 0 0.25em;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

.input__label-content--prc::after {
    content: attr(data-content);
    position: absolute;
    font-weight: 800;
    top: 100%;
    left: 0;
    height: 100%;
    width: 100%;
    color: rgba(52, 58, 64, 1);
    padding: 0.25em 0;
    letter-spacing: 1px;
    /* 	font-size: 0.85em; */
}

.graphic--prc {
    fill: #6f7b8f;
    pointer-events: none;
    top: 1em;
    bottom: 0px;
    height: 4.5em;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.7s, fill 0.7s;
    transition: transform 0.7s, fill 0.7s;
    -webkit-transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
    transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
}

.input__field--prc:focus,
.input--filled .input__field--prc {
    -webkit-transition: opacity 0s 0.35s;
    transition: opacity 0s 0.35s;
    opacity: 1;
}

.input__field--prc:focus+.input__label--prc,
.input--filled .input__label--prc {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.input__field--prc:focus+.input__label--prc .input__label-content--prc,
.input--filled .input__label-content--prc {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.input__field--prc:focus~.graphic--prc,
.input--filled .graphic--prc {
    fill: #fff;
    -webkit-transform: translate3d(-66.6%, 0, 0);
    transform: translate3d(-66.6%, 0, 0);
}

/* .textarea-prc   */
.textarea-prc .input__field {
    position: relative;
    display: block;
    float: right;
    padding: 0.8em;
    width: 60%;
    border: none;
    border-radius: 0;
    background: #f0f0f0;
    color: #aaa;
    font-weight: bold;
    -webkit-appearance: none;
    /* for box shadows to show on iOS */
}

.textarea-prc .input__field:focus {
    outline: none;
}

.textarea-prc .input__label {
    display: inline-block;
    float: right;
    padding: 0 1em;
    width: 40%;
    color: #6a7989;
    font-weight: bold;
    font-size: 80%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.textarea-prc .input__label-content {
    position: relative;
    display: block;
    padding: 1.6em 0;
    width: 100%;
}

.textarea-prc .graphic {
    position: absolute;
    top: 0;
    left: 0;
    fill: none;
}

.textarea-prc .input--prc {
    overflow: hidden;
    padding-bottom: 1em;
}

.textarea-prc .input__field--prc {
    padding: 0.25em 0.5em;
    margin-top: 1.25em;
    width: 100%;
    background: #f1f4f8;
    color: #2F3238;
    font-size: 1.55em;
    opacity: 0;
}

.textarea-prc .input__label--prc {
    width: 100%;
    text-align: left;
    position: absolute;
    top: 0em;
    pointer-events: none;
    overflow: hidden;
    padding: 0.3em 0.25em;
    -webkit-transform: translate3d(1em, 2.75em, 0);
    transform: translate3d(1em, 2.75em, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

.textarea-prc .input__label-content--prc {
    color: #fff;
    padding: 0.4em 0 0.25em;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

.textarea-prc .input__label-content--prc::after {
    content: attr(data-content);
    position: absolute;
    font-weight: 800;
    top: 100%;
    left: 0;
    height: 100%;
    width: 100%;
    color: rgba(52, 58, 64, 1);
    padding: 0em 0;
    letter-spacing: 1px;
    /* font-size: 0.85em; */
}

.textarea-prc .graphic--prc {
    fill: #6f7b8f;
    pointer-events: none;
    top: -1em;
    bottom: 0px;
    height: 20.3em;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.7s, fill 0.7s;
    transition: transform 0.7s, fill 0.7s;
    -webkit-transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
    transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
}

.textarea-prc .input__field--prc:focus,
.textarea-prc .input--filled .input__field--prc {
    -webkit-transition: opacity 0s 0.35s;
    transition: opacity 0s 0.35s;
    opacity: 1;
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

.textarea-prc .input__field--prc:focus+.input__label--prc,
.textarea-prc .input--filled .input__label--prc {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.textarea-prc .input__field--prc:focus+.input__label--prc .input__label-content--prc,
.textarea-prc .input--filled .input__label-content--prc {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.textarea-prc .input__field--prc:focus~.graphic--prc,
.textarea-prc .input--filled .graphic--prc {
    fill: #fff;
    -webkit-transform: translate3d(-66.6%, 0, 0);
    transform: translate3d(-66.6%, 0, 0);
}

.contact-info .icon {
    float: left;
    margin-top: 25px;
    margin-right: 20px;
}

.contact-info .icon>i {
    font-size: 2.1rem;
    color: rgba(255, 193, 7, 0.5);
    width: 50px;
}

.contact-info .description {
    overflow: hidden;
}

.contact-info .description p {
    overflow: hidden;
}

/* end  */
.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
    outline: none;
}

/* cooking */
.intro {
    position: absolute;
    top: 30%;
    left: 5em;
    padding: 1em;
}

.intro__title {
    font-size: 5em;
    line-height: 0.9;
    margin: 0 0 1em 0;
    margin-left: -0.1em;
    letter-spacing: -0.025em;
    color: #fff;
}

.intro__subtitle {
    font-size: 1.25em;
    margin: 0.5em 0;
    color: #adc53b;
}

.intro__button {
    font-weight: 600;
    margin: 2em 0 0 0;
    padding: 1em 2.5em;
    letter-spacing: 0.05em;
    color: #adc53b;
    border: 2px solid #adc53b;
    border-radius: 2em;
    background: none;
    -webkit-transition: color 0.2s, background 0.2s;
    transition: color 0.2s, background 0.2s;
}

.intro__button:hover,
.intro__button:focus {
    color: #fff;
    outline: none;
    background: #adc53b;
}

.Background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.Background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), transparent 50%, rgba(0, 0, 0, 0.8));
}

@media screen and (max-width: 600px) {
    .Background::after {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 80%);
    }
}

@media screen and (max-width: 991px) {
    .intro {
        position: absolute;
        top: 30%;
        left: 0;
        padding: 1em;
        text-align: center;
    }

    .intro__title {
        font-size: 3em;
        line-height: 0.9;
        margin: 0;
        margin-left: -0.1em;
        letter-spacing: -0.025em;
        color: #fff;
    }

    .intro__button {
        font-weight: 600;
        margin: 1em 0 0 0;
        padding: .5em 1.5em;
        letter-spacing: 0.05em;
        color: #adc53b;
        border: 2px solid #adc53b;
        border-radius: 2em;
        background: none;
        -webkit-transition: color 0.2s, background 0.2s;
        transition: color 0.2s, background 0.2s;
    }
}

/* copyright */
.footer {
    text-align: center;
    color: #bbbec0;
    background: #0e1111;
}

.footer .border-bottom {
    border-bottom: 1px solid #2b2c2c !important;
}

.footer.footer-default {
    background-color: #f2f2f2;
}

.footer.footer-white {
    background-color: #FFFFFF;
}

.footer nav {
    display: inline-block;
    float: left;
}

.footer .content {
    text-align: left;
}

.footer .nav-link {
    display: inline;
}

.footer.footer-big {
    padding: 30px 0;
}

.footer.footer-big .social-feed i {
    font-size: 20px;
    float: left;
    padding-right: 10px;
    padding-bottom: 30px;
}

.footer.footer-big .gallery-feed img {
    width: 20%;
    margin-right: 5%;
    margin-bottom: 5%;
    float: left;
}

.footer .footer-brand {
    float: left;
    font-size: 0.875rem;
    line-height: 44px;
}

.footer ul,
.navbar-nav ul {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.footer ul:not(.links-vertical) {
    line-height: 2;
}

.footer ul.links-vertical {
    line-height: 1.6;
}

.footer ul.links-vertical li {
    display: block;
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: 0px;
}

.footer ul.links-vertical li a {
    padding: 5px;
    display: block;
}

.footer ul li {
    display: block;
}

.footer ul li a {
    color: #bbbec0;
    padding: 0;
    font-size: 0.9em;
    text-decoration: none;
}

.footer ul li a:hover {
    text-decoration: none;
}

.footer p {
    color: #bbbec0;
}

.footer .social-buttons a,
.footer .social-buttons .btn {
    margin: 0;
}

.footer .pull-center {
    display: inline-block;
    float: none;
}

.footer .copyright {
    font-size: 0.8571em;
    line-height: 3.5;
    float: right;
}

.footer:after {
    display: table;
    clear: both;
    content: " ";
}

.footer .top-action-cont ul li {
    display: inline;
}

@media screen and (max-width: 991px) {
    .footer nav {
        float: none;
    }

    .footer .copyright {
        text-align: center;
        float: none;
    }
}

/* cookiealert */

.cookiealert {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 10px;
    right: 0;
    left: 0;
    width: 40%;
    margin: 0 auto !important;
    z-index: 99888;
    opacity: 0;
    border-radius: 0.25rem;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: #53688b;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 20px 0px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 20px 0px;
}

.cookiealert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert-close {
    color: #53688b;
    margin-left: 10px;
    cursor: pointer;
    padding: 5px;
    background-color: #fff;
    border: none;
    -webkit-appearance: none;
    outline: 0;
    border-radius: 5rem;
    width: 100px;

}

.cookiealert .cookies_img img {
    width: 50px;
    margin-right: 30px;
}

.cookiealert-close:hover,
.cookiealert-close:focus,
.cookiealert-close:active {
    border: none;
    outline: 0;
}

@media screen and (max-width: 765px) {
    .cookiealert {
        position: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        bottom: 10px;
        right: 0;
        left: 0;
        width: 80%;
        margin: 0 auto !important;
        z-index: 99888;
        opacity: 0;
        border-radius: 0.25rem;
        transform: translateY(100%);
        transition: all 500ms ease-out;
        color: #ecf0f1;
        background: #53688b;
    }

    .cookiealert .cookies_img img {
        width: 50px;
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .cookiealert-close {
        width: 100px;
        margin: 0.5rem auto;

    }
}

/* search-form */
.search-form {
    padding: 1em;
}

/* scroll nav */
.scroll-down #topnavbar {
    transform: translate3d(0, -100%, 0);
}

.scroll-up #topnavbar {
    transform: none;
}

@media screen and (max-width: 991px) {
    .menuopen.scroll-down #topnavbar {
        transform: none;
    }
}

/* backtotop */
.box-backtotop-line {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #fff;
    text-align: center;
    line-height: 0;
    color: #0e1111;
    z-index: 100;
    display: none;
    border-radius: 50%;
    /* border: 1px solid #dee2e6; */
    box-shadow: 0 5px 15px 0 rgb(0 0 0 / 10%);
}

.box-backtotop-line::before {
    display: inline-block;
    content: '';
    width: 0;
    height: 20px;
    border-left: 2px solid #f01452;
    animation: moreLoopY 3.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    top: 15px;
    right: 24px;
    position: absolute;
}

.backtotoparrow {
    width: 50px;
    height: 50px;
    font-size: 1.5em;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #fff;
    text-align: center;
    line-height: 50px;
    color: #0e1111;
    z-index: 100;
    display: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px 0 rgb(0 0 0 / 10%);
}

@media screen and (max-width: 991px) {
    .box-backtotop-line {
        bottom: 10px;
        right: 10px;
    }
}

@keyframes moreLoopY {
    0% {
        transform: scale(1, 0);
        transform-origin: top;
    }

    47% {
        transform: scale(1, 1);
        transform-origin: top;
    }

    48% {
        transform: scale(1, 1);
        transform-origin: bottom;
    }

    95% {
        transform: scale(1, 0);
        transform-origin: bottom;
    }

    96% {
        transform: scale(1, 0);
        transform-origin: top;
    }

    100% {
        transform: scale(1, 0);
    }
}

.rotate--180 {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

/************************/
/* Search 			*/
/************************/

.ch-search {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #fff;
}

.js .ch-search {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.ch-search::before,
.ch-search::after {
    content: '';
    position: absolute;
    width: calc(100% + 15px);
    height: calc(100% + 15px);
    pointer-events: none;
    border: 1.5em solid transparent;
}

.ch-search::before {
    top: 0;
    left: 0;
    border-right-width: 0;
    border-bottom-width: 0;
}

.ch-search::after {
    right: 0;
    bottom: 0;
    border-top-width: 0;
    border-left-width: 0;
}

.ch-search .input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    min-width: 50vw;
}

.btn--ch-search-close {
    font-size: 2em;
    position: absolute;
    top: 1.25em;
    right: 1.25em;
    display: none;
    color: #000;
    cursor: pointer;
    width: 50px;
    height: auto;
    padding: 0.5rem;
}

.js .btn--ch-search-close {
    display: block;
}

/* Reset ch-search Input */


.ch-search__input:focus {
    outline: none;
}

.ch-search__input::-ms-clear {
    display: none;
}

/* Transitions */
.js .ch-search {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.js .ch-search--open {
    pointer-events: auto;
    opacity: 1;
    z-index: 99999;
}

/* Border */
.ch-search::before,
.ch-search::after {
    transition: transform 0.5s;
}

.ch-search::before {
    transform: translate3d(-15px, -15px, 0);
}

.ch-search::after {
    transform: translate3d(15px, 15px, 0);
}

.ch-search--open::before,
.ch-search--open::after {
    transform: translate3d(0, 0, 0);
}

/* Close button */
.btn--ch-search-close {
    opacity: 0;
    transform: scale3d(0.8, 0.8, 1);
    transition: opacity 0.5s, transform 0.5s;
}

.ch-search--open .btn--ch-search-close {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

@media screen and (max-width: 40em) {
    .btn--ch-search-close {
        font-size: 1.25em;
        top: 1.5em;
        right: 1.5em;
    }
}




/* mobile menu http://tympanus.net/codrops/licensing/ */

/* filter */
.cbp-spmenu {}

.cbp-spmenu h3 {
    color: #000;
    font-size: 1.9em;
    padding: 10px;
    margin: 0;
    font-weight: 300;
}

.cbp-spmenu-vertical {
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1000;
}

.cbp-spmenu-left {
    /* left: -240px; */
}

.cbp-spmenu-left.cbp-spmenu-open {
    left: 0px;
}

.cbp-spmenu {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.btn-close-cont {
    position: fixed;
    top: 0;
    background: #fff;
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 10px 0px;
    width: 100%;
    display: none;
    z-index: 99999 !important;
}

@media screen and (min-width: 768px) {
    body {
        overflow: auto !important;
    }

    .btn-close-cont {
        display: none !important;
    }
}

.btn-filter {
    color: #657789;
    border-color: #ced4da;
    margin: 0.5rem 0 1rem 0;
    width: 100%;
    display: none;
}

.btn-filter:hover {
    color: #fff;
    border-color: #657789;
    background: #657789;
}

.btn-close-filter {
    color: #657789;
    border-color: #fff;
    width: 100%;
}

.btn-close-filter:hover {
    color: #fff;
    border-color: #657789;
    background: #657789;
}

.filter-title {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #657789;
    text-align: left;
    text-decoration: none;
    vertical-align: middle;
    background-color: transparent;
    border: none;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    margin-top: 0;
    width: 100%;
}

.btn-filter-category {
    color: #657789;
    border: none;
    border-bottom: 1px solid #d4dce4;
    margin: 0.5rem 0 1rem 0;
    /* padding: 0.375rem 1rem; */
    padding: 0.375rem 1.5rem 0 1rem;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    text-align: left;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
}

.btn-filter-category i {
    font-size: 1rem;
}

.btn-filter-category:hover {
    color: #657789;

}

.btn-filter-category:focus,
.btn-filter-category:active {
    outline: 0;
    box-shadow: none;
}

.filter-criterium a[data-bs-toggle=collapse] i {
    float: right;
    position: relative;
    color: #657789;
    top: 1px;
    transition: all .3s ease 0s;
}

.filter-criterium a[data-bs-toggle=collapse][aria-expanded=true] i {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    transform: rotate(180deg);
}

@media screen and (max-width: 765px) {
    .cbp-spmenu {
        background: #fff;
        position: fixed;
        top: 0;
        padding-top: 1rem;
        padding-bottom: 60px;
        z-index: 99998;
        overflow-y: auto;
    }

    .cbp-spmenu-left {
        left: -800px;
    }

    .btn-close-cont {}

    .btn-filter {
        display: inline-block;
    }

    .filter-title {
        display: none;
    }
}

@media screen and (max-width: 765px) {
    .cbp-spmenu-vertical {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 100vh;
        min-width: 100vw;
        top: 0;
    }

}

@media screen and (max-height: 26.375em) {

    .cbp-spmenu-vertical {
        font-size: 90%;
        width: 190px;
    }

    .cbp-spmenu-left {
        left: -190px;
    }

}

/* checkbox */

.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}

.form-check-input:checked {
    background-color: transparent;
    border-color: transparent;
}

.form-check label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding-left: 35px;
    line-height: 26px;
    margin-bottom: 0;
    transition: color .3s linear;
    color: #657789;
    font-weight: 400;
}

.form-check .form-check-input:before {
    transition-timing-function: cubic-bezier(.075, .820, .165, 1);
    border: 3px solid;
    border-radius: 0;
    background-color: white;
    border-color: transparent;
    box-sizing: border-box;
    color: #8ea1b5;
    content: close-quote;
    display: inline-block;
    height: 20px;
    width: 20px;
    cursor: pointer;
    outline: 2px solid #8ea1b5;
    transition-duration: .5s;
    transition-property: background-color, border-color;

}

.form-check .form-check-input:checked:before {
    background-color: #8ea1b5;
    border-color: white;
}

/* checkbox circle */

.form-check-input-circle {
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    vertical-align: top;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}

.form-check-input-circle:checked {
    background-color: transparent;
    border-color: transparent;
}

.form-check label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding-left: 35px;
    line-height: 26px;
    margin-bottom: 0;
    transition: color .3s linear;
    color: #657789;
    font-weight: 400;
}

.form-check-input-circle:before {
    transition-timing-function: cubic-bezier(.075, .820, .165, 1);
    border: none;
    border-radius: 50%;
    background-color: white;
    border-color: transparent;
    box-sizing: border-box;
    color: #8ea1b5;
    content: close-quote;
    display: inline-block;
    height: 1.5rem;
    width: 1.5rem;
    cursor: pointer;
    transition-duration: .5s;
    transition-property: background-color, border-color;

}

.form-check-input-circle.filtercolor-White:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #f8f8f8;
    border: 2px solid #e1e1e1;
    border-radius: 50%;
}

.form-check-input-circle.filtercolor-Black:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #1c1c1c;
    border: 2px solid #1c1c1c;
    border-radius: 50%;
}

.form-check-input-circle.filtercolor-Silver:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #cccccc;
    border: 2px solid #cccccc;
    border-radius: 50%;
}

.form-check-input-circle.filtercolor-Grey:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #a5a5a5;
    border: 2px solid #a5a5a5;
    border-radius: 50%;
}

.form-check-input-circle.filtercolor-Red:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #f50505;
    border: 2px solid #f50505;
    border-radius: 50%;
}

.form-check-input-circle.filtercolor-Blue:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #1292e9;
    border: 2px solid #1292e9;
    border-radius: 50%;
}

.form-check-input-circle.filtercolor-Yellow:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #ffc107;
    border: 2px solid #ffc107;
    border-radius: 50%;
}

.form-check-input-circle.filtercolor-Green:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #09ad58;
    border: 2px solid #09ad58;
    border-radius: 50%;
}

.form-check-input-circle.filtercolor-Orange:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #ff5f1f;
    border: 2px solid #ff5f1f;
    border-radius: 50%;
}

.form-check-input-circle.filtercolor-Golden:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #e1bc65;
    border: 2px solid #e1bc65;
    border-radius: 50%;
}

.form-check-input-circle.filtercolor-Violet:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #8e2def;
    border: 2px solid #8e2def;
    border-radius: 50%;
}

.form-check-input-circle.filtercolor-Pink:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #f94f98;
    border: 2px solid #f94f98;
    border-radius: 50%;
}

.form-check-input-circle.filtercolor-Beige:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #e3dfc8;
    border: 2px solid #e3dfc8;
    border-radius: 50%;
}

.form-check-input-circle.filtercolor-SkyBlue:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #96daf9;
    border: 2px solid #96daf9;
    border-radius: 50%;
}

.form-check-input-circle.filtercolor-Brown:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #815b49;
    border: 2px solid #815b49;
    border-radius: 50%;
}

.form-check-input-circle:checked:before {
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

/* checkbox size */

.form-check-input-type {
    display: none;
}

.form-check-input-type+.form-check-input-type-label {
    display: inline-block;
    text-align: center;
    margin-right: 0.3rem;
    margin-bottom: 0.5rem;
    padding: 0.4rem 0.8rem;
    width: auto;
    height: auto;
    line-height: 1;
    font-size: 0.8rem;
    border: 1px solid #657789;
    border-radius: 0.25rem;
    color: #657789;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.form-check-input-type+.form-check-input-type-label:hover {
    background: #657789;
    color: #fff;
}

.form-check-input-type:checked+.form-check-input-type-label {
    background: #657789;
    color: #fff;
}


/* slider */

.price-slider-cont {
    color: #657789;
}

.slider-title {
    color: #657789;
}

#price-value-min,
#price-value-max {
    color: #657789;
    font-weight: 600;
}

.slider.slider-range.noUi-connect,
.slider.slider-range .noUi-connect {
    background-color: #657789;
}

.slider.slider-range.noUi-horizontal {
    height: 2px;
}

.slider.slider-range.noUi-target {
    background-color: rgba(101, 119, 137, .3);
    border: none;
}

.noUi-state-drag * {
    cursor: inherit !important
}

.slider.slider-range.noUi-horizontal .noUi-handle {
    border-radius: 50%;
    background-color: #657789;
    box-shadow: 0 1px 13px 0 rgba(0, 0, 0, .2);
    height: 16px;
    width: 16px;
    cursor: pointer;
    margin-top: 0px;
    outline: none;
    border: none;
}

.noUi-horizontal .noUi-handle {
    right: -8px;
    top: -8px;
}

.noUi-handle:after,
.noUi-handle:before {
    display: none;
    position: absolute;
    height: 14px;
    width: 1px;
    background: transparent;
    left: 14px;
    top: 6px;
}

/* compare */

.comparecont {}

.comparecont thead,
.comparecont tbody,
.comparecont tfoot,
.comparecont tr,
.comparecont td,
.comparecont th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    text-align: center;
}

.compare-title {
    font-weight: 300;
}

.compare-name {
    font-weight: 500;
    text-transform: uppercase;
}

.compare-price {
    color: #f01452;
    font-weight: 600;
}

.compare-price del {
    color: #859db4;
}

.comparecont .product-item {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 0.25rem;
    padding: 0px;
    margin: 0.8rem 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    min-width: 150px;
}

.comparecont .product-item a img {
    border-radius: 0.25rem;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;

}

.comparecont .product-item:hover a img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.comparecont .table> :not(caption)>*>* {
    padding: 1.5rem 1.5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table {
    --bs-table-striped-bg: #f1f4f8;
}

/* Wishlist */

.wishlistcont thead,
.wishlistcont tbody,
.wishlistcont tfoot,
.wishlistcont tr,
.wishlistcont td,
.wishlistcont th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    text-align: center;
}

.wishlistcont .table> :not(caption)>*>* {
    padding: 1.5rem 1.5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.wishlistcont .product-item {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 0.25rem;
    padding: 0px;
    margin: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    min-width: 150px;
}

.wishlistcont .product-item a img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;

}

.wishlistcont .product-item:hover a img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.wishlistcont th .product-item {
    width: 200px;
    text-align: center;
}

.wishlist-desc {
    vertical-align: middle;
    font-weight: 400;
}

.btn-SendEmail-wishlist {
    padding: 0.25rem;
    font-size: 1rem;
    border-radius: 0.2rem;
    color: #657789;
    border: 1px solid #657789;
    background: #fff;
    outline: none;
    text-decoration: none;
    font-weight: 400;
    min-width: 120px;
}

.btn-SendEmail-wishlist:hover,
.btn-SendEmail-wishlist:focus,
.btn-SendEmail-wishlist:active {
    color: #fff;
    border: 1px solid #fff;
    background: #657789;
    outline: none !important;
    box-shadow: none !important;
}

.btn-SendEmail-wishlist-active {
    color: #fff;
    border: 1px solid #fff;
    background: #657789;
    outline: none !important;
    box-shadow: none !important;
}

.checkout-action .input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #657789;
    text-align: center;
    white-space: nowrap;
    background-color: transparent;
    border: 1px solid #ced4da;
    border-radius: 50rem;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.checkout-action .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #657789;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border-left: none;
    border-right: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.checkout-action .input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: 0px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
}

.btn-outline-promo {
    color: #657789;
    background-color: #fff;
    border-color: #ced4da;
    border-radius: 50rem;
}

.btn-outline-promo:hover {
    color: #fff;
    background-color: #f01452;
    border-color: #f01452;
}

.btn-outline-checkout {
    color: #fff;
    background-color: #657789;
    border-color: #657789;
    border-radius: 50rem;
    width: 100%;
}

.btn-outline-checkout:hover {
    color: #fff;
    background-color: #f01452;
    border-color: #f01452;
}

.payment-methods {
    width: 300px;
}

.paymentmethodstab {
    color: #657789;
    font-weight: 400;
}

.ordersummary {
    margin: 2rem 0;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.ordersummary .product-item {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 0.25rem;
    padding: 0px;
    margin: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.departure-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.departure-type label {
    display: block;
    /* max-width: 5rem; */
    /* -webkit-box-flex: 0; */
    -ms-flex: 0 0 1rem;
    /* flex: 0 0 1rem; */
    padding: 0;
    font-size: 1rem;
    color: #657789;
    line-height: 1;
    font-weight: 400;
}

.departure-type .color-label {
    margin-right: 1.5rem !important;
    font-size: 1rem;
    font-weight: 500;
}

.departure-type input[type="radio"] {
    display: none;
}

.departure-type input[type="radio"]+label {
    position: relative;
    display: inline-block;
    padding-left: 35px;
    margin-right: 0;
    cursor: pointer;
    line-height: 1.3em;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.departure-type input[type="radio"]+label:before,
.product-color input[type="radio"]+label:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1.3em;
    height: 1.3em;
    text-align: center;
    color: white;
    font-family: Times;
    border-radius: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.departure-type input[type="radio"]+label:before {}

.departure-type input[type="radio"]+.color-1:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #fff;
    border: 2px solid #657789;
    border-radius: 50%;
}

.departure-type input[type="radio"]+label:hover:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.departure-type input[type="radio"]:checked+label:before {
    border: 2px solid #657789;
    border-radius: 50%;
    background-color: #657789;
}


@media screen and (max-width: 991px) {
    .wishlistcont .table> :not(caption)>*>* {
        padding: 0.5rem 0.5rem;
        border-bottom-width: 0px;
        box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
    }

    .wishlistcont thead th {
        display: none;
    }

    .wishlistcont th .product-item {
        width: 100%;
        text-align: center;
    }

    .wishlistcont td,
    .wishlistcont th {
        text-align: center;
        display: block;
    }

    .wishlistcont tr {
        border-width: 1px;
    }

    .ordersummary-desc {
        padding: 1rem;
    }

}

/*  postttab */

.postttab {
    margin: 0 0 3em 0;
}

.postttab.nav-tabs {
    border-bottom: none;
    justify-content: center !important;
}

.postttab.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #f01452;
    background-color: #fff;
    border: 1px solid #f01452;
}

.postttab.nav-tabs .nav-link {
    background: none;
    border-radius: 0.375rem;
}

.postttab .nav-link {
    display: block;
    padding: 30px;
    color: #657789;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #657789;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.postttab .nav-link:hover {
    border: 1px solid #657789;
}

.postttab.nav-tabs .nav-item {
    margin: 1rem;
    position: relative;
}

.postttab.nav-tabs .nav-item .posttchecked {
    position: absolute;
    display: block;
    top: 5px;
    left: calc(50% - 15px);
    width: 30px;
    height: 30px;
    font-size: 1rem;
    line-height: 30px;
    color: #f01452;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .15s;
    -moz-transition: all .15s;
    -ms-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s
}

.postttab.nav-tabs .nav-link.active .posttchecked {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.postttab.nav-tabs .payment-methods {
    width: 150px;
}

.paymentmethodstab .input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.paymentmethodstab .input-group .form-control:last-child {
    border-left: 0 none;
}

.paymentmethodstab .input-group .form-control:focus {
    border-color: #86b7fe;
    border-left: 0 none;
}

.paymentmethodstab .form-group.input-group-focus .input-group-prepend .input-group-text,
.paymentmethodstab .input-group.input-group-focus .input-group-text {
    border: 1px solid #86b7fe;
}

.paymentmethodstab .input-group-text i {
    color: #657789;
}

.postd-information {
    margin: 4rem 0;
    border: 1px solid #ced4da;
    padding: 1rem;
    border-radius: 0.25rem;
}

/*  My Account */

.my-account {
    text-align: center;
}

.my-account-body {
    margin-top: 2rem;
}

.my-account-subtitle {
    color: #657789;
    font-weight: 300;
}

.my-account-avatar .avatar img {
    margin: 0 auto;
    width: 110px;
    height: 110px;
    margin-right: 0;
    border-radius: 50%;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .3);
}

.my-account-avatar i {
    font-size: 5rem;
    /* box-shadow: 0 10px 25px 0 rgba(0,0,0,.3) */
}

.accounttab {
    margin-top: 1rem;
}

.accounttab .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #657789;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    margin-bottom: 0.3rem;
}

.accounttab.nav-pills .nav-link {
    background: none;
    border-bottom: 1px solid #fff;
    border-radius: 0rem;
}

.accounttab.nav-pills .nav-link.active {
    color: #f01452;
    background-color: #fff;
    border-bottom: 1px solid #f01452;
}

.accountcont .tab-content {
    padding: 0 2rem;
    margin-top: 1.8rem;
}

.accountcont .tab-content .tab-pane {}

.btn-logout {
    padding: 0.5rem;
    font-size: 1.2rem;
    border-radius: 0.2rem;
    color: #657789;
    border: none;
    background: #fff;
    outline: none;
    text-decoration: none;
    display: block;
    font-weight: 700;
}

.btn-logout:hover,
.btn-logout:focus,
.btn-logout:active {
    color: #fff;
    background: #f01452;
    outline: none !important;
    box-shadow: none !important;
}

.order-payment-shipping p {
    color: #657789;
}

.order-payment-shipping h5 {
    text-decoration: none;
    font-weight: 900;
    font-family: Montserrat, sans-serif;
    font-size: 1rem;
    color: #657789;
}

@media screen and (max-width: 765px) {

    .accounttab {
        padding: 10px;
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
    }

    .accountcont .tab-content {
        padding: 0;
    }

}

/* terms-conditions, Privacy Policy */

.terms-conditions h2,
.privacy-policy h2 {
    margin: 1rem 0rem 2rem 0;
    text-transform: uppercase;
    font-weight: 400;
}

.terms-conditions h4,
.privacy-policy h4 {
    margin: 1rem 0;
    text-transform: uppercase;
    font-weight: 900;
    color: #53688b;
}

.terms-conditions p,
.privacy-policy p {
    color: #526a8e;
    text-align: justify;
}

.terms-conditions ul li,
.privacy-policy ul li {
    color: #526a8e;
}

@media screen and (max-width: 765px) {

    .terms-conditions h4,
    .privacy-policy h4 {
        text-align: center;
    }
}

/* slides */

.slideshow {
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.slides {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    animation: clippath 10s infinite;
}

@keyframes clippath {
    0% {
        clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0% 100%, 8% 50%, 0% 0%);
    }

    50% {
        clip-path: polygon(93% 0, 100% 50%, 93% 100%, 0% 100%, 5% 50%, 0% 0%);
    }

    100% {
        clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0% 100%, 8% 50%, 0% 0%);
    }
}

@-moz-keyframes clippath {
    0% {
        clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0% 100%, 8% 50%, 0% 0%);
    }

    50% {
        clip-path: polygon(93% 0, 100% 50%, 93% 100%, 0% 100%, 5% 50%, 0% 0%);
    }

    100% {
        clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0% 100%, 8% 50%, 0% 0%);
    }
}

@-webkit-keyframes clippath {
    0% {
        clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0% 100%, 8% 50%, 0% 0%);
    }

    50% {
        clip-path: polygon(93% 0, 100% 50%, 93% 100%, 0% 100%, 5% 50%, 0% 0%);
    }

    100% {
        clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0% 100%, 8% 50%, 0% 0%);
    }
}

@-o-keyframes clippath {
    0% {
        clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0% 100%, 8% 50%, 0% 0%);
    }

    50% {
        clip-path: polygon(93% 0, 100% 50%, 93% 100%, 0% 100%, 5% 50%, 0% 0%);
    }

    100% {
        clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0% 100%, 8% 50%, 0% 0%);
    }
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.slide:after {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    content: "";
    background-color: rgba(0, 0, 0, .2);
}

.slide--current {
    opacity: 1;
    pointer-events: auto;
}

.slide__img {
    position: absolute;
    top: -200px;
    left: -200px;
    width: calc(100% + 400px);
    height: calc(100% + 400px);
    background-size: cover;
    background-position: 50% 50%;
}

.slidenav {
    position: absolute;
    width: 300px;
    margin-left: -150px;
    left: 50%;
    bottom: 0;
    text-align: center;
    padding: 2em;
    font-size: 1.5rem;
}

.slidenav span {}

.slidenav__item {
    border: 0;
    background: none;
    font-weight: bold;
    color: #0e1111;
    /* text-shadow: 3px 1px 0px #c2d9ef; */
    /* text-shadow: 3px 1px 0px #527292; */
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.slidenav__item:focus {
    outline: none;
}

.slidenav__item:hover {
    color: #0e1111;
}

.shape {
    position: absolute;
    width: 100%;
    height: 100%;
    fill: var(--color-shape-fill);
    top: 0;
    pointer-events: none;
}

.slide__title {
    position: relative;
    margin: 0;
    cursor: default;
    line-height: 1;
    font-weight: bold;
    -moz-font-feature-settings: 'case';
    -webkit-font-feature-settings: 'case';
    font-feature-settings: 'case' on;
    -webkit-text-stroke: 1px white;
    color: transparent;
    /* text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; */
    font-size: 11vw;
    text-transform: uppercase;
    z-index: 10;
}

.slide__desc {
    position: relative;
    font-size: 2rem;
    margin: 1em 0;
    cursor: default;
    color: #fff;
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0 2em;
    text-align: center;
    font-weight: normal;
    -moz-font-feature-settings: 'case';
    -webkit-font-feature-settings: 'case';
    font-feature-settings: 'case' on;
    word-break: break-word;
    word-spacing: normal;
    z-index: 10;
}

.slide__link {
    position: relative;
    font-size: 2.5em;
    font-weight: 900;
    display: block;
    color: black;
    font-family: 'Oswald', sans-serif;
    transition: color 0.3s, background 1s;
    border-radius: 0.25rem;
    z-index: 10;
}

.slide__link img {
    max-width: 150px;
}

.slide__link:hover {
    color: var(--color-slink-hover);
    background: var(--color-slink-hover-bg);
}

@media screen and (max-width: 55em) {
    .content {
        flex-direction: column;
        height: auto;
        min-height: 0;
        /* padding-bottom: 10em; */
    }

    .content--fixed {
        position: relative;
        z-index: 1000;
        display: block;
        padding: 0.85em;
    }

    .slide__desc {
        font-size: 1em;
    }

    .slide__link {
        font-size: 0.85em;
    }
}

/* contactinfo */

.contactinfo .contactbtn,
.contactinfo .contactbtn:before,
.contactinfo .contactbtn .fas,
.contactinfo .contactbtn .fab {
    transition: all 0.35s;
    transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
}

.contactinfo .contactbtn:before {
    top: 90%;
    left: -110%;
}

.contactinfo .contactbtn .fas,
.contactinfo .contactbtn .fab {
    transform: scale(0.8);
}

.contactinfo .contactbtn.contact-link:before {
    background-color: #fff;
}

.contactinfo .contactbtn.contact-link .fas,
.contactinfo .contactbtn.contact-link .fab {
    color: #fff;
}

.contactinfo .contactbtn:focus:before,
.contactinfo .contactbtn:hover:before {
    top: -10%;
    left: -10%;
}

.contactinfo .contactbtn:focus .fas,
.contactinfo .contactbtn:hover .fas,
.contactinfo .contactbtn:focus .fab,
.contactinfo .contactbtn:hover .fab {
    color: #000;
    transform: scale(1);
}

.contactinfo {
    height: 90px;
    margin: auto;
    font-size: 0;
    text-align: center;

}

.contactinfo .contactbtn {
    display: inline-block;
    background-color: transparent;
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin: 0 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
    opacity: 0.99;
}

.contactinfo .contactbtn:before {
    content: '';
    width: 120%;
    height: 120%;
    position: absolute;
    transform: rotate(45deg);
}

.contactinfo .contactbtn .fas,
.contactinfo .contactbtn .fab {
    font-size: 1.4rem;
    vertical-align: middle;
}

.btn-contact-submit {
    color: #212529;
    background: transparent;
    border-color: #212529;
    font-weight: 800;
    margin: 2rem 0;
}

.btn-contact-submit:hover {
    color: #fff;
    background: #212529;
    border-color: #212529;
}

/* ScrollingImage */

.scrollingimage {
    --aspect-ratio: 1/1.5;
}

.page {
    display: grid;
    padding: 5vw;
    max-width: 1400px;
    margin: 0 auto;
    grid-template-columns: 100%;
    grid-template-areas: 'header' 'meta' 'grid';
    will-change: transform;
}

.content {
    grid-area: grid;
    /* margin: 25vh 0 30vh; */
}

.content--offset {
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    grid-gap: 30vh 10vw;
}

.content--full {
    width: 100%;
    justify-self: center;
}

.content--padded {
    padding: 0 10vw;
}

.content__item {
    --imgwidth: calc(var(--imgwidthmax) * var(--aspect-ratio));
    width: var(--imgwidth);
    max-width: 100%;
    position: relative;
    will-change: transform;
    margin-bottom: 30vh;
    display: grid;
    grid-template-columns: 50% 50%;
}

.content__item--wide {
    grid-template-columns: 20% 80%;
}

.content__item--wide:nth-child(even) {
    grid-template-columns: 80% 20%;
}

.content--center .content__item {
    margin: 0 auto 60vh;
}

.content__item--expand {
    width: 100%;
    grid-template-columns: minmax(0, var(--imgwidth)) 1fr;
}

.content__item--expand:nth-child(even) {
    grid-template-columns: 1fr minmax(0, var(--imgwidth));
}

.content--alternate .content__item {
    max-width: 90vw;
}

.content--offset .content__item {
    margin: 0 auto 15vh;
}

.content--offset .content__item:nth-child(even) {
    align-self: end;
    margin-bottom: -20vh;
}

.content--alternate .content__item:nth-child(even) {
    margin-left: auto;
}

.content__item-imgwrap {
    position: relative;
    --imgwidth: 100%;
    margin: 0 auto;
    grid-area: 1 / 1 / 3 / 3;
    overflow: hidden;
    width: var(--imgwidth);
    padding-bottom: calc(var(--imgwidth) / (var(--aspect-ratio)));
    will-change: transform;
}

.demo-2 .content__item-imgwrap {
    outline: 1px solid transparent;
}

.content__item--expand .content__item-imgwrap {
    grid-area: 1 / 1 / 3 / 2;
}

.content__item--expand:nth-child(even) .content__item-imgwrap {
    grid-area: 1 / 2 / 3 / 3;
    justify-self: end;
}

.content__item-img {
    --overflow: 40px;
    height: calc(100% + (2 * var(--overflow)));
    top: calc(-1 * var(--overflow));
    width: 100%;
    position: absolute;
    background-size: cover;
    background-position: 50% 0%;
    will-change: transform;

}

.content__item-img--t1 {
    --overflow: 60px;
}

.content__item-img--t2 {
    --overflow: 80px;
}

.content__item-img--t3 {
    --overflow: 120px;
}

.content__item-number {
    opacity: 0.03;
    font-size: 25vw;
    position: absolute;
    top: -7vw;
    right: -10vw;
    line-height: 1;
}

.content__item:nth-child(even) .content__item-number {
    right: auto;
    left: -7vw;
}

.content__item-title {
    --size-title: 10rem;
    position: relative;
    font-size: var(--size-title);
    padding: 0 3vw;
    margin: calc(var(--size-title) * -1/2) 0 0 0;
    align-self: start;
    line-height: 1;
    font-family: var(--font-title);
    font-weight: var(--font-weight-title);
    color: var(--color-title);
    will-change: transform;
    mix-blend-mode: var(--blendmode-title);
}

.content--center .content__item-title {
    grid-area: 1 / 1 / 3 / 3;
    margin: auto;
}

.content__item-title--layer {
    padding: 0;
    z-index: 10;
    grid-area: 1 / 1 / 2 / 3;
    width: 100%;
    text-align: center;
}

.content__item-description {
    grid-area: 3 / 1 / 3 / 3;
    width: 70%;
    position: relative;
    margin: 0;
    padding: 1rem 0 0 0;
    color: var(--color-description);
}

.content--alternate .content__item-title,
.content__item--wide:nth-child(even) .content__item-description {
    grid-area: 3 / 1 / 4 / 2;
    justify-self: start;
}

.content--alternate .content__item:nth-child(even) .content__item-title,
.content__item--wide .content__item-description {
    grid-area: 3 / 2 / 4 / 3;
    justify-self: end;
    width: auto;
}

.content__item--expand .content__item-description {
    grid-area: 1 / 2 / 3 / 3;
    justify-self: start;
    align-self: start;
    padding: 0 2rem;
    width: 250px;
    font-size: 0.9rem;
}

.content__item--expand:nth-child(even) .content__item-description {
    grid-area: 1 / 1 / 3 / 2;
    justify-self: end;
    text-align: right;
}

.content__item-deco {
    position: absolute;
    top: 2rem;
    left: 10vw;
    height: 30%;
    width: 1px;
    background: #d79612;
}

.content__item-decobar {
    width: 140%;
    height: 25%;
    top: 20%;
    left: -20%;
    position: absolute;
    background: #dd525a;
    mix-blend-mode: color-burn;
}

@media screen and (min-width: 53em) {
    .page--layout-1 {
        grid-template-columns: 30% 70%;
        grid-template-areas: 'header header' '...  meta' 'grid grid';
    }

    .page--layout-2 {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 'header meta' '...  meta' 'grid grid';
    }
}

@media screen and (max-width: 40em) {

    .content__item--expand .content__item-imgwrap,
    .content__item--expand:nth-child(even) .content__item-imgwrap {
        grid-area: 1 / 1 / 3 / 3;
    }

    .content__item--expand .content__item-description,
    .content__item--expand:nth-child(even) .content__item-description,
    .content__item--wide .content__item-description,
    .content__item--wide:nth-child(even) .content__item-description {
        grid-area: 3 / 1 / 4 / 3;
        padding: 1rem 0;
        width: 100%;
        text-align: left;
    }

    .content__item--wide .content__item-description {
        padding: 1rem;
    }

    .content--alternate .content__item-title,
    .content--alternate .content__item:nth-child(even) .content__item-title {
        grid-area: 1 / 1 / 4 / 2;
    }
}

/* scrollcont */

.post__link__deco_cont {
    position: relative;
}

.scrollcont {
    /* padding: 3rem; */
    overflow: hidden;
    margin: 2rem 1.5rem;
}

.scrollcont .post__caption {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 30px;
}

.scrollcont .post__rating {
    position: absolute;
    display: inline-block;
    bottom: 18px;
    right: 30px;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    font-family: Montserrat, sans-serif;
    border: 1px solid #fff;
    padding: 5px;
    border-radius: 0.25rem;
}

@media screen and (max-width: 991px) {
    .scrollcont .post__title {
        font-size: 1em;
    }

    .scrollcont .post__rating {
        font-size: 12px;
    }
}


/*  */

h1,
.h1 {
    color: #53688b;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    word-wrap: break-word;
}

/*  */

.wp-block-quote {
    position: relative;
    background: #ecf1f6;
    border-radius: 0.5rem;
    line-height: 1.6;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    font-size: 1.2rem;
    min-height: 4rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 40px 20px 20px 20px;
}

.wp-block-quote p {
    text-align: center;
    color: #525f6b;

}

.wp-block-quote p::before {
    position: absolute;
    top: -3px;
    color: #ffc107;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 2rem;
    content: "\f10d";
}

@media screen and (max-width: 991px) {
    .wp-block-quote {
        max-width: 90%;
        font-size: 1rem;
    }

    .wp-block-quote::before {
        font-size: 1.2rem;
    }

    h1,
    .h1 {
        font-size: 1.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}


/* Most Viewed Video Posts */

.most_viewed_video_posts {
    background: #0e1111;
    border-radius: 0.5rem;
}

.most_viewed_video_posts .most_viewed_video_title {
    color: #fff;
    text-align: center;
    font-size: 45px;
    text-transform: uppercase;
    font-weight: 900;
    padding: 1rem;
}

.top_video_post_cont {
    position: relative;
    margin: 1rem 0rem;
}

.top_video_grid {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;

}

.top_video_grid:after {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0.5rem;
    left: 0;
    top: 0;
    content: "";
    background: rgb(26, 38, 56);
    background: -moz-linear-gradient(180deg, rgba(26, 38, 56, 0) 50%, rgba(26, 38, 56, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(26, 38, 56, 0) 50%, rgba(26, 38, 56, 1) 100%);
    background: linear-gradient(180deg, rgba(26, 38, 56, 0) 50%, rgba(26, 38, 56, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1a2638", endColorstr="#1a2638", GradientType=1);
}

.top_video_post_cont h3 {
    font-size: 1.3rem;
    margin-top: 0.5rem;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
}

.top_video_post_cont h3 a {
    color: #fff;
}

.top_video_grid .top_video_image {
    margin: auto;
    width: 100%;
    height: auto;
    display: block;
    max-width: none;
    width: -webkit-calc(100% + 35px);
    width: calc(100% + 35px);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-30px, 0, 0) scale(1.05);
    transform: translate3d(-30px, 0, 0) scale(1.05);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}


@media screen and (min-width: 992px) {
    .top_video_grid .top_video_image {
        /* min-height: 230px;
        max-height: 230px; */
        object-fit: cover;
    }
}


.top_video_grid:hover .top_video_image {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
    -webkit-filter: brightness(0.6);
    filter: brightness(0.6);
}

.top_video_grid .post-date {
    position: absolute;
    bottom: 10px;
    width: 90%;
    padding: 0 1em;
    color: #fff;
    z-index: 338;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
}

.top_video_grid .type-video {
    position: absolute;
    display: inline-block;
    bottom: 10px;
    right: 10px;
    color: #fff;
    z-index: 338;
}

.top_video_grid:hover .post-date {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}



@media screen and (max-width: 991px) {
    .most_viewed_video_posts .most_viewed_video_title {
        font-size: 30px;
    }
}

/*  */

/* Set a common size for all video players */
.wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    /* Make the video responsive */
    height: 400px;
    max-width: 600px;
    /* Max width for larger screens */
    margin: 0 auto;
    /* Center the video */
    /* padding-top: 56.25%;  16:9 Aspect Ratio */
    /* background-color: #000; /* Optional: for the background color */
    overflow: hidden;
}

.wp-block-video {
    position: relative;
    width: 100%;
    /* Make the video responsive */
    max-width: 600px;
    /* Max width for larger screens */
    margin: 0 auto;
    /* Center the video */
    /* background-color: #000; /* Optional: for the background color */
    overflow: hidden;
}

/* For embedded iframes (YouTube, Vimeo, Dailymotion, etc.) */
.wp-block-embed__wrapper iframe,
.wp-block-embed__wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    /* Remove border around embedded players */
}

/* Optional: To control local video sizes */
.wp-block-embed__wrapper video {
    width: 100%;
    height: 100%;
}

/* Ensuring responsiveness on small screens */
@media screen and (max-width: 768px) {
    .wp-block-embed__wrapper {
        max-width: 100%;
        height: 300px;
    }

}


/* Share on Social Media */

.single__post__content {
    text-align: left;
}

.single__post .single__post__content p {
    font-size: 1.1rem;
    line-height: 1.5;
	word-wrap: break-word;
}

.social-share-buttons {
    display: inline-block;
    white-space: nowrap;
    float: right;
}

.social-share-buttons a,
.social-share-buttons button {
    margin: 3px;
    padding: 3px;
    border-radius: 5px;
    font-size: 1.1rem;
    text-decoration: none;
    color: #53688b;
    font-weight: bold;
}

.social-share-buttons a:hover,
.social-share-buttons button:hover {
    color: #f01452;
}

/*  .facebook-share-button {
    color: #3b5998;
	font-size: 0.95rem !important;
}

.twitter-share-button {
    color: #1da1f2;
}

.email-share-button {
    color: #0078d4;
}

.link-copy-button {
    color: #4caf50;
    color: #fff;
}

.linkedin-share-button {
    color: #0077b5;
}

.telegram-share-button {
    color: #0088cc;
} 

.link-copy-button {
	color: #53688b;
	font-size: 0.95rem !important;
    margin-top: -2px !important;
} */

@media screen and (max-width: 991px) {
    .social-share-buttons {
        width: 100%;
        text-align: center;
        float: none;
    }

    .single__post__content {
        text-align: center;
    }
}


/* calendar day has posts */

.calendar {
    width: 100%;
    border-collapse: collapse;
}

.calendar th,
.calendar td {
    width: 14%;
    padding: 10px;
    text-align: center;
    border: 1px solid #dce2e8;
}

.calendar-day.has-posts {
    background-color: #e9ecef; /* Highlight the day with posts */
	-webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

/* Style for the current day */
.calendar-day.today {
    background-color: #f01452; /* Different color for the current day */
    font-weight: bold;
}

.calendar-day a {
    text-decoration: none;
    color: #333;
}

.calendar-day.has-posts a {
    font-weight: bold;
}

.calendar-day.today a {
    color: white; /* Change the text color to white for better visibility */
}

.calendar_submit {
	background: #0e1111;
	border: 1px solid #0e1111;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 24px;
}

.calendar_submit:hover {
	background: #fff;
	border: 1px solid #0e1111;
    color: #0e1111;
}

@media screen and (max-width: 991px) {
	.calendar th,
	.calendar td {
    padding: 5px;
}
}

/*  */


/*  */



/*  */




