@font-face {
    font-family: 'Mersad';
    src: url('/fonts/MersadCAPSVF.ttf');
}

@font-face {
    font-family: 'MersadRegular';
    src: url('/fonts/MersadRegular.otf');
}


* {
    font-family: "Mersad", Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

body{
    background-color: #E4EEFA;
}


#hero{
    background-image: url('/images/hero.png');
    background-position: center;
    background-size: cover;
    height: 660px;
    position: relative;
}

.hero_wrapper{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero_content{
    display: flex;
    flex-direction: column;
    width: 780px;
    max-width: 90%;
    margin-left: 100px;
    align-items: flex-start;
}

.hero_content > img{
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.hero_content > img:last-child{
    margin-left: auto;
    background-color: rgba(255,255,255, .5);
    padding: 10px 30px;
}

header{
    background-color: #0066CC;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 100px;
    transform: translateY(16px);
    z-index: 999;
    position: relative;
}

.menu_item{
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}

.menu_item.active{
    font-weight: 900;
}

.menu{
    display: flex;
    align-items: center;
    gap: 44px;
}

.social{
    display: flex;
    align-items: center;
    gap: 12px;
}

.home_catalog{
    padding: 60px 100px;
}

.hc_title > h2{
    font-size: 40px;
    color: #1F5FA9;
    font-weight: 900;
    margin-bottom: 46px;
}

.hc_wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.hc_item > img{
    width: 100%;
    height: 100%;
}

.hc_link{
    overflow: hidden;
    position: relative;
}

.hcl_info{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(100% - 60px);
    height: 100%;
    background-color: rgba(0,0,0, .5);
    top: 0;
    left: 0;
    padding: 0 30px;
    border-radius: 20px;
}

.hcl_info > p{
    color: #C9EB95;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 24px;
}

.hcl_info > a{
    font-size: 14px;
    color: #000;
    background-color: #C9EB95;
    padding: 12px 32px;
    border-radius: 12px;
}

.home_about{
    background-image: url('/images/ha_bg.png');
    background-position: right;
    background-size: cover;
    position: relative;
    padding-bottom: 60px;
}

.ha_title{
    padding: 60px 100px;
}

/* .ha_title > h2{
    font-size: 34px;
    color: #FF9100;
    font-weight: 500;
} */

.ha_wrapper{
    padding-left: 100px;
    max-width: 45%;
}

.ha_info  *{
    color: #1F5FA9;
    font-size: 18px;
    font-weight: 400;
    font-family: 'MersadRegular';
    line-height: 30px;
}

.ha_info > ul{
    padding-left: 20px;
}

.fw-900{
    font-weight: 900;
}

.ha_cers{
    margin-top: 60px;
}


footer{
    background-color: #1F5FA9;
    padding: 100px 40px 60px;
}

.footer_wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.footer_logo img{
    height: 60px;
}

.footer_logo p {
    font-size: 18px;
    color: rgba(255,255,255, .6);
    font-family: "MersadRegular";
}

.footer_menu{
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.footer_menu > div{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer_menu a, .footer_copyrights p, .footer_copyrights a{
    font-size: 18px;
    color: rgba(255,255,255, .6);
    font-family: "MersadRegular";
}

.footer_menu a:first-child{
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
}

.footer_copyrights{
    margin-top: 80px;
    text-align: center;
    width: 100%;
}

.footer_copyrights > p:first-child{
    margin-bottom: 12px;
}

#hero.inner_page{
    height: 336px;
    position: relative;
}

.social a{
    display: flex;
}

.social img{
    height: 20px;
}

.tel_item{
    display: flex;
    background-color: #d9d9d9;
    gap: 8px;
    align-items: center;
    height: 20px;
    border-radius: 6px;
    overflow: hidden;
    padding: 0 8px 0 0;
    font-size: 12px;
    color: #141414;
}

.tel_item > p{
    margin-top: 4px;
}

.inner_page::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, .5);
}

.inner_page_title{
    height: 260px;
    width: 100%;
    position: absolute;
    top: 76px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner_page_title > h1{
    font-size: 60px;
    font-weight: 900;
    color: #F47E20;
}

.inner_about{
    padding: 60px 0;
    background-image: url('/images/ab_bg.png');
    background-position: top;
}

.inner_about > .ha_title > h2{
    font-size: 36px;
    color: #000;
    font-weight: 900;
}

.about_contact{
    margin: 75px 0;
}

.ac_title{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ac_title > p{
    font-size: 18px;
    font-weight: 900;
    color: #000;
    margin-bottom: 10px;
}

.ac_title > a{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1F5FA9;
    font-size: 17px;
    font-weight: 300;
}

.ac_title > a > img{
    height: 20px;
    object-fit: contain;
}

.about_social, .ac_links{
    display: flex;
    align-items: center;
    gap: 40px;
}

.about_social{
    margin-bottom: 60px;
}

.catalog_wrapper{
    padding: 60px 100px;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.catalog_item{
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 55px;
}

.catalog_image > img{
    width: 100%;
}

.catalog_title > h3{
    font-size: 40px;
    color: #1F5FA9;
    font-weight: 900;
    margin-bottom: 8px;
}

.catalog_title > p{
    font-size: 20px;
    color: #1F5FA9;
    font-weight: 900;
}

.catalog_desc{
    padding: 30px 40px;
    margin: 24px;
}

.catalog_item_desc > p{
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin-bottom: 40px;
}

.cid_blocks{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.cid_block > h4{
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-bottom: 12px;
    width: max-content;
    padding: 4px 8px;
}

.cid_block > span{
    color: #000;
    font-size: 14px;
    font-weight: 400;
}


.cid_block > p{
    color: #000;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0;
}

.tech_stats > h4{
    background-color: #F47E20;
}

.iso_stats > h4{
    background-color: #a4d6a2;
}

.dd_blocks{
    margin-bottom: 16px;
}

.dd_blocks > p{
    color: #000;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0;
}

.sm_menu{
    display: none;
}

.sm_menu > img{
    height: 22px;
}

.sm_menu_wrapper{
    gap: 30px;
    position: absolute;
    width: calc(100% - 60px);
    top: 67px;
    left: 0;
    height: 100vh;
    background: #0066cc;
    display: flex
;
    flex-direction: column;
    align-items: flex-end;
    padding: 30px;
    border-top: 1px solid #fff;
}