@font-face {
    font-family: 'Cambria';
    src: URL('./themes/main/fonts/cambria.ttf') format('truetype');
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Cambria';
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.body-wrapper {
    flex-grow: 1;
}

.body-wrapper,
footer {
    flex-shrink: 0;
    width: 100%;
}

a,
a:hover {
    color: currentColor;
    text-decoration: none;
}

*:focus,
*:focus-visible {
    outline: none;
    box-shadow: none;
    -webkit-box-shadow: none;
}






/* Navbar */
nav {
    max-width: 1920px;
    padding: 14px 36px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navbar - Logo */
nav .nav-logo .logo-sm {
    display: none;
}

nav .nav-logo .logo-lg {
    display: block;
}


/* Navbar - Links */
nav .nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 18px;
    text-transform: uppercase;
}

nav .nav-links a {
    transition: color 0.2s ease;
}

nav .nav-links a:hover {
    color: var(--accent);
}

nav .nav-links path {
    transition: fill 0.2s ease;
}

nav .nav-links a:hover path {
    fill: var(--accent);
}

/* Nav - Social Icons */
.nav-socials {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 9px;
}

.nav-socials .inner{
    display: flex;
    gap: 9px;
}

.social-icon {
    box-sizing: border-box;
    width: 36px;
    height: 36px;
    background-color: var(--color-text);
    transition: background 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.social-icon:hover {
    background-color: var(--accent);
}


/* Navbar - Sidebar Button */
#sidebarOpenBtn {
    background: transparent;
    border: none;
    display: none;
}

/* Header - Divider */
header>hr {
    margin: 0;
    border: 0;
    border-top: 19px solid #F8F8F8;
}

header .logo-cic img{
    height: 54px;
    width: auto;
}

@media(max-width: 1506px) {
    nav .nav-links {
        gap: 10px;
        font-size: 14px;
    }
}

@media(max-width: 1180px) {
    nav {
        padding: 14px 18px;
    }

    nav .nav-links {
        display: none;
    }

    #sidebarOpenBtn {
        display: block;
    }

    nav .nav-logo .logo-sm {
        display: block;
    }

    nav .nav-logo .logo-lg {
        display: none;
    }

    header>hr {
        display: none;
    }

}

@media(max-width: 500px){
    nav .nav-logo .logo-sm {
        display: none;
    }

    nav .nav-logo .logo-lg {
        display: block;
        height: 80px;
    }

    nav .social-icon{
        display: none;
    }
}

@media(max-width: 390px) {
    /* nav .nav-socials>a {
        display: none;
    } */
    nav .nav-logo .logo-sm{
        width: 160px;
    }
}






/*SIDEBAR*/
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .6);
    z-index: 999999999999;
    display: none;
    opacity: 0;
}

.overlay .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    padding: 30px;
    background: white;
    box-shadow: 0 0 34px 6px rgba(0, 0, 0, .1);
    transform: translateX(100%);
    transition: all .2s ease;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.overlay .sidebar::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.overlay .sidebar .logo {
    height: 65px;
}

.overlay .sidebar .contacts {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.overlay .sidebar .contacts div div {
    display: grid;
    grid-template-columns: auto 40px;
    grid-template-rows: 1fr;
    gap: 10px;
    text-align: right;
}

.overlay .sidebar .contacts div a {
    color: var(--gray);
}

.overlay .sidebar .links {
    align-items: center !important;
}

.overlay .sidebar .links a {
    position: relative;
    color: var(--color-text);
    text-decoration: none;
    /* font-weight: 700; */
    font-size: 20px;
    text-transform: uppercase;
    margin: 12px 0;
    transition: color 0.2s ease;
}

.overlay .sidebar .links a:hover {
    color: var(--accent);
    /* font-weight: 700; */
}

.overlay .sidebar-open {
    animation: open .3s forwards;
}

.overlay .sidebar-exit {
    animation: exit .3s forwards;
}

.overlay-open {
    animation: opacityIn .3s forwards;
}

.overlay-exit {
    animation: opacityOut .3s forwards;
}

@keyframes open {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0%);
    }
}

@keyframes opacityIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes exit {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(100%);
    }
}

@keyframes opacityOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.overlay .sidebar #sidebarQuitBtn {
    width: 30px;
    cursor: pointer;
}

.overlay .sidebar #sidebarQuitBtn:hover path {
    fill: var(--accent) !important;
}

.overlay .sidebar .contacts {
    margin-top: 30px;
}

@media (max-width: 776px) {
    .overlay .sidebar {
        justify-content: flex-start !important;
    }
}

.sidebar .socials {
    display: flex;
    flex-direction: column;
    margin-top: 36px;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.sidebar .socials .btn-reserve {
    width: 172px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
}







/* Carousel */
.block {
    max-width: 1920px;
    margin: 0px auto;
}

#mainCarousel .carousel-item {
    height: 555px;
}

#mainCarousel .carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#mainCarousel .carousel-indicators li {
    background-color: #fff;
    opacity: 1;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 100%;
}

#mainCarousel .carousel-indicators li.active::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
}

@media(max-width: 1440px) {
    #mainCarousel .carousel-item {
        height: 416px;
    }
}

@media(max-width: 576px) {
    #mainCarousel .carousel-item {
        height: 350px;
    }
}







