@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {    
    --main_color: #faaf52;
    --sec_color: #f3eee9;
    --ter_color: #f5f4f3;
    --quat_color: #18212d;

    --headings_font: "Playfair Display", sans-serif;
    --body_font: "Poppins", sans-serif;

    --main_spacer: clamp(30px, 8vh, 80px);
    --small_spacer: clamp(30px, 6vh, 50px);


    --large_headingFS: clamp(35px, 7vw, 60px);
    --main_headingFS: clamp(28px, 5vw, 35px);
    --sec_headingFS: clamp(22px, 5vw, 30px);
    --ter_headingFS: clamp(20px, 4vw, 22px);
    --quat_headingFS: 18px;
}


* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

*::-moz-selection {
    color: #fff;
    background-color: var(--main_color);
}

*::selection {
    color: #fff;
    background-color: var(--main_color);
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--body_bg, #fff);
    font-family: var(--body_font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: inherit;
    font-family: var(--headings_font);
}

a {
    color: inherit;
    display: inline-block;
    text-decoration: none;
    transition: color .3s ease-in-out;
}

p {
    color: inherit;
    margin-bottom: 7px;
}

strong {
    font-weight: 600;
}

img,
video {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Target the specific number input and hide the spin buttons */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox, you may need this additional CSS rule */
input[type="number"] {
    -moz-appearance: textfield;
}

button {
    border: none;
    outline: none;
    white-space: nowrap;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}

button.accordion-button,
button.nav-link {
    font-family: var(--body_font);
    white-space: normal;
}

button:disabled {
    opacity: .5;
    cursor: not-allowed;
}

section {
    position: relative;
    z-index: 1;
    width: 100%;
}

hr {
    border-color: #e4e4e4;
    opacity: 1;
}

.body_font {
    font-family: var(--body_font) !important;
}

.headings_font {
    font-family: var(--headings_font) !important;
}

.special_font {
    font-family: var(--speacial_font) !important;
}

.w-screen {
    width: 100vw;
}

.max-w-full {
    max-width: 100%;
}

.w-fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.h-fit {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.h-screen {
    height: 100vh;
}

.main_spacer {
    padding-block: var(--main_spacer);
}

.main_spacer_top {
    padding-top: var(--main_spacer);
}

.main_spacer_bottom {
    padding-bottom: var(--main_spacer);
}

.small_spacer {
    padding-block: var(--small_spacer);
}

.small_spacer_top {
    padding-top: var(--small_spacer);
}

.small_spacer_bottom {
    padding-bottom: var(--small_spacer);
}

body h1, .main_heading {
    font-size: var(--main_headingFS);    
}

body h2, .sec_heading {
    font-family: 'Sinkin Sans 500', 'sans';
    font-size: var(--sec_headingFS);
}

body h3, .ter_heading {
    font-size: var(--ter_headingFS);
}

h4, .quat_heading {
    font-size: var(--quat_headingFS);
}

h1.large_heading {
    font-size: var(--large_headingFS);
}

.text_xs {
    font-size: 13px;
}

.main_color {
    color: var(--main_color);
}

.main_bg {
    background-color: var(--main_color);
}

.border_main {
    border-color: var(--main_color) !important;
}

.main_bg *::-moz-selection {
    color: var(--main_color);
    background-color: #fff;
}

.main_bg *::selection {
    color: var(--main_color);
    background-color: #fff;
}

.hover_main_color:hover {
    color: var(--main_color);
}

.sec_color {
    color: var(--sec_color);
}

.sec_bg {
    background-color: var(--sec_color);
}

.sec_border {
    border-color: var(--sec_color) !important;
}

.ter_color {
    color: var(--ter_color);
}

.ter_bg {
    background-color: var(--ter_color);
}

.quat_bg {
    background-color: var(--quat_color);
}

.quat_color {
    color: var(--quat_color);
}

.quin_bg {
    background-color: var(--quin_color);
}

.text-justify {
    text-align: justify;
}

.text-underline {
    text-decoration: underline;
}

.min-h-screen {
    min-height: 100vh;
}

.row {
    margin-inline: 0;
}

.-z-1 {
    z-index: -1;
}

.inset-0 {
    inset: 0;
}

.col_spacer {
    padding-inline: calc(var(--bs-gutter-x) * .5);
}

.swiper-slide {
    height: auto;
}

.aspect-ratio-1 {
    aspect-ratio: 1 / 1;
}

.stars {
    color: #F0AD4E;
}

.max-h-screen {
    max-height: 100vh;
}

/* ---------------------------------- Header ---------------------------------------------- */

header#site-header {
    z-index: 20;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

/* header#site-header .logo_wrapper {
    max-width: 180px;
} */

ul.main_list li * {
    margin: 0;
}

ul.main_list li {
    position: relative;
}

ul.main_list li a.active {
    color: var(--sec_color);
}

ul.main_list > li > ul {
    position: absolute;
    padding: 0;
    list-style: unset;
    border-radius: 6px;
    z-index: 1;
    left: -5px;
    transform: translateY(20px);
    background-color: var(--sec_color);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);    
    transition: clip-path .2s ease-in .1s, transform .2s ease-in;
}

ul.main_list > li:hover > ul {
    transform: translateY(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    transition: clip-path .2s ease-in, transform .2s ease-in;
}

ul.main_list > li > ul li {
    padding: 14px;
}

ul.main_list > li > ul li a:hover {
    color: var(--main_color);
}

ul.main_list > li > ul li:last-child {
    padding-top: 0;
}

.logoAnimate .swiper-slide {
    background-color: var(--main_color);
}

@media only screen and (max-width: 1200px) {
    header#site-header ul.main_list {
        width: 100%;
        max-height: 0;
        color: #111111;
        overflow: hidden;
        background-color: #fff;
        transition: max-height .3s ease-in-out, padding .4s ease-in;
    }
    
    body #navBarToggler:checked + * + ul.main_list {
        padding-inline: 20px;
    }
    
    body.scrolled #navBarToggler:checked + * + ul.main_list {
        padding-inline: 0;
    }
    
    #navBarToggler:checked + * + ul.main_list {
        padding-block: 10px;
        max-height: calc(100vh - 40px - var(--header-height, 60px));
    }
}


