@font-face
{
    font-family: CenturyGothic;
    src: url("/css/font/Century Gothic Pro Regular.otf");
}

@font-face
{
    font-family: CenturyGothicBold;
    src: url("/css/font/Century Gothic Pro Bold.otf");
}

:root {
    --navbar-width: 120px;
	--color-blue: #0054A6;
	--color-red: #D5143C;
	--color-purple: #AA55A1;
	--color-orange: #D65D2A;
	--color-green: #009848;
	--color-text: #343434;
}

body {
    margin: 0;
    padding: 0;
    font-family: CenturyGothic;
    color: var(--color-text);
	font-size: 1rem;
}

strong {
    font-family: CenturyGothicBold;
}

.page-container
{
    position: relative;
    width: calc(100% - var(--navbar-width));
    margin-left: var(--navbar-width);
}

.left-navbar
{
    position: fixed;
    top:0;
    left:0;
    width: var(--navbar-width);
    height:100%;
    background-color:#fff;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    align-items:center;
    padding:32px 0;
    box-sizing: border-box;
}

.navbar-logo-top, .navbar-logo-bottom {
    width: 100%;
    text-align: center;
}

.navbar-logo-top img {
    width: 80%;
}

.navbar-logo-bottom img {
    width: 80%;
}

.navbar-icons a {
    display: block;
}

.navbar-icon
{
    display: block;
    width: calc(var(--navbar-width) * 0.4);
    height: calc(var(--navbar-width) * 0.6);
    margin: 16px;
    background-size: contain;
    filter: saturate(0);
    opacity: 0.6;
    transition: all 400ms;
    cursor: pointer;
	background-repeat: no-repeat;
	background-position: center;
}
.navbar-icon:hover {
    filter: saturate(1);
    opacity: 1;
}
.navbar-icon.selected {
    filter: saturate(1);
    opacity: 1;
}

.icon-1 {
    /*background-image: url('/images/svg/pictogram/CalmSleep.svg');*/
	background-image: url('/images/category/CalmSleep.png');
}
.icon-2 {
    /*background-image: url('/images/svg/pictogram/Energy.svg');*/
	background-image: url('/images/category/Energy.png');
}
.icon-3 {
    /*background-image: url('/images/svg/pictogram/Beauty.svg');*/
	background-image: url('/images/category/Beauty.png');
}
.icon-4 {
    /*background-image: url('/images/svg/pictogram/Immunity.svg');*/
	background-image: url('/images/category/Immunity.png');
}
.icon-5 {
    /*background-image: url('/images/svg/pictogram/WellBeing.svg');*/
	background-image: url('/images/category/WellBeing.png');
}

/********************************************************/

.home-ritam {
    width: 100%;
    overflow: hidden;
    background-image: url("/images/RitamJeBitan.png");
    background-position-x: 100%;
    background-position-y: center;
    background-repeat: repeat-x;
    background-size: 1780px auto;
    height: 160px;
    animation: moveBackground 10s infinite linear;
	margin: 40px 0;
}

@keyframes moveBackground {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: -1780px;
    }
}

.home-section {
    padding: 64px 32px;
}

.home-section .content h3 {
    color: #bbb;
    letter-spacing: 4px;
    font-size: 1.25rem;
}

.home-section .content h2 {
    font-size: 4rem;
    font-family: CenturyGothicBold;
}

.home-products .content {
    max-width: 1440px;
    margin: auto;
}

.home-products .content .home-columns {
    display: flex;
    gap: 80px;
    font-size: 1.25rem;
    line-height: 1.5;
}

.home-products .content .home-columns .left-side > div {
    margin: 0.5rem 0;
}

.home-products .content .home-columns .left-side > div h1 {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: normal;
    display: contents;
}

