
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/****************************************
    Project: Podoma
    Author: AppTree
    Author URI: http://www.apptree.mk
    Version: 1.0
    License: GNU General Public License
*****************************************/

/* SHORTCUTS*/
.padd-20{
    padding: 20px;
}


/* -------------------------------- 

    Primary style

-------------------------------- */

* {
    font-family: "MyriadPro";
}

*, *::after, *::before {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: 'PequenaNeo', sans-serif;
    color: #2e3233;
    background-color: #ffffff;
}

/* body.nav-is-toggled{
    transform: translateX(10%);
} */

a {
    color: #69aa6f;
    text-decoration: none;
}

a:focus {
    outline: none!important;
}

img {
    /* make images responsive */
    max-width: 100%;
}

input {
    font-family: sans-serif;
    font-size: 1.6rem;
}

input[type="search"]::-ms-clear {
    /* removes close icon - IE */
    display: none;
}

input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

table td, 
table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}


/* -------------------------------- 

    HEADER

-------------------------------- */

header .wrapper{
    background: #ffffff;
    height: 90px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

header .wrapper.scroll{
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    box-shadow: 0 3px 5px 0 rgb(0 0 0 / 10%);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/* LOGO */
header .wrapper .logo {
    position: relative; 
    top: 10px;
    left: 40px;
    display: block;
    background-image: url('../img/podoma.png');
    background-repeat: no-repeat;
    height: 80px;
    width: 150px;
}

/* MENU */
header .wrapper .menu .navbar {
    padding: 0;
}

.dropdown-toggle::after {
    display: none;
}

header .wrapper .menu .navbar ul.navbar-nav a.nav-link {
    color: #333;
    font-size: 20px;
    line-height: 50px;
    padding: 0;
    cursor: pointer;
    text-transform: uppercase;
    background: transparent;
    transition: ease-in .1s;
}

header .wrapper .menu .navbar ul.navbar-nav a.nav-link:hover {
    opacity: 0.7;
}


header .wrapper .menu .navbar ul.navbar-nav li.nav-item {
    display: inline;
    height: 50px;
    padding: 0 22px;
    margin: 0;
    border: none;
}

header .wrapper .menu .navbar ul.navbar-nav li.show {
    border-radius: 10px 10px 0 0;
    transition: ease-in .1s;
}

header .wrapper .menu .navbar ul.navbar-nav li.dropdown.show a {
    border-bottom: 2px solid #fdb913;
    transition: ease-in .1s;
}

header .wrapper .menu .navbar ul.navbar-nav ul.dropdown-menu {
    width: 170px;
    margin: 0;
    padding: 0;
    left: auto;
    font-size: 13px;
    letter-spacing: 1px;
    color: #212121;
    background-color: #ffffff;
    border: none;
    /* border-radius: 12px; */
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
    transform: translate3d(0, 30px, 0);
}

header .wrapper .menu .navbar ul.navbar-nav ul.dropdown-menu.show {
    opacity: 0.97;
    visibility: visible;
    max-height: 999px;
    transform: translate3d(0, 10px, 0);
    z-index: 99999;
}

header .wrapper .menu .navbar ul.navbar-nav li.nav-item a.dropdown-item {
    font-size: 15px;
    color: #111;
    padding: 15px;
    line-height: normal;
    letter-spacing: normal;
    white-space: normal;
    border: none;
}

header .wrapper .menu .navbar ul.navbar-nav li.nav-item a.dropdown-item {
    border-bottom: 1px solid #fff;
    transition: ease-in .1s;
}


header .wrapper .menu .navbar ul.navbar-nav li.nav-item .submenu-children li a {
    padding: 15px;
}

header .wrapper .menu .navbar ul.navbar-nav li.nav-item a.dropdown-item:focus,
header .wrapper .menu .navbar ul.navbar-nav li.nav-item a.dropdown-item:hover,
header .wrapper .menu .navbar ul.navbar-nav li.nav-item a.dropdown-item:active {
    border-bottom: 1px solid #fdb913 !important;
    background-color: transparent;
}

header .wrapper .menu .navbar ul.navbar-nav ul.dropdown-menu li.dropdown-submenu {
    position: relative;
}

header .wrapper .menu .navbar ul.navbar-nav ul.dropdown-menu li.dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 10px;
    top: 47%;
}

.dropdown-toggle-icon::before {
    color: #fdb913;
    border-style: solid;
    border-width: 0.5px 0.5px 0 0;
    content: '';
    display: inline-block;
    height: 0.6em;
    right: 12px;
    position: absolute;
    top: 44%;
    transform: rotate(45deg);
    vertical-align: top;
    width: 0.6em;
}

header .wrapper .menu .navbar ul.navbar-nav ul.dropdown-menu li.dropdown-submenu .dropdown-menu {
    top: 40%!important;
    left: 100%;
    margin-left: 0.5rem;
    margin-right: .1rem;
}

/* LANG */
header .wrapper ul.lang {
    line-height: 30px;
    margin-right: 15px;
}

header .wrapper ul.lang li {
    display: inline;
}

header .wrapper ul.lang li::after {
    content: '';
    position: absolute;
    background-color: #fdb913;
    width: 1px;
    height: 35%;
    bottom: 26px;
}

header .wrapper ul.lang li:last-child::after {
    display: none;
}

header .wrapper ul.lang li a {
    font-size: 16px;
    color: #b5b5b5;
    padding: 10px 10px 10px 5px;
    transition: ease-out .2s;
}

header .wrapper ul.lang li a:hover {
    color: #111;
    text-decoration: none;
    transition: ease-in .2s;
}

header .wrapper ul.lang li a {
    opacity: 0.4;
}

header .wrapper ul.lang li.active a {
    opacity: 1;
}

/* LANG Mobile */
header .wrapper .lang-mob select {
    position: absolute;
    right: 10px;
    top: -50px;
    color: #fff;
    border: none;
    background: #fbba05;
    padding: 5px;
}

header .wrapper .lang-mob select option {
    color: #003f88;
}

header .wrapper .lang-mob select:focus {
    outline: none;
}

header .wrapper .bubble{
    position: absolute;
    width: 150px;
    height: 90px;
    background-image: url('../img/ballon.svg');
    background-repeat: no-repeat;
}

/* -------------------------------- 

Overlay mobile menu

-------------------------------- */

.menu-icon {
    height: 30px;
    width: 30px;
    position: absolute;
    z-index: 2;
    cursor: pointer;
    display: block;
    left: 5%;
    top: 45%;
}

@media only screen and (min-width: 1170px) {
    .menu-icon {
        display: none;
    }
}

.menu-icon-line {
    height: 2px;
    width: 30px;
    display: block;
    background-color: #fbba05;
    margin-bottom: 7px;
    cursor: pointer;
    -webkit-transition: background-color .5s ease, -webkit-transform .2s ease;
    transition: background-color .5s ease, -webkit-transform .2s ease;
    transition: transform .2s ease, background-color .5s ease;
    transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}

.menu-icon-line-left {
    width: 16.5px;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.menu-icon-line-right {
    width: 16.5px;
    float: right;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.menu-icon:hover .menu-icon-line-left, 
.menu-icon:hover .menu-icon-line-right {
    width: 30px;
}

.mobile-nav {
    position: fixed;
    z-index: 98;
}

.mobile-nav:before, 
.mobile-nav:after {
    content: "";
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(227, 228, 232, 0.6);
    border-bottom-left-radius: 200%;
    z-index: -1;
    -webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
    transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
    transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
    transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
    -webkit-transform: translateX(100%) translateY(-100%);
    transform: translateX(100%) translateY(-100%);
}

.mobile-nav:after {
    background: #e9b035;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.mobile-nav:before {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.nav-mobile {
    margin-top: 90px;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.nav-is-toggled .nav-mobile {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.nav-is-toggled::after {
    opacity: 1;
    visibility: visible;
}

.nav-mobile {
    display: -webkit-box;
    display: flex;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: 0.45s;
    transition: 0.45s;
    box-shadow: 0 5px 10px 0 rgb(138 155 165 / 15%);
}

.nav-items {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
}

/* .nav-item:not(:last-child) {
    border-bottom: solid 1px #daf9f4;
} */

nav .nav-link {
    display: block;
    padding: .5em 1em;
    background-color: #fff;
    color: #fbba05;
    font-size: 1rem;
    line-height: 1.3em;
    font-weight: 300;
}

nav .nav-link::after{
    color: #fbba05;
}

.nav-expand-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    visibility: hidden;
}

.nav-expand-content a.main-category {
    font-weight: 600;
    background-color: #ffebb5;
}

.nav-expand-content .nav-back-link i{
    margin-right: 0.5em;
}

.nav-expand-link {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.nav-expand-link:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f054";
    font-weight: 600;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    color: #fbba05;
    font-size: 18px;
    margin-left: 10px;
}

.nav-expand.active>.nav-expand-content {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
}

body.nav-is-toggled .menu-icon-line {
	background-color: #fbba05;
	-webkit-transform: translate(0px, 0px) rotate(-45deg);
          transform: translate(0px, 0px) rotate(-45deg);
}
body.nav-is-toggled .menu-icon-line-left {
	width: 15px;
	-webkit-transform: translate(2px, 4px) rotate(45deg);
          transform: translate(2px, 4px) rotate(45deg);
}
body.nav-is-toggled .menu-icon-line-right {
	width: 15px;
	float: right;
	-webkit-transform: translate(-3px, -3.5px) rotate(45deg);
          transform: translate(-3px, -3.5px) rotate(45deg);
}
body.nav-is-toggled .menu-icon:hover .menu-icon-line-left,
body.nav-is-toggled .menu-icon:hover .menu-icon-line-right {
	width: 15px;
}


/* -------------------------------- 

    Slider components 

-------------------------------- */

#slider {
    width: 1200px;
    height: 630px;
    margin: 0 auto;
}

#slider img.overlay-line{
    position: absolute;
    top: -7px;
    z-index: 99;
}

#slider .kv-product-image-mob {
    display: none;
}

.ls-v6 .ls-bottom-nav-wrapper{
    display: none!important;
}

#slider .kv-category-title-slide-m{
    display: none!important;
}