/* Block header */
.block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.block-header .block-title {
    font-size: 36px;
    line-height: 36px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.block-header .block-title h2{
    font-size: 36px;
    line-height: 36px;
    margin: 0;
}

/* @media(max-width: 400px) {
    .block-header .block-title {
        font-size: 28px;
    }
} */

/* Button more */
.btn-more {
    font-family: 'Open Sans';
    font-size: 14px;
    line-height: 16px;
    color: var(--color-text);
    background-color: transparent;
    border: none;
}

.btn-more svg {
    margin-left: 12px;
    transition: transform 0.2s;
}

.btn-more svg path {
    transition: fill 0.2s ease;
}

.btn-more:hover {
    color: var(--color-text);
}

.btn-more:hover svg {
    transform: translateX(22px);
}

.btn-more:hover svg path {
    fill: var(--accent);
}

.btn-more-sm {
    display: none;
    text-align: center;
    margin-top: 66px;
}

@media(max-width: 768px) {
    .block-header {
        justify-content: center;
    }

    .block-header .btn-more {
        display: none;
    }

    .btn-more-sm {
        display: block;
    }
}



/* News Block */
.news-block {
    max-width: 1324px;
    padding: 0 20px;
    margin: 76px auto 112px auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 364px);
    grid-template-rows: 1fr;
    gap: 62px 96px;
    justify-content: center;
}

.news-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.news-element .image {
    width: 100%;
    height: 243px;
    overflow: hidden;
    /* Safari fix */
    will-change: transform;
    border-radius: 30px;
}

.news-element .image img {
    width: 100%;
    height: 100%;
    transition: transform 0.2s ease;
    object-fit: cover;
    object-position: center;
}

.news-element .content {
    width: 340px;
}

.news-element .title {
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text);
    transition: color 0.2s ease;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-element .lead {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 14px;
    color: var(--color-text);

    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-element .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-element .news-more {
    font-size: 14px;
    line-height: 16px;
    color: var(--color-text);
}

.news-element .news-more svg {
    transition: transform 0.2s;
}

.news-element .news-more svg path {
    transition: fill 0.2s ease;
}

.news-element .news-more:hover {
    color: var(--color-text);
}

.news-element .news-more:hover svg {
    transform: translateX(22px);
}

.news-element .news-more:hover svg path {
    fill: var(--accent);
}

/* Hover */
.news-element .image:hover img {
    transform: scale(1.04);
}

.news-element .text:hover .title {
    color: var(--accent);
}

@media(max-width:400px){
    .news-grid {
        grid-template-columns: repeat(auto-fill, 320px);
    }
}



/* Icon Block */
.icon-block {
    display: flex;
    min-height: 409px;
    max-width: 1920px;
    margin: 85px auto 54px auto;
}

.icon-block .content-container {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 98px;
    padding-bottom: 14px;
    border-radius: 0 30px 30px 0;
    color: #fff;
    background-color: var(--accent);
    font-size: 20px;
    line-height: 24px;
    text-align: right;
}

.icon-block .content-container .description {
    max-width: 794px;
}

.icon-block .icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0 10px;
    /* padding: 0 86px; */
}

@media(max-width: 992px) {
    .icon-block {
        flex-direction: column;
        gap: 40px;
        padding: 0 8px;
    }

    .icon-block .icon {
        order: 1;
        padding: 0;
    }

    .icon-block .content-container {
        order: 2;
        border-radius: 30px;
        padding-left: 15px;
        padding-right: 15px;
        align-items: center;
    }

    .icon-block .content-container .description {
        text-align: center;
    }
}




/* Events Block */
.events-block {
    max-width: 1324px;
    padding: 0 20px;
    margin: 76px auto 112px auto;
}

.event-element {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0 34px 36px 34px;
    overflow: hidden;
    border-radius: 20px;
    isolation: isolate;
}

.event-element .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: transform 0.2s ease;
    will-change: transform;
}

.event-element:hover .background {
    transform: scale(1.04);
}

.event-element::after {
    content: '';
    background: linear-gradient(180deg, rgba(40, 9, 13, 0) 0%, #28090D 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    will-change: transform;
}

.event-element .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    width: 100%;
    height: 100%;
}

.event-element .title {
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-element .description,  .event-element .description p{
    font-size: 13px;
    line-height: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-element .date {
    display: none;
}

.events-grid {
    display: grid;
    grid-template-columns: 605px 282px 282px;
    grid-auto-rows: 188px;
    grid-template-areas:
        "n1 n2 n3"
        "n1 n4 n5";
    gap: 28px 34px;
    justify-content: center;
}

.events-grid-index{
    display: grid;
    grid-template-columns: repeat(auto-fill, 400px);
    grid-auto-rows: 266px;
    grid-template-areas: none;
    gap: 28px 34px;
    justify-content: center;
}

.events-grid>.event-element:nth-child(1) {
    grid-area: n1;
}

.events-grid>.event-element:nth-child(2) {
    grid-area: n2;
}

.events-grid>.event-element:nth-child(3) {
    grid-area: n3;
}

.events-grid>.event-element:nth-child(4) {
    grid-area: n4;
}

.events-grid>.event-element:nth-child(5) {
    grid-area: n5;
}

@media(min-width: 1324px) {
    .events-grid .event-element:first-child .title {
        font-size: 30px;
        line-height: 40px;
        font-weight: 700;
    }

    .events-grid .event-element:first-child .description {
        font-size: 16px;
    }

    .events-grid .event-element:first-child .date {
        display: block;
        font-size: 22px;
        font-weight: 700;
        margin-top: 13px;
    }
}

@media(max-width: 1324px) {
    .events-grid {
        grid-template-columns: repeat(auto-fill, 400px);
        grid-auto-rows: 266px;
        grid-template-areas: none;
        gap: 28px 34px;
        justify-content: center;
    }

    .events-grid>.event-element {
        grid-area: auto !important;
    }
}

@media(max-width: 768px) {
    .events-block {
        padding: 0 6px;
    }

    .events-block .block-header{
        padding: 0 20px;
    }

    .event-element .title {
        font-size: 18px;
        line-height: 20px;
    }
    
    .event-element .description,  .event-element .description p{
        font-size: 18px;
        line-height: 20px;
    }

}

@media(max-width: 500px) {

    /* Title with changing text -.- */
    .events-block .block-title.special span>span {
        display: none;
    }
}

@media(max-width: 410px) {
    .events-grid, .events-grid-index {
        grid-template-columns: repeat(auto-fill, 320px);
        grid-auto-rows: 212.8px;
    }
    .events-block {
        padding: 0 6px;
    }
    

}



/* Events modal */
#event-modal .close{
    font-size: 36px;
}
#event-modal .modal-content{
    border: none;
    border-radius: 12px;
    /* background-color: var(--accent); */
    /* color: #fff; */
}

