@font-face {
    src: url('../fonts/Arial.ttf');
    font-family: 'Arial-Regular';
}
@font-face {
    src: url('../fonts/Arial-Bold.ttf');
    font-family: 'Arial-Bold';
}
@font-face {
    src: url('../fonts/NotoSerifArmenian-Bold.ttf');
    font-family: 'NotoSerifArmenian-Bold';
}
@font-face {
    src: url('../fonts/NotoSerifArmenian-Medium.ttf');
    font-family: 'NotoSerifArmenian-Medium';
}
@font-face {
    src: url('../fonts/NotoSerifArmenian-Regular.ttf');
    font-family: 'NotoSerifArmenian-Regular';
}

html[lang="ru-RU"], html[lang="ru-RU"] input, html[lang="ru-RU"] textarea,
html[lang="en-US"], html[lang="en-US"] textarea, html[lang="en-US"] input{
    font-family: 'Arial-Regular';
}
html[lang="hy-AM"], html[lang="hy-AM"] input, html[lang="hy-AM"] {
    font-family: 'NotoSerifArmenian-Regular';
}
html[lang="hy-AM"] .medium_text{
    font-family: 'NotoSerifArmenian-Medium';
}
html[lang="ru-RU"] .medium_text, html[lang="en-US"] .medium_text {
    font-family: 'NotoSerifArmenian-Medium';
}
html[lang="hy-AM"] .regular_text, html[lang="ru-RU"] .regular_text, html[lang="en-US"] .regular_text{
    font-family: 'NotoSerifArmenian-Regular';
}
html[lang="hy-AM"] .bold_text, html[lang="hy-AM"] b, html[lang="hy-AM"] strong{
    font-family: 'NotoSerifArmenian-Bold';
}
html[lang="ru-RU"] .bold_text, html[lang="ru-RU"] b, html[lang="ru-RU"] strong,
html[lang="en-US"] .bold_text, html[lang="en-US"] b, html[lang="en-US"] strong{
    font-family: 'Arial-Bold';
}
html[lang="hy-AM"] h1,html[lang="hy-AM"] h2,html[lang="hy-AM"] h3,html[lang="hy-AM"] h4,
html[lang="hy-AM"] h5,html[lang="hy-AM"] h6{
    font-family: 'NotoSerifArmenian-Regular';
}
html[lang="ru-RU"] h1,html[lang="ru-RU"] h2,html[lang="ru-RU"] h3,html[lang="ru-RU"] h4,
html[lang="ru-RU"] h5,html[lang="ru-RU"] h6,
html[lang="en-US"] h1,html[lang="en-US"] h2,html[lang="en-US"] h3,html[lang="en-US"] h4,
html[lang="en-US"] h5,html[lang="en-US"] h6{
    font-family: 'NotoSerifArmenian-Regular';
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none;
    border: none;
    box-sizing: border-box;
    transition: all 300ms ease-out;
}
*:hover{
    transition: all 0.3s ease-in;
}
html {
    scroll-behavior: smooth;
}
.swiper-button-next,  .swiper-button-prev, .plus_minus {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
a {
    text-decoration: none;
    color: var(--black);
}
img, video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
:root {
    --black: #282828;
    --greyFont: #5B5B5B;
    --fontBlack: #606060;
    --inputBackGrey: #EEE;
    --greenBrand: #0A4722;
    --boldGreen: #063117;
    --white: #FFF;
}
:root {
    --twelve: 12px;
    --forteen: 14px;
    --sixteen: 16px;
    --eighteen: 18px;
    --twenty: 20px;
    --fontTwentyTwo: 22px;
    --twofour: 24px;
    --titleFont: 60px;
}
.wrapper {
    max-width: 1540px;
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
}
.sto_ {
    width: 100%;
}
.full_wrapper {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}
.d_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
body{
    color: var(--black);
}
html{
    overflow-x: hidden;
}
ul, ol{
    padding-left: 20px;
}
textarea{
    resize: none;
}

/* header */
header{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
}
.header_block{
    gap: 20px;
    padding: 28px 0;
}
.nav_bar{
    align-items: stretch;
    gap: 28px;
}
.nav_alink{
    font-size: var(--eighteen);
    width: fit-content;
    padding: 6px 10px;
    border: 1px solid transparent;
    border-radius: 90px;
    cursor: pointer;
}
.head_for_home .nav_alink{
    color: var(--white);
}
.head_for_home .nav_alink:hover{
    border-color: var(--white) !important;
}
.nav_alink:hover{
    border-color: var(--black);
}
.last_head_blck{
    gap: 40px;
}
.phone_num{
    color: var(--greenBrand);
    font-size: var(--twofour);
}
.head_for_home .phone_num{
    color: var(--white);
}
.phone_num:hover{
    text-decoration: underline;
}
.dropdown_rel{
    position: relative;
}
.drop_title{
    cursor: pointer;
    gap: 12px;
}
.drop_title:hover .chosen_lang_sp {
    text-decoration: underline;
}
.lang_sp {
    font-size: var(--sixteen);
}
.dropdwon_ {
    overflow: hidden;
    z-index: 3;
    display: none;
    min-width: 118px;
    position: absolute;
    border: 1px solid rgba(40, 40, 40, 0.10);
    top: 55px;
    left: 50%;
    transform: translate(-50%, 0);
    flex-direction: column;
    border-radius: 12px;
    background-color: var(--white);
}
.dropdown_active {
    display: flex;
}
.chosen_lang_sp{
    color: var(--greyFont);
    font-size: var(--eighteen);
}
.head_for_home .chosen_lang_sp{
    color: var(--white);
}
.chosen_lang_img{
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}
.choose_language{
    justify-content: start;
    gap: 10px;
    padding: 6px 10px;
    border-bottom: 1px solid rgba(40, 40, 40, 0.10);
}
.choose_language:hover{
    border-color: var(--greenBrand);
}
.lang_flag{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
}
.head_for_home .burger_svg svg path{
    stroke: white;
}
.burger_svg{
    display: none;
}
/* end header */

/* home */
.home_general {
    height: 100vh;
    justify-content: center;
    align-items: start;
    position: relative;
    max-height: 1300px;
    overflow: hidden;
    padding: 100px 0 20px 0;
    margin: 0 auto;
}
.home_general_img, .blue_back {
    z-index: -1;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}
.home_general_info_blck{
    position: absolute;
    bottom: 40px;
    z-index: 10;
}
.home_info_blck{
    flex-direction: column;
    align-items: start;
    width: fit-content;
    gap: 34px;
    padding: 40px;
    border-radius: 33px;
    max-width: 495px;
    background: rgba(72, 72, 72, 0.40);
    backdrop-filter: blur(9px);
}
.white_descrip{
    font-size: var(--twofour);
    color: var(--white);
}
.contw_us_btn{
    padding: 18px 46px;
    background-color: var(--greenBrand);
    border-radius: 90px;
    color: var(--white);
    cursor: pointer;
    font-size: var(--eighteen);
}
.contw_us_btn:hover{
    background-color: var(--boldGreen);
}
.home_aboutus_blck{
    gap: 40px;
    margin: 190px 0;
}
.home_aboouts_img{
    max-width: 730px;
    width: 50%;
    border-radius: 20px;
    overflow: hidden;
}
.home_about_inf_blck{
    flex-direction: column;
    align-items: start;
    gap: 20px;
    max-width: 610px;
    width: 45%;
}
.general_title{
    line-height: normal;
    font-weight: 400;
    font-size: var(--titleFont);
    color: var(--greenBrand);
}
.description_{
    flex-direction: column;
    align-items: start;
    gap: 20px;
    font-size: var(--sixteen);
    color: var(--greyFont);
    line-height: 140%; 
}
.read_more_btn{
    font-size: var(--eighteen);
    color: var(--white);
    border-radius: 90px;
    cursor: pointer;
    padding: 10px 70px;
    background-color: var(--greenBrand);
}
.read_more_btn:hover{
    background-color: var(--boldGreen);
}
.home_serv_blck{
    flex-direction: column;
    align-items: start;
    gap: 60px;
}
.serv_blcks{
    display: none;
    align-items: stretch;
    justify-content: start;
    gap: 20px;
    flex-wrap: wrap;
}
.chosen_serv_block_active, .home_servs{
    display: flex;
}
.title_btn_blck{
    gap: 20px;
}
.view_more{
    font-size: var(--sixteen);
    color: var(--greenBrand);
}
.view_more:hover{
    text-decoration: underline;
}
.serv_item{
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    padding: 20px;
    border-radius: 20px;
    background: #F8F8F8;
    flex-direction: column;
    align-items: start;
    gap: 14px;
}
.servs_title_svg_blck{
    gap: 10px;
}
.serv_item_title{
    font-size: 30px;   
}
.serv_item:hover svg rect{
    fill: var(--white);
}
.serv_item:hover svg path{
    fill: var(--greyFont);
}
.serv_item:hover{
    background-color: var(--greenBrand);
    color: var(--white);
}
.serv_item:hover .description_{
    color: var(--white);
}
.paddig_left{
    padding-left: 11.5% !important;
}
.our_team_section{
    margin: 130px auto 70px auto;
}
.teamSwiper {
    margin-top: 100px !important;
    padding-bottom: 120px !important;
}
.margin_minus{
    margin-bottom: -82px;
}
.team_slide_blck{
    display: flex !important;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
.members_img{
    max-width: 400px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
}
.nameof_memb{
    text-align: center;
    color: var(--greenBrand);
    font-size: 30px;
}
.nameof_memb:hover{
    text-decoration: underline;
}
.team_slide_blck .description_{
    text-align: center;
}
.members_social_link{
    border: 1px solid transparent;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    justify-content: center;
    background-color: #F8F8F8;
}
.members_social_link:hover{
    border-color: var(--greenBrand);
}
.soc_img{
    max-width: 30px;
}
.team_slide_blck .description_{
    max-width: 256px;
}
.arrows_slider .swiper-button-prev, .arrows_slider .swiper-button-next,
.arrows_slider .swiper-pagination{
    position: initial;
    margin: 0 !important;
}
.swiper-pagination{
    width: fit-content !important;
}
.arrows_slider{
    width: 100%;
    justify-content: center;
    gap: 70px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.swiper-button-next:after, .swiper-button-prev:after{
    content: '' !important;
}
.swiper-button-next, .swiper-button-prev{
    min-width: 60px !important;
    width: 60px !important;
    height: 60px !important;
}
.swiper-button-next:hover svg rect, .swiper-button-prev:hover svg rect{
    fill: var(--greenBrand);
}
.swiper-pagination-bullet-active{
    background-color: var(--greenBrand) !important;
}
.grey_line{
    border-bottom: 1px solid rgba(91, 91, 91, 0.20);
}
.why_chooseus_block{
    flex-direction: column;
    gap: 60px;
    margin-top: 100px;
}
.why_chooseus_block .general_title{
    text-align: center;
}
.why_items_blck{
    align-items: stretch;
    gap: 20px;
}
.reason_blck{
    background-color: #F6F6F6;
    border-radius: 20px;
    flex-direction: column;
    gap: 14px;
    padding: 40px 20px;
}
.why_imgs{
    max-width: 60px;
}
.why_items_title{
    text-align: center;
    font-size: var(--twofour);
}
.reason_blck .description_{
    text-align: center;
}
.map_section{
    max-width: 1860px;
    width: 100%;
    margin: 100px auto 60px auto;
    border-radius: 40px;
    overflow: hidden;
    height: 530px;
}
.map_section iframe{
    width: 100%;
    height: 100%;
}
/* end home */

/* footer */
.footer_blck{
    align-items: start;
    gap: 20px;
}
.footer_blck .description_{
    max-width: 352px;
}
.fnav_bar{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 10px 0;
}
.fnav_bar .nav_alink{
    color: var(--black);
}
.fnav_bar .nav_alink:hover{
    border-color: var(--black);
}
.f_cont_blck{
    max-width: 184px;
    flex-direction: column;
    align-items: start;
    gap: 14px;
}
.contact_link{
    justify-content: start;
    gap: 20px;
    color: var(--greenBrand);
    font-size: var(--sixteen);
}
.contact_link:hover{
    text-decoration: underline;
}
footer .grey_line{
    margin: 30px 0;
}
.copyright_site{
    gap: 20px;
    margin-bottom: 30px;
}
.rights_reserved{
    font-size: var(--sixteen);
    gap: 4px;
}
.contact_link svg{
    min-width: 17px;
}
.site_dev{
    font-size: var(--sixteen);
    gap: 4px;
}
.site_dev:hover{
    color: var(--greenBrand);
}
.site_dev:hover svg path{
    fill: var(--greenBrand);
}
/* end footer */

/* about us */
.navigation_block{
    justify-content: start;
    flex-wrap: wrap;
    gap: 10px;
    margin: 180px 0 60px 0;
}
.abouts_img {
    height: 100%;
}
.prev_page, .this_page{
    font-size: var(--twofour);
    color: var(--greyFont);
}
.slash_{
    height: 20px;
    border-right: 1px solid var(--greyFont);
}
.this_page{
    color: var(--greenBrand);
    font-size: var(--twofour);
}
.prev_page:hover{
    text-decoration: underline;
}
.about_general_blck{
    border-radius: 40px;
    overflow: hidden;
    height: 480px;
    position: relative;
}
.about_info_blck{
    position: absolute;
    bottom: 80px;
}
.about_title_bck .general_title{
    color: var(--white);
}
.about_title_bck .description_{
    max-width: 504px;
    color: var(--white);
    font-size: var(--twofour);
}
.about_descrip_blck{
    text-align: center;
    max-width: 1075px;
    padding: 0 30px;
    margin: 100px auto;
    font-size: var(--twofour);
    color: var(--greyFont);
}
.statistic_block{
    gap: 20px;
    align-items: stretch;
}
.statis_item{
    gap: 10px;
    border-radius: 20px;
    background: #F8F8F8;
    padding: 40px 20px;
    flex-direction: column;
}
.statis_num{
    color: var(--greenBrand);
    font-size: 100px;
}
.statis_name{
    text-align: center;
    color: var(--greenBrand);
    font-size: var(--twofour);
}
.statis_item .description_{
    text-align: center;
    max-width: 266px;
}
.about_our_team{
    flex-direction: column;
    gap: 50px;
    margin: 100px 0;
}
.info_block{
    margin-top: 100px;
    flex-direction: column;
    gap: 35px;
    position: relative;
    max-width: 1230px;
}
.memb_img{
    margin-top: -100px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
}
.info_block .description_{
    text-align: center;
    font-size: var(--twofour);
    max-width: 980px;
}
.membs_name{
    font-size: 40px;
    color: var(--greenBrand);
}
.top_icon{
    position: absolute;
    top: 0;
    left: 0;
}
.bottom_icon{
    position: absolute;
    bottom: 0;
    right: 0;
}
.all_members_block{
    margin-top: 65px;
    flex-wrap: wrap;
    justify-content: start;
    align-items: stretch;
    gap: 20px;
}
.all_members_block .team_slide_blck{
    width: calc(100% / 4 - 15px);
}
.members_img:hover img{
    transform: scale(1.1);
}
/* end about us */

/* member */
.about_member_blck{
    gap: 40px;
}
.member_general_img{
    max-width: 730px;
    width: 50%;
    border-radius: 20px;
    overflow: hidden;
}
.about_member_block{
    flex-direction: column;
    align-items: start;
    gap: 16px;
    max-width: 638px;
    width: 45%;
}
.name_in{
    gap: 20px;
}
.position_blck{
    margin-top: 18px;
    justify-content: start;
    gap: 20px;
}
.postistion_sp{
    font-size: var(--twofour);
    color: var(--greyFont);
}
/* end member */

/* contact us */
.contact_section{
    gap: 20px;
}
.contact_section .general_title{
    margin-right: 40px;
}
.contact_alink{
    gap: 20px;
    font-size: var(--twofour);
    color: var(--greenBrand);
}
.contact_alink svg{
    min-width: 12px;
}
.contact_alink:hover{
    text-decoration: underline;
}
/* end contact us */

/* service */
.service_section{
    margin-bottom: 100px;
    flex-direction: column;
    align-items: start;
    gap: 60px;
}
.choose_service{
    min-width: fit-content;
    width: auto !important;
    border: 1px solid var(--greenBrand);
    padding: 10px 64px;
    border-radius: 90px;
    font-size: 30px;
    cursor: pointer;
    color: var(--greenBrand);
}
.all_servs{
    padding: 10px 32px;
}
.choose_service:hover, .choose_service_active{
    background-color: var(--greenBrand);
    color: var(--white);
}
.serviceSwiper{
    padding-bottom: 20px !important;
}
/* end service */

/* popup */
.gray_back {
    background: rgba(10, 71, 34, 0.40);
    display: none;
    position: fixed;
    width: 100%;
    z-index: 32;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
}
.gray_back_active {
    display: block;
}
.parent_pop{
    position: relative;
    display: flex;
    justify-content: center;
}
.popup_block {
    z-index: 33;
    position: fixed;
    display: none;
    max-width: 980px;
    width: 90%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    top: 10%;
}
.popup_block_active{
    display: flex;
}
.popups_form_blck {
    align-items: start;
    position: relative;
    flex-direction: column;
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    gap: 20px;
    max-height: 85vh;
    overflow: auto;
}
.popups_form_blck::-webkit-scrollbar-thumb{
    background-color: var(--greenBrand);
    background-clip: padding-box;
    transition: all 300ms ease-out;
    cursor: pointer;
}
.popups_form_blck::-webkit-scrollbar{
    height: 2px;
    width: 2px;
}
.popups_form_blck::-webkit-scrollbar-track {
    background-color: #DFE5EA;
}
.title_close{
    gap: 20px;
}
.popup_title{
    font-size: 30px;
}
.close_popup{
    cursor: pointer;
    justify-content: center;
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--greyFont);
}
.close_popup:hover svg path{
    stroke: red;
}
.close_popup:hover{
    border-color: red;
}
/* end popup */

/* blog */
.blog_section{
    flex-direction: column;
    align-items: start;
    gap: 40px;
    margin: 100px 0;
}
.blog_items_block{
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: start;
    gap: 20px;
}
.blog_item{
    width: calc(100% / 3 - 14px);
    flex-direction: column;
    gap: 14px;
}
.blog_item:hover .blog_items_img img{
    transform: scale(1.1);
}
.blog_item:hover .blog_items_titel{
    color: var(--boldGreen);
}
.blog_item:hover .description_{
    color: var(--black);
}
.blog_items_img{
    overflow: hidden;
    height: 326px;
    border-radius: 20px;
    overflow: hidden;
}
.blog_item_inf{
    padding: 0 40px;
}
.blog_items_titel{
    margin-bottom: auto;
    font-size: 30px;
    color: var(--greenBrand);
    margin-top: 8px;
}
.pagination_{
    gap: 20px;
    justify-content: center;
}
.prev_next_btn{
    cursor: pointer;
}
.prev_next_btn:hover svg rect{
    fill: var(--greenBrand);
}
.pagination_sp{
    text-align: center;
    justify-content: center;
    min-width: 54px;
    border-radius: 50%;
    color: var(--greyFont);
    font-size: 30px;
    aspect-ratio: 1/1;
}
.pagination_sp:hover, .pagination_sp_active{
    background-color: var(--greenBrand);
    color: var(--white);
}
.pagination_dots{
    font-size: 30px;
}
.prev_btn{
    margin-right: 50px;
}
.next_btn{
    margin-left: 50px;
}
/* end blog */

/* blog item */
.blog_item_section{
    padding: 0 30px;
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
}
.blog_block{
    margin: 70px 0 100px 0;
}
.blog_block img{
    border-radius: 20px;
}
.blog_item_section h1{
    margin: 18px 0;
}
.mini_items{
    width: calc(100% / 3 - 14px);
}
.date_case{
    font-size: var(--sixteen);
}
/* end blog item */