#slider .bubble{
    position: absolute;
    top: 3%;
    right: 13%;
    width: 150px;
    height: 150px;
    background-image: url('../img/ballon.svg');
    background-repeat: no-repeat;
    z-index: 99;
}

#slider .ls-v6 .ls-nav-prev:after{
    top: 100px;
    left: 80px;
    display: block!important;
}

#slider .ls-v6 .ls-nav-next:after{
    top: 100px;
    right: 80px;
    display: block!important;
}

/* -------------------------------- 

    Vertial Small menu components 

-------------------------------- */

.kv-menu-vertical {
    width: 250px;
    position: fixed;
    top: 180px;
    z-index: 99;
    right: -250px;
    transition: ease-in 0.4s;
}

.kv-menu-vertical a.trigger {
    background-image: url('../img/pull_icon.svg');
    width: 29px;
    height: 63px;
    position: absolute;
    left: -28px;
    top: 0;
    transition: ease-in 0.4s;
}

.kv-menu-vertical.active a.trigger {
    background-image: url('../img/push_icon.svg');
    transition: ease-in 0.4s;
}

.small-menu-open {
    right: 0px!important;
    transition: ease-in 0.4s;
}

.kv-menu-vertical .kv-menu {
    background: #f8f8f8;
    color: #333;
    font-size: 14px;
    padding: 15px;
    margin-top: 0;
    font-weight: 500;
    border-bottom-left-radius: 30px;
    -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 15px rgba(0, 0, 0, .175);
}

.kv-menu-vertical .kv-menu a{
    text-decoration: none;
}

.kv-menu-vertical .kv-menu .media img {
    width: 25%;
}

.kv-menu-vertical .kv-menu .media .media-body {
    height: 62px;
    border-bottom: 1px solid #93bbde;
}

.kv-menu-vertical .kv-menu .media .media-body h5 {
    color: #093f87;
    text-transform: uppercase;
    transition: ease-in-out .2s;
}

.kv-menu-vertical .kv-menu .media .media-body h5:hover {
    color: #e91490;
    text-decoration: none;
    transition: ease-in .2s;
}

/* -------------------------------- 

    Body components 

-------------------------------- */

main {
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center bottom;
    /* background-size: 100% 90%; */
}

/* About Us Holder */

.kv-about_holder {
    text-align: center;
    font-family: "MyriadPro";
}

.kv-about_holder p {
    font-size: 15px;
    color: #1f4386;
    margin-bottom: 10px;
}

.kv-about_holder p sup {
    vertical-align: super;
}

.kv-about_holder p sub {
    vertical-align: sub;
}

.kv-about_holder p strong {
    font-weight: 600;
}

.kv-about_holder p i {
    font-style: italic;
}

/* Pediater Holder */

.kv-pediater_holder .kv-pediatar a.kv-pediatar-logo {
    display: block;
    background-image: url('../img/ask-doctor/Expert_HR.png');
    background-repeat: no-repeat;
    width: 150px;
    height: 75px;
    z-index: 9999;
}

.kv-pediater_holder .kv-pediatar a.kv-pediatar-logo-en {
    display: block;
    background-image: url('../img/ask-doctor/Expert_EN.png');
    background-repeat: no-repeat;
    width: 150px;
    height: 75px;
    z-index: 9999;
}



/* News Holder */

.kv-news_holder {
    font-family: MyriadPro, sans-serif;
}

.kv-news_holder .kv-news_title {
    text-align: center;
}

.kv-news_holder .kv-news_title h2 {
    color: #ed017e;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
}

.kv-news_holder .card-body {
    padding: 15px;
    background-color: #f4f2f3;
}

.kv-news_holder .card-body a.card-title {
    font-size: 17px;
    font-weight: 600;
    color: #ed017e;
    transition: ease-in-out .2s;
}

.kv-news_holder .card-body a.card-title:hover {
    text-decoration: none;
    opacity: 0.7;
    transition: ease-in .1s;
}

.kv-news_holder .card-body p.card-text {
    font-size: 15px;
    color: #003f88;
    margin-top: .9rem;
    line-height: 18px;
    height: 65px;
}

.kv-news_holder .card-body a.btn {
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    background-color: #ed017e;
    padding: 0 25px;
    border-radius: 5px;
    margin-left: 20px;
    transition: ease-in-out .2s;
}

.kv-news_holder .card-body a.btn:hover {
    opacity: 0.7;
    transition: ease-in .2s;
}

.kv-news_holder .card-body a.btn:focus {
    outline: none;
}

.kv-news_holder .owl-carousel .owl-dots button:focus {
    outline: none;
}

.kv-news_holder .owl-theme .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    background: #D6D6D6;
}

.kv-news_holder .owl-theme .owl-dots .owl-dot.active span, .kv-news_holder .owl-theme .owl-dots .owl-dot:hover span {
    background: #96bade;
}

.kv-news_holder .kidsvits-news .title{
    height: 55px;
}

/* Media Holder */

.kv-media_holder {
    margin-top: 80px;
}

.kv-media_holder .kv-media_title {
    text-align: center;
}

.kv-media_holder .kv-media_title h2 {
    color: #ed017e;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
}

.kv-media_holder .owl-carousel .owl-item img {
    padding: 6% 13%;
}

.kv-media_holder .owl-carousel .owl-item.center img {
    padding: 0;
    transition: ease-in .3s;
}

.kv-media_holder .owl-carousel .owl-item i {
    display: none;
}

.kv-media_holder .owl-carousel .owl-item.center i {
    position: absolute;
    display: block;
    top: 40%;
    left: 45%;
    font-size: 50px;
    color: #fff;
}

.kv-media_holder .owl-carousel .owl-item p {
    color: #ed017e;
    text-align: center;
    text-transform: uppercase;
}

.kv-media_holder .owl-carousel .owl-item.center p {
    display: none;
}

