/* home */
.home_general_block{
    /* height: 100vh; */
    min-height: fit-content;
    padding: 148px 0 96px 0;
    position: relative;
    margin-top: 10px;
    max-height: 1000px;
    justify-content: center;
}
.home_general_img{
    width: 99%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
}
.home_first_blvk{
    gap: 20px;
    align-items: stretch;
}
.title_info_blck{
    flex-direction: column;
    gap: 14px;
    align-items: start;
    max-width: 420px;
}
.home_block, .home_first_blvk{
    height: 100%;
}
.home_first_blvk .general_title{
    margin-bottom: auto;
}
.app_form{
    position: relative;
    max-width: 508px;
    width: 100%;
    justify-content: start;
    flex-direction: column;
    gap: 12px;
    align-items: start;
    padding: 44px 46px;
    overflow: hidden;
    border-radius: 8px 128px 8px 8px;
    background-color: rgba(64, 105, 124, 0.20);
    backdrop-filter: blur(30px);
    border: 3px solid #6EACC9;
    clip-path: polygon(0 0%, calc(100% - 107px) 0, 100% 107px, 100% 100%, 0 100%);
}
.app_form::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 52px;
    width: 165px;
    height: 100px;
    background: transparent;
    border-top-right-radius: 16px;
    transform: translate(72%, -53%) rotate(45deg);
    border-bottom: 4px solid #6EACC9;
}
.vector_back{
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.app_title{
    font-size: var(--twofour);
    color: var(--white);
    max-width: 322px;
    font-family: 'Inter-Bold';
}
.app_descrip{
    margin-top: 8px;
    margin-bottom: 54px;
    max-width: 320px;
    font-size: var(--eighteen);
    color: rgba(255, 255, 255, 0.60);
}
.app_form .inps_{
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.20);
}
.app_form .inps_::placeholder{
    color: var(--white);
}
.next_btn{
    gap: 10px;
    justify-content: center;
    background-color: var(--white);
    border-radius: 90px;
    padding: 20px;
    margin-top: 15px;
    cursor: pointer;
    font-size: var(--forteen);
}
.next_btn:hover{
    color: var(--white);
    background-color: var(--brandGray);
}
.next_btn:hover svg path{
    stroke: var(--white);
}
.home_aboutus{
    background-color: var(--brandGray);
    padding: 10px 10px 10px 40px;
    border-radius: 8px;
    align-items: stretch;
    gap: 20px;
    margin: 100px 0;
}
.home_aboutus .stroke_wtitle, .home_aboutus .title_conts,
.home_aboutus .title_conts b, .home_aboutus .title_conts strong{
    color: var(--white);
}
.home_aboutus .title_conts b, .home_aboutus .title_conts strong{
    text-transform: uppercase;
    font-family: 'Inter-Black';
}
.learn_more_btn{
    padding: 14px 20px;
    gap: 10px;
    color: var(--white);
    font-family: 'Inter-Bold';
    font-size: var(--eighteen);
    border-radius: 90px;
    cursor: pointer;
    background: #4D7D94;
}
.learn_more_btn:hover svg {
    transform: translateX(10px);
}
.serv_info_block{
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.servs_inf{
    font-family: 'Inter-Medium';
    font-size: var(--eighteen);
    color: rgba(40, 40, 40, 0.60);
}
.serv_two_winds{
    justify-content: start;
    align-items: stretch;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.serv_info_item{
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid rgba(40, 40, 40, 0.20);
    flex-direction: column;
    align-items: start;
    gap: 38px;
    padding: 20px;
    justify-content: start;
    width: calc(100% / 2 - 10px);
}
.serv_img{
    max-width: 60px;
}
.serv_img img{
    border-radius: 2px;
}
.servs_title{
    font-size: var(--twenty);
    font-family: 'Inter-Bold';
}
.serv_inf{
    color: rgba(40, 40, 40, 0.60);
    font-size: var(--eighteen);
}
.serv_info_item:hover{
    background: #F6F6F6;
}
.whowe_block{
    gap: 20px;
    align-items: stretch;
}
.map_img_block{
    max-width: 778px;
    width: 100%;
    position: relative;
}
.map_img_block svg{
    width: 100%;
    height: 100%;
}
.loc_abs{
    position: absolute;
}
.province_path{
    cursor: pointer;
}
.province_path:hover, .province_path_active{
    stroke: rgba(64, 105, 124, 1);
    stroke-width: 3;
    stroke-opacity: 1;
}

/* end home */