/*
VARIABLES
CORE
HEADER
FOOTER
*/

/*******************************************************************************************
HEADER
*******************************************************************************************/
:root {
    /* Colours */
    --color-primary: #5f5a5a;
    --color-secondary: #878080;
    --color-info: #d39b40;
    --color-dark: #585252;
    --color-dark-alt: #707070;
    --color-light: #f4f4f4;
    --color-light-alt: #DED3BE;
    --color-light-dark: #F5C142;
    --color-gray: #c1c1c1;
    --color-gray-alt: #ddd;
    --color-gray-500: #d1d1d1;
    --color-gray-600: #f0f0f0;
    --color-gray-700: #868080;
    --color-gray-800: #919191;
    --color-border: #C7C7C7;
    --color-border-alt: #E0E0E0;
    --color-black: #000;
    --color-white: #fff;
    --color-blue: #3c3950;
    --color-orange: #ff5a5a;
    --color-pink: #BF0000;
    --color-yellow: #fabc00;
    --color-error: #B76F6F;
    --color-success: #5cb85c;
    --color-warning: #ce0000;

    /* Link Style */
    --link-color-base: inherit;
    --link-decoration-base: underline;
    --link-hover-color-base: inherit;
    --link-hover-decoration-base: none;

    /* Transitions */
    --speed-fast: .125s;
    --speed-default: .25s;
    --speed-slow: .5s;
    --speed-sluggish: 1s;
    --speed-snail: 2s;
    --cubic-bezier: cubic-bezier(.05, .69, .14, 1);
    --cubic-bezier-2: cubic-bezier(.215, .61, .355, 1);

    /* Body Style */
    --body-bg: var(--color-white);
    --font-family-base: 'Poppins', sans-serif;
    --text-color-base: var(--color-dark);

    /* Headings Style */
    --heading-font-family: 'Cormorant Garamond', sans-serif;
    --heading-margin: 0 0 20px 0;
    --heading-font-weight: 700;
    --heading-color: inherit;

    /* Icons Style */
    --icons-font-family: 'paro-icons';
    --icon-arrow-back: "\e900";
    --icon-arrow-right: "\e901";
    --icon-close: "\e902";
    --icon-facebook: "\e903";
    --icon-instagram: "\e904";
    --icon-menu: "\e905";
    --icon-moon: "\e906";
    --icon-search: "\e907";
    --icon-twitter-x: "\e908";
    --icon-twitter: "\e909";
    --icon-whatsapp: "\e90c";

    /* Font sizes */
    --font-size-h1: 35px;
    --font-size-h2: 35px;
    --font-size-h3: 27px;
    --font-size-h4: 22px;
    --font-size-h5: 20px;
    --font-size-h6: 18px;
    --font-size-base: 16px;
    --font-size-medium: 20px;
    --font-size-btn: var(--font-size-base);

    /* Line heights */
    --line-height-base: 1.56;
    --heading-line-height: 1.1;

    /* Paddings */
    --py-section: 45px;
    --py-section-small: 55px;
    --py-section-medium: 55px;
    --py-section-large: 55px;
    --px-form-control: 13px;
    --py-form-control: 15px;
    --px-gutter-base: 36px;

    /* Heights */
    --height-btn: 40px;
    --height-btn-sm: 40px;
    --height-form-control: 48px;
    --height-header-base: 80px;

    /* Widths */
    --width-base: 1016px;
    --width-small: 775px;
    --width-medium: 1116px;

    /* Sizes */
    --size-bullet: 5px;
    --size-btn-play: 60px;
    --size-radius-btn: 4px;
    --size-form-check-indicator: 16px;
    --size-accordion-indicator: 10px;

    /* Font family */
    --font-family-mukta: 'Mukta';
}

@media screen and (min-width: 768px) {
    :root {
        --font-size-h1: 75px;
        --font-size-h2: 65px;
        --font-size-h3: 35px;
        --font-size-medium: 22px;

        /* Heights */
        --height-header-base: 94px;
    }
}