.kv-media_holder .owl-carousel .owl-prev, .kv-media_holder .owl-carousel .owl-next {
    position: absolute;
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.kv-media_holder .owl-carousel .owl-nav {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
}

.kv-media_holder .owl-carousel .owl-prev {
    left: 0;
}

.kv-media_holder .owl-carousel .owl-next {
    right: 0;
}

.kv-media_holder .owl-carousel .owl-prev i, .kv-media_holder .owl-carousel .owl-next i {
    color: #fdb812;
    font-size: 25px;
}

.kv-media_holder .owl-carousel .owl-prev:hover, .kv-media_holder .owl-carousel .owl-next:hover, .kv-media_holder .owl-carousel .owl-prev:focus, .kv-media_holder .owl-carousel .owl-next:focus {
    background: transparent;
    outline: none;
}

/* Category & Article Holder */

.kv-catart_holder {
    margin-top: 90px;
    font-family: "MyriadPro";
}

.kv-catart_holder .kv-categries .card {
    border: none;
}

.kv-catart_holder .kv-categries .card .card-img-overlay img.logo {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 85px;
}

.kv-catart_holder .kv-categries .card .card-img-overlay {
    padding: 30px;
}

.kv-catart_holder .kv-categries .card h5.card-title {
    color: #fdb812;
    font-size: 30px;
    width: 35.5%;
}

.kv-catart_holder .kv-categries .card .card-img-overlay a {
    position: absolute;
    bottom: 10%;
    font-size: 15px;
    color: #fff;
    background-color: #fdb812;
    padding: 0 25px;
    border-radius: 5px;
    transition: ease-in-out .2s;
}

.kv-catart_holder .kv-categries .card .card-img-overlay a.btn:hover {
    opacity: 0.7;
    transition: ease-in .2s;
}

/* Article Holder */

.kv-catart_holder .kv-articles {
    margin-top: 40px;
}

.kv-catart_holder .kv-articles .card {
    border: none;
}

.kv-catart_holder .kv-articles .card .card-img {
    margin-bottom: -3px;
}

.kv-catart_holder .kv-articles .card .card-body {
    padding: 20px;
}

.kv-catart_holder .kv-articles .card h5.card-title {
    color: #fdb812;
    font-size: 30px;
    text-transform: uppercase;
}

.kv-catart_holder .kv-articles .card p.card-subtitle {
    color: #fdb812!important;
    font-size: 16px;
    /* font-weight: 600; */
    text-transform: uppercase;
}

.kv-catart_holder .kv-articles .card .center p {
    color: #003f88;
    font-size: 15px;
}

.kv-catart_holder .kv-articles .card .card-body a {
    position: absolute;
    bottom: 5%;
    left: 30%;
    font-size: 15px;
    color: #fff;
    background-color: #fdb812;
    padding: 0 25px;
    border-radius: 5px;
    transition: ease-in-out .2s;
}

.kv-catart_holder .kv-articles .card .card-body .center {
    margin-top: 5em;
}

.kv-catart_holder .kv-articles .card .card-body .card-text {
    margin-top: 1em;
}

.kv-catart_holder .kv-articles .card .card-body a.btn:hover {
    opacity: 0.7;
    transition: ease-in .2s;
}

/* Characters Holder */

.kv-characters_holder {
    margin-top: 50px;
}

/* -------------------------------- 

    Main components 

-------------------------------- */

main {
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center bottom;
    /* background-size: 100% 90%; */
}

/* ABOUT */

main .about p{
    color: #333;
    line-height: 25px;
}

main .about p strong{
    font-weight: 600;
}

main .about p sup {
    vertical-align: super;
}

main .about p sub {
    vertical-align: sub;
}

main .about p i {
    font-style: italic;
}

/* News */

main .news h1 {
    font-size: 25px;
    color: #fdb812;
    text-transform: uppercase;
}

main .news  .list {
    margin-top: 40px;
}

main .news .list .card {
    border: none;
    background-color: transparent;
}

main .news .list .card .card-body{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fdb812;
    padding-top: 0;
    padding-bottom: 3px;
}

main .news .list .card h1.title {
    font-size: 24px;
    color: #fdb812;
    line-height: 20px;
}

main .news .list .card p.text {
    font-size: 18px;
    color: #b8b8b8;
    line-height: 20px;
    margin-top: 20px;
}

main .news .list .card a.btn {
    font-size: 16px;
    color: #fff;
    background-color: #fdb812;
    margin-top: 20px;
    transition: ease-in .2s;
}

main .news .list .card a.btn:hover {
    opacity: 0.7;
}

/* PRODUCTS */
main .products .swiper .card{
    border: none;
}

main .products .swiper .swiper-slide{
    height: 100px;
}
main .products .swiper .swiper-slide-active {
    height: auto;
}


/* CATEGORIES */

main .categories .card{
    border: none;
}

main .categories .swiper .card-img{
    filter: blur(1px);
    -webkit-filter: blur(1px);
}

main .categories .swiper-button-prev:after,
main .categories .swiper-button-next:after{
    font-size: 25px;
    color: #fff;
    font-weight: 700;
}

main .categories .card-img-overlay{
    top: 80px;
    right: 140px;
    width: 400px;
    left: auto;
    text-align: center;
}

main .categories p{
    line-height: 20px;
}

main .categories a{
    padding: 0 20px 0 20px;
    background-color: #fdb812;
    transition: ease-in-out .2s;
}

main .categories a:hover{
    color: #fff;
    opacity: 0.9;
    transition: ease-in .2s;
}


/* ARTICLES */

main .articles h1 {
    font-size: 25px;
    color: #fdb812;
    text-transform: uppercase;
}

main .articles .list {
    margin-top: 40px;
}


main .articles .article-image .swiper-button-prev:after,
main .articles .article-image .swiper-button-next:after{
    font-size: 25px;
    color: #fdb812;
    font-weight: 700;
}


main .articles .article-image .swiper-button-prev{
    left: 0px;
}

main .articles .article-image .swiper-button-next{
    display: none;
    right: -30px;
}

main .articles .article-text h2{
    color: #fab71f;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
}

main .articles .article-text p{
    color: #c7c8ca;
    font-size: 22px;
    text-align: center;
    font-weight: 300;
    margin-top: 20px;
    padding: 15px;
}

main .articles .article-text .swiper-pagination{
    position: relative;
    margin-top: 50px;
}

main .articles .article-text .swiper-pagination .swiper-pagination-bullet{
    width: 20px;
    height: 20px;
    transform: scale(0.7);
}

main .articles .article-text .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    transform: scale(0.9);
}

main .articles .article-text .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: #fbba05;
}

main .articles .article-text .swiper-button-prev:after,
main .articles .article-text .swiper-button-next:after,
main .articles .col-md-5 .swiper-button-next:after{
    font-size: 25px;
    color: #fdb812;
    font-weight: 700;
}


main .articles .article-text .swiper-button-prev{
    display: none;
    left: 0px;
}

main .articles .col-md-5 .swiper-button-next{
    right: -20px;
}


/* NEWS */

/* INSTAGRAM */
main .instagram .swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