#event-modal .modal-header{
    border-bottom: 1px solid var(--accent);
}

#event-modal-content{
    font-size: 18px;
    line-height: 24px;
}

#event-modal .close{
    color: #fff;
}
#event-modal-title{
    font-size: 22px;
    font-weight: 700;
}


/* Photos Block */
.photos-block {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 20px;
}

.photos-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fill, 300px);
    grid-auto-rows: 202px;
    gap: 24px;
}

.photos-grid>a {
    width: 100%;
    height: 100%;
    overflow: hidden;
    will-change: transform;
    border-radius: 20px;
}

.photos-grid>a>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.photos-grid>a:hover>img {
    transform: scale(1.04);
}

/* Gallery Page */
.gallery-page {
    max-width: 1940px;
    padding: 0 20px;
    margin: 36px auto;
}

.gallery-page .title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 20px;
}

.gallery-page h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: none;
}

.gallery-content {
    max-width: 1080px;
    padding: 0 20px;
    margin: 30px auto;
    font-size: 18px;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, 363px);
    grid-template-rows: 1fr;
    justify-content: center;
    gap: 20px;
    margin-bottom: 84px;
}




/* Contact Block */
.contact-block {
    display: flex;
    min-height: 409px;
    width: 100%;
    max-width: 1920px;
    margin: 110px auto 44px auto;
}

.contact-block .content-container {
    flex: 1 1 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 44px;
    padding-left: 73px;
    /* padding-left: 85px; */
    padding-right: 20px;
    padding-bottom: 45px;
    border-radius: 30px 0px 0 30px;
    color: #fff;
    background-color: var(--secondary);
    font-size: 20px;
    line-height: 24px;
    text-align: left;
}

.contact-block .content-container .content-inner {
    max-width: 742px;
}

.contact-block .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 86px;
}

.contact-block .content-container .title {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 26px;
}

.contact-block .content-container .text {
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 38px;
}

.contact-block form {
    display: flex;
    flex-wrap: wrap;
    gap: 27px 19px;
}

.contact-block .form-group.email {
    max-width: 482px;
    height: 67px;
}

.contact-block .form-group.email input {
    height: 100%;
    width: 100%;
    border-radius: 30px;
    font-size: 20px;
    color: var(--secondary);
    padding: 0 20px 0 93px;
    background: url(/img/icon-email.svg) no-repeat;
    background-color: #fff;
    background-position: 34px center;
}

.contact-block .form-group.email input::placeholder {
    color: var(--secondary);
}

.contact-block button[type="submit"] {
    width: 212px;
    height: 67px;
    border-radius: 30px;
    color: #FFF;
    background-color: transparent;
    border: 3px solid #FFFFFF;
    font-size: 21px;
    font-weight: 700;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.contact-block button[type="submit"]:hover {
    color: var(--secondary);
    background-color: #fff;
}

.contact-block .form-group.agree {
    font-size: 14px;
    flex: 0 0 100%;
    padding-left: 55px;
}

.contact-block .form-group.agree .custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: var(--accent);
    background-color: var(--accent);
}

.contact-block .form-group.agree .custom-control-label::after {
    top: 2px;
    left: -33px;
    width: 22px;
    height: 22px;
    border-radius: 100%;
}

.contact-block .form-group.agree .custom-control-label::before {
    top: 2px;
    left: -33px;
    width: 22px;
    height: 22px;
    border-radius: 100%;
}

@media(max-width: 992px) {
    .contact-block {
        flex-direction: column;
        gap: 40px;
        padding: 0 8px;
    }

    .contact-block .content-container {
        text-align: center;
        border-radius: 30px;
        padding: 20px 20px 65px 20px;
        justify-content: center;
    }

    .contact-block .content-container .content-inner {
        max-width: none;
    }

    .contact-block .icon {
        padding: 0;
    }

    .contact-block .content-container .title {
        font-size: 35px;
        line-height: 45px;
    }

    .contact-block form {
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .contact-block .form-group.email {
        order: 1;
    }

    .contact-block .form-group.agree {
        order: 2;
        text-align: left;
    }

    .contact-block button[type="submit"] {
        order: 3;
    }

    .contact-block .content-container .text {
        margin-bottom: 0px;
    }
}





/* Bottom Block */
.bottom-block {
    max-width: 1920px;
    margin: 40px auto;
}

.bottom-block .top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 44px;
}

.bottom-block .center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 20px;
    margin-bottom: 45px;
    background-color: #F8F8F8;
}

.bottom-block .center>.inner {
    max-width: 990px;
    margin: 0 auto;
    text-align: center;
    font-size: 21px;
}