/*******************************************************************************************
CORE - Top-level styling
*******************************************************************************************/
*,
*:before,
*:after {
    box-sizing: inherit;
}

*:focus {
    outline: none;
}

html {
    box-sizing: border-box;
}

body {
    line-height: var(--line-height-base);
    color: var(--text-color-base);
    font-size: var(--font-size-base);
    font-family: var(--font-family-base);
    margin: 0;
    font-weight: 300;
    background: var(--color-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-overflow-style: scrollbar;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* CORE > Global */
img {
    height: auto;
    display: block;
    max-width: 100%;
}

main {
    min-height: calc(100vh - calc(var(--height-header-base) + 130px));
    padding-top: var(--height-header-base);
}

main:after,
main:before {
    top: 0;
    bottom: 0;
    width: 1px;
    content: '';
    z-index: 10;
    display: block;
    position: fixed;
    transition: opacity 1s linear;
    background-color: var(--color-info);
}

main:after {
    right: 16px;
}

main:before {
    left: 16px;
}

.home main {
    padding-top: 0;
    min-height: unset;
}

.home main:after,
.home main:before {
    display: none;
}

a {
    display: inline-block;
}

.clear:after {
    display: block;
    clear: both;
    content: '';
}

@media screen and (min-width: 1132px) {
    main:after {
        right: calc(50% - 559px);
    }

    main:before {
        left: calc(50% - 559px);
    }
}

/* CORE > Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px;
    font-weight: 400;
    color: var(--heading-color);
    font-family: var(--heading-font-family);
    line-height: var(--heading-line-height);
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
}

h5 {
    font-size: var(--font-size-h5);
}

h6 {
    font-size: var(--font-size-h6);
}

p {
    margin: 0 0 30px;
}

ul {
    list-style: none;
}

strong {
    font-weight: 600;
}

/* CORE > Form */
label {
    margin-bottom: 10px;
    display: block;
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--text-color-base);
}

input,
select,
textarea {
    padding: 10px 20px;
    display: block;
    width: 100%;
    height: 50px;
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    color: var(--text-color-base);
    border: 1px solid var(--color-border);
    border-radius: 5px;
    background: var(--color-white);

    &::placeholder {
        opacity: .6;
        color: inherit;
    }

    &:focus:not(:read-only):not([type='submit']):not([type='reset']):not([type='button']) {
        border-color: var(--color-border);
    }

    &.is-error {
        border-color: var(--color-error);
    }

    &:disabled {
        opacity: .8;
        color: var(--color-border);
        background-color: var(--color-white);
    }

    &[type='radio'],
    &[type='checkbox'] {
        margin-right: 10px;
        padding: 0;
        display: inline-block;
        height: auto;
    }

    &[type='radio'],
    &[type='checkbox'],
    &[type='submit'],
    &[type='reset'],
    &[type='button'] {
        display: inline-block;
        width: auto;
    }
}

input[type='submit'],
input[type='reset'],
input[type='button'] {
    color: var(--color-white);
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);

    &:hover {
        color: var(--color-white);
        background-color: var(--color-secondary);
        border-color: var(--color-secondary);
    }
}

select {
    background-image: url('data:image/png;base64,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');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: auto 5px;
    appearance: none;
}

textarea {
    width: 100%;
    height: 200px;
}

/* CORE > Links and Buttons */
a {
    color: var(--link-color-base);
    text-decoration: var(--link-decoration-base);
}

a:hover,
a:focus {
    color: var(--link-hover-color-base);
    text-decoration: var(--link-hover-decoration-base);
}

a,
button,
.button {
    transition: all 0.3s;
}

button,
.button {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    padding: 10px 25px;
    border-radius: 2px;
    letter-spacing: 1px;
    position: relative;
    align-items: center;
    display: inline-flex;
    text-decoration: none;
    color: var(--color-dark);
    border: 0.031rem solid var(--color-dark);
    background-color: transparent;
}

.button.button-primary {
    color: var(--color-black);
    background-color: var(--color-primary);
}

