html {
    scroll-behavior: smooth;
}

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

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


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

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


.conn_title{
    font-family: "IBM Plex Serif", sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    color: var(--text);
    overflow: hidden;
}

.conn_subtitle{
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: var(--text);
}

.conn_breadcrumb{
    font-family: "IBM Plex Serif", sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    color: var(--text);
}


.conn_uppertitle{
    font-weight: 300;
    font-size: 18px;
    line-height: 1.4;
    color: var(--third);
    margin-bottom: 2px;
    display: block;
}


.conn_text{
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    color: var(--text);
}

.conn_text_alt{
    font-weight: 300;
    font-size: 18px;
    line-height: 1.4;
    color: var(--text);
}


.conn_page_title{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    color: var(--text);
}


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

.conn_link {
    padding: 13px 24px; 
    background: var(--primary);
    font-size: 16px;
    font-family: "Geologica", sans-serif;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
    width: fit-content;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    border-radius: 28px;
}

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

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

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

.form-group label{
    color: var(--text);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
}

.form-group input, .form-group select{
    background-color:#EDF0F7;
    height: 48px;
    font-size: 14px;
    color: var(--third);
    font-weight: 400;
    padding: 16px 24px;
    border-radius: 40px;
    background-color: #fff;
}

.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;
    }
    
    #conn_header.shrunk {
        border-radius: 0px;
    }
    
}

@media (max-width: 426px) {
    
    .conn_title{
        font-size: 30px;
    }
    
    .conn_pagetitle{
        font-size: 32px;
    }
    
    .conn_title br, .conn_text br{
        display: none;
    }
    
    .conn_uppertitle{
        font-size: 14px;
    }
    
    .conn_page_title{
        font-size: 18px;
    }
    
    
}