.bottom-block .center>.inner>.quote {
    font-style: italic;
    margin-bottom: 36px;
}

.bottom-block .center>.inner>.author {
    font-weight: 700;
}

.bottom-block .bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-block .bottom img {
    max-width: 100%;
    height: auto;
}




/* Footer */
footer {
    max-width: 1920px;
    margin: 40px auto 0 auto;
}

footer .top {
    max-width: 1428px;
    padding: 0 40px;
    margin: 0 auto 45px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .top .logo{
    padding-right: 66px;
}

footer .top .info{
    padding-right: 118px;
}

footer .top .socials{
    padding-right: 128px;
}

footer .info .title {
    font-size: 30px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 18px;
}

footer .info .element {
    font-size: 18px;
    line-height: 26px;
}

footer .info .element b:before {
    content: ': ';
    font-weight: 400;
}

footer .socials {
    display: flex;
    gap: 9px;
}

footer .menu .title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

footer .menu>a {
    display: block;
    font-size: 18px;
    color: var(--color-text);
    transition: color 0.2s ease;
}

footer .menu>a:hover {
    color: var(--accent);
}

footer .bottom {
    padding: 8px 84px;
    color: #FFF;
    font-size: 14px;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .bottom div:nth-child(1)>a {
    font-weight: 700;
}

footer .bottom div:nth-child(1) .separator {
    margin: 0 4px;
}

@media(max-width: 1243px){
    footer .top {
        justify-content: space-between;
    }
    
    footer .top .logo, footer .top .info, footer .top .socials{
        padding-right: 0;
    }
}

@media(max-width: 1200px) {
    footer .info .element {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    footer .info .element b:before {
        display: none;
    }
}

@media(max-width: 992px) {
    footer .top {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    footer .info .element {
        display: block;
    }

    footer .info .element b:before {
        display: inline;
    }

    footer .menu .title {
        font-size: 30px;
    }

    footer .menu>a {
        font-size: 26px;
    }

    footer .top .logo {
        order: 1;
        margin-bottom: 38px;
    }

    footer .top .socials {
        order: 2;
        margin-bottom: 58px;
    }

    footer .top .info {
        order: 3;
        margin-bottom: 86px;
        text-align: center;
    }

    footer .top .menu {
        order: 4;
        margin-bottom: 50px;
        text-align: center;
    }

    footer .bottom {
        flex-direction: column;
        align-items: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    footer .bottom div:nth-child(1) {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    footer .bottom div:nth-child(1) .separator {
        display: none;
    }

}




/* News List */
.news-block-index {
    max-width: 1438px;
    padding: 0 77px;
    margin: 76px auto 112px auto;
}

.news-block-index .btn-more {
    display: block;
    text-align: center;
    margin: 77px auto;
}

@media(max-width: 768px) {
    .news-block-index {
        max-width: 1324px;
        padding: 0 20px;
        margin: 76px auto 112px auto;
    }
}

/* Breadcrumb */
ul.breadcrumb {
    font-size: 16px;
    justify-content: flex-start;
    margin: 20px 0 32px 0;
    padding: 0;
    background: none;
    display: block;
}

ul.breadcrumb a {
    color: var(--color-text);
}

ul.breadcrumb a:hover {
    color: currentColor;
}

ul.breadcrumb>li+li:before {
    content: "/";
    margin: 0 10px;
}

ul.breadcrumb>li.active {
    font-weight: 700;
}

ul.breadcrumb>li, ul.breadcrumb>li>a{
    display: inline;
}

@media(max-width: 768px) {
    ul.breadcrumb {
        justify-content: center;
    }
}

/* News page */
.news-block-content {
    max-width: 1223px;
    padding: 0 20px;
    margin: 30px auto 66px auto;
}

.news-block-content .breadcrumb {
    justify-content: flex-start;
}

.news-block-content .title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 76px;
    margin-bottom: 25px;
}

.news-block-content h1 {
    font-size: 36px;
    font-weight: 700;
}

.news-block-content .inner {
    max-width: 1083px;
    margin-left: auto;
    font-size: 18px;
}

.news-block-content .date {
    margin-bottom: 30px;
}

.news-block-content .lead {
    font-weight: bold;
    margin-bottom: 22px;
}

@media(max-width: 1223px) {
    .news-block-content .inner {
        max-width: none;
    }

    .news-block-content .title img {
        display: none;
    }
}

@media(max-width: 768px) {
    .news-block-content h1 {
        font-size: 30px;
    }

    .news-block-content .breadcrumb {
        font-size: 14px;
    }
}
















































/* DEFAULT MAIN.CSS */
iframe {
    display: block;
}

* {
    outline: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

::-ms-input-placeholder,
::-moz-placeholder,
::-webkit-input-placeholder {
    color: #d6d6d6;
    font-style: italic;
}

.slick-arrow {
    display: none !important;
}

.cbx,
.cbx-container {
    margin-top: 2px;
    vertical-align: top;
}

h1 {
    text-align: center;
    font-size: 26px;
    text-transform: uppercase;
}

img {
    max-width: 100%;
}

.clear {
    clear: both;
}

.nopadding {
    padding: 0px !important;
}

.nomargin {
    margin: 0px !important;
}

textarea {
    resize: none;
}

.cc-message {
    line-height: 1.2em !important;
}

.social-box {
    margin-top: 20px;
}

.social-box div,
.social-box iframe {
    float: left !important;
    margin: 0px 3px !important;
    line-height: 0px;
}

.video-main-container {
    width: 100%;
    max-width: 600px;
    position: relative;
    margin: 10px auto;
    display: block;
}

.video-container {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* hírlevél feliratkozás */

#newsletter-modal .modal-dialog .modal-content {
    border-radius: 0px;
    border: 8px solid #e8e8e8;
    text-align: center;
}

#newsletter-modal .modal-dialog .modal-content img {
    margin-top: 25px;
    margin-bottom: 15px;
}

#newsletter-modal .close {
    color: #008872;
    font-weight: normal;
    font-size: 22px;
    border-radius: 50%;
    border: 2px solid #008872;
    opacity: 1;
    display: block;
    width: 22px;
    height: 22px;
    margin: 10px;
    line-height: 18px;
    position: absolute;
    right: 0px;
    top: 0px;
}

.subscribe-row {
    background-image: url(images/subscribe-bck.jpg);
    padding-top: 30px;
    padding-bottom: 10px;
}

.newslettersubscribed-form {
    padding-bottom: 20px;
    width: 100%;
    margin: 0px auto;
    max-width: 720px;
}

.subs-title {
    font-size: 36px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.subs-text {
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
}

/* .field-newslettersubscribed-email
{
    position: relative;
    flex-grow: 1;
    margin: 0px;
}

.field-newslettersubscribed-email:before {
    position: absolute;
    display: block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0e0";
    z-index: 9;
    left: 18px;
    font-size: 16px;
    top: 6px;
} */

.field-newslettersubscribed-email input {
    border: 1px solid #e6e6e6 !important;
    border-radius: 0px;
    box-shadow: none !important;
    padding-left: 45px;
    height: 35px;
}

.btn-subscribe {
    height: 34px;
    border: 1px solid var(--accent);
    color: #fff !important;
    background-color: var(--accent) !important;
    margin-left: 5px;
    text-transform: uppercase;
    border-radius: 0px;
}

.btn-subscribe:hover {
    color: var(--accent) !important;
    background-color: #fff !important;
}

.subscribe-agree-checkbox .form-group,
.subscribe-agree-checkbox .form-group input {
    width: 100%;
}

.subscribe-agree-checkbox label {
    font-size: 11px;
    font-weight: 300;
}

.subscribe-agree-checkbox label a {
    font-weight: 400;
}

.field-newslettersubscribed-recaptcha {
    text-align: center;
}

#recaptcha-subscribe-recaptcha-subs-form>div {
    display: inline-block;
}

.subsmsg {
    font-size: 36px;
    text-align: center;
    /* text-transform: uppercase; */
    display: block;
    line-height: normal;
}

@media(max-width: 576px) {
    .subsmsg {
        font-size: 28px;
    }
}

.custom-control-input.is-valid~.custom-control-label,
.was-validated .custom-control-input:valid~.custom-control-label {
    color: #fff;
}

.newsletter-agree-checkbox label,
.contact-agree-checkbox label,
.subscribe-agree-checkbox label {
    width: calc(100% - 37px);
}

/* hírlevél feliratkozás */

/* pagination */

.pagination {
    display: flex;
    justify-content: center;
    margin: 32px auto;
    width: 100%;
    text-align: center;
}

.pagination > li {
    display: inline-block;
}

.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: var(--accent);
    text-decoration: none;
    background-color: #fff;
    border: 1px solid var(--accent);
}

.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
    z-index: 2;
    color: #fff;
    background-color: var(--accent);
    border-color: var(--accent);
}

.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border: 1px solid var(--accent);
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: var(--accent);
    border-color: var(--accent);
}

/* pagination */

/* checkboxX */

.cbx-active,
.cbx-disabled {
    border-radius: 0px;
    box-shadow: none !important;
    background-color: #fff;
}

/* checkboxX */

/* statikus oldalaknál minden képre 3px margó kerül */
.staticpages-view .staticpages-content img {
    margin: 3px;
}

.sp-gallery{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.header-top {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #f6f6f6;
}

.ht-contact a {
    margin-right: 15px;
}

.ht-contact a i {
    margin-right: 5px;
}

.ht-menu {
    text-transform: uppercase;
}

.ht-menu a {
    margin: 0px 4px;
}

.ht-menu a:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    margin-right: 10px;
}

.ht-menu a:first-child:before {
    display: none;
}

.header-middle {
    padding-top: 20px;
    padding-bottom: 20px;
}

#carticon {
    margin-right: 7%;
}

