/*@import "tailwindcss";*/

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Mak-bold';
    font-style: normal;
    font-weight: 500;
    src: url('../font/Mak/MAK-bold.otf') format('opentype');
}

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Mak';
    font-style: normal;
    font-weight: 400;
    src: url('../font/Mak/MAK.otf') format('opentype');
}

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'helvetica_regular';
    font-style: normal;
    src: url('../font/Helvetica/helvetica_regular.otf') format('opentype');
}

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'helvetica_light';
    font-style: normal;
    src: url('../font/Helvetica/helvetica_light.otf') format('opentype');
}

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Ballet';
    font-style: normal;
    src: url('../font/Ballet/Ballet.ttf') format('truetype');
}

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'moloko';
    font-style: normal;
    src: url('../font/Moloko/moloko.ttf') format('truetype');
}
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Bryndan Write';
    font-style: normal;
    src: url('../font/Bryndan_Write/BryndanWriteBook.ttf') format('truetype');
}

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Broad Brush';
    font-style: normal;
    src: url('../font/Broad_Brush/Broad Brush S (kerning).otf') format('opentype');
}


* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: linear-gradient(180deg, #FFFFFF 0%, #FEFDFB 100%);
}

.section-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, #9BA998, transparent);
    margin: 0 auto;
}

.title-section-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, #9BA998);
    margin: 0 auto;
}

@media only screen and (max-width: 48rem) {
    .title-section-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, #9BA998, transparent);
        margin: 0 auto;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

.stagger-6 {
    animation-delay: 0.6s;
}

input:focus, textarea:focus, select:focus {
    outline: none;
}

input[type="radio"]:checked + label {
    border-color: #2A2A2A;
    background: #FEFDFB;
}

input[type="checkbox"]:checked + label {
    border-color: #2A2A2A;
}

.glass-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(155, 169, 152, 0.2);
}

.bg-img {
    background-image: url('../img/main2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-img-2 {
    background-image: url('../img/pic.PNG');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}