/* ---------------------------------- Header END ---------------------------------------------- */

/* ---------------------------------- Global END ---------------------------------------------- */


/* ---------------------------------- UTILS ---------------------------------------------- */

body {
    color: #111111;
    max-width: 100%;
    overflow-x: hidden;
}

header#site-header {
    color: #fff;
    transition: color .3s ease-in;
}

body.scrolled header#site-header {
    color: #000;
}

.main_btn {
    color: #fff;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 9999px;
    background-color: var(--main_color);
}

.pill {
    border-radius: 9999px;
}

.text-xs {
    font-size: 14px;
}

.round_link {
    width: 35px;
    height: 35px;
    display: flex;
    border-radius: 50%;    
    align-items: center;
    justify-content: center;
    color: var(--main_color);
    border: 1px solid var(--main_color);
}

.bg_img {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}


header#site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-color: #fff;
    transform: translateY(-100%);
    transition: transform .4s ease-in;
}

body header#site-header .col_spacer {
    padding-block: 30px;
    transition: padding .3s ease-in;
}

body.scrolled header#site-header .col_spacer {
    padding-block: 5px;
}

body.scrolled header#site-header::before {
    transform: translateY(0);
}

.header_spacer {
    padding-top: var(--header-height);
}

body > main > section {
    scroll-margin-top: var(--header-height, 70px);
}

.small_icon {
    max-width: 70px;
}

.ls-circle {
    list-style: circle;
}

ul.ls-square {
    padding-left: 0;
    list-style: none; 
    margin-bottom: 0;   
}

ul.ls-square li {
    position: relative;
    padding-left: 25px;
}

ul.ls-square li:not(:last-child) {
    margin-bottom: 10px;
}

ul.ls-square li::before {
    content: "";
    position: absolute;
    display: inline-block;
    left: 0;
    top: 5px;
    width: 10px;
    height: 10px;
    background-color: var(--main_color);
}

@media only screen and (max-width: 991px) {
    .row-m-sm {
        margin-right: calc(-.5* var(--bs-gutter-x));
        margin-left: calc(-.5* var(--bs-gutter-x));
    }
}


/* ---------------------------------- UTILS END ---------------------------------------------- */


h1,
h2,
h3,
h4,
h5,
h6 {
    font-style: italic;
}

body {
    font-weight: 300;
}

body p {
    line-height: 1.5;    
}

.small_media_block > * {
    max-height: 450px;
    overflow: hidden;
}

.podcast_list .img_wrapper {
    max-height: 350px;
    overflow: hidden;
}

.small_media_block > * .img_wrapper {
    height: 100%;
}

.small_media_block > * .img_wrapper img {
    height: 100%;
    object-fit: cover;
    vertical-align: center;
}

.social_links a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--ter_color);
}

.main_acc .accordion-item {
    background-color: transparent;
}

.main_acc .accordion-item .accordion-button {
    box-shadow: none;
    color: inherit;
    background-color: #fff;
}

.mainForm input,
.mainForm textarea {
    width: 100%;
    border: none;
    outline: none;
    padding: 7px 14px;
    color: #000;
    border-radius: 0.375rem;
    background-color: #fff;
    border: 1px solid var(--main_color);
}

.mainForm input::placeholder,
.mainForm textarea::placeholder {
    color: #000;
}

[data-scroll] {
    overflow: hidden;
}

[data-scroll] .scrollBoxAnimate {
    position: relative;
    opacity: 0;
    transition: opacity .2s ease-in-out, left .4s ease-in-out, right .4s ease-in-out;
}

[data-scroll] .scrollBoxAnimate:nth-child(odd) {
    left: -100px;
}

[data-scroll] .scrollBoxAnimate:nth-child(even) {
    right: -100px;
}

[data-scroll].scrollAnimate .scrollBoxAnimate:nth-child(odd) {
    opacity: 1;
    left: 0;
}

[data-scroll].scrollAnimate .scrollBoxAnimate:nth-child(even) {
    opacity: 1;
    right: 0;
}

@media only screen and (min-width: 1600px) {
    .container-3xl {
        max-width: 1320px;
        margin-inline: auto;
    }
}