.basket {
    font-size: 16px;
    white-space: nowrap;
}

.basket-icon {
    margin-right: 12px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid var(--accent);
    background-color: var(--accent);
    font-size: 18px;
    width: 45px;
    min-width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    position: relative;
}

.basket:hover .basket-icon {
    color: var(--accent) !important;
    background-color: #fff;
}


.basket-icon-count {
    display: none;
    position: absolute;
    top: -5px;
    right: -5px;
    border-radius: 50%;
    background-color: #363f46;
    color: #fff;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
}

.basket-text {
    display: inline-block;
    vertical-align: middle;
}

.header-bottom {
    background-color: #fafafa;
}

.mobile-search {
    position: relative;
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.mobile-search:before {
    position: absolute;
    display: block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f002";
    z-index: 9;
    left: 12px;
    font-size: 16px;
    top: 5px
}

.mobile-searchinput {
    border: 1px solid #ebebeb;
    height: 34px;
    flex-grow: 1;
    padding-left: 40px;
    position: relative
}

.mobile-searchbutton {
    background: #363f46;
    color: #fff;
    border: 1px solid #363f46;
    height: 34px;
    padding: 0px 20px;
    text-transform: uppercase;
}

.mobile-searchbutton i {
    display: none
}

.mobile-searchbutton:hover {
    background: #fff;
    color: #363f46
}


/*** menu ***/
.navbar {
    border: 0px;
    background-color: initial;
    margin: 0px;
    font-weight: 700;
    text-transform: uppercase;
    min-height: 0px;
    padding: 0;
}

.nav-social .nav-item {
    margin-right: 10px;
}

.categories-dd {
    background-color: #3f4951 !important;
    color: #fff !important;
    position: relative;
    padding-left: 65px !important;
}

.categories-dd:hover {
    background-color: #363f46 !important;
    color: #fff !important;
}

.categories-dd span {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: 50px;
    background-color: #363f46 !important;
    font-size: 22px;
    text-align: center;
    line-height: 40px;
}

.offers-container {
    margin-bottom: 50px;
}

.quote-row {
    padding: 30px 0;
    background-color: #fafafa;
    margin-bottom: 50px;
}

.quote-row h1 {
    font-weight: 700;
    font-size: 26px;
    text-align: center;
    margin: 0;
}

.quote-row .fa-quote-right {
    color: #e6e6e6;
    font-size: 48px;
    margin-right: 10px;
}

.product-offer {
    padding: 15px;
    background-color: #fbfbfb;
}

.product-offer-title {
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
    line-height: initial;
}

.product-offer-description {
    font-size: 17px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 10px;
    text-align: center;
}

.product-offer-more {
    color: #fff !important;
    background-color: #363f46 !important;
    border: 1px solid #363f46;
    text-transform: uppercase;
    padding: 5px 20px;
    border-radius: 4px;
}

.product-offer-more:hover {
    color: #363f46 !important;
    background-color: #fff !important;
}

.mp-row {
    width: 100%;
}

.mp-row span {
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 700;
}

.mp-row .mp-box-title span {
    margin: 0px 15px;
}

.mp-row .mp-box-lefthr {
    height: 1px;
    width: 35px;
    margin-right: 15px;
    background-color: var(--accent);
}

.mp-row .mp-box-icon {
    border-radius: 50%;
    background-color: var(--accent);
    text-align: center;
    height: 45px;
    width: 45px;
    min-width: 45px;
    min-height: 45px;
    line-height: 45px;
    color: #fff;
    font-size: 24px;
    margin-right: 15px;
}

@media (max-width: 576px) {
    .mp-row .mp-box-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
        line-height: 30px;
        font-size: 16px;
    }
    
    .kehop-btns{
        flex-direction: column!important;
        gap: 15px;
    }
}

