html {
    scroll-behavior: smooth;
}

body{
    font-size: 16px;
    font-style: normal;
    font-optical-sizing: auto;
    font-family: 'IBM Plex Sans', 'sans-serif';
    background-color: #F1F1F2 !important;
    overflow-x: hidden;
}

*{
    --text: #242933;
    --background: #F1F1F2;
    --primary: #00D198;
    --secondary:#242933;
    --third: #1145AD;
    --border: #6191f2;
    --border_line:#F1F1F2;
}


.ui_container {
    max-width: 1440px; 
    margin: 0 auto;
    padding: 0 40px;
    width: 100%
}

.ui_inner_container {
    max-width: 1027px; 
    margin: 0 auto;
    padding: 0 0px;
    width: 100%
}


.pmc_title{
    font-family: "Bebas Neue", sans-serif;
    font-weight: 500;
    font-size: 72px;
    line-height: 1;
    color: var(--text);
    overflow: hidden;
}

.pmc_subtitle{
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    color: var(--text);
    font-family: "Bebas Neue", sans-serif;
    overflow: hidden;
}


.pmc_text{
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    color: var(--text);
    font-family: 'IBM Plex Sans', 'sans-serif';
}

.pmc_text_alt{
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
    color: var(--text);
    font-family: 'IBM Plex Sans', 'sans-serif';
}


.pmc_border{
    border-left: 2px solid var(--border);
    padding-left: 32px;
    display: inline-block;
}   

.pmc_link {
    padding: 12px 30px; 
    background: #fff;
    font-size: 20px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text);
    width: fit-content;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    border: 1px solid #00D198;
    letter-spacing: 0.05em;
}

.pmc_link:hover{
    background: #ffffff;
    color: var(--primary);
    transform: scale(1.05);
}

.pmc_link:hover i{
    color: var(--primary);
}

.form-group{
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.form-group label{
    font-family: 'IBM Plex Sans', 'sans-serif';
    color: var(--text);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.form-group input, .form-group select{
    background-color:transparent;
    height: 52px;
    font-size: 14px;
    color: var(--text);
    font-weight: 400;
    padding: 0px 8px;
    border-bottom: 1px solid #00D198;
}

.form-group select {
    padding-right: 2rem; 
}


.form-group span{
    color: var(--secondary);
    font-size: 14px;
    font-weight: 400;
}


.divider{
    width: 100%;
    height: 1px;
    background: #D7D9DE;
    margin: 40px 0;
}

@media (max-width: 1024px) {
    
    *{
        
        overflow-x: hidden;
    }
    
    .ui_container, .ui_inner_container {
        padding: 0 20px;
    }
    
    .form-group{
        margin-bottom: 24px;
    }
    
    #pmc_header.shrunk {
        border-radius: 0px;
    }
    
}

@media (max-width: 426px) {
    
    .pmc_title{
        font-size: 62px !important;
    }
    
    .pmc_pagetitle{
        font-size: 32px;
    }
    
    .pmc_title br, .pmc_text br{
        display: none;
    }
    
    .pmc_uppertitle{
        font-size: 14px;
    }
    
    .pmc_page_title{
        font-size: 18px;
    }
    
    
}