main .instagram .swiper .swiper-slide{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Control */

main .instagram .swiper-button-next:after, 
main .instagram .swiper-button-prev:after{
    font-size: 25px;
    color: #fdb812;
}

main .instagram .swiper-button-next{
    right: 0px;
    background: rgba(255, 255, 255, 0.7);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

main .instagram .swiper-button-prev{
    left: 0;
    background: rgba(255, 255, 255, 0.7);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Instagram Caption */
main .instagram .caption p{
    font-size: 16px;
    padding: 20px;
    line-height: 20px;
}

main .instagram .caption a.btn{
    font-size: 15px;
    color: #fff;
    background-color: #fdb812;
    padding: 5px 10px;
    line-height: 20px;
    border-radius: 2px;
    text-transform: uppercase;
    transition: ease-in-out .2s;
}

main .instagram .caption a:hover.btn{
    opacity: 0.8;
}

/* Instagram Image */
main .instagram .image figure img{
    width: 100%;
}

/* Type */
main .instagram span {
    position: absolute;
    z-index: 9;
    top: 45px;
    left: 15px;
}

main .instagram span i{
    font-size: 22px;
    color:#ffffffcc;
}


/* -------------------------------- 

   Product page components

-------------------------------- */

#slider.product{
    height: 350px;
}

.product-holder {
    margin: 80px 0 100px 0;
}

.product-holder .details h2.title {
    text-align: center;
    padding: 0 40px;
}

.product-holder .details h4.title {
    text-align: center;
    padding: 0 40px;
}

.product-holder .details .sub {
    text-align: center;
    font-size: 16px;
    color: #333;
    margin-top: 20px;
}

.product-holder p.product-subtitle {
    color: #2c5c9a;
    font-size: 20px;
    margin-top: 10px;
    text-align: center;
}

.product-holder .details .desc  {
    margin-top: 40px;
}


.product-holder .details .desc p {
    color: #4a679d;
    line-height: 20px;
    font-weight: 300;
    margin-top: 10px;
    padding-right: 5px;
}

.product-holder .details .desc p img{
    margin-left: auto!important;
    margin-right: auto!important;
}

.product-holder .details .desc p sup {
    font-size: 11px;
    vertical-align: super;
}

.product-holder .details .desc p sub {
    font-size: 11px;
    vertical-align: sub;
}

.product-holder .details .desc p em{
    font-style: italic;
}

.product-holder .details .desc p em sup,
.product-holder .details .desc p em sub {
    font-style: italic;
}

.product-holder .details .desc figure {
    text-align: center;
}

.product-holder .details .desc blockquote {
    padding: 5px 20px;
    font-style: italic;
    border-left: 3px solid #2c5c9a;
}

.product-holder .details .desc blockquote p {
    margin-top: 0;
}

.product-holder .details .desc table {
    margin: 0 auto;
    text-align: center;
    color: #4a679d;
}

.product-holder .details .desc table thead {
    color: #fff;
    background-color: #a4c2e4;
}

.product-holder .details .desc table tbody tr:nth-child(even) {
    background-color: #ccf7fd;
}

.product-holder .details .desc table tbody tr td:first-child {
    text-align: left;
}

.product-holder .details .desc p a {
    color: inherit;
    text-decoration: underline;
}

.product-holder .details .desc p a:hover {
    color: inherit;
    text-decoration: none;
}

.product-holder .details .desc h2 {
    font-size: 25px;
    color: #2c5c9a;
}

.product-holder .details .desc h3 {
    font-size: 22px;
    color: #2c5c9a;
    margin-top: 10px;
}

.product-holder .details .desc h4 {
    font-size: 19px;
    color: #2c5c9a;
    margin-top: 10px;
}

.product-holder .details .desc ul {
    margin: 10px;
}

.product-holder .details .desc ul li {
    color: #2c5c9a;
    margin-left: 30px;
}

.product-holder .details .desc ul li i {
    font-style: italic;
    line-height: 20px;
}

.product-holder .details .desc ul li strong {
    font-weight: 600;
}

.product-holder .details .desc p i {
    font-style: italic;
}

.product-holder .details .desc p strong {
    font-weight: 600;
}

.product-holder .details .desc ul {
    margin: 10px;
}

.product-holder .details .desc ul li {
    color: #2c5c9a;
    margin-left: 30px;
    font-weight: normal;
    line-height: 20px;
    list-style-type: circle;
}

.product-holder .details .desc ol {
    margin: 10px;
}

.product-holder .details .desc ol li {
    color: #2c5c9a;
    margin-left: 30px;
    margin-top: 5px;
    font-weight: normal;
    line-height: 20px;
    list-style-type: decimal;
}

.product-holder .details .desc .accordion {
    padding: .2em 1em .2em .2em;
}

.product-holder .details .desc .accordion .card {
    border: none;
    background-color: transparent;
}

.product-holder .details .desc .accordion .card-header {
    background-color: #a4c2e4;
    border-radius: 50px;
    border: none;
    margin-top: 10px;
}

.product-holder .details .desc .accordion .card-header .btn:focus {
    box-shadow: none;
}

.product-holder .details .desc .accordion .card-header .kv-accordion-title {
    color: #043f88;
    font-size: 15px;
    text-align: left;
    width: 100%;
}

.product-holder .details .desc .accordion .card-header span {
    position: absolute;
    top: 25px;
    right: 15px;
    font-size: 15px;
    color: #fdb812;
    font-weight: 400;
}

.product-holder .details .desc .accordion .card-body ul {
    list-style: disc;
    margin-left: 20px;
}

.product-holder .details .desc .accordion .card-body ul li {
    color: #4a679d;
    line-height: 20px;
    /* font-weight: 300; */
    margin-top: 5px;
}

.product-holder .product-important {
    margin-top: 40px;
}

.product-holder .product-important p {
    color: #4a679d;
    line-height: 20px;
    padding: 0 5em;
    font-weight: 600;
    font-style: italic;
}

.product-related {
    margin: 60px 0 150px 0;
}

.product-related .title h2 {
    text-transform: uppercase;
}

.product-related .products{
    margin-top: 25px;
}

.product-related .products a:hover{
    text-decoration: none;
}

.product-related .products a .item{
    transition: ease-in .1s;
}

.product-related .products a:hover .item{
    opacity: 0.6;
}

.product-related .products .card{
    border: none;
}

.product-related .products .card-title{
    text-align: center;
    margin-top: 10px;
    padding-left: 30px;
    padding-right: 30px;
}

/* -------------------------------- 

    Ask the Doctor components

-------------------------------- */

.kv-ask_doctor_holder {
    font-family: MyriadPro;
    margin-top: 40px;
}

.kv-ask_doctor_holder .doctor{
    display: none;
    text-align: center;
    margin-bottom: 60px;
}

.kv-ask_doctor_holder .doctor h2.name{
    font-size:25px;
    color:#1e407e;
}

.kv-ask_doctor_holder .doctor p.workplace{
    font-size:20px;
    margin-top: 10px;
    color:#fdb812;
}

.kv-ask_doctor_holder h2.form-title {
    color: #ee018d;
    font-size: 22px;
    text-align: center;
}

.kv-ask_doctor_holder .form-desc p {
    color: #2c5c9a;
    margin-top: 60px;
    line-height: 20px;
}

.kv-ask_doctor_holder .form-desc p strong{
    font-weight: 600;
}


.kv-ask_doctor_holder .form-desc p em{
    font-style: italic;
}

.kv-ask_doctor_holder form {
    margin-top: 30px;
}

.kv-ask_doctor_holder form label {
    color: #2c5c9a;
    margin-bottom: 10px;
    line-height: 20px;
}

.kv-ask_doctor_holder form input {
    font-size: 15px;
    color: #2c5c9a;
    height: 30px;
    padding: 10px;
    border-radius: 40px;
}

.kv-ask_doctor_holder form textarea {
    font-size: 15px;
    color: #2c5c9a;
    padding: 10px;
    border-radius: 20px;
    resize: none;
}

.kv-ask_doctor_holder form .form-control {
    background-color: #ecf3fb;
    border: none;
}

.kv-ask_doctor_holder form .form-control {
    background-color: #ecf3fb;
    border: none;
}

.kv-ask_doctor_holder .custom-checkbox {
    padding-left: 5em;
}

.kv-ask_doctor_holder .custom-checkbox .custom-control-label::before {
    top: -0.05rem;
    left: -3.5rem;
    width: 20px;
    height: 20px;
    border-radius: 100px;
}

.kv-ask_doctor_holder .custom-checkbox .custom-control-label::after {
    top: -0.05rem;
    left: -3.5rem;
    width: 20px;
    height: 20px;
}

.kv-ask_doctor_holder .custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #ffffff;
    background-color: #fdb812;
    outline: ;
}

.kv-ask_doctor_holder form button {
    color: #fff;
    font-size: 18px;
    padding: 0 25px;
    border-radius: 50px;
    background-color: #fdb812;
    transition: ease-out .2s;
}

.kv-ask_doctor_holder form button:hover {
    color: #fff;
    opacity: 0.8;
    transition: ease-in .1s;
}

.kv-ask_doctor_holder .user-statment p{
    color: #2c5c9a;
    margin-top: 60px;
    line-height: 20px;
}

.kv-ask_doctor_holder .user-statment p strong{
    font-weight: 600;
}

.kv-ask_doctor_holder .user-statment p em{
    font-style: italic;
}

.kv-ask_doctor_holder .no-doctors{
    display: inline-block;
    padding: 40px;
}

.kv-ask_doctor_holder .no-doctors h2{
    color: #ee018d;
    font-size: 22px;
    text-align: center;
}

.kv-ask_doctor_holder .no-doctors h4{
    color: #2c5c9a;
    font-size: 18px;
    margin-top: 20px;
}

.kv-ask_doctor_holder .no-doctors p{
    color: #2c5c9a;
    margin-top: 10px;
}

/* -------------------------------- 

    News components 

-------------------------------- */

#slider.news{
    height: 350px;
}

.news-holder {
    margin-top: 60px;
}

.news-holder h2.news-title {
    color: #ee018d;
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
}

.news-holder h4.news-subtitle {
    color: #2c5c9a;
    margin-top: 5px;
    text-align: center;
}

.news-holder .news-scroll {
    height: 600px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.news-holder .news-scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.news-holder .news-scroll::-webkit-scrollbar {
    width: 6px;
    height: 16px;
    background-color: #F5F5F5;
}

.news-holder .news-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    width: 10px;
    height: 10px;
    background-color: #ffd339;
}

.news-holder .news-desc p {
    margin-top: 10px;
}

.news-holder .news-desc p em{
    font-style: italic;
}

.news-holder .news-desc p sup {
    vertical-align: super;
}

.news-holder .news-desc p sub {
    vertical-align: sub;
}

.news-holder .news-desc blockquote {
    padding: 5px 20px;
    font-style: italic;
    border-left: 3px solid #2c5c9a;
}

.news-holder .news-desc blockquote p {
    margin-top: 0;
}

.news-holder .news-desc p a {
    color: inherit;
    text-decoration: underline;
}

.news-holder .news-desc p a:hover {
    color: inherit;
    text-decoration: none;
}

.news-holder .news-desc h2 {
    font-size: 25px;
    color: #2c5c9a;
    /* margin-top: 10px; */
}