.mp-row .mp-box-icon.mp-box-icon-black {
    background: var(--black);
}

.mp-row .mp-box-righthr {
    height: 1px;
    flex-grow: 1;
    background-color: #e7e7e7;
    margin-left: 15px;
}

.product-item-slider {
    margin: 0px 15px;
}

.product-item {
    padding: 20px;
    border: 1px solid #eeeeee;
    background-color: #fbfbfb;
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
}

.product-item a:hover {
    color: currentColor;
    text-decoration: none;
}

.product-item-img {
    width: 100%;
    height: 250px;
    margin-bottom: 15px;
}

.product-item-img img {
    max-width: 100%;
    max-height: 100%;
}

.product-item-title {
    font-size: 15px;
    line-height: 19px;
    height: 38px;
    display: block;
    overflow: hidden;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.product-item-price {
    font-weight: 700;
    text-align: center;
    font-size: 30px;
    line-height: 34px;
    height: 34px;
    display: block;
    overflow: hidden;
    margin-bottom: 5px;
}

.product-item-originalprice {
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    height: 20px;
    display: block;
    overflow: hidden;
    margin-bottom: 5px;
}

.product-item .addToCart-button {
    color: #fff !important;
    background-color: #363f46 !important;
    border: 1px solid #363f46;
    text-transform: uppercase;
    padding: 5px 20px;
    border-radius: 4px;
    display: inline-block;
}

.product-item .addToCart-button i {
    margin-right: 10px;
}

.product-item .addToCart-button:hover {
    color: #363f46 !important;
    background-color: #fff !important;
}

.product-item-discount {
    position: absolute;
    top: 15px;
    left: 15px;
    text-align: center;
    color: #fff;
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--accent);
    font-size: 14px;
    font-weight: 700;
}

.slider-more-btn {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 30px;
}

.slider-more-btn:hover a {
    color: var(--accent);
}

.smb-left {
    position: absolute;
    bottom: 0px;
    left: 10px;
    height: 1px;
    width: calc(50% - 10px);
    display: block;
    background-color: #363f46;
}

.smb-right {
    position: absolute;
    bottom: 0px;
    right: 10px;
    height: 1px;
    width: calc(50% - 10px);
    display: block;
    background-color: var(--accent);
}

.bottom-offer {
    margin: 30px 0px;
    border: 1px dashed #e3e3e3;
}