.home-columns .left-side {
    width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.home-columns .left-side p {
    line-height: 1.5;
}

.home-columns .right-side {
    width: 50%;
    text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px 0;
}

.home-columns .right-side img {
	max-width: 120px;
	width: 100%;
}

/********************************************************/

.home-category {
    background-color: #f6f6f6;
	padding: 64px 0;
}

.home-category .content {
    max-width: 1504px;
	padding: 0 32px;
	box-sizing: border-box;
    margin: auto;
}

.category-icons {
	padding-top: 64px;
	text-align:center;
}

.category-icon {
	display: inline-block;
    font-size: 1.5rem;
    text-transform: uppercase;
	margin: 0 16px;
	cursor: pointer;
}

.category-icon img {
	display: inline-block;
    width: 160px;
    vertical-align: middle;
    margin-right: -48px;
}

.category-slider {
	position: relative;
}

/********************************************************/

.home-faq .content {
    max-width: 1296px;
	box-sizing: border-box;
	padding: 0 32px 0 64px;
    margin: auto;
}

.home-faq .content h3 {
    text-align: center;
}

.faq-accordion-item {
    position: relative;
    border-bottom: 1px solid var(--color-text);
    padding: 32px 0;
}

.home-section .content h2.faq-title {
    font-size: 2rem;
    font-family: CenturyGothicBold;
    position: relative;
    transition: all 400ms;
    cursor: pointer;
    padding-right: 32px;
	margin: 0;
	font-weight: normal;
}
.faq-title:before {
    content: '';
    position: absolute;
    top: 16px;
    left: -64px;
    height: 8px;
    width: 8px;
    border: 1px solid var(--color-text);
    border-radius: 50%;
}
.faq-accordion-item::before, .faq-accordion-item::after {
    content: '';
    position: absolute;
    background-color: var(--color-text);
    transform-origin: center;
    transition: all 400ms;
    z-index: -1;
}
.faq-accordion-item::before {
    top: 59px;
    right: 0;
    height: 2px;
    width: 24px;
}
 .faq-accordion-item::after {
    top: 48px;
    right: 11px;
    width: 2px;
    height: 24px;
}
.faq-accordion-item.opened::before, .faq-accordion-item.opened::after{
    transform: rotate(135deg);
}

.faq-accordion-item.opened .faq-title {
    padding-bottom: 32px;
}

.faq-abstract {
    display: none;
}

.faq-desc {
    height: 0;
    overflow: hidden;
    transition: all 400ms;
	line-height: 1.6;
}

/********************************************************/

.footer {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: max(10vw, 10vh);
    color: #fff;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-red);
    border-radius: 50%;
    width: max(max(160vw, 160vh), 2880px);
    height: max(max(160vw, 160vh), 2880px);
    z-index: -1;
}

.footer .content {
    max-width: 1264px;
	padding: 0 32px;
	box-sizing: border-box;
    margin: auto;
}

.footer .content h2 {
    font-size: 4rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 64px;
}

.footer-top .left-side {
    flex: 2;
    margin-bottom: 40px;
}

.footer-contact-item {
    margin-bottom: 40px;
}

.footer-contact-item p {
    margin-top: 8px;
}

.footer-contact-item img {
    width: 32px;
    margin-right: 12px;
    vertical-align: middle;
}

.footer-contact-item a {
    color: #fff;
}

.footer-top .right-side {
    flex: 3;
}

.footer-top .right-side p {
    margin-bottom: 40px;
    position: relative;
}

.footer-top .right-side p:first-child {
    display: flex;
    gap:40px;
}

.footer-top .right-side p input[type=text] {
    border: none;
    border-bottom: 1px solid #fff;
    background-color: transparent;
    outline: none;
    color: #fff;
    font-size: 1.5rem;
    width: 100%;
    padding:12px 0;
}

.footer-top .right-side p input[type=text]::placeholder {
  color: #ffff;
  opacity: 0.8;
}

.footer-top .right-side p input[type=submit] {
    border: none;
    border-bottom: 1px solid #fff;
    background-color: transparent;
    outline: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 8px 0;
    margin-left: 20px;
    position: relative;
    cursor: pointer;
}

.footer-top .right-side p:last-child::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 0px;
    width: 8px;
    height: 8px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.footer-bottom .content {
    max-width: 1504px;
    margin: auto;
    padding: 40px 32px;
	box-sizing: border-box;
}

.footer-bottom-columns {
    display: flex;
    gap: 64px;
}

.footer-bottom-column {
    flex: 1;
    border-top: 1px solid #fff;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.footer-bottom-column img {
    width: 48px;
}

.footer-bottom-column a {
    color: #fff;
    text-decoration: none;
}

.footer-copyright
{
    margin-top: 4rem;
    font-size: 0.875rem;
}

/*******************************************************/

.grey-text {
    color: #ccc;
}

.green-text {
    color: var(--color-green);
}

.orange-text {
    color: var(--color-orange);
}

/**************************************************/

.header-resp .menu-icon {
    padding-right: 32px;
    color: var(--color-text);
    font-size: 1.25rem;
    cursor: pointer;
	z-index: 1;
	position: relative;
}
.header-resp .menu-icon::after {
    content: '...';
    position: absolute;
    top: -8px;
    right: 0;    
    color: var(--color-text);
    font-size: 1.5rem;
}
.right-side .menu-icon {
	position: absolute;
    top: 48px;
    right: 48px;
}

.menu-icon.menu-icon-products {
    position: absolute;
	top: 48px;
	right: 48px;
	padding-right: 32px;
	color: var(--color-text);
	font-size: 1.25rem;
	cursor: pointer;
	z-index: 1;
}
.menu-icon.menu-icon-products::after {
	content: '...';
    position: absolute;
    top: -8px;
    right: 0;    
    color: var(--color-text);
    font-size: 1.5rem;
}

.menu-fullscreen {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: right;
    top: -100%;
    right: 0;
    width: calc(100% - var(--navbar-width));
    height: 100%;
    transition: all 400ms;
    background-color: var(--color-orange);
	z-index: 10;
}
.menu-fullscreen.show {
    top: 0;
}

.menu-fullscreen .menu-icon {
    position: absolute;
    top: 48px;
    right: 48px;
    padding-right: 48px;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
}
.menu-fullscreen .menu-icon::after {
    content: '';
	background-image: url("/images/krstic.png");
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
    position: absolute;
    top: -2px;
    right: 0;    
    width: 32px;
    height: 32px;
}

.menu-fullscreen .content {
    padding: 32px;
    margin-right: 64px;
}

.menu-fullscreen .content a {
    display: block;
    padding: 16px;
    margin: 16px;
    color: #fff;
    text-decoration: none;
    font-size: 2.5rem;
    font-family: CenturyGothicBold;
}

.hidden {
    display: none;
}