.news-holder .news-desc h3 {
    font-size: 22px;
    color: #2c5c9a;
    margin-top: 10px;
}

.news-holder .news-desc h4 {
    font-size: 19px;
    color: #2c5c9a;
    margin-top: 10px;
}

.news-holder .news-desc ul {
    margin: 10px;
}

.news-holder .news-desc ul li {
    color: #2c5c9a;
    margin-left: 30px;
}

.news-holder .news-desc ul li i {
    font-style: italic;
    line-height: 20px;
}

.news-holder .news-desc ul li strong {
    font-weight: 600;
}

.news-holder .news-desc p i {
    font-style: italic;
}

.news-holder .news-desc p strong {
    font-weight: 600;
}

.news-holder .news-desc .accordion {
    padding: .2em 1em .2em .2em;
}

.news-holder .news-desc .accordion .card {
    border: none;
    background-color: transparent;
}

.news-holder .news-desc .accordion .card-header {
    background-color: #a4c2e4;
    border-radius: 50px;
    border: none;
    margin-top: 10px;
}

.news-holder .news-desc .accordion .card-header .btn:focus {
    box-shadow: none;
}

.news-holder .news-desc .accordion .card-header .kv-accordion-title {
    color: #043f88;
    font-size: 15px;
    text-align: left;
    width: 100%;
}

.news-holder .news-desc .accordion .card-header span {
    position: absolute;
    top: 25px;
    right: 15px;
    font-size: 15px;
    color: #fdb812;
    font-weight: 400;
}

.news-holder .news-desc .accordion .card-body ul {
    list-style: disc;
    margin-left: 20px;
}

.news-holder .news-desc .accordion .card-body ul li {
    color: #4a679d;
    line-height: 20px;
    font-weight: 300;
    margin-top: 5px;
}

/* -------------------------------- 

    Archive components 

-------------------------------- */

#slider.archive{
    height: 350px;
}

.archive-holder {
    margin-top: 60px;
}

.archive-holder .mt-60 {
    margin-top: 60px;
}

.archive-holder .mb-80 {
    margin-bottom: 80px;
}

.archive-holder .text {
    margin-bottom: 40px;
}

.archive-holder h2.title {
    color: #ee018d;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.archive-holder .archives {
    margin-top: 80px;
}

.archive-holder .archives .card {
    background-color: #f5f4f5;
    border: none;
    margin-top: 20px;
}

.archive-holder .archives .card .card-img {
    margin-bottom: -3px;
}

.archive-holder .archives .card .card-body {
    padding: 20px;
}

.archive-holder .archives .card .card-date {
    color: #fdb812;
}

.archive-holder .archives .card .card-title {
    font-size: 15px;
    color: #fdb812;
    font-weight: 600;
    line-height: 19px;
    margin-top: 10px;
    text-transform: uppercase;
}

.archive-holder .archives .card .card-text {
    color: #9f9292;
    line-height: 18px;
    height: 50px;
}

.archive-holder .archives .card .card-body a {
    font-size: 13px;
    margin-top: 20px;
    color: #fff;
    background-color: #fdb812;
    padding: 0 10px;
    border-radius: 5px;
    transition: ease-in-out .2s;
}

.archive-holder .archives .card .card-body a.btn:hover {
    opacity: 0.7;
    transition: ease-in .2s;
}

.archive-holder .paginations .page-link {
    font-size: 20px;
    color: #1f4386;
    background-color: transparent;
    border: none;
    transition: ease-in-out .2s;
    line-height: 30px;
}

.archive-holder .paginations .active .page-link {
    color: #fdb812;
    font-weight: 600;
}

.archive-holder .paginations .page-link:hover {
    color: #fdb812;
    font-weight: 600;
    transition: ease-in .2s;
}

.archive-holder .paginations .page-link:focus {
    outline: none;
}

.archive-holder .paginations .page-link i {
    color: #fdb812;
    font-size: 30px;
}

/* -------------------------------- 

    Article components 

-------------------------------- */


#slider.article{
    height: 350px;
}

.article-holder{
    margin-top: 60px;
    margin-top: 30px;
}

.article-holder h2.article-title {
    color: #ee018d;
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
}

.article-holder h4.article-subtitle {
    color: #2c5c9a;
    margin-top: 5px;
    text-align: center;
}

.article-holder .article-scroll {
    height: 600px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.article-holder .article-scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.article-holder .article-scroll::-webkit-scrollbar {
    width: 6px;
    height: 16px;
    background-color: #F5F5F5;
}

.article-holder .article-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    width: 10px;
    height: 10px;
    background-color: #ffd339;
}

.article-holder .article-desc p {
    color: #2c5c9a;
    margin-top: 10px;
    line-height: 20px;
}

.article-holder .article-desc p em{
    font-style: italic;
}

.article-holder .article-desc p sup {
    vertical-align: super;
}

.article-holder .article-desc p sub {
    vertical-align: sub;
}

.article-holder .article-desc blockquote {
    padding: 5px 20px;
    font-style: italic;
    border-left: 3px solid #2c5c9a;
}

.article-holder .article-desc blockquote p {
    margin-top: 0;
}

.article-holder .article-desc p a {
    color: inherit;
    text-decoration: underline;
}

.article-holder .article-desc p a:hover {
    color: inherit;
    text-decoration: none;
}

.article-holder .article-desc h2 {
    font-size: 25px;
    color: #2c5c9a;
    /* margin-top: 10px; */
}

.article-holder .article-desc h3 {
    font-size: 22px;
    color: #2c5c9a;
    margin-top: 10px;
}

.article-holder .article-desc h4 {
    font-size: 19px;
    color: #2c5c9a;
    margin-top: 10px;
}

.article-holder .article-desc ul {
    margin: 10px;
}

.article-holder .article-desc ul li {
    color: #2c5c9a;
    margin-left: 30px;
}

.article-holder .article-desc ul li i {
    font-style: italic;
    line-height: 20px;
}

.article-holder .article-desc ul li strong {
    font-weight: 600;
}

.article-holder .article-desc p i {
    font-style: italic;
}

.article-holder .article-desc p strong {
    font-weight: 600;
}

.article-holder .article-desc .accordion {
    padding: .2em 1em .2em .2em;
}

.article-holder .article-desc .accordion .card {
    border: none;
    background-color: transparent;
}

.article-holder .article-desc .accordion .card-header {
    background-color: #a4c2e4;
    border-radius: 50px;
    border: none;
    margin-top: 10px;
}

.article-holder .article-desc .accordion .card-header .btn:focus {
    box-shadow: none;
}

.article-holder .article-desc .accordion .card-header .kv-accordion-title {
    color: #043f88;
    font-size: 15px;
    text-align: left;
    width: 100%;
}

.article-holder .article-desc .accordion .card-header span {
    position: absolute;
    top: 25px;
    right: 15px;
    font-size: 15px;
    color: #fdb812;
    font-weight: 400;
}

.article-holder .article-desc .accordion .card-body ul {
    list-style: disc;
    margin-left: 20px;
}

.article-holder .article-desc .accordion .card-body ul li {
    color: #4a679d;
    line-height: 20px;
    font-weight: 300;
    margin-top: 5px;
}

/* -------------------------------- 

    Category components 

-------------------------------- */

/* -------------------------------- 

    Category components 

-------------------------------- */

#slider.category{
    height: 350px;
}

.categories-holder {
    font-family: MyriadPro;
    margin-top: 60px;
    margin-bottom: 60px;
}

.categories-holder .desc{
    text-align: center;
    margin-bottom: 40px;
}

.categories-holder .desc p{
    font-family: MyriadPro;
}

.categories-holder a .col{
    padding-bottom: 10px;
 }

.categories-holder a:hover .col{
    box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);
}

.categories-holder a:hover,
.categories-holder a:hover .col .info h2,
.categories-holder a:hover .col .info p{
    text-decoration: none!important;
}

.categories-holder img {
    width: 200px;
}

/* .categories-holder .col-md-6 {
    margin-top: 20px;
} */

.categories-holder .card {
    border: none;
    text-align: center;
}

.categories-holder .card .card-img-top{
    padding: 10px 10px 20px;
}

.categories-holder .info h2 {
    color: #6b6b6b;
    font-size: 1.4em;
    padding: 0 20px 0 20px;
}

.categories-holder .info p {
    color: #6b6b6b;
    font-size: 18px;
    margin-top: 5px;
    opacity: 0.7;
    padding: 0 20px 0 20px;
}