/*
.contact-row
{
    background-image: url(images/subscribe-bck.jpg);
    padding-top: 40px;
    padding-bottom: 40px;
}

.contact-form-container
{
    padding-bottom: 20px;
    width: 100%;
    margin: 0px auto;
    max-width: 720px;
}

.contact-form-title
{
    font-size: 36px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.contact-form-text
{
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
}

.contact-form-container input
{
    border: 1px solid #e6e6e6 !important;
    border-radius: 0px;
    box-shadow: none !important;
    padding-left: 45px;
    height: 35px;
}

.contact-form-container textarea
{
    border: 1px solid #e6e6e6 !important;
    border-radius: 0px;
    box-shadow: none !important;
    height: 125px;

}

.contact-inputs .form-group
{
    margin: 0px 3px;
}

.contact-inputs .field-contact-name, .contact-inputs .field-contact-email, .contact-inputs .field-contact-phone
{
    position: relative;
}

.contact-inputs .field-contact-name:before, .contact-inputs .field-contact-email:before, .contact-inputs .field-contact-phone:before
{
    position: absolute;
    display: block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0e0";
    z-index: 9;
    left: 18px;
    font-size: 16px;
    top: 6px;
}

.contact-inputs .field-contact-name:before{
    content: "\f007";
    left: 19px;
}

.contact-inputs .field-contact-phone:before
{
    content: "\f3cd";
    left: 21px;
}

.contact-agree-checkbox
{
    margin: 0px 3px;
}

.contact-agree-checkbox label
{
    font-size: 11px;
    font-weight: 300;
}

.contact-agree-checkbox a
{
    font-weight: 400;
}

.btn-contactsend
{
    height: 34px;
    border: 1px solid var(--accent);
    color: #fff !important;
    background-color: var(--accent) !important;
    margin-left: 30px;
    margin-top: 15px;
    text-transform: uppercase;
    border-radius: 0px;
}

.btn-contactsend:hover
{
    color: var(--accent) !important;
    background-color: #fff !important;
}

#contact-box .alert
{
    text-align: center;
    font-size: 20px;
    border-radius: 0px;
    color: #363f46 !important;
    border: 0px;
    background-color: initial;
    text-transform: uppercase;
}
*/

.news-slider-item {
    padding: 15px;
    background-color: #fbfbfb;
    font-size: 0px;
    margin: 15px;
}

.news-slider-item img {
    display: inline-block;
    vertical-align: top;
}

.news-slider-item-content {
    margin-left: 20px;
}

.news-slider-item-content a:hover {
    color: currentColor;
}

.news-slider-title {
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.news-slider-lead {
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    font-style: italic;
}

.product-slider {
    width: 100%;
}

.product-slider-item {
    padding: 15px;
    background-color: #fbfbfb;
    font-size: 0px;
    margin: 15px;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid var(--accent);
    height: 170px;
}

.product-slider-item a:hover {
    color: currentColor;
}

.product-slider-item .product-slider-item-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-slider-title {
    font-size: 15px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-top: 5px;
}

.product-slider-price {
    display: block;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
}

.product-slider-originalprice {
    display: block;
    text-align: center;
    font-size: 16px;
}

.show-slick-arrow .slick-arrow {
    display: block !important;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    position: absolute;
    border: 1px solid var(--accent);
    background-color: var(--accent) !important;
    color: #fff !important;
    position: absolute;
    top: -34px;
}

.show-slick-arrow .slick-arrow:hover {
    background-color: #fff !important;
    color: var(--accent) !important;
}

.show-slick-arrow .slick-arrow:hover:before {
    color: var(--accent) !important;
}

.slick-next.slick-arrow {
    right: 15px;
}

.slick-prev.slick-arrow {
    left: auto;
    right: 65px;
}

.show-slick-arrow .slick-arrow:before {
    display: block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f053";
    z-index: 9;
    font-size: 25px;
    opacity: 1;
    line-height: 45px;
}

.show-slick-arrow .slick-next.slick-arrow:before {
    content: "\f054" !important;
}

.brand-slider-item {
    margin: 15px;
    text-align: center;
    width: 100%;
}

.brand-slider-item img {
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
}

.product-brands .slick-track {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

/*
footer
{
    margin-top: 40px;
}

.footer-bottom
{
    background-color: var(--accent);
    color: #fff;
    text-transform: uppercase;
    padding-top: 10px;
    padding-bottom: 10px;
}

.footer-bottom a
{
    color: #fff !important;
}

.footer-middle
{
    background-color: #2a3137;
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-icons img
{
    margin: 15px;
    max-width: 100%;
}

.footer-top
{
    color: #fff;
    background-color: #2f373e;
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 17px;
    text-transform: uppercase;
}

.footer-top a
{
    color: #fff !important;
}

.footer-menu-title
{
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid #fff;
    margin-bottom: 10px;
}

.footer-menu
{
    padding-left: 20px;
}

.footer-menu li
{
    padding: 4px 0px;
}

.footer-info-menu
{
    text-transform: none;
    list-style: none;
    list-style-type: none;
    padding-left: 0px;
}

.footer-info-menu i
{
    width: 22px;
    text-align: center;
}

.footer-social
{
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}

.footer-social a
{
    display: inline-block;
    vertical-align: top;
    margin: 12px;
}

.footer-social a i
{
    width: auto;
}

.footer-cateroy-menu
{
    list-style: none;
    font-size: 0px;
    padding: 0px;
}

.footer-cateroy-menu li
{
    display: inline-block;
    vertical-align: top;
    width: 50%;
    font-size: 17px;
}

.footer-cateroy-menu li a
{
    position: relative;
    padding-left: 20px;
}

.footer-cateroy-menu li a:before {
    position: absolute;
    display: block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    z-index: 9;
    left: 6px;
    font-size: 15px;
    top: 2px;
}
*/


.osmmap .leaflet-container {
    height: 300px !important;
}

@media (min-width: 1600px) {
    .container {
        width: 1560px;
    }
}

@media (min-width: 768px) {
    .mobile-search {
        display: none;
    }
}

@media (max-width: 1200px) {
    #carticon {
        margin: 0px;
    }

    /* .navbar-nav > li > a
    {
        padding: 15px !important;
    } */
    .product-offer-title {
        font-size: 18px;
        line-height: 22px;
        height: 44px;
    }

    .product-offer-description {
        font-size: 15px;
        line-height: 18px;
        height: 90px;
    }

    .product-item-img {
        height: 180px;
    }
}

@media (max-width: 992px) {
    .logo img {
        max-width: 150px;
    }

    .basket-text {
        margin: 0px;
    }

    .basket-text {
        display: none;
    }

    .basket-icon-count {
        display: block;
    }

    .ht-menu {
        margin-top: 10px;
    }

    .ht-menu a:first-child {
        margin-left: 0px;
    }

    /* .navbar-right
    {
        display: none;
    }
    .navbar-nav > li > a
    {
        padding: 10px 10px !important;
    } */
    .categories-dd span {
        display: none;
    }

    #acpsearch {
        width: 50%;
    }

    .product-offer-title,
    .product-offer-description {
        height: auto;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    /* .navbar-nav i
    {
        width: 20px;
        margin-right: 5px;
        text-align: center;
    } */
    .mobile-social {
        text-align: center;
    }

    .mobile-social a {
        display: inline-block !important;
        vertical-align: top;
        margin: 5px;
    }

    /* .navbar-default .navbar-collapse
    {
        margin-top: 20px;
    }
    .navbar{
        position: static;
    } */
    #carticon {
        margin-right: 60px;
    }

    /* #mainCarousel
    {
        display: none;
    } */
    .product-item-img,
    .product-item-title,
    .product-item-price,
    .product-item-originalprice {
        height: auto;
    }

    .product-item-slider .product-item-img {
        height: 180px;
    }

    .subs-title,
    .contact-form-title {
        font-size: 24px;
    }

    .mp-box-lefthr {
        display: none;
    }

    /* .footer-middle
    {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .footer-icons img
    {
        margin: 5px;
    } */
    h1 {
        font-size: 22px;
    }

    /* .footer-top, .footer-cateroy-menu li
    {
        font-size: 15px;
    }
    .footer-bottom .flexbox-center-between-wrap
    {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-content: center;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .footer-bottom .flexbox-center-between-wrap div:first-child
    {
        margin-bottom: 10px;
    } */
    .news-slider-item-content {
        width: 100%;
    }
}