.button.button-primary:hover,
.button.button-primary:focus {
    color: var(--color-black);
    background-color: #E5AB22;
}

button:hover,
button:focus,
.button:hover,
.button:focus {
    color: var(--color-white);
    background-color: #4E4E4E;
}

button.button-link,
.button.button-link {
    border: 0;
    padding: 0;
    font-size: 11px;
    border-radius: 0;
    font-weight: 400;
    letter-spacing: 0.031rem;
    text-transform: uppercase;
    background: transparent;
    color: var(--color-secondary);
}

button.button-link:after,
.button.button-link:after {
    left: 0;
    top: 100%;
    width: 100%;
    content: '';
    height: 1px;
    display: block;
    position: absolute;
    background-color: var(--color-dark-alt);
}

button.button-link:hover,
button.button-link:focus,
.button.button-link:hover,
.button.button-link:focus {

}

/* CORE > Layout */
.container,
.container-small,
.container-medium {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: var(--px-gutter-base);
    padding-right: var(--px-gutter-base);
    max-width: calc(var(--width-base) + calc(var(--px-gutter-base) * 2));
}

.container-small {
    max-width: calc(var(--width-small) + calc(var(--px-gutter-base) * 2));
}

.container-medium {
    max-width: calc(var(--width-medium) + calc(var(--px-gutter-base) * 2));
}