/* .categories-holder a {
    font-size: 15px;
    color: #fdb812;
    background-color: #ffffff;
    margin-top: 10px;
    transition: ease-in-out .2s;
    padding: 5px 10px 5px 10px;
}

.categories-holder a:hover {
    color: #fdb812;
    opacity: .7;
    transition: ease-in .2s;
} */

/* -------------------------------- 

    Contact components

-------------------------------- */

.contact-holder {
    font-family: 'MyriadPro';
    margin-top: 40px;
}

/* FORM */

.contact-holder .form-holder{
    margin-top: 40px;
}

.contact-holder .form-holder h2 {
    color: #fdb812;
    font-size: 20px;
}

.contact-holder .form-holder form {
    margin-top: 30px;
}

.contact-holder .form-holder form input {
    font-size: 15px;
    color: #2c5c9a;
    height: 50px;
    padding: 20px;
    border-radius: 10px;
}

.contact-holder .form-holder form textarea {
    font-size: 15px;
    color: #221f1f;
    padding: 20px;
    border-radius: 20px;
    resize: none;
}

.contact-holder .form-holder form input::placeholder, 
.contact-holder form textarea::placeholder {
    color: #221f1f;
}

.contact-holder .form-holder form .form-control {
    background-color: #f5efe0;
    border: 1px solid #ddd;
}

.contact-holder .form-holder form .button {
    text-align: right;
}

.contact-holder .form-holder form button {
    color: #fff;
    font-size: 18px;
    padding: 6px;
    border-radius: 10px;
    background-color: #fdb812;
    transition: ease-out .2s;
}

.contact-holder .form-holder form button:hover {
    color: #fff;
    opacity: 0.8;
    transition: ease-in .1s;
}

/* MAP and INFO */

.contact-holder .address {
    margin-top: 30px;
    padding: 0 30px;
}

.contact-holder .address i {
    color: #fec525;
    font-size: 50px;
}

.contact-holder .address h2 {
    color: #fdb812;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 30px;
    margin-left: 0;
}

.contact-holder .address h3 {
    color: #fdb812;
    font-size: 18px;
    margin-top: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-holder .address .info p {
    color: #221f1f;
    font-size: 17px;
    margin-top: 7px;
    line-height: 18px;
}

.contact-holder .address .info a {
    color: #2c5c9a;
}

.contact-holder .address .info b {
    font-weight: 600;
}

/* -------------------------------- 

    Page components 

-------------------------------- */

#slider.page{
    height: 350px;
}

.page-holder {
    margin-top: 40px;
}

.page-holder h1.page-title {
    color: #fdb812;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.page-holder .page-scroll {
    height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
}

.page-holder .page-scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.page-holder .page-scroll::-webkit-scrollbar {
    width: 6px;
    height: 16px;
    background-color: #F5F5F5;
}

.page-holder .page-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    width: 10px;
    height: 10px;
    background-color: #ffd339;
}

.page-holder .page-desc p {
    color: #221f1f;
    margin-top: 10px;
    line-height: 20px;
}

.page-holder .page-desc p sup {
    vertical-align: super;
}

.page-holder .page-desc p sub {
    vertical-align: sub;
}

.page-holder .page-desc p a {
    font-style: italic;
    color: inherit;
}

.page-holder .page-desc p a:hover {
    color: inherit;
    text-decoration: underline;
}

.page-holder .page-desc h2 {
    font-size: 25px;
    color: #2c5c9a;
    margin-top: 10px;
}

.page-holder .page-desc h3 {
    font-size: 22px;
    color: #2c5c9a;
    margin-top: 10px;
}

.page-holder .page-desc h4 {
    font-size: 19px;
    color: #2c5c9a;
    margin-top: 10px;
}

.page-holder .page-desc ul {
    margin: 10px;
}

.page-holder .page-desc ul li {
    color: #2c5c9a;
    margin-left: 30px;
}

.page-holder .page-desc ul li i {
    font-style: italic;
    line-height: 20px;
}

.page-holder .page-desc ul li strong {
    font-weight: 600;
}

.page-holder .page-desc p i {
    font-style: italic;
}

.page-holder .page-desc p strong {
    font-weight: 600;
}

/* Privacy page */

.page-holder table thead th {
    font-size: 20px;
    border-top: none;
    border-bottom: 2px solid #fdb812;
    padding: 10px;
}

.page-holder table tbody td {
    font-size: 16px;
    text-align: left;
    padding: 10px;
    vertical-align: middle;
}


/* Privacy Policy */

.page-holder .accordion{
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-holder .accordion .card{
    border: 1px solid #e9e7e7;
}

.page-holder .accordion .card-header{
    color: #2b2b2b;
    background-color: #f5f5f5;
    border-color: #ddd;
    cursor: pointer;
}

.page-holder .accordion .card-header.show{
    color: #ffffff;
    background-color: #fffefd;
}

.page-holder .accordion .collapse p{
    padding: 5px 20px;
}


/* Radio Buttons */

#cookieTable{
    margin-top: 40px;
}

@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

	table { 
	  	width: 100%; 
	}

	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	tr { border: 1px solid #ccc; }
	
	td { 
		/* Behave  like a "row" */
		border: none;
		position: relative;
		padding-left: 50%; 
	}

	td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		/* Label the data */
		content: attr(data-column);
		color: #000;
		font-weight: 600;
	}

}

.cookie-label {
    width: 150px;
    display: inline-block;
    margin-bottom: 10px;
    display: none;
}

.cookie-btn {
    display: inline-block;
    *display: inline;
    padding: 6px 6px;
    margin-bottom: 0;
    *margin-left: .3em;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    color: #5a5959;
    text-align: center;
    text-shadow: 0 1px 1px rgba(255, 255, 255, .75);
    vertical-align: middle;
    cursor: pointer;
    background-color: #f5f5f5;
    *background-color: #e6e6e6;
    background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
    background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
    background-repeat: repeat-x;
    border: 1px solid #cccccc;
    *border: 0;
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    border-bottom-color: #b3b3b3;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cookie-btn:hover, .cookie-btn:focus, .cookie-btn:active, .cookie-btn.active, .cookie-btn.disabled, .cookie-btn[disabled] {
    color: #333333;
    background-color: #e6e6e6;
    *background-color: #d9d9d9;
}

.cookie-btn:active, .cookie-btn.active {
    background-color: #cccccc \9;
}

input[type="radio"].toggle {
    display: none;
}

input[type="radio"].toggle {
    display: none;
}