@media (max-width: 550px) {
    .contactsender {
        display: block;
        text-align: center;
    }

    .btn-contactsend {
        margin-left: 0px;
        margin-top: 0px;
    }

    #recaptcha-1-recaptcha-contact-form>div {
        display: inline-block;
    }

    .product-slider-item {
        margin: 5px 0px;
    }

    .news-slider-item-content {
        width: 100%;
        margin: 0px;
    }

    .product-slider-img {
        width: 60px;
    }

    .product-slider-item-content {
        width: calc(100% - 70px);
        margin-left: 8px;
    }

    .product-slider-title {
        margin-top: 0px;
        margin-bottom: 3px;
    }

    .product-slider-price {
        font-size: 18px;
    }

    .product-slider-originalprice {
        font-size: 13px
    }

    .mp-box-icon {
        height: 30px;
        width: 30px;
        min-width: 30px;
        min-height: 30px;
        flex: 0 0 30px;
        line-height: 30px;
        font-size: 18px;
    }

    .mp-box-title span {
        margin: 0px 8px;
    }

    .show-slick-arrow .slick-arrow {
        display: none !important;
    }

    /* .footer-cateroy-menu li
    {
        width: 100%;
    } */
    .mobile-searchbutton {
        padding: 0px 10px;
    }

    .mobile-search::before {
        left: 6px;
    }

    .mobile-searchinput {
        padding-left: 25px;
    }
}

.spinner-custom {
    --size: 35px;
    width: var(--size);
    height: var(--size);
    border: 2px solid white;
    border-radius: 50%;
    border-top-color: var(--accent);
    border-bottom-color: var(--accent);
    animation: spin 1s ease infinite;
    display: none;
    margin: 0 auto;
}

.kehop-title
{
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
    display: block;
    width: 100%;
    text-align: center;
}

.kehop-h1
{
    font-weight: 400;
    font-size: 26px;
    line-height: 30px;
    text-align: center;
}

.kehop-content
{
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 26px;
}

.kehop-content h2
{
    font-size: 26px;
    width: 100%;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.kehop-content p
{
    width: 100%;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.kehop-content hr
{
    position: relative;
    margin: 30px auto;
    border: 0px;
    background-color: #87222F;
    display: block;
    height: 1px;
    width: 100%;
}

.kehop-content hr:before
{
    content: "";
    position: absolute;
    left: 0px;
    top: -3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 0 3px 6px;
    border-color: transparent transparent transparent #87222f;
}

.kehop-content hr:after
{
    content: "";
    position: absolute;
    right: 0px;
    top: -3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 6px 3px 0;
    border-color: transparent #87222f transparent transparent;
}

.kehop-content table
{
    margin: 10px auto;
    margin-bottom: 30px;
}

.kehop-content table, .kehop-content tr, .kehop-content td {
    width: auto !important;

    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.kehop-content td
{
    padding: 10px;
}

.kehop-content img
{
    width: auto !important;
    height: auto !important;
}

.kehop-btns
{
    margin: 20px auto;
    margin-top: 30px;

    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.kehop-btn
{
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    color: #D6D6D6 !important;
    border: 1px solid #EBEBEB !important;
    padding: 10px;
    margin: 0px 15px;
    width: 170px;
}

.kehop-btn:hover, .kehop-btn-active
{
    color: #000000 !important;
    border: 1px solid #000000 !important;
}

@media (max-width: 800px) {
    .kehop-content tr {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}