@tailwind base;
@tailwind components;
@tailwind utilities;

@font-face {
    font-family: 'Helvetica Neue';
    src: url('/assets/font/HelveticaNeue.ttc') format('truetype');
    font-display: swap;
}

body {
    font-family: "Helvetica Neue";
}

h3 {
    font-size: 48px;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 40px;
}

p {
    font-size: 16px;
    line-height: 140%;
}

.container-1 {
    padding-left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
}

.container-2 {
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    h3 {
        font-size: 32px;
        text-align: center;
        margin-bottom: 16px;
    }
    .container-1 {
        padding-left: 0px;
    }
    .container-2 {
        padding-right: 0px;
    }
}

.custom-img-section1 {
    width: 100%;
    max-width: 897px;
    display: none;
}

.custom-img-section2 {
    width: 100%;
    max-width: 904px;
    display: none;
}

@media (min-width: 1600px) {
    .container-1 {
        justify-content: center;
    }
    .container-2 {
        justify-content: center;
    }
    .custom-img-section1 {
        display: block;
    }
    .custom-img-section2 {
        display: block;
    }
    .responsive {
        display: none;
    }
}