input[type="radio"].toggle:checked+label {
    background-image: linear-gradient(to top, #fdb812, #fdb812);
    box-shadow: inset 0 1px 6px rgba(41, 41, 41, .2), 0 1px 2px rgba(0, 0, 0, .05);
    cursor: default;
    color: #E6E6E6;
    border-color: transparent;
    text-shadow: 0 1px 1px rgba(40, 40, 40, .75);
}

input[type="radio"].toggle+label {
    /* width: 40px; */
    box-sizing: content-box;
}

input[type="radio"].toggle:checked+label.cookie-btn:hover {
    background-color: inherit;
    background-position: 0 0;
    transition: none;
}

input[type="radio"].toggle-left+label {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

input[type="radio"].toggle-left:checked+label {
    background-image: linear-gradient(to top, #58ba31, #390);
    box-shadow: inset 0 1px 6px rgba(41, 41, 41, .2), 0 1px 2px rgba(0, 0, 0, .05);
    cursor: default;
    color: #fff;
    border-color: transparent;
    text-shadow: 0 1px 1px rgba(40, 40, 40, .75);
}

input[type="radio"].toggle-right:checked+label {
    background-image: linear-gradient(to top, #f03a1e, #c00);
    box-shadow: inset 0 1px 6px rgba(41, 41, 41, .2), 0 1px 2px rgba(0, 0, 0, .05);
    cursor: default;
    color: #fff;
    border-color: transparent;
    text-shadow: 0 1px 1px rgba(40, 40, 40, .75);
}

input[type="radio"].toggle-right+label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* -------------------------------- 

    Search components 

-------------------------------- */

.kv-search_holder {
    font-family: MyriadPro;
    margin-top: 40px;
}

.kv-search_holder .mt-60 {
    margin-top: 60px;
}

.kv-search_holder .mb-80 {
    margin-bottom: 80px;
}

.kv-search_holder h2.search-title {
    color: #ee018d;
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
}

.kv-search_holder .search-desc p {
    color: #2c5c9a;
    margin-top: 10px;
    line-height: 20px;
}

.kv-search_holder .search-desc a {
    font-size: 15px;
    color: #fff;
    background-color: #fdb812;
    padding: 3px 25px;
    border-radius: 5px;
    transition: ease-in-out .2s;
    text-decoration: none;
}

.kv-search_holder .search-desc a:hover {
    opacity: .7;
    transition: ease-in .2s;
}

.kv-search_holder .search-desc hr {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.kv-search_holder .search-scroll {
    height: 600px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.kv-search_holder .search-scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.kv-search_holder .search-scroll::-webkit-scrollbar {
    width: 6px;
    height: 16px;
    background-color: #F5F5F5;
}

.kv-search_holder .search-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    width: 10px;
    height: 10px;
    background-color: #ffd339;
}

.kv-search_holder .search-desc ol {
    margin: 10px;
}

.kv-search_holder .search-desc ol li {
    color: #2c5c9a;
    margin-left: 30px;
    margin-top: 5px;
    font-weight: normal;
    line-height: 20px;
    list-style-type: decimal;
}

.kv-search_holder .search-desc .accordion {
    padding: .2em 1em .2em .2em;
}

.kv-search_holder .search-desc .accordion .card {
    border: none;
    background-color: transparent;
}

.kv-search_holder .search-desc .accordion .card-header {
    background-color: #a4c2e4;
    border-radius: 50px;
    border: none;
    margin-top: 10px;
}

.kv-search_holder .search-desc .accordion .card-header .btn:focus {
    box-shadow: none;
}

.kv-search_holder .search-desc .accordion .card-header .kv-accordion-title {
    color: #043f88;
    font-size: 15px;
    text-align: left;
    width: 100%;
}

.kv-search_holder .search-desc .accordion .card-header span {
    position: absolute;
    top: 25px;
    right: 15px;
    font-size: 15px;
    color: #fdb812;
    font-weight: 400;
}

.kv-search_holder .search-desc .accordion .card-body ul {
    list-style: disc;
    margin-left: 20px;
}

.kv-search_holder .search-desc .accordion .card-body ul li {
    color: #4a679d;
    line-height: 20px;
    /* font-weight: 300; */
    margin-top: 5px;
}

.kv-search_holder .search-desc table {
    margin: 0 auto;
    text-align: center;
}

.kv-search_holder .search-desc table thead {
    color: #fff;
    background-color: #a4c2e4;
}

.kv-search_holder .search-desc table tbody tr:nth-child(even) {
    background-color: #ccf7fd;
}

.kv-search_holder .search-desc table tbody tr td:first-child {
    text-align: left;
}

.kv-search_holder .search-desc p em {
    font-style: italic;
}

.kv-search_holder .search-desc p sup {
    vertical-align: super;
}

.kv-search_holder .search-desc p sub {
    vertical-align: sub;
}

.kv-search_holder .search-desc figure {
    text-align: center;
}

.kv-search_holder .search-desc blockquote {
    padding: 5px 20px;
    font-style: italic;
    border-left: 3px solid #2c5c9a;
}

.kv-search_holder .search-desc blockquote p {
    margin-top: 0;
}

/************************************
*   Cookie popup
*************************************/

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    padding: 30px 40px;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.95);
    display: grid;
    grid-template-columns: 70% auto;
    align-items: center;
    color: white;
    z-index: 9999;
}

.cookie-consent>.content>.title {
    font-family: "Merriweather", sans-serif;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #808285;
}

.cookie-consent>.content>.details .description {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 300!important;
    line-height: 1.5em;
    margin-bottom: 20px;
    color: #808285;
    letter-spacing: 0.2px;
}

.cookie-consent>.content>.details .description a {
    color: #fdb812;
    font-size: 16px!important;
    font-weight: 300!important;
}

.cookie-consent>.content>.details .description a:hover {
    text-decoration: none;
}

.cookie-consent>.action {
    /* display: flex; */
    margin-left: 25%;
}

.cookie-consent>.action>.btn-ok {
    font-family: "Roboto", sans-serif;
    border: 0;
    position: relative;
    display: block;
    line-height: 1.2em !important;
    font-size: 1.1em;
    font-weight: 500;
    text-align: left;
    color: #6e6e70;
    background-color: #f5f4f4;
    white-space: nowrap;
    padding: 15px 20px;
    min-width: 190px;
    margin-bottom: 15px;
    -webkit-transition: padding 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    -moz-transition: padding 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    -ms-transition: padding 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    -o-transition: padding 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: padding 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.cookie-consent>.action>.btn-ok:hover {
    padding-left: 35px;
}

.cookie-consent>.action>.btn-ok::before, .cookie-consent>.action>.btn-ok::after {
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.cookie-consent>.action>.btn-ok::before {
    left: calc(100% - 54px);
    background-color: #ffcd01;
    /* transform: skewX(-12deg); */
    -webkit-transition: left 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    -moz-transition: left 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    -ms-transition: left 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    -o-transition: left 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: left 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.cookie-consent>.action>.btn-ok::after {
    width: 57px;
    background: transparent no-repeat center center;
    background-size: 14px 20px;
    background-image: url('../img/arrow.png');
    -webkit-transition: right 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    -moz-transition: right 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    -ms-transition: right 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    -o-transition: right 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: right 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.cookie-consent>.action>.btn-ok:hover::before, .cookie-consent>.action>.btn-ok:hover::before {
    left: 110%;
}

.cookie-consent>.action>.btn-ok:hover::after, .cookie-consent>.action>.btn-ok:hover::after {
    right: 10px;
}

.settings-link {
    font-family: "Roboto", sans-serif;
    color: #808285;
    white-space: nowrap;
    font-size: 12px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 3px 4px 14px;
    display: block;
    line-height: 1;
    font-style: italic;
    font-weight: 700;
    letter-spacing: .5px;
    margin: 0 auto;
    float: none;
    /* width: 181px; */
    -webkit-transition: padding 0.2s ease-out;
    -moz-transition: padding 0.2s ease-out;
    -ms-transition: padding 0.2s ease-out;
    -o-transition: padding 0.2s ease-out;
    transition: padding 0.2s ease-out;
}

.settings-link:hover {
    padding-left: 24px;
    text-decoration: none;
    color: #808285;
}

.settings-link::before {
    content: " ";
    width: 1px;
    height: 100%;
    top: 0;
    left: 2px;
    border-left: 1px solid #fff;
    border-color: inherit;
    transform: rotate(11deg);
    position: absolute;
}

/* -------------------------------- 

    Footer components 

-------------------------------- */

footer {
    position: relative;
    font-family: 'Fira Sans'!important;
    background-color: #FDB812;
    margin-top: 50px;
    z-index: 99;
}

footer svg{
    position: absolute;
    bottom: 51%;
}

footer .links ul {
    display: inline;
}

footer .links ul li {
    padding: 3px;
}

footer .links ul li a {
    font-size: 16px;
    color: #333;
    text-transform: uppercase;
    transition: ease-in-out .1s;
}

footer .links ul li a:hover {
    text-decoration: none;
    opacity: 0.8;
    transition: ease-in .1s;
}

footer .social-icons {
    text-align: center;
}

footer .social-icons ul li {
    display: inline-block;
    margin: .15em;
    position: relative;
    font-size: 1.2em;
}

footer .social-icons a:after {
    position: relative;
    left: 4px;
    top: 4px;
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    content: " ";
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: block;
    border: 1.5px solid #fff;
    transition: all 265ms ease-out;
    border: 1px solid #333;
    transition: ease-in-out .1s;
}

footer .social-icons a:hover {
    opacity: 0.3;
    transition: ease-in .1s;
}

footer .social-icons i {
    color: #333;
    position: absolute;
    font-size: 20px;
    top: 14px;
    left: 15px;
}

footer .social-icons i.fa-facebook-f {
    left: 17px;
}

footer .copyright {
    margin-top: 10px;
    text-align: right;
    text-transform: uppercase;
}

footer .copyright img {
    width: 120px;
    /* margin-top: 30px; */
}

footer .copyright p {
    color: #333;
    font-size: 13px;
}

/****************************
*   Toast notification
****************************/
.notification{
    text-align:left;
    padding: 21px 0;
    background-color:#efefef;
    border-radius:4px;
    top: 0px;
    position:relative;
    box-shadow: 1px 7px 14px -5px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}

.notification::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-top-left-radius:4px;
    border-bottom-left-radius: 4px;
}

.notification .icon{
    position:absolute;
    top: 29%;
    left:22px;
    transform:translateY(-50%);
    width:14px;
    height:14px;
    padding: 7px;
    border-radius:50%;
    display:inline-block;
}

.notification.success .icon i{
    font-size: 24px;
    color: #2BDE3F;
}

.notification.error .icon i{
    font-size: 24px;
    color: #f10404;
}

.notification .content{
    padding-left:70px;
    padding-right:60px;
}

.notification .content p{
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 0;
    color: #878787;
}

.notification .close{
    position: absolute;
    right: 22px;
    top: 50%;
    width: 14px;
    cursor:pointer;
    height: 14px;
    fill:#878787;
    transform: translateY(-50%);
}

.notification.success::before{
    background-color: #2BDE3F;
}

.notification.error::before{
    background-color: #f10404;
}

/****************************
*   Publish Dialog
****************************/
.publish-dialog{
    font-family: Arial, Helvetica, sans-serif;
    position: fixed;
    left: 2%;
    bottom: 5%;
    z-index: 9999;
    background: #ffffff;
    width: 20%;
    padding: 1.6em;
    border-radius: 6px;
    box-shadow: 5px 5px 5px -5px rgb(0 0 0 / 10%);
    border: 1px solid red;
}

.publish-dialog i{
    font-size: 25px;
    color: #fdb812;
    margin-bottom: 10px;
}

.publish-dialog span{
    font-weight: 600;
}

.publish-dialog .info p{
    margin-top: 20px;
    opacity: 0.8;
    margin: 10px 0px 10px 0px;
    line-height: 1.3;
}

.publish-dialog .publish-button,
.publish-dialog .rollback-button{
    color: #fff;
    font-size: 15px;
}

.publish-dialog .publish-button:hover,
.publish-dialog .rollback-button:hover{
    color: #fff;
    opacity: 0.7;
}

/****************************
*   PRELOADER
****************************/
.preloader {
    display: inline-block;
    position: fixed;
    width: 100%;
    height: 100%;
    background:#fff;
    opacity: 1;
    z-index: 99999;
  }

  .preloader img{
    position: relative;
    bottom: 42%;
    left: -21%;
  }

  .preloader .dots{
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100px;
  }

  .preloader p {
    font-family: 'Fira Sans'!important;
    font-size: 20px;
    text-transform: uppercase;
  }

  .preloader span {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #333;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .preloader span:nth-child(1) {
    left: 8px;
    animation: preloader1 0.6s infinite;
  }
  .preloader span:nth-child(2) {
    left: 8px;
    animation: preloader2 0.6s infinite;
  }
  .preloader span:nth-child(3) {
    left: 32px;
    animation: preloader2 0.6s infinite;
  }
  .preloader span:nth-child(4) {
    left: 56px;
    animation: preloader3 0.6s infinite;
  }
  
  @keyframes preloader1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes preloader3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes preloader2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }
/* Extra small devices (portrait phones, less than 576px) 
   No media query for `xs` since this is the default in Bootstrap */


/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
    
    /* Slider */
    #slider .m_product,
    #slider .m_product-page,
    #slider .m_category-page,
    #slider .category-title-slide-m,
    #slider .brand-logo-m{
        display: none!important;
    }

    
}

/* Extra large devices (large desktops, 1200px and up) */
@media (max-width: 1200px) { 

    #slider .m_product,
    #slider .m_product-page,
    #slider .m_category-page,
    #slider .brand-logo-m{
        display: none!important;
    }

    main .categories .swiper .card-img{
        height: 400px;
        object-fit: cover;
        filter: blur(2px);
        -webkit-filter: blur(2px);
    }

    
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {

    /* Header */
    .menu-icon{
        display: none;
    }

    main .categories .swiper .card-img{
        height: 350px;
        object-fit: cover;
        filter: blur(2px);
        -webkit-filter: blur(2px);
    }
    
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) { 

    /* Header */
    .menu-icon{
        display: block;
    }


    /* Slider */
    #slider{
        width: auto;
        height: 300px;
        margin-top: 20px;
    }

    #slider .product-image,
    #slider .whitebox,
    #slider .d_product,
    #slider .slogan,
    #slider .ls-bottom-nav-wrapper,
    #slider .slider-title-d,
    #slider .d_product-page,
    #slider .d_category-page,
    #slider .category-title-slide,
    #slider .brand-logo{
        display: none!important;
    }

    #slider .m_product,
    .ls-v6 .ls-nav-next, 
    .ls-v6 .ls-nav-prev,
    #slider .slider-title-m,
    #slider .slider-caption-m,
    #slider .mobile-caption a,
    #slider .category-title-slide-m,
    #slider .brand-logo-m{
        display: block!important;
    }

    #slider .slider-title-m{
        font-size: 25px;
    }

    #slider .slider-caption-m{
        font-size: 18px;
    }

    .mobile-caption{
        width: 100%;
        height: 30px!important;
        -webkit-box-shadow: -1px 13px 16px 34px rgb(255, 255, 255);
        -moz-box-shadow: -1px 13px 16px 34px rgb(255, 255, 255);
        box-shadow: -1px 13px 16px 34px rgb(255, 255, 255);
        background-color: rgba(255, 255, 255);
        z-index: 12;
    }
    
    .mobile-caption a.icon:after{
        content: '\f061';
        font-family: 'Font Awesome 5 Free';
        font-size: 19px;
        font-weight: 600;
        color: #fbba05;
    }

    /* News */
    main .news h1{
        font-size: 30px;
    }

    /* Categories */
    /* .categories .owl-carousel{
        height: 400px;
    }
    
    .categories .owl-carousel .owl-item.active{
        width: auto!important;
    } */

    main .categories .swiper .swiper-slide {
        text-align: center;
        width: auto;
    }

    main .categories .swiper .card-img{
        height: 400px;
        object-fit: cover;
        filter: blur(2px);
        -webkit-filter: blur(2px);
    }

    main .categories .card-img-overlay{
        width: auto;
        left: 0;
        right: 0;
        padding: 0 50px;
    }

    /* Articles */

    main .news .list .card .card-body{
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    main .articles .col-md-5 .swiper-button-next{
        display: none;
    }

    main .articles .article-image .swiper-button-next{
        display: block;
        right: 0px;
    }

    main .articles .article-text h2{
        margin-top: 20px;
    }

    

    /* Product */
    #slider .product-hero{
        display: none!important;
    }

    #slider .m_product-page{
        display: block!important;
    }


    /* Category page */
    #slider .m_category-page{
        display: block!important;
    }

    /* Footer */
    footer .links{
        text-align: center;
    }

    footer .icons{
        text-align: center;
    }

    footer .copyright{
        text-align: center;
    }

}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) { 
    
    /* Slider */
    #slider{
        width: auto;
        height: 300px;
    }

    #slider .product-image{
        display: none!important;
    }

    #slider .product-image-mob{
        display: block!important;
    }
    

}

