:root{
    --gold: #D6B448;
    --blue: #1391C1;
    --darkGold: #A68C39;
    --darkBlue: #0E7096;
    --bgGray: #FAFAFA;
    --textColor: #212121;
    --font-inter-bold: 'InterBold';
    --font-inter-light: 'InterLight';
    --font-inter-regular: 'InterRegular';
    --font-worksans-bold: 'WorkSansBold';
    --font-worksans-light: 'WorkSansLight'; 
    --font-worksans-regular: 'WorkSansRegular';
}

/* font */
@font-face {
    font-family: InterBold;
    src: url(../../assets/fonts/Inter-SemiBold.ttf);
}

@font-face {
    font-family: InterLight;
    src: url(../../assets/fonts/Inter-Light.ttf);
}

@font-face {
    font-family: InterRegular;
    src: url(../../assets/fonts/Inter-Regular.ttf);
}

@font-face {
    font-family: WorkSansBold;
    src: url(../../assets/fonts/WorkSans-Bold.ttf);
}

@font-face {
    font-family: WorkSansLight;
    src: url(../../assets/fonts/WorkSans-Light.ttf);
}

@font-face {
    font-family: WorkSansRegular;
    src: url(../../assets/fonts/WorkSans-Regular.ttf);
}


section {
    padding: 100px 0;
}

section > .container-fluid {
    max-width: 1920px;
    margin: auto;
}

header > .container-fluid {
    max-width: 1920px;
    margin: auto;
}

img {
    max-width: 100%;
    height: auto;
}

section h1, section h2, section h3, section h4, section h5, section p, section span {
    color: var(--textColor);
}

section ul li {
    font-family: var(--font-worksans-regular);
    color: var(--textColor);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

/* heading with clamp */
h1 {
    font-family: "InterBold";
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

h2 {
    font-family: "InterBold";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

h3 {
    font-family: "InterBold";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

h4 {
    font-family: "InterBold";
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

p {
    font-family: "WorkSansRegular";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 20px;
}

h5 {
    text-align: center;
    font-family: "Roboto Condensed",sans-serif;
    font-size: clamp(1.25rem, 1.1703rem + 0.3268vw, 1.5625rem);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 20px;
}

a {
    transition: .5s ease all;
    -webkit-transition: .5s ease all;
    -moz-transition: .5s ease all;
    -ms-transition: .5s ease all;
    -o-transition: .5s ease all;
    gap: 0 15px;
    color: #212121;
}

a path {
    transition: .5s ease all;
}

a {
    text-decoration: none;
    font-family: "InterRegular";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

button {
    font-family: "InterRegular";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

p:last-child {
    margin-bottom: 0;
}

/* clamp contents */
.post_title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}

.post_text{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2; 
}

/* colors */
.color-gold {
    color: var(--gold);
}

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

/* hover */
.hover-gold:hover {
    background: var(--darkGold);
}

.hover-blue:hover {
    background: var(--darkBlue);
}

/* background */
.bg-gold {
    background: var(--gold);
}

.bg-blue {
    background: var(--blue);
}

.bg-gray {
    background: var(--bgGray);
}

/* fonts */
.h3-one {
    font-size: 25px;
}

.h3-two {
    font-size: 18px;
}

.interbold {
    font-family: var(--font-inter-bold);
}

.interlight {
    font-family: var(--font-inter-light);
}

.interregular {
    font-family: var(--font-inter-regular);
}

.worksansbold {
    font-family: var(--font-worksans-bold);
}

.worksanslight {
    font-family: var(--font-worksans-light);
}

.worksansregular {
    font-family: var(--font-worksans-regular);
}

/* gaps */
.gap-20 {
    gap: 20px;
}

.gap-60 {
    gap: 60px;
}

.gap-30 {
    gap: 30px;
}

/* margin */
.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

/* carousel button */
.carousel_prev, .carousel_next {
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    padding: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

/* select */
select.gt_selector.notranslate {
    /* max-width: 300px; */
    width: 203px;
    padding: 6.5px 25px;
    background: #FFF;

    -webkit-appearance: none; /* Removes the dropdown in Webkit browsers (Chrome, Safari) */
    -moz-appearance: none; /* Removes the dropdown in Firefox */
    appearance: none;

    background-image: url('../../assets/img/global/dropdown.svg'); /* Custom icon */
    background-repeat: no-repeat;
    background-position: right 10px center; /* Position the icon on the right */
    /* background-size: 12px;
    padding-right: 35px; */

    color: #212121;
    font-family: var(--font-inter-regular);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    
}

@media (max-width:1199px) {
    section{
        padding: 70px 30px;
    }

    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 35px;
    }

    h3 {
        font-size: 25px;
    }

    .h3-one {
        font-size: 20px;
    }

    .gap-60 {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    select.gt_selector.notranslate {
        width: 100%;
    }
}

@media (max-width: 767px) {
    section{
        padding: 50px 20px;
    }
    
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }

    
}