/* CORE > Utility Classes */
.no-margin {
    margin: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.no-transition {
    transition: none !important;
}

.no-min-height {
    min-height: 0;
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.block {
    display: block !important;
}

.full-width {
    width: 100%;
}

.center,
.align-center,
.text-center {
    text-align: center;
}

.right,
.align-right,
.text-right {
    text-align: right;
}

.uppercase {
    text-transform: uppercase;
}

.hide {
    display: none !important;
}

.overflow-hidden {
    overflow: hidden;
}

.visually-hidden {
    border: none !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
}

.has-tags a {
    font-size: 10px;
    padding: 4px 17px;
    font-weight: normal;
    border-radius: 11px;
    text-decoration: none;
    text-transform: uppercase;
    background-color: var(--color-gray-alt);
}

.has-tags a:hover,
.has-tags a:focus,
.has-tags .is-active a {
    color: var(--color-white);
    background-color: var(--color-info);
}

.flex-container {
    display: flex;
    align-items: center;
}

.flex-align-vertical {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-align-horizontal {
    display: flex;
    justify-content: center;
    text-align: center;
}

.small-text {
    font-size: 0.9rem;
}

.larger-text {
    font-size: 1.2rem;
}

.font-light {
    font-weight: 300;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.small-margin-left {
    margin-left: 10px;
}

.small-margin-right {
    margin-right: 10px;
}

.no-background {
    background: none !important;
}

.transition-all {
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.opacity-0 {
    opacity: 0;
}

.content-none {
    font-size: 22px;
    color: var(--color-primary);
    font-family: var(--heading-font-family), sans-serif;
}

.go-to-top {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 38px;
    height: 48px;
    padding: 0;
    border: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    border-radius: 50%;
}

.go-to-top svg {
    width: 100%;
    height: auto;
    display: block;
}

.go-to-top:hover,
.go-to-top:focus {
    background-color: transparent;
}

@media (min-width: 768px) {
    .hide-for-medium {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .hide-for-large {
        display: none !important;
    }

    .go-to-top {
        opacity: 1;
        visibility: visible;
    }
}

@media screen and (max-width: 767px) {
    .hide-for-small-only {
        display: none !important;
    }
}

@media screen and (max-width: 0px), screen and (min-width: 768px) {
    .show-for-small-only {
        display: none !important;
    }
}

@media screen and (max-width: 1023px) {
    .show-for-medium {
        display: none !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .hide-for-medium-only {
        display: none !important;
    }
}

@media screen and (max-width: 767px), screen and (min-width: 1025px) {
    .show-for-medium-only {
        display: none !important;
    }
}

@media screen and (max-width: 1024px) {
    .show-for-large {
        display: none !important;
    }
}

/*******************************************************************************************
HEADER
*******************************************************************************************/
.header {
    position: fixed;
    top: 0;
    z-index: 9;
    width: 100%;
    background-color: var(--color-light);
    transition: var(--speed-default);
}

.header.is-fixed {
    z-index: 11;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.071);
}

.home .header {
    box-shadow: none;
    background: transparent;
}

.header-inner {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-end;
    height: var(--height-header-base);
}

@media screen and (min-width: 1024px) {
    .header-inner {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* CORE > Logo */
.header-logo {
    width: 101px;
    margin-right: auto;
    position: relative;
}

.header-logo img {
    width: 100%;
    display: block;
}

@media screen and (min-width: 768px) {
    .header-logo {
        width: 115px;
    }
}

/* CORE > Menu */
.header-menu {
    padding: 0 var(--px-gutter-base) var(--px-gutter-base);
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    overflow-y: scroll;
    transform: translateX(-100%);
    transition: 2.5s;
}

.header-menu-nav {
    margin: 0;
    padding: 0 25px;
    font-size: 27px;
    font-weight: 500;
    color: var(--color-secondary);
    font-family: var(--heading-font-family);
}

.header-menu-nav li + li {
    margin-top: 30px;
}

.header-menu-nav li a {
    color: inherit;
    text-decoration: none;
    transition: var(--speed-default);
}

.header-menu-nav li a:focus,
.header-menu-nav li a:hover,
.header-menu-nav li a.is-active {
    color: var(--color-dark);
}

.header-menu-nav li.current-menu-item a {
    color: var(--color-info);
}

.header-menu-logo {
    display: flex;
    align-items: center;
    margin-bottom: 65px;
    justify-content: flex-start;
    height: var(--height-header-base);
}

.header-menu-logo img {
    width: 101px;
}

.admin-bar .header-menu {
    top: 46px;
}

@media screen and (min-width: 768px) {
    .header-menu {
        padding: 102px 50px 60px 172px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow-y: inherit;
    }

    .header-menu-nav {
        padding: 0;
    }

    .header-menu-nav li + li {
        margin-top: 12px;
    }

    .header-menu-logo {
        display: none;
    }
}

@media screen and (min-width: 782px) {
    .admin-bar .header-menu {
        top: 32px;
    }
}

/* CORE > Menu Images */
.header-menu-images {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 42.6%;
    height: 100vh;
}

.header-menu-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: var(--speed-default);
}

.header-menu-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.header-menu-image.is-active {
    opacity: 1;
    visibility: visible;
}

.header.is-open-menu + main:after,
.header.is-open-menu + main:before {
    opacity: 0;
}

.header.is-open-menu .header-menu {
    visibility: visible;
    transform: translateX(0);
}

@media screen and (min-width: 768px) {
    .header-menu-images {
        display: block;
    }
}

/* CORE > Admin Bar */
.admin-bar .header {
    margin-top: 46px;
}

@media screen and (min-width: 782px) {
    .admin-bar .header {
        margin-top: 32px;
    }
}


/*******************************************************************************************
Hamburger and Search Toggle
*******************************************************************************************/
.header-toggle,
.header-search {
    padding: 17px 11px;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    border: none;
    border-radius: 0;
    z-index: 1;
    margin-left: 5px;
    color: var(--color-dark);
    justify-content: space-between;
    background: transparent;
}

.header-search {
    z-index: 0;
    padding: 5px;
    font-size: 22px;
    justify-content: center;
}

.header-toggle:hover,
.header-toggle:focus,
.header-search:hover,
.header-search:focus {
    color: var(--color-dark);
    background: transparent;
}

.header-toggle:before,
.header-toggle:after {
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--color-dark);
    transition: var(--speed-default);
    content: '';
    position: relative;
}

.header-toggle.is-active:before,
.header-toggle.is-active:after {
    background-color: var(--color-dark);
}

.header-toggle.is-active:before {
    top: 4px;
    transform: rotate(45deg);
}

.header-toggle.is-active:after {
    bottom: 4px;
    transform: rotate(-45deg);
}

.header-search.is-active {
    font-size: 18px;
}

.header-search.is-active i:before {
    content: var(--icon-close);
}

.header-title {
    font-size: 12px;
    font-weight: 500;
    margin-right: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-info);
}

.home .header-toggle:before,
.home .header-toggle:after {
    background-color: var(--color-white);
}

.home .header-toggle.is-active:before,
.home .header-toggle.is-active:after {
    background-color: var(--color-dark);
}

/*******************************************************************************************
FOOTER
*******************************************************************************************/
.footer {
    padding: 28px 0;
}

.home .footer {
    display: none;
}

.footer-social {
    display: flex;
    padding: 0;
    margin: 0 0 15px 0;
    list-style: none;
    color: var(--color-secondary);
}

.footer-social a {
    color: inherit;
    text-decoration: none;
}

.footer-social li + li {
    margin-left: 15px;
}

.footer-newsletter {
    margin-bottom: 25px;
}

.footer-copyright {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: .031rem;
    line-height: 1.9;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--color-primary);
}

.footer-menu {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    line-height: 16px;
    font-weight: normal;
    letter-spacing: .031rem;
    text-transform: uppercase;
    color: var(--color-primary);
}

.footer-menu a {
    color: inherit;
    text-decoration: none;
}

.footer-menu li {
    margin: 2px 0;
}

.footer-menu li:not(:last-child) {
    padding-right: 7px;
    margin-right: 7px;
    border-right: 1px solid var(--color-gray);
}

@media screen and (min-width: 768px) {
    .footer-main {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .footer-newsletter {
        margin-bottom: 0;
    }

    .footer-social {
        margin-bottom: 5px;
    }

    .footer-copyright {
        margin-bottom: 5px;
    }
}

@media screen and (min-width: 1025px) {

}

/*******************************************************************************************
SEARCH FORM
*******************************************************************************************/
.search-form {
    left: 0;
    bottom: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    padding: 46px 0;
    pointer-events: none;
    transform: translateY(10px);
    background: var(--color-light);
    top: var(--height-header-base)
}

.search-form form {
    display: flex;
    position: relative;
    align-items: center;
    flex-direction: row-reverse;
}

.search-form input {
    flex: 1;
    border: 0;
    padding: 0;
    font-weight: 500;
    border-radius: 0;
    font-size: 35px;
    color: var(--color-secondary);
    background: transparent;
    font-family: var(--heading-font-family);
}

.search-form input::placeholder {
    color: var(--color-gray);
}

.search-form button {
    padding: 0;
    border: 0;
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 22px;
    margin-right: 5px;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    color: var(--color-primary);
    background: transparent;
}

.admin-bar .search-form {
    top: calc(var(--height-header-base) + 46px);
}

.search-form.is-open-search {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: var(--speed-default);
}

@media screen and (min-width: 768px) {
    .search-form form {
        padding: 0 4px 0 20px;
        flex-direction: row;
    }

    .search-form button {
        margin-left: 5px;
        margin-right: 0;
    }
}

@media screen and (min-width: 782px) {
    .admin-bar .search-form {
        top: calc(var(--height-header-base) + 32px);
    }
}

@media screen and (min-width: 1025px) {
    .search-form form {
        padding: 0 10px 0 30px;
    }
}


/*******************************************************************************************
ANIMATION
*******************************************************************************************/
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-animated {
    opacity: 1;
    transform: translateY(0);
}

/*******************************************************************************************
MASONRY
*******************************************************************************************/
.masonry-grid {
    position: relative;
}

.masonry-grid-item {
    width: 100%;
    margin-bottom: 50px;
}

@media screen and (min-width: 782px) {
    .masonry-grid-item {
        width: calc(50% - 29px);
    }
}

@media screen and (min-width: 1025px) {
    .masonry-grid-item {
        width: calc(33.33% - 39px);
    }
}