/* Small devices (landscape phones, 470px and up) */
@media (max-width: 470px) { 

    /* Preloader */
    .preloader .dots{
        left: 40%;
    }

    /* Header */
    nav .nav-link {
        font-size: 24px;
    }

    /* Slider */

    #slider .white-box{
        display: none!important;
    }

    #slider img.overlay-line{
        top: -4px;
    }

    #slider .bubble{
        top: -10%;
        right: 0;
        width: 100px;
        height: 100px;
    }

    .ls-v6 .ls-nav-next, 
    .ls-v6 .ls-nav-prev {
        display: block!important;
    }

    .ls-v6 .ls-bottom-nav-wrapper{
        display: none;
    }
    


    /* Categories */
    /* .categories .owl-carousel{
        height: 400px;
    }
    
    .categories .owl-carousel .owl-item.active{
        width: auto!important;
    } */

    main .categories .swiper .swiper-slide {
        text-align: center;
        width: auto;
    }

    main .categories .swiper .card-img{
        height: 400px;
        object-fit: cover;
        filter: blur(2px);
        -webkit-filter: blur(2px);
    }

    main .categories .card-img-overlay{
        width: auto;
        left: 0;
        right: 0;
        padding: 0 50px;
    }

    /* Articles */
    main .news h1{
        font-size: 30px;
    }

    main .news .list .card .card-body{
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    main .articles .col-md-5 .swiper-button-next{
        display: none;
    }

    main .articles .article-image .swiper-button-next{
        display: block;
        right: 0px;
    }

    main .articles .article-text h2{
        margin-top: 20px;
    }

    /* Instagram */
    main .instagram .bubble{
        justify-content: center;
    }

    /* Footer */
    footer {
        margin-top: 50px;
    }
    
    footer .links{
        text-align: center;

    }

    footer .social-icons{
        margin-top: 20px;
    }

    footer .copyright{
        margin-top: 20px;
        text-align: center;
    }

    /* Cookie */
    .cookie-consent{
        display: block;
    }

}

/* Small devices (landscape phones, 470px and up) */
@media (max-width: 340px) { 

    
    
}